content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
#!/usr/bin/env python3
# https://www.codechef.com/JULY18A/problems/JERRYTOM
def max_clique(g):
n = 0
for x in g: n = max(n, len(x))
l = [set() for _ in range(n + 1)]
s = [0] * len(g)
for i, x in enumerate(g):
ll = len(x)
l[ll].add(i)
s[i] = ll
m = 0
for _ in range(len(g)):
for i in range(n + 1):
if len(l[i]) > 0:
x = l[i].pop()
m = max(m, i)
s[x] = 0
for k in g[x]:
if s[k] > 0:
l[s[k]].remove(k)
s[k] -= 1
l[s[k]].add(k)
break
return m + 1
def dfs(s, b, u):
s.add(u)
b[u] = True
for v in g[u]:
if b[v]: continue
dfs(s, b, v)
for _ in range(int(input())):
n, m = map(int, input().split())
g = [list() for _ in range(n)]
for _ in range(m):
u, v = map(int, input().split())
g[u-1].append(v-1)
g[v-1].append(u-1)
print(max_clique(g))
| def max_clique(g):
n = 0
for x in g:
n = max(n, len(x))
l = [set() for _ in range(n + 1)]
s = [0] * len(g)
for (i, x) in enumerate(g):
ll = len(x)
l[ll].add(i)
s[i] = ll
m = 0
for _ in range(len(g)):
for i in range(n + 1):
if len(l[i]) > 0:
x = l[i].pop()
m = max(m, i)
s[x] = 0
for k in g[x]:
if s[k] > 0:
l[s[k]].remove(k)
s[k] -= 1
l[s[k]].add(k)
break
return m + 1
def dfs(s, b, u):
s.add(u)
b[u] = True
for v in g[u]:
if b[v]:
continue
dfs(s, b, v)
for _ in range(int(input())):
(n, m) = map(int, input().split())
g = [list() for _ in range(n)]
for _ in range(m):
(u, v) = map(int, input().split())
g[u - 1].append(v - 1)
g[v - 1].append(u - 1)
print(max_clique(g)) |
# follow pytorch GAN-Studio, random flip is used in the dataset
_base_ = [
'../_base_/models/sngan_proj_32x32.py',
'../_base_/datasets/cifar10_nopad.py', '../_base_/default_runtime.py'
]
num_classes = 10
model = dict(
num_classes=num_classes,
generator=dict(
act_cfg=dict(type='ReLU', inplace=True), num_classes=num_classes),
discriminator=dict(
act_cfg=dict(type='ReLU', inplace=True), num_classes=num_classes))
n_disc = 5
lr_config = None
checkpoint_config = dict(interval=10000, by_epoch=False, max_keep_ckpts=20)
custom_hooks = [
dict(
type='VisualizeUnconditionalSamples',
output_dir='training_samples',
interval=5000)
]
inception_pkl = './work_dirs/inception_pkl/cifar10.pkl'
evaluation = dict(
type='GenerativeEvalHook',
interval=10000,
metrics=[
dict(
type='FID',
num_images=50000,
inception_pkl=inception_pkl,
bgr2rgb=True,
inception_args=dict(type='StyleGAN')),
dict(type='IS', num_images=50000)
],
best_metric=['fid', 'is'],
sample_kwargs=dict(sample_model='orig'))
total_iters = 100000 * n_disc
# use ddp wrapper for faster training
use_ddp_wrapper = True
find_unused_parameters = False
runner = dict(
type='DynamicIterBasedRunner',
is_dynamic_ddp=False, # Note that this flag should be False.
pass_training_status=True)
metrics = dict(
fid50k=dict(
type='FID',
num_images=50000,
inception_pkl=inception_pkl,
inception_args=dict(type='StyleGAN')),
IS50k=dict(type='IS', num_images=50000))
optimizer = dict(
generator=dict(type='Adam', lr=0.0002, betas=(0.5, 0.999)),
discriminator=dict(type='Adam', lr=0.0002, betas=(0.5, 0.999)))
data = dict(samples_per_gpu=64)
| _base_ = ['../_base_/models/sngan_proj_32x32.py', '../_base_/datasets/cifar10_nopad.py', '../_base_/default_runtime.py']
num_classes = 10
model = dict(num_classes=num_classes, generator=dict(act_cfg=dict(type='ReLU', inplace=True), num_classes=num_classes), discriminator=dict(act_cfg=dict(type='ReLU', inplace=True), num_classes=num_classes))
n_disc = 5
lr_config = None
checkpoint_config = dict(interval=10000, by_epoch=False, max_keep_ckpts=20)
custom_hooks = [dict(type='VisualizeUnconditionalSamples', output_dir='training_samples', interval=5000)]
inception_pkl = './work_dirs/inception_pkl/cifar10.pkl'
evaluation = dict(type='GenerativeEvalHook', interval=10000, metrics=[dict(type='FID', num_images=50000, inception_pkl=inception_pkl, bgr2rgb=True, inception_args=dict(type='StyleGAN')), dict(type='IS', num_images=50000)], best_metric=['fid', 'is'], sample_kwargs=dict(sample_model='orig'))
total_iters = 100000 * n_disc
use_ddp_wrapper = True
find_unused_parameters = False
runner = dict(type='DynamicIterBasedRunner', is_dynamic_ddp=False, pass_training_status=True)
metrics = dict(fid50k=dict(type='FID', num_images=50000, inception_pkl=inception_pkl, inception_args=dict(type='StyleGAN')), IS50k=dict(type='IS', num_images=50000))
optimizer = dict(generator=dict(type='Adam', lr=0.0002, betas=(0.5, 0.999)), discriminator=dict(type='Adam', lr=0.0002, betas=(0.5, 0.999)))
data = dict(samples_per_gpu=64) |
# generated from genmsg/cmake/pkg-genmsg.context.in
messages_str = "/home/lty/catkin_ws/src/driver/joystick/joystick_drivers/wiimote/msg/IrSourceInfo.msg;/home/lty/catkin_ws/src/driver/joystick/joystick_drivers/wiimote/msg/State.msg;/home/lty/catkin_ws/src/driver/joystick/joystick_drivers/wiimote/msg/TimedSwitch.msg"
services_str = ""
pkg_name = "wiimote"
dependencies_str = "geometry_msgs;std_msgs;sensor_msgs"
langs = "gencpp;geneus;genlisp;gennodejs;genpy"
dep_include_paths_str = "wiimote;/home/lty/catkin_ws/src/driver/joystick/joystick_drivers/wiimote/msg;geometry_msgs;/opt/ros/kinetic/share/geometry_msgs/cmake/../msg;std_msgs;/opt/ros/kinetic/share/std_msgs/cmake/../msg;sensor_msgs;/opt/ros/kinetic/share/sensor_msgs/cmake/../msg"
PYTHON_EXECUTABLE = "/usr/bin/python"
package_has_static_sources = 'TRUE' == 'TRUE'
genmsg_check_deps_script = "/opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py"
| messages_str = '/home/lty/catkin_ws/src/driver/joystick/joystick_drivers/wiimote/msg/IrSourceInfo.msg;/home/lty/catkin_ws/src/driver/joystick/joystick_drivers/wiimote/msg/State.msg;/home/lty/catkin_ws/src/driver/joystick/joystick_drivers/wiimote/msg/TimedSwitch.msg'
services_str = ''
pkg_name = 'wiimote'
dependencies_str = 'geometry_msgs;std_msgs;sensor_msgs'
langs = 'gencpp;geneus;genlisp;gennodejs;genpy'
dep_include_paths_str = 'wiimote;/home/lty/catkin_ws/src/driver/joystick/joystick_drivers/wiimote/msg;geometry_msgs;/opt/ros/kinetic/share/geometry_msgs/cmake/../msg;std_msgs;/opt/ros/kinetic/share/std_msgs/cmake/../msg;sensor_msgs;/opt/ros/kinetic/share/sensor_msgs/cmake/../msg'
python_executable = '/usr/bin/python'
package_has_static_sources = 'TRUE' == 'TRUE'
genmsg_check_deps_script = '/opt/ros/kinetic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py' |
num1=10
num2=20
num3=300
num3=30
num4=40
| num1 = 10
num2 = 20
num3 = 300
num3 = 30
num4 = 40 |
# -*- coding: utf-8 -*-
def bytes(num):
for x in ['bytes','KB','MB','GB']:
if num < 1024.0 and num > -1024.0:
return "{0:.1f} {1}".format(num, x)
num /= 1024.0
return "{0:.1f} {1}".format(num, 'TB')
| def bytes(num):
for x in ['bytes', 'KB', 'MB', 'GB']:
if num < 1024.0 and num > -1024.0:
return '{0:.1f} {1}'.format(num, x)
num /= 1024.0
return '{0:.1f} {1}'.format(num, 'TB') |
#inputs_pdm.py
#
#Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
#The Universal Permissive License (UPL), Version 1.0
#
#by Joe Hahn, joe.hahn@oracle.come, 11 September 2018
#input parameters used to generate mock pdm data
#turn debugging output on?
debug = True
#number of devices
N_devices = 1000
#sensor standard deviation
sensor_sigma = 0.01
#number of timesteps
N_timesteps = 20000
#starting time
time_start = 0
#interval (in timesteps) between device outputs
output_interval = 10
#maintenance strategy = rtf or pdm
strategy = 'pdm'
#send devices to maintenance when predicted lifetime is less that this threshold
pdm_threshold_time = 400
#probability threshold for pdm classifier to send device to preventative maintenance
pdm_threshold_probability = 0.5
#execute pdm check after this many timesteps
pdm_skip_time = 5
#number of technicians
N_technicians = N_devices/10
#failed' device's repair time
repair_duration = 100
#maintenance duration
maintenance_duration = repair_duration/4
#random number seed
rn_seed = 17 + 1
#issue data
issues = {
'crud': {'ID':0, 'coefficient':0.100000, 'fatal':False},
'jammed_rotor': {'ID':1, 'coefficient':0.000080, 'fatal':True },
'cracked_valve':{'ID':2, 'coefficient':0.000010, 'fatal':True },
'broken_gear': {'ID':3, 'coefficient':0.000002, 'fatal':True },
}
| debug = True
n_devices = 1000
sensor_sigma = 0.01
n_timesteps = 20000
time_start = 0
output_interval = 10
strategy = 'pdm'
pdm_threshold_time = 400
pdm_threshold_probability = 0.5
pdm_skip_time = 5
n_technicians = N_devices / 10
repair_duration = 100
maintenance_duration = repair_duration / 4
rn_seed = 17 + 1
issues = {'crud': {'ID': 0, 'coefficient': 0.1, 'fatal': False}, 'jammed_rotor': {'ID': 1, 'coefficient': 8e-05, 'fatal': True}, 'cracked_valve': {'ID': 2, 'coefficient': 1e-05, 'fatal': True}, 'broken_gear': {'ID': 3, 'coefficient': 2e-06, 'fatal': True}} |
basepath = "<path to dataset>"
with open(basepath+"/**/train_bg/wav.scp") as f:
lines = f.read().strip().split('\n')
for line in tqdm.tqdm(lines):
# name, _ = line.strip().split('\t')
name = line.strip().split(' ')[0]
shutil.copy(basepath+"/audio/"+name+".flac", basepath+"/**/train_wav/"+name+".flac")
with open(basepath+"/**/dev_bg/wav.scp") as f:
lines = f.read().strip().split('\n')
for line in tqdm.tqdm(lines):
# name, _ = line.strip().split('\t')
name = line.strip().split(' ')[0]
shutil.copy(basepath+"/audio/"+name+".flac", basepath+"/**/valid_wav/"+name+".flac")
| basepath = '<path to dataset>'
with open(basepath + '/**/train_bg/wav.scp') as f:
lines = f.read().strip().split('\n')
for line in tqdm.tqdm(lines):
name = line.strip().split(' ')[0]
shutil.copy(basepath + '/audio/' + name + '.flac', basepath + '/**/train_wav/' + name + '.flac')
with open(basepath + '/**/dev_bg/wav.scp') as f:
lines = f.read().strip().split('\n')
for line in tqdm.tqdm(lines):
name = line.strip().split(' ')[0]
shutil.copy(basepath + '/audio/' + name + '.flac', basepath + '/**/valid_wav/' + name + '.flac') |
#!/usr/bin/env python
code_file = 'node_modules/terser-webpack-plugin/dist/TaskRunner.js'
bad_code = 'const cpus = _os2.default.cpus() || { length: 1 };'
good_code = 'const cpus = { length: 1 };'
new_text = None
with open(code_file) as f:
print('Reading %s' % code_file)
file_content = f.read()
if bad_code in file_content:
print('Found code to patch')
new_text = file_content.replace(bad_code, good_code)
else:
print('Bad code not found')
new_text = None
if new_text:
print('Updating %s' % code_file)
with open(code_file, "w") as f:
f.write(new_text)
| code_file = 'node_modules/terser-webpack-plugin/dist/TaskRunner.js'
bad_code = 'const cpus = _os2.default.cpus() || { length: 1 };'
good_code = 'const cpus = { length: 1 };'
new_text = None
with open(code_file) as f:
print('Reading %s' % code_file)
file_content = f.read()
if bad_code in file_content:
print('Found code to patch')
new_text = file_content.replace(bad_code, good_code)
else:
print('Bad code not found')
new_text = None
if new_text:
print('Updating %s' % code_file)
with open(code_file, 'w') as f:
f.write(new_text) |
A, B = map(int,input().split())
a = str(A)
b = str(B)
new_a1 = int(a[0])
new_a2 = int(a[1])
new_a3 = int(a[2])
new_a = new_a3 * 100 + new_a2 * 10 + new_a1 * 1
new_b1 = int(b[0])
new_b2 = int(b[1])
new_b3 = int(b[2])
new_b = new_b3 * 100 + new_b2 * 10 + new_b1 * 1
if new_a > new_b:
print(new_a)
else:
print(new_b)
| (a, b) = map(int, input().split())
a = str(A)
b = str(B)
new_a1 = int(a[0])
new_a2 = int(a[1])
new_a3 = int(a[2])
new_a = new_a3 * 100 + new_a2 * 10 + new_a1 * 1
new_b1 = int(b[0])
new_b2 = int(b[1])
new_b3 = int(b[2])
new_b = new_b3 * 100 + new_b2 * 10 + new_b1 * 1
if new_a > new_b:
print(new_a)
else:
print(new_b) |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
class ErrorObj:
def __init__(self, code, message):
self.code = code
self.message = message
EOBJ_PARSE_ERROR = ErrorObj(-32700, 'parse error.')
EOBJ_INVALID_REQUEST = ErrorObj(-32600, 'invalid request.')
EOBJ_METHOD_NOT_FOUND = ErrorObj(-32601, 'method not found.')
EOBJ_INVALID_PARAMS = ErrorObj(-32602, 'invalid params.')
EOBJ_INTERNAL_ERROR = ErrorObj(-32603, 'internal error.')
def create_res_obj(data, req_id, error_code=None, error_message=None):
res_obj = {}
res_obj['jsonrpc'] = '2.0'
res_obj['id'] = req_id
if error_code is None:
res_obj['result'] = data
else:
res_obj['error'] = {
'code': error_code,
'message': error_message,
'data': data,
}
return res_obj
def operate_none(topology, req_obj):
return create_res_obj(
None,
req_obj['id'],
EOBJ_INTERNAL_ERROR.code,
'not implemented yet.')
def get_operation_dict():
return {
'get-topology': get_topology,
'create-topology': create_topology,
'delete-topology': delete_topology,
}
def get_topology(topology, req_obj):
data = topology.to_obj()
res_obj = create_res_obj(data, req_obj['id'])
return res_obj
def create_topology(topology, req_obj):
if topology.is_created():
topology.delete()
res_obj = None
if 'params' in req_obj and 'topology' in req_obj['params']:
topology_obj = req_obj['params']['topology']
topology.setup_topology_obj(topology_obj)
topology.create()
data = topology.to_obj()
res_obj = create_res_obj(data, req_obj['id'])
else:
res_obj = create_res_obj(
None,
req_obj['id'],
EOBJ_INVALID_REQUEST.code,
EOBJ_INVALID_REQUEST.message)
return res_obj
def delete_topology(topology, req_obj):
if topology.is_created():
topology.delete()
topology.setup_topology_obj({})
data = topology.to_obj()
res_obj = create_res_obj(data, req_obj['id'])
return res_obj
# EOF
| class Errorobj:
def __init__(self, code, message):
self.code = code
self.message = message
eobj_parse_error = error_obj(-32700, 'parse error.')
eobj_invalid_request = error_obj(-32600, 'invalid request.')
eobj_method_not_found = error_obj(-32601, 'method not found.')
eobj_invalid_params = error_obj(-32602, 'invalid params.')
eobj_internal_error = error_obj(-32603, 'internal error.')
def create_res_obj(data, req_id, error_code=None, error_message=None):
res_obj = {}
res_obj['jsonrpc'] = '2.0'
res_obj['id'] = req_id
if error_code is None:
res_obj['result'] = data
else:
res_obj['error'] = {'code': error_code, 'message': error_message, 'data': data}
return res_obj
def operate_none(topology, req_obj):
return create_res_obj(None, req_obj['id'], EOBJ_INTERNAL_ERROR.code, 'not implemented yet.')
def get_operation_dict():
return {'get-topology': get_topology, 'create-topology': create_topology, 'delete-topology': delete_topology}
def get_topology(topology, req_obj):
data = topology.to_obj()
res_obj = create_res_obj(data, req_obj['id'])
return res_obj
def create_topology(topology, req_obj):
if topology.is_created():
topology.delete()
res_obj = None
if 'params' in req_obj and 'topology' in req_obj['params']:
topology_obj = req_obj['params']['topology']
topology.setup_topology_obj(topology_obj)
topology.create()
data = topology.to_obj()
res_obj = create_res_obj(data, req_obj['id'])
else:
res_obj = create_res_obj(None, req_obj['id'], EOBJ_INVALID_REQUEST.code, EOBJ_INVALID_REQUEST.message)
return res_obj
def delete_topology(topology, req_obj):
if topology.is_created():
topology.delete()
topology.setup_topology_obj({})
data = topology.to_obj()
res_obj = create_res_obj(data, req_obj['id'])
return res_obj |
# The interval between temperature readings in seconds
READINGS_INTERVAL = 600
DATA_PIN = 3
SCX_PIN = 2
REDIS_HOST = 'localhost'
REDIS_PORT = 6379
LAST_MEASUREMENT_KEY = 'last_measurement'
LAST_MEASUREMENT_KEY_TEMPLATE = 'measurement_{}'
TIME_KEY = 'time'
TEMPERATURE_KEY = 'temperature'
HUMIDITY_KEY = 'humidity'
PREV_KEY = 'prev'
MEASUREMENT_EXPIRE_HOURS = 48
NUM_OF_READINGS = 10
| readings_interval = 600
data_pin = 3
scx_pin = 2
redis_host = 'localhost'
redis_port = 6379
last_measurement_key = 'last_measurement'
last_measurement_key_template = 'measurement_{}'
time_key = 'time'
temperature_key = 'temperature'
humidity_key = 'humidity'
prev_key = 'prev'
measurement_expire_hours = 48
num_of_readings = 10 |
mistring = 'Curso de python3'
print(mistring [0:10])
palabra ="hola"
print (len(palabra))
| mistring = 'Curso de python3'
print(mistring[0:10])
palabra = 'hola'
print(len(palabra)) |
def Insertion_Sort(alist):
'''
Sorting alist via Insertion Sort
'''
for index in range(1, len(alist)):
currentValue = alist[index]
position = index
while position > 0 and alist[position-1] > currentValue:
alist[position] = alist[position-1]
position = position - 1
alist[position] = currentValue
return alist
def main():
alist = [3, 45, 56, 1, 12, 67, 97, 22, 3]
print(Insertion_Sort(alist))
main()
| def insertion__sort(alist):
"""
Sorting alist via Insertion Sort
"""
for index in range(1, len(alist)):
current_value = alist[index]
position = index
while position > 0 and alist[position - 1] > currentValue:
alist[position] = alist[position - 1]
position = position - 1
alist[position] = currentValue
return alist
def main():
alist = [3, 45, 56, 1, 12, 67, 97, 22, 3]
print(insertion__sort(alist))
main() |
class ConnectGame:
def __init__(self, board):
self.board = board.replace(' ', '').split('\n')
def get_winner(self):
print(self.board)
visited = set()
to_visit = []
directions = [(-1, 0), (0, -1), (1, -1),
(1, 0), (0, 1), (-1, 1)]
for y in range(len(self.board)):
to_visit.append((0, y, 'X'))
for x in range(len(self.board[0])):
to_visit.append((x, 0, 'O'))
while to_visit:
tup = to_visit.pop(0)
if tup in visited:
continue
visited.add(tup)
x, y, token = tup
if y < 0 or y >= len(self.board):
continue
if x < 0 or x >= len(self.board[y]):
continue
if self.board[y][x] != token:
continue
if token == 'X' and x == len(self.board[0]) - 1:
return token
elif token == 'O' and y == len(self.board) - 1:
return token
for dx, dy in directions:
to_visit.append((x + dx, y + dy, token))
return ''
| class Connectgame:
def __init__(self, board):
self.board = board.replace(' ', '').split('\n')
def get_winner(self):
print(self.board)
visited = set()
to_visit = []
directions = [(-1, 0), (0, -1), (1, -1), (1, 0), (0, 1), (-1, 1)]
for y in range(len(self.board)):
to_visit.append((0, y, 'X'))
for x in range(len(self.board[0])):
to_visit.append((x, 0, 'O'))
while to_visit:
tup = to_visit.pop(0)
if tup in visited:
continue
visited.add(tup)
(x, y, token) = tup
if y < 0 or y >= len(self.board):
continue
if x < 0 or x >= len(self.board[y]):
continue
if self.board[y][x] != token:
continue
if token == 'X' and x == len(self.board[0]) - 1:
return token
elif token == 'O' and y == len(self.board) - 1:
return token
for (dx, dy) in directions:
to_visit.append((x + dx, y + dy, token))
return '' |
load("//:import_external.bzl", import_external = "safe_wix_scala_maven_import_external")
def dependencies():
import_external(
name = "javax_servlet_javax_servlet_api",
artifact = "javax.servlet:javax.servlet-api:3.1.0",
jar_sha256 = "af456b2dd41c4e82cf54f3e743bc678973d9fe35bd4d3071fa05c7e5333b8482",
srcjar_sha256 = "5c6d640f01e8e7ffdba21b2b75c0f64f0c30fd1fc3372123750c034cb363012a",
neverlink = 1,
generated_linkable_rule_name = "linkable",
)
| load('//:import_external.bzl', import_external='safe_wix_scala_maven_import_external')
def dependencies():
import_external(name='javax_servlet_javax_servlet_api', artifact='javax.servlet:javax.servlet-api:3.1.0', jar_sha256='af456b2dd41c4e82cf54f3e743bc678973d9fe35bd4d3071fa05c7e5333b8482', srcjar_sha256='5c6d640f01e8e7ffdba21b2b75c0f64f0c30fd1fc3372123750c034cb363012a', neverlink=1, generated_linkable_rule_name='linkable') |
primes = {2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31}
def is_prime(n):
if n in primes:
return True
else:
if n == 1:
return False
i = 2
while i*i <= n:
if n % i == 0:
return False
i += 1
primes.add(n)
return True
for _ in range(int(input())):
N = int(input())
if is_prime(N):
print(N, N)
else:
N *= 2
for i in range(2, N):
a, b = i, N - i
if is_prime(a) and is_prime(b):
print(a, b)
break | primes = {2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31}
def is_prime(n):
if n in primes:
return True
else:
if n == 1:
return False
i = 2
while i * i <= n:
if n % i == 0:
return False
i += 1
primes.add(n)
return True
for _ in range(int(input())):
n = int(input())
if is_prime(N):
print(N, N)
else:
n *= 2
for i in range(2, N):
(a, b) = (i, N - i)
if is_prime(a) and is_prime(b):
print(a, b)
break |
class NaryConfig:
def __init__(
self,
embedding_size=300,
hidden_size=150,
vocab_size=10000,
hidden_dropout_prob=0.,
cell_type='lstm',
use_attention=False,
use_bert=False,
tune_bert=False,
normalize_bert_embeddings=False,
xavier_init=True,
N=2,
**kwargs
):
super().__init__(**kwargs)
self.vocab_size = vocab_size
self.hidden_size = hidden_size
self.embedding_size = embedding_size
self.hidden_dropout_prob = hidden_dropout_prob
self.cell_type = cell_type
self.use_attention = use_attention
self.use_bert = use_bert
self.tune_bert = tune_bert
self.normalize_bert_embeddings = normalize_bert_embeddings
self.xavier_init = xavier_init
self.N = N
| class Naryconfig:
def __init__(self, embedding_size=300, hidden_size=150, vocab_size=10000, hidden_dropout_prob=0.0, cell_type='lstm', use_attention=False, use_bert=False, tune_bert=False, normalize_bert_embeddings=False, xavier_init=True, N=2, **kwargs):
super().__init__(**kwargs)
self.vocab_size = vocab_size
self.hidden_size = hidden_size
self.embedding_size = embedding_size
self.hidden_dropout_prob = hidden_dropout_prob
self.cell_type = cell_type
self.use_attention = use_attention
self.use_bert = use_bert
self.tune_bert = tune_bert
self.normalize_bert_embeddings = normalize_bert_embeddings
self.xavier_init = xavier_init
self.N = N |
class Foo:
num1 : int
num2 : int
foo1 = Foo()
id_foo1_before = id(foo1)
foo1.num1 = 1
id_foo1_after = id(foo1)
if id_foo1_before == id_foo1_after:
print('Foo is immutable')
else:
print('Foo is mutable')
| class Foo:
num1: int
num2: int
foo1 = foo()
id_foo1_before = id(foo1)
foo1.num1 = 1
id_foo1_after = id(foo1)
if id_foo1_before == id_foo1_after:
print('Foo is immutable')
else:
print('Foo is mutable') |
def cadicao(n1,n2):
return n1 + n2
def csubtracao (n1,n2):
return n1 - n2
def cdivisao (n1,n2):
return n1 / n2
def cdivisaoint (n1,n2):
return n1 // n2
def cmultiplicacao (n1,n2):
return n1 * n2
def cpotenciacao(n1,n2):
return n1 ** n2
def craiz (n1,n2):
return n1 ** (1/n2)
def cresto (n1,n2):
return n1 % n2
| def cadicao(n1, n2):
return n1 + n2
def csubtracao(n1, n2):
return n1 - n2
def cdivisao(n1, n2):
return n1 / n2
def cdivisaoint(n1, n2):
return n1 // n2
def cmultiplicacao(n1, n2):
return n1 * n2
def cpotenciacao(n1, n2):
return n1 ** n2
def craiz(n1, n2):
return n1 ** (1 / n2)
def cresto(n1, n2):
return n1 % n2 |
def main():
print('Please enter x as base and exp as exponent.')
try:
while 1:
x = float(input('x = '))
exp = int(input('exp = '))
print("%.3f to the power %d is %.5f\n" % (x,exp,x ** exp))
print("Please enter next pair or q to quit.")
except:print('Hope you enjoyed the power trip...')
main()
| def main():
print('Please enter x as base and exp as exponent.')
try:
while 1:
x = float(input('x = '))
exp = int(input('exp = '))
print('%.3f to the power %d is %.5f\n' % (x, exp, x ** exp))
print('Please enter next pair or q to quit.')
except:
print('Hope you enjoyed the power trip...')
main() |
def define_targets(rules):
rules.cc_library(
name = "TypeCast",
srcs = ["TypeCast.cpp"],
hdrs = ["TypeCast.h"],
linkstatic = True,
local_defines = ["C10_BUILD_MAIN_LIB"],
visibility = ["//visibility:public"],
deps = [
":base",
"//c10/core:ScalarType",
"//c10/macros",
],
)
rules.cc_library(
name = "base",
srcs = rules.glob(
["*.cpp"],
exclude = [
"TypeCast.cpp",
"typeid.cpp",
],
),
hdrs = rules.glob(
["*.h"],
exclude = [
"TypeCast.h",
"typeid.h",
],
),
# This library uses flags and registration. Do not let the
# linker remove them.
alwayslink = True,
linkstatic = True,
local_defines = ["C10_BUILD_MAIN_LIB"],
visibility = ["//visibility:public"],
deps = [
"@fmt",
"//c10/macros",
] + rules.select({
"//c10:using_gflags": ["@com_github_gflags_gflags//:gflags"],
"//conditions:default": [],
}) + rules.select({
"//c10:using_glog": ["@com_github_glog//:glog"],
"//conditions:default": [],
}),
)
rules.cc_library(
name = "typeid",
srcs = ["typeid.cpp"],
hdrs = ["typeid.h"],
linkstatic = True,
local_defines = ["C10_BUILD_MAIN_LIB"],
visibility = ["//visibility:public"],
deps = [
":base",
"//c10/core:ScalarType",
"//c10/macros",
],
)
rules.filegroup(
name = "headers",
srcs = rules.glob(
["*.h"],
exclude = [
],
),
visibility = ["//c10:__pkg__"],
)
| def define_targets(rules):
rules.cc_library(name='TypeCast', srcs=['TypeCast.cpp'], hdrs=['TypeCast.h'], linkstatic=True, local_defines=['C10_BUILD_MAIN_LIB'], visibility=['//visibility:public'], deps=[':base', '//c10/core:ScalarType', '//c10/macros'])
rules.cc_library(name='base', srcs=rules.glob(['*.cpp'], exclude=['TypeCast.cpp', 'typeid.cpp']), hdrs=rules.glob(['*.h'], exclude=['TypeCast.h', 'typeid.h']), alwayslink=True, linkstatic=True, local_defines=['C10_BUILD_MAIN_LIB'], visibility=['//visibility:public'], deps=['@fmt', '//c10/macros'] + rules.select({'//c10:using_gflags': ['@com_github_gflags_gflags//:gflags'], '//conditions:default': []}) + rules.select({'//c10:using_glog': ['@com_github_glog//:glog'], '//conditions:default': []}))
rules.cc_library(name='typeid', srcs=['typeid.cpp'], hdrs=['typeid.h'], linkstatic=True, local_defines=['C10_BUILD_MAIN_LIB'], visibility=['//visibility:public'], deps=[':base', '//c10/core:ScalarType', '//c10/macros'])
rules.filegroup(name='headers', srcs=rules.glob(['*.h'], exclude=[]), visibility=['//c10:__pkg__']) |
v = input("digite um valor em dias: ")
a = int(int(v)/365)
m = int((int(v)%365)/30)
d = int((int(v)%365)%30)
print(str(a)+" ano(s)")
print(str(m)+" mes(es)")
print(str(d)+" dias(s)")
| v = input('digite um valor em dias: ')
a = int(int(v) / 365)
m = int(int(v) % 365 / 30)
d = int(int(v) % 365 % 30)
print(str(a) + ' ano(s)')
print(str(m) + ' mes(es)')
print(str(d) + ' dias(s)') |
class Solution:
def threeSumClosest(self, nums: List[int], target: int) -> int:
nums.sort()
opt = float("inf")
for i in range(len(nums)):
# Fix one integer
fixed = nums[i]
newTarget = target-fixed
l,r = i+1, len(nums)-1
while(l<r):
now = nums[l]+nums[r]
# If sum of other two integer<newTarget,
# meaning need to make left integer bigger.
if now<newTarget:
l = l+1
elif now==newTarget:
return target
else:
r = r-1
if(abs(opt-target)>abs(now+fixed-target)):
opt = now+fixed
return opt | class Solution:
def three_sum_closest(self, nums: List[int], target: int) -> int:
nums.sort()
opt = float('inf')
for i in range(len(nums)):
fixed = nums[i]
new_target = target - fixed
(l, r) = (i + 1, len(nums) - 1)
while l < r:
now = nums[l] + nums[r]
if now < newTarget:
l = l + 1
elif now == newTarget:
return target
else:
r = r - 1
if abs(opt - target) > abs(now + fixed - target):
opt = now + fixed
return opt |
class MetricUnitError(Exception):
pass
class SchemaValidationError(Exception):
pass
class MetricValueError(Exception):
pass
class UniqueNamespaceError(Exception):
pass
| class Metricuniterror(Exception):
pass
class Schemavalidationerror(Exception):
pass
class Metricvalueerror(Exception):
pass
class Uniquenamespaceerror(Exception):
pass |
# is_lower_case
#
# Checks if a string is lower case.
#
# Convert the given string to lower case, using str.lower() method and compare it to the original.
def is_lower_case(string):
return string == string.lower()
is_lower_case('abc') # True
is_lower_case('a3@$') # True
is_lower_case('Ab4') # False
| def is_lower_case(string):
return string == string.lower()
is_lower_case('abc')
is_lower_case('a3@$')
is_lower_case('Ab4') |
# Class Variable
class Employee:
no_of_emp = 0
raise_amount = 1.04
def __init__(self, first, last, pay):
self.first = first
self.last = last
self.pay = pay
self.email = first + "." + last + "@gmail.com"
Employee.no_of_emp += 1
def apply_raise(self):
self.pay = int(self.pay * self.raise_amount)
def fullname(self):
return '{} {}'.format(self.first, self.last)
emp_1 = Employee('Subhash','Y', 50000)
emp_2 = Employee('Princ','Kumar',60000)
print(Employee.no_of_emp)
print(Employee.__dict__)
| class Employee:
no_of_emp = 0
raise_amount = 1.04
def __init__(self, first, last, pay):
self.first = first
self.last = last
self.pay = pay
self.email = first + '.' + last + '@gmail.com'
Employee.no_of_emp += 1
def apply_raise(self):
self.pay = int(self.pay * self.raise_amount)
def fullname(self):
return '{} {}'.format(self.first, self.last)
emp_1 = employee('Subhash', 'Y', 50000)
emp_2 = employee('Princ', 'Kumar', 60000)
print(Employee.no_of_emp)
print(Employee.__dict__) |
#Written by: Karim shoair - D4Vinci ( Dr0p1t-Framework )
#In this script I store some SE tricks to use ;)
#Start
#Get the user password by fooling him and then uses it to run commands as the user by psexec to bypass UAC
def ask_pwd():
while True:
cmd = '''Powershell "$cred=$host.ui.promptforcredential('Windows firewall permission','',[Environment]::UserName,[Environment]::UserDomainName); echo $cred.getnetworkcredential().password;"'''
response = get_output(cmd)
if response.strip() != '' and not response.strip().startswith('[!]'): break
return response.strip()
| def ask_pwd():
while True:
cmd = 'Powershell "$cred=$host.ui.promptforcredential(\'Windows firewall permission\',\'\',[Environment]::UserName,[Environment]::UserDomainName); echo $cred.getnetworkcredential().password;"'
response = get_output(cmd)
if response.strip() != '' and (not response.strip().startswith('[!]')):
break
return response.strip() |
main = {
'General': {
'Prop': {
'Labels': 'rw',
'AlarmStatus': 'r-'
}
}
}
cfgm = {
'Logicalport': {
'Cmd': (
'Create',
'Delete'
)
}
} | main = {'General': {'Prop': {'Labels': 'rw', 'AlarmStatus': 'r-'}}}
cfgm = {'Logicalport': {'Cmd': ('Create', 'Delete')}} |
model = dict(
type='MonoRUnDetector',
pretrained='torchvision://resnet101',
backbone=dict(
type='ResNet',
depth=101,
num_stages=4,
out_indices=(0, 1, 2, 3),
frozen_stages=1,
norm_cfg=dict(type='BN', requires_grad=True),
norm_eval=True,
style='pytorch'),
neck=dict(
type='FPNplus',
in_channels=[256, 512, 1024, 2048],
out_channels=256,
num_outs=5,
num_lower_outs=1),
rpn_head=dict(
type='RPNHeadMod',
in_channels=256,
feat_channels=256,
starting_level=1,
anchor_generator=dict(
type='AnchorGenerator',
scales=[5],
ratios=[0.4, 0.7, 1.0],
strides=[4, 8, 16, 32, 64]),
bbox_coder=dict(
type='DeltaXYWHBBoxCoder',
target_means=[.0, .0, .0, .0],
target_stds=[1.0, 1.0, 1.0, 1.0]),
loss_cls=dict(
type='CrossEntropyLoss', use_sigmoid=True, loss_weight=1.0),
loss_bbox=dict(type='SmoothL1Loss', beta=1.0 / 9.0, loss_weight=1.0)),
roi_head=dict(
type='MonoRUnRoIHead',
bbox_roi_extractor=dict(
type='SingleRoIExtractor',
roi_layer=dict(type='RoIAlign', output_size=7, sampling_ratio=0),
out_channels=256,
featmap_strides=[2, 4, 8, 16, 32],
finest_scale=20),
bbox_head=dict(
type='Shared2FCBBoxHead',
in_channels=256,
fc_out_channels=1024,
roi_feat_size=7,
num_classes=1,
bbox_coder=dict(
type='DeltaXYWHBBoxCoder',
target_means=[0., 0., 0., 0.],
target_stds=[0.1, 0.1, 0.2, 0.2]),
reg_class_agnostic=True,
loss_cls=dict(
type='CrossEntropyLoss', use_sigmoid=False, loss_weight=1.0),
loss_bbox=dict(type='SmoothL1Loss', beta=1.0, loss_weight=1.0)),
global_head=dict(
type='FCExtractorMonteCarlo',
with_dim=True,
with_latent_vec=True,
latent_channels=16,
num_fcs=2,
in_channels=256,
fc_out_channels=1024,
num_classes=1,
roi_feat_size=7,
latent_class_agnostic=True,
loss_dim=dict(
type='SmoothL1LossMod', loss_weight=1.0, beta=1.0),
dim_coder=dict(
type='MultiClassNormDimCoder',
target_means=[(3.89, 1.53, 1.62)],
target_stds=[(0.44, 0.14, 0.11)]),
dropout_rate=0.5,
dropout2d_rate=0.2),
noc_roi_extractor=dict(
type='SingleRoIExtractor',
roi_layer=dict(type='RoIAlign', output_size=14, sampling_ratio=0),
out_channels=256,
featmap_strides=[2, 4, 8, 16, 32],
finest_scale=28),
noc_head=dict(
type='FCNNOCDecoder',
num_convs=3,
roi_feat_size=14,
in_channels=256,
conv_kernel_size=3,
conv_out_channels=256,
num_classes=1,
class_agnostic=True,
upsample_cfg=dict(type='carafe', scale_factor=2),
num_convs_upsampled=1,
loss_noc=None,
noc_channels=3,
uncert_channels=2,
dropout2d_rate=0.2,
flip_correction=True,
coord_coder=dict(
type='NOCCoder',
target_means=(-0.1, -0.5, 0.0),
target_stds=(0.35, 0.23, 0.34),
eps=1e-5),
latent_channels=16),
projection_head=dict(
type='UncertProjectionHead',
loss_proj=dict(
type='RobustKLLoss',
loss_weight=1.0,
momentum=0.1),
proj_error_coder=dict(
type='DistanceInvarProjErrorCoder',
ref_length=1.6,
ref_focal_y=722,
target_std=0.15)),
pose_head=dict(
type='UncertPropPnPOptimizer',
pnp=dict(
type='PnPUncert',
z_min=0.5,
epnp_istd_thres=0.6,
inlier_opt_only=True,
forward_exact_hessian=False),
rotation_coder=dict(type='Vec2DRotationCoder'),
allowed_border=200,
epnp_ransac_thres_ratio=0.2),
score_head=dict(
type='MLPScoreHead',
reg_fc_out_channels=1024,
num_pose_fcs=1,
pose_fc_out_channels=1024,
fusion_type='add',
num_fused_fcs=1,
fc_out_channels=256,
use_pose_norm=True,
loss_score=dict(
type='CrossEntropyLoss', use_sigmoid=True, loss_weight=1.0),)
))
# model training and testing settings
train_cfg = dict(
rpn=dict(
assigner=dict(
type='MaxIoUAssigner',
pos_iou_thr=0.7,
neg_iou_thr=0.3,
min_pos_iou=0.3,
match_low_quality=True,
ignore_iof_thr=0.5),
sampler=dict(
type='RandomSampler',
num=256,
pos_fraction=0.5,
neg_pos_ub=-1,
add_gt_as_proposals=False),
allowed_border=-1,
pos_weight=-1,
debug=False),
rpn_proposal=dict(
nms_across_levels=False,
nms_pre=2000,
nms_post=1000,
max_num=1000,
nms_thr=0.75,
min_bbox_size=0),
rcnn=dict(
bbox_assigner=dict(
type='MaxIoUAssigner',
pos_iou_thr=0.6,
neg_iou_thr=0.6,
min_pos_iou=0.6,
match_low_quality=True,
ignore_iof_thr=0.6),
bbox_sampler=dict(
type='RandomSampler',
num=512,
pos_fraction=0.25,
neg_pos_ub=-1,
add_gt_as_proposals=True),
iou3d_sampler=dict(
type='IoU3DBalancedSampler',
pos_iou_thr=0.5,
pos_fraction_min=0.25,
pos_fraction_max=0.75,
smooth_keeprate=True),
dense_size=28,
pos_weight=-1,
calib_scoring=True,
debug=False))
test_cfg = dict(
rpn=dict(
nms_across_levels=False,
nms_pre=1000,
nms_post=1000,
max_num=1000,
nms_thr=0.75,
min_bbox_size=0),
rcnn=dict(
score_thr=0.05,
nms=dict(type='nms', iou_threshold=0.7),
max_per_img=100,
nms_3d_thr=0.01,
mult_2d_score=True,
calib_scoring=True,
cov_correction=True))
dataset_type = 'KITTI3DCarDataset'
train_data_root = 'data/kitti/training/'
test_data_root = 'data/kitti/testing/'
img_norm_cfg = dict(
mean=[95.80, 98.72, 93.82], std=[83.11, 81.65, 80.54], to_rgb=True)
train_pipeline = [
dict(type='LoadImageFromFile', to_float32=True),
dict(type='LoadAnnotations', with_bbox=True),
dict(type='LoadAnnotations3D',
with_bbox_3d=True,
with_coord_3d=False,
with_coord_2d=True),
dict(type='RandomFlip3D', flip_ratio=0.5),
dict(type='PhotoMetricDistortion'), # use default args
dict(type='Normalize', **img_norm_cfg),
dict(type='Pad3D', size_divisor=32),
dict(type='DefaultFormatBundle3D'),
dict(type='Collect',
keys=['img', 'gt_bboxes', 'gt_bboxes_ignore', 'gt_labels', 'gt_bboxes_3d',
'gt_proj_r_mats', 'gt_proj_t_vecs', 'coord_2d', 'cam_intrinsic']),
]
test_pipeline = [
dict(type='LoadImageFromFile'),
dict(
type='MultiScaleFlipAug',
scale_factor=1.0,
flip=False,
transforms=[
dict(type='LoadAnnotations3D',
with_bbox_3d=False,
with_coord_3d=False,
with_coord_2d=True),
dict(type='Normalize', **img_norm_cfg),
dict(type='Pad3D', size_divisor=32),
dict(type='ImageToTensor', keys=['img', 'coord_2d']),
dict(type='ToTensor', keys=['cam_intrinsic']),
dict(type='ToDataContainer', fields=(
dict(key='cam_intrinsic'), )),
dict(type='Collect', keys=[
'img', 'coord_2d', 'cam_intrinsic']),
])
]
data = dict(
samples_per_gpu=3,
workers_per_gpu=3,
train=dict(
type=dataset_type,
ann_file=train_data_root + 'mono3dsplit_train_list.txt',
img_prefix=train_data_root + 'image_2/',
label_prefix=train_data_root + 'label_2/',
calib_prefix=train_data_root + 'calib/',
meta_prefix=train_data_root + 'img_metas/',
pipeline=train_pipeline,
filter_empty_gt=False),
val=dict(
type=dataset_type,
ann_file=train_data_root + 'mono3dsplit_val_list.txt',
img_prefix=train_data_root + 'image_2/',
label_prefix=train_data_root + 'label_2/',
calib_prefix=train_data_root + 'calib/',
meta_prefix=train_data_root + 'img_metas/',
pipeline=test_pipeline,
filter_empty_gt=False),
test=dict(
type=dataset_type,
ann_file=test_data_root + 'test_list.txt',
img_prefix=test_data_root + 'image_2/',
calib_prefix=test_data_root + 'calib/',
meta_prefix=test_data_root + 'img_metas/',
pipeline=test_pipeline,
filter_empty_gt=False))
evaluation = dict(
interval=2,
metric=['bbox', '3d'])
# optimizer
optimizer = dict(type='AdamW', lr=2.0e-4, weight_decay=0.01)
optimizer_config = dict(grad_clip=dict(max_norm=35, norm_type=2))
# learning policy
lr_config = dict(
policy='CosineAnnealing',
by_epoch=False,
warmup='linear',
warmup_iters=500,
warmup_ratio=0.001,
min_lr=0.0)
total_epochs = 50
checkpoint_config = dict(interval=2)
# yapf:disable
log_config = dict(
interval=10,
hooks=[
dict(type='TextLoggerHook'),
dict(type='TensorboardLoggerHook')
])
# yapf:enable
dist_params = dict(backend='nccl')
log_level = 'INFO'
load_from = 'http://download.openmmlab.com/mmdetection/v2.0/' \
'faster_rcnn/faster_rcnn_r101_fpn_2x_coco/' \
'faster_rcnn_r101_fpn_2x_coco_bbox_mAP-0.398_20200504_210455-1d2dac9c.pth'
resume_from = None
workflow = [('train', 1)]
find_unused_parameters = True # prevent distributed deadlock when there's no gt
custom_hooks = [
dict(
type='LossUpdaterHook',
step=[100],
loss_cfgs=[[
dict(attr='roi_head.pose_head.loss_calib',
type='KLLossMV',
loss_weight=0.01)
]],
by_epoch=False),
]
| model = dict(type='MonoRUnDetector', pretrained='torchvision://resnet101', backbone=dict(type='ResNet', depth=101, num_stages=4, out_indices=(0, 1, 2, 3), frozen_stages=1, norm_cfg=dict(type='BN', requires_grad=True), norm_eval=True, style='pytorch'), neck=dict(type='FPNplus', in_channels=[256, 512, 1024, 2048], out_channels=256, num_outs=5, num_lower_outs=1), rpn_head=dict(type='RPNHeadMod', in_channels=256, feat_channels=256, starting_level=1, anchor_generator=dict(type='AnchorGenerator', scales=[5], ratios=[0.4, 0.7, 1.0], strides=[4, 8, 16, 32, 64]), bbox_coder=dict(type='DeltaXYWHBBoxCoder', target_means=[0.0, 0.0, 0.0, 0.0], target_stds=[1.0, 1.0, 1.0, 1.0]), loss_cls=dict(type='CrossEntropyLoss', use_sigmoid=True, loss_weight=1.0), loss_bbox=dict(type='SmoothL1Loss', beta=1.0 / 9.0, loss_weight=1.0)), roi_head=dict(type='MonoRUnRoIHead', bbox_roi_extractor=dict(type='SingleRoIExtractor', roi_layer=dict(type='RoIAlign', output_size=7, sampling_ratio=0), out_channels=256, featmap_strides=[2, 4, 8, 16, 32], finest_scale=20), bbox_head=dict(type='Shared2FCBBoxHead', in_channels=256, fc_out_channels=1024, roi_feat_size=7, num_classes=1, bbox_coder=dict(type='DeltaXYWHBBoxCoder', target_means=[0.0, 0.0, 0.0, 0.0], target_stds=[0.1, 0.1, 0.2, 0.2]), reg_class_agnostic=True, loss_cls=dict(type='CrossEntropyLoss', use_sigmoid=False, loss_weight=1.0), loss_bbox=dict(type='SmoothL1Loss', beta=1.0, loss_weight=1.0)), global_head=dict(type='FCExtractorMonteCarlo', with_dim=True, with_latent_vec=True, latent_channels=16, num_fcs=2, in_channels=256, fc_out_channels=1024, num_classes=1, roi_feat_size=7, latent_class_agnostic=True, loss_dim=dict(type='SmoothL1LossMod', loss_weight=1.0, beta=1.0), dim_coder=dict(type='MultiClassNormDimCoder', target_means=[(3.89, 1.53, 1.62)], target_stds=[(0.44, 0.14, 0.11)]), dropout_rate=0.5, dropout2d_rate=0.2), noc_roi_extractor=dict(type='SingleRoIExtractor', roi_layer=dict(type='RoIAlign', output_size=14, sampling_ratio=0), out_channels=256, featmap_strides=[2, 4, 8, 16, 32], finest_scale=28), noc_head=dict(type='FCNNOCDecoder', num_convs=3, roi_feat_size=14, in_channels=256, conv_kernel_size=3, conv_out_channels=256, num_classes=1, class_agnostic=True, upsample_cfg=dict(type='carafe', scale_factor=2), num_convs_upsampled=1, loss_noc=None, noc_channels=3, uncert_channels=2, dropout2d_rate=0.2, flip_correction=True, coord_coder=dict(type='NOCCoder', target_means=(-0.1, -0.5, 0.0), target_stds=(0.35, 0.23, 0.34), eps=1e-05), latent_channels=16), projection_head=dict(type='UncertProjectionHead', loss_proj=dict(type='RobustKLLoss', loss_weight=1.0, momentum=0.1), proj_error_coder=dict(type='DistanceInvarProjErrorCoder', ref_length=1.6, ref_focal_y=722, target_std=0.15)), pose_head=dict(type='UncertPropPnPOptimizer', pnp=dict(type='PnPUncert', z_min=0.5, epnp_istd_thres=0.6, inlier_opt_only=True, forward_exact_hessian=False), rotation_coder=dict(type='Vec2DRotationCoder'), allowed_border=200, epnp_ransac_thres_ratio=0.2), score_head=dict(type='MLPScoreHead', reg_fc_out_channels=1024, num_pose_fcs=1, pose_fc_out_channels=1024, fusion_type='add', num_fused_fcs=1, fc_out_channels=256, use_pose_norm=True, loss_score=dict(type='CrossEntropyLoss', use_sigmoid=True, loss_weight=1.0))))
train_cfg = dict(rpn=dict(assigner=dict(type='MaxIoUAssigner', pos_iou_thr=0.7, neg_iou_thr=0.3, min_pos_iou=0.3, match_low_quality=True, ignore_iof_thr=0.5), sampler=dict(type='RandomSampler', num=256, pos_fraction=0.5, neg_pos_ub=-1, add_gt_as_proposals=False), allowed_border=-1, pos_weight=-1, debug=False), rpn_proposal=dict(nms_across_levels=False, nms_pre=2000, nms_post=1000, max_num=1000, nms_thr=0.75, min_bbox_size=0), rcnn=dict(bbox_assigner=dict(type='MaxIoUAssigner', pos_iou_thr=0.6, neg_iou_thr=0.6, min_pos_iou=0.6, match_low_quality=True, ignore_iof_thr=0.6), bbox_sampler=dict(type='RandomSampler', num=512, pos_fraction=0.25, neg_pos_ub=-1, add_gt_as_proposals=True), iou3d_sampler=dict(type='IoU3DBalancedSampler', pos_iou_thr=0.5, pos_fraction_min=0.25, pos_fraction_max=0.75, smooth_keeprate=True), dense_size=28, pos_weight=-1, calib_scoring=True, debug=False))
test_cfg = dict(rpn=dict(nms_across_levels=False, nms_pre=1000, nms_post=1000, max_num=1000, nms_thr=0.75, min_bbox_size=0), rcnn=dict(score_thr=0.05, nms=dict(type='nms', iou_threshold=0.7), max_per_img=100, nms_3d_thr=0.01, mult_2d_score=True, calib_scoring=True, cov_correction=True))
dataset_type = 'KITTI3DCarDataset'
train_data_root = 'data/kitti/training/'
test_data_root = 'data/kitti/testing/'
img_norm_cfg = dict(mean=[95.8, 98.72, 93.82], std=[83.11, 81.65, 80.54], to_rgb=True)
train_pipeline = [dict(type='LoadImageFromFile', to_float32=True), dict(type='LoadAnnotations', with_bbox=True), dict(type='LoadAnnotations3D', with_bbox_3d=True, with_coord_3d=False, with_coord_2d=True), dict(type='RandomFlip3D', flip_ratio=0.5), dict(type='PhotoMetricDistortion'), dict(type='Normalize', **img_norm_cfg), dict(type='Pad3D', size_divisor=32), dict(type='DefaultFormatBundle3D'), dict(type='Collect', keys=['img', 'gt_bboxes', 'gt_bboxes_ignore', 'gt_labels', 'gt_bboxes_3d', 'gt_proj_r_mats', 'gt_proj_t_vecs', 'coord_2d', 'cam_intrinsic'])]
test_pipeline = [dict(type='LoadImageFromFile'), dict(type='MultiScaleFlipAug', scale_factor=1.0, flip=False, transforms=[dict(type='LoadAnnotations3D', with_bbox_3d=False, with_coord_3d=False, with_coord_2d=True), dict(type='Normalize', **img_norm_cfg), dict(type='Pad3D', size_divisor=32), dict(type='ImageToTensor', keys=['img', 'coord_2d']), dict(type='ToTensor', keys=['cam_intrinsic']), dict(type='ToDataContainer', fields=(dict(key='cam_intrinsic'),)), dict(type='Collect', keys=['img', 'coord_2d', 'cam_intrinsic'])])]
data = dict(samples_per_gpu=3, workers_per_gpu=3, train=dict(type=dataset_type, ann_file=train_data_root + 'mono3dsplit_train_list.txt', img_prefix=train_data_root + 'image_2/', label_prefix=train_data_root + 'label_2/', calib_prefix=train_data_root + 'calib/', meta_prefix=train_data_root + 'img_metas/', pipeline=train_pipeline, filter_empty_gt=False), val=dict(type=dataset_type, ann_file=train_data_root + 'mono3dsplit_val_list.txt', img_prefix=train_data_root + 'image_2/', label_prefix=train_data_root + 'label_2/', calib_prefix=train_data_root + 'calib/', meta_prefix=train_data_root + 'img_metas/', pipeline=test_pipeline, filter_empty_gt=False), test=dict(type=dataset_type, ann_file=test_data_root + 'test_list.txt', img_prefix=test_data_root + 'image_2/', calib_prefix=test_data_root + 'calib/', meta_prefix=test_data_root + 'img_metas/', pipeline=test_pipeline, filter_empty_gt=False))
evaluation = dict(interval=2, metric=['bbox', '3d'])
optimizer = dict(type='AdamW', lr=0.0002, weight_decay=0.01)
optimizer_config = dict(grad_clip=dict(max_norm=35, norm_type=2))
lr_config = dict(policy='CosineAnnealing', by_epoch=False, warmup='linear', warmup_iters=500, warmup_ratio=0.001, min_lr=0.0)
total_epochs = 50
checkpoint_config = dict(interval=2)
log_config = dict(interval=10, hooks=[dict(type='TextLoggerHook'), dict(type='TensorboardLoggerHook')])
dist_params = dict(backend='nccl')
log_level = 'INFO'
load_from = 'http://download.openmmlab.com/mmdetection/v2.0/faster_rcnn/faster_rcnn_r101_fpn_2x_coco/faster_rcnn_r101_fpn_2x_coco_bbox_mAP-0.398_20200504_210455-1d2dac9c.pth'
resume_from = None
workflow = [('train', 1)]
find_unused_parameters = True
custom_hooks = [dict(type='LossUpdaterHook', step=[100], loss_cfgs=[[dict(attr='roi_head.pose_head.loss_calib', type='KLLossMV', loss_weight=0.01)]], by_epoch=False)] |
#!/usr/bin/env python3
class Test:
@classmethod
def assert_equals(cls, func_out, expected_out):
assert func_out == expected_out, f"The function out '{func_out}' != '{expected_out}'"
| class Test:
@classmethod
def assert_equals(cls, func_out, expected_out):
assert func_out == expected_out, f"The function out '{func_out}' != '{expected_out}'" |
def max(a, b):
if a > b:
return a
elif b > a:
return b
else:
return 'a = b'
print(max(123,445))
| def max(a, b):
if a > b:
return a
elif b > a:
return b
else:
return 'a = b'
print(max(123, 445)) |
kernel = [1,0,1] # averaging of neighbors #kernel = np.exp(-np.linspace(-2,2,5)**2) ## Gaussian
kernel /= np.sum(kernel) # normalize
smooth = np.convolve(y, kernel, mode='same') # find the average value of neighbors
rms_noise = np.average((y[1:]-y[:-1])**2)**.5 # estimate what the average noise is (rms of derivative)
where_not_excess = (np.abs(y-smooth) < rms_noise*3) # find all points with difference from average less than 3sigma
x,y = x[where_not_excess],y[where_not_excess] # filter the data
| kernel = [1, 0, 1]
kernel /= np.sum(kernel)
smooth = np.convolve(y, kernel, mode='same')
rms_noise = np.average((y[1:] - y[:-1]) ** 2) ** 0.5
where_not_excess = np.abs(y - smooth) < rms_noise * 3
(x, y) = (x[where_not_excess], y[where_not_excess]) |
def boolean_true():
return value # Change the varable named value to the correct answer
print(boolean_true())
| def boolean_true():
return value
print(boolean_true()) |
iot_devices = {
"cl01": "HostName=znetinnn12ioth01.azure-devices.net;DeviceId=cl01;SharedAccessKey=C3lI2jbo0DVgPtUqMjg7BYxXpBRvGsvXCCP/33zRK34=", # Cristian's Device
"js01": "HostName=znetinnn12ioth01.azure-devices.net;DeviceId=js01;SharedAccessKey=9g4Qmbfoi/WZPNTA3HqePqrCjYd1mtj15CKu8hMow9Y=", # John's Device
"rd01": "HostName=znetinnn12ioth01.azure-devices.net;DeviceId=rd01;SharedAccessKey=Qeqd/TDF2RflZlRpY2rWbElHKrC3OJ7nMVG3R0LOlF0=", # Roy's Device
"sd01": "HostName=znetinnn12ioth01.azure-devices.net;DeviceId=sd01;SharedAccessKey=LDpxKA7Tpnqba3Z3ckEITlRKmLVnNy7/hzB4sMmpR28=", # Steve's Device / Actual Smart Dispenser
"mm01": "HostName=znetinnn12ioth01.azure-devices.net;DeviceId=mm01;SharedAccessKey=f0X0nJcyx4ailP0Q8ZYfaHT2YFk2+BkVPkZdf7+l0Yo=", # Mohsen's Device
"device001": "HostName=znetinnn12ioth01.azure-devices.net;DeviceId=device_001;SharedAccessKey=s6qT9bdU7vIWdKu1GAaliN5QR4lljBQK4/yIg2cO8QQ=", # Spare #1
"device002": "HostName=znetinnn12ioth01.azure-devices.net;DeviceId=device_002;SharedAccessKey=Sn5XrNGsib+NZ9AIxNngQsUGX03rNP41wEKlqdOhcw0=", # Spare #2
"device003": "HostName=znetinnn12ioth01.azure-devices.net;DeviceId=device_003;SharedAccessKey=SeB4TvNDT6nVlDU25H5Nvv6/En1gZfQcmJJLsqsfp84=", # Spare #3
}
print(iot_devices["sd01"])
| iot_devices = {'cl01': 'HostName=znetinnn12ioth01.azure-devices.net;DeviceId=cl01;SharedAccessKey=C3lI2jbo0DVgPtUqMjg7BYxXpBRvGsvXCCP/33zRK34=', 'js01': 'HostName=znetinnn12ioth01.azure-devices.net;DeviceId=js01;SharedAccessKey=9g4Qmbfoi/WZPNTA3HqePqrCjYd1mtj15CKu8hMow9Y=', 'rd01': 'HostName=znetinnn12ioth01.azure-devices.net;DeviceId=rd01;SharedAccessKey=Qeqd/TDF2RflZlRpY2rWbElHKrC3OJ7nMVG3R0LOlF0=', 'sd01': 'HostName=znetinnn12ioth01.azure-devices.net;DeviceId=sd01;SharedAccessKey=LDpxKA7Tpnqba3Z3ckEITlRKmLVnNy7/hzB4sMmpR28=', 'mm01': 'HostName=znetinnn12ioth01.azure-devices.net;DeviceId=mm01;SharedAccessKey=f0X0nJcyx4ailP0Q8ZYfaHT2YFk2+BkVPkZdf7+l0Yo=', 'device001': 'HostName=znetinnn12ioth01.azure-devices.net;DeviceId=device_001;SharedAccessKey=s6qT9bdU7vIWdKu1GAaliN5QR4lljBQK4/yIg2cO8QQ=', 'device002': 'HostName=znetinnn12ioth01.azure-devices.net;DeviceId=device_002;SharedAccessKey=Sn5XrNGsib+NZ9AIxNngQsUGX03rNP41wEKlqdOhcw0=', 'device003': 'HostName=znetinnn12ioth01.azure-devices.net;DeviceId=device_003;SharedAccessKey=SeB4TvNDT6nVlDU25H5Nvv6/En1gZfQcmJJLsqsfp84='}
print(iot_devices['sd01']) |
__title__ = 'fobi.contrib.plugins.form_elements.fields.input.constants'
__author__ = 'Artur Barseghyan <artur.barseghyan@gmail.com>'
__copyright__ = '2014-2017 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = (
'FORM_FIELD_TYPE_CHOICES', 'FIELD_TYPE_TO_DJANGO_FORM_FIELD_MAPPING',
'FIELD_TYPE_TO_DJANGO_FORM_WIDGET_MAPPING',
)
FORM_FIELD_TYPE_CHOICES = (
# ('button', 'button'),
('checkbox', 'checkbox'),
('color', 'color'),
('date', 'date'),
('datetime', 'datetime'),
('datetime-local', 'datetime-local'),
('email', 'email'),
('file', 'file'),
('hidden', 'hidden'),
('image', 'image'),
('month', 'month'),
('number', 'number'),
('password', 'password'),
('radio', 'radio'),
('range', 'range'),
('reset', 'reset'),
('search', 'search'),
# ('submit', 'submit'),
('tel', 'tel'),
('text', 'text'),
('time', 'time'),
('url', 'url'),
('week', 'week'),
)
FIELD_TYPE_TO_DJANGO_FORM_FIELD_MAPPING = {
'button': '',
'checkbox': '',
'color': '',
'date': '',
'datetime': '',
'datetime-local': '',
'email': '',
'file': '',
'hidden': '',
'image': '',
'month': '',
'number': '',
'password': '',
'radio': '',
'range': '',
'reset': '',
'search': '',
'submit': '',
'tel': '',
'text': '',
'time': '',
'url': '',
'week': '',
}
FIELD_TYPE_TO_DJANGO_FORM_WIDGET_MAPPING = {
'button': '',
'checkbox': '',
'color': '',
'date': '',
'datetime': '',
'datetime-local': '',
'email': '',
'file': '',
'hidden': '',
'image': '',
'month': '',
'number': '',
'password': '',
'radio': '',
'range': '',
'reset': '',
'search': '',
'submit': '',
'tel': '',
'text': '',
'time': '',
'url': '',
'week': '',
}
| __title__ = 'fobi.contrib.plugins.form_elements.fields.input.constants'
__author__ = 'Artur Barseghyan <artur.barseghyan@gmail.com>'
__copyright__ = '2014-2017 Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__all__ = ('FORM_FIELD_TYPE_CHOICES', 'FIELD_TYPE_TO_DJANGO_FORM_FIELD_MAPPING', 'FIELD_TYPE_TO_DJANGO_FORM_WIDGET_MAPPING')
form_field_type_choices = (('checkbox', 'checkbox'), ('color', 'color'), ('date', 'date'), ('datetime', 'datetime'), ('datetime-local', 'datetime-local'), ('email', 'email'), ('file', 'file'), ('hidden', 'hidden'), ('image', 'image'), ('month', 'month'), ('number', 'number'), ('password', 'password'), ('radio', 'radio'), ('range', 'range'), ('reset', 'reset'), ('search', 'search'), ('tel', 'tel'), ('text', 'text'), ('time', 'time'), ('url', 'url'), ('week', 'week'))
field_type_to_django_form_field_mapping = {'button': '', 'checkbox': '', 'color': '', 'date': '', 'datetime': '', 'datetime-local': '', 'email': '', 'file': '', 'hidden': '', 'image': '', 'month': '', 'number': '', 'password': '', 'radio': '', 'range': '', 'reset': '', 'search': '', 'submit': '', 'tel': '', 'text': '', 'time': '', 'url': '', 'week': ''}
field_type_to_django_form_widget_mapping = {'button': '', 'checkbox': '', 'color': '', 'date': '', 'datetime': '', 'datetime-local': '', 'email': '', 'file': '', 'hidden': '', 'image': '', 'month': '', 'number': '', 'password': '', 'radio': '', 'range': '', 'reset': '', 'search': '', 'submit': '', 'tel': '', 'text': '', 'time': '', 'url': '', 'week': ''} |
t = int(input())
ans = []
for testcase in range(t):
n, m = [int(i) for i in input().split()]
if (n == 2) and (m == 2):
folds = []
for i in range(n):
folds += [int(i) for i in input().split()]
for i in range(n - 1):
folds += [int(i) for i in input().split()]
if (folds.count(1) is 1) or (folds.count(0) is 1):
ans.append(1)
else: ans.append(0)
else:
ver_folds = [[int(i) for i in input().split()] for i in range(n)]
hor_folds = [[int(i) for i in input().split()] for i in range(n - 1)]
answer = 1
# print(ver_folds, hor_folds)
for i in range(n-1):
tmp = hor_folds[i]
# print('[*]', tmp)
order = None
for idx, j in enumerate(tmp):
# print((idx, j))
if idx == 0:
order = not j
if j == order:
answer = 0
break
# print(int(order), j)
order = j
else: continue
break
ans.append(answer)
print(*ans)
| t = int(input())
ans = []
for testcase in range(t):
(n, m) = [int(i) for i in input().split()]
if n == 2 and m == 2:
folds = []
for i in range(n):
folds += [int(i) for i in input().split()]
for i in range(n - 1):
folds += [int(i) for i in input().split()]
if folds.count(1) is 1 or folds.count(0) is 1:
ans.append(1)
else:
ans.append(0)
else:
ver_folds = [[int(i) for i in input().split()] for i in range(n)]
hor_folds = [[int(i) for i in input().split()] for i in range(n - 1)]
answer = 1
for i in range(n - 1):
tmp = hor_folds[i]
order = None
for (idx, j) in enumerate(tmp):
if idx == 0:
order = not j
if j == order:
answer = 0
break
order = j
else:
continue
break
ans.append(answer)
print(*ans) |
#This is ACSL 2018 ALl-Star Problem. This code is written by Robin Gan. And it is incompleted.
#more info check out acsl.org
#probelm name=Compressed_Tree
def main():
global orgSet
global editSet
global targetWord
global answerStr
answerStr=""
ipl=input()
useWord=ipl[0:len(ipl)-1]
targetWord=ipl[len(ipl)-1]
orgSet=[]
editSet=[]
for char in useWord:
orgSet.append(char)
editSet.append(char)
def same_letter():
global editSet
global orgSet
editSet=set(editSet)
editSet=list(editSet)
def check():
pass
def find_fre():
global orgSet
global editSet
global testSet
global numSet
testSet=[]
numSet=[]
strSet=""
for i4 in range(len(editSet)):
numSet.append(orgSet.count(editSet[i4]))
for i5 in range(len(editSet)):
strSet=str(numSet[i5])+editSet[i5]
testSet.append(strSet)
testSet=sorted(testSet)
return numSet
def list_edit(listtest):
listtest=list(listtest)
copy=listtest
new_element=join(copy[0],copy[1])
listtest.pop(0)
listtest.pop(0)
listtest.append(new_element)
listtest=sorted(listtest)
return listtest
def extract_number(str4):
str4=str(str4)
number=['1','2','3','4','5','6','7','8','9','0']
finalStr=""
for i10 in range(len(str4)):
for i11 in range(len(number)):
if str4[i10]==str(number[i11]):
finalStr=finalStr+str4[i10]
return finalStr
def extract_string(str4):
str4=str(str4)
if len(extract_number(str4))==1:
str7=str4.replace(str4[0],"")
return str7
if len(extract_number(str4))==2:
if extract_number(str4)[0]!=extract_number(str4)[1]:
str7=str4.replace(str4[0],"")
str8=str7.replace(str7[0],"")
return str8
if extract_number(str4)[0]==extract_number(str4)[1]:
str7=str4.replace(str4[0],"")
return str7
def join(element1,element2):
str1=str(extract_string(element1))+str(extract_string(element2))
str11=''
for iii in range(len(str1)):
str11=str11+str1[iii]
str1=sorted(str1)
str2=str(int(extract_number(element1))+int(extract_number(element2)))
#print(extract_number(element1),extract_number(element2))
return str2+str11
def sort_list():
global copy2
an=extract_string(copy2[0])
numlist=extract_number(copy2[0])
oo=[]
oo2=""
for ii1 in range(len(an)):
oo.append(an[ii1])
oo=sorted(oo)
for ii2 in range(len(oo)):
oo2=oo2+oo[ii2]
return numlist+oo2
def position():
global copy2
global targetWord
global answerStr
if len(copy2)>1:
for index in range(0,2):
for index2 in range(len(copy2[index])):
if copy2[index][index2]==targetWord:
if index==0:
answerStr=answerStr+'0'
if index==1:
answerStr=answerStr+'1'
else:
pass
def combine():
global testSet
global combined
global numSet
global copy2
copy2=testSet
while(len(copy2)>1):
position()
list_edit(copy2)
copy2=list_edit(copy2)
print(copy2)
return sort_list()
main()
same_letter()
find_fre()
combine()
print(answerStr)
| def main():
global orgSet
global editSet
global targetWord
global answerStr
answer_str = ''
ipl = input()
use_word = ipl[0:len(ipl) - 1]
target_word = ipl[len(ipl) - 1]
org_set = []
edit_set = []
for char in useWord:
orgSet.append(char)
editSet.append(char)
def same_letter():
global editSet
global orgSet
edit_set = set(editSet)
edit_set = list(editSet)
def check():
pass
def find_fre():
global orgSet
global editSet
global testSet
global numSet
test_set = []
num_set = []
str_set = ''
for i4 in range(len(editSet)):
numSet.append(orgSet.count(editSet[i4]))
for i5 in range(len(editSet)):
str_set = str(numSet[i5]) + editSet[i5]
testSet.append(strSet)
test_set = sorted(testSet)
return numSet
def list_edit(listtest):
listtest = list(listtest)
copy = listtest
new_element = join(copy[0], copy[1])
listtest.pop(0)
listtest.pop(0)
listtest.append(new_element)
listtest = sorted(listtest)
return listtest
def extract_number(str4):
str4 = str(str4)
number = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '0']
final_str = ''
for i10 in range(len(str4)):
for i11 in range(len(number)):
if str4[i10] == str(number[i11]):
final_str = finalStr + str4[i10]
return finalStr
def extract_string(str4):
str4 = str(str4)
if len(extract_number(str4)) == 1:
str7 = str4.replace(str4[0], '')
return str7
if len(extract_number(str4)) == 2:
if extract_number(str4)[0] != extract_number(str4)[1]:
str7 = str4.replace(str4[0], '')
str8 = str7.replace(str7[0], '')
return str8
if extract_number(str4)[0] == extract_number(str4)[1]:
str7 = str4.replace(str4[0], '')
return str7
def join(element1, element2):
str1 = str(extract_string(element1)) + str(extract_string(element2))
str11 = ''
for iii in range(len(str1)):
str11 = str11 + str1[iii]
str1 = sorted(str1)
str2 = str(int(extract_number(element1)) + int(extract_number(element2)))
return str2 + str11
def sort_list():
global copy2
an = extract_string(copy2[0])
numlist = extract_number(copy2[0])
oo = []
oo2 = ''
for ii1 in range(len(an)):
oo.append(an[ii1])
oo = sorted(oo)
for ii2 in range(len(oo)):
oo2 = oo2 + oo[ii2]
return numlist + oo2
def position():
global copy2
global targetWord
global answerStr
if len(copy2) > 1:
for index in range(0, 2):
for index2 in range(len(copy2[index])):
if copy2[index][index2] == targetWord:
if index == 0:
answer_str = answerStr + '0'
if index == 1:
answer_str = answerStr + '1'
else:
pass
def combine():
global testSet
global combined
global numSet
global copy2
copy2 = testSet
while len(copy2) > 1:
position()
list_edit(copy2)
copy2 = list_edit(copy2)
print(copy2)
return sort_list()
main()
same_letter()
find_fre()
combine()
print(answerStr) |
class StartAppReportObject:
def __init__(self, result):
self.data = result["data"]
def __eq__(self, other):
if type(other) != type(self):
return False
if self.data == other.data:
return True
return False | class Startappreportobject:
def __init__(self, result):
self.data = result['data']
def __eq__(self, other):
if type(other) != type(self):
return False
if self.data == other.data:
return True
return False |
string_to_revers = input()
for x in string_to_revers[::-1]:
print(x, end='')
| string_to_revers = input()
for x in string_to_revers[::-1]:
print(x, end='') |
## Mel-filterbank
mel_window_length = 50 # In milliseconds 25
mel_window_step = 10 # In milliseconds 10
mel_n_channels = 40
## Audio
sampling_rate = 16000
# Number of spectrogram frames in a partial utterance
partials_n_frames = 160 # 1600 ms
# Number of spectrogram frames at inference
inference_n_frames = 80 # 800 ms
## Voice Activation Detection
# Window size of the VAD. Must be either 10, 20 or 30 milliseconds.
# This sets the granularity of the VAD. Should not need to be changed.
vad_window_length = 30 # In milliseconds
# Number of frames to average together when performing the moving average smoothing.
# The larger this value, the larger the VAD variations must be to not get smoothed out.
vad_moving_average_width = 8
# Maximum number of consecutive silent frames a segment can have.
vad_max_silence_length = 6
## Audio volume normalization
audio_norm_target_dBFS = -30
| mel_window_length = 50
mel_window_step = 10
mel_n_channels = 40
sampling_rate = 16000
partials_n_frames = 160
inference_n_frames = 80
vad_window_length = 30
vad_moving_average_width = 8
vad_max_silence_length = 6
audio_norm_target_d_bfs = -30 |
src = Split('''
base64.c
''')
component = aos_component('base64', src) | src = split('\n base64.c\n')
component = aos_component('base64', src) |
jogador = {}
gols = []
soma = 0
nome = input('Digite o nome do jogador: ')
partidas = int(input(f'Quantas partidas o {nome} jogou: '))
for i in range(0, partidas):
gol = int(input(f'Digite quantos gols na {i}: '))
soma += gol
gols.append(gol)
jogador['Nome'] = nome
jogador['Partidas'] = partidas
jogador['Gols'] = gols[:]
jogador['Total de gols'] = soma
jogador['tt'] = sum(gols)
print(jogador)
print('=='*15)
for i, c in jogador.items():
print(f'O campo {i} tem o valor {c}')
print('=='*15)
print(f'O jogador {jogador["Nome"]} jogou {jogador["Partidas"]} partidas')
i = 0
for c in jogador['Gols']:
print(f'na partida {i}, foi {c} gols')
i += 1 | jogador = {}
gols = []
soma = 0
nome = input('Digite o nome do jogador: ')
partidas = int(input(f'Quantas partidas o {nome} jogou: '))
for i in range(0, partidas):
gol = int(input(f'Digite quantos gols na {i}: '))
soma += gol
gols.append(gol)
jogador['Nome'] = nome
jogador['Partidas'] = partidas
jogador['Gols'] = gols[:]
jogador['Total de gols'] = soma
jogador['tt'] = sum(gols)
print(jogador)
print('==' * 15)
for (i, c) in jogador.items():
print(f'O campo {i} tem o valor {c}')
print('==' * 15)
print(f"O jogador {jogador['Nome']} jogou {jogador['Partidas']} partidas")
i = 0
for c in jogador['Gols']:
print(f'na partida {i}, foi {c} gols')
i += 1 |
def _revisions(revs, is_dirty):
revisions = revs or []
if len(revisions) <= 1:
if len(revisions) == 0 and is_dirty:
revisions.append("HEAD")
revisions.append("working tree")
return revisions
def diff(repo, *args, revs=None, **kwargs):
return repo.plots.show(
*args, revs=_revisions(revs, repo.scm.is_dirty()), **kwargs
)
| def _revisions(revs, is_dirty):
revisions = revs or []
if len(revisions) <= 1:
if len(revisions) == 0 and is_dirty:
revisions.append('HEAD')
revisions.append('working tree')
return revisions
def diff(repo, *args, revs=None, **kwargs):
return repo.plots.show(*args, revs=_revisions(revs, repo.scm.is_dirty()), **kwargs) |
cities = [
'Santa Cruz de la Sierra',
'Cochabamba',
'La Paz',
'Sucre',
'Oruro',
'Tarija',
'Potosi',
'Sacaba',
'Montero',
'Quillacollo',
'Trinidad',
'Yacuiba',
'Riberalta',
'Tiquipaya',
'Guayaramerin',
'Bermejo',
'Mizque',
'Villazon',
'Llallagua',
'Camiri',
'Cobija',
'San Borja',
'San Ignacio de Velasco',
'Tupiza',
'Warnes',
'San Borja',
'Ascencion de Guarayos',
'Villamontes',
'Cotoca',
'Villa Yapacani',
'Santiago del Torno',
'Huanuni',
'Punata',
'Ascension',
'Mineros',
'Santa Ana de Yacuma',
'Patacamaya',
'Colchani',
'Rurrenabaque',
'Portachuelo',
'Puerto Quijarro',
'Uyuni',
'Robore',
'Pailon',
'Cliza',
'Achacachi',
'Vallegrande',
'Monteagudo',
'Aiquile',
'Tarata',
'Challapata',
'San Julian',
'Reyes',
'Concepcion',
'San Matias',
'La Belgica',
'Santa Rosa del Sara',
'Capinota',
'Chimore',
'San Pedro'
]
| cities = ['Santa Cruz de la Sierra', 'Cochabamba', 'La Paz', 'Sucre', 'Oruro', 'Tarija', 'Potosi', 'Sacaba', 'Montero', 'Quillacollo', 'Trinidad', 'Yacuiba', 'Riberalta', 'Tiquipaya', 'Guayaramerin', 'Bermejo', 'Mizque', 'Villazon', 'Llallagua', 'Camiri', 'Cobija', 'San Borja', 'San Ignacio de Velasco', 'Tupiza', 'Warnes', 'San Borja', 'Ascencion de Guarayos', 'Villamontes', 'Cotoca', 'Villa Yapacani', 'Santiago del Torno', 'Huanuni', 'Punata', 'Ascension', 'Mineros', 'Santa Ana de Yacuma', 'Patacamaya', 'Colchani', 'Rurrenabaque', 'Portachuelo', 'Puerto Quijarro', 'Uyuni', 'Robore', 'Pailon', 'Cliza', 'Achacachi', 'Vallegrande', 'Monteagudo', 'Aiquile', 'Tarata', 'Challapata', 'San Julian', 'Reyes', 'Concepcion', 'San Matias', 'La Belgica', 'Santa Rosa del Sara', 'Capinota', 'Chimore', 'San Pedro'] |
while(True):
try:
n = int(input())
if(n==2002):
print("Acesso Permitido")
break
else:
print("Senha Invalida")
except EOFError:
break | while True:
try:
n = int(input())
if n == 2002:
print('Acesso Permitido')
break
else:
print('Senha Invalida')
except EOFError:
break |
class Person:
def __init__(self, name, age):
self.name = name
self.age = age
def __repr__(self):
return f'Person(name={self.name}, age={self.age}'
def __eq__(self, other):
if isinstance(other, Person):
return self.name == other.name and self.age == other.age
def __hash__(self):
return hash((self.name, self.age))
# __hash__ = None
p1 = Person('John', 78)
p2 = Person('Eric', 75)
persons = {p1: 'John obj', p2: 'Eric obj'}
print(p1 is p2) # False
print(p1 == p2) # True
# print(hash(p1))
print(persons[Person('John', 78)])
class Number:
def __init__(self, x):
self.x = x
def __eq__(self, other):
if isinstance(other, Number):
return self.x == other.x
else:
return False
def __hash__(self):
return hash(self.x)
# Usage of Custom hashes
class Point:
def __init__(self, x, y):
self.x = x
self.y = y
def __repr__(self):
return f'{self.x}, {self.y}'
def __eq__(self, other):
if isinstance(other, Point):
return self.x == other.x and self.y == other.y
else:
return False
def __hash__(self):
return hash((self.x, self.y))
points = {
Point(0, 0): 'origin',
Point(1, 1): 'second pt'
}
print(points[Point(0, 0)])
| class Person:
def __init__(self, name, age):
self.name = name
self.age = age
def __repr__(self):
return f'Person(name={self.name}, age={self.age}'
def __eq__(self, other):
if isinstance(other, Person):
return self.name == other.name and self.age == other.age
def __hash__(self):
return hash((self.name, self.age))
p1 = person('John', 78)
p2 = person('Eric', 75)
persons = {p1: 'John obj', p2: 'Eric obj'}
print(p1 is p2)
print(p1 == p2)
print(persons[person('John', 78)])
class Number:
def __init__(self, x):
self.x = x
def __eq__(self, other):
if isinstance(other, Number):
return self.x == other.x
else:
return False
def __hash__(self):
return hash(self.x)
class Point:
def __init__(self, x, y):
self.x = x
self.y = y
def __repr__(self):
return f'{self.x}, {self.y}'
def __eq__(self, other):
if isinstance(other, Point):
return self.x == other.x and self.y == other.y
else:
return False
def __hash__(self):
return hash((self.x, self.y))
points = {point(0, 0): 'origin', point(1, 1): 'second pt'}
print(points[point(0, 0)]) |
# Author : Salim Suprayogi
# Ref : freeCodeCamp.org ( youtube )
def translate(phrase):
"mengganti huruf tertentu"
translation = ""
# loop
for letter in phrase:
# cek apakah ada huruf AEIOUaeiou
# jika ada ganti dengan huruf "g"
if letter.lower() in "aeiou":
# ubah phrase menjadi huruf kecil
if letter.isupper():
# cek, apakah phrase huruf kapital
# jika iya, ganti dengan "G" kapital
translation = translation + "G"
else:
# jika bukan huruf kapital
# ganti dengan "g" kecil
translation = translation + "g"
else:
# jika tidak ada huruf AEIOUaeiou, tampilkan phrase
translation = translation + letter
return translation
if __name__ == "__main__":
print(translate(input("Enter a phrase: ")))
| def translate(phrase):
"""mengganti huruf tertentu"""
translation = ''
for letter in phrase:
if letter.lower() in 'aeiou':
if letter.isupper():
translation = translation + 'G'
else:
translation = translation + 'g'
else:
translation = translation + letter
return translation
if __name__ == '__main__':
print(translate(input('Enter a phrase: '))) |
# -*- coding: utf-8 -*-
'''
File name: code\prime_subset_sums\sol_249.py
Author: Vaidic Joshi
Date created: Oct 20, 2018
Python Version: 3.x
'''
# Solution to Project Euler Problem #249 :: Prime Subset Sums
#
# For more information see:
# https://projecteuler.net/problem=249
# Problem Statement
'''
Let S = {2, 3, 5, ..., 4999} be the set of prime numbers less than 5000.
Find the number of subsets of S, the sum of whose elements is a prime number.
Enter the rightmost 16 digits as your answer.
'''
# Solution
# Solution Approach
'''
'''
| """
File name: code\\prime_subset_sums\\sol_249.py
Author: Vaidic Joshi
Date created: Oct 20, 2018
Python Version: 3.x
"""
'\nLet S = {2, 3, 5, ..., 4999} be the set of prime numbers less than 5000.\nFind the number of subsets of S, the sum of whose elements is a prime number.\nEnter the rightmost 16 digits as your answer.\n'
'\n' |
#!/bin/python3
DIRECTIONS = {
'n': (0, -1),
's': (0, 1),
'e': (1, 0),
'w': (-1, 0),
}
def get_route(preferred_direction):
x_pos, y_pos = preferred_direction
return [
preferred_direction,
(y_pos, x_pos),
(-y_pos, -x_pos),
(-x_pos, -y_pos)
]
class Board(object):
def __init__(self, size):
self._array = [
[0] * size
for _
in range(size)
]
self._size = size
def is_in_range(self, x_pos, y_pos):
return 0 <= x_pos < self._size and 0 <= y_pos < self._size
def is_visited(self, x_pos, y_pos):
return self.is_in_range(
x_pos,
y_pos
) and self._array[y_pos][x_pos]
def set_value(self, x_pos, y_pos, value):
self._array[y_pos][x_pos] = value
def __str__(self):
result = []
for board_rows in self._array:
result.append(' '.join(map(str, board_rows)))
return '\n'.join(result)
if __name__ == "__main__":
n = int(input().strip())
d = input().strip()
x, y = input().strip().split(' ')
x, y = [int(x), int(y)]
x, y = y, x
current_value = 1
board = Board(n)
board.set_value(x, y, current_value)
wind_direction = DIRECTIONS.get(d)
direction_route = get_route(wind_direction)
total_steps = n ** 2
while current_value < total_steps:
current_value += 1
for direction in direction_route:
new_x, new_y = x + direction[0], y + direction[1]
if board.is_in_range(new_x, new_y) and not board.is_visited(new_x, new_y):
board.set_value(new_x, new_y, current_value)
x, y = new_x, new_y
break
print(board)
| directions = {'n': (0, -1), 's': (0, 1), 'e': (1, 0), 'w': (-1, 0)}
def get_route(preferred_direction):
(x_pos, y_pos) = preferred_direction
return [preferred_direction, (y_pos, x_pos), (-y_pos, -x_pos), (-x_pos, -y_pos)]
class Board(object):
def __init__(self, size):
self._array = [[0] * size for _ in range(size)]
self._size = size
def is_in_range(self, x_pos, y_pos):
return 0 <= x_pos < self._size and 0 <= y_pos < self._size
def is_visited(self, x_pos, y_pos):
return self.is_in_range(x_pos, y_pos) and self._array[y_pos][x_pos]
def set_value(self, x_pos, y_pos, value):
self._array[y_pos][x_pos] = value
def __str__(self):
result = []
for board_rows in self._array:
result.append(' '.join(map(str, board_rows)))
return '\n'.join(result)
if __name__ == '__main__':
n = int(input().strip())
d = input().strip()
(x, y) = input().strip().split(' ')
(x, y) = [int(x), int(y)]
(x, y) = (y, x)
current_value = 1
board = board(n)
board.set_value(x, y, current_value)
wind_direction = DIRECTIONS.get(d)
direction_route = get_route(wind_direction)
total_steps = n ** 2
while current_value < total_steps:
current_value += 1
for direction in direction_route:
(new_x, new_y) = (x + direction[0], y + direction[1])
if board.is_in_range(new_x, new_y) and (not board.is_visited(new_x, new_y)):
board.set_value(new_x, new_y, current_value)
(x, y) = (new_x, new_y)
break
print(board) |
class FriendshipsStorage(object):
def __init__(self):
self.friendships = []
def add(self, note):
pass
def clear(self):
pass
def get_friends_of(self, name):
pass
| class Friendshipsstorage(object):
def __init__(self):
self.friendships = []
def add(self, note):
pass
def clear(self):
pass
def get_friends_of(self, name):
pass |
class Solution:
def groupAnagrams(self, strs: List[str]) -> List[List[str]]:
anagrams = {}
for i in range(len(strs)):
x= ''.join(sorted(strs[i]))
if x not in anagrams:
anagrams[x]=[strs[i]]
else:
anagrams[x].append(strs[i])
return anagrams.values() | class Solution:
def group_anagrams(self, strs: List[str]) -> List[List[str]]:
anagrams = {}
for i in range(len(strs)):
x = ''.join(sorted(strs[i]))
if x not in anagrams:
anagrams[x] = [strs[i]]
else:
anagrams[x].append(strs[i])
return anagrams.values() |
# 350111
# a3_p10.py
# Irakli Mtvarelishvili
# i.mtvarelisvhili@jacobs-university.de
n = int(input("Please enter the length of rectangle: "))
m = int(input("Please enter the width of rectangle: "))
c = chr(ord(input("Please enter a character: ")))
def print_rectangle(n, m, c):
for i in range(m) :
for j in range(n):
if i == 0 or i == m - 1 :
print(c, end='')
else :
if j == 0 or j == n - 1 :
print (c, end='')
else :
print (' ', end='')
print()
print(print_rectangle(n, m, c))
| n = int(input('Please enter the length of rectangle: '))
m = int(input('Please enter the width of rectangle: '))
c = chr(ord(input('Please enter a character: ')))
def print_rectangle(n, m, c):
for i in range(m):
for j in range(n):
if i == 0 or i == m - 1:
print(c, end='')
elif j == 0 or j == n - 1:
print(c, end='')
else:
print(' ', end='')
print()
print(print_rectangle(n, m, c)) |
# yacctab.py
# This file is automatically generated. Do not edit.
_tabversion = '3.10'
_lr_method = 'LALR'
_lr_signature = 'translation_unit_or_emptyleftLORleftLANDleftORleftXORleftANDleftEQNEleftGTGELTLEleftRSHIFTLSHIFTleftPLUSMINUSleftTIMESDIVIDEMOD_BOOL _COMPLEX AUTO BREAK CASE CHAR CONST CONTINUE DEFAULT DO DOUBLE ELSE ENUM EXTERN FLOAT FOR GOTO IF INLINE INT LONG REGISTER OFFSETOF RESTRICT RETURN SHORT SIGNED SIZEOF STATIC STRUCT SWITCH TYPEDEF UNION UNSIGNED VOID VOLATILE WHILE __INT128 ID TYPEID INT_CONST_DEC INT_CONST_OCT INT_CONST_HEX INT_CONST_BIN INT_CONST_CHAR FLOAT_CONST HEX_FLOAT_CONST CHAR_CONST WCHAR_CONST STRING_LITERAL WSTRING_LITERAL PLUS MINUS TIMES DIVIDE MOD OR AND NOT XOR LSHIFT RSHIFT LOR LAND LNOT LT LE GT GE EQ NE EQUALS TIMESEQUAL DIVEQUAL MODEQUAL PLUSEQUAL MINUSEQUAL LSHIFTEQUAL RSHIFTEQUAL ANDEQUAL XOREQUAL OREQUAL PLUSPLUS MINUSMINUS ARROW CONDOP LPAREN RPAREN LBRACKET RBRACKET LBRACE RBRACE COMMA PERIOD SEMI COLON ELLIPSIS PPHASH PPPRAGMA PPPRAGMASTRabstract_declarator_opt : empty\n| abstract_declaratorassignment_expression_opt : empty\n| assignment_expressionblock_item_list_opt : empty\n| block_item_listdeclaration_list_opt : empty\n| declaration_listdeclaration_specifiers_no_type_opt : empty\n| declaration_specifiers_no_typedesignation_opt : empty\n| designationexpression_opt : empty\n| expressionid_init_declarator_list_opt : empty\n| id_init_declarator_listidentifier_list_opt : empty\n| identifier_listinit_declarator_list_opt : empty\n| init_declarator_listinitializer_list_opt : empty\n| initializer_listparameter_type_list_opt : empty\n| parameter_type_liststruct_declarator_list_opt : empty\n| struct_declarator_listtype_qualifier_list_opt : empty\n| type_qualifier_list direct_id_declarator : ID\n direct_id_declarator : LPAREN id_declarator RPAREN\n direct_id_declarator : direct_id_declarator LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET\n direct_id_declarator : direct_id_declarator LBRACKET STATIC type_qualifier_list_opt assignment_expression RBRACKET\n | direct_id_declarator LBRACKET type_qualifier_list STATIC assignment_expression RBRACKET\n direct_id_declarator : direct_id_declarator LBRACKET type_qualifier_list_opt TIMES RBRACKET\n direct_id_declarator : direct_id_declarator LPAREN parameter_type_list RPAREN\n | direct_id_declarator LPAREN identifier_list_opt RPAREN\n direct_typeid_declarator : TYPEID\n direct_typeid_declarator : LPAREN typeid_declarator RPAREN\n direct_typeid_declarator : direct_typeid_declarator LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET\n direct_typeid_declarator : direct_typeid_declarator LBRACKET STATIC type_qualifier_list_opt assignment_expression RBRACKET\n | direct_typeid_declarator LBRACKET type_qualifier_list STATIC assignment_expression RBRACKET\n direct_typeid_declarator : direct_typeid_declarator LBRACKET type_qualifier_list_opt TIMES RBRACKET\n direct_typeid_declarator : direct_typeid_declarator LPAREN parameter_type_list RPAREN\n | direct_typeid_declarator LPAREN identifier_list_opt RPAREN\n direct_typeid_noparen_declarator : TYPEID\n direct_typeid_noparen_declarator : direct_typeid_noparen_declarator LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET\n direct_typeid_noparen_declarator : direct_typeid_noparen_declarator LBRACKET STATIC type_qualifier_list_opt assignment_expression RBRACKET\n | direct_typeid_noparen_declarator LBRACKET type_qualifier_list STATIC assignment_expression RBRACKET\n direct_typeid_noparen_declarator : direct_typeid_noparen_declarator LBRACKET type_qualifier_list_opt TIMES RBRACKET\n direct_typeid_noparen_declarator : direct_typeid_noparen_declarator LPAREN parameter_type_list RPAREN\n | direct_typeid_noparen_declarator LPAREN identifier_list_opt RPAREN\n id_declarator : direct_id_declarator\n id_declarator : pointer direct_id_declarator\n typeid_declarator : direct_typeid_declarator\n typeid_declarator : pointer direct_typeid_declarator\n typeid_noparen_declarator : direct_typeid_noparen_declarator\n typeid_noparen_declarator : pointer direct_typeid_noparen_declarator\n translation_unit_or_empty : translation_unit\n | empty\n translation_unit : external_declaration\n translation_unit : translation_unit external_declaration\n external_declaration : function_definition\n external_declaration : declaration\n external_declaration : pp_directive\n | pppragma_directive\n external_declaration : SEMI\n pp_directive : PPHASH\n pppragma_directive : PPPRAGMA\n | PPPRAGMA PPPRAGMASTR\n function_definition : id_declarator declaration_list_opt compound_statement\n function_definition : declaration_specifiers id_declarator declaration_list_opt compound_statement\n statement : labeled_statement\n | expression_statement\n | compound_statement\n | selection_statement\n | iteration_statement\n | jump_statement\n | pppragma_directive\n pragmacomp_or_statement : pppragma_directive statement\n | statement\n decl_body : declaration_specifiers init_declarator_list_opt\n | declaration_specifiers_no_type id_init_declarator_list_opt\n declaration : decl_body SEMI\n declaration_list : declaration\n | declaration_list declaration\n declaration_specifiers_no_type : type_qualifier declaration_specifiers_no_type_opt\n declaration_specifiers_no_type : storage_class_specifier declaration_specifiers_no_type_opt\n declaration_specifiers_no_type : function_specifier declaration_specifiers_no_type_opt\n declaration_specifiers : declaration_specifiers type_qualifier\n declaration_specifiers : declaration_specifiers storage_class_specifier\n declaration_specifiers : declaration_specifiers function_specifier\n declaration_specifiers : declaration_specifiers type_specifier_no_typeid\n declaration_specifiers : type_specifier\n declaration_specifiers : declaration_specifiers_no_type type_specifier\n storage_class_specifier : AUTO\n | REGISTER\n | STATIC\n | EXTERN\n | TYPEDEF\n function_specifier : INLINE\n type_specifier_no_typeid : VOID\n | _BOOL\n | CHAR\n | SHORT\n | INT\n | LONG\n | FLOAT\n | DOUBLE\n | _COMPLEX\n | SIGNED\n | UNSIGNED\n | __INT128\n type_specifier : typedef_name\n | enum_specifier\n | struct_or_union_specifier\n | type_specifier_no_typeid\n type_qualifier : CONST\n | RESTRICT\n | VOLATILE\n init_declarator_list : init_declarator\n | init_declarator_list COMMA init_declarator\n init_declarator : declarator\n | declarator EQUALS initializer\n id_init_declarator_list : id_init_declarator\n | id_init_declarator_list COMMA init_declarator\n id_init_declarator : id_declarator\n | id_declarator EQUALS initializer\n specifier_qualifier_list : specifier_qualifier_list type_specifier_no_typeid\n specifier_qualifier_list : specifier_qualifier_list type_qualifier\n specifier_qualifier_list : type_specifier\n specifier_qualifier_list : type_qualifier_list type_specifier\n struct_or_union_specifier : struct_or_union ID\n | struct_or_union TYPEID\n struct_or_union_specifier : struct_or_union brace_open struct_declaration_list brace_close\n | struct_or_union brace_open brace_close\n struct_or_union_specifier : struct_or_union ID brace_open struct_declaration_list brace_close\n | struct_or_union ID brace_open brace_close\n | struct_or_union TYPEID brace_open struct_declaration_list brace_close\n | struct_or_union TYPEID brace_open brace_close\n struct_or_union : STRUCT\n | UNION\n struct_declaration_list : struct_declaration\n | struct_declaration_list struct_declaration\n struct_declaration : specifier_qualifier_list struct_declarator_list_opt SEMI\n struct_declaration : SEMI\n struct_declaration : pppragma_directive\n struct_declarator_list : struct_declarator\n | struct_declarator_list COMMA struct_declarator\n struct_declarator : declarator\n struct_declarator : declarator COLON constant_expression\n | COLON constant_expression\n enum_specifier : ENUM ID\n | ENUM TYPEID\n enum_specifier : ENUM brace_open enumerator_list brace_close\n enum_specifier : ENUM ID brace_open enumerator_list brace_close\n | ENUM TYPEID brace_open enumerator_list brace_close\n enumerator_list : enumerator\n | enumerator_list COMMA\n | enumerator_list COMMA enumerator\n enumerator : ID\n | ID EQUALS constant_expression\n declarator : id_declarator\n | typeid_declarator\n pointer : TIMES type_qualifier_list_opt\n | TIMES type_qualifier_list_opt pointer\n type_qualifier_list : type_qualifier\n | type_qualifier_list type_qualifier\n parameter_type_list : parameter_list\n | parameter_list COMMA ELLIPSIS\n parameter_list : parameter_declaration\n | parameter_list COMMA parameter_declaration\n parameter_declaration : declaration_specifiers id_declarator\n | declaration_specifiers typeid_noparen_declarator\n parameter_declaration : declaration_specifiers abstract_declarator_opt\n identifier_list : identifier\n | identifier_list COMMA identifier\n initializer : assignment_expression\n initializer : brace_open initializer_list_opt brace_close\n | brace_open initializer_list COMMA brace_close\n initializer_list : designation_opt initializer\n | initializer_list COMMA designation_opt initializer\n designation : designator_list EQUALS\n designator_list : designator\n | designator_list designator\n designator : LBRACKET constant_expression RBRACKET\n | PERIOD identifier\n type_name : specifier_qualifier_list abstract_declarator_opt\n abstract_declarator : pointer\n abstract_declarator : pointer direct_abstract_declarator\n abstract_declarator : direct_abstract_declarator\n direct_abstract_declarator : LPAREN abstract_declarator RPAREN direct_abstract_declarator : direct_abstract_declarator LBRACKET assignment_expression_opt RBRACKET\n direct_abstract_declarator : LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET\n direct_abstract_declarator : direct_abstract_declarator LBRACKET TIMES RBRACKET\n direct_abstract_declarator : LBRACKET TIMES RBRACKET\n direct_abstract_declarator : direct_abstract_declarator LPAREN parameter_type_list_opt RPAREN\n direct_abstract_declarator : LPAREN parameter_type_list_opt RPAREN\n block_item : declaration\n | statement\n block_item_list : block_item\n | block_item_list block_item\n compound_statement : brace_open block_item_list_opt brace_close labeled_statement : ID COLON pragmacomp_or_statement labeled_statement : CASE constant_expression COLON pragmacomp_or_statement labeled_statement : DEFAULT COLON pragmacomp_or_statement selection_statement : IF LPAREN expression RPAREN pragmacomp_or_statement selection_statement : IF LPAREN expression RPAREN statement ELSE pragmacomp_or_statement selection_statement : SWITCH LPAREN expression RPAREN pragmacomp_or_statement iteration_statement : WHILE LPAREN expression RPAREN pragmacomp_or_statement iteration_statement : DO pragmacomp_or_statement WHILE LPAREN expression RPAREN SEMI iteration_statement : FOR LPAREN expression_opt SEMI expression_opt SEMI expression_opt RPAREN pragmacomp_or_statement iteration_statement : FOR LPAREN declaration expression_opt SEMI expression_opt RPAREN pragmacomp_or_statement jump_statement : GOTO ID SEMI jump_statement : BREAK SEMI jump_statement : CONTINUE SEMI jump_statement : RETURN expression SEMI\n | RETURN SEMI\n expression_statement : expression_opt SEMI expression : assignment_expression\n | expression COMMA assignment_expression\n typedef_name : TYPEID assignment_expression : conditional_expression\n | unary_expression assignment_operator assignment_expression\n assignment_operator : EQUALS\n | XOREQUAL\n | TIMESEQUAL\n | DIVEQUAL\n | MODEQUAL\n | PLUSEQUAL\n | MINUSEQUAL\n | LSHIFTEQUAL\n | RSHIFTEQUAL\n | ANDEQUAL\n | OREQUAL\n constant_expression : conditional_expression conditional_expression : binary_expression\n | binary_expression CONDOP expression COLON conditional_expression\n binary_expression : cast_expression\n | binary_expression TIMES binary_expression\n | binary_expression DIVIDE binary_expression\n | binary_expression MOD binary_expression\n | binary_expression PLUS binary_expression\n | binary_expression MINUS binary_expression\n | binary_expression RSHIFT binary_expression\n | binary_expression LSHIFT binary_expression\n | binary_expression LT binary_expression\n | binary_expression LE binary_expression\n | binary_expression GE binary_expression\n | binary_expression GT binary_expression\n | binary_expression EQ binary_expression\n | binary_expression NE binary_expression\n | binary_expression AND binary_expression\n | binary_expression OR binary_expression\n | binary_expression XOR binary_expression\n | binary_expression LAND binary_expression\n | binary_expression LOR binary_expression\n cast_expression : unary_expression cast_expression : LPAREN type_name RPAREN cast_expression unary_expression : postfix_expression unary_expression : PLUSPLUS unary_expression\n | MINUSMINUS unary_expression\n | unary_operator cast_expression\n unary_expression : SIZEOF unary_expression\n | SIZEOF LPAREN type_name RPAREN\n unary_operator : AND\n | TIMES\n | PLUS\n | MINUS\n | NOT\n | LNOT\n postfix_expression : primary_expression postfix_expression : postfix_expression LBRACKET expression RBRACKET postfix_expression : postfix_expression LPAREN argument_expression_list RPAREN\n | postfix_expression LPAREN RPAREN\n postfix_expression : postfix_expression PERIOD ID\n | postfix_expression PERIOD TYPEID\n | postfix_expression ARROW ID\n | postfix_expression ARROW TYPEID\n postfix_expression : postfix_expression PLUSPLUS\n | postfix_expression MINUSMINUS\n postfix_expression : LPAREN type_name RPAREN brace_open initializer_list brace_close\n | LPAREN type_name RPAREN brace_open initializer_list COMMA brace_close\n primary_expression : identifier primary_expression : constant primary_expression : unified_string_literal\n | unified_wstring_literal\n primary_expression : LPAREN expression RPAREN primary_expression : OFFSETOF LPAREN type_name COMMA offsetof_member_designator RPAREN\n offsetof_member_designator : identifier\n | offsetof_member_designator PERIOD identifier\n | offsetof_member_designator LBRACKET expression RBRACKET\n argument_expression_list : assignment_expression\n | argument_expression_list COMMA assignment_expression\n identifier : ID constant : INT_CONST_DEC\n | INT_CONST_OCT\n | INT_CONST_HEX\n | INT_CONST_BIN\n | INT_CONST_CHAR\n constant : FLOAT_CONST\n | HEX_FLOAT_CONST\n constant : CHAR_CONST\n | WCHAR_CONST\n unified_string_literal : STRING_LITERAL\n | unified_string_literal STRING_LITERAL\n unified_wstring_literal : WSTRING_LITERAL\n | unified_wstring_literal WSTRING_LITERAL\n brace_open : LBRACE\n brace_close : RBRACE\n empty : '
_lr_action_items = {'$end':([0,1,2,3,4,5,6,7,8,9,13,14,55,77,78,105,144,211,265,],[-310,0,-58,-59,-60,-62,-63,-64,-65,-66,-67,-68,-61,-83,-69,-70,-309,-71,-202,]),'SEMI':([0,2,4,5,6,7,8,9,11,12,13,14,15,17,18,19,20,21,22,23,25,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,60,61,62,63,64,65,66,67,69,70,72,73,74,75,76,77,78,81,82,83,84,85,86,87,88,89,90,91,92,98,99,101,102,103,104,105,106,108,110,127,131,139,140,141,142,143,144,145,146,147,148,151,152,153,154,155,156,157,158,159,160,161,162,163,166,169,172,175,176,177,178,179,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,228,229,243,244,247,250,251,252,253,254,255,256,257,258,259,260,261,262,264,265,266,267,268,270,271,273,274,283,284,285,286,287,288,289,290,326,327,328,330,331,332,334,335,350,351,352,353,372,373,376,377,378,381,382,383,385,388,392,396,397,398,399,400,401,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,432,439,440,443,444,457,458,459,461,463,464,465,467,468,470,471,474,476,480,481,492,493,495,496,498,500,509,510,512,515,520,521,522,524,527,528,530,],[9,9,-60,-62,-63,-64,-65,-66,-310,77,-67,-68,-52,-310,-310,-310,-116,-93,-310,-29,-97,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,-310,-310,-162,-89,-90,-91,-92,-81,-19,-20,-120,-122,-163,-54,-37,-83,-69,-53,-86,-9,-10,-87,-88,-94,-82,-15,-16,-124,-126,-152,-153,-308,-132,-133,146,-70,-310,-162,-55,-294,-30,146,146,146,-135,-142,-309,-310,-145,-146,-130,-13,-310,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,-294,274,-14,-310,287,288,290,-219,-222,-257,-236,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-71,-121,-38,-123,-177,-35,-36,-125,-127,-154,146,-137,146,-139,-134,-143,378,-128,-129,-25,-26,-147,-149,-131,-202,-201,-13,-310,-235,-257,-310,-218,-78,-80,-310,399,-214,-215,400,-217,-279,-280,-260,-261,-262,-263,-305,-307,-43,-44,-31,-34,-155,-156,-136,-138,-144,-151,-203,-310,-205,-287,-220,-79,467,-310,-213,-216,-223,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,-253,-254,-255,-256,-274,-275,-276,-277,-278,-178,-39,-42,-32,-33,-148,-150,-204,-310,-258,-310,-310,-310,499,-272,-273,-264,-179,-40,-41,-206,-80,-208,-209,513,-237,-310,-281,522,-288,-207,-282,-210,-310,-310,-212,-211,]),'PPHASH':([0,2,4,5,6,7,8,9,13,14,55,77,78,105,144,211,265,],[13,13,-60,-62,-63,-64,-65,-66,-67,-68,-61,-83,-69,-70,-309,-71,-202,]),'PPPRAGMA':([0,2,4,5,6,7,8,9,13,14,55,77,78,101,104,105,106,139,140,141,143,144,146,147,152,153,154,155,156,157,158,159,160,161,162,172,211,250,252,255,265,266,268,273,274,283,284,287,288,290,378,382,383,385,396,399,400,459,461,464,465,492,493,495,496,509,520,522,524,527,528,530,],[14,14,-60,-62,-63,-64,-65,-66,-67,-68,-61,-83,-69,-308,14,-70,14,14,14,14,-142,-309,-145,-146,14,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,14,-71,14,14,-143,-202,-201,14,14,-218,14,-80,-214,-215,-217,-144,-203,14,-205,-79,-213,-216,-204,14,14,14,-206,-80,-208,-209,14,-207,-210,14,14,-212,-211,]),'ID':([0,2,4,5,6,7,8,9,11,13,14,16,17,18,19,20,21,22,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,60,61,63,64,65,66,68,71,77,78,79,80,82,83,84,85,86,87,94,95,96,97,98,99,100,101,102,103,105,106,111,113,114,115,116,117,118,126,129,130,132,133,134,135,142,144,145,148,152,153,154,155,156,157,158,159,160,161,162,164,168,172,174,177,183,184,185,187,188,189,190,191,193,194,211,216,217,218,219,223,226,227,231,235,239,240,247,248,249,251,253,254,257,258,263,264,265,266,268,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,329,333,339,340,341,344,345,347,348,349,361,362,365,368,370,372,373,376,377,379,380,382,383,385,387,396,398,399,400,433,435,445,446,447,455,459,460,461,462,464,465,466,467,469,472,475,477,478,483,484,485,492,493,495,496,499,509,511,513,516,517,520,522,524,527,528,530,],[23,23,-60,-62,-63,-64,-65,-66,23,-67,-68,23,-310,-310,-310,-116,-93,23,23,-97,-310,-113,-114,-115,-221,98,102,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-140,-141,-61,23,23,-89,-90,-91,-92,23,23,-83,-69,-310,127,-86,-9,-10,-87,-88,-94,-164,-27,-28,-166,-152,-153,138,-308,-132,-133,-70,163,23,127,-310,127,127,-310,-28,23,23,127,-165,-167,138,138,-135,-309,23,-130,163,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,127,127,163,286,127,127,127,127,127,-266,-267,-268,-265,-269,-270,-71,-310,127,-310,-28,-266,127,127,127,23,23,-310,-154,138,127,-137,-139,-134,-128,-129,127,-131,-202,-201,163,127,163,-218,127,127,127,127,163,-80,127,-214,-215,-217,127,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,127,425,427,127,127,-11,127,-12,127,127,-266,127,127,-310,127,23,127,127,-155,-156,-136,-138,23,127,-203,163,-205,127,-79,127,-213,-216,-310,-182,127,-310,-28,-266,-204,127,163,-310,163,163,127,127,127,127,127,127,-11,-266,127,127,-206,-80,-208,-209,127,163,-310,127,127,127,-207,-210,163,163,-212,-211,]),'LPAREN':([0,2,4,5,6,7,8,9,11,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,60,61,63,64,65,66,68,71,75,76,77,78,79,81,82,83,84,85,86,87,94,95,96,97,98,99,101,102,103,105,106,110,111,113,114,116,117,118,126,127,129,130,131,132,133,142,144,145,148,152,153,154,155,156,157,158,159,160,161,162,163,164,167,168,170,171,172,173,177,182,183,184,185,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,213,216,217,218,219,223,226,227,228,229,235,236,239,240,241,242,247,249,251,253,254,257,258,263,264,265,266,268,272,273,274,275,278,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,326,327,329,333,334,335,339,340,341,344,347,348,349,350,351,352,353,359,360,361,365,368,370,372,373,376,377,379,380,382,383,385,387,388,390,391,395,396,398,399,400,423,425,426,427,428,433,435,439,440,443,444,445,446,447,450,451,453,455,459,460,461,462,464,465,466,467,469,470,471,472,477,478,480,481,483,484,485,486,487,488,489,490,491,492,493,495,496,499,505,506,509,510,511,513,515,517,518,519,520,521,522,524,527,528,530,],[24,24,-60,-62,-63,-64,-65,-66,71,-67,-68,80,24,-310,-310,-310,-116,-93,24,-29,24,-97,-310,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,71,24,-89,-90,-91,-92,71,71,115,-37,-83,-69,-310,80,-86,-9,-10,-87,-88,-94,-164,-27,-28,-166,-152,-153,-308,-132,-133,-70,168,115,71,168,-310,168,-310,-28,239,-294,71,168,-30,-165,-167,-135,-309,71,-130,168,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,-294,272,275,168,280,281,168,285,168,323,329,329,272,333,-266,-267,-268,-265,-271,-269,-270,-283,-284,-285,-286,336,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-71,-38,-310,168,-310,-28,-266,168,168,-35,-36,239,362,239,-310,-45,371,-154,272,-137,-139,-134,-128,-129,272,-131,-202,-201,168,168,168,-218,168,391,168,168,168,168,-80,168,-214,-215,-217,168,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,168,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,272,168,168,-279,-280,168,168,-305,-307,-11,168,-12,272,-266,168,168,-43,-44,-31,-34,362,371,-310,239,168,168,-155,-156,-136,-138,71,272,-203,168,-205,272,-287,391,391,466,-79,168,-213,-216,-274,-275,-276,-277,-278,-310,-182,-39,-42,-32,-33,168,-310,-28,-191,-197,-195,-266,-204,272,168,-310,168,168,168,168,272,-272,-273,168,168,-11,-40,-41,-266,168,168,-50,-51,-193,-192,-194,-196,-206,-80,-208,-209,168,-46,-49,168,-281,-310,168,-288,168,-47,-48,-207,-282,-210,168,168,-212,-211,]),'TIMES':([0,2,4,5,6,7,8,9,11,13,14,17,18,19,20,21,22,24,25,26,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,60,61,63,64,65,66,71,77,78,79,82,83,84,85,86,87,94,95,96,97,98,99,101,102,103,105,106,111,113,114,116,117,118,126,127,129,130,133,142,144,145,148,152,153,154,155,156,157,158,159,160,161,162,163,164,168,172,177,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,211,216,217,218,219,223,226,227,239,240,247,249,251,253,254,257,258,263,264,265,266,268,271,272,273,274,275,278,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,326,327,328,329,330,331,332,333,334,335,339,340,341,344,347,348,349,361,368,370,372,373,376,377,379,380,382,383,385,387,388,391,396,398,399,400,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,433,435,445,446,447,455,459,460,461,462,463,464,465,466,467,469,470,471,472,474,477,478,483,484,485,492,493,495,496,499,509,510,511,513,515,517,520,521,522,524,527,528,530,],[26,26,-60,-62,-63,-64,-65,-66,26,-67,-68,-310,-310,-310,-116,-93,26,26,-97,-310,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,26,26,-89,-90,-91,-92,26,-83,-69,-310,-86,-9,-10,-87,-88,-94,26,-27,-28,-166,-152,-153,-308,-132,-133,-70,188,26,188,-310,223,-310,-28,26,-294,26,188,-167,-135,-309,26,-130,188,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,-294,188,188,188,188,-257,304,-259,188,188,188,-238,188,-266,-267,-268,-265,-271,-269,-270,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-71,-310,347,-310,-28,-266,188,188,26,369,-154,188,-137,-139,-134,-128,-129,188,-131,-202,-201,188,-257,188,188,-218,188,26,188,188,188,188,-80,188,-214,-215,-217,188,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,188,-279,-280,-260,188,-261,-262,-263,188,-305,-307,-11,188,-12,188,-266,188,188,-310,188,455,-155,-156,-136,-138,26,188,-203,188,-205,188,-287,26,-79,188,-213,-216,-239,-240,-241,304,304,304,304,304,304,304,304,304,304,304,304,304,304,304,-274,-275,-276,-277,-278,-310,-182,483,-310,-28,-266,-204,188,188,-310,-258,188,188,188,188,188,-272,-273,188,-264,188,-11,-266,188,188,-206,-80,-208,-209,188,188,-281,-310,188,-288,188,-207,-282,-210,188,188,-212,-211,]),'TYPEID':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,22,23,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,58,59,60,61,62,63,64,65,66,68,71,77,78,80,81,82,83,84,85,86,87,94,95,96,97,98,99,101,102,103,104,105,106,107,111,115,126,128,129,131,132,133,139,140,141,142,143,144,145,146,147,148,149,152,153,154,155,156,157,158,159,160,161,162,168,211,228,229,230,235,239,247,250,251,252,253,254,255,257,258,264,265,266,272,274,283,284,285,287,288,290,324,325,329,333,336,352,353,362,371,372,373,376,377,378,379,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[30,30,-60,-62,-63,-64,-65,-66,30,76,-67,-68,-52,-310,-310,-310,-116,-93,30,-29,-97,-310,-113,-114,-115,-221,99,103,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-140,-141,-61,30,-84,76,30,30,-89,-90,-91,-92,76,76,-83,-69,30,-53,-86,-9,-10,-87,-88,-94,-164,-27,-28,-166,-152,-153,-308,-132,-133,30,-70,30,-85,76,30,241,30,76,-30,-165,-167,30,30,30,-135,-142,-309,76,-145,-146,-130,30,30,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,30,-71,-35,-36,30,241,30,-154,30,-137,30,-139,-134,-143,-128,-129,-131,-202,-201,30,-218,-78,-80,30,-214,-215,-217,426,428,30,30,30,-31,-34,30,30,-155,-156,-136,-138,-144,76,-203,-205,30,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'ENUM':([0,2,4,5,6,7,8,9,10,13,14,15,17,18,19,22,23,25,45,46,47,48,49,50,51,52,55,58,59,61,62,77,78,80,81,82,83,84,85,86,97,101,104,105,106,107,115,128,131,133,139,140,141,143,144,146,147,149,152,153,154,155,156,157,158,159,160,161,162,168,211,228,229,230,239,250,252,255,265,266,272,274,283,284,285,287,288,290,329,333,336,352,353,362,371,378,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[31,31,-60,-62,-63,-64,-65,-66,31,-67,-68,-52,-310,-310,-310,31,-29,-97,-117,-118,-119,-95,-96,-98,-99,-100,-61,31,-84,31,31,-83,-69,31,-53,-86,-9,-10,-87,-88,-166,-308,31,-70,31,-85,31,31,-30,-167,31,31,31,-142,-309,-145,-146,31,31,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,31,-71,-35,-36,31,31,31,31,-143,-202,-201,31,-218,-78,-80,31,-214,-215,-217,31,31,31,-31,-34,31,31,-144,-203,-205,31,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'VOID':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,22,23,25,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,61,62,63,64,65,66,77,78,80,81,82,83,84,85,86,87,97,98,99,101,102,103,104,105,106,107,115,126,128,131,133,139,140,141,142,143,144,145,146,147,148,149,152,153,154,155,156,157,158,159,160,161,162,168,211,228,229,230,239,247,250,251,252,253,254,255,257,258,264,265,266,272,274,278,283,284,285,287,288,290,329,333,336,352,353,362,371,372,373,376,377,378,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[33,33,-60,-62,-63,-64,-65,-66,33,33,-67,-68,-52,-310,-310,-310,-116,-93,33,-29,-97,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,33,-84,33,33,33,-89,-90,-91,-92,-83,-69,33,-53,-86,-9,-10,-87,-88,-94,-166,-152,-153,-308,-132,-133,33,-70,33,-85,33,33,33,-30,-167,33,33,33,-135,-142,-309,33,-145,-146,-130,33,33,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,33,-71,-35,-36,33,33,-154,33,-137,33,-139,-134,-143,-128,-129,-131,-202,-201,33,-218,33,-78,-80,33,-214,-215,-217,33,33,33,-31,-34,33,33,-155,-156,-136,-138,-144,-203,-205,33,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'_BOOL':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,22,23,25,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,61,62,63,64,65,66,77,78,80,81,82,83,84,85,86,87,97,98,99,101,102,103,104,105,106,107,115,126,128,131,133,139,140,141,142,143,144,145,146,147,148,149,152,153,154,155,156,157,158,159,160,161,162,168,211,228,229,230,239,247,250,251,252,253,254,255,257,258,264,265,266,272,274,278,283,284,285,287,288,290,329,333,336,352,353,362,371,372,373,376,377,378,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[34,34,-60,-62,-63,-64,-65,-66,34,34,-67,-68,-52,-310,-310,-310,-116,-93,34,-29,-97,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,34,-84,34,34,34,-89,-90,-91,-92,-83,-69,34,-53,-86,-9,-10,-87,-88,-94,-166,-152,-153,-308,-132,-133,34,-70,34,-85,34,34,34,-30,-167,34,34,34,-135,-142,-309,34,-145,-146,-130,34,34,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,34,-71,-35,-36,34,34,-154,34,-137,34,-139,-134,-143,-128,-129,-131,-202,-201,34,-218,34,-78,-80,34,-214,-215,-217,34,34,34,-31,-34,34,34,-155,-156,-136,-138,-144,-203,-205,34,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'CHAR':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,22,23,25,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,61,62,63,64,65,66,77,78,80,81,82,83,84,85,86,87,97,98,99,101,102,103,104,105,106,107,115,126,128,131,133,139,140,141,142,143,144,145,146,147,148,149,152,153,154,155,156,157,158,159,160,161,162,168,211,228,229,230,239,247,250,251,252,253,254,255,257,258,264,265,266,272,274,278,283,284,285,287,288,290,329,333,336,352,353,362,371,372,373,376,377,378,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[35,35,-60,-62,-63,-64,-65,-66,35,35,-67,-68,-52,-310,-310,-310,-116,-93,35,-29,-97,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,35,-84,35,35,35,-89,-90,-91,-92,-83,-69,35,-53,-86,-9,-10,-87,-88,-94,-166,-152,-153,-308,-132,-133,35,-70,35,-85,35,35,35,-30,-167,35,35,35,-135,-142,-309,35,-145,-146,-130,35,35,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,35,-71,-35,-36,35,35,-154,35,-137,35,-139,-134,-143,-128,-129,-131,-202,-201,35,-218,35,-78,-80,35,-214,-215,-217,35,35,35,-31,-34,35,35,-155,-156,-136,-138,-144,-203,-205,35,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'SHORT':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,22,23,25,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,61,62,63,64,65,66,77,78,80,81,82,83,84,85,86,87,97,98,99,101,102,103,104,105,106,107,115,126,128,131,133,139,140,141,142,143,144,145,146,147,148,149,152,153,154,155,156,157,158,159,160,161,162,168,211,228,229,230,239,247,250,251,252,253,254,255,257,258,264,265,266,272,274,278,283,284,285,287,288,290,329,333,336,352,353,362,371,372,373,376,377,378,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[36,36,-60,-62,-63,-64,-65,-66,36,36,-67,-68,-52,-310,-310,-310,-116,-93,36,-29,-97,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,36,-84,36,36,36,-89,-90,-91,-92,-83,-69,36,-53,-86,-9,-10,-87,-88,-94,-166,-152,-153,-308,-132,-133,36,-70,36,-85,36,36,36,-30,-167,36,36,36,-135,-142,-309,36,-145,-146,-130,36,36,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,36,-71,-35,-36,36,36,-154,36,-137,36,-139,-134,-143,-128,-129,-131,-202,-201,36,-218,36,-78,-80,36,-214,-215,-217,36,36,36,-31,-34,36,36,-155,-156,-136,-138,-144,-203,-205,36,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'INT':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,22,23,25,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,61,62,63,64,65,66,77,78,80,81,82,83,84,85,86,87,97,98,99,101,102,103,104,105,106,107,115,126,128,131,133,139,140,141,142,143,144,145,146,147,148,149,152,153,154,155,156,157,158,159,160,161,162,168,211,228,229,230,239,247,250,251,252,253,254,255,257,258,264,265,266,272,274,278,283,284,285,287,288,290,329,333,336,352,353,362,371,372,373,376,377,378,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[37,37,-60,-62,-63,-64,-65,-66,37,37,-67,-68,-52,-310,-310,-310,-116,-93,37,-29,-97,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,37,-84,37,37,37,-89,-90,-91,-92,-83,-69,37,-53,-86,-9,-10,-87,-88,-94,-166,-152,-153,-308,-132,-133,37,-70,37,-85,37,37,37,-30,-167,37,37,37,-135,-142,-309,37,-145,-146,-130,37,37,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,37,-71,-35,-36,37,37,-154,37,-137,37,-139,-134,-143,-128,-129,-131,-202,-201,37,-218,37,-78,-80,37,-214,-215,-217,37,37,37,-31,-34,37,37,-155,-156,-136,-138,-144,-203,-205,37,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'LONG':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,22,23,25,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,61,62,63,64,65,66,77,78,80,81,82,83,84,85,86,87,97,98,99,101,102,103,104,105,106,107,115,126,128,131,133,139,140,141,142,143,144,145,146,147,148,149,152,153,154,155,156,157,158,159,160,161,162,168,211,228,229,230,239,247,250,251,252,253,254,255,257,258,264,265,266,272,274,278,283,284,285,287,288,290,329,333,336,352,353,362,371,372,373,376,377,378,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[38,38,-60,-62,-63,-64,-65,-66,38,38,-67,-68,-52,-310,-310,-310,-116,-93,38,-29,-97,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,38,-84,38,38,38,-89,-90,-91,-92,-83,-69,38,-53,-86,-9,-10,-87,-88,-94,-166,-152,-153,-308,-132,-133,38,-70,38,-85,38,38,38,-30,-167,38,38,38,-135,-142,-309,38,-145,-146,-130,38,38,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,38,-71,-35,-36,38,38,-154,38,-137,38,-139,-134,-143,-128,-129,-131,-202,-201,38,-218,38,-78,-80,38,-214,-215,-217,38,38,38,-31,-34,38,38,-155,-156,-136,-138,-144,-203,-205,38,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'FLOAT':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,22,23,25,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,61,62,63,64,65,66,77,78,80,81,82,83,84,85,86,87,97,98,99,101,102,103,104,105,106,107,115,126,128,131,133,139,140,141,142,143,144,145,146,147,148,149,152,153,154,155,156,157,158,159,160,161,162,168,211,228,229,230,239,247,250,251,252,253,254,255,257,258,264,265,266,272,274,278,283,284,285,287,288,290,329,333,336,352,353,362,371,372,373,376,377,378,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[39,39,-60,-62,-63,-64,-65,-66,39,39,-67,-68,-52,-310,-310,-310,-116,-93,39,-29,-97,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,39,-84,39,39,39,-89,-90,-91,-92,-83,-69,39,-53,-86,-9,-10,-87,-88,-94,-166,-152,-153,-308,-132,-133,39,-70,39,-85,39,39,39,-30,-167,39,39,39,-135,-142,-309,39,-145,-146,-130,39,39,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,39,-71,-35,-36,39,39,-154,39,-137,39,-139,-134,-143,-128,-129,-131,-202,-201,39,-218,39,-78,-80,39,-214,-215,-217,39,39,39,-31,-34,39,39,-155,-156,-136,-138,-144,-203,-205,39,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'DOUBLE':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,22,23,25,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,61,62,63,64,65,66,77,78,80,81,82,83,84,85,86,87,97,98,99,101,102,103,104,105,106,107,115,126,128,131,133,139,140,141,142,143,144,145,146,147,148,149,152,153,154,155,156,157,158,159,160,161,162,168,211,228,229,230,239,247,250,251,252,253,254,255,257,258,264,265,266,272,274,278,283,284,285,287,288,290,329,333,336,352,353,362,371,372,373,376,377,378,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[40,40,-60,-62,-63,-64,-65,-66,40,40,-67,-68,-52,-310,-310,-310,-116,-93,40,-29,-97,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,40,-84,40,40,40,-89,-90,-91,-92,-83,-69,40,-53,-86,-9,-10,-87,-88,-94,-166,-152,-153,-308,-132,-133,40,-70,40,-85,40,40,40,-30,-167,40,40,40,-135,-142,-309,40,-145,-146,-130,40,40,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,40,-71,-35,-36,40,40,-154,40,-137,40,-139,-134,-143,-128,-129,-131,-202,-201,40,-218,40,-78,-80,40,-214,-215,-217,40,40,40,-31,-34,40,40,-155,-156,-136,-138,-144,-203,-205,40,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'_COMPLEX':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,22,23,25,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,61,62,63,64,65,66,77,78,80,81,82,83,84,85,86,87,97,98,99,101,102,103,104,105,106,107,115,126,128,131,133,139,140,141,142,143,144,145,146,147,148,149,152,153,154,155,156,157,158,159,160,161,162,168,211,228,229,230,239,247,250,251,252,253,254,255,257,258,264,265,266,272,274,278,283,284,285,287,288,290,329,333,336,352,353,362,371,372,373,376,377,378,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[41,41,-60,-62,-63,-64,-65,-66,41,41,-67,-68,-52,-310,-310,-310,-116,-93,41,-29,-97,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,41,-84,41,41,41,-89,-90,-91,-92,-83,-69,41,-53,-86,-9,-10,-87,-88,-94,-166,-152,-153,-308,-132,-133,41,-70,41,-85,41,41,41,-30,-167,41,41,41,-135,-142,-309,41,-145,-146,-130,41,41,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,41,-71,-35,-36,41,41,-154,41,-137,41,-139,-134,-143,-128,-129,-131,-202,-201,41,-218,41,-78,-80,41,-214,-215,-217,41,41,41,-31,-34,41,41,-155,-156,-136,-138,-144,-203,-205,41,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'SIGNED':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,22,23,25,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,61,62,63,64,65,66,77,78,80,81,82,83,84,85,86,87,97,98,99,101,102,103,104,105,106,107,115,126,128,131,133,139,140,141,142,143,144,145,146,147,148,149,152,153,154,155,156,157,158,159,160,161,162,168,211,228,229,230,239,247,250,251,252,253,254,255,257,258,264,265,266,272,274,278,283,284,285,287,288,290,329,333,336,352,353,362,371,372,373,376,377,378,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[42,42,-60,-62,-63,-64,-65,-66,42,42,-67,-68,-52,-310,-310,-310,-116,-93,42,-29,-97,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,42,-84,42,42,42,-89,-90,-91,-92,-83,-69,42,-53,-86,-9,-10,-87,-88,-94,-166,-152,-153,-308,-132,-133,42,-70,42,-85,42,42,42,-30,-167,42,42,42,-135,-142,-309,42,-145,-146,-130,42,42,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,42,-71,-35,-36,42,42,-154,42,-137,42,-139,-134,-143,-128,-129,-131,-202,-201,42,-218,42,-78,-80,42,-214,-215,-217,42,42,42,-31,-34,42,42,-155,-156,-136,-138,-144,-203,-205,42,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'UNSIGNED':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,22,23,25,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,61,62,63,64,65,66,77,78,80,81,82,83,84,85,86,87,97,98,99,101,102,103,104,105,106,107,115,126,128,131,133,139,140,141,142,143,144,145,146,147,148,149,152,153,154,155,156,157,158,159,160,161,162,168,211,228,229,230,239,247,250,251,252,253,254,255,257,258,264,265,266,272,274,278,283,284,285,287,288,290,329,333,336,352,353,362,371,372,373,376,377,378,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[43,43,-60,-62,-63,-64,-65,-66,43,43,-67,-68,-52,-310,-310,-310,-116,-93,43,-29,-97,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,43,-84,43,43,43,-89,-90,-91,-92,-83,-69,43,-53,-86,-9,-10,-87,-88,-94,-166,-152,-153,-308,-132,-133,43,-70,43,-85,43,43,43,-30,-167,43,43,43,-135,-142,-309,43,-145,-146,-130,43,43,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,43,-71,-35,-36,43,43,-154,43,-137,43,-139,-134,-143,-128,-129,-131,-202,-201,43,-218,43,-78,-80,43,-214,-215,-217,43,43,43,-31,-34,43,43,-155,-156,-136,-138,-144,-203,-205,43,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'__INT128':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,22,23,25,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,61,62,63,64,65,66,77,78,80,81,82,83,84,85,86,87,97,98,99,101,102,103,104,105,106,107,115,126,128,131,133,139,140,141,142,143,144,145,146,147,148,149,152,153,154,155,156,157,158,159,160,161,162,168,211,228,229,230,239,247,250,251,252,253,254,255,257,258,264,265,266,272,274,278,283,284,285,287,288,290,329,333,336,352,353,362,371,372,373,376,377,378,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[44,44,-60,-62,-63,-64,-65,-66,44,44,-67,-68,-52,-310,-310,-310,-116,-93,44,-29,-97,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,44,-84,44,44,44,-89,-90,-91,-92,-83,-69,44,-53,-86,-9,-10,-87,-88,-94,-166,-152,-153,-308,-132,-133,44,-70,44,-85,44,44,44,-30,-167,44,44,44,-135,-142,-309,44,-145,-146,-130,44,44,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,44,-71,-35,-36,44,44,-154,44,-137,44,-139,-134,-143,-128,-129,-131,-202,-201,44,-218,44,-78,-80,44,-214,-215,-217,44,44,44,-31,-34,44,44,-155,-156,-136,-138,-144,-203,-205,44,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'CONST':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,23,25,26,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,62,63,64,65,66,77,78,79,80,81,87,96,97,98,99,101,102,103,104,105,106,107,114,115,117,118,126,131,133,139,140,141,142,143,144,145,146,147,148,149,152,153,154,155,156,157,158,159,160,161,162,168,211,218,219,228,229,230,239,240,247,250,251,252,253,254,255,257,258,264,265,266,272,274,278,283,284,285,287,288,290,329,333,336,352,353,361,362,371,372,373,376,377,378,382,385,391,396,399,400,443,444,446,447,459,492,493,495,496,520,522,528,530,],[45,45,-60,-62,-63,-64,-65,-66,45,45,-67,-68,-52,45,45,45,-116,-93,-29,-97,45,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,45,-84,45,45,-89,-90,-91,-92,-83,-69,45,45,-53,-94,45,-166,-152,-153,-308,-132,-133,45,-70,45,-85,45,45,45,45,45,-30,-167,45,45,45,-135,-142,-309,45,-145,-146,-130,45,45,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,45,-71,45,45,-35,-36,45,45,45,-154,45,-137,45,-139,-134,-143,-128,-129,-131,-202,-201,45,-218,45,-78,-80,45,-214,-215,-217,45,45,45,-31,-34,45,45,45,-155,-156,-136,-138,-144,-203,-205,45,-79,-213,-216,-32,-33,45,45,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'RESTRICT':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,23,25,26,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,62,63,64,65,66,77,78,79,80,81,87,96,97,98,99,101,102,103,104,105,106,107,114,115,117,118,126,131,133,139,140,141,142,143,144,145,146,147,148,149,152,153,154,155,156,157,158,159,160,161,162,168,211,218,219,228,229,230,239,240,247,250,251,252,253,254,255,257,258,264,265,266,272,274,278,283,284,285,287,288,290,329,333,336,352,353,361,362,371,372,373,376,377,378,382,385,391,396,399,400,443,444,446,447,459,492,493,495,496,520,522,528,530,],[46,46,-60,-62,-63,-64,-65,-66,46,46,-67,-68,-52,46,46,46,-116,-93,-29,-97,46,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,46,-84,46,46,-89,-90,-91,-92,-83,-69,46,46,-53,-94,46,-166,-152,-153,-308,-132,-133,46,-70,46,-85,46,46,46,46,46,-30,-167,46,46,46,-135,-142,-309,46,-145,-146,-130,46,46,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,46,-71,46,46,-35,-36,46,46,46,-154,46,-137,46,-139,-134,-143,-128,-129,-131,-202,-201,46,-218,46,-78,-80,46,-214,-215,-217,46,46,46,-31,-34,46,46,46,-155,-156,-136,-138,-144,-203,-205,46,-79,-213,-216,-32,-33,46,46,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'VOLATILE':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,23,25,26,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,62,63,64,65,66,77,78,79,80,81,87,96,97,98,99,101,102,103,104,105,106,107,114,115,117,118,126,131,133,139,140,141,142,143,144,145,146,147,148,149,152,153,154,155,156,157,158,159,160,161,162,168,211,218,219,228,229,230,239,240,247,250,251,252,253,254,255,257,258,264,265,266,272,274,278,283,284,285,287,288,290,329,333,336,352,353,361,362,371,372,373,376,377,378,382,385,391,396,399,400,443,444,446,447,459,492,493,495,496,520,522,528,530,],[47,47,-60,-62,-63,-64,-65,-66,47,47,-67,-68,-52,47,47,47,-116,-93,-29,-97,47,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,47,-84,47,47,-89,-90,-91,-92,-83,-69,47,47,-53,-94,47,-166,-152,-153,-308,-132,-133,47,-70,47,-85,47,47,47,47,47,-30,-167,47,47,47,-135,-142,-309,47,-145,-146,-130,47,47,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,47,-71,47,47,-35,-36,47,47,47,-154,47,-137,47,-139,-134,-143,-128,-129,-131,-202,-201,47,-218,47,-78,-80,47,-214,-215,-217,47,47,47,-31,-34,47,47,47,-155,-156,-136,-138,-144,-203,-205,47,-79,-213,-216,-32,-33,47,47,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'AUTO':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,23,25,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,62,63,64,65,66,77,78,80,81,87,98,99,101,102,103,105,106,107,115,126,131,142,144,152,153,154,155,156,157,158,159,160,161,162,211,228,229,230,239,247,251,253,254,265,266,274,283,284,285,287,288,290,352,353,362,371,372,373,376,377,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[48,48,-60,-62,-63,-64,-65,-66,48,48,-67,-68,-52,48,48,48,-116,-93,-29,-97,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,48,-84,48,48,-89,-90,-91,-92,-83,-69,48,-53,-94,-152,-153,-308,-132,-133,-70,48,-85,48,48,-30,-135,-309,48,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,-71,-35,-36,48,48,-154,-137,-139,-134,-202,-201,-218,-78,-80,48,-214,-215,-217,-31,-34,48,48,-155,-156,-136,-138,-203,-205,48,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'REGISTER':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,23,25,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,62,63,64,65,66,77,78,80,81,87,98,99,101,102,103,105,106,107,115,126,131,142,144,152,153,154,155,156,157,158,159,160,161,162,211,228,229,230,239,247,251,253,254,265,266,274,283,284,285,287,288,290,352,353,362,371,372,373,376,377,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[49,49,-60,-62,-63,-64,-65,-66,49,49,-67,-68,-52,49,49,49,-116,-93,-29,-97,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,49,-84,49,49,-89,-90,-91,-92,-83,-69,49,-53,-94,-152,-153,-308,-132,-133,-70,49,-85,49,49,-30,-135,-309,49,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,-71,-35,-36,49,49,-154,-137,-139,-134,-202,-201,-218,-78,-80,49,-214,-215,-217,-31,-34,49,49,-155,-156,-136,-138,-203,-205,49,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'STATIC':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,23,25,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,62,63,64,65,66,77,78,79,80,81,87,97,98,99,101,102,103,105,106,107,114,115,118,126,131,133,142,144,152,153,154,155,156,157,158,159,160,161,162,211,219,228,229,230,239,247,251,253,254,265,266,274,283,284,285,287,288,290,352,353,361,362,371,372,373,376,377,382,385,391,396,399,400,443,444,447,459,492,493,495,496,520,522,528,530,],[25,25,-60,-62,-63,-64,-65,-66,25,25,-67,-68,-52,25,25,25,-116,-93,-29,-97,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,25,-84,25,25,-89,-90,-91,-92,-83,-69,117,25,-53,-94,-166,-152,-153,-308,-132,-133,-70,25,-85,218,25,227,25,-30,-167,-135,-309,25,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,-71,349,-35,-36,25,25,-154,-137,-139,-134,-202,-201,-218,-78,-80,25,-214,-215,-217,-31,-34,446,25,25,-155,-156,-136,-138,-203,-205,25,-79,-213,-216,-32,-33,485,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'EXTERN':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,23,25,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,62,63,64,65,66,77,78,80,81,87,98,99,101,102,103,105,106,107,115,126,131,142,144,152,153,154,155,156,157,158,159,160,161,162,211,228,229,230,239,247,251,253,254,265,266,274,283,284,285,287,288,290,352,353,362,371,372,373,376,377,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[50,50,-60,-62,-63,-64,-65,-66,50,50,-67,-68,-52,50,50,50,-116,-93,-29,-97,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,50,-84,50,50,-89,-90,-91,-92,-83,-69,50,-53,-94,-152,-153,-308,-132,-133,-70,50,-85,50,50,-30,-135,-309,50,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,-71,-35,-36,50,50,-154,-137,-139,-134,-202,-201,-218,-78,-80,50,-214,-215,-217,-31,-34,50,50,-155,-156,-136,-138,-203,-205,50,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'TYPEDEF':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,23,25,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,62,63,64,65,66,77,78,80,81,87,98,99,101,102,103,105,106,107,115,126,131,142,144,152,153,154,155,156,157,158,159,160,161,162,211,228,229,230,239,247,251,253,254,265,266,274,283,284,285,287,288,290,352,353,362,371,372,373,376,377,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[51,51,-60,-62,-63,-64,-65,-66,51,51,-67,-68,-52,51,51,51,-116,-93,-29,-97,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,51,-84,51,51,-89,-90,-91,-92,-83,-69,51,-53,-94,-152,-153,-308,-132,-133,-70,51,-85,51,51,-30,-135,-309,51,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,-71,-35,-36,51,51,-154,-137,-139,-134,-202,-201,-218,-78,-80,51,-214,-215,-217,-31,-34,51,51,-155,-156,-136,-138,-203,-205,51,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'INLINE':([0,2,4,5,6,7,8,9,10,11,13,14,15,17,18,19,20,21,23,25,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,55,58,59,60,62,63,64,65,66,77,78,80,81,87,98,99,101,102,103,105,106,107,115,126,131,142,144,152,153,154,155,156,157,158,159,160,161,162,211,228,229,230,239,247,251,253,254,265,266,274,283,284,285,287,288,290,352,353,362,371,372,373,376,377,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[52,52,-60,-62,-63,-64,-65,-66,52,52,-67,-68,-52,52,52,52,-116,-93,-29,-97,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-61,52,-84,52,52,-89,-90,-91,-92,-83,-69,52,-53,-94,-152,-153,-308,-132,-133,-70,52,-85,52,52,-30,-135,-309,52,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,-71,-35,-36,52,52,-154,-137,-139,-134,-202,-201,-218,-78,-80,52,-214,-215,-217,-31,-34,52,52,-155,-156,-136,-138,-203,-205,52,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'STRUCT':([0,2,4,5,6,7,8,9,10,13,14,15,17,18,19,22,23,25,45,46,47,48,49,50,51,52,55,58,59,61,62,77,78,80,81,82,83,84,85,86,97,101,104,105,106,107,115,128,131,133,139,140,141,143,144,146,147,149,152,153,154,155,156,157,158,159,160,161,162,168,211,228,229,230,239,250,252,255,265,266,272,274,283,284,285,287,288,290,329,333,336,352,353,362,371,378,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[53,53,-60,-62,-63,-64,-65,-66,53,-67,-68,-52,-310,-310,-310,53,-29,-97,-117,-118,-119,-95,-96,-98,-99,-100,-61,53,-84,53,53,-83,-69,53,-53,-86,-9,-10,-87,-88,-166,-308,53,-70,53,-85,53,53,-30,-167,53,53,53,-142,-309,-145,-146,53,53,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,53,-71,-35,-36,53,53,53,53,-143,-202,-201,53,-218,-78,-80,53,-214,-215,-217,53,53,53,-31,-34,53,53,-144,-203,-205,53,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'UNION':([0,2,4,5,6,7,8,9,10,13,14,15,17,18,19,22,23,25,45,46,47,48,49,50,51,52,55,58,59,61,62,77,78,80,81,82,83,84,85,86,97,101,104,105,106,107,115,128,131,133,139,140,141,143,144,146,147,149,152,153,154,155,156,157,158,159,160,161,162,168,211,228,229,230,239,250,252,255,265,266,272,274,283,284,285,287,288,290,329,333,336,352,353,362,371,378,382,385,391,396,399,400,443,444,459,492,493,495,496,520,522,528,530,],[54,54,-60,-62,-63,-64,-65,-66,54,-67,-68,-52,-310,-310,-310,54,-29,-97,-117,-118,-119,-95,-96,-98,-99,-100,-61,54,-84,54,54,-83,-69,54,-53,-86,-9,-10,-87,-88,-166,-308,54,-70,54,-85,54,54,-30,-167,54,54,54,-142,-309,-145,-146,54,54,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,54,-71,-35,-36,54,54,54,54,-143,-202,-201,54,-218,-78,-80,54,-214,-215,-217,54,54,54,-31,-34,54,54,-144,-203,-205,54,-79,-213,-216,-32,-33,-204,-206,-80,-208,-209,-207,-210,-212,-211,]),'LBRACE':([10,14,15,23,31,32,53,54,56,57,58,59,62,77,78,81,98,99,101,102,103,106,107,109,113,130,131,144,152,153,154,155,156,157,158,159,160,161,162,172,216,228,229,265,266,268,273,274,283,284,287,288,290,339,340,341,352,353,382,383,385,387,396,399,400,433,435,443,444,459,460,461,462,464,465,473,474,477,478,492,493,495,496,509,511,520,522,524,527,528,530,],[-310,-68,-52,-29,101,101,-140,-141,101,-7,-8,-84,-310,-83,-69,-53,101,101,-308,101,101,101,-85,101,101,101,-30,-309,101,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,101,-310,-35,-36,-202,-201,101,101,-218,101,-80,-214,-215,-217,-11,101,-12,-31,-34,-203,101,-205,101,-79,-213,-216,-310,-182,-32,-33,-204,101,101,-310,101,101,101,101,101,-11,-206,-80,-208,-209,101,-310,-207,-210,101,101,-212,-211,]),'RBRACE':([14,77,78,101,104,106,127,136,137,138,139,140,141,143,144,146,147,150,151,152,153,154,155,156,157,158,159,160,161,162,179,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,215,216,245,246,248,250,252,255,265,266,270,271,274,283,284,287,288,290,326,327,328,330,331,332,334,335,337,338,339,374,375,378,382,385,388,396,399,400,401,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,432,433,434,459,463,470,471,474,476,492,493,494,495,496,500,504,510,511,515,520,521,522,528,530,],[-68,-83,-69,-308,144,-310,-294,144,-157,-160,144,144,144,-142,-309,-145,-146,144,-5,-6,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,-222,-257,-236,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-177,-310,144,144,-158,144,144,-143,-202,-201,-235,-257,-218,-78,-80,-214,-215,-217,-279,-280,-260,-261,-262,-263,-305,-307,144,-22,-21,-159,-161,-144,-203,-205,-287,-79,-213,-216,-223,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,-253,-254,-255,-256,-274,-275,-276,-277,-278,-178,144,-180,-204,-258,-272,-273,-264,-179,-206,-80,144,-208,-209,-237,-181,-281,144,-288,-207,-282,-210,-212,-211,]),'CASE':([14,77,78,101,106,144,152,153,154,155,156,157,158,159,160,161,162,172,265,266,268,273,274,283,284,287,288,290,382,383,385,396,399,400,459,461,464,465,492,493,495,496,509,520,522,524,527,528,530,],[-68,-83,-69,-308,164,-309,164,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,164,-202,-201,164,164,-218,164,-80,-214,-215,-217,-203,164,-205,-79,-213,-216,-204,164,164,164,-206,-80,-208,-209,164,-207,-210,164,164,-212,-211,]),'DEFAULT':([14,77,78,101,106,144,152,153,154,155,156,157,158,159,160,161,162,172,265,266,268,273,274,283,284,287,288,290,382,383,385,396,399,400,459,461,464,465,492,493,495,496,509,520,522,524,527,528,530,],[-68,-83,-69,-308,165,-309,165,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,165,-202,-201,165,165,-218,165,-80,-214,-215,-217,-203,165,-205,-79,-213,-216,-204,165,165,165,-206,-80,-208,-209,165,-207,-210,165,165,-212,-211,]),'IF':([14,77,78,101,106,144,152,153,154,155,156,157,158,159,160,161,162,172,265,266,268,273,274,283,284,287,288,290,382,383,385,396,399,400,459,461,464,465,492,493,495,496,509,520,522,524,527,528,530,],[-68,-83,-69,-308,167,-309,167,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,167,-202,-201,167,167,-218,167,-80,-214,-215,-217,-203,167,-205,-79,-213,-216,-204,167,167,167,-206,-80,-208,-209,167,-207,-210,167,167,-212,-211,]),'SWITCH':([14,77,78,101,106,144,152,153,154,155,156,157,158,159,160,161,162,172,265,266,268,273,274,283,284,287,288,290,382,383,385,396,399,400,459,461,464,465,492,493,495,496,509,520,522,524,527,528,530,],[-68,-83,-69,-308,170,-309,170,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,170,-202,-201,170,170,-218,170,-80,-214,-215,-217,-203,170,-205,-79,-213,-216,-204,170,170,170,-206,-80,-208,-209,170,-207,-210,170,170,-212,-211,]),'WHILE':([14,77,78,101,106,144,152,153,154,155,156,157,158,159,160,161,162,172,265,266,268,273,274,282,283,284,287,288,290,382,383,385,396,399,400,459,461,464,465,492,493,495,496,509,520,522,524,527,528,530,],[-68,-83,-69,-308,171,-309,171,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,171,-202,-201,171,171,-218,395,171,-80,-214,-215,-217,-203,171,-205,-79,-213,-216,-204,171,171,171,-206,-80,-208,-209,171,-207,-210,171,171,-212,-211,]),'DO':([14,77,78,101,106,144,152,153,154,155,156,157,158,159,160,161,162,172,265,266,268,273,274,283,284,287,288,290,382,383,385,396,399,400,459,461,464,465,492,493,495,496,509,520,522,524,527,528,530,],[-68,-83,-69,-308,172,-309,172,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,172,-202,-201,172,172,-218,172,-80,-214,-215,-217,-203,172,-205,-79,-213,-216,-204,172,172,172,-206,-80,-208,-209,172,-207,-210,172,172,-212,-211,]),'FOR':([14,77,78,101,106,144,152,153,154,155,156,157,158,159,160,161,162,172,265,266,268,273,274,283,284,287,288,290,382,383,385,396,399,400,459,461,464,465,492,493,495,496,509,520,522,524,527,528,530,],[-68,-83,-69,-308,173,-309,173,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,173,-202,-201,173,173,-218,173,-80,-214,-215,-217,-203,173,-205,-79,-213,-216,-204,173,173,173,-206,-80,-208,-209,173,-207,-210,173,173,-212,-211,]),'GOTO':([14,77,78,101,106,144,152,153,154,155,156,157,158,159,160,161,162,172,265,266,268,273,274,283,284,287,288,290,382,383,385,396,399,400,459,461,464,465,492,493,495,496,509,520,522,524,527,528,530,],[-68,-83,-69,-308,174,-309,174,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,174,-202,-201,174,174,-218,174,-80,-214,-215,-217,-203,174,-205,-79,-213,-216,-204,174,174,174,-206,-80,-208,-209,174,-207,-210,174,174,-212,-211,]),'BREAK':([14,77,78,101,106,144,152,153,154,155,156,157,158,159,160,161,162,172,265,266,268,273,274,283,284,287,288,290,382,383,385,396,399,400,459,461,464,465,492,493,495,496,509,520,522,524,527,528,530,],[-68,-83,-69,-308,175,-309,175,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,175,-202,-201,175,175,-218,175,-80,-214,-215,-217,-203,175,-205,-79,-213,-216,-204,175,175,175,-206,-80,-208,-209,175,-207,-210,175,175,-212,-211,]),'CONTINUE':([14,77,78,101,106,144,152,153,154,155,156,157,158,159,160,161,162,172,265,266,268,273,274,283,284,287,288,290,382,383,385,396,399,400,459,461,464,465,492,493,495,496,509,520,522,524,527,528,530,],[-68,-83,-69,-308,176,-309,176,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,176,-202,-201,176,176,-218,176,-80,-214,-215,-217,-203,176,-205,-79,-213,-216,-204,176,176,176,-206,-80,-208,-209,176,-207,-210,176,176,-212,-211,]),'RETURN':([14,77,78,101,106,144,152,153,154,155,156,157,158,159,160,161,162,172,265,266,268,273,274,283,284,287,288,290,382,383,385,396,399,400,459,461,464,465,492,493,495,496,509,520,522,524,527,528,530,],[-68,-83,-69,-308,177,-309,177,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,177,-202,-201,177,177,-218,177,-80,-214,-215,-217,-203,177,-205,-79,-213,-216,-204,177,177,177,-206,-80,-208,-209,177,-207,-210,177,177,-212,-211,]),'PLUSPLUS':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,127,130,133,144,152,153,154,155,156,157,158,159,160,161,162,163,164,168,172,177,182,183,184,185,187,188,189,190,191,192,193,194,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,216,217,218,219,223,226,227,240,249,263,265,266,268,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,326,327,329,333,334,335,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,388,396,398,399,400,423,425,426,427,428,433,435,445,446,447,455,459,460,461,462,464,465,466,467,469,470,471,472,477,478,483,484,485,492,493,495,496,499,509,510,511,513,515,517,520,521,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,183,183,-310,183,-310,-28,-294,183,-167,-309,183,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,-294,183,183,183,183,326,183,183,183,183,-266,-267,-268,-265,-271,-269,-270,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-310,183,-310,-28,-266,183,183,-310,183,183,-202,-201,183,183,183,-218,183,183,183,183,183,-80,183,-214,-215,-217,183,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,183,-279,-280,183,183,-305,-307,-11,183,-12,183,-266,183,183,-310,183,183,183,-203,183,-205,183,-287,-79,183,-213,-216,-274,-275,-276,-277,-278,-310,-182,183,-310,-28,-266,-204,183,183,-310,183,183,183,183,183,-272,-273,183,183,-11,-266,183,183,-206,-80,-208,-209,183,183,-281,-310,183,-288,183,-207,-282,-210,183,183,-212,-211,]),'MINUSMINUS':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,127,130,133,144,152,153,154,155,156,157,158,159,160,161,162,163,164,168,172,177,182,183,184,185,187,188,189,190,191,192,193,194,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,216,217,218,219,223,226,227,240,249,263,265,266,268,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,326,327,329,333,334,335,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,388,396,398,399,400,423,425,426,427,428,433,435,445,446,447,455,459,460,461,462,464,465,466,467,469,470,471,472,477,478,483,484,485,492,493,495,496,499,509,510,511,513,515,517,520,521,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,184,184,-310,184,-310,-28,-294,184,-167,-309,184,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,-294,184,184,184,184,327,184,184,184,184,-266,-267,-268,-265,-271,-269,-270,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-310,184,-310,-28,-266,184,184,-310,184,184,-202,-201,184,184,184,-218,184,184,184,184,184,-80,184,-214,-215,-217,184,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,184,184,184,184,184,184,184,184,184,184,184,184,184,184,184,184,184,184,184,184,184,-279,-280,184,184,-305,-307,-11,184,-12,184,-266,184,184,-310,184,184,184,-203,184,-205,184,-287,-79,184,-213,-216,-274,-275,-276,-277,-278,-310,-182,184,-310,-28,-266,-204,184,184,-310,184,184,184,184,184,-272,-273,184,184,-11,-266,184,184,-206,-80,-208,-209,184,184,-281,-310,184,-288,184,-207,-282,-210,184,184,-212,-211,]),'SIZEOF':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,130,133,144,152,153,154,155,156,157,158,159,160,161,162,164,168,172,177,183,184,185,187,188,189,190,191,193,194,216,217,218,219,223,226,227,240,249,263,265,266,268,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,396,398,399,400,433,435,445,446,447,455,459,460,461,462,464,465,466,467,469,472,477,478,483,484,485,492,493,495,496,499,509,511,513,517,520,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,187,187,-310,187,-310,-28,187,-167,-309,187,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,187,187,187,187,187,187,187,187,-266,-267,-268,-265,-269,-270,-310,187,-310,-28,-266,187,187,-310,187,187,-202,-201,187,187,187,-218,187,187,187,187,187,-80,187,-214,-215,-217,187,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,187,-11,187,-12,187,-266,187,187,-310,187,187,187,-203,187,-205,187,-79,187,-213,-216,-310,-182,187,-310,-28,-266,-204,187,187,-310,187,187,187,187,187,187,187,-11,-266,187,187,-206,-80,-208,-209,187,187,-310,187,187,-207,-210,187,187,-212,-211,]),'AND':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,127,130,133,144,152,153,154,155,156,157,158,159,160,161,162,163,164,168,172,177,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,216,217,218,219,223,226,227,240,249,263,265,266,268,271,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,326,327,328,329,330,331,332,333,334,335,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,388,396,398,399,400,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,433,435,445,446,447,455,459,460,461,462,463,464,465,466,467,469,470,471,472,474,477,478,483,484,485,492,493,495,496,499,509,510,511,513,515,517,520,521,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,191,191,-310,191,-310,-28,-294,191,-167,-309,191,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,-294,191,191,191,191,-257,317,-259,191,191,191,-238,191,-266,-267,-268,-265,-271,-269,-270,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-310,191,-310,-28,-266,191,191,-310,191,191,-202,-201,191,-257,191,191,-218,191,191,191,191,191,-80,191,-214,-215,-217,191,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,191,-279,-280,-260,191,-261,-262,-263,191,-305,-307,-11,191,-12,191,-266,191,191,-310,191,191,191,-203,191,-205,191,-287,-79,191,-213,-216,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,317,317,317,317,-274,-275,-276,-277,-278,-310,-182,191,-310,-28,-266,-204,191,191,-310,-258,191,191,191,191,191,-272,-273,191,-264,191,-11,-266,191,191,-206,-80,-208,-209,191,191,-281,-310,191,-288,191,-207,-282,-210,191,191,-212,-211,]),'PLUS':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,127,130,133,144,152,153,154,155,156,157,158,159,160,161,162,163,164,168,172,177,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,216,217,218,219,223,226,227,240,249,263,265,266,268,271,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,326,327,328,329,330,331,332,333,334,335,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,388,396,398,399,400,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,433,435,445,446,447,455,459,460,461,462,463,464,465,466,467,469,470,471,472,474,477,478,483,484,485,492,493,495,496,499,509,510,511,513,515,517,520,521,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,189,189,-310,189,-310,-28,-294,189,-167,-309,189,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,-294,189,189,189,189,-257,307,-259,189,189,189,-238,189,-266,-267,-268,-265,-271,-269,-270,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-310,189,-310,-28,-266,189,189,-310,189,189,-202,-201,189,-257,189,189,-218,189,189,189,189,189,-80,189,-214,-215,-217,189,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,189,-279,-280,-260,189,-261,-262,-263,189,-305,-307,-11,189,-12,189,-266,189,189,-310,189,189,189,-203,189,-205,189,-287,-79,189,-213,-216,-239,-240,-241,-242,-243,307,307,307,307,307,307,307,307,307,307,307,307,307,-274,-275,-276,-277,-278,-310,-182,189,-310,-28,-266,-204,189,189,-310,-258,189,189,189,189,189,-272,-273,189,-264,189,-11,-266,189,189,-206,-80,-208,-209,189,189,-281,-310,189,-288,189,-207,-282,-210,189,189,-212,-211,]),'MINUS':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,127,130,133,144,152,153,154,155,156,157,158,159,160,161,162,163,164,168,172,177,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,216,217,218,219,223,226,227,240,249,263,265,266,268,271,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,326,327,328,329,330,331,332,333,334,335,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,388,396,398,399,400,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,433,435,445,446,447,455,459,460,461,462,463,464,465,466,467,469,470,471,472,474,477,478,483,484,485,492,493,495,496,499,509,510,511,513,515,517,520,521,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,190,190,-310,190,-310,-28,-294,190,-167,-309,190,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,-294,190,190,190,190,-257,308,-259,190,190,190,-238,190,-266,-267,-268,-265,-271,-269,-270,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-310,190,-310,-28,-266,190,190,-310,190,190,-202,-201,190,-257,190,190,-218,190,190,190,190,190,-80,190,-214,-215,-217,190,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,190,-279,-280,-260,190,-261,-262,-263,190,-305,-307,-11,190,-12,190,-266,190,190,-310,190,190,190,-203,190,-205,190,-287,-79,190,-213,-216,-239,-240,-241,-242,-243,308,308,308,308,308,308,308,308,308,308,308,308,308,-274,-275,-276,-277,-278,-310,-182,190,-310,-28,-266,-204,190,190,-310,-258,190,190,190,190,190,-272,-273,190,-264,190,-11,-266,190,190,-206,-80,-208,-209,190,190,-281,-310,190,-288,190,-207,-282,-210,190,190,-212,-211,]),'NOT':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,130,133,144,152,153,154,155,156,157,158,159,160,161,162,164,168,172,177,183,184,185,187,188,189,190,191,193,194,216,217,218,219,223,226,227,240,249,263,265,266,268,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,396,398,399,400,433,435,445,446,447,455,459,460,461,462,464,465,466,467,469,472,477,478,483,484,485,492,493,495,496,499,509,511,513,517,520,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,193,193,-310,193,-310,-28,193,-167,-309,193,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,193,193,193,193,193,193,193,193,-266,-267,-268,-265,-269,-270,-310,193,-310,-28,-266,193,193,-310,193,193,-202,-201,193,193,193,-218,193,193,193,193,193,-80,193,-214,-215,-217,193,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,193,-11,193,-12,193,-266,193,193,-310,193,193,193,-203,193,-205,193,-79,193,-213,-216,-310,-182,193,-310,-28,-266,-204,193,193,-310,193,193,193,193,193,193,193,-11,-266,193,193,-206,-80,-208,-209,193,193,-310,193,193,-207,-210,193,193,-212,-211,]),'LNOT':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,130,133,144,152,153,154,155,156,157,158,159,160,161,162,164,168,172,177,183,184,185,187,188,189,190,191,193,194,216,217,218,219,223,226,227,240,249,263,265,266,268,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,396,398,399,400,433,435,445,446,447,455,459,460,461,462,464,465,466,467,469,472,477,478,483,484,485,492,493,495,496,499,509,511,513,517,520,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,194,194,-310,194,-310,-28,194,-167,-309,194,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,194,194,194,194,194,194,194,194,-266,-267,-268,-265,-269,-270,-310,194,-310,-28,-266,194,194,-310,194,194,-202,-201,194,194,194,-218,194,194,194,194,194,-80,194,-214,-215,-217,194,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,194,-11,194,-12,194,-266,194,194,-310,194,194,194,-203,194,-205,194,-79,194,-213,-216,-310,-182,194,-310,-28,-266,-204,194,194,-310,194,194,194,194,194,194,194,-11,-266,194,194,-206,-80,-208,-209,194,194,-310,194,194,-207,-210,194,194,-212,-211,]),'OFFSETOF':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,130,133,144,152,153,154,155,156,157,158,159,160,161,162,164,168,172,177,183,184,185,187,188,189,190,191,193,194,216,217,218,219,223,226,227,240,249,263,265,266,268,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,396,398,399,400,433,435,445,446,447,455,459,460,461,462,464,465,466,467,469,472,477,478,483,484,485,492,493,495,496,499,509,511,513,517,520,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,199,199,-310,199,-310,-28,199,-167,-309,199,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,199,199,199,199,199,199,199,199,-266,-267,-268,-265,-269,-270,-310,199,-310,-28,-266,199,199,-310,199,199,-202,-201,199,199,199,-218,199,199,199,199,199,-80,199,-214,-215,-217,199,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,199,-11,199,-12,199,-266,199,199,-310,199,199,199,-203,199,-205,199,-79,199,-213,-216,-310,-182,199,-310,-28,-266,-204,199,199,-310,199,199,199,199,199,199,199,-11,-266,199,199,-206,-80,-208,-209,199,199,-310,199,199,-207,-210,199,199,-212,-211,]),'INT_CONST_DEC':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,130,133,144,152,153,154,155,156,157,158,159,160,161,162,164,168,172,177,183,184,185,187,188,189,190,191,193,194,216,217,218,219,223,226,227,240,249,263,265,266,268,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,396,398,399,400,433,435,445,446,447,455,459,460,461,462,464,465,466,467,469,472,477,478,483,484,485,492,493,495,496,499,509,511,513,517,520,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,200,200,-310,200,-310,-28,200,-167,-309,200,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,200,200,200,200,200,200,200,200,-266,-267,-268,-265,-269,-270,-310,200,-310,-28,-266,200,200,-310,200,200,-202,-201,200,200,200,-218,200,200,200,200,200,-80,200,-214,-215,-217,200,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,200,-11,200,-12,200,-266,200,200,-310,200,200,200,-203,200,-205,200,-79,200,-213,-216,-310,-182,200,-310,-28,-266,-204,200,200,-310,200,200,200,200,200,200,200,-11,-266,200,200,-206,-80,-208,-209,200,200,-310,200,200,-207,-210,200,200,-212,-211,]),'INT_CONST_OCT':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,130,133,144,152,153,154,155,156,157,158,159,160,161,162,164,168,172,177,183,184,185,187,188,189,190,191,193,194,216,217,218,219,223,226,227,240,249,263,265,266,268,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,396,398,399,400,433,435,445,446,447,455,459,460,461,462,464,465,466,467,469,472,477,478,483,484,485,492,493,495,496,499,509,511,513,517,520,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,201,201,-310,201,-310,-28,201,-167,-309,201,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,201,201,201,201,201,201,201,201,-266,-267,-268,-265,-269,-270,-310,201,-310,-28,-266,201,201,-310,201,201,-202,-201,201,201,201,-218,201,201,201,201,201,-80,201,-214,-215,-217,201,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,201,-11,201,-12,201,-266,201,201,-310,201,201,201,-203,201,-205,201,-79,201,-213,-216,-310,-182,201,-310,-28,-266,-204,201,201,-310,201,201,201,201,201,201,201,-11,-266,201,201,-206,-80,-208,-209,201,201,-310,201,201,-207,-210,201,201,-212,-211,]),'INT_CONST_HEX':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,130,133,144,152,153,154,155,156,157,158,159,160,161,162,164,168,172,177,183,184,185,187,188,189,190,191,193,194,216,217,218,219,223,226,227,240,249,263,265,266,268,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,396,398,399,400,433,435,445,446,447,455,459,460,461,462,464,465,466,467,469,472,477,478,483,484,485,492,493,495,496,499,509,511,513,517,520,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,202,202,-310,202,-310,-28,202,-167,-309,202,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,202,202,202,202,202,202,202,202,-266,-267,-268,-265,-269,-270,-310,202,-310,-28,-266,202,202,-310,202,202,-202,-201,202,202,202,-218,202,202,202,202,202,-80,202,-214,-215,-217,202,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,202,-11,202,-12,202,-266,202,202,-310,202,202,202,-203,202,-205,202,-79,202,-213,-216,-310,-182,202,-310,-28,-266,-204,202,202,-310,202,202,202,202,202,202,202,-11,-266,202,202,-206,-80,-208,-209,202,202,-310,202,202,-207,-210,202,202,-212,-211,]),'INT_CONST_BIN':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,130,133,144,152,153,154,155,156,157,158,159,160,161,162,164,168,172,177,183,184,185,187,188,189,190,191,193,194,216,217,218,219,223,226,227,240,249,263,265,266,268,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,396,398,399,400,433,435,445,446,447,455,459,460,461,462,464,465,466,467,469,472,477,478,483,484,485,492,493,495,496,499,509,511,513,517,520,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,203,203,-310,203,-310,-28,203,-167,-309,203,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,203,203,203,203,203,203,203,203,-266,-267,-268,-265,-269,-270,-310,203,-310,-28,-266,203,203,-310,203,203,-202,-201,203,203,203,-218,203,203,203,203,203,-80,203,-214,-215,-217,203,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,203,-11,203,-12,203,-266,203,203,-310,203,203,203,-203,203,-205,203,-79,203,-213,-216,-310,-182,203,-310,-28,-266,-204,203,203,-310,203,203,203,203,203,203,203,-11,-266,203,203,-206,-80,-208,-209,203,203,-310,203,203,-207,-210,203,203,-212,-211,]),'INT_CONST_CHAR':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,130,133,144,152,153,154,155,156,157,158,159,160,161,162,164,168,172,177,183,184,185,187,188,189,190,191,193,194,216,217,218,219,223,226,227,240,249,263,265,266,268,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,396,398,399,400,433,435,445,446,447,455,459,460,461,462,464,465,466,467,469,472,477,478,483,484,485,492,493,495,496,499,509,511,513,517,520,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,204,204,-310,204,-310,-28,204,-167,-309,204,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,204,204,204,204,204,204,204,204,-266,-267,-268,-265,-269,-270,-310,204,-310,-28,-266,204,204,-310,204,204,-202,-201,204,204,204,-218,204,204,204,204,204,-80,204,-214,-215,-217,204,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,204,-11,204,-12,204,-266,204,204,-310,204,204,204,-203,204,-205,204,-79,204,-213,-216,-310,-182,204,-310,-28,-266,-204,204,204,-310,204,204,204,204,204,204,204,-11,-266,204,204,-206,-80,-208,-209,204,204,-310,204,204,-207,-210,204,204,-212,-211,]),'FLOAT_CONST':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,130,133,144,152,153,154,155,156,157,158,159,160,161,162,164,168,172,177,183,184,185,187,188,189,190,191,193,194,216,217,218,219,223,226,227,240,249,263,265,266,268,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,396,398,399,400,433,435,445,446,447,455,459,460,461,462,464,465,466,467,469,472,477,478,483,484,485,492,493,495,496,499,509,511,513,517,520,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,205,205,-310,205,-310,-28,205,-167,-309,205,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,205,205,205,205,205,205,205,205,-266,-267,-268,-265,-269,-270,-310,205,-310,-28,-266,205,205,-310,205,205,-202,-201,205,205,205,-218,205,205,205,205,205,-80,205,-214,-215,-217,205,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,205,-11,205,-12,205,-266,205,205,-310,205,205,205,-203,205,-205,205,-79,205,-213,-216,-310,-182,205,-310,-28,-266,-204,205,205,-310,205,205,205,205,205,205,205,-11,-266,205,205,-206,-80,-208,-209,205,205,-310,205,205,-207,-210,205,205,-212,-211,]),'HEX_FLOAT_CONST':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,130,133,144,152,153,154,155,156,157,158,159,160,161,162,164,168,172,177,183,184,185,187,188,189,190,191,193,194,216,217,218,219,223,226,227,240,249,263,265,266,268,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,396,398,399,400,433,435,445,446,447,455,459,460,461,462,464,465,466,467,469,472,477,478,483,484,485,492,493,495,496,499,509,511,513,517,520,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,206,206,-310,206,-310,-28,206,-167,-309,206,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,206,206,206,206,206,206,206,206,-266,-267,-268,-265,-269,-270,-310,206,-310,-28,-266,206,206,-310,206,206,-202,-201,206,206,206,-218,206,206,206,206,206,-80,206,-214,-215,-217,206,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,206,-11,206,-12,206,-266,206,206,-310,206,206,206,-203,206,-205,206,-79,206,-213,-216,-310,-182,206,-310,-28,-266,-204,206,206,-310,206,206,206,206,206,206,206,-11,-266,206,206,-206,-80,-208,-209,206,206,-310,206,206,-207,-210,206,206,-212,-211,]),'CHAR_CONST':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,130,133,144,152,153,154,155,156,157,158,159,160,161,162,164,168,172,177,183,184,185,187,188,189,190,191,193,194,216,217,218,219,223,226,227,240,249,263,265,266,268,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,396,398,399,400,433,435,445,446,447,455,459,460,461,462,464,465,466,467,469,472,477,478,483,484,485,492,493,495,496,499,509,511,513,517,520,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,207,207,-310,207,-310,-28,207,-167,-309,207,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,207,207,207,207,207,207,207,207,-266,-267,-268,-265,-269,-270,-310,207,-310,-28,-266,207,207,-310,207,207,-202,-201,207,207,207,-218,207,207,207,207,207,-80,207,-214,-215,-217,207,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,-11,207,-12,207,-266,207,207,-310,207,207,207,-203,207,-205,207,-79,207,-213,-216,-310,-182,207,-310,-28,-266,-204,207,207,-310,207,207,207,207,207,207,207,-11,-266,207,207,-206,-80,-208,-209,207,207,-310,207,207,-207,-210,207,207,-212,-211,]),'WCHAR_CONST':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,130,133,144,152,153,154,155,156,157,158,159,160,161,162,164,168,172,177,183,184,185,187,188,189,190,191,193,194,216,217,218,219,223,226,227,240,249,263,265,266,268,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,396,398,399,400,433,435,445,446,447,455,459,460,461,462,464,465,466,467,469,472,477,478,483,484,485,492,493,495,496,499,509,511,513,517,520,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,208,208,-310,208,-310,-28,208,-167,-309,208,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,208,208,208,208,208,208,208,208,-266,-267,-268,-265,-269,-270,-310,208,-310,-28,-266,208,208,-310,208,208,-202,-201,208,208,208,-218,208,208,208,208,208,-80,208,-214,-215,-217,208,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,208,-11,208,-12,208,-266,208,208,-310,208,208,208,-203,208,-205,208,-79,208,-213,-216,-310,-182,208,-310,-28,-266,-204,208,208,-310,208,208,208,208,208,208,208,-11,-266,208,208,-206,-80,-208,-209,208,208,-310,208,208,-207,-210,208,208,-212,-211,]),'STRING_LITERAL':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,130,133,144,152,153,154,155,156,157,158,159,160,161,162,164,168,172,177,183,184,185,187,188,189,190,191,193,194,197,209,216,217,218,219,223,226,227,240,249,263,265,266,268,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,334,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,396,398,399,400,433,435,445,446,447,455,459,460,461,462,464,465,466,467,469,472,477,478,483,484,485,492,493,495,496,499,509,511,513,517,520,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,209,209,-310,209,-310,-28,209,-167,-309,209,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,209,209,209,209,209,209,209,209,-266,-267,-268,-265,-269,-270,334,-304,-310,209,-310,-28,-266,209,209,-310,209,209,-202,-201,209,209,209,-218,209,209,209,209,209,-80,209,-214,-215,-217,209,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,209,-305,-11,209,-12,209,-266,209,209,-310,209,209,209,-203,209,-205,209,-79,209,-213,-216,-310,-182,209,-310,-28,-266,-204,209,209,-310,209,209,209,209,209,209,209,-11,-266,209,209,-206,-80,-208,-209,209,209,-310,209,209,-207,-210,209,209,-212,-211,]),'WSTRING_LITERAL':([14,45,46,47,77,78,79,95,96,97,101,106,113,114,116,117,118,130,133,144,152,153,154,155,156,157,158,159,160,161,162,164,168,172,177,183,184,185,187,188,189,190,191,193,194,198,210,216,217,218,219,223,226,227,240,249,263,265,266,268,272,273,274,275,279,280,281,283,284,285,287,288,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,335,339,340,341,344,347,348,349,361,368,370,380,382,383,385,387,396,398,399,400,433,435,445,446,447,455,459,460,461,462,464,465,466,467,469,472,477,478,483,484,485,492,493,495,496,499,509,511,513,517,520,522,524,527,528,530,],[-68,-117,-118,-119,-83,-69,-310,-27,-28,-166,-308,210,210,-310,210,-310,-28,210,-167,-309,210,-200,-198,-199,-72,-73,-74,-75,-76,-77,-78,210,210,210,210,210,210,210,210,-266,-267,-268,-265,-269,-270,335,-306,-310,210,-310,-28,-266,210,210,-310,210,210,-202,-201,210,210,210,-218,210,210,210,210,210,-80,210,-214,-215,-217,210,-224,-225,-226,-227,-228,-229,-230,-231,-232,-233,-234,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,210,-307,-11,210,-12,210,-266,210,210,-310,210,210,210,-203,210,-205,210,-79,210,-213,-216,-310,-182,210,-310,-28,-266,-204,210,210,-310,210,210,210,210,210,210,210,-11,-266,210,210,-206,-80,-208,-209,210,210,-310,210,210,-207,-210,210,210,-212,-211,]),'ELSE':([14,78,144,156,157,158,159,160,161,162,265,274,283,284,287,288,290,382,385,396,399,400,459,492,493,495,496,520,522,528,530,],[-68,-69,-309,-72,-73,-74,-75,-76,-77,-78,-202,-218,-78,-80,-214,-215,-217,-203,-205,-79,-213,-216,-204,-206,509,-208,-209,-207,-210,-212,-211,]),'PPPRAGMASTR':([14,],[78,]),'EQUALS':([15,23,62,73,74,75,76,81,92,108,110,127,131,138,144,163,180,182,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,213,228,229,271,326,327,328,330,331,332,334,335,342,343,350,351,352,353,388,423,425,426,427,428,436,438,439,440,443,444,463,470,471,474,479,480,481,510,515,521,],[-52,-29,-162,113,-163,-54,-37,-53,130,-162,-55,-294,-30,249,-309,-294,292,-259,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-38,-35,-36,-257,-279,-280,-260,-261,-262,-263,-305,-307,435,-183,-43,-44,-31,-34,-287,-274,-275,-276,-277,-278,-184,-186,-39,-42,-32,-33,-258,-272,-273,-264,-185,-40,-41,-281,-288,-282,]),'COMMA':([15,20,21,23,25,26,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,62,63,64,65,66,70,72,73,74,75,76,81,87,90,91,92,94,95,96,97,98,99,102,103,108,110,121,123,124,125,126,127,131,132,133,136,137,138,142,144,148,163,169,178,179,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,212,213,214,215,228,229,232,233,234,235,236,237,238,241,242,243,244,245,246,247,248,251,253,254,257,258,260,261,262,264,270,271,277,278,289,326,327,328,330,331,332,334,335,338,350,351,352,353,357,358,359,360,372,373,374,375,376,377,381,386,388,389,390,392,393,394,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,431,432,434,439,440,443,444,450,451,453,457,458,463,470,471,474,476,480,481,486,487,488,489,490,491,494,497,500,501,504,505,506,510,515,518,519,521,526,],[-52,-116,-93,-29,-97,-310,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-162,-89,-90,-91,-92,111,-120,-122,-163,-54,-37,-53,-94,129,-124,-126,-164,-27,-28,-166,-152,-153,-132,-133,-162,-55,230,231,-170,-175,-310,-294,-30,-165,-167,248,-157,-160,-135,-309,-130,-294,279,-219,-222,-257,-236,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-121,-38,-123,-177,-35,-36,-172,-173,-174,-188,-56,-1,-2,-45,-190,-125,-127,248,248,-154,-158,-137,-139,-134,-128,-129,379,-147,-149,-131,-235,-257,279,-310,279,-279,-280,-260,-261,-262,-263,-305,-307,433,-43,-44,-31,-34,-171,-176,-57,-189,-155,-156,-159,-161,-136,-138,-151,279,-287,-187,-188,-220,279,279,-223,279,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,-253,-254,-255,-256,279,472,-274,-292,-275,-276,-277,-278,475,-178,-180,-39,-42,-32,-33,-191,-197,-195,-148,-150,-258,-272,-273,-264,-179,-40,-41,-50,-51,-193,-192,-194,-196,511,279,-237,-293,-181,-46,-49,-281,-288,-47,-48,-282,279,]),'RPAREN':([15,20,21,23,25,26,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,63,64,65,66,75,76,80,81,87,93,94,95,96,97,98,99,102,103,110,112,115,119,120,121,122,123,124,125,126,127,131,132,133,142,144,148,169,178,179,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,213,220,221,228,229,232,233,234,235,236,237,238,239,241,242,247,251,253,254,257,258,264,267,271,276,277,278,323,326,327,328,330,331,332,334,335,350,351,352,353,356,357,358,359,360,362,363,364,365,366,367,371,372,373,376,377,384,386,388,389,390,391,392,393,394,401,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,422,423,424,425,426,427,428,429,430,439,440,443,444,448,449,450,451,453,456,463,470,471,474,480,481,486,487,488,489,490,491,497,499,500,501,502,503,505,506,510,513,514,515,518,519,521,523,525,529,],[-52,-116,-93,-29,-97,-310,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-89,-90,-91,-92,-54,-37,-310,-53,-94,131,-164,-27,-28,-166,-152,-153,-132,-133,-55,213,-310,228,229,-168,-17,-18,-170,-175,-310,-294,-30,-165,-167,-135,-309,-130,-14,-219,-222,-257,-236,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-38,350,351,-35,-36,-172,-173,-174,-188,-56,-1,-2,-310,-45,-190,-154,-137,-139,-134,-128,-129,-131,-13,-257,387,388,-310,423,-279,-280,-260,-261,-262,-263,-305,-307,-43,-44,-31,-34,-169,-171,-176,-57,-189,-310,450,451,-188,-23,-24,-310,-155,-156,-136,-138,460,461,-287,-187,-188,-310,-220,464,465,-223,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,-253,-254,-255,-256,471,-274,-292,-275,-276,-277,-278,473,474,-39,-42,-32,-33,486,487,-191,-197,-195,491,-258,-272,-273,-264,-40,-41,-50,-51,-193,-192,-194,-196,512,-310,-237,-293,515,-289,-46,-49,-281,-310,524,-288,-47,-48,-282,527,-290,-291,]),'COLON':([15,20,23,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,74,75,76,81,98,99,102,103,108,110,127,131,142,144,145,148,163,165,178,179,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,213,228,229,247,251,253,254,257,258,262,264,269,270,271,326,327,328,330,331,332,334,335,350,351,352,353,372,373,376,377,379,388,392,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,439,440,443,444,463,470,471,474,480,481,500,510,515,521,],[-52,-116,-29,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-163,-54,-37,-53,-152,-153,-132,-133,-162,-55,-294,-30,-135,-309,263,-130,268,273,-219,-222,-257,-236,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-38,-35,-36,-154,-137,-139,-134,-128,-129,380,-131,383,-235,-257,-279,-280,-260,-261,-262,-263,-305,-307,-43,-44,-31,-34,-155,-156,-136,-138,263,-287,-220,-223,469,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,-253,-254,-255,-256,-274,-275,-276,-277,-278,-39,-42,-32,-33,-258,-272,-273,-264,-40,-41,-237,-281,-288,-282,]),'LBRACKET':([15,20,21,23,25,26,27,28,29,30,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,63,64,65,66,75,76,81,87,94,95,96,97,98,99,101,102,103,110,126,127,131,132,133,142,144,148,163,182,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,213,216,228,229,235,236,239,241,242,247,251,253,254,257,258,264,278,326,327,334,335,342,343,350,351,352,353,359,360,365,372,373,376,377,388,390,391,423,425,426,427,428,433,436,438,439,440,443,444,450,451,453,462,470,471,479,480,481,486,487,488,489,490,491,502,503,505,506,510,511,515,518,519,521,525,529,],[79,-116,-93,-29,-97,-310,-113,-114,-115,-221,-101,-102,-103,-104,-105,-106,-107,-108,-109,-110,-111,-112,-117,-118,-119,-95,-96,-98,-99,-100,-89,-90,-91,-92,114,-37,79,-94,-164,-27,-28,-166,-152,-153,-308,-132,-133,114,240,-294,-30,-165,-167,-135,-309,-130,-294,322,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-38,344,-35,-36,240,361,240,-45,370,-154,-137,-139,-134,-128,-129,-131,240,-279,-280,-305,-307,344,-183,-43,-44,-31,-34,361,370,240,-155,-156,-136,-138,-287,240,240,-274,-275,-276,-277,-278,344,-184,-186,-39,-42,-32,-33,-191,-197,-195,344,-272,-273,-185,-40,-41,-50,-51,-193,-192,-194,-196,517,-289,-46,-49,-281,344,-288,-47,-48,-282,-290,-291,]),'RBRACKET':([45,46,47,79,95,96,97,114,116,118,127,133,144,178,179,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,217,219,222,223,224,225,240,270,271,326,327,328,330,331,332,334,335,346,347,354,355,361,368,369,370,388,392,401,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,423,425,426,427,428,437,441,442,445,447,452,454,455,463,470,471,474,482,483,500,507,508,510,515,521,526,],[-117,-118,-119,-310,-27,-28,-166,-310,-310,-28,-294,-167,-309,-219,-222,-257,-236,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-310,-28,352,353,-3,-4,-310,-235,-257,-279,-280,-260,-261,-262,-263,-305,-307,439,440,443,444,-310,-310,453,-310,-287,-220,-223,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,-253,-254,-255,-256,470,-274,-275,-276,-277,-278,479,480,481,-310,-28,488,489,490,-258,-272,-273,-264,505,506,-237,518,519,-281,-288,-282,529,]),'PERIOD':([101,127,144,163,182,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,216,326,327,334,335,342,343,388,423,425,426,427,428,433,436,438,462,470,471,479,502,503,510,511,515,521,525,529,],[-308,-294,-309,-294,324,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,345,-279,-280,-305,-307,345,-183,-287,-274,-275,-276,-277,-278,345,-184,-186,345,-272,-273,-185,516,-289,-281,345,-288,-282,-290,-291,]),'ARROW':([127,144,163,182,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,326,327,334,335,388,423,425,426,427,428,470,471,510,515,521,],[-294,-309,-294,325,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-279,-280,-305,-307,-287,-274,-275,-276,-277,-278,-272,-273,-281,-288,-282,]),'XOREQUAL':([127,144,163,180,182,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,293,-259,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'TIMESEQUAL':([127,144,163,180,182,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,294,-259,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'DIVEQUAL':([127,144,163,180,182,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,295,-259,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'MODEQUAL':([127,144,163,180,182,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,296,-259,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'PLUSEQUAL':([127,144,163,180,182,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,297,-259,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'MINUSEQUAL':([127,144,163,180,182,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,298,-259,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'LSHIFTEQUAL':([127,144,163,180,182,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,299,-259,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'RSHIFTEQUAL':([127,144,163,180,182,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,300,-259,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'ANDEQUAL':([127,144,163,180,182,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,301,-259,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'OREQUAL':([127,144,163,180,182,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,302,-259,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'CONDOP':([127,144,163,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,-257,303,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,-253,-254,-255,-256,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'DIVIDE':([127,144,163,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,-257,305,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-239,-240,-241,305,305,305,305,305,305,305,305,305,305,305,305,305,305,305,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'MOD':([127,144,163,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,-257,306,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-239,-240,-241,306,306,306,306,306,306,306,306,306,306,306,306,306,306,306,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'RSHIFT':([127,144,163,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,-257,309,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-239,-240,-241,-242,-243,-244,-245,309,309,309,309,309,309,309,309,309,309,309,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'LSHIFT':([127,144,163,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,-257,310,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-239,-240,-241,-242,-243,-244,-245,310,310,310,310,310,310,310,310,310,310,310,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'LT':([127,144,163,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,-257,311,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,311,311,311,311,311,311,311,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'LE':([127,144,163,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,-257,312,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,312,312,312,312,312,312,312,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'GE':([127,144,163,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,-257,313,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,313,313,313,313,313,313,313,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'GT':([127,144,163,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,-257,314,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,314,314,314,314,314,314,314,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'EQ':([127,144,163,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,-257,315,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,315,315,315,315,315,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'NE':([127,144,163,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,-257,316,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,316,316,316,316,316,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'OR':([127,144,163,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,-257,318,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,-253,-254,318,318,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'XOR':([127,144,163,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,-257,319,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,319,-254,319,319,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'LAND':([127,144,163,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,-257,320,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,-253,-254,-255,320,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'LOR':([127,144,163,180,181,182,186,192,195,196,197,198,200,201,202,203,204,205,206,207,208,209,210,271,326,327,328,330,331,332,334,335,388,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,423,425,426,427,428,463,470,471,474,510,515,521,],[-294,-309,-294,-257,321,-259,-238,-271,-283,-284,-285,-286,-295,-296,-297,-298,-299,-300,-301,-302,-303,-304,-306,-257,-279,-280,-260,-261,-262,-263,-305,-307,-287,-239,-240,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-252,-253,-254,-255,-256,-274,-275,-276,-277,-278,-258,-272,-273,-264,-281,-288,-282,]),'ELLIPSIS':([230,],[356,]),}
_lr_action = {}
for _k, _v in _lr_action_items.items():
for _x,_y in zip(_v[0],_v[1]):
if not _x in _lr_action: _lr_action[_x] = {}
_lr_action[_x][_k] = _y
del _lr_action_items
_lr_goto_items = {'translation_unit_or_empty':([0,],[1,]),'translation_unit':([0,],[2,]),'empty':([0,10,11,17,18,19,22,26,60,61,62,79,80,106,114,115,116,117,126,145,152,172,216,217,218,239,240,268,273,278,283,285,361,362,368,370,371,383,391,398,433,445,446,461,462,464,465,467,499,509,511,513,524,527,],[3,57,69,83,83,83,89,95,69,89,57,95,122,151,95,122,224,95,237,259,267,267,339,224,95,366,95,267,267,237,267,267,95,122,224,224,366,267,366,267,478,224,95,267,478,267,267,267,267,267,478,267,267,267,]),'external_declaration':([0,2,],[4,55,]),'function_definition':([0,2,],[5,5,]),'declaration':([0,2,10,58,62,106,152,285,],[6,6,59,107,59,154,154,398,]),'pp_directive':([0,2,],[7,7,]),'pppragma_directive':([0,2,104,106,139,140,141,152,172,250,252,268,273,283,383,461,464,465,509,524,527,],[8,8,147,162,147,147,147,162,283,147,147,283,283,162,283,283,283,283,283,283,283,]),'id_declarator':([0,2,11,22,24,60,61,71,111,126,129,145,239,379,],[10,10,62,92,93,108,92,93,108,232,108,108,93,108,]),'declaration_specifiers':([0,2,10,58,62,80,106,115,152,230,239,285,362,371,391,],[11,11,60,60,60,126,60,126,60,126,126,60,126,126,126,]),'decl_body':([0,2,10,58,62,106,152,285,],[12,12,12,12,12,12,12,12,]),'direct_id_declarator':([0,2,11,16,22,24,60,61,68,71,111,126,129,145,235,239,365,379,],[15,15,15,81,15,15,15,15,81,15,15,15,15,15,81,15,81,15,]),'pointer':([0,2,11,22,24,60,61,71,94,111,126,129,145,239,278,379,391,],[16,16,68,16,16,68,16,68,132,68,235,68,68,365,390,68,390,]),'type_qualifier':([0,2,10,11,17,18,19,26,58,60,62,79,80,96,104,106,114,115,117,118,126,139,140,141,145,149,152,168,218,219,230,239,240,250,252,272,278,285,329,333,336,361,362,371,391,446,447,],[17,17,17,63,17,17,17,97,17,63,17,97,17,133,97,17,97,17,97,133,63,97,97,97,258,133,17,97,97,133,17,17,97,97,97,97,258,17,97,97,97,97,17,17,17,97,133,]),'storage_class_specifier':([0,2,10,11,17,18,19,58,60,62,80,106,115,126,152,230,239,285,362,371,391,],[18,18,18,64,18,18,18,18,64,18,18,18,18,64,18,18,18,18,18,18,18,]),'function_specifier':([0,2,10,11,17,18,19,58,60,62,80,106,115,126,152,230,239,285,362,371,391,],[19,19,19,65,19,19,19,19,65,19,19,19,19,65,19,19,19,19,19,19,19,]),'type_specifier_no_typeid':([0,2,10,11,22,58,60,61,62,80,104,106,115,126,128,139,140,141,145,149,152,168,230,239,250,252,272,278,285,329,333,336,362,371,391,],[20,20,20,66,20,20,66,20,20,20,20,20,20,66,20,20,20,20,257,20,20,20,20,20,20,20,20,257,20,20,20,20,20,20,20,]),'type_specifier':([0,2,10,22,58,61,62,80,104,106,115,128,139,140,141,149,152,168,230,239,250,252,272,285,329,333,336,362,371,391,],[21,21,21,87,21,87,21,21,148,21,21,87,148,148,148,264,21,148,21,21,148,148,148,21,148,148,148,21,21,21,]),'declaration_specifiers_no_type':([0,2,10,17,18,19,58,62,80,106,115,152,230,239,285,362,371,391,],[22,22,61,84,84,84,61,61,128,61,128,61,128,128,61,128,128,128,]),'typedef_name':([0,2,10,22,58,61,62,80,104,106,115,128,139,140,141,149,152,168,230,239,250,252,272,285,329,333,336,362,371,391,],[27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,]),'enum_specifier':([0,2,10,22,58,61,62,80,104,106,115,128,139,140,141,149,152,168,230,239,250,252,272,285,329,333,336,362,371,391,],[28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,]),'struct_or_union_specifier':([0,2,10,22,58,61,62,80,104,106,115,128,139,140,141,149,152,168,230,239,250,252,272,285,329,333,336,362,371,391,],[29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,]),'struct_or_union':([0,2,10,22,58,61,62,80,104,106,115,128,139,140,141,149,152,168,230,239,250,252,272,285,329,333,336,362,371,391,],[32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,]),'declaration_list_opt':([10,62,],[56,109,]),'declaration_list':([10,62,],[58,58,]),'init_declarator_list_opt':([11,60,],[67,67,]),'init_declarator_list':([11,60,],[70,70,]),'init_declarator':([11,60,111,129,],[72,72,212,243,]),'declarator':([11,60,111,129,145,379,],[73,73,73,73,262,262,]),'typeid_declarator':([11,60,71,111,129,145,379,],[74,74,112,74,74,74,74,]),'direct_typeid_declarator':([11,60,68,71,111,129,145,379,],[75,75,110,75,75,75,75,75,]),'declaration_specifiers_no_type_opt':([17,18,19,],[82,85,86,]),'id_init_declarator_list_opt':([22,61,],[88,88,]),'id_init_declarator_list':([22,61,],[90,90,]),'id_init_declarator':([22,61,],[91,91,]),'type_qualifier_list_opt':([26,79,114,117,218,240,361,446,],[94,116,217,226,348,368,445,484,]),'type_qualifier_list':([26,79,104,114,117,139,140,141,168,218,240,250,252,272,329,333,336,361,446,],[96,118,149,219,96,149,149,149,149,96,96,149,149,149,149,149,149,447,96,]),'brace_open':([31,32,56,98,99,102,103,106,109,113,130,152,172,268,273,283,340,383,387,460,461,464,465,473,474,477,509,524,527,],[100,104,106,134,135,139,140,106,106,216,216,106,106,106,106,106,216,106,462,462,106,106,106,462,462,216,106,106,106,]),'compound_statement':([56,106,109,152,172,268,273,283,383,461,464,465,509,524,527,],[105,158,211,158,158,158,158,158,158,158,158,158,158,158,158,]),'parameter_type_list':([80,115,239,362,371,391,],[119,220,367,448,367,367,]),'identifier_list_opt':([80,115,362,],[120,221,449,]),'parameter_list':([80,115,239,362,371,391,],[121,121,121,121,121,121,]),'identifier_list':([80,115,362,],[123,123,123,]),'parameter_declaration':([80,115,230,239,362,371,391,],[124,124,357,124,124,124,124,]),'identifier':([80,106,113,115,116,130,152,164,168,172,177,183,184,185,187,217,226,227,231,249,263,268,272,273,275,279,280,281,283,285,291,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,340,344,345,348,349,362,368,370,380,383,387,398,445,460,461,464,465,466,467,469,472,475,477,484,485,499,509,513,516,517,524,527,],[125,195,195,125,195,195,195,195,195,195,195,195,195,195,195,195,195,195,358,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,438,195,195,125,195,195,195,195,195,195,195,195,195,195,195,195,195,195,195,503,195,195,195,195,195,195,525,195,195,195,]),'enumerator_list':([100,134,135,],[136,245,246,]),'enumerator':([100,134,135,248,],[137,137,137,374,]),'struct_declaration_list':([104,139,140,],[141,250,252,]),'brace_close':([104,136,139,140,141,150,245,246,250,252,337,433,494,511,],[142,247,251,253,254,265,372,373,376,377,432,476,510,521,]),'struct_declaration':([104,139,140,141,250,252,],[143,143,143,255,255,255,]),'specifier_qualifier_list':([104,139,140,141,168,250,252,272,329,333,336,],[145,145,145,145,278,145,145,278,278,278,278,]),'block_item_list_opt':([106,],[150,]),'block_item_list':([106,],[152,]),'block_item':([106,152,],[153,266,]),'statement':([106,152,172,268,273,283,383,461,464,465,509,524,527,],[155,155,284,284,284,396,284,493,284,284,284,284,284,]),'labeled_statement':([106,152,172,268,273,283,383,461,464,465,509,524,527,],[156,156,156,156,156,156,156,156,156,156,156,156,156,]),'expression_statement':([106,152,172,268,273,283,383,461,464,465,509,524,527,],[157,157,157,157,157,157,157,157,157,157,157,157,157,]),'selection_statement':([106,152,172,268,273,283,383,461,464,465,509,524,527,],[159,159,159,159,159,159,159,159,159,159,159,159,159,]),'iteration_statement':([106,152,172,268,273,283,383,461,464,465,509,524,527,],[160,160,160,160,160,160,160,160,160,160,160,160,160,]),'jump_statement':([106,152,172,268,273,283,383,461,464,465,509,524,527,],[161,161,161,161,161,161,161,161,161,161,161,161,161,]),'expression_opt':([106,152,172,268,273,283,285,383,398,461,464,465,467,499,509,513,524,527,],[166,166,166,166,166,166,397,166,468,166,166,166,498,514,166,523,166,166,]),'expression':([106,152,168,172,177,268,272,273,275,280,281,283,285,303,322,329,333,383,398,461,464,465,466,467,499,509,513,517,524,527,],[169,169,277,169,289,169,277,169,386,393,394,169,169,402,421,277,277,169,169,169,169,169,497,169,169,169,169,526,169,169,]),'assignment_expression':([106,113,116,130,152,168,172,177,217,226,227,268,272,273,275,279,280,281,283,285,291,303,322,323,329,333,340,348,349,368,370,383,398,445,461,464,465,466,467,472,477,484,485,499,509,513,517,524,527,],[178,215,225,215,178,178,178,178,225,354,355,178,178,178,178,392,178,178,178,178,401,178,178,424,178,178,215,441,442,225,225,178,178,225,178,178,178,178,178,501,215,507,508,178,178,178,178,178,178,]),'conditional_expression':([106,113,116,130,152,164,168,172,177,217,226,227,249,263,268,272,273,275,279,280,281,283,285,291,303,322,323,329,333,340,344,348,349,368,370,380,383,398,445,461,464,465,466,467,469,472,477,484,485,499,509,513,517,524,527,],[179,179,179,179,179,270,179,179,179,179,179,179,270,270,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,179,270,179,179,179,179,270,179,179,179,179,179,179,179,179,500,179,179,179,179,179,179,179,179,179,179,]),'unary_expression':([106,113,116,130,152,164,168,172,177,183,184,185,187,217,226,227,249,263,268,272,273,275,279,280,281,283,285,291,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,340,344,348,349,368,370,380,383,387,398,445,460,461,464,465,466,467,469,472,477,484,485,499,509,513,517,524,527,],[180,180,180,180,180,271,180,180,180,328,330,271,332,180,180,180,271,271,180,180,180,180,180,180,180,180,180,180,180,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,271,180,180,180,180,180,271,180,180,180,180,271,180,271,180,180,271,180,180,180,180,180,271,180,180,180,180,180,180,180,180,180,180,]),'binary_expression':([106,113,116,130,152,164,168,172,177,217,226,227,249,263,268,272,273,275,279,280,281,283,285,291,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,340,344,348,349,368,370,380,383,398,445,461,464,465,466,467,469,472,477,484,485,499,509,513,517,524,527,],[181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,181,]),'postfix_expression':([106,113,116,130,152,164,168,172,177,183,184,185,187,217,226,227,249,263,268,272,273,275,279,280,281,283,285,291,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,340,344,348,349,368,370,380,383,387,398,445,460,461,464,465,466,467,469,472,477,484,485,499,509,513,517,524,527,],[182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,182,]),'unary_operator':([106,113,116,130,152,164,168,172,177,183,184,185,187,217,226,227,249,263,268,272,273,275,279,280,281,283,285,291,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,340,344,348,349,368,370,380,383,387,398,445,460,461,464,465,466,467,469,472,477,484,485,499,509,513,517,524,527,],[185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,185,]),'cast_expression':([106,113,116,130,152,164,168,172,177,185,217,226,227,249,263,268,272,273,275,279,280,281,283,285,291,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,340,344,348,349,368,370,380,383,387,398,445,460,461,464,465,466,467,469,472,477,484,485,499,509,513,517,524,527,],[186,186,186,186,186,186,186,186,186,331,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,463,186,186,463,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,186,]),'primary_expression':([106,113,116,130,152,164,168,172,177,183,184,185,187,217,226,227,249,263,268,272,273,275,279,280,281,283,285,291,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,340,344,348,349,368,370,380,383,387,398,445,460,461,464,465,466,467,469,472,477,484,485,499,509,513,517,524,527,],[192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,192,]),'constant':([106,113,116,130,152,164,168,172,177,183,184,185,187,217,226,227,249,263,268,272,273,275,279,280,281,283,285,291,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,340,344,348,349,368,370,380,383,387,398,445,460,461,464,465,466,467,469,472,477,484,485,499,509,513,517,524,527,],[196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,196,]),'unified_string_literal':([106,113,116,130,152,164,168,172,177,183,184,185,187,217,226,227,249,263,268,272,273,275,279,280,281,283,285,291,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,340,344,348,349,368,370,380,383,387,398,445,460,461,464,465,466,467,469,472,477,484,485,499,509,513,517,524,527,],[197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,197,]),'unified_wstring_literal':([106,113,116,130,152,164,168,172,177,183,184,185,187,217,226,227,249,263,268,272,273,275,279,280,281,283,285,291,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,329,333,340,344,348,349,368,370,380,383,387,398,445,460,461,464,465,466,467,469,472,477,484,485,499,509,513,517,524,527,],[198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,198,]),'initializer':([113,130,340,477,],[214,244,434,504,]),'assignment_expression_opt':([116,217,368,370,445,],[222,346,452,454,482,]),'typeid_noparen_declarator':([126,],[233,]),'abstract_declarator_opt':([126,278,],[234,389,]),'direct_typeid_noparen_declarator':([126,235,],[236,359,]),'abstract_declarator':([126,239,278,391,],[238,363,238,363,]),'direct_abstract_declarator':([126,235,239,278,365,390,391,],[242,360,242,242,360,360,242,]),'struct_declarator_list_opt':([145,],[256,]),'struct_declarator_list':([145,],[260,]),'struct_declarator':([145,379,],[261,457,]),'constant_expression':([164,249,263,344,380,],[269,375,381,437,458,]),'type_name':([168,272,329,333,336,],[276,384,429,430,431,]),'pragmacomp_or_statement':([172,268,273,383,461,464,465,509,524,527,],[282,382,385,459,492,495,496,520,528,530,]),'assignment_operator':([180,],[291,]),'initializer_list_opt':([216,],[337,]),'initializer_list':([216,462,],[338,494,]),'designation_opt':([216,433,462,511,],[340,477,340,477,]),'designation':([216,433,462,511,],[341,341,341,341,]),'designator_list':([216,433,462,511,],[342,342,342,342,]),'designator':([216,342,433,462,511,],[343,436,343,343,343,]),'parameter_type_list_opt':([239,371,391,],[364,456,364,]),'argument_expression_list':([323,],[422,]),'offsetof_member_designator':([475,],[502,]),}
_lr_goto = {}
for _k, _v in _lr_goto_items.items():
for _x, _y in zip(_v[0], _v[1]):
if not _x in _lr_goto: _lr_goto[_x] = {}
_lr_goto[_x][_k] = _y
del _lr_goto_items
_lr_productions = [
("S' -> translation_unit_or_empty","S'",1,None,None,None),
('abstract_declarator_opt -> empty','abstract_declarator_opt',1,'p_abstract_declarator_opt','plyparser.py',43),
('abstract_declarator_opt -> abstract_declarator','abstract_declarator_opt',1,'p_abstract_declarator_opt','plyparser.py',44),
('assignment_expression_opt -> empty','assignment_expression_opt',1,'p_assignment_expression_opt','plyparser.py',43),
('assignment_expression_opt -> assignment_expression','assignment_expression_opt',1,'p_assignment_expression_opt','plyparser.py',44),
('block_item_list_opt -> empty','block_item_list_opt',1,'p_block_item_list_opt','plyparser.py',43),
('block_item_list_opt -> block_item_list','block_item_list_opt',1,'p_block_item_list_opt','plyparser.py',44),
('declaration_list_opt -> empty','declaration_list_opt',1,'p_declaration_list_opt','plyparser.py',43),
('declaration_list_opt -> declaration_list','declaration_list_opt',1,'p_declaration_list_opt','plyparser.py',44),
('declaration_specifiers_no_type_opt -> empty','declaration_specifiers_no_type_opt',1,'p_declaration_specifiers_no_type_opt','plyparser.py',43),
('declaration_specifiers_no_type_opt -> declaration_specifiers_no_type','declaration_specifiers_no_type_opt',1,'p_declaration_specifiers_no_type_opt','plyparser.py',44),
('designation_opt -> empty','designation_opt',1,'p_designation_opt','plyparser.py',43),
('designation_opt -> designation','designation_opt',1,'p_designation_opt','plyparser.py',44),
('expression_opt -> empty','expression_opt',1,'p_expression_opt','plyparser.py',43),
('expression_opt -> expression','expression_opt',1,'p_expression_opt','plyparser.py',44),
('id_init_declarator_list_opt -> empty','id_init_declarator_list_opt',1,'p_id_init_declarator_list_opt','plyparser.py',43),
('id_init_declarator_list_opt -> id_init_declarator_list','id_init_declarator_list_opt',1,'p_id_init_declarator_list_opt','plyparser.py',44),
('identifier_list_opt -> empty','identifier_list_opt',1,'p_identifier_list_opt','plyparser.py',43),
('identifier_list_opt -> identifier_list','identifier_list_opt',1,'p_identifier_list_opt','plyparser.py',44),
('init_declarator_list_opt -> empty','init_declarator_list_opt',1,'p_init_declarator_list_opt','plyparser.py',43),
('init_declarator_list_opt -> init_declarator_list','init_declarator_list_opt',1,'p_init_declarator_list_opt','plyparser.py',44),
('initializer_list_opt -> empty','initializer_list_opt',1,'p_initializer_list_opt','plyparser.py',43),
('initializer_list_opt -> initializer_list','initializer_list_opt',1,'p_initializer_list_opt','plyparser.py',44),
('parameter_type_list_opt -> empty','parameter_type_list_opt',1,'p_parameter_type_list_opt','plyparser.py',43),
('parameter_type_list_opt -> parameter_type_list','parameter_type_list_opt',1,'p_parameter_type_list_opt','plyparser.py',44),
('struct_declarator_list_opt -> empty','struct_declarator_list_opt',1,'p_struct_declarator_list_opt','plyparser.py',43),
('struct_declarator_list_opt -> struct_declarator_list','struct_declarator_list_opt',1,'p_struct_declarator_list_opt','plyparser.py',44),
('type_qualifier_list_opt -> empty','type_qualifier_list_opt',1,'p_type_qualifier_list_opt','plyparser.py',43),
('type_qualifier_list_opt -> type_qualifier_list','type_qualifier_list_opt',1,'p_type_qualifier_list_opt','plyparser.py',44),
('direct_id_declarator -> ID','direct_id_declarator',1,'p_direct_id_declarator_1','plyparser.py',126),
('direct_id_declarator -> LPAREN id_declarator RPAREN','direct_id_declarator',3,'p_direct_id_declarator_2','plyparser.py',126),
('direct_id_declarator -> direct_id_declarator LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET','direct_id_declarator',5,'p_direct_id_declarator_3','plyparser.py',126),
('direct_id_declarator -> direct_id_declarator LBRACKET STATIC type_qualifier_list_opt assignment_expression RBRACKET','direct_id_declarator',6,'p_direct_id_declarator_4','plyparser.py',126),
('direct_id_declarator -> direct_id_declarator LBRACKET type_qualifier_list STATIC assignment_expression RBRACKET','direct_id_declarator',6,'p_direct_id_declarator_4','plyparser.py',127),
('direct_id_declarator -> direct_id_declarator LBRACKET type_qualifier_list_opt TIMES RBRACKET','direct_id_declarator',5,'p_direct_id_declarator_5','plyparser.py',126),
('direct_id_declarator -> direct_id_declarator LPAREN parameter_type_list RPAREN','direct_id_declarator',4,'p_direct_id_declarator_6','plyparser.py',126),
('direct_id_declarator -> direct_id_declarator LPAREN identifier_list_opt RPAREN','direct_id_declarator',4,'p_direct_id_declarator_6','plyparser.py',127),
('direct_typeid_declarator -> TYPEID','direct_typeid_declarator',1,'p_direct_typeid_declarator_1','plyparser.py',126),
('direct_typeid_declarator -> LPAREN typeid_declarator RPAREN','direct_typeid_declarator',3,'p_direct_typeid_declarator_2','plyparser.py',126),
('direct_typeid_declarator -> direct_typeid_declarator LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET','direct_typeid_declarator',5,'p_direct_typeid_declarator_3','plyparser.py',126),
('direct_typeid_declarator -> direct_typeid_declarator LBRACKET STATIC type_qualifier_list_opt assignment_expression RBRACKET','direct_typeid_declarator',6,'p_direct_typeid_declarator_4','plyparser.py',126),
('direct_typeid_declarator -> direct_typeid_declarator LBRACKET type_qualifier_list STATIC assignment_expression RBRACKET','direct_typeid_declarator',6,'p_direct_typeid_declarator_4','plyparser.py',127),
('direct_typeid_declarator -> direct_typeid_declarator LBRACKET type_qualifier_list_opt TIMES RBRACKET','direct_typeid_declarator',5,'p_direct_typeid_declarator_5','plyparser.py',126),
('direct_typeid_declarator -> direct_typeid_declarator LPAREN parameter_type_list RPAREN','direct_typeid_declarator',4,'p_direct_typeid_declarator_6','plyparser.py',126),
('direct_typeid_declarator -> direct_typeid_declarator LPAREN identifier_list_opt RPAREN','direct_typeid_declarator',4,'p_direct_typeid_declarator_6','plyparser.py',127),
('direct_typeid_noparen_declarator -> TYPEID','direct_typeid_noparen_declarator',1,'p_direct_typeid_noparen_declarator_1','plyparser.py',126),
('direct_typeid_noparen_declarator -> direct_typeid_noparen_declarator LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET','direct_typeid_noparen_declarator',5,'p_direct_typeid_noparen_declarator_3','plyparser.py',126),
('direct_typeid_noparen_declarator -> direct_typeid_noparen_declarator LBRACKET STATIC type_qualifier_list_opt assignment_expression RBRACKET','direct_typeid_noparen_declarator',6,'p_direct_typeid_noparen_declarator_4','plyparser.py',126),
('direct_typeid_noparen_declarator -> direct_typeid_noparen_declarator LBRACKET type_qualifier_list STATIC assignment_expression RBRACKET','direct_typeid_noparen_declarator',6,'p_direct_typeid_noparen_declarator_4','plyparser.py',127),
('direct_typeid_noparen_declarator -> direct_typeid_noparen_declarator LBRACKET type_qualifier_list_opt TIMES RBRACKET','direct_typeid_noparen_declarator',5,'p_direct_typeid_noparen_declarator_5','plyparser.py',126),
('direct_typeid_noparen_declarator -> direct_typeid_noparen_declarator LPAREN parameter_type_list RPAREN','direct_typeid_noparen_declarator',4,'p_direct_typeid_noparen_declarator_6','plyparser.py',126),
('direct_typeid_noparen_declarator -> direct_typeid_noparen_declarator LPAREN identifier_list_opt RPAREN','direct_typeid_noparen_declarator',4,'p_direct_typeid_noparen_declarator_6','plyparser.py',127),
('id_declarator -> direct_id_declarator','id_declarator',1,'p_id_declarator_1','plyparser.py',126),
('id_declarator -> pointer direct_id_declarator','id_declarator',2,'p_id_declarator_2','plyparser.py',126),
('typeid_declarator -> direct_typeid_declarator','typeid_declarator',1,'p_typeid_declarator_1','plyparser.py',126),
('typeid_declarator -> pointer direct_typeid_declarator','typeid_declarator',2,'p_typeid_declarator_2','plyparser.py',126),
('typeid_noparen_declarator -> direct_typeid_noparen_declarator','typeid_noparen_declarator',1,'p_typeid_noparen_declarator_1','plyparser.py',126),
('typeid_noparen_declarator -> pointer direct_typeid_noparen_declarator','typeid_noparen_declarator',2,'p_typeid_noparen_declarator_2','plyparser.py',126),
('translation_unit_or_empty -> translation_unit','translation_unit_or_empty',1,'p_translation_unit_or_empty','c_parser.py',517),
('translation_unit_or_empty -> empty','translation_unit_or_empty',1,'p_translation_unit_or_empty','c_parser.py',518),
('translation_unit -> external_declaration','translation_unit',1,'p_translation_unit_1','c_parser.py',526),
('translation_unit -> translation_unit external_declaration','translation_unit',2,'p_translation_unit_2','c_parser.py',533),
('external_declaration -> function_definition','external_declaration',1,'p_external_declaration_1','c_parser.py',544),
('external_declaration -> declaration','external_declaration',1,'p_external_declaration_2','c_parser.py',549),
('external_declaration -> pp_directive','external_declaration',1,'p_external_declaration_3','c_parser.py',554),
('external_declaration -> pppragma_directive','external_declaration',1,'p_external_declaration_3','c_parser.py',555),
('external_declaration -> SEMI','external_declaration',1,'p_external_declaration_4','c_parser.py',560),
('pp_directive -> PPHASH','pp_directive',1,'p_pp_directive','c_parser.py',565),
('pppragma_directive -> PPPRAGMA','pppragma_directive',1,'p_pppragma_directive','c_parser.py',571),
('pppragma_directive -> PPPRAGMA PPPRAGMASTR','pppragma_directive',2,'p_pppragma_directive','c_parser.py',572),
('function_definition -> id_declarator declaration_list_opt compound_statement','function_definition',3,'p_function_definition_1','c_parser.py',583),
('function_definition -> declaration_specifiers id_declarator declaration_list_opt compound_statement','function_definition',4,'p_function_definition_2','c_parser.py',600),
('statement -> labeled_statement','statement',1,'p_statement','c_parser.py',611),
('statement -> expression_statement','statement',1,'p_statement','c_parser.py',612),
('statement -> compound_statement','statement',1,'p_statement','c_parser.py',613),
('statement -> selection_statement','statement',1,'p_statement','c_parser.py',614),
('statement -> iteration_statement','statement',1,'p_statement','c_parser.py',615),
('statement -> jump_statement','statement',1,'p_statement','c_parser.py',616),
('statement -> pppragma_directive','statement',1,'p_statement','c_parser.py',617),
('pragmacomp_or_statement -> pppragma_directive statement','pragmacomp_or_statement',2,'p_pragmacomp_or_statement','c_parser.py',664),
('pragmacomp_or_statement -> statement','pragmacomp_or_statement',1,'p_pragmacomp_or_statement','c_parser.py',665),
('decl_body -> declaration_specifiers init_declarator_list_opt','decl_body',2,'p_decl_body','c_parser.py',684),
('decl_body -> declaration_specifiers_no_type id_init_declarator_list_opt','decl_body',2,'p_decl_body','c_parser.py',685),
('declaration -> decl_body SEMI','declaration',2,'p_declaration','c_parser.py',744),
('declaration_list -> declaration','declaration_list',1,'p_declaration_list','c_parser.py',753),
('declaration_list -> declaration_list declaration','declaration_list',2,'p_declaration_list','c_parser.py',754),
('declaration_specifiers_no_type -> type_qualifier declaration_specifiers_no_type_opt','declaration_specifiers_no_type',2,'p_declaration_specifiers_no_type_1','c_parser.py',764),
('declaration_specifiers_no_type -> storage_class_specifier declaration_specifiers_no_type_opt','declaration_specifiers_no_type',2,'p_declaration_specifiers_no_type_2','c_parser.py',769),
('declaration_specifiers_no_type -> function_specifier declaration_specifiers_no_type_opt','declaration_specifiers_no_type',2,'p_declaration_specifiers_no_type_3','c_parser.py',774),
('declaration_specifiers -> declaration_specifiers type_qualifier','declaration_specifiers',2,'p_declaration_specifiers_1','c_parser.py',780),
('declaration_specifiers -> declaration_specifiers storage_class_specifier','declaration_specifiers',2,'p_declaration_specifiers_2','c_parser.py',785),
('declaration_specifiers -> declaration_specifiers function_specifier','declaration_specifiers',2,'p_declaration_specifiers_3','c_parser.py',790),
('declaration_specifiers -> declaration_specifiers type_specifier_no_typeid','declaration_specifiers',2,'p_declaration_specifiers_4','c_parser.py',795),
('declaration_specifiers -> type_specifier','declaration_specifiers',1,'p_declaration_specifiers_5','c_parser.py',800),
('declaration_specifiers -> declaration_specifiers_no_type type_specifier','declaration_specifiers',2,'p_declaration_specifiers_6','c_parser.py',805),
('storage_class_specifier -> AUTO','storage_class_specifier',1,'p_storage_class_specifier','c_parser.py',811),
('storage_class_specifier -> REGISTER','storage_class_specifier',1,'p_storage_class_specifier','c_parser.py',812),
('storage_class_specifier -> STATIC','storage_class_specifier',1,'p_storage_class_specifier','c_parser.py',813),
('storage_class_specifier -> EXTERN','storage_class_specifier',1,'p_storage_class_specifier','c_parser.py',814),
('storage_class_specifier -> TYPEDEF','storage_class_specifier',1,'p_storage_class_specifier','c_parser.py',815),
('function_specifier -> INLINE','function_specifier',1,'p_function_specifier','c_parser.py',820),
('type_specifier_no_typeid -> VOID','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',825),
('type_specifier_no_typeid -> _BOOL','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',826),
('type_specifier_no_typeid -> CHAR','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',827),
('type_specifier_no_typeid -> SHORT','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',828),
('type_specifier_no_typeid -> INT','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',829),
('type_specifier_no_typeid -> LONG','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',830),
('type_specifier_no_typeid -> FLOAT','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',831),
('type_specifier_no_typeid -> DOUBLE','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',832),
('type_specifier_no_typeid -> _COMPLEX','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',833),
('type_specifier_no_typeid -> SIGNED','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',834),
('type_specifier_no_typeid -> UNSIGNED','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',835),
('type_specifier_no_typeid -> __INT128','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',836),
('type_specifier -> typedef_name','type_specifier',1,'p_type_specifier','c_parser.py',841),
('type_specifier -> enum_specifier','type_specifier',1,'p_type_specifier','c_parser.py',842),
('type_specifier -> struct_or_union_specifier','type_specifier',1,'p_type_specifier','c_parser.py',843),
('type_specifier -> type_specifier_no_typeid','type_specifier',1,'p_type_specifier','c_parser.py',844),
('type_qualifier -> CONST','type_qualifier',1,'p_type_qualifier','c_parser.py',849),
('type_qualifier -> RESTRICT','type_qualifier',1,'p_type_qualifier','c_parser.py',850),
('type_qualifier -> VOLATILE','type_qualifier',1,'p_type_qualifier','c_parser.py',851),
('init_declarator_list -> init_declarator','init_declarator_list',1,'p_init_declarator_list','c_parser.py',856),
('init_declarator_list -> init_declarator_list COMMA init_declarator','init_declarator_list',3,'p_init_declarator_list','c_parser.py',857),
('init_declarator -> declarator','init_declarator',1,'p_init_declarator','c_parser.py',865),
('init_declarator -> declarator EQUALS initializer','init_declarator',3,'p_init_declarator','c_parser.py',866),
('id_init_declarator_list -> id_init_declarator','id_init_declarator_list',1,'p_id_init_declarator_list','c_parser.py',871),
('id_init_declarator_list -> id_init_declarator_list COMMA init_declarator','id_init_declarator_list',3,'p_id_init_declarator_list','c_parser.py',872),
('id_init_declarator -> id_declarator','id_init_declarator',1,'p_id_init_declarator','c_parser.py',877),
('id_init_declarator -> id_declarator EQUALS initializer','id_init_declarator',3,'p_id_init_declarator','c_parser.py',878),
('specifier_qualifier_list -> specifier_qualifier_list type_specifier_no_typeid','specifier_qualifier_list',2,'p_specifier_qualifier_list_1','c_parser.py',885),
('specifier_qualifier_list -> specifier_qualifier_list type_qualifier','specifier_qualifier_list',2,'p_specifier_qualifier_list_2','c_parser.py',890),
('specifier_qualifier_list -> type_specifier','specifier_qualifier_list',1,'p_specifier_qualifier_list_3','c_parser.py',895),
('specifier_qualifier_list -> type_qualifier_list type_specifier','specifier_qualifier_list',2,'p_specifier_qualifier_list_4','c_parser.py',900),
('struct_or_union_specifier -> struct_or_union ID','struct_or_union_specifier',2,'p_struct_or_union_specifier_1','c_parser.py',909),
('struct_or_union_specifier -> struct_or_union TYPEID','struct_or_union_specifier',2,'p_struct_or_union_specifier_1','c_parser.py',910),
('struct_or_union_specifier -> struct_or_union brace_open struct_declaration_list brace_close','struct_or_union_specifier',4,'p_struct_or_union_specifier_2','c_parser.py',920),
('struct_or_union_specifier -> struct_or_union brace_open brace_close','struct_or_union_specifier',3,'p_struct_or_union_specifier_2','c_parser.py',921),
('struct_or_union_specifier -> struct_or_union ID brace_open struct_declaration_list brace_close','struct_or_union_specifier',5,'p_struct_or_union_specifier_3','c_parser.py',938),
('struct_or_union_specifier -> struct_or_union ID brace_open brace_close','struct_or_union_specifier',4,'p_struct_or_union_specifier_3','c_parser.py',939),
('struct_or_union_specifier -> struct_or_union TYPEID brace_open struct_declaration_list brace_close','struct_or_union_specifier',5,'p_struct_or_union_specifier_3','c_parser.py',940),
('struct_or_union_specifier -> struct_or_union TYPEID brace_open brace_close','struct_or_union_specifier',4,'p_struct_or_union_specifier_3','c_parser.py',941),
('struct_or_union -> STRUCT','struct_or_union',1,'p_struct_or_union','c_parser.py',957),
('struct_or_union -> UNION','struct_or_union',1,'p_struct_or_union','c_parser.py',958),
('struct_declaration_list -> struct_declaration','struct_declaration_list',1,'p_struct_declaration_list','c_parser.py',965),
('struct_declaration_list -> struct_declaration_list struct_declaration','struct_declaration_list',2,'p_struct_declaration_list','c_parser.py',966),
('struct_declaration -> specifier_qualifier_list struct_declarator_list_opt SEMI','struct_declaration',3,'p_struct_declaration_1','c_parser.py',974),
('struct_declaration -> SEMI','struct_declaration',1,'p_struct_declaration_2','c_parser.py',1012),
('struct_declaration -> pppragma_directive','struct_declaration',1,'p_struct_declaration_3','c_parser.py',1017),
('struct_declarator_list -> struct_declarator','struct_declarator_list',1,'p_struct_declarator_list','c_parser.py',1022),
('struct_declarator_list -> struct_declarator_list COMMA struct_declarator','struct_declarator_list',3,'p_struct_declarator_list','c_parser.py',1023),
('struct_declarator -> declarator','struct_declarator',1,'p_struct_declarator_1','c_parser.py',1031),
('struct_declarator -> declarator COLON constant_expression','struct_declarator',3,'p_struct_declarator_2','c_parser.py',1036),
('struct_declarator -> COLON constant_expression','struct_declarator',2,'p_struct_declarator_2','c_parser.py',1037),
('enum_specifier -> ENUM ID','enum_specifier',2,'p_enum_specifier_1','c_parser.py',1045),
('enum_specifier -> ENUM TYPEID','enum_specifier',2,'p_enum_specifier_1','c_parser.py',1046),
('enum_specifier -> ENUM brace_open enumerator_list brace_close','enum_specifier',4,'p_enum_specifier_2','c_parser.py',1051),
('enum_specifier -> ENUM ID brace_open enumerator_list brace_close','enum_specifier',5,'p_enum_specifier_3','c_parser.py',1056),
('enum_specifier -> ENUM TYPEID brace_open enumerator_list brace_close','enum_specifier',5,'p_enum_specifier_3','c_parser.py',1057),
('enumerator_list -> enumerator','enumerator_list',1,'p_enumerator_list','c_parser.py',1062),
('enumerator_list -> enumerator_list COMMA','enumerator_list',2,'p_enumerator_list','c_parser.py',1063),
('enumerator_list -> enumerator_list COMMA enumerator','enumerator_list',3,'p_enumerator_list','c_parser.py',1064),
('enumerator -> ID','enumerator',1,'p_enumerator','c_parser.py',1075),
('enumerator -> ID EQUALS constant_expression','enumerator',3,'p_enumerator','c_parser.py',1076),
('declarator -> id_declarator','declarator',1,'p_declarator','c_parser.py',1091),
('declarator -> typeid_declarator','declarator',1,'p_declarator','c_parser.py',1092),
('pointer -> TIMES type_qualifier_list_opt','pointer',2,'p_pointer','c_parser.py',1203),
('pointer -> TIMES type_qualifier_list_opt pointer','pointer',3,'p_pointer','c_parser.py',1204),
('type_qualifier_list -> type_qualifier','type_qualifier_list',1,'p_type_qualifier_list','c_parser.py',1233),
('type_qualifier_list -> type_qualifier_list type_qualifier','type_qualifier_list',2,'p_type_qualifier_list','c_parser.py',1234),
('parameter_type_list -> parameter_list','parameter_type_list',1,'p_parameter_type_list','c_parser.py',1239),
('parameter_type_list -> parameter_list COMMA ELLIPSIS','parameter_type_list',3,'p_parameter_type_list','c_parser.py',1240),
('parameter_list -> parameter_declaration','parameter_list',1,'p_parameter_list','c_parser.py',1248),
('parameter_list -> parameter_list COMMA parameter_declaration','parameter_list',3,'p_parameter_list','c_parser.py',1249),
('parameter_declaration -> declaration_specifiers id_declarator','parameter_declaration',2,'p_parameter_declaration_1','c_parser.py',1268),
('parameter_declaration -> declaration_specifiers typeid_noparen_declarator','parameter_declaration',2,'p_parameter_declaration_1','c_parser.py',1269),
('parameter_declaration -> declaration_specifiers abstract_declarator_opt','parameter_declaration',2,'p_parameter_declaration_2','c_parser.py',1280),
('identifier_list -> identifier','identifier_list',1,'p_identifier_list','c_parser.py',1311),
('identifier_list -> identifier_list COMMA identifier','identifier_list',3,'p_identifier_list','c_parser.py',1312),
('initializer -> assignment_expression','initializer',1,'p_initializer_1','c_parser.py',1321),
('initializer -> brace_open initializer_list_opt brace_close','initializer',3,'p_initializer_2','c_parser.py',1326),
('initializer -> brace_open initializer_list COMMA brace_close','initializer',4,'p_initializer_2','c_parser.py',1327),
('initializer_list -> designation_opt initializer','initializer_list',2,'p_initializer_list','c_parser.py',1335),
('initializer_list -> initializer_list COMMA designation_opt initializer','initializer_list',4,'p_initializer_list','c_parser.py',1336),
('designation -> designator_list EQUALS','designation',2,'p_designation','c_parser.py',1347),
('designator_list -> designator','designator_list',1,'p_designator_list','c_parser.py',1355),
('designator_list -> designator_list designator','designator_list',2,'p_designator_list','c_parser.py',1356),
('designator -> LBRACKET constant_expression RBRACKET','designator',3,'p_designator','c_parser.py',1361),
('designator -> PERIOD identifier','designator',2,'p_designator','c_parser.py',1362),
('type_name -> specifier_qualifier_list abstract_declarator_opt','type_name',2,'p_type_name','c_parser.py',1367),
('abstract_declarator -> pointer','abstract_declarator',1,'p_abstract_declarator_1','c_parser.py',1378),
('abstract_declarator -> pointer direct_abstract_declarator','abstract_declarator',2,'p_abstract_declarator_2','c_parser.py',1386),
('abstract_declarator -> direct_abstract_declarator','abstract_declarator',1,'p_abstract_declarator_3','c_parser.py',1391),
('direct_abstract_declarator -> LPAREN abstract_declarator RPAREN','direct_abstract_declarator',3,'p_direct_abstract_declarator_1','c_parser.py',1401),
('direct_abstract_declarator -> direct_abstract_declarator LBRACKET assignment_expression_opt RBRACKET','direct_abstract_declarator',4,'p_direct_abstract_declarator_2','c_parser.py',1405),
('direct_abstract_declarator -> LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET','direct_abstract_declarator',4,'p_direct_abstract_declarator_3','c_parser.py',1416),
('direct_abstract_declarator -> direct_abstract_declarator LBRACKET TIMES RBRACKET','direct_abstract_declarator',4,'p_direct_abstract_declarator_4','c_parser.py',1426),
('direct_abstract_declarator -> LBRACKET TIMES RBRACKET','direct_abstract_declarator',3,'p_direct_abstract_declarator_5','c_parser.py',1437),
('direct_abstract_declarator -> direct_abstract_declarator LPAREN parameter_type_list_opt RPAREN','direct_abstract_declarator',4,'p_direct_abstract_declarator_6','c_parser.py',1446),
('direct_abstract_declarator -> LPAREN parameter_type_list_opt RPAREN','direct_abstract_declarator',3,'p_direct_abstract_declarator_7','c_parser.py',1456),
('block_item -> declaration','block_item',1,'p_block_item','c_parser.py',1467),
('block_item -> statement','block_item',1,'p_block_item','c_parser.py',1468),
('block_item_list -> block_item','block_item_list',1,'p_block_item_list','c_parser.py',1475),
('block_item_list -> block_item_list block_item','block_item_list',2,'p_block_item_list','c_parser.py',1476),
('compound_statement -> brace_open block_item_list_opt brace_close','compound_statement',3,'p_compound_statement_1','c_parser.py',1482),
('labeled_statement -> ID COLON pragmacomp_or_statement','labeled_statement',3,'p_labeled_statement_1','c_parser.py',1488),
('labeled_statement -> CASE constant_expression COLON pragmacomp_or_statement','labeled_statement',4,'p_labeled_statement_2','c_parser.py',1492),
('labeled_statement -> DEFAULT COLON pragmacomp_or_statement','labeled_statement',3,'p_labeled_statement_3','c_parser.py',1496),
('selection_statement -> IF LPAREN expression RPAREN pragmacomp_or_statement','selection_statement',5,'p_selection_statement_1','c_parser.py',1500),
('selection_statement -> IF LPAREN expression RPAREN statement ELSE pragmacomp_or_statement','selection_statement',7,'p_selection_statement_2','c_parser.py',1504),
('selection_statement -> SWITCH LPAREN expression RPAREN pragmacomp_or_statement','selection_statement',5,'p_selection_statement_3','c_parser.py',1508),
('iteration_statement -> WHILE LPAREN expression RPAREN pragmacomp_or_statement','iteration_statement',5,'p_iteration_statement_1','c_parser.py',1513),
('iteration_statement -> DO pragmacomp_or_statement WHILE LPAREN expression RPAREN SEMI','iteration_statement',7,'p_iteration_statement_2','c_parser.py',1517),
('iteration_statement -> FOR LPAREN expression_opt SEMI expression_opt SEMI expression_opt RPAREN pragmacomp_or_statement','iteration_statement',9,'p_iteration_statement_3','c_parser.py',1521),
('iteration_statement -> FOR LPAREN declaration expression_opt SEMI expression_opt RPAREN pragmacomp_or_statement','iteration_statement',8,'p_iteration_statement_4','c_parser.py',1525),
('jump_statement -> GOTO ID SEMI','jump_statement',3,'p_jump_statement_1','c_parser.py',1530),
('jump_statement -> BREAK SEMI','jump_statement',2,'p_jump_statement_2','c_parser.py',1534),
('jump_statement -> CONTINUE SEMI','jump_statement',2,'p_jump_statement_3','c_parser.py',1538),
('jump_statement -> RETURN expression SEMI','jump_statement',3,'p_jump_statement_4','c_parser.py',1542),
('jump_statement -> RETURN SEMI','jump_statement',2,'p_jump_statement_4','c_parser.py',1543),
('expression_statement -> expression_opt SEMI','expression_statement',2,'p_expression_statement','c_parser.py',1548),
('expression -> assignment_expression','expression',1,'p_expression','c_parser.py',1555),
('expression -> expression COMMA assignment_expression','expression',3,'p_expression','c_parser.py',1556),
('typedef_name -> TYPEID','typedef_name',1,'p_typedef_name','c_parser.py',1568),
('assignment_expression -> conditional_expression','assignment_expression',1,'p_assignment_expression','c_parser.py',1572),
('assignment_expression -> unary_expression assignment_operator assignment_expression','assignment_expression',3,'p_assignment_expression','c_parser.py',1573),
('assignment_operator -> EQUALS','assignment_operator',1,'p_assignment_operator','c_parser.py',1586),
('assignment_operator -> XOREQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1587),
('assignment_operator -> TIMESEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1588),
('assignment_operator -> DIVEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1589),
('assignment_operator -> MODEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1590),
('assignment_operator -> PLUSEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1591),
('assignment_operator -> MINUSEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1592),
('assignment_operator -> LSHIFTEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1593),
('assignment_operator -> RSHIFTEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1594),
('assignment_operator -> ANDEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1595),
('assignment_operator -> OREQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1596),
('constant_expression -> conditional_expression','constant_expression',1,'p_constant_expression','c_parser.py',1601),
('conditional_expression -> binary_expression','conditional_expression',1,'p_conditional_expression','c_parser.py',1605),
('conditional_expression -> binary_expression CONDOP expression COLON conditional_expression','conditional_expression',5,'p_conditional_expression','c_parser.py',1606),
('binary_expression -> cast_expression','binary_expression',1,'p_binary_expression','c_parser.py',1614),
('binary_expression -> binary_expression TIMES binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1615),
('binary_expression -> binary_expression DIVIDE binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1616),
('binary_expression -> binary_expression MOD binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1617),
('binary_expression -> binary_expression PLUS binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1618),
('binary_expression -> binary_expression MINUS binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1619),
('binary_expression -> binary_expression RSHIFT binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1620),
('binary_expression -> binary_expression LSHIFT binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1621),
('binary_expression -> binary_expression LT binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1622),
('binary_expression -> binary_expression LE binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1623),
('binary_expression -> binary_expression GE binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1624),
('binary_expression -> binary_expression GT binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1625),
('binary_expression -> binary_expression EQ binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1626),
('binary_expression -> binary_expression NE binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1627),
('binary_expression -> binary_expression AND binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1628),
('binary_expression -> binary_expression OR binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1629),
('binary_expression -> binary_expression XOR binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1630),
('binary_expression -> binary_expression LAND binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1631),
('binary_expression -> binary_expression LOR binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1632),
('cast_expression -> unary_expression','cast_expression',1,'p_cast_expression_1','c_parser.py',1640),
('cast_expression -> LPAREN type_name RPAREN cast_expression','cast_expression',4,'p_cast_expression_2','c_parser.py',1644),
('unary_expression -> postfix_expression','unary_expression',1,'p_unary_expression_1','c_parser.py',1648),
('unary_expression -> PLUSPLUS unary_expression','unary_expression',2,'p_unary_expression_2','c_parser.py',1652),
('unary_expression -> MINUSMINUS unary_expression','unary_expression',2,'p_unary_expression_2','c_parser.py',1653),
('unary_expression -> unary_operator cast_expression','unary_expression',2,'p_unary_expression_2','c_parser.py',1654),
('unary_expression -> SIZEOF unary_expression','unary_expression',2,'p_unary_expression_3','c_parser.py',1659),
('unary_expression -> SIZEOF LPAREN type_name RPAREN','unary_expression',4,'p_unary_expression_3','c_parser.py',1660),
('unary_operator -> AND','unary_operator',1,'p_unary_operator','c_parser.py',1668),
('unary_operator -> TIMES','unary_operator',1,'p_unary_operator','c_parser.py',1669),
('unary_operator -> PLUS','unary_operator',1,'p_unary_operator','c_parser.py',1670),
('unary_operator -> MINUS','unary_operator',1,'p_unary_operator','c_parser.py',1671),
('unary_operator -> NOT','unary_operator',1,'p_unary_operator','c_parser.py',1672),
('unary_operator -> LNOT','unary_operator',1,'p_unary_operator','c_parser.py',1673),
('postfix_expression -> primary_expression','postfix_expression',1,'p_postfix_expression_1','c_parser.py',1678),
('postfix_expression -> postfix_expression LBRACKET expression RBRACKET','postfix_expression',4,'p_postfix_expression_2','c_parser.py',1682),
('postfix_expression -> postfix_expression LPAREN argument_expression_list RPAREN','postfix_expression',4,'p_postfix_expression_3','c_parser.py',1686),
('postfix_expression -> postfix_expression LPAREN RPAREN','postfix_expression',3,'p_postfix_expression_3','c_parser.py',1687),
('postfix_expression -> postfix_expression PERIOD ID','postfix_expression',3,'p_postfix_expression_4','c_parser.py',1692),
('postfix_expression -> postfix_expression PERIOD TYPEID','postfix_expression',3,'p_postfix_expression_4','c_parser.py',1693),
('postfix_expression -> postfix_expression ARROW ID','postfix_expression',3,'p_postfix_expression_4','c_parser.py',1694),
('postfix_expression -> postfix_expression ARROW TYPEID','postfix_expression',3,'p_postfix_expression_4','c_parser.py',1695),
('postfix_expression -> postfix_expression PLUSPLUS','postfix_expression',2,'p_postfix_expression_5','c_parser.py',1701),
('postfix_expression -> postfix_expression MINUSMINUS','postfix_expression',2,'p_postfix_expression_5','c_parser.py',1702),
('postfix_expression -> LPAREN type_name RPAREN brace_open initializer_list brace_close','postfix_expression',6,'p_postfix_expression_6','c_parser.py',1707),
('postfix_expression -> LPAREN type_name RPAREN brace_open initializer_list COMMA brace_close','postfix_expression',7,'p_postfix_expression_6','c_parser.py',1708),
('primary_expression -> identifier','primary_expression',1,'p_primary_expression_1','c_parser.py',1713),
('primary_expression -> constant','primary_expression',1,'p_primary_expression_2','c_parser.py',1717),
('primary_expression -> unified_string_literal','primary_expression',1,'p_primary_expression_3','c_parser.py',1721),
('primary_expression -> unified_wstring_literal','primary_expression',1,'p_primary_expression_3','c_parser.py',1722),
('primary_expression -> LPAREN expression RPAREN','primary_expression',3,'p_primary_expression_4','c_parser.py',1727),
('primary_expression -> OFFSETOF LPAREN type_name COMMA offsetof_member_designator RPAREN','primary_expression',6,'p_primary_expression_5','c_parser.py',1731),
('offsetof_member_designator -> identifier','offsetof_member_designator',1,'p_offsetof_member_designator','c_parser.py',1739),
('offsetof_member_designator -> offsetof_member_designator PERIOD identifier','offsetof_member_designator',3,'p_offsetof_member_designator','c_parser.py',1740),
('offsetof_member_designator -> offsetof_member_designator LBRACKET expression RBRACKET','offsetof_member_designator',4,'p_offsetof_member_designator','c_parser.py',1741),
('argument_expression_list -> assignment_expression','argument_expression_list',1,'p_argument_expression_list','c_parser.py',1753),
('argument_expression_list -> argument_expression_list COMMA assignment_expression','argument_expression_list',3,'p_argument_expression_list','c_parser.py',1754),
('identifier -> ID','identifier',1,'p_identifier','c_parser.py',1763),
('constant -> INT_CONST_DEC','constant',1,'p_constant_1','c_parser.py',1767),
('constant -> INT_CONST_OCT','constant',1,'p_constant_1','c_parser.py',1768),
('constant -> INT_CONST_HEX','constant',1,'p_constant_1','c_parser.py',1769),
('constant -> INT_CONST_BIN','constant',1,'p_constant_1','c_parser.py',1770),
('constant -> INT_CONST_CHAR','constant',1,'p_constant_1','c_parser.py',1771),
('constant -> FLOAT_CONST','constant',1,'p_constant_2','c_parser.py',1790),
('constant -> HEX_FLOAT_CONST','constant',1,'p_constant_2','c_parser.py',1791),
('constant -> CHAR_CONST','constant',1,'p_constant_3','c_parser.py',1807),
('constant -> WCHAR_CONST','constant',1,'p_constant_3','c_parser.py',1808),
('unified_string_literal -> STRING_LITERAL','unified_string_literal',1,'p_unified_string_literal','c_parser.py',1819),
('unified_string_literal -> unified_string_literal STRING_LITERAL','unified_string_literal',2,'p_unified_string_literal','c_parser.py',1820),
('unified_wstring_literal -> WSTRING_LITERAL','unified_wstring_literal',1,'p_unified_wstring_literal','c_parser.py',1830),
('unified_wstring_literal -> unified_wstring_literal WSTRING_LITERAL','unified_wstring_literal',2,'p_unified_wstring_literal','c_parser.py',1831),
('brace_open -> LBRACE','brace_open',1,'p_brace_open','c_parser.py',1841),
('brace_close -> RBRACE','brace_close',1,'p_brace_close','c_parser.py',1847),
('empty -> <empty>','empty',0,'p_empty','c_parser.py',1853),
]
| _tabversion = '3.10'
_lr_method = 'LALR'
_lr_signature = 'translation_unit_or_emptyleftLORleftLANDleftORleftXORleftANDleftEQNEleftGTGELTLEleftRSHIFTLSHIFTleftPLUSMINUSleftTIMESDIVIDEMOD_BOOL _COMPLEX AUTO BREAK CASE CHAR CONST CONTINUE DEFAULT DO DOUBLE ELSE ENUM EXTERN FLOAT FOR GOTO IF INLINE INT LONG REGISTER OFFSETOF RESTRICT RETURN SHORT SIGNED SIZEOF STATIC STRUCT SWITCH TYPEDEF UNION UNSIGNED VOID VOLATILE WHILE __INT128 ID TYPEID INT_CONST_DEC INT_CONST_OCT INT_CONST_HEX INT_CONST_BIN INT_CONST_CHAR FLOAT_CONST HEX_FLOAT_CONST CHAR_CONST WCHAR_CONST STRING_LITERAL WSTRING_LITERAL PLUS MINUS TIMES DIVIDE MOD OR AND NOT XOR LSHIFT RSHIFT LOR LAND LNOT LT LE GT GE EQ NE EQUALS TIMESEQUAL DIVEQUAL MODEQUAL PLUSEQUAL MINUSEQUAL LSHIFTEQUAL RSHIFTEQUAL ANDEQUAL XOREQUAL OREQUAL PLUSPLUS MINUSMINUS ARROW CONDOP LPAREN RPAREN LBRACKET RBRACKET LBRACE RBRACE COMMA PERIOD SEMI COLON ELLIPSIS PPHASH PPPRAGMA PPPRAGMASTRabstract_declarator_opt : empty\n| abstract_declaratorassignment_expression_opt : empty\n| assignment_expressionblock_item_list_opt : empty\n| block_item_listdeclaration_list_opt : empty\n| declaration_listdeclaration_specifiers_no_type_opt : empty\n| declaration_specifiers_no_typedesignation_opt : empty\n| designationexpression_opt : empty\n| expressionid_init_declarator_list_opt : empty\n| id_init_declarator_listidentifier_list_opt : empty\n| identifier_listinit_declarator_list_opt : empty\n| init_declarator_listinitializer_list_opt : empty\n| initializer_listparameter_type_list_opt : empty\n| parameter_type_liststruct_declarator_list_opt : empty\n| struct_declarator_listtype_qualifier_list_opt : empty\n| type_qualifier_list direct_id_declarator : ID\n direct_id_declarator : LPAREN id_declarator RPAREN\n direct_id_declarator : direct_id_declarator LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET\n direct_id_declarator : direct_id_declarator LBRACKET STATIC type_qualifier_list_opt assignment_expression RBRACKET\n | direct_id_declarator LBRACKET type_qualifier_list STATIC assignment_expression RBRACKET\n direct_id_declarator : direct_id_declarator LBRACKET type_qualifier_list_opt TIMES RBRACKET\n direct_id_declarator : direct_id_declarator LPAREN parameter_type_list RPAREN\n | direct_id_declarator LPAREN identifier_list_opt RPAREN\n direct_typeid_declarator : TYPEID\n direct_typeid_declarator : LPAREN typeid_declarator RPAREN\n direct_typeid_declarator : direct_typeid_declarator LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET\n direct_typeid_declarator : direct_typeid_declarator LBRACKET STATIC type_qualifier_list_opt assignment_expression RBRACKET\n | direct_typeid_declarator LBRACKET type_qualifier_list STATIC assignment_expression RBRACKET\n direct_typeid_declarator : direct_typeid_declarator LBRACKET type_qualifier_list_opt TIMES RBRACKET\n direct_typeid_declarator : direct_typeid_declarator LPAREN parameter_type_list RPAREN\n | direct_typeid_declarator LPAREN identifier_list_opt RPAREN\n direct_typeid_noparen_declarator : TYPEID\n direct_typeid_noparen_declarator : direct_typeid_noparen_declarator LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET\n direct_typeid_noparen_declarator : direct_typeid_noparen_declarator LBRACKET STATIC type_qualifier_list_opt assignment_expression RBRACKET\n | direct_typeid_noparen_declarator LBRACKET type_qualifier_list STATIC assignment_expression RBRACKET\n direct_typeid_noparen_declarator : direct_typeid_noparen_declarator LBRACKET type_qualifier_list_opt TIMES RBRACKET\n direct_typeid_noparen_declarator : direct_typeid_noparen_declarator LPAREN parameter_type_list RPAREN\n | direct_typeid_noparen_declarator LPAREN identifier_list_opt RPAREN\n id_declarator : direct_id_declarator\n id_declarator : pointer direct_id_declarator\n typeid_declarator : direct_typeid_declarator\n typeid_declarator : pointer direct_typeid_declarator\n typeid_noparen_declarator : direct_typeid_noparen_declarator\n typeid_noparen_declarator : pointer direct_typeid_noparen_declarator\n translation_unit_or_empty : translation_unit\n | empty\n translation_unit : external_declaration\n translation_unit : translation_unit external_declaration\n external_declaration : function_definition\n external_declaration : declaration\n external_declaration : pp_directive\n | pppragma_directive\n external_declaration : SEMI\n pp_directive : PPHASH\n pppragma_directive : PPPRAGMA\n | PPPRAGMA PPPRAGMASTR\n function_definition : id_declarator declaration_list_opt compound_statement\n function_definition : declaration_specifiers id_declarator declaration_list_opt compound_statement\n statement : labeled_statement\n | expression_statement\n | compound_statement\n | selection_statement\n | iteration_statement\n | jump_statement\n | pppragma_directive\n pragmacomp_or_statement : pppragma_directive statement\n | statement\n decl_body : declaration_specifiers init_declarator_list_opt\n | declaration_specifiers_no_type id_init_declarator_list_opt\n declaration : decl_body SEMI\n declaration_list : declaration\n | declaration_list declaration\n declaration_specifiers_no_type : type_qualifier declaration_specifiers_no_type_opt\n declaration_specifiers_no_type : storage_class_specifier declaration_specifiers_no_type_opt\n declaration_specifiers_no_type : function_specifier declaration_specifiers_no_type_opt\n declaration_specifiers : declaration_specifiers type_qualifier\n declaration_specifiers : declaration_specifiers storage_class_specifier\n declaration_specifiers : declaration_specifiers function_specifier\n declaration_specifiers : declaration_specifiers type_specifier_no_typeid\n declaration_specifiers : type_specifier\n declaration_specifiers : declaration_specifiers_no_type type_specifier\n storage_class_specifier : AUTO\n | REGISTER\n | STATIC\n | EXTERN\n | TYPEDEF\n function_specifier : INLINE\n type_specifier_no_typeid : VOID\n | _BOOL\n | CHAR\n | SHORT\n | INT\n | LONG\n | FLOAT\n | DOUBLE\n | _COMPLEX\n | SIGNED\n | UNSIGNED\n | __INT128\n type_specifier : typedef_name\n | enum_specifier\n | struct_or_union_specifier\n | type_specifier_no_typeid\n type_qualifier : CONST\n | RESTRICT\n | VOLATILE\n init_declarator_list : init_declarator\n | init_declarator_list COMMA init_declarator\n init_declarator : declarator\n | declarator EQUALS initializer\n id_init_declarator_list : id_init_declarator\n | id_init_declarator_list COMMA init_declarator\n id_init_declarator : id_declarator\n | id_declarator EQUALS initializer\n specifier_qualifier_list : specifier_qualifier_list type_specifier_no_typeid\n specifier_qualifier_list : specifier_qualifier_list type_qualifier\n specifier_qualifier_list : type_specifier\n specifier_qualifier_list : type_qualifier_list type_specifier\n struct_or_union_specifier : struct_or_union ID\n | struct_or_union TYPEID\n struct_or_union_specifier : struct_or_union brace_open struct_declaration_list brace_close\n | struct_or_union brace_open brace_close\n struct_or_union_specifier : struct_or_union ID brace_open struct_declaration_list brace_close\n | struct_or_union ID brace_open brace_close\n | struct_or_union TYPEID brace_open struct_declaration_list brace_close\n | struct_or_union TYPEID brace_open brace_close\n struct_or_union : STRUCT\n | UNION\n struct_declaration_list : struct_declaration\n | struct_declaration_list struct_declaration\n struct_declaration : specifier_qualifier_list struct_declarator_list_opt SEMI\n struct_declaration : SEMI\n struct_declaration : pppragma_directive\n struct_declarator_list : struct_declarator\n | struct_declarator_list COMMA struct_declarator\n struct_declarator : declarator\n struct_declarator : declarator COLON constant_expression\n | COLON constant_expression\n enum_specifier : ENUM ID\n | ENUM TYPEID\n enum_specifier : ENUM brace_open enumerator_list brace_close\n enum_specifier : ENUM ID brace_open enumerator_list brace_close\n | ENUM TYPEID brace_open enumerator_list brace_close\n enumerator_list : enumerator\n | enumerator_list COMMA\n | enumerator_list COMMA enumerator\n enumerator : ID\n | ID EQUALS constant_expression\n declarator : id_declarator\n | typeid_declarator\n pointer : TIMES type_qualifier_list_opt\n | TIMES type_qualifier_list_opt pointer\n type_qualifier_list : type_qualifier\n | type_qualifier_list type_qualifier\n parameter_type_list : parameter_list\n | parameter_list COMMA ELLIPSIS\n parameter_list : parameter_declaration\n | parameter_list COMMA parameter_declaration\n parameter_declaration : declaration_specifiers id_declarator\n | declaration_specifiers typeid_noparen_declarator\n parameter_declaration : declaration_specifiers abstract_declarator_opt\n identifier_list : identifier\n | identifier_list COMMA identifier\n initializer : assignment_expression\n initializer : brace_open initializer_list_opt brace_close\n | brace_open initializer_list COMMA brace_close\n initializer_list : designation_opt initializer\n | initializer_list COMMA designation_opt initializer\n designation : designator_list EQUALS\n designator_list : designator\n | designator_list designator\n designator : LBRACKET constant_expression RBRACKET\n | PERIOD identifier\n type_name : specifier_qualifier_list abstract_declarator_opt\n abstract_declarator : pointer\n abstract_declarator : pointer direct_abstract_declarator\n abstract_declarator : direct_abstract_declarator\n direct_abstract_declarator : LPAREN abstract_declarator RPAREN direct_abstract_declarator : direct_abstract_declarator LBRACKET assignment_expression_opt RBRACKET\n direct_abstract_declarator : LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET\n direct_abstract_declarator : direct_abstract_declarator LBRACKET TIMES RBRACKET\n direct_abstract_declarator : LBRACKET TIMES RBRACKET\n direct_abstract_declarator : direct_abstract_declarator LPAREN parameter_type_list_opt RPAREN\n direct_abstract_declarator : LPAREN parameter_type_list_opt RPAREN\n block_item : declaration\n | statement\n block_item_list : block_item\n | block_item_list block_item\n compound_statement : brace_open block_item_list_opt brace_close labeled_statement : ID COLON pragmacomp_or_statement labeled_statement : CASE constant_expression COLON pragmacomp_or_statement labeled_statement : DEFAULT COLON pragmacomp_or_statement selection_statement : IF LPAREN expression RPAREN pragmacomp_or_statement selection_statement : IF LPAREN expression RPAREN statement ELSE pragmacomp_or_statement selection_statement : SWITCH LPAREN expression RPAREN pragmacomp_or_statement iteration_statement : WHILE LPAREN expression RPAREN pragmacomp_or_statement iteration_statement : DO pragmacomp_or_statement WHILE LPAREN expression RPAREN SEMI iteration_statement : FOR LPAREN expression_opt SEMI expression_opt SEMI expression_opt RPAREN pragmacomp_or_statement iteration_statement : FOR LPAREN declaration expression_opt SEMI expression_opt RPAREN pragmacomp_or_statement jump_statement : GOTO ID SEMI jump_statement : BREAK SEMI jump_statement : CONTINUE SEMI jump_statement : RETURN expression SEMI\n | RETURN SEMI\n expression_statement : expression_opt SEMI expression : assignment_expression\n | expression COMMA assignment_expression\n typedef_name : TYPEID assignment_expression : conditional_expression\n | unary_expression assignment_operator assignment_expression\n assignment_operator : EQUALS\n | XOREQUAL\n | TIMESEQUAL\n | DIVEQUAL\n | MODEQUAL\n | PLUSEQUAL\n | MINUSEQUAL\n | LSHIFTEQUAL\n | RSHIFTEQUAL\n | ANDEQUAL\n | OREQUAL\n constant_expression : conditional_expression conditional_expression : binary_expression\n | binary_expression CONDOP expression COLON conditional_expression\n binary_expression : cast_expression\n | binary_expression TIMES binary_expression\n | binary_expression DIVIDE binary_expression\n | binary_expression MOD binary_expression\n | binary_expression PLUS binary_expression\n | binary_expression MINUS binary_expression\n | binary_expression RSHIFT binary_expression\n | binary_expression LSHIFT binary_expression\n | binary_expression LT binary_expression\n | binary_expression LE binary_expression\n | binary_expression GE binary_expression\n | binary_expression GT binary_expression\n | binary_expression EQ binary_expression\n | binary_expression NE binary_expression\n | binary_expression AND binary_expression\n | binary_expression OR binary_expression\n | binary_expression XOR binary_expression\n | binary_expression LAND binary_expression\n | binary_expression LOR binary_expression\n cast_expression : unary_expression cast_expression : LPAREN type_name RPAREN cast_expression unary_expression : postfix_expression unary_expression : PLUSPLUS unary_expression\n | MINUSMINUS unary_expression\n | unary_operator cast_expression\n unary_expression : SIZEOF unary_expression\n | SIZEOF LPAREN type_name RPAREN\n unary_operator : AND\n | TIMES\n | PLUS\n | MINUS\n | NOT\n | LNOT\n postfix_expression : primary_expression postfix_expression : postfix_expression LBRACKET expression RBRACKET postfix_expression : postfix_expression LPAREN argument_expression_list RPAREN\n | postfix_expression LPAREN RPAREN\n postfix_expression : postfix_expression PERIOD ID\n | postfix_expression PERIOD TYPEID\n | postfix_expression ARROW ID\n | postfix_expression ARROW TYPEID\n postfix_expression : postfix_expression PLUSPLUS\n | postfix_expression MINUSMINUS\n postfix_expression : LPAREN type_name RPAREN brace_open initializer_list brace_close\n | LPAREN type_name RPAREN brace_open initializer_list COMMA brace_close\n primary_expression : identifier primary_expression : constant primary_expression : unified_string_literal\n | unified_wstring_literal\n primary_expression : LPAREN expression RPAREN primary_expression : OFFSETOF LPAREN type_name COMMA offsetof_member_designator RPAREN\n offsetof_member_designator : identifier\n | offsetof_member_designator PERIOD identifier\n | offsetof_member_designator LBRACKET expression RBRACKET\n argument_expression_list : assignment_expression\n | argument_expression_list COMMA assignment_expression\n identifier : ID constant : INT_CONST_DEC\n | INT_CONST_OCT\n | INT_CONST_HEX\n | INT_CONST_BIN\n | INT_CONST_CHAR\n constant : FLOAT_CONST\n | HEX_FLOAT_CONST\n constant : CHAR_CONST\n | WCHAR_CONST\n unified_string_literal : STRING_LITERAL\n | unified_string_literal STRING_LITERAL\n unified_wstring_literal : WSTRING_LITERAL\n | unified_wstring_literal WSTRING_LITERAL\n brace_open : LBRACE\n brace_close : RBRACE\n empty : '
_lr_action_items = {'$end': ([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 14, 55, 77, 78, 105, 144, 211, 265], [-310, 0, -58, -59, -60, -62, -63, -64, -65, -66, -67, -68, -61, -83, -69, -70, -309, -71, -202]), 'SEMI': ([0, 2, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 60, 61, 62, 63, 64, 65, 66, 67, 69, 70, 72, 73, 74, 75, 76, 77, 78, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 98, 99, 101, 102, 103, 104, 105, 106, 108, 110, 127, 131, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 166, 169, 172, 175, 176, 177, 178, 179, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 228, 229, 243, 244, 247, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 264, 265, 266, 267, 268, 270, 271, 273, 274, 283, 284, 285, 286, 287, 288, 289, 290, 326, 327, 328, 330, 331, 332, 334, 335, 350, 351, 352, 353, 372, 373, 376, 377, 378, 381, 382, 383, 385, 388, 392, 396, 397, 398, 399, 400, 401, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 432, 439, 440, 443, 444, 457, 458, 459, 461, 463, 464, 465, 467, 468, 470, 471, 474, 476, 480, 481, 492, 493, 495, 496, 498, 500, 509, 510, 512, 515, 520, 521, 522, 524, 527, 528, 530], [9, 9, -60, -62, -63, -64, -65, -66, -310, 77, -67, -68, -52, -310, -310, -310, -116, -93, -310, -29, -97, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, -310, -310, -162, -89, -90, -91, -92, -81, -19, -20, -120, -122, -163, -54, -37, -83, -69, -53, -86, -9, -10, -87, -88, -94, -82, -15, -16, -124, -126, -152, -153, -308, -132, -133, 146, -70, -310, -162, -55, -294, -30, 146, 146, 146, -135, -142, -309, -310, -145, -146, -130, -13, -310, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, -294, 274, -14, -310, 287, 288, 290, -219, -222, -257, -236, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -71, -121, -38, -123, -177, -35, -36, -125, -127, -154, 146, -137, 146, -139, -134, -143, 378, -128, -129, -25, -26, -147, -149, -131, -202, -201, -13, -310, -235, -257, -310, -218, -78, -80, -310, 399, -214, -215, 400, -217, -279, -280, -260, -261, -262, -263, -305, -307, -43, -44, -31, -34, -155, -156, -136, -138, -144, -151, -203, -310, -205, -287, -220, -79, 467, -310, -213, -216, -223, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -252, -253, -254, -255, -256, -274, -275, -276, -277, -278, -178, -39, -42, -32, -33, -148, -150, -204, -310, -258, -310, -310, -310, 499, -272, -273, -264, -179, -40, -41, -206, -80, -208, -209, 513, -237, -310, -281, 522, -288, -207, -282, -210, -310, -310, -212, -211]), 'PPHASH': ([0, 2, 4, 5, 6, 7, 8, 9, 13, 14, 55, 77, 78, 105, 144, 211, 265], [13, 13, -60, -62, -63, -64, -65, -66, -67, -68, -61, -83, -69, -70, -309, -71, -202]), 'PPPRAGMA': ([0, 2, 4, 5, 6, 7, 8, 9, 13, 14, 55, 77, 78, 101, 104, 105, 106, 139, 140, 141, 143, 144, 146, 147, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 172, 211, 250, 252, 255, 265, 266, 268, 273, 274, 283, 284, 287, 288, 290, 378, 382, 383, 385, 396, 399, 400, 459, 461, 464, 465, 492, 493, 495, 496, 509, 520, 522, 524, 527, 528, 530], [14, 14, -60, -62, -63, -64, -65, -66, -67, -68, -61, -83, -69, -308, 14, -70, 14, 14, 14, 14, -142, -309, -145, -146, 14, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 14, -71, 14, 14, -143, -202, -201, 14, 14, -218, 14, -80, -214, -215, -217, -144, -203, 14, -205, -79, -213, -216, -204, 14, 14, 14, -206, -80, -208, -209, 14, -207, -210, 14, 14, -212, -211]), 'ID': ([0, 2, 4, 5, 6, 7, 8, 9, 11, 13, 14, 16, 17, 18, 19, 20, 21, 22, 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, 60, 61, 63, 64, 65, 66, 68, 71, 77, 78, 79, 80, 82, 83, 84, 85, 86, 87, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 105, 106, 111, 113, 114, 115, 116, 117, 118, 126, 129, 130, 132, 133, 134, 135, 142, 144, 145, 148, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 168, 172, 174, 177, 183, 184, 185, 187, 188, 189, 190, 191, 193, 194, 211, 216, 217, 218, 219, 223, 226, 227, 231, 235, 239, 240, 247, 248, 249, 251, 253, 254, 257, 258, 263, 264, 265, 266, 268, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 329, 333, 339, 340, 341, 344, 345, 347, 348, 349, 361, 362, 365, 368, 370, 372, 373, 376, 377, 379, 380, 382, 383, 385, 387, 396, 398, 399, 400, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 464, 465, 466, 467, 469, 472, 475, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 511, 513, 516, 517, 520, 522, 524, 527, 528, 530], [23, 23, -60, -62, -63, -64, -65, -66, 23, -67, -68, 23, -310, -310, -310, -116, -93, 23, 23, -97, -310, -113, -114, -115, -221, 98, 102, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -140, -141, -61, 23, 23, -89, -90, -91, -92, 23, 23, -83, -69, -310, 127, -86, -9, -10, -87, -88, -94, -164, -27, -28, -166, -152, -153, 138, -308, -132, -133, -70, 163, 23, 127, -310, 127, 127, -310, -28, 23, 23, 127, -165, -167, 138, 138, -135, -309, 23, -130, 163, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 127, 127, 163, 286, 127, 127, 127, 127, 127, -266, -267, -268, -265, -269, -270, -71, -310, 127, -310, -28, -266, 127, 127, 127, 23, 23, -310, -154, 138, 127, -137, -139, -134, -128, -129, 127, -131, -202, -201, 163, 127, 163, -218, 127, 127, 127, 127, 163, -80, 127, -214, -215, -217, 127, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 127, 425, 427, 127, 127, -11, 127, -12, 127, 127, -266, 127, 127, -310, 127, 23, 127, 127, -155, -156, -136, -138, 23, 127, -203, 163, -205, 127, -79, 127, -213, -216, -310, -182, 127, -310, -28, -266, -204, 127, 163, -310, 163, 163, 127, 127, 127, 127, 127, 127, -11, -266, 127, 127, -206, -80, -208, -209, 127, 163, -310, 127, 127, 127, -207, -210, 163, 163, -212, -211]), 'LPAREN': ([0, 2, 4, 5, 6, 7, 8, 9, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 60, 61, 63, 64, 65, 66, 68, 71, 75, 76, 77, 78, 79, 81, 82, 83, 84, 85, 86, 87, 94, 95, 96, 97, 98, 99, 101, 102, 103, 105, 106, 110, 111, 113, 114, 116, 117, 118, 126, 127, 129, 130, 131, 132, 133, 142, 144, 145, 148, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 167, 168, 170, 171, 172, 173, 177, 182, 183, 184, 185, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 216, 217, 218, 219, 223, 226, 227, 228, 229, 235, 236, 239, 240, 241, 242, 247, 249, 251, 253, 254, 257, 258, 263, 264, 265, 266, 268, 272, 273, 274, 275, 278, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 326, 327, 329, 333, 334, 335, 339, 340, 341, 344, 347, 348, 349, 350, 351, 352, 353, 359, 360, 361, 365, 368, 370, 372, 373, 376, 377, 379, 380, 382, 383, 385, 387, 388, 390, 391, 395, 396, 398, 399, 400, 423, 425, 426, 427, 428, 433, 435, 439, 440, 443, 444, 445, 446, 447, 450, 451, 453, 455, 459, 460, 461, 462, 464, 465, 466, 467, 469, 470, 471, 472, 477, 478, 480, 481, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 495, 496, 499, 505, 506, 509, 510, 511, 513, 515, 517, 518, 519, 520, 521, 522, 524, 527, 528, 530], [24, 24, -60, -62, -63, -64, -65, -66, 71, -67, -68, 80, 24, -310, -310, -310, -116, -93, 24, -29, 24, -97, -310, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 71, 24, -89, -90, -91, -92, 71, 71, 115, -37, -83, -69, -310, 80, -86, -9, -10, -87, -88, -94, -164, -27, -28, -166, -152, -153, -308, -132, -133, -70, 168, 115, 71, 168, -310, 168, -310, -28, 239, -294, 71, 168, -30, -165, -167, -135, -309, 71, -130, 168, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, -294, 272, 275, 168, 280, 281, 168, 285, 168, 323, 329, 329, 272, 333, -266, -267, -268, -265, -271, -269, -270, -283, -284, -285, -286, 336, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -71, -38, -310, 168, -310, -28, -266, 168, 168, -35, -36, 239, 362, 239, -310, -45, 371, -154, 272, -137, -139, -134, -128, -129, 272, -131, -202, -201, 168, 168, 168, -218, 168, 391, 168, 168, 168, 168, -80, 168, -214, -215, -217, 168, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 168, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 168, 168, -279, -280, 168, 168, -305, -307, -11, 168, -12, 272, -266, 168, 168, -43, -44, -31, -34, 362, 371, -310, 239, 168, 168, -155, -156, -136, -138, 71, 272, -203, 168, -205, 272, -287, 391, 391, 466, -79, 168, -213, -216, -274, -275, -276, -277, -278, -310, -182, -39, -42, -32, -33, 168, -310, -28, -191, -197, -195, -266, -204, 272, 168, -310, 168, 168, 168, 168, 272, -272, -273, 168, 168, -11, -40, -41, -266, 168, 168, -50, -51, -193, -192, -194, -196, -206, -80, -208, -209, 168, -46, -49, 168, -281, -310, 168, -288, 168, -47, -48, -207, -282, -210, 168, 168, -212, -211]), 'TIMES': ([0, 2, 4, 5, 6, 7, 8, 9, 11, 13, 14, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 60, 61, 63, 64, 65, 66, 71, 77, 78, 79, 82, 83, 84, 85, 86, 87, 94, 95, 96, 97, 98, 99, 101, 102, 103, 105, 106, 111, 113, 114, 116, 117, 118, 126, 127, 129, 130, 133, 142, 144, 145, 148, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 168, 172, 177, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 216, 217, 218, 219, 223, 226, 227, 239, 240, 247, 249, 251, 253, 254, 257, 258, 263, 264, 265, 266, 268, 271, 272, 273, 274, 275, 278, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 372, 373, 376, 377, 379, 380, 382, 383, 385, 387, 388, 391, 396, 398, 399, 400, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 474, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 510, 511, 513, 515, 517, 520, 521, 522, 524, 527, 528, 530], [26, 26, -60, -62, -63, -64, -65, -66, 26, -67, -68, -310, -310, -310, -116, -93, 26, 26, -97, -310, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 26, 26, -89, -90, -91, -92, 26, -83, -69, -310, -86, -9, -10, -87, -88, -94, 26, -27, -28, -166, -152, -153, -308, -132, -133, -70, 188, 26, 188, -310, 223, -310, -28, 26, -294, 26, 188, -167, -135, -309, 26, -130, 188, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, -294, 188, 188, 188, 188, -257, 304, -259, 188, 188, 188, -238, 188, -266, -267, -268, -265, -271, -269, -270, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -71, -310, 347, -310, -28, -266, 188, 188, 26, 369, -154, 188, -137, -139, -134, -128, -129, 188, -131, -202, -201, 188, -257, 188, 188, -218, 188, 26, 188, 188, 188, 188, -80, 188, -214, -215, -217, 188, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, -279, -280, -260, 188, -261, -262, -263, 188, -305, -307, -11, 188, -12, 188, -266, 188, 188, -310, 188, 455, -155, -156, -136, -138, 26, 188, -203, 188, -205, 188, -287, 26, -79, 188, -213, -216, -239, -240, -241, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, -274, -275, -276, -277, -278, -310, -182, 483, -310, -28, -266, -204, 188, 188, -310, -258, 188, 188, 188, 188, 188, -272, -273, 188, -264, 188, -11, -266, 188, 188, -206, -80, -208, -209, 188, 188, -281, -310, 188, -288, 188, -207, -282, -210, 188, 188, -212, -211]), 'TYPEID': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 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, 58, 59, 60, 61, 62, 63, 64, 65, 66, 68, 71, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 94, 95, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 111, 115, 126, 128, 129, 131, 132, 133, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 168, 211, 228, 229, 230, 235, 239, 247, 250, 251, 252, 253, 254, 255, 257, 258, 264, 265, 266, 272, 274, 283, 284, 285, 287, 288, 290, 324, 325, 329, 333, 336, 352, 353, 362, 371, 372, 373, 376, 377, 378, 379, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [30, 30, -60, -62, -63, -64, -65, -66, 30, 76, -67, -68, -52, -310, -310, -310, -116, -93, 30, -29, -97, -310, -113, -114, -115, -221, 99, 103, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -140, -141, -61, 30, -84, 76, 30, 30, -89, -90, -91, -92, 76, 76, -83, -69, 30, -53, -86, -9, -10, -87, -88, -94, -164, -27, -28, -166, -152, -153, -308, -132, -133, 30, -70, 30, -85, 76, 30, 241, 30, 76, -30, -165, -167, 30, 30, 30, -135, -142, -309, 76, -145, -146, -130, 30, 30, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 30, -71, -35, -36, 30, 241, 30, -154, 30, -137, 30, -139, -134, -143, -128, -129, -131, -202, -201, 30, -218, -78, -80, 30, -214, -215, -217, 426, 428, 30, 30, 30, -31, -34, 30, 30, -155, -156, -136, -138, -144, 76, -203, -205, 30, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'ENUM': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 17, 18, 19, 22, 23, 25, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 61, 62, 77, 78, 80, 81, 82, 83, 84, 85, 86, 97, 101, 104, 105, 106, 107, 115, 128, 131, 133, 139, 140, 141, 143, 144, 146, 147, 149, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 168, 211, 228, 229, 230, 239, 250, 252, 255, 265, 266, 272, 274, 283, 284, 285, 287, 288, 290, 329, 333, 336, 352, 353, 362, 371, 378, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [31, 31, -60, -62, -63, -64, -65, -66, 31, -67, -68, -52, -310, -310, -310, 31, -29, -97, -117, -118, -119, -95, -96, -98, -99, -100, -61, 31, -84, 31, 31, -83, -69, 31, -53, -86, -9, -10, -87, -88, -166, -308, 31, -70, 31, -85, 31, 31, -30, -167, 31, 31, 31, -142, -309, -145, -146, 31, 31, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 31, -71, -35, -36, 31, 31, 31, 31, -143, -202, -201, 31, -218, -78, -80, 31, -214, -215, -217, 31, 31, 31, -31, -34, 31, 31, -144, -203, -205, 31, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'VOID': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 61, 62, 63, 64, 65, 66, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 115, 126, 128, 131, 133, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 168, 211, 228, 229, 230, 239, 247, 250, 251, 252, 253, 254, 255, 257, 258, 264, 265, 266, 272, 274, 278, 283, 284, 285, 287, 288, 290, 329, 333, 336, 352, 353, 362, 371, 372, 373, 376, 377, 378, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [33, 33, -60, -62, -63, -64, -65, -66, 33, 33, -67, -68, -52, -310, -310, -310, -116, -93, 33, -29, -97, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 33, -84, 33, 33, 33, -89, -90, -91, -92, -83, -69, 33, -53, -86, -9, -10, -87, -88, -94, -166, -152, -153, -308, -132, -133, 33, -70, 33, -85, 33, 33, 33, -30, -167, 33, 33, 33, -135, -142, -309, 33, -145, -146, -130, 33, 33, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 33, -71, -35, -36, 33, 33, -154, 33, -137, 33, -139, -134, -143, -128, -129, -131, -202, -201, 33, -218, 33, -78, -80, 33, -214, -215, -217, 33, 33, 33, -31, -34, 33, 33, -155, -156, -136, -138, -144, -203, -205, 33, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), '_BOOL': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 61, 62, 63, 64, 65, 66, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 115, 126, 128, 131, 133, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 168, 211, 228, 229, 230, 239, 247, 250, 251, 252, 253, 254, 255, 257, 258, 264, 265, 266, 272, 274, 278, 283, 284, 285, 287, 288, 290, 329, 333, 336, 352, 353, 362, 371, 372, 373, 376, 377, 378, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [34, 34, -60, -62, -63, -64, -65, -66, 34, 34, -67, -68, -52, -310, -310, -310, -116, -93, 34, -29, -97, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 34, -84, 34, 34, 34, -89, -90, -91, -92, -83, -69, 34, -53, -86, -9, -10, -87, -88, -94, -166, -152, -153, -308, -132, -133, 34, -70, 34, -85, 34, 34, 34, -30, -167, 34, 34, 34, -135, -142, -309, 34, -145, -146, -130, 34, 34, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 34, -71, -35, -36, 34, 34, -154, 34, -137, 34, -139, -134, -143, -128, -129, -131, -202, -201, 34, -218, 34, -78, -80, 34, -214, -215, -217, 34, 34, 34, -31, -34, 34, 34, -155, -156, -136, -138, -144, -203, -205, 34, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'CHAR': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 61, 62, 63, 64, 65, 66, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 115, 126, 128, 131, 133, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 168, 211, 228, 229, 230, 239, 247, 250, 251, 252, 253, 254, 255, 257, 258, 264, 265, 266, 272, 274, 278, 283, 284, 285, 287, 288, 290, 329, 333, 336, 352, 353, 362, 371, 372, 373, 376, 377, 378, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [35, 35, -60, -62, -63, -64, -65, -66, 35, 35, -67, -68, -52, -310, -310, -310, -116, -93, 35, -29, -97, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 35, -84, 35, 35, 35, -89, -90, -91, -92, -83, -69, 35, -53, -86, -9, -10, -87, -88, -94, -166, -152, -153, -308, -132, -133, 35, -70, 35, -85, 35, 35, 35, -30, -167, 35, 35, 35, -135, -142, -309, 35, -145, -146, -130, 35, 35, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 35, -71, -35, -36, 35, 35, -154, 35, -137, 35, -139, -134, -143, -128, -129, -131, -202, -201, 35, -218, 35, -78, -80, 35, -214, -215, -217, 35, 35, 35, -31, -34, 35, 35, -155, -156, -136, -138, -144, -203, -205, 35, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'SHORT': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 61, 62, 63, 64, 65, 66, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 115, 126, 128, 131, 133, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 168, 211, 228, 229, 230, 239, 247, 250, 251, 252, 253, 254, 255, 257, 258, 264, 265, 266, 272, 274, 278, 283, 284, 285, 287, 288, 290, 329, 333, 336, 352, 353, 362, 371, 372, 373, 376, 377, 378, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [36, 36, -60, -62, -63, -64, -65, -66, 36, 36, -67, -68, -52, -310, -310, -310, -116, -93, 36, -29, -97, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 36, -84, 36, 36, 36, -89, -90, -91, -92, -83, -69, 36, -53, -86, -9, -10, -87, -88, -94, -166, -152, -153, -308, -132, -133, 36, -70, 36, -85, 36, 36, 36, -30, -167, 36, 36, 36, -135, -142, -309, 36, -145, -146, -130, 36, 36, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 36, -71, -35, -36, 36, 36, -154, 36, -137, 36, -139, -134, -143, -128, -129, -131, -202, -201, 36, -218, 36, -78, -80, 36, -214, -215, -217, 36, 36, 36, -31, -34, 36, 36, -155, -156, -136, -138, -144, -203, -205, 36, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'INT': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 61, 62, 63, 64, 65, 66, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 115, 126, 128, 131, 133, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 168, 211, 228, 229, 230, 239, 247, 250, 251, 252, 253, 254, 255, 257, 258, 264, 265, 266, 272, 274, 278, 283, 284, 285, 287, 288, 290, 329, 333, 336, 352, 353, 362, 371, 372, 373, 376, 377, 378, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [37, 37, -60, -62, -63, -64, -65, -66, 37, 37, -67, -68, -52, -310, -310, -310, -116, -93, 37, -29, -97, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 37, -84, 37, 37, 37, -89, -90, -91, -92, -83, -69, 37, -53, -86, -9, -10, -87, -88, -94, -166, -152, -153, -308, -132, -133, 37, -70, 37, -85, 37, 37, 37, -30, -167, 37, 37, 37, -135, -142, -309, 37, -145, -146, -130, 37, 37, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 37, -71, -35, -36, 37, 37, -154, 37, -137, 37, -139, -134, -143, -128, -129, -131, -202, -201, 37, -218, 37, -78, -80, 37, -214, -215, -217, 37, 37, 37, -31, -34, 37, 37, -155, -156, -136, -138, -144, -203, -205, 37, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'LONG': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 61, 62, 63, 64, 65, 66, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 115, 126, 128, 131, 133, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 168, 211, 228, 229, 230, 239, 247, 250, 251, 252, 253, 254, 255, 257, 258, 264, 265, 266, 272, 274, 278, 283, 284, 285, 287, 288, 290, 329, 333, 336, 352, 353, 362, 371, 372, 373, 376, 377, 378, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [38, 38, -60, -62, -63, -64, -65, -66, 38, 38, -67, -68, -52, -310, -310, -310, -116, -93, 38, -29, -97, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 38, -84, 38, 38, 38, -89, -90, -91, -92, -83, -69, 38, -53, -86, -9, -10, -87, -88, -94, -166, -152, -153, -308, -132, -133, 38, -70, 38, -85, 38, 38, 38, -30, -167, 38, 38, 38, -135, -142, -309, 38, -145, -146, -130, 38, 38, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 38, -71, -35, -36, 38, 38, -154, 38, -137, 38, -139, -134, -143, -128, -129, -131, -202, -201, 38, -218, 38, -78, -80, 38, -214, -215, -217, 38, 38, 38, -31, -34, 38, 38, -155, -156, -136, -138, -144, -203, -205, 38, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'FLOAT': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 61, 62, 63, 64, 65, 66, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 115, 126, 128, 131, 133, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 168, 211, 228, 229, 230, 239, 247, 250, 251, 252, 253, 254, 255, 257, 258, 264, 265, 266, 272, 274, 278, 283, 284, 285, 287, 288, 290, 329, 333, 336, 352, 353, 362, 371, 372, 373, 376, 377, 378, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [39, 39, -60, -62, -63, -64, -65, -66, 39, 39, -67, -68, -52, -310, -310, -310, -116, -93, 39, -29, -97, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 39, -84, 39, 39, 39, -89, -90, -91, -92, -83, -69, 39, -53, -86, -9, -10, -87, -88, -94, -166, -152, -153, -308, -132, -133, 39, -70, 39, -85, 39, 39, 39, -30, -167, 39, 39, 39, -135, -142, -309, 39, -145, -146, -130, 39, 39, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 39, -71, -35, -36, 39, 39, -154, 39, -137, 39, -139, -134, -143, -128, -129, -131, -202, -201, 39, -218, 39, -78, -80, 39, -214, -215, -217, 39, 39, 39, -31, -34, 39, 39, -155, -156, -136, -138, -144, -203, -205, 39, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'DOUBLE': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 61, 62, 63, 64, 65, 66, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 115, 126, 128, 131, 133, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 168, 211, 228, 229, 230, 239, 247, 250, 251, 252, 253, 254, 255, 257, 258, 264, 265, 266, 272, 274, 278, 283, 284, 285, 287, 288, 290, 329, 333, 336, 352, 353, 362, 371, 372, 373, 376, 377, 378, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [40, 40, -60, -62, -63, -64, -65, -66, 40, 40, -67, -68, -52, -310, -310, -310, -116, -93, 40, -29, -97, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 40, -84, 40, 40, 40, -89, -90, -91, -92, -83, -69, 40, -53, -86, -9, -10, -87, -88, -94, -166, -152, -153, -308, -132, -133, 40, -70, 40, -85, 40, 40, 40, -30, -167, 40, 40, 40, -135, -142, -309, 40, -145, -146, -130, 40, 40, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 40, -71, -35, -36, 40, 40, -154, 40, -137, 40, -139, -134, -143, -128, -129, -131, -202, -201, 40, -218, 40, -78, -80, 40, -214, -215, -217, 40, 40, 40, -31, -34, 40, 40, -155, -156, -136, -138, -144, -203, -205, 40, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), '_COMPLEX': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 61, 62, 63, 64, 65, 66, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 115, 126, 128, 131, 133, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 168, 211, 228, 229, 230, 239, 247, 250, 251, 252, 253, 254, 255, 257, 258, 264, 265, 266, 272, 274, 278, 283, 284, 285, 287, 288, 290, 329, 333, 336, 352, 353, 362, 371, 372, 373, 376, 377, 378, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [41, 41, -60, -62, -63, -64, -65, -66, 41, 41, -67, -68, -52, -310, -310, -310, -116, -93, 41, -29, -97, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 41, -84, 41, 41, 41, -89, -90, -91, -92, -83, -69, 41, -53, -86, -9, -10, -87, -88, -94, -166, -152, -153, -308, -132, -133, 41, -70, 41, -85, 41, 41, 41, -30, -167, 41, 41, 41, -135, -142, -309, 41, -145, -146, -130, 41, 41, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 41, -71, -35, -36, 41, 41, -154, 41, -137, 41, -139, -134, -143, -128, -129, -131, -202, -201, 41, -218, 41, -78, -80, 41, -214, -215, -217, 41, 41, 41, -31, -34, 41, 41, -155, -156, -136, -138, -144, -203, -205, 41, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'SIGNED': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 61, 62, 63, 64, 65, 66, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 115, 126, 128, 131, 133, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 168, 211, 228, 229, 230, 239, 247, 250, 251, 252, 253, 254, 255, 257, 258, 264, 265, 266, 272, 274, 278, 283, 284, 285, 287, 288, 290, 329, 333, 336, 352, 353, 362, 371, 372, 373, 376, 377, 378, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [42, 42, -60, -62, -63, -64, -65, -66, 42, 42, -67, -68, -52, -310, -310, -310, -116, -93, 42, -29, -97, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 42, -84, 42, 42, 42, -89, -90, -91, -92, -83, -69, 42, -53, -86, -9, -10, -87, -88, -94, -166, -152, -153, -308, -132, -133, 42, -70, 42, -85, 42, 42, 42, -30, -167, 42, 42, 42, -135, -142, -309, 42, -145, -146, -130, 42, 42, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 42, -71, -35, -36, 42, 42, -154, 42, -137, 42, -139, -134, -143, -128, -129, -131, -202, -201, 42, -218, 42, -78, -80, 42, -214, -215, -217, 42, 42, 42, -31, -34, 42, 42, -155, -156, -136, -138, -144, -203, -205, 42, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'UNSIGNED': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 61, 62, 63, 64, 65, 66, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 115, 126, 128, 131, 133, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 168, 211, 228, 229, 230, 239, 247, 250, 251, 252, 253, 254, 255, 257, 258, 264, 265, 266, 272, 274, 278, 283, 284, 285, 287, 288, 290, 329, 333, 336, 352, 353, 362, 371, 372, 373, 376, 377, 378, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [43, 43, -60, -62, -63, -64, -65, -66, 43, 43, -67, -68, -52, -310, -310, -310, -116, -93, 43, -29, -97, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 43, -84, 43, 43, 43, -89, -90, -91, -92, -83, -69, 43, -53, -86, -9, -10, -87, -88, -94, -166, -152, -153, -308, -132, -133, 43, -70, 43, -85, 43, 43, 43, -30, -167, 43, 43, 43, -135, -142, -309, 43, -145, -146, -130, 43, 43, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 43, -71, -35, -36, 43, 43, -154, 43, -137, 43, -139, -134, -143, -128, -129, -131, -202, -201, 43, -218, 43, -78, -80, 43, -214, -215, -217, 43, 43, 43, -31, -34, 43, 43, -155, -156, -136, -138, -144, -203, -205, 43, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), '__INT128': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 61, 62, 63, 64, 65, 66, 77, 78, 80, 81, 82, 83, 84, 85, 86, 87, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 115, 126, 128, 131, 133, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 168, 211, 228, 229, 230, 239, 247, 250, 251, 252, 253, 254, 255, 257, 258, 264, 265, 266, 272, 274, 278, 283, 284, 285, 287, 288, 290, 329, 333, 336, 352, 353, 362, 371, 372, 373, 376, 377, 378, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [44, 44, -60, -62, -63, -64, -65, -66, 44, 44, -67, -68, -52, -310, -310, -310, -116, -93, 44, -29, -97, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 44, -84, 44, 44, 44, -89, -90, -91, -92, -83, -69, 44, -53, -86, -9, -10, -87, -88, -94, -166, -152, -153, -308, -132, -133, 44, -70, 44, -85, 44, 44, 44, -30, -167, 44, 44, 44, -135, -142, -309, 44, -145, -146, -130, 44, 44, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 44, -71, -35, -36, 44, 44, -154, 44, -137, 44, -139, -134, -143, -128, -129, -131, -202, -201, 44, -218, 44, -78, -80, 44, -214, -215, -217, 44, 44, 44, -31, -34, 44, 44, -155, -156, -136, -138, -144, -203, -205, 44, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'CONST': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 25, 26, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 62, 63, 64, 65, 66, 77, 78, 79, 80, 81, 87, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 114, 115, 117, 118, 126, 131, 133, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 168, 211, 218, 219, 228, 229, 230, 239, 240, 247, 250, 251, 252, 253, 254, 255, 257, 258, 264, 265, 266, 272, 274, 278, 283, 284, 285, 287, 288, 290, 329, 333, 336, 352, 353, 361, 362, 371, 372, 373, 376, 377, 378, 382, 385, 391, 396, 399, 400, 443, 444, 446, 447, 459, 492, 493, 495, 496, 520, 522, 528, 530], [45, 45, -60, -62, -63, -64, -65, -66, 45, 45, -67, -68, -52, 45, 45, 45, -116, -93, -29, -97, 45, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 45, -84, 45, 45, -89, -90, -91, -92, -83, -69, 45, 45, -53, -94, 45, -166, -152, -153, -308, -132, -133, 45, -70, 45, -85, 45, 45, 45, 45, 45, -30, -167, 45, 45, 45, -135, -142, -309, 45, -145, -146, -130, 45, 45, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 45, -71, 45, 45, -35, -36, 45, 45, 45, -154, 45, -137, 45, -139, -134, -143, -128, -129, -131, -202, -201, 45, -218, 45, -78, -80, 45, -214, -215, -217, 45, 45, 45, -31, -34, 45, 45, 45, -155, -156, -136, -138, -144, -203, -205, 45, -79, -213, -216, -32, -33, 45, 45, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'RESTRICT': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 25, 26, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 62, 63, 64, 65, 66, 77, 78, 79, 80, 81, 87, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 114, 115, 117, 118, 126, 131, 133, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 168, 211, 218, 219, 228, 229, 230, 239, 240, 247, 250, 251, 252, 253, 254, 255, 257, 258, 264, 265, 266, 272, 274, 278, 283, 284, 285, 287, 288, 290, 329, 333, 336, 352, 353, 361, 362, 371, 372, 373, 376, 377, 378, 382, 385, 391, 396, 399, 400, 443, 444, 446, 447, 459, 492, 493, 495, 496, 520, 522, 528, 530], [46, 46, -60, -62, -63, -64, -65, -66, 46, 46, -67, -68, -52, 46, 46, 46, -116, -93, -29, -97, 46, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 46, -84, 46, 46, -89, -90, -91, -92, -83, -69, 46, 46, -53, -94, 46, -166, -152, -153, -308, -132, -133, 46, -70, 46, -85, 46, 46, 46, 46, 46, -30, -167, 46, 46, 46, -135, -142, -309, 46, -145, -146, -130, 46, 46, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 46, -71, 46, 46, -35, -36, 46, 46, 46, -154, 46, -137, 46, -139, -134, -143, -128, -129, -131, -202, -201, 46, -218, 46, -78, -80, 46, -214, -215, -217, 46, 46, 46, -31, -34, 46, 46, 46, -155, -156, -136, -138, -144, -203, -205, 46, -79, -213, -216, -32, -33, 46, 46, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'VOLATILE': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 25, 26, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 62, 63, 64, 65, 66, 77, 78, 79, 80, 81, 87, 96, 97, 98, 99, 101, 102, 103, 104, 105, 106, 107, 114, 115, 117, 118, 126, 131, 133, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 168, 211, 218, 219, 228, 229, 230, 239, 240, 247, 250, 251, 252, 253, 254, 255, 257, 258, 264, 265, 266, 272, 274, 278, 283, 284, 285, 287, 288, 290, 329, 333, 336, 352, 353, 361, 362, 371, 372, 373, 376, 377, 378, 382, 385, 391, 396, 399, 400, 443, 444, 446, 447, 459, 492, 493, 495, 496, 520, 522, 528, 530], [47, 47, -60, -62, -63, -64, -65, -66, 47, 47, -67, -68, -52, 47, 47, 47, -116, -93, -29, -97, 47, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 47, -84, 47, 47, -89, -90, -91, -92, -83, -69, 47, 47, -53, -94, 47, -166, -152, -153, -308, -132, -133, 47, -70, 47, -85, 47, 47, 47, 47, 47, -30, -167, 47, 47, 47, -135, -142, -309, 47, -145, -146, -130, 47, 47, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 47, -71, 47, 47, -35, -36, 47, 47, 47, -154, 47, -137, 47, -139, -134, -143, -128, -129, -131, -202, -201, 47, -218, 47, -78, -80, 47, -214, -215, -217, 47, 47, 47, -31, -34, 47, 47, 47, -155, -156, -136, -138, -144, -203, -205, 47, -79, -213, -216, -32, -33, 47, 47, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'AUTO': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 62, 63, 64, 65, 66, 77, 78, 80, 81, 87, 98, 99, 101, 102, 103, 105, 106, 107, 115, 126, 131, 142, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 211, 228, 229, 230, 239, 247, 251, 253, 254, 265, 266, 274, 283, 284, 285, 287, 288, 290, 352, 353, 362, 371, 372, 373, 376, 377, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [48, 48, -60, -62, -63, -64, -65, -66, 48, 48, -67, -68, -52, 48, 48, 48, -116, -93, -29, -97, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 48, -84, 48, 48, -89, -90, -91, -92, -83, -69, 48, -53, -94, -152, -153, -308, -132, -133, -70, 48, -85, 48, 48, -30, -135, -309, 48, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, -71, -35, -36, 48, 48, -154, -137, -139, -134, -202, -201, -218, -78, -80, 48, -214, -215, -217, -31, -34, 48, 48, -155, -156, -136, -138, -203, -205, 48, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'REGISTER': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 62, 63, 64, 65, 66, 77, 78, 80, 81, 87, 98, 99, 101, 102, 103, 105, 106, 107, 115, 126, 131, 142, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 211, 228, 229, 230, 239, 247, 251, 253, 254, 265, 266, 274, 283, 284, 285, 287, 288, 290, 352, 353, 362, 371, 372, 373, 376, 377, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [49, 49, -60, -62, -63, -64, -65, -66, 49, 49, -67, -68, -52, 49, 49, 49, -116, -93, -29, -97, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 49, -84, 49, 49, -89, -90, -91, -92, -83, -69, 49, -53, -94, -152, -153, -308, -132, -133, -70, 49, -85, 49, 49, -30, -135, -309, 49, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, -71, -35, -36, 49, 49, -154, -137, -139, -134, -202, -201, -218, -78, -80, 49, -214, -215, -217, -31, -34, 49, 49, -155, -156, -136, -138, -203, -205, 49, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'STATIC': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 62, 63, 64, 65, 66, 77, 78, 79, 80, 81, 87, 97, 98, 99, 101, 102, 103, 105, 106, 107, 114, 115, 118, 126, 131, 133, 142, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 211, 219, 228, 229, 230, 239, 247, 251, 253, 254, 265, 266, 274, 283, 284, 285, 287, 288, 290, 352, 353, 361, 362, 371, 372, 373, 376, 377, 382, 385, 391, 396, 399, 400, 443, 444, 447, 459, 492, 493, 495, 496, 520, 522, 528, 530], [25, 25, -60, -62, -63, -64, -65, -66, 25, 25, -67, -68, -52, 25, 25, 25, -116, -93, -29, -97, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 25, -84, 25, 25, -89, -90, -91, -92, -83, -69, 117, 25, -53, -94, -166, -152, -153, -308, -132, -133, -70, 25, -85, 218, 25, 227, 25, -30, -167, -135, -309, 25, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, -71, 349, -35, -36, 25, 25, -154, -137, -139, -134, -202, -201, -218, -78, -80, 25, -214, -215, -217, -31, -34, 446, 25, 25, -155, -156, -136, -138, -203, -205, 25, -79, -213, -216, -32, -33, 485, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'EXTERN': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 62, 63, 64, 65, 66, 77, 78, 80, 81, 87, 98, 99, 101, 102, 103, 105, 106, 107, 115, 126, 131, 142, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 211, 228, 229, 230, 239, 247, 251, 253, 254, 265, 266, 274, 283, 284, 285, 287, 288, 290, 352, 353, 362, 371, 372, 373, 376, 377, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [50, 50, -60, -62, -63, -64, -65, -66, 50, 50, -67, -68, -52, 50, 50, 50, -116, -93, -29, -97, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 50, -84, 50, 50, -89, -90, -91, -92, -83, -69, 50, -53, -94, -152, -153, -308, -132, -133, -70, 50, -85, 50, 50, -30, -135, -309, 50, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, -71, -35, -36, 50, 50, -154, -137, -139, -134, -202, -201, -218, -78, -80, 50, -214, -215, -217, -31, -34, 50, 50, -155, -156, -136, -138, -203, -205, 50, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'TYPEDEF': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 62, 63, 64, 65, 66, 77, 78, 80, 81, 87, 98, 99, 101, 102, 103, 105, 106, 107, 115, 126, 131, 142, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 211, 228, 229, 230, 239, 247, 251, 253, 254, 265, 266, 274, 283, 284, 285, 287, 288, 290, 352, 353, 362, 371, 372, 373, 376, 377, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [51, 51, -60, -62, -63, -64, -65, -66, 51, 51, -67, -68, -52, 51, 51, 51, -116, -93, -29, -97, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 51, -84, 51, 51, -89, -90, -91, -92, -83, -69, 51, -53, -94, -152, -153, -308, -132, -133, -70, 51, -85, 51, 51, -30, -135, -309, 51, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, -71, -35, -36, 51, 51, -154, -137, -139, -134, -202, -201, -218, -78, -80, 51, -214, -215, -217, -31, -34, 51, 51, -155, -156, -136, -138, -203, -205, 51, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'INLINE': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 20, 21, 23, 25, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 60, 62, 63, 64, 65, 66, 77, 78, 80, 81, 87, 98, 99, 101, 102, 103, 105, 106, 107, 115, 126, 131, 142, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 211, 228, 229, 230, 239, 247, 251, 253, 254, 265, 266, 274, 283, 284, 285, 287, 288, 290, 352, 353, 362, 371, 372, 373, 376, 377, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [52, 52, -60, -62, -63, -64, -65, -66, 52, 52, -67, -68, -52, 52, 52, 52, -116, -93, -29, -97, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -61, 52, -84, 52, 52, -89, -90, -91, -92, -83, -69, 52, -53, -94, -152, -153, -308, -132, -133, -70, 52, -85, 52, 52, -30, -135, -309, 52, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, -71, -35, -36, 52, 52, -154, -137, -139, -134, -202, -201, -218, -78, -80, 52, -214, -215, -217, -31, -34, 52, 52, -155, -156, -136, -138, -203, -205, 52, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'STRUCT': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 17, 18, 19, 22, 23, 25, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 61, 62, 77, 78, 80, 81, 82, 83, 84, 85, 86, 97, 101, 104, 105, 106, 107, 115, 128, 131, 133, 139, 140, 141, 143, 144, 146, 147, 149, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 168, 211, 228, 229, 230, 239, 250, 252, 255, 265, 266, 272, 274, 283, 284, 285, 287, 288, 290, 329, 333, 336, 352, 353, 362, 371, 378, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [53, 53, -60, -62, -63, -64, -65, -66, 53, -67, -68, -52, -310, -310, -310, 53, -29, -97, -117, -118, -119, -95, -96, -98, -99, -100, -61, 53, -84, 53, 53, -83, -69, 53, -53, -86, -9, -10, -87, -88, -166, -308, 53, -70, 53, -85, 53, 53, -30, -167, 53, 53, 53, -142, -309, -145, -146, 53, 53, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 53, -71, -35, -36, 53, 53, 53, 53, -143, -202, -201, 53, -218, -78, -80, 53, -214, -215, -217, 53, 53, 53, -31, -34, 53, 53, -144, -203, -205, 53, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'UNION': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 17, 18, 19, 22, 23, 25, 45, 46, 47, 48, 49, 50, 51, 52, 55, 58, 59, 61, 62, 77, 78, 80, 81, 82, 83, 84, 85, 86, 97, 101, 104, 105, 106, 107, 115, 128, 131, 133, 139, 140, 141, 143, 144, 146, 147, 149, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 168, 211, 228, 229, 230, 239, 250, 252, 255, 265, 266, 272, 274, 283, 284, 285, 287, 288, 290, 329, 333, 336, 352, 353, 362, 371, 378, 382, 385, 391, 396, 399, 400, 443, 444, 459, 492, 493, 495, 496, 520, 522, 528, 530], [54, 54, -60, -62, -63, -64, -65, -66, 54, -67, -68, -52, -310, -310, -310, 54, -29, -97, -117, -118, -119, -95, -96, -98, -99, -100, -61, 54, -84, 54, 54, -83, -69, 54, -53, -86, -9, -10, -87, -88, -166, -308, 54, -70, 54, -85, 54, 54, -30, -167, 54, 54, 54, -142, -309, -145, -146, 54, 54, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 54, -71, -35, -36, 54, 54, 54, 54, -143, -202, -201, 54, -218, -78, -80, 54, -214, -215, -217, 54, 54, 54, -31, -34, 54, 54, -144, -203, -205, 54, -79, -213, -216, -32, -33, -204, -206, -80, -208, -209, -207, -210, -212, -211]), 'LBRACE': ([10, 14, 15, 23, 31, 32, 53, 54, 56, 57, 58, 59, 62, 77, 78, 81, 98, 99, 101, 102, 103, 106, 107, 109, 113, 130, 131, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 172, 216, 228, 229, 265, 266, 268, 273, 274, 283, 284, 287, 288, 290, 339, 340, 341, 352, 353, 382, 383, 385, 387, 396, 399, 400, 433, 435, 443, 444, 459, 460, 461, 462, 464, 465, 473, 474, 477, 478, 492, 493, 495, 496, 509, 511, 520, 522, 524, 527, 528, 530], [-310, -68, -52, -29, 101, 101, -140, -141, 101, -7, -8, -84, -310, -83, -69, -53, 101, 101, -308, 101, 101, 101, -85, 101, 101, 101, -30, -309, 101, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 101, -310, -35, -36, -202, -201, 101, 101, -218, 101, -80, -214, -215, -217, -11, 101, -12, -31, -34, -203, 101, -205, 101, -79, -213, -216, -310, -182, -32, -33, -204, 101, 101, -310, 101, 101, 101, 101, 101, -11, -206, -80, -208, -209, 101, -310, -207, -210, 101, 101, -212, -211]), 'RBRACE': ([14, 77, 78, 101, 104, 106, 127, 136, 137, 138, 139, 140, 141, 143, 144, 146, 147, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 179, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 215, 216, 245, 246, 248, 250, 252, 255, 265, 266, 270, 271, 274, 283, 284, 287, 288, 290, 326, 327, 328, 330, 331, 332, 334, 335, 337, 338, 339, 374, 375, 378, 382, 385, 388, 396, 399, 400, 401, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 432, 433, 434, 459, 463, 470, 471, 474, 476, 492, 493, 494, 495, 496, 500, 504, 510, 511, 515, 520, 521, 522, 528, 530], [-68, -83, -69, -308, 144, -310, -294, 144, -157, -160, 144, 144, 144, -142, -309, -145, -146, 144, -5, -6, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, -222, -257, -236, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -177, -310, 144, 144, -158, 144, 144, -143, -202, -201, -235, -257, -218, -78, -80, -214, -215, -217, -279, -280, -260, -261, -262, -263, -305, -307, 144, -22, -21, -159, -161, -144, -203, -205, -287, -79, -213, -216, -223, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -252, -253, -254, -255, -256, -274, -275, -276, -277, -278, -178, 144, -180, -204, -258, -272, -273, -264, -179, -206, -80, 144, -208, -209, -237, -181, -281, 144, -288, -207, -282, -210, -212, -211]), 'CASE': ([14, 77, 78, 101, 106, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 172, 265, 266, 268, 273, 274, 283, 284, 287, 288, 290, 382, 383, 385, 396, 399, 400, 459, 461, 464, 465, 492, 493, 495, 496, 509, 520, 522, 524, 527, 528, 530], [-68, -83, -69, -308, 164, -309, 164, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 164, -202, -201, 164, 164, -218, 164, -80, -214, -215, -217, -203, 164, -205, -79, -213, -216, -204, 164, 164, 164, -206, -80, -208, -209, 164, -207, -210, 164, 164, -212, -211]), 'DEFAULT': ([14, 77, 78, 101, 106, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 172, 265, 266, 268, 273, 274, 283, 284, 287, 288, 290, 382, 383, 385, 396, 399, 400, 459, 461, 464, 465, 492, 493, 495, 496, 509, 520, 522, 524, 527, 528, 530], [-68, -83, -69, -308, 165, -309, 165, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 165, -202, -201, 165, 165, -218, 165, -80, -214, -215, -217, -203, 165, -205, -79, -213, -216, -204, 165, 165, 165, -206, -80, -208, -209, 165, -207, -210, 165, 165, -212, -211]), 'IF': ([14, 77, 78, 101, 106, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 172, 265, 266, 268, 273, 274, 283, 284, 287, 288, 290, 382, 383, 385, 396, 399, 400, 459, 461, 464, 465, 492, 493, 495, 496, 509, 520, 522, 524, 527, 528, 530], [-68, -83, -69, -308, 167, -309, 167, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 167, -202, -201, 167, 167, -218, 167, -80, -214, -215, -217, -203, 167, -205, -79, -213, -216, -204, 167, 167, 167, -206, -80, -208, -209, 167, -207, -210, 167, 167, -212, -211]), 'SWITCH': ([14, 77, 78, 101, 106, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 172, 265, 266, 268, 273, 274, 283, 284, 287, 288, 290, 382, 383, 385, 396, 399, 400, 459, 461, 464, 465, 492, 493, 495, 496, 509, 520, 522, 524, 527, 528, 530], [-68, -83, -69, -308, 170, -309, 170, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 170, -202, -201, 170, 170, -218, 170, -80, -214, -215, -217, -203, 170, -205, -79, -213, -216, -204, 170, 170, 170, -206, -80, -208, -209, 170, -207, -210, 170, 170, -212, -211]), 'WHILE': ([14, 77, 78, 101, 106, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 172, 265, 266, 268, 273, 274, 282, 283, 284, 287, 288, 290, 382, 383, 385, 396, 399, 400, 459, 461, 464, 465, 492, 493, 495, 496, 509, 520, 522, 524, 527, 528, 530], [-68, -83, -69, -308, 171, -309, 171, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 171, -202, -201, 171, 171, -218, 395, 171, -80, -214, -215, -217, -203, 171, -205, -79, -213, -216, -204, 171, 171, 171, -206, -80, -208, -209, 171, -207, -210, 171, 171, -212, -211]), 'DO': ([14, 77, 78, 101, 106, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 172, 265, 266, 268, 273, 274, 283, 284, 287, 288, 290, 382, 383, 385, 396, 399, 400, 459, 461, 464, 465, 492, 493, 495, 496, 509, 520, 522, 524, 527, 528, 530], [-68, -83, -69, -308, 172, -309, 172, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 172, -202, -201, 172, 172, -218, 172, -80, -214, -215, -217, -203, 172, -205, -79, -213, -216, -204, 172, 172, 172, -206, -80, -208, -209, 172, -207, -210, 172, 172, -212, -211]), 'FOR': ([14, 77, 78, 101, 106, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 172, 265, 266, 268, 273, 274, 283, 284, 287, 288, 290, 382, 383, 385, 396, 399, 400, 459, 461, 464, 465, 492, 493, 495, 496, 509, 520, 522, 524, 527, 528, 530], [-68, -83, -69, -308, 173, -309, 173, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 173, -202, -201, 173, 173, -218, 173, -80, -214, -215, -217, -203, 173, -205, -79, -213, -216, -204, 173, 173, 173, -206, -80, -208, -209, 173, -207, -210, 173, 173, -212, -211]), 'GOTO': ([14, 77, 78, 101, 106, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 172, 265, 266, 268, 273, 274, 283, 284, 287, 288, 290, 382, 383, 385, 396, 399, 400, 459, 461, 464, 465, 492, 493, 495, 496, 509, 520, 522, 524, 527, 528, 530], [-68, -83, -69, -308, 174, -309, 174, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 174, -202, -201, 174, 174, -218, 174, -80, -214, -215, -217, -203, 174, -205, -79, -213, -216, -204, 174, 174, 174, -206, -80, -208, -209, 174, -207, -210, 174, 174, -212, -211]), 'BREAK': ([14, 77, 78, 101, 106, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 172, 265, 266, 268, 273, 274, 283, 284, 287, 288, 290, 382, 383, 385, 396, 399, 400, 459, 461, 464, 465, 492, 493, 495, 496, 509, 520, 522, 524, 527, 528, 530], [-68, -83, -69, -308, 175, -309, 175, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 175, -202, -201, 175, 175, -218, 175, -80, -214, -215, -217, -203, 175, -205, -79, -213, -216, -204, 175, 175, 175, -206, -80, -208, -209, 175, -207, -210, 175, 175, -212, -211]), 'CONTINUE': ([14, 77, 78, 101, 106, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 172, 265, 266, 268, 273, 274, 283, 284, 287, 288, 290, 382, 383, 385, 396, 399, 400, 459, 461, 464, 465, 492, 493, 495, 496, 509, 520, 522, 524, 527, 528, 530], [-68, -83, -69, -308, 176, -309, 176, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 176, -202, -201, 176, 176, -218, 176, -80, -214, -215, -217, -203, 176, -205, -79, -213, -216, -204, 176, 176, 176, -206, -80, -208, -209, 176, -207, -210, 176, 176, -212, -211]), 'RETURN': ([14, 77, 78, 101, 106, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 172, 265, 266, 268, 273, 274, 283, 284, 287, 288, 290, 382, 383, 385, 396, 399, 400, 459, 461, 464, 465, 492, 493, 495, 496, 509, 520, 522, 524, 527, 528, 530], [-68, -83, -69, -308, 177, -309, 177, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 177, -202, -201, 177, 177, -218, 177, -80, -214, -215, -217, -203, 177, -205, -79, -213, -216, -204, 177, 177, 177, -206, -80, -208, -209, 177, -207, -210, 177, 177, -212, -211]), 'PLUSPLUS': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 127, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 168, 172, 177, 182, 183, 184, 185, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 326, 327, 329, 333, 334, 335, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 388, 396, 398, 399, 400, 423, 425, 426, 427, 428, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 464, 465, 466, 467, 469, 470, 471, 472, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 510, 511, 513, 515, 517, 520, 521, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 183, 183, -310, 183, -310, -28, -294, 183, -167, -309, 183, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, -294, 183, 183, 183, 183, 326, 183, 183, 183, 183, -266, -267, -268, -265, -271, -269, -270, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -310, 183, -310, -28, -266, 183, 183, -310, 183, 183, -202, -201, 183, 183, 183, -218, 183, 183, 183, 183, 183, -80, 183, -214, -215, -217, 183, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, -279, -280, 183, 183, -305, -307, -11, 183, -12, 183, -266, 183, 183, -310, 183, 183, 183, -203, 183, -205, 183, -287, -79, 183, -213, -216, -274, -275, -276, -277, -278, -310, -182, 183, -310, -28, -266, -204, 183, 183, -310, 183, 183, 183, 183, 183, -272, -273, 183, 183, -11, -266, 183, 183, -206, -80, -208, -209, 183, 183, -281, -310, 183, -288, 183, -207, -282, -210, 183, 183, -212, -211]), 'MINUSMINUS': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 127, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 168, 172, 177, 182, 183, 184, 185, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 326, 327, 329, 333, 334, 335, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 388, 396, 398, 399, 400, 423, 425, 426, 427, 428, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 464, 465, 466, 467, 469, 470, 471, 472, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 510, 511, 513, 515, 517, 520, 521, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 184, 184, -310, 184, -310, -28, -294, 184, -167, -309, 184, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, -294, 184, 184, 184, 184, 327, 184, 184, 184, 184, -266, -267, -268, -265, -271, -269, -270, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -310, 184, -310, -28, -266, 184, 184, -310, 184, 184, -202, -201, 184, 184, 184, -218, 184, 184, 184, 184, 184, -80, 184, -214, -215, -217, 184, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, -279, -280, 184, 184, -305, -307, -11, 184, -12, 184, -266, 184, 184, -310, 184, 184, 184, -203, 184, -205, 184, -287, -79, 184, -213, -216, -274, -275, -276, -277, -278, -310, -182, 184, -310, -28, -266, -204, 184, 184, -310, 184, 184, 184, 184, 184, -272, -273, 184, 184, -11, -266, 184, 184, -206, -80, -208, -209, 184, 184, -281, -310, 184, -288, 184, -207, -282, -210, 184, 184, -212, -211]), 'SIZEOF': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 168, 172, 177, 183, 184, 185, 187, 188, 189, 190, 191, 193, 194, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 396, 398, 399, 400, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 464, 465, 466, 467, 469, 472, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 511, 513, 517, 520, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 187, 187, -310, 187, -310, -28, 187, -167, -309, 187, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 187, 187, 187, 187, 187, 187, 187, 187, -266, -267, -268, -265, -269, -270, -310, 187, -310, -28, -266, 187, 187, -310, 187, 187, -202, -201, 187, 187, 187, -218, 187, 187, 187, 187, 187, -80, 187, -214, -215, -217, 187, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, -11, 187, -12, 187, -266, 187, 187, -310, 187, 187, 187, -203, 187, -205, 187, -79, 187, -213, -216, -310, -182, 187, -310, -28, -266, -204, 187, 187, -310, 187, 187, 187, 187, 187, 187, 187, -11, -266, 187, 187, -206, -80, -208, -209, 187, 187, -310, 187, 187, -207, -210, 187, 187, -212, -211]), 'AND': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 127, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 168, 172, 177, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 271, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 388, 396, 398, 399, 400, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 474, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 510, 511, 513, 515, 517, 520, 521, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 191, 191, -310, 191, -310, -28, -294, 191, -167, -309, 191, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, -294, 191, 191, 191, 191, -257, 317, -259, 191, 191, 191, -238, 191, -266, -267, -268, -265, -271, -269, -270, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -310, 191, -310, -28, -266, 191, 191, -310, 191, 191, -202, -201, 191, -257, 191, 191, -218, 191, 191, 191, 191, 191, -80, 191, -214, -215, -217, 191, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, -279, -280, -260, 191, -261, -262, -263, 191, -305, -307, -11, 191, -12, 191, -266, 191, 191, -310, 191, 191, 191, -203, 191, -205, 191, -287, -79, 191, -213, -216, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -252, 317, 317, 317, 317, -274, -275, -276, -277, -278, -310, -182, 191, -310, -28, -266, -204, 191, 191, -310, -258, 191, 191, 191, 191, 191, -272, -273, 191, -264, 191, -11, -266, 191, 191, -206, -80, -208, -209, 191, 191, -281, -310, 191, -288, 191, -207, -282, -210, 191, 191, -212, -211]), 'PLUS': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 127, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 168, 172, 177, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 271, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 388, 396, 398, 399, 400, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 474, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 510, 511, 513, 515, 517, 520, 521, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 189, 189, -310, 189, -310, -28, -294, 189, -167, -309, 189, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, -294, 189, 189, 189, 189, -257, 307, -259, 189, 189, 189, -238, 189, -266, -267, -268, -265, -271, -269, -270, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -310, 189, -310, -28, -266, 189, 189, -310, 189, 189, -202, -201, 189, -257, 189, 189, -218, 189, 189, 189, 189, 189, -80, 189, -214, -215, -217, 189, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, -279, -280, -260, 189, -261, -262, -263, 189, -305, -307, -11, 189, -12, 189, -266, 189, 189, -310, 189, 189, 189, -203, 189, -205, 189, -287, -79, 189, -213, -216, -239, -240, -241, -242, -243, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, -274, -275, -276, -277, -278, -310, -182, 189, -310, -28, -266, -204, 189, 189, -310, -258, 189, 189, 189, 189, 189, -272, -273, 189, -264, 189, -11, -266, 189, 189, -206, -80, -208, -209, 189, 189, -281, -310, 189, -288, 189, -207, -282, -210, 189, 189, -212, -211]), 'MINUS': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 127, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 168, 172, 177, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 271, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 388, 396, 398, 399, 400, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 463, 464, 465, 466, 467, 469, 470, 471, 472, 474, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 510, 511, 513, 515, 517, 520, 521, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 190, 190, -310, 190, -310, -28, -294, 190, -167, -309, 190, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, -294, 190, 190, 190, 190, -257, 308, -259, 190, 190, 190, -238, 190, -266, -267, -268, -265, -271, -269, -270, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -310, 190, -310, -28, -266, 190, 190, -310, 190, 190, -202, -201, 190, -257, 190, 190, -218, 190, 190, 190, 190, 190, -80, 190, -214, -215, -217, 190, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, -279, -280, -260, 190, -261, -262, -263, 190, -305, -307, -11, 190, -12, 190, -266, 190, 190, -310, 190, 190, 190, -203, 190, -205, 190, -287, -79, 190, -213, -216, -239, -240, -241, -242, -243, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, -274, -275, -276, -277, -278, -310, -182, 190, -310, -28, -266, -204, 190, 190, -310, -258, 190, 190, 190, 190, 190, -272, -273, 190, -264, 190, -11, -266, 190, 190, -206, -80, -208, -209, 190, 190, -281, -310, 190, -288, 190, -207, -282, -210, 190, 190, -212, -211]), 'NOT': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 168, 172, 177, 183, 184, 185, 187, 188, 189, 190, 191, 193, 194, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 396, 398, 399, 400, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 464, 465, 466, 467, 469, 472, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 511, 513, 517, 520, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 193, 193, -310, 193, -310, -28, 193, -167, -309, 193, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 193, 193, 193, 193, 193, 193, 193, 193, -266, -267, -268, -265, -269, -270, -310, 193, -310, -28, -266, 193, 193, -310, 193, 193, -202, -201, 193, 193, 193, -218, 193, 193, 193, 193, 193, -80, 193, -214, -215, -217, 193, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, 193, -11, 193, -12, 193, -266, 193, 193, -310, 193, 193, 193, -203, 193, -205, 193, -79, 193, -213, -216, -310, -182, 193, -310, -28, -266, -204, 193, 193, -310, 193, 193, 193, 193, 193, 193, 193, -11, -266, 193, 193, -206, -80, -208, -209, 193, 193, -310, 193, 193, -207, -210, 193, 193, -212, -211]), 'LNOT': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 168, 172, 177, 183, 184, 185, 187, 188, 189, 190, 191, 193, 194, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 396, 398, 399, 400, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 464, 465, 466, 467, 469, 472, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 511, 513, 517, 520, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 194, 194, -310, 194, -310, -28, 194, -167, -309, 194, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 194, 194, 194, 194, 194, 194, 194, 194, -266, -267, -268, -265, -269, -270, -310, 194, -310, -28, -266, 194, 194, -310, 194, 194, -202, -201, 194, 194, 194, -218, 194, 194, 194, 194, 194, -80, 194, -214, -215, -217, 194, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, 194, -11, 194, -12, 194, -266, 194, 194, -310, 194, 194, 194, -203, 194, -205, 194, -79, 194, -213, -216, -310, -182, 194, -310, -28, -266, -204, 194, 194, -310, 194, 194, 194, 194, 194, 194, 194, -11, -266, 194, 194, -206, -80, -208, -209, 194, 194, -310, 194, 194, -207, -210, 194, 194, -212, -211]), 'OFFSETOF': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 168, 172, 177, 183, 184, 185, 187, 188, 189, 190, 191, 193, 194, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 396, 398, 399, 400, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 464, 465, 466, 467, 469, 472, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 511, 513, 517, 520, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 199, 199, -310, 199, -310, -28, 199, -167, -309, 199, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 199, 199, 199, 199, 199, 199, 199, 199, -266, -267, -268, -265, -269, -270, -310, 199, -310, -28, -266, 199, 199, -310, 199, 199, -202, -201, 199, 199, 199, -218, 199, 199, 199, 199, 199, -80, 199, -214, -215, -217, 199, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, 199, -11, 199, -12, 199, -266, 199, 199, -310, 199, 199, 199, -203, 199, -205, 199, -79, 199, -213, -216, -310, -182, 199, -310, -28, -266, -204, 199, 199, -310, 199, 199, 199, 199, 199, 199, 199, -11, -266, 199, 199, -206, -80, -208, -209, 199, 199, -310, 199, 199, -207, -210, 199, 199, -212, -211]), 'INT_CONST_DEC': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 168, 172, 177, 183, 184, 185, 187, 188, 189, 190, 191, 193, 194, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 396, 398, 399, 400, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 464, 465, 466, 467, 469, 472, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 511, 513, 517, 520, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 200, 200, -310, 200, -310, -28, 200, -167, -309, 200, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 200, 200, 200, 200, 200, 200, 200, 200, -266, -267, -268, -265, -269, -270, -310, 200, -310, -28, -266, 200, 200, -310, 200, 200, -202, -201, 200, 200, 200, -218, 200, 200, 200, 200, 200, -80, 200, -214, -215, -217, 200, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, -11, 200, -12, 200, -266, 200, 200, -310, 200, 200, 200, -203, 200, -205, 200, -79, 200, -213, -216, -310, -182, 200, -310, -28, -266, -204, 200, 200, -310, 200, 200, 200, 200, 200, 200, 200, -11, -266, 200, 200, -206, -80, -208, -209, 200, 200, -310, 200, 200, -207, -210, 200, 200, -212, -211]), 'INT_CONST_OCT': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 168, 172, 177, 183, 184, 185, 187, 188, 189, 190, 191, 193, 194, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 396, 398, 399, 400, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 464, 465, 466, 467, 469, 472, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 511, 513, 517, 520, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 201, 201, -310, 201, -310, -28, 201, -167, -309, 201, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 201, 201, 201, 201, 201, 201, 201, 201, -266, -267, -268, -265, -269, -270, -310, 201, -310, -28, -266, 201, 201, -310, 201, 201, -202, -201, 201, 201, 201, -218, 201, 201, 201, 201, 201, -80, 201, -214, -215, -217, 201, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, -11, 201, -12, 201, -266, 201, 201, -310, 201, 201, 201, -203, 201, -205, 201, -79, 201, -213, -216, -310, -182, 201, -310, -28, -266, -204, 201, 201, -310, 201, 201, 201, 201, 201, 201, 201, -11, -266, 201, 201, -206, -80, -208, -209, 201, 201, -310, 201, 201, -207, -210, 201, 201, -212, -211]), 'INT_CONST_HEX': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 168, 172, 177, 183, 184, 185, 187, 188, 189, 190, 191, 193, 194, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 396, 398, 399, 400, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 464, 465, 466, 467, 469, 472, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 511, 513, 517, 520, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 202, 202, -310, 202, -310, -28, 202, -167, -309, 202, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 202, 202, 202, 202, 202, 202, 202, 202, -266, -267, -268, -265, -269, -270, -310, 202, -310, -28, -266, 202, 202, -310, 202, 202, -202, -201, 202, 202, 202, -218, 202, 202, 202, 202, 202, -80, 202, -214, -215, -217, 202, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, 202, -11, 202, -12, 202, -266, 202, 202, -310, 202, 202, 202, -203, 202, -205, 202, -79, 202, -213, -216, -310, -182, 202, -310, -28, -266, -204, 202, 202, -310, 202, 202, 202, 202, 202, 202, 202, -11, -266, 202, 202, -206, -80, -208, -209, 202, 202, -310, 202, 202, -207, -210, 202, 202, -212, -211]), 'INT_CONST_BIN': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 168, 172, 177, 183, 184, 185, 187, 188, 189, 190, 191, 193, 194, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 396, 398, 399, 400, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 464, 465, 466, 467, 469, 472, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 511, 513, 517, 520, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 203, 203, -310, 203, -310, -28, 203, -167, -309, 203, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 203, 203, 203, 203, 203, 203, 203, 203, -266, -267, -268, -265, -269, -270, -310, 203, -310, -28, -266, 203, 203, -310, 203, 203, -202, -201, 203, 203, 203, -218, 203, 203, 203, 203, 203, -80, 203, -214, -215, -217, 203, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, 203, -11, 203, -12, 203, -266, 203, 203, -310, 203, 203, 203, -203, 203, -205, 203, -79, 203, -213, -216, -310, -182, 203, -310, -28, -266, -204, 203, 203, -310, 203, 203, 203, 203, 203, 203, 203, -11, -266, 203, 203, -206, -80, -208, -209, 203, 203, -310, 203, 203, -207, -210, 203, 203, -212, -211]), 'INT_CONST_CHAR': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 168, 172, 177, 183, 184, 185, 187, 188, 189, 190, 191, 193, 194, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 396, 398, 399, 400, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 464, 465, 466, 467, 469, 472, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 511, 513, 517, 520, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 204, 204, -310, 204, -310, -28, 204, -167, -309, 204, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 204, 204, 204, 204, 204, 204, 204, 204, -266, -267, -268, -265, -269, -270, -310, 204, -310, -28, -266, 204, 204, -310, 204, 204, -202, -201, 204, 204, 204, -218, 204, 204, 204, 204, 204, -80, 204, -214, -215, -217, 204, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, 204, -11, 204, -12, 204, -266, 204, 204, -310, 204, 204, 204, -203, 204, -205, 204, -79, 204, -213, -216, -310, -182, 204, -310, -28, -266, -204, 204, 204, -310, 204, 204, 204, 204, 204, 204, 204, -11, -266, 204, 204, -206, -80, -208, -209, 204, 204, -310, 204, 204, -207, -210, 204, 204, -212, -211]), 'FLOAT_CONST': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 168, 172, 177, 183, 184, 185, 187, 188, 189, 190, 191, 193, 194, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 396, 398, 399, 400, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 464, 465, 466, 467, 469, 472, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 511, 513, 517, 520, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 205, 205, -310, 205, -310, -28, 205, -167, -309, 205, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 205, 205, 205, 205, 205, 205, 205, 205, -266, -267, -268, -265, -269, -270, -310, 205, -310, -28, -266, 205, 205, -310, 205, 205, -202, -201, 205, 205, 205, -218, 205, 205, 205, 205, 205, -80, 205, -214, -215, -217, 205, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, 205, -11, 205, -12, 205, -266, 205, 205, -310, 205, 205, 205, -203, 205, -205, 205, -79, 205, -213, -216, -310, -182, 205, -310, -28, -266, -204, 205, 205, -310, 205, 205, 205, 205, 205, 205, 205, -11, -266, 205, 205, -206, -80, -208, -209, 205, 205, -310, 205, 205, -207, -210, 205, 205, -212, -211]), 'HEX_FLOAT_CONST': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 168, 172, 177, 183, 184, 185, 187, 188, 189, 190, 191, 193, 194, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 396, 398, 399, 400, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 464, 465, 466, 467, 469, 472, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 511, 513, 517, 520, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 206, 206, -310, 206, -310, -28, 206, -167, -309, 206, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 206, 206, 206, 206, 206, 206, 206, 206, -266, -267, -268, -265, -269, -270, -310, 206, -310, -28, -266, 206, 206, -310, 206, 206, -202, -201, 206, 206, 206, -218, 206, 206, 206, 206, 206, -80, 206, -214, -215, -217, 206, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, 206, -11, 206, -12, 206, -266, 206, 206, -310, 206, 206, 206, -203, 206, -205, 206, -79, 206, -213, -216, -310, -182, 206, -310, -28, -266, -204, 206, 206, -310, 206, 206, 206, 206, 206, 206, 206, -11, -266, 206, 206, -206, -80, -208, -209, 206, 206, -310, 206, 206, -207, -210, 206, 206, -212, -211]), 'CHAR_CONST': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 168, 172, 177, 183, 184, 185, 187, 188, 189, 190, 191, 193, 194, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 396, 398, 399, 400, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 464, 465, 466, 467, 469, 472, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 511, 513, 517, 520, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 207, 207, -310, 207, -310, -28, 207, -167, -309, 207, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 207, 207, 207, 207, 207, 207, 207, 207, -266, -267, -268, -265, -269, -270, -310, 207, -310, -28, -266, 207, 207, -310, 207, 207, -202, -201, 207, 207, 207, -218, 207, 207, 207, 207, 207, -80, 207, -214, -215, -217, 207, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, 207, -11, 207, -12, 207, -266, 207, 207, -310, 207, 207, 207, -203, 207, -205, 207, -79, 207, -213, -216, -310, -182, 207, -310, -28, -266, -204, 207, 207, -310, 207, 207, 207, 207, 207, 207, 207, -11, -266, 207, 207, -206, -80, -208, -209, 207, 207, -310, 207, 207, -207, -210, 207, 207, -212, -211]), 'WCHAR_CONST': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 168, 172, 177, 183, 184, 185, 187, 188, 189, 190, 191, 193, 194, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 396, 398, 399, 400, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 464, 465, 466, 467, 469, 472, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 511, 513, 517, 520, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 208, 208, -310, 208, -310, -28, 208, -167, -309, 208, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 208, 208, 208, 208, 208, 208, 208, 208, -266, -267, -268, -265, -269, -270, -310, 208, -310, -28, -266, 208, 208, -310, 208, 208, -202, -201, 208, 208, 208, -218, 208, 208, 208, 208, 208, -80, 208, -214, -215, -217, 208, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, 208, -11, 208, -12, 208, -266, 208, 208, -310, 208, 208, 208, -203, 208, -205, 208, -79, 208, -213, -216, -310, -182, 208, -310, -28, -266, -204, 208, 208, -310, 208, 208, 208, 208, 208, 208, 208, -11, -266, 208, 208, -206, -80, -208, -209, 208, 208, -310, 208, 208, -207, -210, 208, 208, -212, -211]), 'STRING_LITERAL': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 168, 172, 177, 183, 184, 185, 187, 188, 189, 190, 191, 193, 194, 197, 209, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 334, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 396, 398, 399, 400, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 464, 465, 466, 467, 469, 472, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 511, 513, 517, 520, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 209, 209, -310, 209, -310, -28, 209, -167, -309, 209, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 209, 209, 209, 209, 209, 209, 209, 209, -266, -267, -268, -265, -269, -270, 334, -304, -310, 209, -310, -28, -266, 209, 209, -310, 209, 209, -202, -201, 209, 209, 209, -218, 209, 209, 209, 209, 209, -80, 209, -214, -215, -217, 209, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, 209, -305, -11, 209, -12, 209, -266, 209, 209, -310, 209, 209, 209, -203, 209, -205, 209, -79, 209, -213, -216, -310, -182, 209, -310, -28, -266, -204, 209, 209, -310, 209, 209, 209, 209, 209, 209, 209, -11, -266, 209, 209, -206, -80, -208, -209, 209, 209, -310, 209, 209, -207, -210, 209, 209, -212, -211]), 'WSTRING_LITERAL': ([14, 45, 46, 47, 77, 78, 79, 95, 96, 97, 101, 106, 113, 114, 116, 117, 118, 130, 133, 144, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 168, 172, 177, 183, 184, 185, 187, 188, 189, 190, 191, 193, 194, 198, 210, 216, 217, 218, 219, 223, 226, 227, 240, 249, 263, 265, 266, 268, 272, 273, 274, 275, 279, 280, 281, 283, 284, 285, 287, 288, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 335, 339, 340, 341, 344, 347, 348, 349, 361, 368, 370, 380, 382, 383, 385, 387, 396, 398, 399, 400, 433, 435, 445, 446, 447, 455, 459, 460, 461, 462, 464, 465, 466, 467, 469, 472, 477, 478, 483, 484, 485, 492, 493, 495, 496, 499, 509, 511, 513, 517, 520, 522, 524, 527, 528, 530], [-68, -117, -118, -119, -83, -69, -310, -27, -28, -166, -308, 210, 210, -310, 210, -310, -28, 210, -167, -309, 210, -200, -198, -199, -72, -73, -74, -75, -76, -77, -78, 210, 210, 210, 210, 210, 210, 210, 210, -266, -267, -268, -265, -269, -270, 335, -306, -310, 210, -310, -28, -266, 210, 210, -310, 210, 210, -202, -201, 210, 210, 210, -218, 210, 210, 210, 210, 210, -80, 210, -214, -215, -217, 210, -224, -225, -226, -227, -228, -229, -230, -231, -232, -233, -234, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, -307, -11, 210, -12, 210, -266, 210, 210, -310, 210, 210, 210, -203, 210, -205, 210, -79, 210, -213, -216, -310, -182, 210, -310, -28, -266, -204, 210, 210, -310, 210, 210, 210, 210, 210, 210, 210, -11, -266, 210, 210, -206, -80, -208, -209, 210, 210, -310, 210, 210, -207, -210, 210, 210, -212, -211]), 'ELSE': ([14, 78, 144, 156, 157, 158, 159, 160, 161, 162, 265, 274, 283, 284, 287, 288, 290, 382, 385, 396, 399, 400, 459, 492, 493, 495, 496, 520, 522, 528, 530], [-68, -69, -309, -72, -73, -74, -75, -76, -77, -78, -202, -218, -78, -80, -214, -215, -217, -203, -205, -79, -213, -216, -204, -206, 509, -208, -209, -207, -210, -212, -211]), 'PPPRAGMASTR': ([14], [78]), 'EQUALS': ([15, 23, 62, 73, 74, 75, 76, 81, 92, 108, 110, 127, 131, 138, 144, 163, 180, 182, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 213, 228, 229, 271, 326, 327, 328, 330, 331, 332, 334, 335, 342, 343, 350, 351, 352, 353, 388, 423, 425, 426, 427, 428, 436, 438, 439, 440, 443, 444, 463, 470, 471, 474, 479, 480, 481, 510, 515, 521], [-52, -29, -162, 113, -163, -54, -37, -53, 130, -162, -55, -294, -30, 249, -309, -294, 292, -259, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -38, -35, -36, -257, -279, -280, -260, -261, -262, -263, -305, -307, 435, -183, -43, -44, -31, -34, -287, -274, -275, -276, -277, -278, -184, -186, -39, -42, -32, -33, -258, -272, -273, -264, -185, -40, -41, -281, -288, -282]), 'COMMA': ([15, 20, 21, 23, 25, 26, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 62, 63, 64, 65, 66, 70, 72, 73, 74, 75, 76, 81, 87, 90, 91, 92, 94, 95, 96, 97, 98, 99, 102, 103, 108, 110, 121, 123, 124, 125, 126, 127, 131, 132, 133, 136, 137, 138, 142, 144, 148, 163, 169, 178, 179, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 212, 213, 214, 215, 228, 229, 232, 233, 234, 235, 236, 237, 238, 241, 242, 243, 244, 245, 246, 247, 248, 251, 253, 254, 257, 258, 260, 261, 262, 264, 270, 271, 277, 278, 289, 326, 327, 328, 330, 331, 332, 334, 335, 338, 350, 351, 352, 353, 357, 358, 359, 360, 372, 373, 374, 375, 376, 377, 381, 386, 388, 389, 390, 392, 393, 394, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 431, 432, 434, 439, 440, 443, 444, 450, 451, 453, 457, 458, 463, 470, 471, 474, 476, 480, 481, 486, 487, 488, 489, 490, 491, 494, 497, 500, 501, 504, 505, 506, 510, 515, 518, 519, 521, 526], [-52, -116, -93, -29, -97, -310, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -162, -89, -90, -91, -92, 111, -120, -122, -163, -54, -37, -53, -94, 129, -124, -126, -164, -27, -28, -166, -152, -153, -132, -133, -162, -55, 230, 231, -170, -175, -310, -294, -30, -165, -167, 248, -157, -160, -135, -309, -130, -294, 279, -219, -222, -257, -236, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -121, -38, -123, -177, -35, -36, -172, -173, -174, -188, -56, -1, -2, -45, -190, -125, -127, 248, 248, -154, -158, -137, -139, -134, -128, -129, 379, -147, -149, -131, -235, -257, 279, -310, 279, -279, -280, -260, -261, -262, -263, -305, -307, 433, -43, -44, -31, -34, -171, -176, -57, -189, -155, -156, -159, -161, -136, -138, -151, 279, -287, -187, -188, -220, 279, 279, -223, 279, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -252, -253, -254, -255, -256, 279, 472, -274, -292, -275, -276, -277, -278, 475, -178, -180, -39, -42, -32, -33, -191, -197, -195, -148, -150, -258, -272, -273, -264, -179, -40, -41, -50, -51, -193, -192, -194, -196, 511, 279, -237, -293, -181, -46, -49, -281, -288, -47, -48, -282, 279]), 'RPAREN': ([15, 20, 21, 23, 25, 26, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 63, 64, 65, 66, 75, 76, 80, 81, 87, 93, 94, 95, 96, 97, 98, 99, 102, 103, 110, 112, 115, 119, 120, 121, 122, 123, 124, 125, 126, 127, 131, 132, 133, 142, 144, 148, 169, 178, 179, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 213, 220, 221, 228, 229, 232, 233, 234, 235, 236, 237, 238, 239, 241, 242, 247, 251, 253, 254, 257, 258, 264, 267, 271, 276, 277, 278, 323, 326, 327, 328, 330, 331, 332, 334, 335, 350, 351, 352, 353, 356, 357, 358, 359, 360, 362, 363, 364, 365, 366, 367, 371, 372, 373, 376, 377, 384, 386, 388, 389, 390, 391, 392, 393, 394, 401, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 422, 423, 424, 425, 426, 427, 428, 429, 430, 439, 440, 443, 444, 448, 449, 450, 451, 453, 456, 463, 470, 471, 474, 480, 481, 486, 487, 488, 489, 490, 491, 497, 499, 500, 501, 502, 503, 505, 506, 510, 513, 514, 515, 518, 519, 521, 523, 525, 529], [-52, -116, -93, -29, -97, -310, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -89, -90, -91, -92, -54, -37, -310, -53, -94, 131, -164, -27, -28, -166, -152, -153, -132, -133, -55, 213, -310, 228, 229, -168, -17, -18, -170, -175, -310, -294, -30, -165, -167, -135, -309, -130, -14, -219, -222, -257, -236, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -38, 350, 351, -35, -36, -172, -173, -174, -188, -56, -1, -2, -310, -45, -190, -154, -137, -139, -134, -128, -129, -131, -13, -257, 387, 388, -310, 423, -279, -280, -260, -261, -262, -263, -305, -307, -43, -44, -31, -34, -169, -171, -176, -57, -189, -310, 450, 451, -188, -23, -24, -310, -155, -156, -136, -138, 460, 461, -287, -187, -188, -310, -220, 464, 465, -223, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -252, -253, -254, -255, -256, 471, -274, -292, -275, -276, -277, -278, 473, 474, -39, -42, -32, -33, 486, 487, -191, -197, -195, 491, -258, -272, -273, -264, -40, -41, -50, -51, -193, -192, -194, -196, 512, -310, -237, -293, 515, -289, -46, -49, -281, -310, 524, -288, -47, -48, -282, 527, -290, -291]), 'COLON': ([15, 20, 23, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 74, 75, 76, 81, 98, 99, 102, 103, 108, 110, 127, 131, 142, 144, 145, 148, 163, 165, 178, 179, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 213, 228, 229, 247, 251, 253, 254, 257, 258, 262, 264, 269, 270, 271, 326, 327, 328, 330, 331, 332, 334, 335, 350, 351, 352, 353, 372, 373, 376, 377, 379, 388, 392, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 439, 440, 443, 444, 463, 470, 471, 474, 480, 481, 500, 510, 515, 521], [-52, -116, -29, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -163, -54, -37, -53, -152, -153, -132, -133, -162, -55, -294, -30, -135, -309, 263, -130, 268, 273, -219, -222, -257, -236, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -38, -35, -36, -154, -137, -139, -134, -128, -129, 380, -131, 383, -235, -257, -279, -280, -260, -261, -262, -263, -305, -307, -43, -44, -31, -34, -155, -156, -136, -138, 263, -287, -220, -223, 469, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -252, -253, -254, -255, -256, -274, -275, -276, -277, -278, -39, -42, -32, -33, -258, -272, -273, -264, -40, -41, -237, -281, -288, -282]), 'LBRACKET': ([15, 20, 21, 23, 25, 26, 27, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 63, 64, 65, 66, 75, 76, 81, 87, 94, 95, 96, 97, 98, 99, 101, 102, 103, 110, 126, 127, 131, 132, 133, 142, 144, 148, 163, 182, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 213, 216, 228, 229, 235, 236, 239, 241, 242, 247, 251, 253, 254, 257, 258, 264, 278, 326, 327, 334, 335, 342, 343, 350, 351, 352, 353, 359, 360, 365, 372, 373, 376, 377, 388, 390, 391, 423, 425, 426, 427, 428, 433, 436, 438, 439, 440, 443, 444, 450, 451, 453, 462, 470, 471, 479, 480, 481, 486, 487, 488, 489, 490, 491, 502, 503, 505, 506, 510, 511, 515, 518, 519, 521, 525, 529], [79, -116, -93, -29, -97, -310, -113, -114, -115, -221, -101, -102, -103, -104, -105, -106, -107, -108, -109, -110, -111, -112, -117, -118, -119, -95, -96, -98, -99, -100, -89, -90, -91, -92, 114, -37, 79, -94, -164, -27, -28, -166, -152, -153, -308, -132, -133, 114, 240, -294, -30, -165, -167, -135, -309, -130, -294, 322, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -38, 344, -35, -36, 240, 361, 240, -45, 370, -154, -137, -139, -134, -128, -129, -131, 240, -279, -280, -305, -307, 344, -183, -43, -44, -31, -34, 361, 370, 240, -155, -156, -136, -138, -287, 240, 240, -274, -275, -276, -277, -278, 344, -184, -186, -39, -42, -32, -33, -191, -197, -195, 344, -272, -273, -185, -40, -41, -50, -51, -193, -192, -194, -196, 517, -289, -46, -49, -281, 344, -288, -47, -48, -282, -290, -291]), 'RBRACKET': ([45, 46, 47, 79, 95, 96, 97, 114, 116, 118, 127, 133, 144, 178, 179, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 217, 219, 222, 223, 224, 225, 240, 270, 271, 326, 327, 328, 330, 331, 332, 334, 335, 346, 347, 354, 355, 361, 368, 369, 370, 388, 392, 401, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 423, 425, 426, 427, 428, 437, 441, 442, 445, 447, 452, 454, 455, 463, 470, 471, 474, 482, 483, 500, 507, 508, 510, 515, 521, 526], [-117, -118, -119, -310, -27, -28, -166, -310, -310, -28, -294, -167, -309, -219, -222, -257, -236, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -310, -28, 352, 353, -3, -4, -310, -235, -257, -279, -280, -260, -261, -262, -263, -305, -307, 439, 440, 443, 444, -310, -310, 453, -310, -287, -220, -223, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -252, -253, -254, -255, -256, 470, -274, -275, -276, -277, -278, 479, 480, 481, -310, -28, 488, 489, 490, -258, -272, -273, -264, 505, 506, -237, 518, 519, -281, -288, -282, 529]), 'PERIOD': ([101, 127, 144, 163, 182, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 216, 326, 327, 334, 335, 342, 343, 388, 423, 425, 426, 427, 428, 433, 436, 438, 462, 470, 471, 479, 502, 503, 510, 511, 515, 521, 525, 529], [-308, -294, -309, -294, 324, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, 345, -279, -280, -305, -307, 345, -183, -287, -274, -275, -276, -277, -278, 345, -184, -186, 345, -272, -273, -185, 516, -289, -281, 345, -288, -282, -290, -291]), 'ARROW': ([127, 144, 163, 182, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 326, 327, 334, 335, 388, 423, 425, 426, 427, 428, 470, 471, 510, 515, 521], [-294, -309, -294, 325, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -279, -280, -305, -307, -287, -274, -275, -276, -277, -278, -272, -273, -281, -288, -282]), 'XOREQUAL': ([127, 144, 163, 180, 182, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, 293, -259, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'TIMESEQUAL': ([127, 144, 163, 180, 182, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, 294, -259, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'DIVEQUAL': ([127, 144, 163, 180, 182, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, 295, -259, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'MODEQUAL': ([127, 144, 163, 180, 182, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, 296, -259, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'PLUSEQUAL': ([127, 144, 163, 180, 182, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, 297, -259, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'MINUSEQUAL': ([127, 144, 163, 180, 182, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, 298, -259, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'LSHIFTEQUAL': ([127, 144, 163, 180, 182, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, 299, -259, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'RSHIFTEQUAL': ([127, 144, 163, 180, 182, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, 300, -259, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'ANDEQUAL': ([127, 144, 163, 180, 182, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, 301, -259, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'OREQUAL': ([127, 144, 163, 180, 182, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, 302, -259, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'CONDOP': ([127, 144, 163, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, -257, 303, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -252, -253, -254, -255, -256, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'DIVIDE': ([127, 144, 163, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, -257, 305, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -239, -240, -241, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'MOD': ([127, 144, 163, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, -257, 306, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -239, -240, -241, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'RSHIFT': ([127, 144, 163, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, -257, 309, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -239, -240, -241, -242, -243, -244, -245, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'LSHIFT': ([127, 144, 163, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, -257, 310, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -239, -240, -241, -242, -243, -244, -245, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'LT': ([127, 144, 163, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, -257, 311, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, 311, 311, 311, 311, 311, 311, 311, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'LE': ([127, 144, 163, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, -257, 312, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, 312, 312, 312, 312, 312, 312, 312, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'GE': ([127, 144, 163, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, -257, 313, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, 313, 313, 313, 313, 313, 313, 313, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'GT': ([127, 144, 163, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, -257, 314, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, 314, 314, 314, 314, 314, 314, 314, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'EQ': ([127, 144, 163, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, -257, 315, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, 315, 315, 315, 315, 315, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'NE': ([127, 144, 163, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, -257, 316, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, 316, 316, 316, 316, 316, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'OR': ([127, 144, 163, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, -257, 318, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -252, -253, -254, 318, 318, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'XOR': ([127, 144, 163, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, -257, 319, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -252, 319, -254, 319, 319, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'LAND': ([127, 144, 163, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, -257, 320, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -252, -253, -254, -255, 320, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'LOR': ([127, 144, 163, 180, 181, 182, 186, 192, 195, 196, 197, 198, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 271, 326, 327, 328, 330, 331, 332, 334, 335, 388, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 423, 425, 426, 427, 428, 463, 470, 471, 474, 510, 515, 521], [-294, -309, -294, -257, 321, -259, -238, -271, -283, -284, -285, -286, -295, -296, -297, -298, -299, -300, -301, -302, -303, -304, -306, -257, -279, -280, -260, -261, -262, -263, -305, -307, -287, -239, -240, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -252, -253, -254, -255, -256, -274, -275, -276, -277, -278, -258, -272, -273, -264, -281, -288, -282]), 'ELLIPSIS': ([230], [356])}
_lr_action = {}
for (_k, _v) in _lr_action_items.items():
for (_x, _y) in zip(_v[0], _v[1]):
if not _x in _lr_action:
_lr_action[_x] = {}
_lr_action[_x][_k] = _y
del _lr_action_items
_lr_goto_items = {'translation_unit_or_empty': ([0], [1]), 'translation_unit': ([0], [2]), 'empty': ([0, 10, 11, 17, 18, 19, 22, 26, 60, 61, 62, 79, 80, 106, 114, 115, 116, 117, 126, 145, 152, 172, 216, 217, 218, 239, 240, 268, 273, 278, 283, 285, 361, 362, 368, 370, 371, 383, 391, 398, 433, 445, 446, 461, 462, 464, 465, 467, 499, 509, 511, 513, 524, 527], [3, 57, 69, 83, 83, 83, 89, 95, 69, 89, 57, 95, 122, 151, 95, 122, 224, 95, 237, 259, 267, 267, 339, 224, 95, 366, 95, 267, 267, 237, 267, 267, 95, 122, 224, 224, 366, 267, 366, 267, 478, 224, 95, 267, 478, 267, 267, 267, 267, 267, 478, 267, 267, 267]), 'external_declaration': ([0, 2], [4, 55]), 'function_definition': ([0, 2], [5, 5]), 'declaration': ([0, 2, 10, 58, 62, 106, 152, 285], [6, 6, 59, 107, 59, 154, 154, 398]), 'pp_directive': ([0, 2], [7, 7]), 'pppragma_directive': ([0, 2, 104, 106, 139, 140, 141, 152, 172, 250, 252, 268, 273, 283, 383, 461, 464, 465, 509, 524, 527], [8, 8, 147, 162, 147, 147, 147, 162, 283, 147, 147, 283, 283, 162, 283, 283, 283, 283, 283, 283, 283]), 'id_declarator': ([0, 2, 11, 22, 24, 60, 61, 71, 111, 126, 129, 145, 239, 379], [10, 10, 62, 92, 93, 108, 92, 93, 108, 232, 108, 108, 93, 108]), 'declaration_specifiers': ([0, 2, 10, 58, 62, 80, 106, 115, 152, 230, 239, 285, 362, 371, 391], [11, 11, 60, 60, 60, 126, 60, 126, 60, 126, 126, 60, 126, 126, 126]), 'decl_body': ([0, 2, 10, 58, 62, 106, 152, 285], [12, 12, 12, 12, 12, 12, 12, 12]), 'direct_id_declarator': ([0, 2, 11, 16, 22, 24, 60, 61, 68, 71, 111, 126, 129, 145, 235, 239, 365, 379], [15, 15, 15, 81, 15, 15, 15, 15, 81, 15, 15, 15, 15, 15, 81, 15, 81, 15]), 'pointer': ([0, 2, 11, 22, 24, 60, 61, 71, 94, 111, 126, 129, 145, 239, 278, 379, 391], [16, 16, 68, 16, 16, 68, 16, 68, 132, 68, 235, 68, 68, 365, 390, 68, 390]), 'type_qualifier': ([0, 2, 10, 11, 17, 18, 19, 26, 58, 60, 62, 79, 80, 96, 104, 106, 114, 115, 117, 118, 126, 139, 140, 141, 145, 149, 152, 168, 218, 219, 230, 239, 240, 250, 252, 272, 278, 285, 329, 333, 336, 361, 362, 371, 391, 446, 447], [17, 17, 17, 63, 17, 17, 17, 97, 17, 63, 17, 97, 17, 133, 97, 17, 97, 17, 97, 133, 63, 97, 97, 97, 258, 133, 17, 97, 97, 133, 17, 17, 97, 97, 97, 97, 258, 17, 97, 97, 97, 97, 17, 17, 17, 97, 133]), 'storage_class_specifier': ([0, 2, 10, 11, 17, 18, 19, 58, 60, 62, 80, 106, 115, 126, 152, 230, 239, 285, 362, 371, 391], [18, 18, 18, 64, 18, 18, 18, 18, 64, 18, 18, 18, 18, 64, 18, 18, 18, 18, 18, 18, 18]), 'function_specifier': ([0, 2, 10, 11, 17, 18, 19, 58, 60, 62, 80, 106, 115, 126, 152, 230, 239, 285, 362, 371, 391], [19, 19, 19, 65, 19, 19, 19, 19, 65, 19, 19, 19, 19, 65, 19, 19, 19, 19, 19, 19, 19]), 'type_specifier_no_typeid': ([0, 2, 10, 11, 22, 58, 60, 61, 62, 80, 104, 106, 115, 126, 128, 139, 140, 141, 145, 149, 152, 168, 230, 239, 250, 252, 272, 278, 285, 329, 333, 336, 362, 371, 391], [20, 20, 20, 66, 20, 20, 66, 20, 20, 20, 20, 20, 20, 66, 20, 20, 20, 20, 257, 20, 20, 20, 20, 20, 20, 20, 20, 257, 20, 20, 20, 20, 20, 20, 20]), 'type_specifier': ([0, 2, 10, 22, 58, 61, 62, 80, 104, 106, 115, 128, 139, 140, 141, 149, 152, 168, 230, 239, 250, 252, 272, 285, 329, 333, 336, 362, 371, 391], [21, 21, 21, 87, 21, 87, 21, 21, 148, 21, 21, 87, 148, 148, 148, 264, 21, 148, 21, 21, 148, 148, 148, 21, 148, 148, 148, 21, 21, 21]), 'declaration_specifiers_no_type': ([0, 2, 10, 17, 18, 19, 58, 62, 80, 106, 115, 152, 230, 239, 285, 362, 371, 391], [22, 22, 61, 84, 84, 84, 61, 61, 128, 61, 128, 61, 128, 128, 61, 128, 128, 128]), 'typedef_name': ([0, 2, 10, 22, 58, 61, 62, 80, 104, 106, 115, 128, 139, 140, 141, 149, 152, 168, 230, 239, 250, 252, 272, 285, 329, 333, 336, 362, 371, 391], [27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27]), 'enum_specifier': ([0, 2, 10, 22, 58, 61, 62, 80, 104, 106, 115, 128, 139, 140, 141, 149, 152, 168, 230, 239, 250, 252, 272, 285, 329, 333, 336, 362, 371, 391], [28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28]), 'struct_or_union_specifier': ([0, 2, 10, 22, 58, 61, 62, 80, 104, 106, 115, 128, 139, 140, 141, 149, 152, 168, 230, 239, 250, 252, 272, 285, 329, 333, 336, 362, 371, 391], [29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29]), 'struct_or_union': ([0, 2, 10, 22, 58, 61, 62, 80, 104, 106, 115, 128, 139, 140, 141, 149, 152, 168, 230, 239, 250, 252, 272, 285, 329, 333, 336, 362, 371, 391], [32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32]), 'declaration_list_opt': ([10, 62], [56, 109]), 'declaration_list': ([10, 62], [58, 58]), 'init_declarator_list_opt': ([11, 60], [67, 67]), 'init_declarator_list': ([11, 60], [70, 70]), 'init_declarator': ([11, 60, 111, 129], [72, 72, 212, 243]), 'declarator': ([11, 60, 111, 129, 145, 379], [73, 73, 73, 73, 262, 262]), 'typeid_declarator': ([11, 60, 71, 111, 129, 145, 379], [74, 74, 112, 74, 74, 74, 74]), 'direct_typeid_declarator': ([11, 60, 68, 71, 111, 129, 145, 379], [75, 75, 110, 75, 75, 75, 75, 75]), 'declaration_specifiers_no_type_opt': ([17, 18, 19], [82, 85, 86]), 'id_init_declarator_list_opt': ([22, 61], [88, 88]), 'id_init_declarator_list': ([22, 61], [90, 90]), 'id_init_declarator': ([22, 61], [91, 91]), 'type_qualifier_list_opt': ([26, 79, 114, 117, 218, 240, 361, 446], [94, 116, 217, 226, 348, 368, 445, 484]), 'type_qualifier_list': ([26, 79, 104, 114, 117, 139, 140, 141, 168, 218, 240, 250, 252, 272, 329, 333, 336, 361, 446], [96, 118, 149, 219, 96, 149, 149, 149, 149, 96, 96, 149, 149, 149, 149, 149, 149, 447, 96]), 'brace_open': ([31, 32, 56, 98, 99, 102, 103, 106, 109, 113, 130, 152, 172, 268, 273, 283, 340, 383, 387, 460, 461, 464, 465, 473, 474, 477, 509, 524, 527], [100, 104, 106, 134, 135, 139, 140, 106, 106, 216, 216, 106, 106, 106, 106, 106, 216, 106, 462, 462, 106, 106, 106, 462, 462, 216, 106, 106, 106]), 'compound_statement': ([56, 106, 109, 152, 172, 268, 273, 283, 383, 461, 464, 465, 509, 524, 527], [105, 158, 211, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158]), 'parameter_type_list': ([80, 115, 239, 362, 371, 391], [119, 220, 367, 448, 367, 367]), 'identifier_list_opt': ([80, 115, 362], [120, 221, 449]), 'parameter_list': ([80, 115, 239, 362, 371, 391], [121, 121, 121, 121, 121, 121]), 'identifier_list': ([80, 115, 362], [123, 123, 123]), 'parameter_declaration': ([80, 115, 230, 239, 362, 371, 391], [124, 124, 357, 124, 124, 124, 124]), 'identifier': ([80, 106, 113, 115, 116, 130, 152, 164, 168, 172, 177, 183, 184, 185, 187, 217, 226, 227, 231, 249, 263, 268, 272, 273, 275, 279, 280, 281, 283, 285, 291, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 340, 344, 345, 348, 349, 362, 368, 370, 380, 383, 387, 398, 445, 460, 461, 464, 465, 466, 467, 469, 472, 475, 477, 484, 485, 499, 509, 513, 516, 517, 524, 527], [125, 195, 195, 125, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 358, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 438, 195, 195, 125, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 503, 195, 195, 195, 195, 195, 195, 525, 195, 195, 195]), 'enumerator_list': ([100, 134, 135], [136, 245, 246]), 'enumerator': ([100, 134, 135, 248], [137, 137, 137, 374]), 'struct_declaration_list': ([104, 139, 140], [141, 250, 252]), 'brace_close': ([104, 136, 139, 140, 141, 150, 245, 246, 250, 252, 337, 433, 494, 511], [142, 247, 251, 253, 254, 265, 372, 373, 376, 377, 432, 476, 510, 521]), 'struct_declaration': ([104, 139, 140, 141, 250, 252], [143, 143, 143, 255, 255, 255]), 'specifier_qualifier_list': ([104, 139, 140, 141, 168, 250, 252, 272, 329, 333, 336], [145, 145, 145, 145, 278, 145, 145, 278, 278, 278, 278]), 'block_item_list_opt': ([106], [150]), 'block_item_list': ([106], [152]), 'block_item': ([106, 152], [153, 266]), 'statement': ([106, 152, 172, 268, 273, 283, 383, 461, 464, 465, 509, 524, 527], [155, 155, 284, 284, 284, 396, 284, 493, 284, 284, 284, 284, 284]), 'labeled_statement': ([106, 152, 172, 268, 273, 283, 383, 461, 464, 465, 509, 524, 527], [156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156]), 'expression_statement': ([106, 152, 172, 268, 273, 283, 383, 461, 464, 465, 509, 524, 527], [157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157]), 'selection_statement': ([106, 152, 172, 268, 273, 283, 383, 461, 464, 465, 509, 524, 527], [159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159]), 'iteration_statement': ([106, 152, 172, 268, 273, 283, 383, 461, 464, 465, 509, 524, 527], [160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160]), 'jump_statement': ([106, 152, 172, 268, 273, 283, 383, 461, 464, 465, 509, 524, 527], [161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161]), 'expression_opt': ([106, 152, 172, 268, 273, 283, 285, 383, 398, 461, 464, 465, 467, 499, 509, 513, 524, 527], [166, 166, 166, 166, 166, 166, 397, 166, 468, 166, 166, 166, 498, 514, 166, 523, 166, 166]), 'expression': ([106, 152, 168, 172, 177, 268, 272, 273, 275, 280, 281, 283, 285, 303, 322, 329, 333, 383, 398, 461, 464, 465, 466, 467, 499, 509, 513, 517, 524, 527], [169, 169, 277, 169, 289, 169, 277, 169, 386, 393, 394, 169, 169, 402, 421, 277, 277, 169, 169, 169, 169, 169, 497, 169, 169, 169, 169, 526, 169, 169]), 'assignment_expression': ([106, 113, 116, 130, 152, 168, 172, 177, 217, 226, 227, 268, 272, 273, 275, 279, 280, 281, 283, 285, 291, 303, 322, 323, 329, 333, 340, 348, 349, 368, 370, 383, 398, 445, 461, 464, 465, 466, 467, 472, 477, 484, 485, 499, 509, 513, 517, 524, 527], [178, 215, 225, 215, 178, 178, 178, 178, 225, 354, 355, 178, 178, 178, 178, 392, 178, 178, 178, 178, 401, 178, 178, 424, 178, 178, 215, 441, 442, 225, 225, 178, 178, 225, 178, 178, 178, 178, 178, 501, 215, 507, 508, 178, 178, 178, 178, 178, 178]), 'conditional_expression': ([106, 113, 116, 130, 152, 164, 168, 172, 177, 217, 226, 227, 249, 263, 268, 272, 273, 275, 279, 280, 281, 283, 285, 291, 303, 322, 323, 329, 333, 340, 344, 348, 349, 368, 370, 380, 383, 398, 445, 461, 464, 465, 466, 467, 469, 472, 477, 484, 485, 499, 509, 513, 517, 524, 527], [179, 179, 179, 179, 179, 270, 179, 179, 179, 179, 179, 179, 270, 270, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 270, 179, 179, 179, 179, 270, 179, 179, 179, 179, 179, 179, 179, 179, 500, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179]), 'unary_expression': ([106, 113, 116, 130, 152, 164, 168, 172, 177, 183, 184, 185, 187, 217, 226, 227, 249, 263, 268, 272, 273, 275, 279, 280, 281, 283, 285, 291, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 340, 344, 348, 349, 368, 370, 380, 383, 387, 398, 445, 460, 461, 464, 465, 466, 467, 469, 472, 477, 484, 485, 499, 509, 513, 517, 524, 527], [180, 180, 180, 180, 180, 271, 180, 180, 180, 328, 330, 271, 332, 180, 180, 180, 271, 271, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 180, 180, 180, 180, 180, 271, 180, 180, 180, 180, 271, 180, 271, 180, 180, 271, 180, 180, 180, 180, 180, 271, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180]), 'binary_expression': ([106, 113, 116, 130, 152, 164, 168, 172, 177, 217, 226, 227, 249, 263, 268, 272, 273, 275, 279, 280, 281, 283, 285, 291, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 340, 344, 348, 349, 368, 370, 380, 383, 398, 445, 461, 464, 465, 466, 467, 469, 472, 477, 484, 485, 499, 509, 513, 517, 524, 527], [181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181]), 'postfix_expression': ([106, 113, 116, 130, 152, 164, 168, 172, 177, 183, 184, 185, 187, 217, 226, 227, 249, 263, 268, 272, 273, 275, 279, 280, 281, 283, 285, 291, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 340, 344, 348, 349, 368, 370, 380, 383, 387, 398, 445, 460, 461, 464, 465, 466, 467, 469, 472, 477, 484, 485, 499, 509, 513, 517, 524, 527], [182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182]), 'unary_operator': ([106, 113, 116, 130, 152, 164, 168, 172, 177, 183, 184, 185, 187, 217, 226, 227, 249, 263, 268, 272, 273, 275, 279, 280, 281, 283, 285, 291, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 340, 344, 348, 349, 368, 370, 380, 383, 387, 398, 445, 460, 461, 464, 465, 466, 467, 469, 472, 477, 484, 485, 499, 509, 513, 517, 524, 527], [185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185]), 'cast_expression': ([106, 113, 116, 130, 152, 164, 168, 172, 177, 185, 217, 226, 227, 249, 263, 268, 272, 273, 275, 279, 280, 281, 283, 285, 291, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 340, 344, 348, 349, 368, 370, 380, 383, 387, 398, 445, 460, 461, 464, 465, 466, 467, 469, 472, 477, 484, 485, 499, 509, 513, 517, 524, 527], [186, 186, 186, 186, 186, 186, 186, 186, 186, 331, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 463, 186, 186, 463, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186]), 'primary_expression': ([106, 113, 116, 130, 152, 164, 168, 172, 177, 183, 184, 185, 187, 217, 226, 227, 249, 263, 268, 272, 273, 275, 279, 280, 281, 283, 285, 291, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 340, 344, 348, 349, 368, 370, 380, 383, 387, 398, 445, 460, 461, 464, 465, 466, 467, 469, 472, 477, 484, 485, 499, 509, 513, 517, 524, 527], [192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192]), 'constant': ([106, 113, 116, 130, 152, 164, 168, 172, 177, 183, 184, 185, 187, 217, 226, 227, 249, 263, 268, 272, 273, 275, 279, 280, 281, 283, 285, 291, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 340, 344, 348, 349, 368, 370, 380, 383, 387, 398, 445, 460, 461, 464, 465, 466, 467, 469, 472, 477, 484, 485, 499, 509, 513, 517, 524, 527], [196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196, 196]), 'unified_string_literal': ([106, 113, 116, 130, 152, 164, 168, 172, 177, 183, 184, 185, 187, 217, 226, 227, 249, 263, 268, 272, 273, 275, 279, 280, 281, 283, 285, 291, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 340, 344, 348, 349, 368, 370, 380, 383, 387, 398, 445, 460, 461, 464, 465, 466, 467, 469, 472, 477, 484, 485, 499, 509, 513, 517, 524, 527], [197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197]), 'unified_wstring_literal': ([106, 113, 116, 130, 152, 164, 168, 172, 177, 183, 184, 185, 187, 217, 226, 227, 249, 263, 268, 272, 273, 275, 279, 280, 281, 283, 285, 291, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 329, 333, 340, 344, 348, 349, 368, 370, 380, 383, 387, 398, 445, 460, 461, 464, 465, 466, 467, 469, 472, 477, 484, 485, 499, 509, 513, 517, 524, 527], [198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198, 198]), 'initializer': ([113, 130, 340, 477], [214, 244, 434, 504]), 'assignment_expression_opt': ([116, 217, 368, 370, 445], [222, 346, 452, 454, 482]), 'typeid_noparen_declarator': ([126], [233]), 'abstract_declarator_opt': ([126, 278], [234, 389]), 'direct_typeid_noparen_declarator': ([126, 235], [236, 359]), 'abstract_declarator': ([126, 239, 278, 391], [238, 363, 238, 363]), 'direct_abstract_declarator': ([126, 235, 239, 278, 365, 390, 391], [242, 360, 242, 242, 360, 360, 242]), 'struct_declarator_list_opt': ([145], [256]), 'struct_declarator_list': ([145], [260]), 'struct_declarator': ([145, 379], [261, 457]), 'constant_expression': ([164, 249, 263, 344, 380], [269, 375, 381, 437, 458]), 'type_name': ([168, 272, 329, 333, 336], [276, 384, 429, 430, 431]), 'pragmacomp_or_statement': ([172, 268, 273, 383, 461, 464, 465, 509, 524, 527], [282, 382, 385, 459, 492, 495, 496, 520, 528, 530]), 'assignment_operator': ([180], [291]), 'initializer_list_opt': ([216], [337]), 'initializer_list': ([216, 462], [338, 494]), 'designation_opt': ([216, 433, 462, 511], [340, 477, 340, 477]), 'designation': ([216, 433, 462, 511], [341, 341, 341, 341]), 'designator_list': ([216, 433, 462, 511], [342, 342, 342, 342]), 'designator': ([216, 342, 433, 462, 511], [343, 436, 343, 343, 343]), 'parameter_type_list_opt': ([239, 371, 391], [364, 456, 364]), 'argument_expression_list': ([323], [422]), 'offsetof_member_designator': ([475], [502])}
_lr_goto = {}
for (_k, _v) in _lr_goto_items.items():
for (_x, _y) in zip(_v[0], _v[1]):
if not _x in _lr_goto:
_lr_goto[_x] = {}
_lr_goto[_x][_k] = _y
del _lr_goto_items
_lr_productions = [("S' -> translation_unit_or_empty", "S'", 1, None, None, None), ('abstract_declarator_opt -> empty', 'abstract_declarator_opt', 1, 'p_abstract_declarator_opt', 'plyparser.py', 43), ('abstract_declarator_opt -> abstract_declarator', 'abstract_declarator_opt', 1, 'p_abstract_declarator_opt', 'plyparser.py', 44), ('assignment_expression_opt -> empty', 'assignment_expression_opt', 1, 'p_assignment_expression_opt', 'plyparser.py', 43), ('assignment_expression_opt -> assignment_expression', 'assignment_expression_opt', 1, 'p_assignment_expression_opt', 'plyparser.py', 44), ('block_item_list_opt -> empty', 'block_item_list_opt', 1, 'p_block_item_list_opt', 'plyparser.py', 43), ('block_item_list_opt -> block_item_list', 'block_item_list_opt', 1, 'p_block_item_list_opt', 'plyparser.py', 44), ('declaration_list_opt -> empty', 'declaration_list_opt', 1, 'p_declaration_list_opt', 'plyparser.py', 43), ('declaration_list_opt -> declaration_list', 'declaration_list_opt', 1, 'p_declaration_list_opt', 'plyparser.py', 44), ('declaration_specifiers_no_type_opt -> empty', 'declaration_specifiers_no_type_opt', 1, 'p_declaration_specifiers_no_type_opt', 'plyparser.py', 43), ('declaration_specifiers_no_type_opt -> declaration_specifiers_no_type', 'declaration_specifiers_no_type_opt', 1, 'p_declaration_specifiers_no_type_opt', 'plyparser.py', 44), ('designation_opt -> empty', 'designation_opt', 1, 'p_designation_opt', 'plyparser.py', 43), ('designation_opt -> designation', 'designation_opt', 1, 'p_designation_opt', 'plyparser.py', 44), ('expression_opt -> empty', 'expression_opt', 1, 'p_expression_opt', 'plyparser.py', 43), ('expression_opt -> expression', 'expression_opt', 1, 'p_expression_opt', 'plyparser.py', 44), ('id_init_declarator_list_opt -> empty', 'id_init_declarator_list_opt', 1, 'p_id_init_declarator_list_opt', 'plyparser.py', 43), ('id_init_declarator_list_opt -> id_init_declarator_list', 'id_init_declarator_list_opt', 1, 'p_id_init_declarator_list_opt', 'plyparser.py', 44), ('identifier_list_opt -> empty', 'identifier_list_opt', 1, 'p_identifier_list_opt', 'plyparser.py', 43), ('identifier_list_opt -> identifier_list', 'identifier_list_opt', 1, 'p_identifier_list_opt', 'plyparser.py', 44), ('init_declarator_list_opt -> empty', 'init_declarator_list_opt', 1, 'p_init_declarator_list_opt', 'plyparser.py', 43), ('init_declarator_list_opt -> init_declarator_list', 'init_declarator_list_opt', 1, 'p_init_declarator_list_opt', 'plyparser.py', 44), ('initializer_list_opt -> empty', 'initializer_list_opt', 1, 'p_initializer_list_opt', 'plyparser.py', 43), ('initializer_list_opt -> initializer_list', 'initializer_list_opt', 1, 'p_initializer_list_opt', 'plyparser.py', 44), ('parameter_type_list_opt -> empty', 'parameter_type_list_opt', 1, 'p_parameter_type_list_opt', 'plyparser.py', 43), ('parameter_type_list_opt -> parameter_type_list', 'parameter_type_list_opt', 1, 'p_parameter_type_list_opt', 'plyparser.py', 44), ('struct_declarator_list_opt -> empty', 'struct_declarator_list_opt', 1, 'p_struct_declarator_list_opt', 'plyparser.py', 43), ('struct_declarator_list_opt -> struct_declarator_list', 'struct_declarator_list_opt', 1, 'p_struct_declarator_list_opt', 'plyparser.py', 44), ('type_qualifier_list_opt -> empty', 'type_qualifier_list_opt', 1, 'p_type_qualifier_list_opt', 'plyparser.py', 43), ('type_qualifier_list_opt -> type_qualifier_list', 'type_qualifier_list_opt', 1, 'p_type_qualifier_list_opt', 'plyparser.py', 44), ('direct_id_declarator -> ID', 'direct_id_declarator', 1, 'p_direct_id_declarator_1', 'plyparser.py', 126), ('direct_id_declarator -> LPAREN id_declarator RPAREN', 'direct_id_declarator', 3, 'p_direct_id_declarator_2', 'plyparser.py', 126), ('direct_id_declarator -> direct_id_declarator LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET', 'direct_id_declarator', 5, 'p_direct_id_declarator_3', 'plyparser.py', 126), ('direct_id_declarator -> direct_id_declarator LBRACKET STATIC type_qualifier_list_opt assignment_expression RBRACKET', 'direct_id_declarator', 6, 'p_direct_id_declarator_4', 'plyparser.py', 126), ('direct_id_declarator -> direct_id_declarator LBRACKET type_qualifier_list STATIC assignment_expression RBRACKET', 'direct_id_declarator', 6, 'p_direct_id_declarator_4', 'plyparser.py', 127), ('direct_id_declarator -> direct_id_declarator LBRACKET type_qualifier_list_opt TIMES RBRACKET', 'direct_id_declarator', 5, 'p_direct_id_declarator_5', 'plyparser.py', 126), ('direct_id_declarator -> direct_id_declarator LPAREN parameter_type_list RPAREN', 'direct_id_declarator', 4, 'p_direct_id_declarator_6', 'plyparser.py', 126), ('direct_id_declarator -> direct_id_declarator LPAREN identifier_list_opt RPAREN', 'direct_id_declarator', 4, 'p_direct_id_declarator_6', 'plyparser.py', 127), ('direct_typeid_declarator -> TYPEID', 'direct_typeid_declarator', 1, 'p_direct_typeid_declarator_1', 'plyparser.py', 126), ('direct_typeid_declarator -> LPAREN typeid_declarator RPAREN', 'direct_typeid_declarator', 3, 'p_direct_typeid_declarator_2', 'plyparser.py', 126), ('direct_typeid_declarator -> direct_typeid_declarator LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET', 'direct_typeid_declarator', 5, 'p_direct_typeid_declarator_3', 'plyparser.py', 126), ('direct_typeid_declarator -> direct_typeid_declarator LBRACKET STATIC type_qualifier_list_opt assignment_expression RBRACKET', 'direct_typeid_declarator', 6, 'p_direct_typeid_declarator_4', 'plyparser.py', 126), ('direct_typeid_declarator -> direct_typeid_declarator LBRACKET type_qualifier_list STATIC assignment_expression RBRACKET', 'direct_typeid_declarator', 6, 'p_direct_typeid_declarator_4', 'plyparser.py', 127), ('direct_typeid_declarator -> direct_typeid_declarator LBRACKET type_qualifier_list_opt TIMES RBRACKET', 'direct_typeid_declarator', 5, 'p_direct_typeid_declarator_5', 'plyparser.py', 126), ('direct_typeid_declarator -> direct_typeid_declarator LPAREN parameter_type_list RPAREN', 'direct_typeid_declarator', 4, 'p_direct_typeid_declarator_6', 'plyparser.py', 126), ('direct_typeid_declarator -> direct_typeid_declarator LPAREN identifier_list_opt RPAREN', 'direct_typeid_declarator', 4, 'p_direct_typeid_declarator_6', 'plyparser.py', 127), ('direct_typeid_noparen_declarator -> TYPEID', 'direct_typeid_noparen_declarator', 1, 'p_direct_typeid_noparen_declarator_1', 'plyparser.py', 126), ('direct_typeid_noparen_declarator -> direct_typeid_noparen_declarator LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET', 'direct_typeid_noparen_declarator', 5, 'p_direct_typeid_noparen_declarator_3', 'plyparser.py', 126), ('direct_typeid_noparen_declarator -> direct_typeid_noparen_declarator LBRACKET STATIC type_qualifier_list_opt assignment_expression RBRACKET', 'direct_typeid_noparen_declarator', 6, 'p_direct_typeid_noparen_declarator_4', 'plyparser.py', 126), ('direct_typeid_noparen_declarator -> direct_typeid_noparen_declarator LBRACKET type_qualifier_list STATIC assignment_expression RBRACKET', 'direct_typeid_noparen_declarator', 6, 'p_direct_typeid_noparen_declarator_4', 'plyparser.py', 127), ('direct_typeid_noparen_declarator -> direct_typeid_noparen_declarator LBRACKET type_qualifier_list_opt TIMES RBRACKET', 'direct_typeid_noparen_declarator', 5, 'p_direct_typeid_noparen_declarator_5', 'plyparser.py', 126), ('direct_typeid_noparen_declarator -> direct_typeid_noparen_declarator LPAREN parameter_type_list RPAREN', 'direct_typeid_noparen_declarator', 4, 'p_direct_typeid_noparen_declarator_6', 'plyparser.py', 126), ('direct_typeid_noparen_declarator -> direct_typeid_noparen_declarator LPAREN identifier_list_opt RPAREN', 'direct_typeid_noparen_declarator', 4, 'p_direct_typeid_noparen_declarator_6', 'plyparser.py', 127), ('id_declarator -> direct_id_declarator', 'id_declarator', 1, 'p_id_declarator_1', 'plyparser.py', 126), ('id_declarator -> pointer direct_id_declarator', 'id_declarator', 2, 'p_id_declarator_2', 'plyparser.py', 126), ('typeid_declarator -> direct_typeid_declarator', 'typeid_declarator', 1, 'p_typeid_declarator_1', 'plyparser.py', 126), ('typeid_declarator -> pointer direct_typeid_declarator', 'typeid_declarator', 2, 'p_typeid_declarator_2', 'plyparser.py', 126), ('typeid_noparen_declarator -> direct_typeid_noparen_declarator', 'typeid_noparen_declarator', 1, 'p_typeid_noparen_declarator_1', 'plyparser.py', 126), ('typeid_noparen_declarator -> pointer direct_typeid_noparen_declarator', 'typeid_noparen_declarator', 2, 'p_typeid_noparen_declarator_2', 'plyparser.py', 126), ('translation_unit_or_empty -> translation_unit', 'translation_unit_or_empty', 1, 'p_translation_unit_or_empty', 'c_parser.py', 517), ('translation_unit_or_empty -> empty', 'translation_unit_or_empty', 1, 'p_translation_unit_or_empty', 'c_parser.py', 518), ('translation_unit -> external_declaration', 'translation_unit', 1, 'p_translation_unit_1', 'c_parser.py', 526), ('translation_unit -> translation_unit external_declaration', 'translation_unit', 2, 'p_translation_unit_2', 'c_parser.py', 533), ('external_declaration -> function_definition', 'external_declaration', 1, 'p_external_declaration_1', 'c_parser.py', 544), ('external_declaration -> declaration', 'external_declaration', 1, 'p_external_declaration_2', 'c_parser.py', 549), ('external_declaration -> pp_directive', 'external_declaration', 1, 'p_external_declaration_3', 'c_parser.py', 554), ('external_declaration -> pppragma_directive', 'external_declaration', 1, 'p_external_declaration_3', 'c_parser.py', 555), ('external_declaration -> SEMI', 'external_declaration', 1, 'p_external_declaration_4', 'c_parser.py', 560), ('pp_directive -> PPHASH', 'pp_directive', 1, 'p_pp_directive', 'c_parser.py', 565), ('pppragma_directive -> PPPRAGMA', 'pppragma_directive', 1, 'p_pppragma_directive', 'c_parser.py', 571), ('pppragma_directive -> PPPRAGMA PPPRAGMASTR', 'pppragma_directive', 2, 'p_pppragma_directive', 'c_parser.py', 572), ('function_definition -> id_declarator declaration_list_opt compound_statement', 'function_definition', 3, 'p_function_definition_1', 'c_parser.py', 583), ('function_definition -> declaration_specifiers id_declarator declaration_list_opt compound_statement', 'function_definition', 4, 'p_function_definition_2', 'c_parser.py', 600), ('statement -> labeled_statement', 'statement', 1, 'p_statement', 'c_parser.py', 611), ('statement -> expression_statement', 'statement', 1, 'p_statement', 'c_parser.py', 612), ('statement -> compound_statement', 'statement', 1, 'p_statement', 'c_parser.py', 613), ('statement -> selection_statement', 'statement', 1, 'p_statement', 'c_parser.py', 614), ('statement -> iteration_statement', 'statement', 1, 'p_statement', 'c_parser.py', 615), ('statement -> jump_statement', 'statement', 1, 'p_statement', 'c_parser.py', 616), ('statement -> pppragma_directive', 'statement', 1, 'p_statement', 'c_parser.py', 617), ('pragmacomp_or_statement -> pppragma_directive statement', 'pragmacomp_or_statement', 2, 'p_pragmacomp_or_statement', 'c_parser.py', 664), ('pragmacomp_or_statement -> statement', 'pragmacomp_or_statement', 1, 'p_pragmacomp_or_statement', 'c_parser.py', 665), ('decl_body -> declaration_specifiers init_declarator_list_opt', 'decl_body', 2, 'p_decl_body', 'c_parser.py', 684), ('decl_body -> declaration_specifiers_no_type id_init_declarator_list_opt', 'decl_body', 2, 'p_decl_body', 'c_parser.py', 685), ('declaration -> decl_body SEMI', 'declaration', 2, 'p_declaration', 'c_parser.py', 744), ('declaration_list -> declaration', 'declaration_list', 1, 'p_declaration_list', 'c_parser.py', 753), ('declaration_list -> declaration_list declaration', 'declaration_list', 2, 'p_declaration_list', 'c_parser.py', 754), ('declaration_specifiers_no_type -> type_qualifier declaration_specifiers_no_type_opt', 'declaration_specifiers_no_type', 2, 'p_declaration_specifiers_no_type_1', 'c_parser.py', 764), ('declaration_specifiers_no_type -> storage_class_specifier declaration_specifiers_no_type_opt', 'declaration_specifiers_no_type', 2, 'p_declaration_specifiers_no_type_2', 'c_parser.py', 769), ('declaration_specifiers_no_type -> function_specifier declaration_specifiers_no_type_opt', 'declaration_specifiers_no_type', 2, 'p_declaration_specifiers_no_type_3', 'c_parser.py', 774), ('declaration_specifiers -> declaration_specifiers type_qualifier', 'declaration_specifiers', 2, 'p_declaration_specifiers_1', 'c_parser.py', 780), ('declaration_specifiers -> declaration_specifiers storage_class_specifier', 'declaration_specifiers', 2, 'p_declaration_specifiers_2', 'c_parser.py', 785), ('declaration_specifiers -> declaration_specifiers function_specifier', 'declaration_specifiers', 2, 'p_declaration_specifiers_3', 'c_parser.py', 790), ('declaration_specifiers -> declaration_specifiers type_specifier_no_typeid', 'declaration_specifiers', 2, 'p_declaration_specifiers_4', 'c_parser.py', 795), ('declaration_specifiers -> type_specifier', 'declaration_specifiers', 1, 'p_declaration_specifiers_5', 'c_parser.py', 800), ('declaration_specifiers -> declaration_specifiers_no_type type_specifier', 'declaration_specifiers', 2, 'p_declaration_specifiers_6', 'c_parser.py', 805), ('storage_class_specifier -> AUTO', 'storage_class_specifier', 1, 'p_storage_class_specifier', 'c_parser.py', 811), ('storage_class_specifier -> REGISTER', 'storage_class_specifier', 1, 'p_storage_class_specifier', 'c_parser.py', 812), ('storage_class_specifier -> STATIC', 'storage_class_specifier', 1, 'p_storage_class_specifier', 'c_parser.py', 813), ('storage_class_specifier -> EXTERN', 'storage_class_specifier', 1, 'p_storage_class_specifier', 'c_parser.py', 814), ('storage_class_specifier -> TYPEDEF', 'storage_class_specifier', 1, 'p_storage_class_specifier', 'c_parser.py', 815), ('function_specifier -> INLINE', 'function_specifier', 1, 'p_function_specifier', 'c_parser.py', 820), ('type_specifier_no_typeid -> VOID', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 825), ('type_specifier_no_typeid -> _BOOL', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 826), ('type_specifier_no_typeid -> CHAR', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 827), ('type_specifier_no_typeid -> SHORT', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 828), ('type_specifier_no_typeid -> INT', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 829), ('type_specifier_no_typeid -> LONG', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 830), ('type_specifier_no_typeid -> FLOAT', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 831), ('type_specifier_no_typeid -> DOUBLE', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 832), ('type_specifier_no_typeid -> _COMPLEX', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 833), ('type_specifier_no_typeid -> SIGNED', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 834), ('type_specifier_no_typeid -> UNSIGNED', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 835), ('type_specifier_no_typeid -> __INT128', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 836), ('type_specifier -> typedef_name', 'type_specifier', 1, 'p_type_specifier', 'c_parser.py', 841), ('type_specifier -> enum_specifier', 'type_specifier', 1, 'p_type_specifier', 'c_parser.py', 842), ('type_specifier -> struct_or_union_specifier', 'type_specifier', 1, 'p_type_specifier', 'c_parser.py', 843), ('type_specifier -> type_specifier_no_typeid', 'type_specifier', 1, 'p_type_specifier', 'c_parser.py', 844), ('type_qualifier -> CONST', 'type_qualifier', 1, 'p_type_qualifier', 'c_parser.py', 849), ('type_qualifier -> RESTRICT', 'type_qualifier', 1, 'p_type_qualifier', 'c_parser.py', 850), ('type_qualifier -> VOLATILE', 'type_qualifier', 1, 'p_type_qualifier', 'c_parser.py', 851), ('init_declarator_list -> init_declarator', 'init_declarator_list', 1, 'p_init_declarator_list', 'c_parser.py', 856), ('init_declarator_list -> init_declarator_list COMMA init_declarator', 'init_declarator_list', 3, 'p_init_declarator_list', 'c_parser.py', 857), ('init_declarator -> declarator', 'init_declarator', 1, 'p_init_declarator', 'c_parser.py', 865), ('init_declarator -> declarator EQUALS initializer', 'init_declarator', 3, 'p_init_declarator', 'c_parser.py', 866), ('id_init_declarator_list -> id_init_declarator', 'id_init_declarator_list', 1, 'p_id_init_declarator_list', 'c_parser.py', 871), ('id_init_declarator_list -> id_init_declarator_list COMMA init_declarator', 'id_init_declarator_list', 3, 'p_id_init_declarator_list', 'c_parser.py', 872), ('id_init_declarator -> id_declarator', 'id_init_declarator', 1, 'p_id_init_declarator', 'c_parser.py', 877), ('id_init_declarator -> id_declarator EQUALS initializer', 'id_init_declarator', 3, 'p_id_init_declarator', 'c_parser.py', 878), ('specifier_qualifier_list -> specifier_qualifier_list type_specifier_no_typeid', 'specifier_qualifier_list', 2, 'p_specifier_qualifier_list_1', 'c_parser.py', 885), ('specifier_qualifier_list -> specifier_qualifier_list type_qualifier', 'specifier_qualifier_list', 2, 'p_specifier_qualifier_list_2', 'c_parser.py', 890), ('specifier_qualifier_list -> type_specifier', 'specifier_qualifier_list', 1, 'p_specifier_qualifier_list_3', 'c_parser.py', 895), ('specifier_qualifier_list -> type_qualifier_list type_specifier', 'specifier_qualifier_list', 2, 'p_specifier_qualifier_list_4', 'c_parser.py', 900), ('struct_or_union_specifier -> struct_or_union ID', 'struct_or_union_specifier', 2, 'p_struct_or_union_specifier_1', 'c_parser.py', 909), ('struct_or_union_specifier -> struct_or_union TYPEID', 'struct_or_union_specifier', 2, 'p_struct_or_union_specifier_1', 'c_parser.py', 910), ('struct_or_union_specifier -> struct_or_union brace_open struct_declaration_list brace_close', 'struct_or_union_specifier', 4, 'p_struct_or_union_specifier_2', 'c_parser.py', 920), ('struct_or_union_specifier -> struct_or_union brace_open brace_close', 'struct_or_union_specifier', 3, 'p_struct_or_union_specifier_2', 'c_parser.py', 921), ('struct_or_union_specifier -> struct_or_union ID brace_open struct_declaration_list brace_close', 'struct_or_union_specifier', 5, 'p_struct_or_union_specifier_3', 'c_parser.py', 938), ('struct_or_union_specifier -> struct_or_union ID brace_open brace_close', 'struct_or_union_specifier', 4, 'p_struct_or_union_specifier_3', 'c_parser.py', 939), ('struct_or_union_specifier -> struct_or_union TYPEID brace_open struct_declaration_list brace_close', 'struct_or_union_specifier', 5, 'p_struct_or_union_specifier_3', 'c_parser.py', 940), ('struct_or_union_specifier -> struct_or_union TYPEID brace_open brace_close', 'struct_or_union_specifier', 4, 'p_struct_or_union_specifier_3', 'c_parser.py', 941), ('struct_or_union -> STRUCT', 'struct_or_union', 1, 'p_struct_or_union', 'c_parser.py', 957), ('struct_or_union -> UNION', 'struct_or_union', 1, 'p_struct_or_union', 'c_parser.py', 958), ('struct_declaration_list -> struct_declaration', 'struct_declaration_list', 1, 'p_struct_declaration_list', 'c_parser.py', 965), ('struct_declaration_list -> struct_declaration_list struct_declaration', 'struct_declaration_list', 2, 'p_struct_declaration_list', 'c_parser.py', 966), ('struct_declaration -> specifier_qualifier_list struct_declarator_list_opt SEMI', 'struct_declaration', 3, 'p_struct_declaration_1', 'c_parser.py', 974), ('struct_declaration -> SEMI', 'struct_declaration', 1, 'p_struct_declaration_2', 'c_parser.py', 1012), ('struct_declaration -> pppragma_directive', 'struct_declaration', 1, 'p_struct_declaration_3', 'c_parser.py', 1017), ('struct_declarator_list -> struct_declarator', 'struct_declarator_list', 1, 'p_struct_declarator_list', 'c_parser.py', 1022), ('struct_declarator_list -> struct_declarator_list COMMA struct_declarator', 'struct_declarator_list', 3, 'p_struct_declarator_list', 'c_parser.py', 1023), ('struct_declarator -> declarator', 'struct_declarator', 1, 'p_struct_declarator_1', 'c_parser.py', 1031), ('struct_declarator -> declarator COLON constant_expression', 'struct_declarator', 3, 'p_struct_declarator_2', 'c_parser.py', 1036), ('struct_declarator -> COLON constant_expression', 'struct_declarator', 2, 'p_struct_declarator_2', 'c_parser.py', 1037), ('enum_specifier -> ENUM ID', 'enum_specifier', 2, 'p_enum_specifier_1', 'c_parser.py', 1045), ('enum_specifier -> ENUM TYPEID', 'enum_specifier', 2, 'p_enum_specifier_1', 'c_parser.py', 1046), ('enum_specifier -> ENUM brace_open enumerator_list brace_close', 'enum_specifier', 4, 'p_enum_specifier_2', 'c_parser.py', 1051), ('enum_specifier -> ENUM ID brace_open enumerator_list brace_close', 'enum_specifier', 5, 'p_enum_specifier_3', 'c_parser.py', 1056), ('enum_specifier -> ENUM TYPEID brace_open enumerator_list brace_close', 'enum_specifier', 5, 'p_enum_specifier_3', 'c_parser.py', 1057), ('enumerator_list -> enumerator', 'enumerator_list', 1, 'p_enumerator_list', 'c_parser.py', 1062), ('enumerator_list -> enumerator_list COMMA', 'enumerator_list', 2, 'p_enumerator_list', 'c_parser.py', 1063), ('enumerator_list -> enumerator_list COMMA enumerator', 'enumerator_list', 3, 'p_enumerator_list', 'c_parser.py', 1064), ('enumerator -> ID', 'enumerator', 1, 'p_enumerator', 'c_parser.py', 1075), ('enumerator -> ID EQUALS constant_expression', 'enumerator', 3, 'p_enumerator', 'c_parser.py', 1076), ('declarator -> id_declarator', 'declarator', 1, 'p_declarator', 'c_parser.py', 1091), ('declarator -> typeid_declarator', 'declarator', 1, 'p_declarator', 'c_parser.py', 1092), ('pointer -> TIMES type_qualifier_list_opt', 'pointer', 2, 'p_pointer', 'c_parser.py', 1203), ('pointer -> TIMES type_qualifier_list_opt pointer', 'pointer', 3, 'p_pointer', 'c_parser.py', 1204), ('type_qualifier_list -> type_qualifier', 'type_qualifier_list', 1, 'p_type_qualifier_list', 'c_parser.py', 1233), ('type_qualifier_list -> type_qualifier_list type_qualifier', 'type_qualifier_list', 2, 'p_type_qualifier_list', 'c_parser.py', 1234), ('parameter_type_list -> parameter_list', 'parameter_type_list', 1, 'p_parameter_type_list', 'c_parser.py', 1239), ('parameter_type_list -> parameter_list COMMA ELLIPSIS', 'parameter_type_list', 3, 'p_parameter_type_list', 'c_parser.py', 1240), ('parameter_list -> parameter_declaration', 'parameter_list', 1, 'p_parameter_list', 'c_parser.py', 1248), ('parameter_list -> parameter_list COMMA parameter_declaration', 'parameter_list', 3, 'p_parameter_list', 'c_parser.py', 1249), ('parameter_declaration -> declaration_specifiers id_declarator', 'parameter_declaration', 2, 'p_parameter_declaration_1', 'c_parser.py', 1268), ('parameter_declaration -> declaration_specifiers typeid_noparen_declarator', 'parameter_declaration', 2, 'p_parameter_declaration_1', 'c_parser.py', 1269), ('parameter_declaration -> declaration_specifiers abstract_declarator_opt', 'parameter_declaration', 2, 'p_parameter_declaration_2', 'c_parser.py', 1280), ('identifier_list -> identifier', 'identifier_list', 1, 'p_identifier_list', 'c_parser.py', 1311), ('identifier_list -> identifier_list COMMA identifier', 'identifier_list', 3, 'p_identifier_list', 'c_parser.py', 1312), ('initializer -> assignment_expression', 'initializer', 1, 'p_initializer_1', 'c_parser.py', 1321), ('initializer -> brace_open initializer_list_opt brace_close', 'initializer', 3, 'p_initializer_2', 'c_parser.py', 1326), ('initializer -> brace_open initializer_list COMMA brace_close', 'initializer', 4, 'p_initializer_2', 'c_parser.py', 1327), ('initializer_list -> designation_opt initializer', 'initializer_list', 2, 'p_initializer_list', 'c_parser.py', 1335), ('initializer_list -> initializer_list COMMA designation_opt initializer', 'initializer_list', 4, 'p_initializer_list', 'c_parser.py', 1336), ('designation -> designator_list EQUALS', 'designation', 2, 'p_designation', 'c_parser.py', 1347), ('designator_list -> designator', 'designator_list', 1, 'p_designator_list', 'c_parser.py', 1355), ('designator_list -> designator_list designator', 'designator_list', 2, 'p_designator_list', 'c_parser.py', 1356), ('designator -> LBRACKET constant_expression RBRACKET', 'designator', 3, 'p_designator', 'c_parser.py', 1361), ('designator -> PERIOD identifier', 'designator', 2, 'p_designator', 'c_parser.py', 1362), ('type_name -> specifier_qualifier_list abstract_declarator_opt', 'type_name', 2, 'p_type_name', 'c_parser.py', 1367), ('abstract_declarator -> pointer', 'abstract_declarator', 1, 'p_abstract_declarator_1', 'c_parser.py', 1378), ('abstract_declarator -> pointer direct_abstract_declarator', 'abstract_declarator', 2, 'p_abstract_declarator_2', 'c_parser.py', 1386), ('abstract_declarator -> direct_abstract_declarator', 'abstract_declarator', 1, 'p_abstract_declarator_3', 'c_parser.py', 1391), ('direct_abstract_declarator -> LPAREN abstract_declarator RPAREN', 'direct_abstract_declarator', 3, 'p_direct_abstract_declarator_1', 'c_parser.py', 1401), ('direct_abstract_declarator -> direct_abstract_declarator LBRACKET assignment_expression_opt RBRACKET', 'direct_abstract_declarator', 4, 'p_direct_abstract_declarator_2', 'c_parser.py', 1405), ('direct_abstract_declarator -> LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET', 'direct_abstract_declarator', 4, 'p_direct_abstract_declarator_3', 'c_parser.py', 1416), ('direct_abstract_declarator -> direct_abstract_declarator LBRACKET TIMES RBRACKET', 'direct_abstract_declarator', 4, 'p_direct_abstract_declarator_4', 'c_parser.py', 1426), ('direct_abstract_declarator -> LBRACKET TIMES RBRACKET', 'direct_abstract_declarator', 3, 'p_direct_abstract_declarator_5', 'c_parser.py', 1437), ('direct_abstract_declarator -> direct_abstract_declarator LPAREN parameter_type_list_opt RPAREN', 'direct_abstract_declarator', 4, 'p_direct_abstract_declarator_6', 'c_parser.py', 1446), ('direct_abstract_declarator -> LPAREN parameter_type_list_opt RPAREN', 'direct_abstract_declarator', 3, 'p_direct_abstract_declarator_7', 'c_parser.py', 1456), ('block_item -> declaration', 'block_item', 1, 'p_block_item', 'c_parser.py', 1467), ('block_item -> statement', 'block_item', 1, 'p_block_item', 'c_parser.py', 1468), ('block_item_list -> block_item', 'block_item_list', 1, 'p_block_item_list', 'c_parser.py', 1475), ('block_item_list -> block_item_list block_item', 'block_item_list', 2, 'p_block_item_list', 'c_parser.py', 1476), ('compound_statement -> brace_open block_item_list_opt brace_close', 'compound_statement', 3, 'p_compound_statement_1', 'c_parser.py', 1482), ('labeled_statement -> ID COLON pragmacomp_or_statement', 'labeled_statement', 3, 'p_labeled_statement_1', 'c_parser.py', 1488), ('labeled_statement -> CASE constant_expression COLON pragmacomp_or_statement', 'labeled_statement', 4, 'p_labeled_statement_2', 'c_parser.py', 1492), ('labeled_statement -> DEFAULT COLON pragmacomp_or_statement', 'labeled_statement', 3, 'p_labeled_statement_3', 'c_parser.py', 1496), ('selection_statement -> IF LPAREN expression RPAREN pragmacomp_or_statement', 'selection_statement', 5, 'p_selection_statement_1', 'c_parser.py', 1500), ('selection_statement -> IF LPAREN expression RPAREN statement ELSE pragmacomp_or_statement', 'selection_statement', 7, 'p_selection_statement_2', 'c_parser.py', 1504), ('selection_statement -> SWITCH LPAREN expression RPAREN pragmacomp_or_statement', 'selection_statement', 5, 'p_selection_statement_3', 'c_parser.py', 1508), ('iteration_statement -> WHILE LPAREN expression RPAREN pragmacomp_or_statement', 'iteration_statement', 5, 'p_iteration_statement_1', 'c_parser.py', 1513), ('iteration_statement -> DO pragmacomp_or_statement WHILE LPAREN expression RPAREN SEMI', 'iteration_statement', 7, 'p_iteration_statement_2', 'c_parser.py', 1517), ('iteration_statement -> FOR LPAREN expression_opt SEMI expression_opt SEMI expression_opt RPAREN pragmacomp_or_statement', 'iteration_statement', 9, 'p_iteration_statement_3', 'c_parser.py', 1521), ('iteration_statement -> FOR LPAREN declaration expression_opt SEMI expression_opt RPAREN pragmacomp_or_statement', 'iteration_statement', 8, 'p_iteration_statement_4', 'c_parser.py', 1525), ('jump_statement -> GOTO ID SEMI', 'jump_statement', 3, 'p_jump_statement_1', 'c_parser.py', 1530), ('jump_statement -> BREAK SEMI', 'jump_statement', 2, 'p_jump_statement_2', 'c_parser.py', 1534), ('jump_statement -> CONTINUE SEMI', 'jump_statement', 2, 'p_jump_statement_3', 'c_parser.py', 1538), ('jump_statement -> RETURN expression SEMI', 'jump_statement', 3, 'p_jump_statement_4', 'c_parser.py', 1542), ('jump_statement -> RETURN SEMI', 'jump_statement', 2, 'p_jump_statement_4', 'c_parser.py', 1543), ('expression_statement -> expression_opt SEMI', 'expression_statement', 2, 'p_expression_statement', 'c_parser.py', 1548), ('expression -> assignment_expression', 'expression', 1, 'p_expression', 'c_parser.py', 1555), ('expression -> expression COMMA assignment_expression', 'expression', 3, 'p_expression', 'c_parser.py', 1556), ('typedef_name -> TYPEID', 'typedef_name', 1, 'p_typedef_name', 'c_parser.py', 1568), ('assignment_expression -> conditional_expression', 'assignment_expression', 1, 'p_assignment_expression', 'c_parser.py', 1572), ('assignment_expression -> unary_expression assignment_operator assignment_expression', 'assignment_expression', 3, 'p_assignment_expression', 'c_parser.py', 1573), ('assignment_operator -> EQUALS', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1586), ('assignment_operator -> XOREQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1587), ('assignment_operator -> TIMESEQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1588), ('assignment_operator -> DIVEQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1589), ('assignment_operator -> MODEQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1590), ('assignment_operator -> PLUSEQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1591), ('assignment_operator -> MINUSEQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1592), ('assignment_operator -> LSHIFTEQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1593), ('assignment_operator -> RSHIFTEQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1594), ('assignment_operator -> ANDEQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1595), ('assignment_operator -> OREQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1596), ('constant_expression -> conditional_expression', 'constant_expression', 1, 'p_constant_expression', 'c_parser.py', 1601), ('conditional_expression -> binary_expression', 'conditional_expression', 1, 'p_conditional_expression', 'c_parser.py', 1605), ('conditional_expression -> binary_expression CONDOP expression COLON conditional_expression', 'conditional_expression', 5, 'p_conditional_expression', 'c_parser.py', 1606), ('binary_expression -> cast_expression', 'binary_expression', 1, 'p_binary_expression', 'c_parser.py', 1614), ('binary_expression -> binary_expression TIMES binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1615), ('binary_expression -> binary_expression DIVIDE binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1616), ('binary_expression -> binary_expression MOD binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1617), ('binary_expression -> binary_expression PLUS binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1618), ('binary_expression -> binary_expression MINUS binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1619), ('binary_expression -> binary_expression RSHIFT binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1620), ('binary_expression -> binary_expression LSHIFT binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1621), ('binary_expression -> binary_expression LT binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1622), ('binary_expression -> binary_expression LE binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1623), ('binary_expression -> binary_expression GE binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1624), ('binary_expression -> binary_expression GT binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1625), ('binary_expression -> binary_expression EQ binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1626), ('binary_expression -> binary_expression NE binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1627), ('binary_expression -> binary_expression AND binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1628), ('binary_expression -> binary_expression OR binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1629), ('binary_expression -> binary_expression XOR binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1630), ('binary_expression -> binary_expression LAND binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1631), ('binary_expression -> binary_expression LOR binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1632), ('cast_expression -> unary_expression', 'cast_expression', 1, 'p_cast_expression_1', 'c_parser.py', 1640), ('cast_expression -> LPAREN type_name RPAREN cast_expression', 'cast_expression', 4, 'p_cast_expression_2', 'c_parser.py', 1644), ('unary_expression -> postfix_expression', 'unary_expression', 1, 'p_unary_expression_1', 'c_parser.py', 1648), ('unary_expression -> PLUSPLUS unary_expression', 'unary_expression', 2, 'p_unary_expression_2', 'c_parser.py', 1652), ('unary_expression -> MINUSMINUS unary_expression', 'unary_expression', 2, 'p_unary_expression_2', 'c_parser.py', 1653), ('unary_expression -> unary_operator cast_expression', 'unary_expression', 2, 'p_unary_expression_2', 'c_parser.py', 1654), ('unary_expression -> SIZEOF unary_expression', 'unary_expression', 2, 'p_unary_expression_3', 'c_parser.py', 1659), ('unary_expression -> SIZEOF LPAREN type_name RPAREN', 'unary_expression', 4, 'p_unary_expression_3', 'c_parser.py', 1660), ('unary_operator -> AND', 'unary_operator', 1, 'p_unary_operator', 'c_parser.py', 1668), ('unary_operator -> TIMES', 'unary_operator', 1, 'p_unary_operator', 'c_parser.py', 1669), ('unary_operator -> PLUS', 'unary_operator', 1, 'p_unary_operator', 'c_parser.py', 1670), ('unary_operator -> MINUS', 'unary_operator', 1, 'p_unary_operator', 'c_parser.py', 1671), ('unary_operator -> NOT', 'unary_operator', 1, 'p_unary_operator', 'c_parser.py', 1672), ('unary_operator -> LNOT', 'unary_operator', 1, 'p_unary_operator', 'c_parser.py', 1673), ('postfix_expression -> primary_expression', 'postfix_expression', 1, 'p_postfix_expression_1', 'c_parser.py', 1678), ('postfix_expression -> postfix_expression LBRACKET expression RBRACKET', 'postfix_expression', 4, 'p_postfix_expression_2', 'c_parser.py', 1682), ('postfix_expression -> postfix_expression LPAREN argument_expression_list RPAREN', 'postfix_expression', 4, 'p_postfix_expression_3', 'c_parser.py', 1686), ('postfix_expression -> postfix_expression LPAREN RPAREN', 'postfix_expression', 3, 'p_postfix_expression_3', 'c_parser.py', 1687), ('postfix_expression -> postfix_expression PERIOD ID', 'postfix_expression', 3, 'p_postfix_expression_4', 'c_parser.py', 1692), ('postfix_expression -> postfix_expression PERIOD TYPEID', 'postfix_expression', 3, 'p_postfix_expression_4', 'c_parser.py', 1693), ('postfix_expression -> postfix_expression ARROW ID', 'postfix_expression', 3, 'p_postfix_expression_4', 'c_parser.py', 1694), ('postfix_expression -> postfix_expression ARROW TYPEID', 'postfix_expression', 3, 'p_postfix_expression_4', 'c_parser.py', 1695), ('postfix_expression -> postfix_expression PLUSPLUS', 'postfix_expression', 2, 'p_postfix_expression_5', 'c_parser.py', 1701), ('postfix_expression -> postfix_expression MINUSMINUS', 'postfix_expression', 2, 'p_postfix_expression_5', 'c_parser.py', 1702), ('postfix_expression -> LPAREN type_name RPAREN brace_open initializer_list brace_close', 'postfix_expression', 6, 'p_postfix_expression_6', 'c_parser.py', 1707), ('postfix_expression -> LPAREN type_name RPAREN brace_open initializer_list COMMA brace_close', 'postfix_expression', 7, 'p_postfix_expression_6', 'c_parser.py', 1708), ('primary_expression -> identifier', 'primary_expression', 1, 'p_primary_expression_1', 'c_parser.py', 1713), ('primary_expression -> constant', 'primary_expression', 1, 'p_primary_expression_2', 'c_parser.py', 1717), ('primary_expression -> unified_string_literal', 'primary_expression', 1, 'p_primary_expression_3', 'c_parser.py', 1721), ('primary_expression -> unified_wstring_literal', 'primary_expression', 1, 'p_primary_expression_3', 'c_parser.py', 1722), ('primary_expression -> LPAREN expression RPAREN', 'primary_expression', 3, 'p_primary_expression_4', 'c_parser.py', 1727), ('primary_expression -> OFFSETOF LPAREN type_name COMMA offsetof_member_designator RPAREN', 'primary_expression', 6, 'p_primary_expression_5', 'c_parser.py', 1731), ('offsetof_member_designator -> identifier', 'offsetof_member_designator', 1, 'p_offsetof_member_designator', 'c_parser.py', 1739), ('offsetof_member_designator -> offsetof_member_designator PERIOD identifier', 'offsetof_member_designator', 3, 'p_offsetof_member_designator', 'c_parser.py', 1740), ('offsetof_member_designator -> offsetof_member_designator LBRACKET expression RBRACKET', 'offsetof_member_designator', 4, 'p_offsetof_member_designator', 'c_parser.py', 1741), ('argument_expression_list -> assignment_expression', 'argument_expression_list', 1, 'p_argument_expression_list', 'c_parser.py', 1753), ('argument_expression_list -> argument_expression_list COMMA assignment_expression', 'argument_expression_list', 3, 'p_argument_expression_list', 'c_parser.py', 1754), ('identifier -> ID', 'identifier', 1, 'p_identifier', 'c_parser.py', 1763), ('constant -> INT_CONST_DEC', 'constant', 1, 'p_constant_1', 'c_parser.py', 1767), ('constant -> INT_CONST_OCT', 'constant', 1, 'p_constant_1', 'c_parser.py', 1768), ('constant -> INT_CONST_HEX', 'constant', 1, 'p_constant_1', 'c_parser.py', 1769), ('constant -> INT_CONST_BIN', 'constant', 1, 'p_constant_1', 'c_parser.py', 1770), ('constant -> INT_CONST_CHAR', 'constant', 1, 'p_constant_1', 'c_parser.py', 1771), ('constant -> FLOAT_CONST', 'constant', 1, 'p_constant_2', 'c_parser.py', 1790), ('constant -> HEX_FLOAT_CONST', 'constant', 1, 'p_constant_2', 'c_parser.py', 1791), ('constant -> CHAR_CONST', 'constant', 1, 'p_constant_3', 'c_parser.py', 1807), ('constant -> WCHAR_CONST', 'constant', 1, 'p_constant_3', 'c_parser.py', 1808), ('unified_string_literal -> STRING_LITERAL', 'unified_string_literal', 1, 'p_unified_string_literal', 'c_parser.py', 1819), ('unified_string_literal -> unified_string_literal STRING_LITERAL', 'unified_string_literal', 2, 'p_unified_string_literal', 'c_parser.py', 1820), ('unified_wstring_literal -> WSTRING_LITERAL', 'unified_wstring_literal', 1, 'p_unified_wstring_literal', 'c_parser.py', 1830), ('unified_wstring_literal -> unified_wstring_literal WSTRING_LITERAL', 'unified_wstring_literal', 2, 'p_unified_wstring_literal', 'c_parser.py', 1831), ('brace_open -> LBRACE', 'brace_open', 1, 'p_brace_open', 'c_parser.py', 1841), ('brace_close -> RBRACE', 'brace_close', 1, 'p_brace_close', 'c_parser.py', 1847), ('empty -> <empty>', 'empty', 0, 'p_empty', 'c_parser.py', 1853)] |
'''
write a procedure, called how_many, which returns the sum of the number of values associated with a dictionary
'''
def how_many(aDict):
'''
aDict: A dictionary, where all the values are lists.
returns: int, how many values are in the dictionary.
'''
values = 0
for i in aDict:
values += len(aDict[i])
return values
| """
write a procedure, called how_many, which returns the sum of the number of values associated with a dictionary
"""
def how_many(aDict):
"""
aDict: A dictionary, where all the values are lists.
returns: int, how many values are in the dictionary.
"""
values = 0
for i in aDict:
values += len(aDict[i])
return values |
debian_os = ['debian', 'ubuntu']
rhel_os = ['redhat', 'centos']
def test_repo_file(host):
f = None
if host.system_info.distribution.lower() in debian_os:
f = host.file('/etc/apt/sources.list.d/powerdns-rec-42.list')
if host.system_info.distribution.lower() in rhel_os:
f = host.file('/etc/yum.repos.d/powerdns-rec-42.repo')
assert f.exists
assert f.user == 'root'
assert f.group == 'root'
def test_pdns_repo(host):
f = None
if host.system_info.distribution.lower() in debian_os:
f = host.file('/etc/apt/sources.list.d/powerdns-rec-42.list')
if host.system_info.distribution.lower() in rhel_os:
f = host.file('/etc/yum.repos.d/powerdns-rec-42.repo')
assert f.exists
assert f.contains('rec-42')
def test_pdns_version(host):
cmd = host.run('/usr/sbin/pdns_recursor --version')
assert 'PowerDNS Recursor' in cmd.stderr
assert '4.2' in cmd.stderr
def systemd_override(host):
fname = '/etc/systemd/system/pdns-recursor.service.d/override.conf'
f = host.file(fname)
assert not f.contains('User=')
assert not f.contains('Group=')
| debian_os = ['debian', 'ubuntu']
rhel_os = ['redhat', 'centos']
def test_repo_file(host):
f = None
if host.system_info.distribution.lower() in debian_os:
f = host.file('/etc/apt/sources.list.d/powerdns-rec-42.list')
if host.system_info.distribution.lower() in rhel_os:
f = host.file('/etc/yum.repos.d/powerdns-rec-42.repo')
assert f.exists
assert f.user == 'root'
assert f.group == 'root'
def test_pdns_repo(host):
f = None
if host.system_info.distribution.lower() in debian_os:
f = host.file('/etc/apt/sources.list.d/powerdns-rec-42.list')
if host.system_info.distribution.lower() in rhel_os:
f = host.file('/etc/yum.repos.d/powerdns-rec-42.repo')
assert f.exists
assert f.contains('rec-42')
def test_pdns_version(host):
cmd = host.run('/usr/sbin/pdns_recursor --version')
assert 'PowerDNS Recursor' in cmd.stderr
assert '4.2' in cmd.stderr
def systemd_override(host):
fname = '/etc/systemd/system/pdns-recursor.service.d/override.conf'
f = host.file(fname)
assert not f.contains('User=')
assert not f.contains('Group=') |
class Empty(object):
def __bool__(self):
return False
def __nonzero__(self):
return False
empty = Empty()
| class Empty(object):
def __bool__(self):
return False
def __nonzero__(self):
return False
empty = empty() |
# Network parameters
IMAGE_WIDTH = 84
IMAGE_HEIGHT = 84
NUM_CHANNELS = 4 # dqn inputs 4 image at same time as state
| image_width = 84
image_height = 84
num_channels = 4 |
def parse_input(raw_input):
return [
# strip multiline strings when testing
[line.strip() for line in group.split('\n')]
for group in raw_input.split('\n\n')
]
with open('inputs/input6.txt') as file:
input6 = parse_input(file.read())
def count_any_yeses(groups):
return sum(
len(set(''.join(g)))
for g in groups
)
def count_every_yeses(groups):
return sum(
len(set.intersection(*(set(p) for p in g)))
for g in groups
if g
)
answer1 = count_any_yeses(input6)
answer2 = count_every_yeses(input6)
def test():
raw = '''
abc
a
b
c
ab
ac
a
a
a
a
b
'''
sample = parse_input(raw)
assert count_any_yeses(sample) == 11
assert count_every_yeses(sample) == 6
| def parse_input(raw_input):
return [[line.strip() for line in group.split('\n')] for group in raw_input.split('\n\n')]
with open('inputs/input6.txt') as file:
input6 = parse_input(file.read())
def count_any_yeses(groups):
return sum((len(set(''.join(g))) for g in groups))
def count_every_yeses(groups):
return sum((len(set.intersection(*(set(p) for p in g))) for g in groups if g))
answer1 = count_any_yeses(input6)
answer2 = count_every_yeses(input6)
def test():
raw = '\n\n abc\n\n a\n b\n c\n\n ab\n ac\n\n a\n a\n a\n a\n\n b\n\n '
sample = parse_input(raw)
assert count_any_yeses(sample) == 11
assert count_every_yeses(sample) == 6 |
game_name = input("The name of the game:")
num_timesteps = input("The num of timesteps:")
total_gpu_num = 3
gpu_use_index = 0
print('conda activate openaivezen; cd baselines; ' +
'CUDA_VISIBLE_DEVICES={} '.format(gpu_use_index) +
'python -m baselines.run --alg=deepq ' +
'--env={}NoFrameskip-v4 --num_timesteps={} '.format(game_name, num_timesteps) +
'--save_path=models/{}_{}/{}{} '.format(game_name, num_timesteps, 'baseline', '') +
'--log_path=logs/{}_{}/{}{} '.format(game_name, num_timesteps, 'baseline', '') +
'--print_freq=1 ' +
'--dpsr_replay=False ' +
'--prioritized_replay=False ' +
'--state_recycle_freq=10000 ' +
'--dpsr_replay_candidates_size=32')
gpu_use_index = (gpu_use_index + 1) % total_gpu_num
print('conda activate openaivezen; cd baselines; ' +
'CUDA_VISIBLE_DEVICES={} '.format(gpu_use_index) +
'python -m baselines.run --alg=deepq ' +
'--env={}NoFrameskip-v4 --num_timesteps={} '.format(game_name, num_timesteps) +
'--save_path=models/{}_{}/{}{} '.format(game_name, num_timesteps, 'prio', '') +
'--log_path=logs/{}_{}/{}{} '.format(game_name, num_timesteps, 'prio', '') +
'--print_freq=1 ' +
'--dpsr_replay=False ' +
'--prioritized_replay=True ' +
'--state_recycle_freq=10000 ' +
'--dpsr_replay_candidates_size=32')
gpu_use_index = (gpu_use_index + 1) % total_gpu_num
print('conda activate openaivezen; cd baselines; ' +
'CUDA_VISIBLE_DEVICES={} '.format(gpu_use_index) +
'python -m baselines.run --alg=deepq ' +
'--env={}NoFrameskip-v4 --num_timesteps={} '.format(game_name, num_timesteps) +
'--save_path=models/{}_{}/{} '.format(game_name, num_timesteps, 'dpsr0') +
'--log_path=logs/{}_{}/{} '.format(game_name, num_timesteps, 'dpsr0') +
'--print_freq=1 ' +
'--dpsr_replay=True ' +
'--prioritized_replay=False ' +
'--state_recycle_freq=0 ' +
'--dpsr_replay_candidates_size=32')
gpu_use_index = (gpu_use_index + 1) % total_gpu_num
recycle_freq_list = [500, 1000, 1500, 2000, 2500]
cand_size_list = [8, 16, 32, 64, 128]
state_recycle_max_priority_set_list = [True, False]
# 5 * 5 * 2 = 50
for recycle_freq in recycle_freq_list:
for cand_size in cand_size_list:
for state_recycle_max_priority_set in state_recycle_max_priority_set_list:
print(
# 'conda activate openaivezen; cd baselines; ' +
'CUDA_VISIBLE_DEVICES={} '.format(gpu_use_index) +
'python -m baselines.run --alg=deepq ' +
'--env={}NoFrameskip-v4 --num_timesteps={} '.format(game_name, num_timesteps) +
'--save_path=models/{}_{}/dpsr{}_{}cand_MAX_prio_set_{} '.format(game_name,
num_timesteps,
recycle_freq,
cand_size,
state_recycle_max_priority_set) +
'--log_path=logs/{}_{}/dpsr{}_{}cand_MAX_prio_set_{} '.format(game_name,
num_timesteps,
recycle_freq,
cand_size,
state_recycle_max_priority_set) +
'--print_freq=1 ' +
'--dpsr_replay=False ' +
'--prioritized_replay=True ' +
'--state_recycle_freq={} '.format(recycle_freq) +
'--dpsr_replay_candidates_size={} '.format(cand_size) +
'--dpsr_state_recycle_max_priority_set={}'.format(state_recycle_max_priority_set))
gpu_use_index = (gpu_use_index + 1) % total_gpu_num
| game_name = input('The name of the game:')
num_timesteps = input('The num of timesteps:')
total_gpu_num = 3
gpu_use_index = 0
print('conda activate openaivezen; cd baselines; ' + 'CUDA_VISIBLE_DEVICES={} '.format(gpu_use_index) + 'python -m baselines.run --alg=deepq ' + '--env={}NoFrameskip-v4 --num_timesteps={} '.format(game_name, num_timesteps) + '--save_path=models/{}_{}/{}{} '.format(game_name, num_timesteps, 'baseline', '') + '--log_path=logs/{}_{}/{}{} '.format(game_name, num_timesteps, 'baseline', '') + '--print_freq=1 ' + '--dpsr_replay=False ' + '--prioritized_replay=False ' + '--state_recycle_freq=10000 ' + '--dpsr_replay_candidates_size=32')
gpu_use_index = (gpu_use_index + 1) % total_gpu_num
print('conda activate openaivezen; cd baselines; ' + 'CUDA_VISIBLE_DEVICES={} '.format(gpu_use_index) + 'python -m baselines.run --alg=deepq ' + '--env={}NoFrameskip-v4 --num_timesteps={} '.format(game_name, num_timesteps) + '--save_path=models/{}_{}/{}{} '.format(game_name, num_timesteps, 'prio', '') + '--log_path=logs/{}_{}/{}{} '.format(game_name, num_timesteps, 'prio', '') + '--print_freq=1 ' + '--dpsr_replay=False ' + '--prioritized_replay=True ' + '--state_recycle_freq=10000 ' + '--dpsr_replay_candidates_size=32')
gpu_use_index = (gpu_use_index + 1) % total_gpu_num
print('conda activate openaivezen; cd baselines; ' + 'CUDA_VISIBLE_DEVICES={} '.format(gpu_use_index) + 'python -m baselines.run --alg=deepq ' + '--env={}NoFrameskip-v4 --num_timesteps={} '.format(game_name, num_timesteps) + '--save_path=models/{}_{}/{} '.format(game_name, num_timesteps, 'dpsr0') + '--log_path=logs/{}_{}/{} '.format(game_name, num_timesteps, 'dpsr0') + '--print_freq=1 ' + '--dpsr_replay=True ' + '--prioritized_replay=False ' + '--state_recycle_freq=0 ' + '--dpsr_replay_candidates_size=32')
gpu_use_index = (gpu_use_index + 1) % total_gpu_num
recycle_freq_list = [500, 1000, 1500, 2000, 2500]
cand_size_list = [8, 16, 32, 64, 128]
state_recycle_max_priority_set_list = [True, False]
for recycle_freq in recycle_freq_list:
for cand_size in cand_size_list:
for state_recycle_max_priority_set in state_recycle_max_priority_set_list:
print('CUDA_VISIBLE_DEVICES={} '.format(gpu_use_index) + 'python -m baselines.run --alg=deepq ' + '--env={}NoFrameskip-v4 --num_timesteps={} '.format(game_name, num_timesteps) + '--save_path=models/{}_{}/dpsr{}_{}cand_MAX_prio_set_{} '.format(game_name, num_timesteps, recycle_freq, cand_size, state_recycle_max_priority_set) + '--log_path=logs/{}_{}/dpsr{}_{}cand_MAX_prio_set_{} '.format(game_name, num_timesteps, recycle_freq, cand_size, state_recycle_max_priority_set) + '--print_freq=1 ' + '--dpsr_replay=False ' + '--prioritized_replay=True ' + '--state_recycle_freq={} '.format(recycle_freq) + '--dpsr_replay_candidates_size={} '.format(cand_size) + '--dpsr_state_recycle_max_priority_set={}'.format(state_recycle_max_priority_set))
gpu_use_index = (gpu_use_index + 1) % total_gpu_num |
print(" Calculator \n")
print(" ")
num1 = float(input("Please enter your first number: "))
op = input("Please enter your operator(+ or - or / or *): ")
num2 = float(input("Please enter your second number: "))
if op == "+":
print(num1 + num2)
elif op == "-":
print(num1 - num2)
elif op == "/":
print(num1 / num2)
elif op == "*":
print(num1*num2)
else:
print("Invalid expression. Read instructions carefully.") | print(' Calculator \n')
print(' ')
num1 = float(input('Please enter your first number: '))
op = input('Please enter your operator(+ or - or / or *): ')
num2 = float(input('Please enter your second number: '))
if op == '+':
print(num1 + num2)
elif op == '-':
print(num1 - num2)
elif op == '/':
print(num1 / num2)
elif op == '*':
print(num1 * num2)
else:
print('Invalid expression. Read instructions carefully.') |
class PrimesBelow:
def __init__(self, bound):
self.candidate_numbers = list(range(2,bound))
def __iter__(self):
return self
def __next__(self):
if len(self.candidate_numbers) == 0:
raise StopIteration
next_prime = self.candidate_numbers[0]
self.candidate_numbers = [x for x in self.candidate_numbers if x % next_prime != 0]
return next_prime | class Primesbelow:
def __init__(self, bound):
self.candidate_numbers = list(range(2, bound))
def __iter__(self):
return self
def __next__(self):
if len(self.candidate_numbers) == 0:
raise StopIteration
next_prime = self.candidate_numbers[0]
self.candidate_numbers = [x for x in self.candidate_numbers if x % next_prime != 0]
return next_prime |
# -*- coding: utf-8 -*-
def Mag_V_L(I, RL, Ro, w, C):
return I * (1/(1/RL + 1/Ro)) / (1 + (w * (1/(1/RL + 1/Ro)) * C)**2)**.5
def Mag_I_L(I, RL, Ro, w, C):
I_L = 1 / RL * I / (1 / Ro + 1 / RL + 1j * w * C)
return abs(I_L)
def Z_o_from_VLa_VLb(RLa, RLb, VLa, VLb):
Z_o = (RLa * RLb * (VLb - VLa)) / (VLa * RLb - VLb * RLa)
return Z_o
def Z_o_from_ILa_ILb(RLa, RLb, ILa, ILb):
if abs(ILa - ILb) < 1E-12:
return float("nan")
Z_o = (ILb * RLb - ILa * RLa) / (ILa - ILb)
return Z_o
| def mag_v_l(I, RL, Ro, w, C):
return I * (1 / (1 / RL + 1 / Ro)) / (1 + (w * (1 / (1 / RL + 1 / Ro)) * C) ** 2) ** 0.5
def mag_i_l(I, RL, Ro, w, C):
i_l = 1 / RL * I / (1 / Ro + 1 / RL + 1j * w * C)
return abs(I_L)
def z_o_from_v_la_v_lb(RLa, RLb, VLa, VLb):
z_o = RLa * RLb * (VLb - VLa) / (VLa * RLb - VLb * RLa)
return Z_o
def z_o_from_i_la_i_lb(RLa, RLb, ILa, ILb):
if abs(ILa - ILb) < 1e-12:
return float('nan')
z_o = (ILb * RLb - ILa * RLa) / (ILa - ILb)
return Z_o |
# Sage version information for Python scripts
# This file is auto-generated by the sage-update-version script, do not edit!
version = '9.6.beta6'
date = '2022-03-27'
banner = 'SageMath version 9.6.beta6, Release Date: 2022-03-27'
| version = '9.6.beta6'
date = '2022-03-27'
banner = 'SageMath version 9.6.beta6, Release Date: 2022-03-27' |
w_dic = {'example': 'eg', 'Example': 'eg', 'important': 'imp', 'Important': 'Imp',
'mathematics': 'math', 'Mathematics': 'Math', 'algorithm': 'algo',
'Algorithm': 'Algo', 'frequency': 'freq', 'Frequency': 'Freq', 'input': 'i/p',
'Input': 'i/p', 'output': 'o/p', 'Output': 'o/p', 'software': 's/w', 'Software': 's/w',
'hardware': 'h/w', 'Hardware': 'h/w', 'network': 'n/w', 'Network': 'n/w', 'machine learning': 'ML',
'machine Learning': 'ML', 'Machine learning': 'ML', 'Machine Learning': 'ML', 'Data Mining': 'DM',
'Data mining': 'DM', 'data Mining': 'DM', 'data mining': 'DM', 'database': 'DB', 'Database': 'DB',
'management': 'mgmt', 'Management': 'mgmt', 'Artificial Intelligence': 'AI', 'artificial Intelligence': 'AI',
'Artificial intelligence': 'AI', 'artificial intelligence': 'AI', 'laptop': 'LP', 'Computer Science': 'CS'}
def shortF(text):
def replace_all(text, dic):
for i, j in dic.items():
text = text.replace(i, j)
print (text)
return text
text = replace_all(text, w_dic)
# print result
return text
| w_dic = {'example': 'eg', 'Example': 'eg', 'important': 'imp', 'Important': 'Imp', 'mathematics': 'math', 'Mathematics': 'Math', 'algorithm': 'algo', 'Algorithm': 'Algo', 'frequency': 'freq', 'Frequency': 'Freq', 'input': 'i/p', 'Input': 'i/p', 'output': 'o/p', 'Output': 'o/p', 'software': 's/w', 'Software': 's/w', 'hardware': 'h/w', 'Hardware': 'h/w', 'network': 'n/w', 'Network': 'n/w', 'machine learning': 'ML', 'machine Learning': 'ML', 'Machine learning': 'ML', 'Machine Learning': 'ML', 'Data Mining': 'DM', 'Data mining': 'DM', 'data Mining': 'DM', 'data mining': 'DM', 'database': 'DB', 'Database': 'DB', 'management': 'mgmt', 'Management': 'mgmt', 'Artificial Intelligence': 'AI', 'artificial Intelligence': 'AI', 'Artificial intelligence': 'AI', 'artificial intelligence': 'AI', 'laptop': 'LP', 'Computer Science': 'CS'}
def short_f(text):
def replace_all(text, dic):
for (i, j) in dic.items():
text = text.replace(i, j)
print(text)
return text
text = replace_all(text, w_dic)
return text |
class Edge:
def __init__(self, dest, capa):
self.dest = dest
self.capa = capa
self.rmng = capa
class Node:
def __init__(self, name, level=0, edges=None):
self.name = name
self.level = level
if edges is None:
self.edges = []
def add_edge(self, dest, weight):
self.edges.append(Edge(dest, weight))
def get_children(self):
res = []
for edge in self.edges:
res.append(edge.dest)
return res
def __str__(self):
res = str(self.name) + " ({})".format(str(self.level))
for edge in self.edges:
res = res + " --> {} ({})".format(str(edge.dest), str(edge.rmng))
return res
class Graph:
nodes = []
flow = []
perma_dead = []
levels = []
def __init__(self, entrances, exits, matrix):
self.entrances = entrances
self.exits = exits
self.matrix = matrix
for i in range(0, len(self.matrix)):
self.nodes.append(Node(i))
def create(self):
for i in range(0, len(self.matrix)):
if self.nodes[i].name in self.exits:
continue
for j in range(0, len(self.matrix[i])):
if self.matrix[i][j] != 0:
self.nodes[i].add_edge(j, self.matrix[i][j])
def bfs(self):
queue = self.entrances[:]
seen = self.entrances[:]
level = 0
self.levels = [-1] * len(self.matrix)
for entrance in self.entrances:
self.nodes[entrance].level = level
self.levels[entrance] = level
while len(queue) > 0:
to_remove = []
i = queue.pop(0)
level = self.nodes[i].level + 1
for edge in self.nodes[i].edges:
if edge.dest in self.perma_dead:
to_remove.append(edge)
elif edge.rmng > 0:
if edge.dest not in seen:
self.nodes[edge.dest].level = self.levels[edge.dest] = level
queue.append(edge.dest)
seen.append(edge.dest)
else:
to_remove.append(edge)
for edge in to_remove:
self.nodes[i].edges.remove(edge)
if self.is_finished():
return False
return True
def is_finished(self):
for ex in self.exits:
if self.levels[ex] != -1:
return False
return True
def choose_next_node(self, candidates, dead_ends):
for i in candidates:
previous_level = self.nodes[i].level
for edge in self.nodes[i].edges:
if (edge.rmng > 0) \
and (previous_level < self.nodes[edge.dest].level)\
and (edge.dest not in dead_ends):
return i, edge, edge.rmng
return None, None, None
def dfs(self):
paths, capas, edges = [], [], []
dead_ends = self.perma_dead[:]
entr = self.entrances[:]
current_node, edge, capa = self.choose_next_node(entr, dead_ends)
next_node = None
if edge is not None:
next_node = edge.dest
edges.append(edge)
paths.append(current_node)
if next_node in self.exits:
paths.append(next_node)
capas.append(capa)
else:
return
while next_node not in self.exits and len(paths) > 0:
if next_node != paths[-1]:
paths.append(next_node)
capas.append(capa)
current_node, edge, capa = self.choose_next_node([next_node], dead_ends)
if edge is not None:
next_node = edge.dest
edges.append(edge)
if next_node in self.exits:
paths.append(next_node)
capas.append(capa)
else:
if len(paths) > 1:
dead_ends.append(paths[-1])
paths, edges, capas = paths[:-1], edges[:-1], capas[:-1]
next_node = paths[-1]
else:
entr.remove(paths[0])
paths, capas = [], []
current_node, edge, capa = self.choose_next_node(entr, dead_ends)
next_node = None
if edge is not None:
next_node = edge.dest
edges.append(edge)
paths.append(current_node)
if next_node in self.exits:
paths.append(next_node)
capas.append(capa)
else:
return
if len(paths) < 1:
return False
capa = min(capas)
self.flow.append(capa)
i = 0
for edge in edges:
edge.rmng -= capa
if not edge.rmng:
self.nodes[paths[i]].edges.remove(edge)
if len(self.nodes[paths[i]].edges) < 1:
self.perma_dead.append(self.nodes[paths[i]].name)
i += 1
return False
def solution(entrances, exits, matrix):
graph = Graph(entrances, exits, matrix)
graph.create()
while graph.bfs():
graph.dfs()
return sum(graph.flow)
entrances = [0, 1]
exits = [4, 5]
path = [
[0, 0, 4, 6, 0, 0], # Room 0: Bunnies
[0, 0, 5, 2, 0, 0], # Room 1: Bunnies
[0, 0, 0, 0, 4, 4], # Room 2: Intermediate room
[0, 0, 0, 0, 6, 6], # Room 3: Intermediate room
[0, 0, 0, 0, 0, 0], # Room 4: Escape pods
[0, 0, 0, 0, 0, 0], # Room 5: Escape pods
]
print(solution(entrances, exits, path))
| class Edge:
def __init__(self, dest, capa):
self.dest = dest
self.capa = capa
self.rmng = capa
class Node:
def __init__(self, name, level=0, edges=None):
self.name = name
self.level = level
if edges is None:
self.edges = []
def add_edge(self, dest, weight):
self.edges.append(edge(dest, weight))
def get_children(self):
res = []
for edge in self.edges:
res.append(edge.dest)
return res
def __str__(self):
res = str(self.name) + ' ({})'.format(str(self.level))
for edge in self.edges:
res = res + ' --> {} ({})'.format(str(edge.dest), str(edge.rmng))
return res
class Graph:
nodes = []
flow = []
perma_dead = []
levels = []
def __init__(self, entrances, exits, matrix):
self.entrances = entrances
self.exits = exits
self.matrix = matrix
for i in range(0, len(self.matrix)):
self.nodes.append(node(i))
def create(self):
for i in range(0, len(self.matrix)):
if self.nodes[i].name in self.exits:
continue
for j in range(0, len(self.matrix[i])):
if self.matrix[i][j] != 0:
self.nodes[i].add_edge(j, self.matrix[i][j])
def bfs(self):
queue = self.entrances[:]
seen = self.entrances[:]
level = 0
self.levels = [-1] * len(self.matrix)
for entrance in self.entrances:
self.nodes[entrance].level = level
self.levels[entrance] = level
while len(queue) > 0:
to_remove = []
i = queue.pop(0)
level = self.nodes[i].level + 1
for edge in self.nodes[i].edges:
if edge.dest in self.perma_dead:
to_remove.append(edge)
elif edge.rmng > 0:
if edge.dest not in seen:
self.nodes[edge.dest].level = self.levels[edge.dest] = level
queue.append(edge.dest)
seen.append(edge.dest)
else:
to_remove.append(edge)
for edge in to_remove:
self.nodes[i].edges.remove(edge)
if self.is_finished():
return False
return True
def is_finished(self):
for ex in self.exits:
if self.levels[ex] != -1:
return False
return True
def choose_next_node(self, candidates, dead_ends):
for i in candidates:
previous_level = self.nodes[i].level
for edge in self.nodes[i].edges:
if edge.rmng > 0 and previous_level < self.nodes[edge.dest].level and (edge.dest not in dead_ends):
return (i, edge, edge.rmng)
return (None, None, None)
def dfs(self):
(paths, capas, edges) = ([], [], [])
dead_ends = self.perma_dead[:]
entr = self.entrances[:]
(current_node, edge, capa) = self.choose_next_node(entr, dead_ends)
next_node = None
if edge is not None:
next_node = edge.dest
edges.append(edge)
paths.append(current_node)
if next_node in self.exits:
paths.append(next_node)
capas.append(capa)
else:
return
while next_node not in self.exits and len(paths) > 0:
if next_node != paths[-1]:
paths.append(next_node)
capas.append(capa)
(current_node, edge, capa) = self.choose_next_node([next_node], dead_ends)
if edge is not None:
next_node = edge.dest
edges.append(edge)
if next_node in self.exits:
paths.append(next_node)
capas.append(capa)
elif len(paths) > 1:
dead_ends.append(paths[-1])
(paths, edges, capas) = (paths[:-1], edges[:-1], capas[:-1])
next_node = paths[-1]
else:
entr.remove(paths[0])
(paths, capas) = ([], [])
(current_node, edge, capa) = self.choose_next_node(entr, dead_ends)
next_node = None
if edge is not None:
next_node = edge.dest
edges.append(edge)
paths.append(current_node)
if next_node in self.exits:
paths.append(next_node)
capas.append(capa)
else:
return
if len(paths) < 1:
return False
capa = min(capas)
self.flow.append(capa)
i = 0
for edge in edges:
edge.rmng -= capa
if not edge.rmng:
self.nodes[paths[i]].edges.remove(edge)
if len(self.nodes[paths[i]].edges) < 1:
self.perma_dead.append(self.nodes[paths[i]].name)
i += 1
return False
def solution(entrances, exits, matrix):
graph = graph(entrances, exits, matrix)
graph.create()
while graph.bfs():
graph.dfs()
return sum(graph.flow)
entrances = [0, 1]
exits = [4, 5]
path = [[0, 0, 4, 6, 0, 0], [0, 0, 5, 2, 0, 0], [0, 0, 0, 0, 4, 4], [0, 0, 0, 0, 6, 6], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0]]
print(solution(entrances, exits, path)) |
src = Split('''
cli.c
dumpsys.c
''')
component = aos_component('cli', src)
component.add_component_dependencis('kernel/hal')
component.add_global_macro('HAVE_NOT_ADVANCED_FORMATE')
component.add_global_macro('CONFIG_AOS_CLI')
component.add_global_includes('include')
| src = split('\n cli.c \n dumpsys.c\n')
component = aos_component('cli', src)
component.add_component_dependencis('kernel/hal')
component.add_global_macro('HAVE_NOT_ADVANCED_FORMATE')
component.add_global_macro('CONFIG_AOS_CLI')
component.add_global_includes('include') |
# USITTAsciiParser
#
# by Claude Heintz
# copyright 2014 by Claude Heintz Design
#
# see license included with this distribution or
# https://www.claudeheintzdesign.com/lx/opensource.html
##### This is an abstract class for parsing strings to extract
# data formatted as specified in:
#
# ASCII Text Representation for Lighting Console Data
# http://old.usitt.org/documents/nf/a03asciitextreps.pdf
######
class USITTAsciiParser:
END_DATA = -1
NO_PRIMARY = 0
CUE_COLLECT = 1
GROUP_COLLECT = 2
SUB_COLLECT = 3
MFG_COLLECT = 5
def __init__(self):
self.line = 0
self.state = USITTAsciiParser.NO_PRIMARY
self.startedLine = False
self.tokens = []
self.cstring = ""
self.message = ""
self.console = None
self.manufacturer = None
self.cue = None
self.part = None
self.group = None
self.sub = None
self.cuepage = None
self.grouppage = None
self.subpage = None
self.console = None
self.manufacturer = None
##### processString(string) parses the string passed to it character by character
# it returns True unless there is an error in the string
# for the most part, exceptions are noted and ignored
# printing the .message after calling parseString will list any exceptions
#
# As the string is read and data is extracted, there are a number of
# implementation specific methods that are called. A subclass should override
# these methods and do something with the data. For instance, as individual channel
# levels are extracted, doChannelForCue(self, cue, page, channel, level) is called.
# An implementing subclass would override this method to set channel@level in cue.
#
##### look at the bottom of the file for all the methods that can be overridden
def processString(self, s):
valid = True
for i in range(len(s)):
self.processCharacter(s[i])
if not valid or self.state == USITTAsciiParser.END_DATA:
break
if self.startedLine:
self.addTokenWithCurrentString()
self.processLine()
if valid and self.state != USITTAsciiParser.END_DATA:
self.addMessage("ER 0100 unexpected termination: ENDDATA missing")
valid = self.finishUnfinished()
else:
self.addMessage("0000 processing complete")
if valid:
self.doFinalCleanup()
return valid;
##### processCharacter takes a character and determines if it ends the current line.
# If so, the entire line is processed.
# Otherwise, the character is added to the current string unless
# it is a delimiter, in which case, the current string is added to the tokens list
##### A '!' character puts processing in comment mode until the end of the line is reached
def processCharacter(self, c):
# check to see if the character is a line termination character
if c == '\n' or c == '\r':
if not ( len(self.cstring) == 0 and len(self.tokens) == 0 ):
if not ( self.cstring == "!" or len(self.cstring) == 0 ):
self.addTokenWithCurrentString()
if self.processLine():
self.endLine()
else:
return False
elif not self.cstring == "!":
if c == '\t' or ( ord(c) > 31 and ord(c) <127 ):
if self.isDelimiter(c):
if not ( self.cstring == "!" or len(self.cstring) == 0 ):
self.addTokenWithCurrentString()
else:
if c == "!":
self.cstring = c
else:
self.cstring += c
if not self.startedLine:
self.beginLine()
else:
self.addMessage("Invalid Character (ignored)")
return True
##### addTokenWithCurrentString() self.tokens is a list of small strings that
# that make up the current line. each token is separated by one or more
# of the delimiter characters defined in
# ASCII Text Representation for Lighting Console Data 5.4, page 13
#####
def addTokenWithCurrentString(self):
self.tokens.append(self.cstring)
self.cstring = ""
##### beginLine is called when the first non-delimiter character
# of a line is encountered
#####
def beginLine(self):
self.startedLine = True
self.line += 1
##### endLine resets the current string and tokens list
#
#####
def endLine(self):
self.cstring = ""
self.tokens = []
self.startedLine = False
self.finishProcessingLine()
##### finishProcessingLine (for override if needed)
def finishProcessingLine(self):
test = True
##### finishUnfinished (for override if needed)
def finishUnfinished(self):
test = True
##### doFinalCleanup (for override if needed)
def doFinalCleanup(self):
test = True
##### processLine takes a complete line and calls the appropriate keyword function
# processLine returns True as long as there is no error to stop processing
#####
def processLine(self):
if len(self.tokens) > 0:
keyword = self.tokens[0]
# check for manufacturer specific keywords
if keyword.startswith("$"):
if keyword.startswith("$$"):
if self.recognizedMfgBasic(keyword):
return self.keywordMfgBasic(keyword)
else:
return self.keywordMfgPrimary(keyword)
#keywords are limited to 10 characters
if len(keyword) > 10:
keyword = keyword[0:10]
if keyword.lower() == "clear":
return self.keywordClear()
if keyword.lower() == "console":
return self.keywordConsole()
if keyword.lower() == "enddata":
self.state = USITTAsciiParser.END_DATA
return True
if keyword.lower() == "ident":
return self.keywordIdent()
if keyword.lower() == "manufactur":
return self.keywordManufacturer()
if keyword.lower() == "patch":
return self.keywordPatch()
if keyword.lower() == "set":
return self.keywordSet()
if keyword.lower() == "cue":
return self.keywordCue()
if keyword.lower() == "group":
return self.keywordGroup()
if keyword.lower() == "sub":
return self.keywordSub()
if self.state > USITTAsciiParser.MFG_COLLECT -1:
return self.keywordMfgSecondary(keyword)
if self.state == USITTAsciiParser.CUE_COLLECT:
return self.keywordCueSecondary(keyword)
if self.state == USITTAsciiParser.GROUP_COLLECT:
return self.keywordGroupSecondary(keyword)
if self.state == USITTAsciiParser.SUB_COLLECT:
return self.keywordSubSecondary(keyword)
return True #any other keyword is simply ignored
##### addMessage is used to report exceptions that may change how the ASCII
# data is interpreted, but not necessarily enough to stop processing.
# After processString has been called the message can be read
#####
def addMessage(self, message):
self.message = self.message +"Line " + str(self.line) + ": " + message + "\n"
def tokenStringForText(self, delimiter=" "):
tc = len(self.tokens)
if tc > 1:
ti = 1;
rs = self.tokens[ti];
ti += 1
while ti < tc:
rs = rs + delimiter + self.tokens[ti];
ti += 1
return rs
return None
##### process keyword functions
# each of these functions is called in response to a specific keyword
# keywords are found at the beginning of a line ie. self.tokens[0]
# each keyword function should return True if there are no errors
# These functions set the parse state and various other values.
#
# To implement the functionality of these keywords, override the
# corresponding "do" function
#####
def keywordClear(self):
if len(self.tokens) == 2:
return self.doClearItem(self.tokens[1], "")
if len(self.tokens) == 3:
return self.doClearItem(self.tokens[1], self.tokens[2])
self.addMessage("bad CLEAR (ignored)")
return True
def keywordConsole(self):
if len(self.tokens) == 2:
self.console = self.tokens[1]
return True
self.addMessage("bad CONSOLE(ignored)")
return True
def keywordIdent(self):
if len(self.tokens) == 2:
if self.tokens[1] == "3:0":
return True
if self.tokens[1] == "3.0":
return True
return False
def keywordManufacturer(self):
if len(self.tokens) == 2:
self.manufacturer = self.tokens[1]
return True
self.addMessage("bad MANUFACTUR (ignored)")
return True
def keywordPatch(self):
tc = len(self.tokens)
if tc > 4:
rs = 5;
valid = True
while valid and tc >= rs:
valid = self.doPatch(self.tokens[1], self.tokens[rs-3], self.tokens[rs-2], self.tokens[rs-1])
rs += 3
if valid:
return True
self.addMessage("bad PATCH (ignored)")
return True
def keywordSet(self):
if len(self.tokens) == 3:
self.doSet(self.tokens[1], self.tokens[2])
return True
self.addMessage("bad SET (ignored)")
return True
def keywordCue(self):
self.state = USITTAsciiParser.CUE_COLLECT
self.part = None
if len(self.tokens) == 2:
self.cue = self.tokens[1]
self.cuepage = ""
return True
if len(self.tokens) == 3:
self.cue = self.tokens[1]
self.cuepage = self.tokens[2]
return True
self.cue = None
self.cuepage = None
self.addMessage("bad CUE (ignored)")
return True
def keywordGroup(self):
self.state = USITTAsciiParser.GROUP_COLLECT
self.part = None
if len(self.tokens) == 2:
self.group = self.tokens[1]
self.grouppage = ""
return True
if len(self.tokens) == 3:
self.group = self.tokens[1]
self.grouppage = self.tokens[2]
return True
self.group = None
self.grouppage = None
self.addMessage("bad GROUP (ignored)")
return True
def keywordSub(self):
self.state = USITTAsciiParser.SUB_COLLECT
self.part = None
if len(self.tokens) == 2:
self.sub = self.tokens[1]
self.subpage = ""
return True
if len(self.tokens) == 3:
self.sub = self.tokens[1]
self.subpage = self.tokens[2]
return True
self.sub = None
self.subpage = None
self.addMessage("bad SUB (ignored)")
return True
def keywordMfgBasic(self, keyword):
return True;
def keywordMfgPrimary(self, keyword):
self.state = USITTAsciiParser.MFG_COLLECT
if self.recognizedMfgPrimary(keyword):
return self.doMfgPrimary(keyword)
return True;
def keywordMfgSecondary(self, keyword):
if self.recognizedMfgSecondary(keyword):
return self.doMfgSecondary(keyword)
return True;
##### secondary keywords are similar to primary keywords
# when cue, group or sub primary keywords are encountered
# the state is set so that secondary keywords modify
# the current cue, group or sub
#####
def keywordCueSecondary(self, keyword):
if self.cue != None and self.cue != "" and len(self.tokens) > 1:
if keyword.startswith("$$"):
return self.keywordMfgForCue(keyword)
if keyword.lower() == "chan":
return self.keywordChannelForCue()
if keyword.lower() == "down":
return self.keywordDownForCue()
if keyword.lower() == "followon":
return self.keywordFollowonForCue()
if keyword.lower() == "link":
return self.keywordLinkForCue()
if keyword.lower() == "part":
return self.keywordPartForCue()
if keyword.lower() == "text":
return self.keywordTextForCue()
if keyword.lower() == "up":
return self.keywordUpForCue()
self.addMessage("(ignored) unknown or out of place " + keyword )
return True
def keywordGroupSecondary(self, keyword):
if self.group != None and self.group != "" and len(self.tokens) > 1:
if keyword.startswith("$$"):
return self.keywordMfgForGroup(keyword)
if keyword.lower() == "chan":
return self.keywordChannelForGroup()
if keyword.lower() == "part":
return self.keywordPartForGroup()
if keyword.lower() == "text":
return self.keywordTextForGroup()
return True
def keywordSubSecondary(self, keyword):
if self.sub != None and self.sub != "" and len(self.tokens) > 1:
if keyword.startswith("$$"):
return self.keywordMfgForGroup(keyword)
if keyword.lower() == "chan":
return self.keywordChannelForSub()
if keyword.lower() == "down":
return self.keywordDownForSub()
if keyword.lower() == "text":
return self.keywordTextForSub()
if keyword.lower() == "up":
return self.keywordUpForCue()
return True
##### handle each specific secondary keyword
# these methods check that the number of tokens is correct for the keyword
# and then pass them along to a specific "do" method.
# All "do" methods are meant to be overridden by an implementing subclass
##### cue keywords
def keywordChannelForCue(self):
lt = len(self.tokens)
v = True
rs = 3
while v and rs <= lt:
v = self.doChannelForCue(self.cue, self.cuepage, self.tokens[rs-2], self.tokens[rs-1])
rs += 2
if v:
return True
self.addMessage("bad CHAN (ignored)")
return True
def keywordDownForCue(self):
if len(self.tokens) == 2:
self.doDownForCue(self.cue, self.cuepage, self.tokens[1], "0")
return True
if len(self.tokens) == 3:
self.doDownForCue(self.cue, self.cuepage, self.tokens[1], self.tokens[2])
return True
self.addMessage("bad DOWN (ignored)")
return True
def keywordFollowonForCue(self):
if len(self.tokens) == 2:
self.doFollowonForCue(self.cue, self.cuepage, self.tokens[1])
return True
self.addMessage("bad FOLLOWON (ignored)")
return True
def keywordlinkForCue(self):
if len(self.tokens) == 2:
self.doLinkForCue(self.cue, self.cuepage, self.tokens[1])
return True
self.addMessage("bad LINK (ignored)")
return True
def keywordPartForCue(self):
if len(self.tokens) == 2:
self.doPartForCue(self.cue, self.cuepage, self.tokens[1])
return True
self.addMessage("bad PART (ignored)")
return True
def keywordTextForCue(self):
if len(self.tokens) > 1:
self.doTextForCue(self.cue, self.cuepage, self.tokenStringForText())
return True
self.addMessage("bad TEXT (ignored)")
return True
def keywordUpForCue(self):
if len(self.tokens) == 2:
self.doUpForCue(self.cue, self.cuepage, self.tokens[1], "0")
return True
if len(self.tokens) == 3:
self.doUpForCue(self.cue, self.cuepage, self.tokens[1], self.tokens[2])
return True
self.addMessage("bad UP (ignored)")
return True
##### group keywords
def keywordChannelForGroup(self):
lt = len(self.tokens)
v = True
rs = 3
while v and rs <= lt:
v = self.doChannelForGroup(self.group, self.grouppage, self.tokens[rs-2], self.tokens[rs-1])
rs += 2
if v:
return True
self.addMessage("Warning: bad CHAN (ignored)")
return True
def keywordPartForGroup(self):
if len(self.tokens) == 2:
self.doPartForGroup(self.group, self.grouppage, self.tokens[1])
return True
self.addMessage("bad PART (ignored)")
return True
def keywordTextForGroup(self):
if len(self.tokens) > 1:
self.doTextForGroup(self.group, self.grouppage, self.tokenStringForText())
return True
self.addMessage("bad TEXT (ignored)")
return True
##### sub keywords
def keywordChannelForSub(self):
lt = len(self.tokens)
v = True
rs = 3
while v and rs <= lt:
v = self.doChannelForSub(self.sub, self.subpage, self.tokens[rs-2], self.tokens[rs-1])
rs += 2
if v:
return True
self.addMessage("Warning: bad CHAN (ignored)")
return True
def keywordDownForSub(self):
if len(self.tokens) == 2:
self.doDownForSub(self.sub, self.subpage, self.tokens[1], "0")
return True
if len(self.tokens) == 3:
self.doDownForSub(self.sub, self.subpage, self.tokens[1], self.tokens[2])
return True
self.addMessage("bad UP (ignored)")
return True
def keywordTextForSub(self):
if len(self.tokens) > 1:
self.doTextForSub(self.sub, self.subpage, self.tokenStringForText())
return True
self.addMessage("bad TEXT (ignored)")
return True
def keywordUpForSub(self):
if len(self.tokens) == 2:
self.doUpForSub(self.sub, self.subpage, self.tokens[1], "0")
return True
if len(self.tokens) == 3:
self.doUpForSub(self.sub, self.subpage, self.tokens[1], self.tokens[2])
return True
self.addMessage("bad UP (ignored)")
return True
########################################################################
#
# override these functions to actually implement whatever action is appropriate
#
########################################################################
##### primary actions
def doClearItem(self, what, page):
test = True
def doSet(self, item, value):
test = True
def doPatch(self, page, channel, dimmer, level):
return True
##### cue actions
def doChannelForCue(self, cue, page, channel, level):
return True
def doDownForCue(self, cue, page, down, waitdown):
test = True
def doFollowonForCue(self, cue, page, follow):
test = True
def doLinkForCue(self, cue, page, link):
test = True
def doPartForCue(self, cue, page, part):
self.part = part
test = True
def doTextForCue(self, cue, page, text):
test = True
def doUpForCue(self, cue, page, up, waitup):
test = True
##### group actions
def doChannelForGroup(self, group, page, channel, level):
return True
def doPartForGroup(self, group, page, part):
self.part = part
test = True
def doTextForGroup(self, group, page, text):
test = True
##### sub actions
def doChannelForSub(self, sub, page, channel, level):
return True
def doDownForSub(self, sub, page, down, waitdown):
test = True
def doTextForSub(self, sub, page, text):
test = True
def doUpForSub(self, sub, page, up, waitup):
test = True
########################################################################
#
# override these functions to handle manufacturer keywords
#
########################################################################
def recognizedMfgBasic(self, keyword):
return False
def recognizedMfgPrimary(self, keyword):
return False
def recognizedMfgSecondary(self, keyword):
return False
def doMfgPrimary(self, keyword):
return True
def doMfgPrimary(self, keyword):
return True
def keywordMfgForCue(self, keyword):
return True
def keywordMfgForGroup(self, keyword):
return True
def keywordMfgForSub(self, keyword):
return True
##### utility method isDelimiter(c)
# test to see if character is one of the standard delimiter characters
# ASCII Text Representation for Lighting Console Data 5.4, page 13
#####
def isDelimiter(self, c):
if c == '\t':
return True
if c == ' ':
return True
if c == ',':
return True
if c == '/':
return True
if c == ';':
return True
if c == '<':
return True
if c == '=':
return True
if c == '>':
return True
if c == '@':
return True
return False
| class Usittasciiparser:
end_data = -1
no_primary = 0
cue_collect = 1
group_collect = 2
sub_collect = 3
mfg_collect = 5
def __init__(self):
self.line = 0
self.state = USITTAsciiParser.NO_PRIMARY
self.startedLine = False
self.tokens = []
self.cstring = ''
self.message = ''
self.console = None
self.manufacturer = None
self.cue = None
self.part = None
self.group = None
self.sub = None
self.cuepage = None
self.grouppage = None
self.subpage = None
self.console = None
self.manufacturer = None
def process_string(self, s):
valid = True
for i in range(len(s)):
self.processCharacter(s[i])
if not valid or self.state == USITTAsciiParser.END_DATA:
break
if self.startedLine:
self.addTokenWithCurrentString()
self.processLine()
if valid and self.state != USITTAsciiParser.END_DATA:
self.addMessage('ER 0100 unexpected termination: ENDDATA missing')
valid = self.finishUnfinished()
else:
self.addMessage('0000 processing complete')
if valid:
self.doFinalCleanup()
return valid
def process_character(self, c):
if c == '\n' or c == '\r':
if not (len(self.cstring) == 0 and len(self.tokens) == 0):
if not (self.cstring == '!' or len(self.cstring) == 0):
self.addTokenWithCurrentString()
if self.processLine():
self.endLine()
else:
return False
elif not self.cstring == '!':
if c == '\t' or (ord(c) > 31 and ord(c) < 127):
if self.isDelimiter(c):
if not (self.cstring == '!' or len(self.cstring) == 0):
self.addTokenWithCurrentString()
else:
if c == '!':
self.cstring = c
else:
self.cstring += c
if not self.startedLine:
self.beginLine()
else:
self.addMessage('Invalid Character (ignored)')
return True
def add_token_with_current_string(self):
self.tokens.append(self.cstring)
self.cstring = ''
def begin_line(self):
self.startedLine = True
self.line += 1
def end_line(self):
self.cstring = ''
self.tokens = []
self.startedLine = False
self.finishProcessingLine()
def finish_processing_line(self):
test = True
def finish_unfinished(self):
test = True
def do_final_cleanup(self):
test = True
def process_line(self):
if len(self.tokens) > 0:
keyword = self.tokens[0]
if keyword.startswith('$'):
if keyword.startswith('$$'):
if self.recognizedMfgBasic(keyword):
return self.keywordMfgBasic(keyword)
else:
return self.keywordMfgPrimary(keyword)
if len(keyword) > 10:
keyword = keyword[0:10]
if keyword.lower() == 'clear':
return self.keywordClear()
if keyword.lower() == 'console':
return self.keywordConsole()
if keyword.lower() == 'enddata':
self.state = USITTAsciiParser.END_DATA
return True
if keyword.lower() == 'ident':
return self.keywordIdent()
if keyword.lower() == 'manufactur':
return self.keywordManufacturer()
if keyword.lower() == 'patch':
return self.keywordPatch()
if keyword.lower() == 'set':
return self.keywordSet()
if keyword.lower() == 'cue':
return self.keywordCue()
if keyword.lower() == 'group':
return self.keywordGroup()
if keyword.lower() == 'sub':
return self.keywordSub()
if self.state > USITTAsciiParser.MFG_COLLECT - 1:
return self.keywordMfgSecondary(keyword)
if self.state == USITTAsciiParser.CUE_COLLECT:
return self.keywordCueSecondary(keyword)
if self.state == USITTAsciiParser.GROUP_COLLECT:
return self.keywordGroupSecondary(keyword)
if self.state == USITTAsciiParser.SUB_COLLECT:
return self.keywordSubSecondary(keyword)
return True
def add_message(self, message):
self.message = self.message + 'Line ' + str(self.line) + ': ' + message + '\n'
def token_string_for_text(self, delimiter=' '):
tc = len(self.tokens)
if tc > 1:
ti = 1
rs = self.tokens[ti]
ti += 1
while ti < tc:
rs = rs + delimiter + self.tokens[ti]
ti += 1
return rs
return None
def keyword_clear(self):
if len(self.tokens) == 2:
return self.doClearItem(self.tokens[1], '')
if len(self.tokens) == 3:
return self.doClearItem(self.tokens[1], self.tokens[2])
self.addMessage('bad CLEAR (ignored)')
return True
def keyword_console(self):
if len(self.tokens) == 2:
self.console = self.tokens[1]
return True
self.addMessage('bad CONSOLE(ignored)')
return True
def keyword_ident(self):
if len(self.tokens) == 2:
if self.tokens[1] == '3:0':
return True
if self.tokens[1] == '3.0':
return True
return False
def keyword_manufacturer(self):
if len(self.tokens) == 2:
self.manufacturer = self.tokens[1]
return True
self.addMessage('bad MANUFACTUR (ignored)')
return True
def keyword_patch(self):
tc = len(self.tokens)
if tc > 4:
rs = 5
valid = True
while valid and tc >= rs:
valid = self.doPatch(self.tokens[1], self.tokens[rs - 3], self.tokens[rs - 2], self.tokens[rs - 1])
rs += 3
if valid:
return True
self.addMessage('bad PATCH (ignored)')
return True
def keyword_set(self):
if len(self.tokens) == 3:
self.doSet(self.tokens[1], self.tokens[2])
return True
self.addMessage('bad SET (ignored)')
return True
def keyword_cue(self):
self.state = USITTAsciiParser.CUE_COLLECT
self.part = None
if len(self.tokens) == 2:
self.cue = self.tokens[1]
self.cuepage = ''
return True
if len(self.tokens) == 3:
self.cue = self.tokens[1]
self.cuepage = self.tokens[2]
return True
self.cue = None
self.cuepage = None
self.addMessage('bad CUE (ignored)')
return True
def keyword_group(self):
self.state = USITTAsciiParser.GROUP_COLLECT
self.part = None
if len(self.tokens) == 2:
self.group = self.tokens[1]
self.grouppage = ''
return True
if len(self.tokens) == 3:
self.group = self.tokens[1]
self.grouppage = self.tokens[2]
return True
self.group = None
self.grouppage = None
self.addMessage('bad GROUP (ignored)')
return True
def keyword_sub(self):
self.state = USITTAsciiParser.SUB_COLLECT
self.part = None
if len(self.tokens) == 2:
self.sub = self.tokens[1]
self.subpage = ''
return True
if len(self.tokens) == 3:
self.sub = self.tokens[1]
self.subpage = self.tokens[2]
return True
self.sub = None
self.subpage = None
self.addMessage('bad SUB (ignored)')
return True
def keyword_mfg_basic(self, keyword):
return True
def keyword_mfg_primary(self, keyword):
self.state = USITTAsciiParser.MFG_COLLECT
if self.recognizedMfgPrimary(keyword):
return self.doMfgPrimary(keyword)
return True
def keyword_mfg_secondary(self, keyword):
if self.recognizedMfgSecondary(keyword):
return self.doMfgSecondary(keyword)
return True
def keyword_cue_secondary(self, keyword):
if self.cue != None and self.cue != '' and (len(self.tokens) > 1):
if keyword.startswith('$$'):
return self.keywordMfgForCue(keyword)
if keyword.lower() == 'chan':
return self.keywordChannelForCue()
if keyword.lower() == 'down':
return self.keywordDownForCue()
if keyword.lower() == 'followon':
return self.keywordFollowonForCue()
if keyword.lower() == 'link':
return self.keywordLinkForCue()
if keyword.lower() == 'part':
return self.keywordPartForCue()
if keyword.lower() == 'text':
return self.keywordTextForCue()
if keyword.lower() == 'up':
return self.keywordUpForCue()
self.addMessage('(ignored) unknown or out of place ' + keyword)
return True
def keyword_group_secondary(self, keyword):
if self.group != None and self.group != '' and (len(self.tokens) > 1):
if keyword.startswith('$$'):
return self.keywordMfgForGroup(keyword)
if keyword.lower() == 'chan':
return self.keywordChannelForGroup()
if keyword.lower() == 'part':
return self.keywordPartForGroup()
if keyword.lower() == 'text':
return self.keywordTextForGroup()
return True
def keyword_sub_secondary(self, keyword):
if self.sub != None and self.sub != '' and (len(self.tokens) > 1):
if keyword.startswith('$$'):
return self.keywordMfgForGroup(keyword)
if keyword.lower() == 'chan':
return self.keywordChannelForSub()
if keyword.lower() == 'down':
return self.keywordDownForSub()
if keyword.lower() == 'text':
return self.keywordTextForSub()
if keyword.lower() == 'up':
return self.keywordUpForCue()
return True
def keyword_channel_for_cue(self):
lt = len(self.tokens)
v = True
rs = 3
while v and rs <= lt:
v = self.doChannelForCue(self.cue, self.cuepage, self.tokens[rs - 2], self.tokens[rs - 1])
rs += 2
if v:
return True
self.addMessage('bad CHAN (ignored)')
return True
def keyword_down_for_cue(self):
if len(self.tokens) == 2:
self.doDownForCue(self.cue, self.cuepage, self.tokens[1], '0')
return True
if len(self.tokens) == 3:
self.doDownForCue(self.cue, self.cuepage, self.tokens[1], self.tokens[2])
return True
self.addMessage('bad DOWN (ignored)')
return True
def keyword_followon_for_cue(self):
if len(self.tokens) == 2:
self.doFollowonForCue(self.cue, self.cuepage, self.tokens[1])
return True
self.addMessage('bad FOLLOWON (ignored)')
return True
def keywordlink_for_cue(self):
if len(self.tokens) == 2:
self.doLinkForCue(self.cue, self.cuepage, self.tokens[1])
return True
self.addMessage('bad LINK (ignored)')
return True
def keyword_part_for_cue(self):
if len(self.tokens) == 2:
self.doPartForCue(self.cue, self.cuepage, self.tokens[1])
return True
self.addMessage('bad PART (ignored)')
return True
def keyword_text_for_cue(self):
if len(self.tokens) > 1:
self.doTextForCue(self.cue, self.cuepage, self.tokenStringForText())
return True
self.addMessage('bad TEXT (ignored)')
return True
def keyword_up_for_cue(self):
if len(self.tokens) == 2:
self.doUpForCue(self.cue, self.cuepage, self.tokens[1], '0')
return True
if len(self.tokens) == 3:
self.doUpForCue(self.cue, self.cuepage, self.tokens[1], self.tokens[2])
return True
self.addMessage('bad UP (ignored)')
return True
def keyword_channel_for_group(self):
lt = len(self.tokens)
v = True
rs = 3
while v and rs <= lt:
v = self.doChannelForGroup(self.group, self.grouppage, self.tokens[rs - 2], self.tokens[rs - 1])
rs += 2
if v:
return True
self.addMessage('Warning: bad CHAN (ignored)')
return True
def keyword_part_for_group(self):
if len(self.tokens) == 2:
self.doPartForGroup(self.group, self.grouppage, self.tokens[1])
return True
self.addMessage('bad PART (ignored)')
return True
def keyword_text_for_group(self):
if len(self.tokens) > 1:
self.doTextForGroup(self.group, self.grouppage, self.tokenStringForText())
return True
self.addMessage('bad TEXT (ignored)')
return True
def keyword_channel_for_sub(self):
lt = len(self.tokens)
v = True
rs = 3
while v and rs <= lt:
v = self.doChannelForSub(self.sub, self.subpage, self.tokens[rs - 2], self.tokens[rs - 1])
rs += 2
if v:
return True
self.addMessage('Warning: bad CHAN (ignored)')
return True
def keyword_down_for_sub(self):
if len(self.tokens) == 2:
self.doDownForSub(self.sub, self.subpage, self.tokens[1], '0')
return True
if len(self.tokens) == 3:
self.doDownForSub(self.sub, self.subpage, self.tokens[1], self.tokens[2])
return True
self.addMessage('bad UP (ignored)')
return True
def keyword_text_for_sub(self):
if len(self.tokens) > 1:
self.doTextForSub(self.sub, self.subpage, self.tokenStringForText())
return True
self.addMessage('bad TEXT (ignored)')
return True
def keyword_up_for_sub(self):
if len(self.tokens) == 2:
self.doUpForSub(self.sub, self.subpage, self.tokens[1], '0')
return True
if len(self.tokens) == 3:
self.doUpForSub(self.sub, self.subpage, self.tokens[1], self.tokens[2])
return True
self.addMessage('bad UP (ignored)')
return True
def do_clear_item(self, what, page):
test = True
def do_set(self, item, value):
test = True
def do_patch(self, page, channel, dimmer, level):
return True
def do_channel_for_cue(self, cue, page, channel, level):
return True
def do_down_for_cue(self, cue, page, down, waitdown):
test = True
def do_followon_for_cue(self, cue, page, follow):
test = True
def do_link_for_cue(self, cue, page, link):
test = True
def do_part_for_cue(self, cue, page, part):
self.part = part
test = True
def do_text_for_cue(self, cue, page, text):
test = True
def do_up_for_cue(self, cue, page, up, waitup):
test = True
def do_channel_for_group(self, group, page, channel, level):
return True
def do_part_for_group(self, group, page, part):
self.part = part
test = True
def do_text_for_group(self, group, page, text):
test = True
def do_channel_for_sub(self, sub, page, channel, level):
return True
def do_down_for_sub(self, sub, page, down, waitdown):
test = True
def do_text_for_sub(self, sub, page, text):
test = True
def do_up_for_sub(self, sub, page, up, waitup):
test = True
def recognized_mfg_basic(self, keyword):
return False
def recognized_mfg_primary(self, keyword):
return False
def recognized_mfg_secondary(self, keyword):
return False
def do_mfg_primary(self, keyword):
return True
def do_mfg_primary(self, keyword):
return True
def keyword_mfg_for_cue(self, keyword):
return True
def keyword_mfg_for_group(self, keyword):
return True
def keyword_mfg_for_sub(self, keyword):
return True
def is_delimiter(self, c):
if c == '\t':
return True
if c == ' ':
return True
if c == ',':
return True
if c == '/':
return True
if c == ';':
return True
if c == '<':
return True
if c == '=':
return True
if c == '>':
return True
if c == '@':
return True
return False |
SUCCESS_RESPONSE_CODE = 'Success'
METHOD_NOT_ALLOWED = 'Failure'
UNAUTHORIZED = 'Warning'
SUCCESS_RESPONSE_CREATED = 'Success'
PAGE_NOT_FOUND = 'Error'
INTERNAL_SERVER_ERROR = 'Error'
BAD_REQUEST_CODE = 'Error'
SUCCESS_MESSAGE = 'Success'
FAILURE_MESSAGE = 'Failure' | success_response_code = 'Success'
method_not_allowed = 'Failure'
unauthorized = 'Warning'
success_response_created = 'Success'
page_not_found = 'Error'
internal_server_error = 'Error'
bad_request_code = 'Error'
success_message = 'Success'
failure_message = 'Failure' |
def phonehome():
relax()
sleep(1)
i01.setHeadSpeed(1.0,1.0,1.0,1.0,1.0)
i01.setArmSpeed("left",1.0,1.0,1.0,1.0)
i01.setArmSpeed("right",1.0,1.0,1.0,1.0)
i01.setHandSpeed("left",1.0,1.0,1.0,1.0,1.0,1.0)
i01.setHandSpeed("right",1.0,1.0,1.0,1.0,1.0,1.0)
i01.setTorsoSpeed(1.0,1.0,1.0)
i01.moveHead(160,68)
i01.moveArm("left",5,86,30,20)
i01.moveArm("right",86,140,83,80)
i01.moveHand("left",99,140,173,167,130,26)
i01.moveHand("right",135,6,170,145,168,180)
i01.moveTorso(25,80,90)
sleep(2)
#i01.mouth.speakBlocking("E,T phone the big home of the inmoov nation")
AudioPlayer.playFile(RuningFolder+'/system/sounds/E,T phone the big home of the inmoov nation.mp3')
sleep(2)
rest()
sleep(1)
relax()
| def phonehome():
relax()
sleep(1)
i01.setHeadSpeed(1.0, 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed('left', 1.0, 1.0, 1.0, 1.0)
i01.setArmSpeed('right', 1.0, 1.0, 1.0, 1.0)
i01.setHandSpeed('left', 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setHandSpeed('right', 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
i01.setTorsoSpeed(1.0, 1.0, 1.0)
i01.moveHead(160, 68)
i01.moveArm('left', 5, 86, 30, 20)
i01.moveArm('right', 86, 140, 83, 80)
i01.moveHand('left', 99, 140, 173, 167, 130, 26)
i01.moveHand('right', 135, 6, 170, 145, 168, 180)
i01.moveTorso(25, 80, 90)
sleep(2)
AudioPlayer.playFile(RuningFolder + '/system/sounds/E,T phone the big home of the inmoov nation.mp3')
sleep(2)
rest()
sleep(1)
relax() |
n1 = int(input('Digite um Valor: '))
n2 = int(input('Digite outro valor: '))
n = n1 + n2
print('A soma entre {} e {} resulta em: {} !'.format(n1,n2,n))
print(type(n1))
| n1 = int(input('Digite um Valor: '))
n2 = int(input('Digite outro valor: '))
n = n1 + n2
print('A soma entre {} e {} resulta em: {} !'.format(n1, n2, n))
print(type(n1)) |
class JUMP_GE:
def __init__(self, stack):
self.phase = 0
self.ip = 0
self.stack = stack
self.a = 0
def exec(self, ip, data):
if (self.phase == 0):
self.ip = ip + 1
self.a = self.stack.pop()
self.phase = 1
return False
elif (self.phase == 1):
b = self.stack.pop()
if b > self.a:
self.phase = 2
return False
else:
self.phase = 0
return True
elif (self.phase == 2):
self.ip = data - 1
self.phase = 3
return False
else:
assert(self.phase == 3)
self.phase = 0
return True
| class Jump_Ge:
def __init__(self, stack):
self.phase = 0
self.ip = 0
self.stack = stack
self.a = 0
def exec(self, ip, data):
if self.phase == 0:
self.ip = ip + 1
self.a = self.stack.pop()
self.phase = 1
return False
elif self.phase == 1:
b = self.stack.pop()
if b > self.a:
self.phase = 2
return False
else:
self.phase = 0
return True
elif self.phase == 2:
self.ip = data - 1
self.phase = 3
return False
else:
assert self.phase == 3
self.phase = 0
return True |
class TriggerListener(object):
def __init__(self, state_machine, **kwargs):
self._state_machine = state_machine
def __call__(self, msg):
self._state_machine.trigger(msg.data)
| class Triggerlistener(object):
def __init__(self, state_machine, **kwargs):
self._state_machine = state_machine
def __call__(self, msg):
self._state_machine.trigger(msg.data) |
# 78. Subsets
# Runtime: 32 ms, faster than 85.43% of Python3 online submissions for Subsets.
# Memory Usage: 14.3 MB, less than 78.59% of Python3 online submissions for Subsets.
class Solution:
# Cascading
def subsets(self, nums: list[int]) -> list[list[int]]:
res = [[]]
for n in nums:
res += [curr + [n] for curr in res]
return res | class Solution:
def subsets(self, nums: list[int]) -> list[list[int]]:
res = [[]]
for n in nums:
res += [curr + [n] for curr in res]
return res |
class Constand_Hs:
HEADERSIZE=1024
Dangkyvantay=str('FDK')
Dangkythetu=str('CDK')
Van_tay_mo_tu_F=str('Fopen\n')
Van_tay_dong_tu_F=str('Fclose\n')
Van_Tay_Su_Dung_Tu=str('Fused\n')
The_Tu_Su_Dung_Tu=str('Cused\n')
Van_tay_mo_tu_C=str('Copen')
Van_tay_dong_tu_C=str('Cclose')
Server=('192.168.1.128',3003)
lstouputtemp = [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]
lstinputtemp = [7,6,5,4,3,2,1,0,11,10,9,8,15,14,13,12]
dooropen=str('Dooropen')
Dongtu=False
Motu=True
def __init__(self):
pass | class Constand_Hs:
headersize = 1024
dangkyvantay = str('FDK')
dangkythetu = str('CDK')
van_tay_mo_tu_f = str('Fopen\n')
van_tay_dong_tu_f = str('Fclose\n')
van__tay__su__dung__tu = str('Fused\n')
the__tu__su__dung__tu = str('Cused\n')
van_tay_mo_tu_c = str('Copen')
van_tay_dong_tu_c = str('Cclose')
server = ('192.168.1.128', 3003)
lstouputtemp = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
lstinputtemp = [7, 6, 5, 4, 3, 2, 1, 0, 11, 10, 9, 8, 15, 14, 13, 12]
dooropen = str('Dooropen')
dongtu = False
motu = True
def __init__(self):
pass |
list1 = ['phisics','chemistry',1997,2000]
print("Value available at index 2 is ", list1[2])
list1[2] = 2003
print("New Value available at index 2 is ", list1[2]) | list1 = ['phisics', 'chemistry', 1997, 2000]
print('Value available at index 2 is ', list1[2])
list1[2] = 2003
print('New Value available at index 2 is ', list1[2]) |
expected_output = {
'mst_instances': {
6: {
'bridge_address': '5897.bdff.3b3a',
'bridge_priority': 20486,
'interfaces': {
'GigabitEthernet1/7': {
'cost': 20000,
'counters': {
'bpdu_received': 0,
'bpdu_sent': 836828,
},
'designated_bridge_address': '5897.bdff.3b3a',
'designated_bridge_port_id': '128.7',
'designated_bridge_priority': 20486,
'designated_root_address': '58ac.78ff.c3f5',
'designated_root_cost': 2000,
'designated_root_priority': 8198,
'forward_delay': 0,
'forward_transitions': 1,
'message_expires': 0,
'name': 'GigabitEthernet1/7',
'port_id': '128.7',
'port_priority': 128,
'status': 'designated forwarding',
},
'TenGigabitEthernet2/10': {
'cost': 2000,
'counters': {
'bpdu_received': 0,
'bpdu_sent': 1285480,
},
'designated_bridge_address': '5897.bdff.3b3a',
'designated_bridge_port_id': '128.138',
'designated_bridge_priority': 20486,
'designated_root_address': '58ac.78ff.c3f5',
'designated_root_cost': 2000,
'designated_root_priority': 8198,
'forward_delay': 0,
'forward_transitions': 2,
'message_expires': 0,
'name': 'TenGigabitEthernet2/10',
'port_id': '128.138',
'port_priority': 128,
'status': 'designated forwarding',
},
'TenGigabitEthernet2/3': {
'cost': 2000,
'counters': {
'bpdu_received': 0,
'bpdu_sent': 1285495,
},
'designated_bridge_address': '5897.bdff.3b3a',
'designated_bridge_port_id': '128.131',
'designated_bridge_priority': 20486,
'designated_root_address': '58ac.78ff.c3f5',
'designated_root_cost': 2000,
'designated_root_priority': 8198,
'forward_delay': 0,
'forward_transitions': 2,
'message_expires': 0,
'name': 'TenGigabitEthernet2/3',
'port_id': '128.131',
'port_priority': 128,
'status': 'designated forwarding',
},
'TenGigabitEthernet2/4': {
'cost': 2000,
'counters': {
'bpdu_received': 0,
'bpdu_sent': 1285500,
},
'designated_bridge_address': '5897.bdff.3b3a',
'designated_bridge_port_id': '128.132',
'designated_bridge_priority': 20486,
'designated_root_address': '58ac.78ff.c3f5',
'designated_root_cost': 2000,
'designated_root_priority': 8198,
'forward_delay': 0,
'forward_transitions': 2,
'message_expires': 0,
'name': 'TenGigabitEthernet2/4',
'port_id': '128.132',
'port_priority': 128,
'status': 'designated forwarding',
},
'TenGigabitEthernet2/5': {
'cost': 2000,
'counters': {
'bpdu_received': 0,
'bpdu_sent': 1285475,
},
'designated_bridge_address': '5897.bdff.3b3a',
'designated_bridge_port_id': '128.133',
'designated_bridge_priority': 20486,
'designated_root_address': '58ac.78ff.c3f5',
'designated_root_cost': 2000,
'designated_root_priority': 8198,
'forward_delay': 0,
'forward_transitions': 2,
'message_expires': 0,
'name': 'TenGigabitEthernet2/5',
'port_id': '128.133',
'port_priority': 128,
'status': 'designated forwarding',
},
'TenGigabitEthernet2/6': {
'cost': 2000,
'counters': {
'bpdu_received': 0,
'bpdu_sent': 1285487,
},
'designated_bridge_address': '5897.bdff.3b3a',
'designated_bridge_port_id': '128.134',
'designated_bridge_priority': 20486,
'designated_root_address': '58ac.78ff.c3f5',
'designated_root_cost': 2000,
'designated_root_priority': 8198,
'forward_delay': 0,
'forward_transitions': 2,
'message_expires': 0,
'name': 'TenGigabitEthernet2/6',
'port_id': '128.134',
'port_priority': 128,
'status': 'designated forwarding',
},
'TenGigabitEthernet2/7': {
'cost': 2000,
'counters': {
'bpdu_received': 0,
'bpdu_sent': 1285497,
},
'designated_bridge_address': '5897.bdff.3b3a',
'designated_bridge_port_id': '128.135',
'designated_bridge_priority': 20486,
'designated_root_address': '58ac.78ff.c3f5',
'designated_root_cost': 2000,
'designated_root_priority': 8198,
'forward_delay': 0,
'forward_transitions': 2,
'message_expires': 0,
'name': 'TenGigabitEthernet2/7',
'port_id': '128.135',
'port_priority': 128,
'status': 'designated forwarding',
},
'TenGigabitEthernet2/8': {
'cost': 2000,
'counters': {
'bpdu_received': 0,
'bpdu_sent': 1285497,
},
'designated_bridge_address': '5897.bdff.3b3a',
'designated_bridge_port_id': '128.136',
'designated_bridge_priority': 20486,
'designated_root_address': '58ac.78ff.c3f5',
'designated_root_cost': 2000,
'designated_root_priority': 8198,
'forward_delay': 0,
'forward_transitions': 2,
'message_expires': 0,
'name': 'TenGigabitEthernet2/8',
'port_id': '128.136',
'port_priority': 128,
'status': 'designated forwarding',
},
'TenGigabitEthernet2/9': {
'cost': 2000,
'counters': {
'bpdu_received': 0,
'bpdu_sent': 1285494,
},
'designated_bridge_address': '5897.bdff.3b3a',
'designated_bridge_port_id': '128.137',
'designated_bridge_priority': 20486,
'designated_root_address': '58ac.78ff.c3f5',
'designated_root_cost': 2000,
'designated_root_priority': 8198,
'forward_delay': 0,
'forward_transitions': 2,
'message_expires': 0,
'name': 'TenGigabitEthernet2/9',
'port_id': '128.137',
'port_priority': 128,
'status': 'designated forwarding',
},
},
'mst_id': 6,
'root_address': '58ac.78ff.c3f5',
'root_priority': 8198,
'sysid': 6,
'vlan': '500-501,504-505,507-554,556-599',
},
},
}
| expected_output = {'mst_instances': {6: {'bridge_address': '5897.bdff.3b3a', 'bridge_priority': 20486, 'interfaces': {'GigabitEthernet1/7': {'cost': 20000, 'counters': {'bpdu_received': 0, 'bpdu_sent': 836828}, 'designated_bridge_address': '5897.bdff.3b3a', 'designated_bridge_port_id': '128.7', 'designated_bridge_priority': 20486, 'designated_root_address': '58ac.78ff.c3f5', 'designated_root_cost': 2000, 'designated_root_priority': 8198, 'forward_delay': 0, 'forward_transitions': 1, 'message_expires': 0, 'name': 'GigabitEthernet1/7', 'port_id': '128.7', 'port_priority': 128, 'status': 'designated forwarding'}, 'TenGigabitEthernet2/10': {'cost': 2000, 'counters': {'bpdu_received': 0, 'bpdu_sent': 1285480}, 'designated_bridge_address': '5897.bdff.3b3a', 'designated_bridge_port_id': '128.138', 'designated_bridge_priority': 20486, 'designated_root_address': '58ac.78ff.c3f5', 'designated_root_cost': 2000, 'designated_root_priority': 8198, 'forward_delay': 0, 'forward_transitions': 2, 'message_expires': 0, 'name': 'TenGigabitEthernet2/10', 'port_id': '128.138', 'port_priority': 128, 'status': 'designated forwarding'}, 'TenGigabitEthernet2/3': {'cost': 2000, 'counters': {'bpdu_received': 0, 'bpdu_sent': 1285495}, 'designated_bridge_address': '5897.bdff.3b3a', 'designated_bridge_port_id': '128.131', 'designated_bridge_priority': 20486, 'designated_root_address': '58ac.78ff.c3f5', 'designated_root_cost': 2000, 'designated_root_priority': 8198, 'forward_delay': 0, 'forward_transitions': 2, 'message_expires': 0, 'name': 'TenGigabitEthernet2/3', 'port_id': '128.131', 'port_priority': 128, 'status': 'designated forwarding'}, 'TenGigabitEthernet2/4': {'cost': 2000, 'counters': {'bpdu_received': 0, 'bpdu_sent': 1285500}, 'designated_bridge_address': '5897.bdff.3b3a', 'designated_bridge_port_id': '128.132', 'designated_bridge_priority': 20486, 'designated_root_address': '58ac.78ff.c3f5', 'designated_root_cost': 2000, 'designated_root_priority': 8198, 'forward_delay': 0, 'forward_transitions': 2, 'message_expires': 0, 'name': 'TenGigabitEthernet2/4', 'port_id': '128.132', 'port_priority': 128, 'status': 'designated forwarding'}, 'TenGigabitEthernet2/5': {'cost': 2000, 'counters': {'bpdu_received': 0, 'bpdu_sent': 1285475}, 'designated_bridge_address': '5897.bdff.3b3a', 'designated_bridge_port_id': '128.133', 'designated_bridge_priority': 20486, 'designated_root_address': '58ac.78ff.c3f5', 'designated_root_cost': 2000, 'designated_root_priority': 8198, 'forward_delay': 0, 'forward_transitions': 2, 'message_expires': 0, 'name': 'TenGigabitEthernet2/5', 'port_id': '128.133', 'port_priority': 128, 'status': 'designated forwarding'}, 'TenGigabitEthernet2/6': {'cost': 2000, 'counters': {'bpdu_received': 0, 'bpdu_sent': 1285487}, 'designated_bridge_address': '5897.bdff.3b3a', 'designated_bridge_port_id': '128.134', 'designated_bridge_priority': 20486, 'designated_root_address': '58ac.78ff.c3f5', 'designated_root_cost': 2000, 'designated_root_priority': 8198, 'forward_delay': 0, 'forward_transitions': 2, 'message_expires': 0, 'name': 'TenGigabitEthernet2/6', 'port_id': '128.134', 'port_priority': 128, 'status': 'designated forwarding'}, 'TenGigabitEthernet2/7': {'cost': 2000, 'counters': {'bpdu_received': 0, 'bpdu_sent': 1285497}, 'designated_bridge_address': '5897.bdff.3b3a', 'designated_bridge_port_id': '128.135', 'designated_bridge_priority': 20486, 'designated_root_address': '58ac.78ff.c3f5', 'designated_root_cost': 2000, 'designated_root_priority': 8198, 'forward_delay': 0, 'forward_transitions': 2, 'message_expires': 0, 'name': 'TenGigabitEthernet2/7', 'port_id': '128.135', 'port_priority': 128, 'status': 'designated forwarding'}, 'TenGigabitEthernet2/8': {'cost': 2000, 'counters': {'bpdu_received': 0, 'bpdu_sent': 1285497}, 'designated_bridge_address': '5897.bdff.3b3a', 'designated_bridge_port_id': '128.136', 'designated_bridge_priority': 20486, 'designated_root_address': '58ac.78ff.c3f5', 'designated_root_cost': 2000, 'designated_root_priority': 8198, 'forward_delay': 0, 'forward_transitions': 2, 'message_expires': 0, 'name': 'TenGigabitEthernet2/8', 'port_id': '128.136', 'port_priority': 128, 'status': 'designated forwarding'}, 'TenGigabitEthernet2/9': {'cost': 2000, 'counters': {'bpdu_received': 0, 'bpdu_sent': 1285494}, 'designated_bridge_address': '5897.bdff.3b3a', 'designated_bridge_port_id': '128.137', 'designated_bridge_priority': 20486, 'designated_root_address': '58ac.78ff.c3f5', 'designated_root_cost': 2000, 'designated_root_priority': 8198, 'forward_delay': 0, 'forward_transitions': 2, 'message_expires': 0, 'name': 'TenGigabitEthernet2/9', 'port_id': '128.137', 'port_priority': 128, 'status': 'designated forwarding'}}, 'mst_id': 6, 'root_address': '58ac.78ff.c3f5', 'root_priority': 8198, 'sysid': 6, 'vlan': '500-501,504-505,507-554,556-599'}}} |
#It is highly recommended that you check your code first in IDLE first for syntax errors and then Test it here.
#If your code has syntax errors ,Open-Palm will freeze. You have to restart it in that case
def check_even(n):
if n%2 == 0:
return True
else:
return False
| def check_even(n):
if n % 2 == 0:
return True
else:
return False |
def expand(maze, fill):
length=len(maze)
res=[[fill]*(length*2) for i in range(length*2)]
for i in range(length//2, length//2+length):
for j in range(length//2, length//2+length):
res[i][j]=maze[i-length//2][j-length//2]
return res | def expand(maze, fill):
length = len(maze)
res = [[fill] * (length * 2) for i in range(length * 2)]
for i in range(length // 2, length // 2 + length):
for j in range(length // 2, length // 2 + length):
res[i][j] = maze[i - length // 2][j - length // 2]
return res |
number = int(input())
if any(number % int(i) for i in input().split()):
print('not divisible by all')
else:
print('divisible by all')
| number = int(input())
if any((number % int(i) for i in input().split())):
print('not divisible by all')
else:
print('divisible by all') |
#
# PySNMP MIB module ALTIGA-MULTILINK-STATS-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ALTIGA-MULTILINK-STATS-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 17:05:49 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
alMultiLinkMibModule, = mibBuilder.importSymbols("ALTIGA-GLOBAL-REG", "alMultiLinkMibModule")
alMultiLinkGroup, alStatsMultiLink = mibBuilder.importSymbols("ALTIGA-MIB", "alMultiLinkGroup", "alStatsMultiLink")
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion", "ConstraintsIntersection")
ObjectGroup, NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "NotificationGroup", "ModuleCompliance")
MibIdentifier, IpAddress, ObjectIdentity, Counter32, TimeTicks, Bits, Unsigned32, MibScalar, MibTable, MibTableRow, MibTableColumn, Integer32, ModuleIdentity, Gauge32, NotificationType, iso, Counter64 = mibBuilder.importSymbols("SNMPv2-SMI", "MibIdentifier", "IpAddress", "ObjectIdentity", "Counter32", "TimeTicks", "Bits", "Unsigned32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Integer32", "ModuleIdentity", "Gauge32", "NotificationType", "iso", "Counter64")
DisplayString, TextualConvention, RowStatus = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention", "RowStatus")
altigaMultiLinkStatsMibModule = ModuleIdentity((1, 3, 6, 1, 4, 1, 3076, 1, 1, 39, 2))
altigaMultiLinkStatsMibModule.setRevisions(('2002-09-05 13:00', '2002-07-10 00:00',))
if mibBuilder.loadTexts: altigaMultiLinkStatsMibModule.setLastUpdated('200209051300Z')
if mibBuilder.loadTexts: altigaMultiLinkStatsMibModule.setOrganization('Cisco Systems, Inc.')
alStatsMultiLinkGlobal = MibIdentifier((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 1))
alMultiLinkStatsTable = MibTable((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2), )
if mibBuilder.loadTexts: alMultiLinkStatsTable.setStatus('current')
alMultiLinkStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1), ).setIndexNames((0, "ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsIndex"))
if mibBuilder.loadTexts: alMultiLinkStatsEntry.setStatus('current')
alMultiLinkStatsRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: alMultiLinkStatsRowStatus.setStatus('current')
alMultiLinkStatsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: alMultiLinkStatsIndex.setStatus('current')
alMultiLinkStatsTxOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alMultiLinkStatsTxOctets.setStatus('current')
alMultiLinkStatsTxPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alMultiLinkStatsTxPackets.setStatus('current')
alMultiLinkStatsTxMlpFragments = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 5), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alMultiLinkStatsTxMlpFragments.setStatus('current')
alMultiLinkStatsTxMlpPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 6), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alMultiLinkStatsTxMlpPackets.setStatus('current')
alMultiLinkStatsTxNonMlpPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 7), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alMultiLinkStatsTxNonMlpPackets.setStatus('current')
alMultiLinkStatsTxThroughput = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 8), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alMultiLinkStatsTxThroughput.setStatus('current')
alMultiLinkStatsRxOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 9), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alMultiLinkStatsRxOctets.setStatus('current')
alMultiLinkStatsRxPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 10), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alMultiLinkStatsRxPackets.setStatus('current')
alMultiLinkStatsRxMlpFragments = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 11), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alMultiLinkStatsRxMlpFragments.setStatus('current')
alMultiLinkStatsRxMlpPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 12), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alMultiLinkStatsRxMlpPackets.setStatus('current')
alMultiLinkStatsRxNonMlpPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 13), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alMultiLinkStatsRxNonMlpPackets.setStatus('current')
alMultiLinkStatsRxThroughput = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 14), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alMultiLinkStatsRxThroughput.setStatus('current')
alMultiLinkStatsRxLostEnd = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 15), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alMultiLinkStatsRxLostEnd.setStatus('current')
alMultiLinkStatsRxStalePackets = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 16), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alMultiLinkStatsRxStalePackets.setStatus('current')
alMultiLinkStatsRxStaleFragments = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 17), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alMultiLinkStatsRxStaleFragments.setStatus('current')
alMultiLinkStatsRxDroppedFragments = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 18), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alMultiLinkStatsRxDroppedFragments.setStatus('current')
alMultiLinkStatsRxOOSFragments = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 19), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alMultiLinkStatsRxOOSFragments.setStatus('current')
alMultiLinkStatsIdleTmrCleanup = MibTableColumn((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 20), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: alMultiLinkStatsIdleTmrCleanup.setStatus('current')
altigaMultiLinkStatsMibConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 3076, 1, 1, 39, 2, 1))
altigaMultiLinkStatsMibCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 3076, 1, 1, 39, 2, 1, 1))
altigaMultiLinkStatsMibCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 3076, 1, 1, 39, 2, 1, 1, 1)).setObjects(("ALTIGA-MULTILINK-STATS-MIB", "altigaMultiLinkStatsGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
altigaMultiLinkStatsMibCompliance = altigaMultiLinkStatsMibCompliance.setStatus('current')
altigaMultiLinkStatsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 3076, 2, 1, 1, 1, 34, 2)).setObjects(("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsRowStatus"), ("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsIndex"), ("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsTxOctets"), ("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsTxPackets"), ("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsTxMlpFragments"), ("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsTxMlpPackets"), ("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsTxNonMlpPackets"), ("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsTxThroughput"), ("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsRxOctets"), ("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsRxPackets"), ("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsRxMlpFragments"), ("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsRxMlpPackets"), ("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsRxNonMlpPackets"), ("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsRxThroughput"), ("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsRxLostEnd"), ("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsRxStalePackets"), ("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsRxStaleFragments"), ("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsRxDroppedFragments"), ("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsRxOOSFragments"), ("ALTIGA-MULTILINK-STATS-MIB", "alMultiLinkStatsIdleTmrCleanup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
altigaMultiLinkStatsGroup = altigaMultiLinkStatsGroup.setStatus('current')
mibBuilder.exportSymbols("ALTIGA-MULTILINK-STATS-MIB", altigaMultiLinkStatsMibConformance=altigaMultiLinkStatsMibConformance, altigaMultiLinkStatsMibModule=altigaMultiLinkStatsMibModule, alMultiLinkStatsRxOctets=alMultiLinkStatsRxOctets, alMultiLinkStatsTxMlpFragments=alMultiLinkStatsTxMlpFragments, alMultiLinkStatsRowStatus=alMultiLinkStatsRowStatus, alMultiLinkStatsTxPackets=alMultiLinkStatsTxPackets, alMultiLinkStatsRxThroughput=alMultiLinkStatsRxThroughput, alMultiLinkStatsRxStalePackets=alMultiLinkStatsRxStalePackets, alMultiLinkStatsTxThroughput=alMultiLinkStatsTxThroughput, alMultiLinkStatsEntry=alMultiLinkStatsEntry, alMultiLinkStatsIndex=alMultiLinkStatsIndex, alMultiLinkStatsRxNonMlpPackets=alMultiLinkStatsRxNonMlpPackets, alMultiLinkStatsRxMlpFragments=alMultiLinkStatsRxMlpFragments, alMultiLinkStatsTxOctets=alMultiLinkStatsTxOctets, alMultiLinkStatsRxLostEnd=alMultiLinkStatsRxLostEnd, alMultiLinkStatsRxOOSFragments=alMultiLinkStatsRxOOSFragments, PYSNMP_MODULE_ID=altigaMultiLinkStatsMibModule, altigaMultiLinkStatsMibCompliance=altigaMultiLinkStatsMibCompliance, altigaMultiLinkStatsGroup=altigaMultiLinkStatsGroup, alMultiLinkStatsTxMlpPackets=alMultiLinkStatsTxMlpPackets, alMultiLinkStatsTxNonMlpPackets=alMultiLinkStatsTxNonMlpPackets, altigaMultiLinkStatsMibCompliances=altigaMultiLinkStatsMibCompliances, alStatsMultiLinkGlobal=alStatsMultiLinkGlobal, alMultiLinkStatsRxDroppedFragments=alMultiLinkStatsRxDroppedFragments, alMultiLinkStatsRxMlpPackets=alMultiLinkStatsRxMlpPackets, alMultiLinkStatsTable=alMultiLinkStatsTable, alMultiLinkStatsRxPackets=alMultiLinkStatsRxPackets, alMultiLinkStatsRxStaleFragments=alMultiLinkStatsRxStaleFragments, alMultiLinkStatsIdleTmrCleanup=alMultiLinkStatsIdleTmrCleanup)
| (al_multi_link_mib_module,) = mibBuilder.importSymbols('ALTIGA-GLOBAL-REG', 'alMultiLinkMibModule')
(al_multi_link_group, al_stats_multi_link) = mibBuilder.importSymbols('ALTIGA-MIB', 'alMultiLinkGroup', 'alStatsMultiLink')
(object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, single_value_constraint, value_range_constraint, constraints_union, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection')
(object_group, notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'ObjectGroup', 'NotificationGroup', 'ModuleCompliance')
(mib_identifier, ip_address, object_identity, counter32, time_ticks, bits, unsigned32, mib_scalar, mib_table, mib_table_row, mib_table_column, integer32, module_identity, gauge32, notification_type, iso, counter64) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibIdentifier', 'IpAddress', 'ObjectIdentity', 'Counter32', 'TimeTicks', 'Bits', 'Unsigned32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Integer32', 'ModuleIdentity', 'Gauge32', 'NotificationType', 'iso', 'Counter64')
(display_string, textual_convention, row_status) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention', 'RowStatus')
altiga_multi_link_stats_mib_module = module_identity((1, 3, 6, 1, 4, 1, 3076, 1, 1, 39, 2))
altigaMultiLinkStatsMibModule.setRevisions(('2002-09-05 13:00', '2002-07-10 00:00'))
if mibBuilder.loadTexts:
altigaMultiLinkStatsMibModule.setLastUpdated('200209051300Z')
if mibBuilder.loadTexts:
altigaMultiLinkStatsMibModule.setOrganization('Cisco Systems, Inc.')
al_stats_multi_link_global = mib_identifier((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 1))
al_multi_link_stats_table = mib_table((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2))
if mibBuilder.loadTexts:
alMultiLinkStatsTable.setStatus('current')
al_multi_link_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1)).setIndexNames((0, 'ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsIndex'))
if mibBuilder.loadTexts:
alMultiLinkStatsEntry.setStatus('current')
al_multi_link_stats_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
alMultiLinkStatsRowStatus.setStatus('current')
al_multi_link_stats_index = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alMultiLinkStatsIndex.setStatus('current')
al_multi_link_stats_tx_octets = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 3), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alMultiLinkStatsTxOctets.setStatus('current')
al_multi_link_stats_tx_packets = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alMultiLinkStatsTxPackets.setStatus('current')
al_multi_link_stats_tx_mlp_fragments = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 5), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alMultiLinkStatsTxMlpFragments.setStatus('current')
al_multi_link_stats_tx_mlp_packets = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 6), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alMultiLinkStatsTxMlpPackets.setStatus('current')
al_multi_link_stats_tx_non_mlp_packets = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 7), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alMultiLinkStatsTxNonMlpPackets.setStatus('current')
al_multi_link_stats_tx_throughput = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 8), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alMultiLinkStatsTxThroughput.setStatus('current')
al_multi_link_stats_rx_octets = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 9), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alMultiLinkStatsRxOctets.setStatus('current')
al_multi_link_stats_rx_packets = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 10), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alMultiLinkStatsRxPackets.setStatus('current')
al_multi_link_stats_rx_mlp_fragments = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 11), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alMultiLinkStatsRxMlpFragments.setStatus('current')
al_multi_link_stats_rx_mlp_packets = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 12), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alMultiLinkStatsRxMlpPackets.setStatus('current')
al_multi_link_stats_rx_non_mlp_packets = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 13), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alMultiLinkStatsRxNonMlpPackets.setStatus('current')
al_multi_link_stats_rx_throughput = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 14), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alMultiLinkStatsRxThroughput.setStatus('current')
al_multi_link_stats_rx_lost_end = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 15), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alMultiLinkStatsRxLostEnd.setStatus('current')
al_multi_link_stats_rx_stale_packets = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 16), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alMultiLinkStatsRxStalePackets.setStatus('current')
al_multi_link_stats_rx_stale_fragments = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 17), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alMultiLinkStatsRxStaleFragments.setStatus('current')
al_multi_link_stats_rx_dropped_fragments = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 18), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alMultiLinkStatsRxDroppedFragments.setStatus('current')
al_multi_link_stats_rx_oos_fragments = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 19), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alMultiLinkStatsRxOOSFragments.setStatus('current')
al_multi_link_stats_idle_tmr_cleanup = mib_table_column((1, 3, 6, 1, 4, 1, 3076, 2, 1, 2, 34, 2, 1, 20), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
alMultiLinkStatsIdleTmrCleanup.setStatus('current')
altiga_multi_link_stats_mib_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 3076, 1, 1, 39, 2, 1))
altiga_multi_link_stats_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 3076, 1, 1, 39, 2, 1, 1))
altiga_multi_link_stats_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 3076, 1, 1, 39, 2, 1, 1, 1)).setObjects(('ALTIGA-MULTILINK-STATS-MIB', 'altigaMultiLinkStatsGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
altiga_multi_link_stats_mib_compliance = altigaMultiLinkStatsMibCompliance.setStatus('current')
altiga_multi_link_stats_group = object_group((1, 3, 6, 1, 4, 1, 3076, 2, 1, 1, 1, 34, 2)).setObjects(('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsRowStatus'), ('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsIndex'), ('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsTxOctets'), ('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsTxPackets'), ('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsTxMlpFragments'), ('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsTxMlpPackets'), ('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsTxNonMlpPackets'), ('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsTxThroughput'), ('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsRxOctets'), ('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsRxPackets'), ('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsRxMlpFragments'), ('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsRxMlpPackets'), ('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsRxNonMlpPackets'), ('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsRxThroughput'), ('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsRxLostEnd'), ('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsRxStalePackets'), ('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsRxStaleFragments'), ('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsRxDroppedFragments'), ('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsRxOOSFragments'), ('ALTIGA-MULTILINK-STATS-MIB', 'alMultiLinkStatsIdleTmrCleanup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
altiga_multi_link_stats_group = altigaMultiLinkStatsGroup.setStatus('current')
mibBuilder.exportSymbols('ALTIGA-MULTILINK-STATS-MIB', altigaMultiLinkStatsMibConformance=altigaMultiLinkStatsMibConformance, altigaMultiLinkStatsMibModule=altigaMultiLinkStatsMibModule, alMultiLinkStatsRxOctets=alMultiLinkStatsRxOctets, alMultiLinkStatsTxMlpFragments=alMultiLinkStatsTxMlpFragments, alMultiLinkStatsRowStatus=alMultiLinkStatsRowStatus, alMultiLinkStatsTxPackets=alMultiLinkStatsTxPackets, alMultiLinkStatsRxThroughput=alMultiLinkStatsRxThroughput, alMultiLinkStatsRxStalePackets=alMultiLinkStatsRxStalePackets, alMultiLinkStatsTxThroughput=alMultiLinkStatsTxThroughput, alMultiLinkStatsEntry=alMultiLinkStatsEntry, alMultiLinkStatsIndex=alMultiLinkStatsIndex, alMultiLinkStatsRxNonMlpPackets=alMultiLinkStatsRxNonMlpPackets, alMultiLinkStatsRxMlpFragments=alMultiLinkStatsRxMlpFragments, alMultiLinkStatsTxOctets=alMultiLinkStatsTxOctets, alMultiLinkStatsRxLostEnd=alMultiLinkStatsRxLostEnd, alMultiLinkStatsRxOOSFragments=alMultiLinkStatsRxOOSFragments, PYSNMP_MODULE_ID=altigaMultiLinkStatsMibModule, altigaMultiLinkStatsMibCompliance=altigaMultiLinkStatsMibCompliance, altigaMultiLinkStatsGroup=altigaMultiLinkStatsGroup, alMultiLinkStatsTxMlpPackets=alMultiLinkStatsTxMlpPackets, alMultiLinkStatsTxNonMlpPackets=alMultiLinkStatsTxNonMlpPackets, altigaMultiLinkStatsMibCompliances=altigaMultiLinkStatsMibCompliances, alStatsMultiLinkGlobal=alStatsMultiLinkGlobal, alMultiLinkStatsRxDroppedFragments=alMultiLinkStatsRxDroppedFragments, alMultiLinkStatsRxMlpPackets=alMultiLinkStatsRxMlpPackets, alMultiLinkStatsTable=alMultiLinkStatsTable, alMultiLinkStatsRxPackets=alMultiLinkStatsRxPackets, alMultiLinkStatsRxStaleFragments=alMultiLinkStatsRxStaleFragments, alMultiLinkStatsIdleTmrCleanup=alMultiLinkStatsIdleTmrCleanup) |
class Solution:
def isPalindrome(self, s: str) -> bool:
l,r = 0, len(s)-1
while l<r:
if not s[l].isalnum():
l+=1
elif not s[r].isalnum():
r-=1
elif s[l].lower() == s[r].lower():
l+=1
r-=1
else:
return False
return True
| class Solution:
def is_palindrome(self, s: str) -> bool:
(l, r) = (0, len(s) - 1)
while l < r:
if not s[l].isalnum():
l += 1
elif not s[r].isalnum():
r -= 1
elif s[l].lower() == s[r].lower():
l += 1
r -= 1
else:
return False
return True |
class Solution:
def rankTeams(self, votes: List[str]) -> str:
# Create 2D data structure A : 0, 0, 0, 'A', C: 0, 0, 0, 'B'
rnk = {v:[0] * len(votes[0]) + [v] for v in votes[0]}
# Tally votes in reverse because sort defaults ascending
for v in votes:
for i, c in enumerate(v):
rnk[c][i] -= 1
# Sort
return "".join(sorted(rnk, key = lambda x: rnk[x])) | class Solution:
def rank_teams(self, votes: List[str]) -> str:
rnk = {v: [0] * len(votes[0]) + [v] for v in votes[0]}
for v in votes:
for (i, c) in enumerate(v):
rnk[c][i] -= 1
return ''.join(sorted(rnk, key=lambda x: rnk[x])) |
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution:
def findMode(self, root: TreeNode) -> List[int]:
if not root:
return
dic = {}
def record(node):
if not node:
return
if node.val not in dic:
dic[node.val] = 1
else:
dic[node.val] += 1
record(node.left)
record(node.right)
record(root)
self.modes = []
max_count = None
for key, val in dic.items():
if not max_count:
self.modes.append(key)
max_count = val
elif val == max_count:
self.modes.append(key)
elif val > max_count:
self.modes = [key]
max_count = val
return self.modes
| class Solution:
def find_mode(self, root: TreeNode) -> List[int]:
if not root:
return
dic = {}
def record(node):
if not node:
return
if node.val not in dic:
dic[node.val] = 1
else:
dic[node.val] += 1
record(node.left)
record(node.right)
record(root)
self.modes = []
max_count = None
for (key, val) in dic.items():
if not max_count:
self.modes.append(key)
max_count = val
elif val == max_count:
self.modes.append(key)
elif val > max_count:
self.modes = [key]
max_count = val
return self.modes |
#
# PySNMP MIB module TPT-DDOS-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/TPT-DDOS-MIB
# Produced by pysmi-0.3.4 at Wed May 1 15:26:17 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsIntersection, ConstraintsUnion, ValueRangeConstraint, ValueSizeConstraint, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ConstraintsUnion", "ValueRangeConstraint", "ValueSizeConstraint", "SingleValueConstraint")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
NotificationType, Unsigned32, Counter32, Bits, ModuleIdentity, TimeTicks, Gauge32, ObjectIdentity, IpAddress, Integer32, iso, MibIdentifier, Counter64, MibScalar, MibTable, MibTableRow, MibTableColumn = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "Unsigned32", "Counter32", "Bits", "ModuleIdentity", "TimeTicks", "Gauge32", "ObjectIdentity", "IpAddress", "Integer32", "iso", "MibIdentifier", "Counter64", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
tpt_tpa_objs, = mibBuilder.importSymbols("TPT-TPAMIBS-MIB", "tpt-tpa-objs")
tpt_ddos = ModuleIdentity((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9)).setLabel("tpt-ddos")
tpt_ddos.setRevisions(('2016-05-25 18:54',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: tpt_ddos.setRevisionsDescriptions(('Updated copyright information. Minor MIB syntax fixes.',))
if mibBuilder.loadTexts: tpt_ddos.setLastUpdated('201605251854Z')
if mibBuilder.loadTexts: tpt_ddos.setOrganization('Trend Micro, Inc.')
if mibBuilder.loadTexts: tpt_ddos.setContactInfo('www.trendmicro.com')
if mibBuilder.loadTexts: tpt_ddos.setDescription("DDoS management (statistics). Copyright (C) 2016 Trend Micro Incorporated. All Rights Reserved. Trend Micro makes no warranty of any kind with regard to this material, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. Trend Micro shall not be liable for errors contained herein or for incidental or consequential damages in connection with the furnishing, performance, or use of this material. This document contains proprietary information, which is protected by copyright. No part of this document may be photocopied, reproduced, or translated into another language without the prior written consent of Trend Micro. The information is provided 'as is' without warranty of any kind and is subject to change without notice. The only warranties for Trend Micro products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. Trend Micro shall not be liable for technical or editorial errors or omissions contained herein. TippingPoint(R), the TippingPoint logo, and Digital Vaccine(R) are registered trademarks of Trend Micro. All other company and product names may be trademarks of their respective holders. All rights reserved. This document contains confidential information, trade secrets or both, which are the property of Trend Micro. No part of this documentation may be reproduced in any form or by any means or used to make any derivative work (such as translation, transformation, or adaptation) without written permission from Trend Micro or one of its subsidiaries. All other company and product names may be trademarks of their respective holders. ")
rejectSynHistSecondsTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 5), )
if mibBuilder.loadTexts: rejectSynHistSecondsTable.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistSecondsTable.setDescription('Historical (sampled) data every second for a minute.')
rejectSynHistSecondsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 5, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "rejectSynHistSecondsGlobalID"), (0, "TPT-DDOS-MIB", "rejectSynHistSecondsIndex"))
if mibBuilder.loadTexts: rejectSynHistSecondsEntry.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistSecondsEntry.setDescription('An entry in the rejected SYNs per second history seconds table. Rows cannot be created or deleted. ')
rejectSynHistSecondsGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 5, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: rejectSynHistSecondsGlobalID.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistSecondsGlobalID.setDescription('The global identifier of a DDoS filter group.')
rejectSynHistSecondsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 5, 1, 2), Unsigned32())
if mibBuilder.loadTexts: rejectSynHistSecondsIndex.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistSecondsIndex.setDescription('The index (0-59) of the second.')
rejectSynHistSecondsUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 5, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectSynHistSecondsUnitCount.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistSecondsUnitCount.setDescription('The count of filter-specific units matching the criteria for this filter in the specified second.')
rejectSynHistSecondsTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 5, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectSynHistSecondsTimestamp.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistSecondsTimestamp.setDescription('The time SecondsUnitCount was updated (in seconds since January 1, 1970).')
rejectSynHistMinutesTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 6), )
if mibBuilder.loadTexts: rejectSynHistMinutesTable.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistMinutesTable.setDescription('Historical (sampled) data every minute for an hour.')
rejectSynHistMinutesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 6, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "rejectSynHistMinutesGlobalID"), (0, "TPT-DDOS-MIB", "rejectSynHistMinutesIndex"))
if mibBuilder.loadTexts: rejectSynHistMinutesEntry.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistMinutesEntry.setDescription('An entry in the rejected SYNs per second history minutes table. Rows cannot be created or deleted. ')
rejectSynHistMinutesGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 6, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: rejectSynHistMinutesGlobalID.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistMinutesGlobalID.setDescription('The global identifier of a DDoS filter group.')
rejectSynHistMinutesIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 6, 1, 2), Unsigned32())
if mibBuilder.loadTexts: rejectSynHistMinutesIndex.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistMinutesIndex.setDescription('The index (0-59) of the minute.')
rejectSynHistMinutesUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 6, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectSynHistMinutesUnitCount.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistMinutesUnitCount.setDescription('The average of the SecondsUnitCount values corresponding to this minute.')
rejectSynHistMinutesTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 6, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectSynHistMinutesTimestamp.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistMinutesTimestamp.setDescription('The time MinutesUnitCount was updated (in seconds since January 1, 1970).')
rejectSynHistHoursTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 7), )
if mibBuilder.loadTexts: rejectSynHistHoursTable.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistHoursTable.setDescription('Historical (sampled) data every hour for a day.')
rejectSynHistHoursEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 7, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "rejectSynHistHoursGlobalID"), (0, "TPT-DDOS-MIB", "rejectSynHistHoursIndex"))
if mibBuilder.loadTexts: rejectSynHistHoursEntry.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistHoursEntry.setDescription('An entry in the rejected SYNs per second history hours table. Rows cannot be created or deleted. ')
rejectSynHistHoursGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 7, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: rejectSynHistHoursGlobalID.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistHoursGlobalID.setDescription('The global identifier of a DDoS filter group.')
rejectSynHistHoursIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 7, 1, 2), Unsigned32())
if mibBuilder.loadTexts: rejectSynHistHoursIndex.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistHoursIndex.setDescription('The index (0-23) of the hour.')
rejectSynHistHoursUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 7, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectSynHistHoursUnitCount.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistHoursUnitCount.setDescription('The average of the MinutesUnitCount values corresponding to this hour.')
rejectSynHistHoursTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 7, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectSynHistHoursTimestamp.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistHoursTimestamp.setDescription('The time HoursUnitCount was updated (in seconds since January 1, 1970).')
rejectSynHistDaysTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 8), )
if mibBuilder.loadTexts: rejectSynHistDaysTable.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistDaysTable.setDescription('Historical (sampled) data every day for 35 days.')
rejectSynHistDaysEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 8, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "rejectSynHistDaysGlobalID"), (0, "TPT-DDOS-MIB", "rejectSynHistDaysIndex"))
if mibBuilder.loadTexts: rejectSynHistDaysEntry.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistDaysEntry.setDescription('An entry in the rejected SYNs per second history days table. Rows cannot be created or deleted. ')
rejectSynHistDaysGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 8, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: rejectSynHistDaysGlobalID.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistDaysGlobalID.setDescription('The global identifier of a DDoS filter group.')
rejectSynHistDaysIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 8, 1, 2), Unsigned32())
if mibBuilder.loadTexts: rejectSynHistDaysIndex.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistDaysIndex.setDescription('The index (0-34) of the day.')
rejectSynHistDaysUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 8, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectSynHistDaysUnitCount.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistDaysUnitCount.setDescription('The average of the HoursUnitCount values corresponding to this day.')
rejectSynHistDaysTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 8, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectSynHistDaysTimestamp.setStatus('current')
if mibBuilder.loadTexts: rejectSynHistDaysTimestamp.setDescription('The time DaysUnitCount was updated (in seconds since January 1, 1970).')
proxyConnHistSecondsTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 9), )
if mibBuilder.loadTexts: proxyConnHistSecondsTable.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistSecondsTable.setDescription('Historical (sampled) data every second for a minute.')
proxyConnHistSecondsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 9, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "proxyConnHistSecondsGlobalID"), (0, "TPT-DDOS-MIB", "proxyConnHistSecondsIndex"))
if mibBuilder.loadTexts: proxyConnHistSecondsEntry.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistSecondsEntry.setDescription('An entry in the proxied connections per second history seconds table. Rows cannot be created or deleted. ')
proxyConnHistSecondsGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 9, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: proxyConnHistSecondsGlobalID.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistSecondsGlobalID.setDescription('The global identifier of a DDoS filter group.')
proxyConnHistSecondsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 9, 1, 2), Unsigned32())
if mibBuilder.loadTexts: proxyConnHistSecondsIndex.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistSecondsIndex.setDescription('The index (0-59) of the second.')
proxyConnHistSecondsUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 9, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: proxyConnHistSecondsUnitCount.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistSecondsUnitCount.setDescription('The count of filter-specific units matching the traffic criteria for this filter in the specified second.')
proxyConnHistSecondsTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 9, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: proxyConnHistSecondsTimestamp.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistSecondsTimestamp.setDescription('The time SecondsUnitCount was updated (in seconds since January 1, 1970).')
proxyConnHistMinutesTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 10), )
if mibBuilder.loadTexts: proxyConnHistMinutesTable.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistMinutesTable.setDescription('Historical (sampled) data every minute for an hour.')
proxyConnHistMinutesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 10, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "proxyConnHistMinutesGlobalID"), (0, "TPT-DDOS-MIB", "proxyConnHistMinutesIndex"))
if mibBuilder.loadTexts: proxyConnHistMinutesEntry.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistMinutesEntry.setDescription('An entry in the proxied connections per second history minutes table. Rows cannot be created or deleted. ')
proxyConnHistMinutesGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 10, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: proxyConnHistMinutesGlobalID.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistMinutesGlobalID.setDescription('The global identifier of a DDoS filter group.')
proxyConnHistMinutesIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 10, 1, 2), Unsigned32())
if mibBuilder.loadTexts: proxyConnHistMinutesIndex.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistMinutesIndex.setDescription('The index (0-59) of the minute.')
proxyConnHistMinutesUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 10, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: proxyConnHistMinutesUnitCount.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistMinutesUnitCount.setDescription('The average of the SecondsUnitCount values corresponding to this minute.')
proxyConnHistMinutesTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 10, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: proxyConnHistMinutesTimestamp.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistMinutesTimestamp.setDescription('The time MinutesUnitCount was updated (in seconds since January 1, 1970).')
proxyConnHistHoursTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 11), )
if mibBuilder.loadTexts: proxyConnHistHoursTable.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistHoursTable.setDescription('Historical (sampled) data every hour for a day.')
proxyConnHistHoursEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 11, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "proxyConnHistHoursGlobalID"), (0, "TPT-DDOS-MIB", "proxyConnHistHoursIndex"))
if mibBuilder.loadTexts: proxyConnHistHoursEntry.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistHoursEntry.setDescription('An entry in the proxied connections per second history hours table. Rows cannot be created or deleted. ')
proxyConnHistHoursGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 11, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: proxyConnHistHoursGlobalID.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistHoursGlobalID.setDescription('The global identifier of a DDoS filter group.')
proxyConnHistHoursIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 11, 1, 2), Unsigned32())
if mibBuilder.loadTexts: proxyConnHistHoursIndex.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistHoursIndex.setDescription('The index (0-23) of the hour.')
proxyConnHistHoursUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 11, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: proxyConnHistHoursUnitCount.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistHoursUnitCount.setDescription('The average of the MinutesUnitCount values corresponding to this hour.')
proxyConnHistHoursTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 11, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: proxyConnHistHoursTimestamp.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistHoursTimestamp.setDescription('The time HoursUnitCount was updated (in seconds since January 1, 1970).')
proxyConnHistDaysTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 12), )
if mibBuilder.loadTexts: proxyConnHistDaysTable.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistDaysTable.setDescription('Historical (sampled) data every day for 35 days.')
proxyConnHistDaysEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 12, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "proxyConnHistDaysGlobalID"), (0, "TPT-DDOS-MIB", "proxyConnHistDaysIndex"))
if mibBuilder.loadTexts: proxyConnHistDaysEntry.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistDaysEntry.setDescription('An entry in the proxied connections per second history days table. Rows cannot be created or deleted. ')
proxyConnHistDaysGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 12, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: proxyConnHistDaysGlobalID.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistDaysGlobalID.setDescription('The global identifier of a DDoS filter group.')
proxyConnHistDaysIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 12, 1, 2), Unsigned32())
if mibBuilder.loadTexts: proxyConnHistDaysIndex.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistDaysIndex.setDescription('The index (0-34) of the day.')
proxyConnHistDaysUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 12, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: proxyConnHistDaysUnitCount.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistDaysUnitCount.setDescription('The average of the HoursUnitCount values corresponding to this day.')
proxyConnHistDaysTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 12, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: proxyConnHistDaysTimestamp.setStatus('current')
if mibBuilder.loadTexts: proxyConnHistDaysTimestamp.setDescription('The time DaysUnitCount was updated (in seconds since January 1, 1970).')
rejectCpsHistSecondsTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 15), )
if mibBuilder.loadTexts: rejectCpsHistSecondsTable.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistSecondsTable.setDescription('Historical (sampled) data every second for a minute.')
rejectCpsHistSecondsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 15, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "rejectCpsHistSecondsGlobalID"), (0, "TPT-DDOS-MIB", "rejectCpsHistSecondsIndex"))
if mibBuilder.loadTexts: rejectCpsHistSecondsEntry.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistSecondsEntry.setDescription('An entry in the rejected connections per sec (CPS) history seconds table. Rows cannot be created or deleted. ')
rejectCpsHistSecondsGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 15, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: rejectCpsHistSecondsGlobalID.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistSecondsGlobalID.setDescription('The global identifier of a DDoS filter group.')
rejectCpsHistSecondsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 15, 1, 2), Unsigned32())
if mibBuilder.loadTexts: rejectCpsHistSecondsIndex.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistSecondsIndex.setDescription('The index (0-59) of the second.')
rejectCpsHistSecondsUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 15, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectCpsHistSecondsUnitCount.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistSecondsUnitCount.setDescription('The count of filter-specific units matching the criteria for this filter in the specified second.')
rejectCpsHistSecondsTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 15, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectCpsHistSecondsTimestamp.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistSecondsTimestamp.setDescription('The time SecondsUnitCount was updated (in seconds since January 1, 1970).')
rejectCpsHistMinutesTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 16), )
if mibBuilder.loadTexts: rejectCpsHistMinutesTable.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistMinutesTable.setDescription('Historical (sampled) data every minute for an hour.')
rejectCpsHistMinutesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 16, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "rejectCpsHistMinutesGlobalID"), (0, "TPT-DDOS-MIB", "rejectCpsHistMinutesIndex"))
if mibBuilder.loadTexts: rejectCpsHistMinutesEntry.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistMinutesEntry.setDescription('An entry in the rejected connections per sec (CPS) history minutes table. Rows cannot be created or deleted. ')
rejectCpsHistMinutesGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 16, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: rejectCpsHistMinutesGlobalID.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistMinutesGlobalID.setDescription('The global identifier of a DDoS filter group.')
rejectCpsHistMinutesIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 16, 1, 2), Unsigned32())
if mibBuilder.loadTexts: rejectCpsHistMinutesIndex.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistMinutesIndex.setDescription('The index (0-59) of the minute.')
rejectCpsHistMinutesUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 16, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectCpsHistMinutesUnitCount.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistMinutesUnitCount.setDescription('The average of the SecondsUnitCount values corresponding to this minute.')
rejectCpsHistMinutesTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 16, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectCpsHistMinutesTimestamp.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistMinutesTimestamp.setDescription('The time MinutesUnitCount was updated (in seconds since January 1, 1970).')
rejectCpsHistHoursTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 17), )
if mibBuilder.loadTexts: rejectCpsHistHoursTable.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistHoursTable.setDescription('Historical (sampled) data every hour for a day.')
rejectCpsHistHoursEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 17, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "rejectCpsHistHoursGlobalID"), (0, "TPT-DDOS-MIB", "rejectCpsHistHoursIndex"))
if mibBuilder.loadTexts: rejectCpsHistHoursEntry.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistHoursEntry.setDescription('An entry in the rejected connections per sec (CPS) history hours table. Rows cannot be created or deleted. ')
rejectCpsHistHoursGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 17, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: rejectCpsHistHoursGlobalID.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistHoursGlobalID.setDescription('The global identifier of a DDoS filter group.')
rejectCpsHistHoursIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 17, 1, 2), Unsigned32())
if mibBuilder.loadTexts: rejectCpsHistHoursIndex.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistHoursIndex.setDescription('The index (0-23) of the hour.')
rejectCpsHistHoursUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 17, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectCpsHistHoursUnitCount.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistHoursUnitCount.setDescription('The average of the MinutesUnitCount values corresponding to this hour.')
rejectCpsHistHoursTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 17, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectCpsHistHoursTimestamp.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistHoursTimestamp.setDescription('The time HoursUnitCount was updated (in seconds since January 1, 1970).')
rejectCpsHistDaysTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 18), )
if mibBuilder.loadTexts: rejectCpsHistDaysTable.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistDaysTable.setDescription('Historical (sampled) data every day for 35 days.')
rejectCpsHistDaysEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 18, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "rejectCpsHistDaysGlobalID"), (0, "TPT-DDOS-MIB", "rejectCpsHistDaysIndex"))
if mibBuilder.loadTexts: rejectCpsHistDaysEntry.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistDaysEntry.setDescription('An entry in the rejected connections per sec (CPS) history days table. Rows cannot be created or deleted. ')
rejectCpsHistDaysGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 18, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: rejectCpsHistDaysGlobalID.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistDaysGlobalID.setDescription('The global identifier of a DDoS filter group.')
rejectCpsHistDaysIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 18, 1, 2), Unsigned32())
if mibBuilder.loadTexts: rejectCpsHistDaysIndex.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistDaysIndex.setDescription('The index (0-34) of the day.')
rejectCpsHistDaysUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 18, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectCpsHistDaysUnitCount.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistDaysUnitCount.setDescription('The average of the HoursUnitCount values corresponding to this day.')
rejectCpsHistDaysTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 18, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectCpsHistDaysTimestamp.setStatus('current')
if mibBuilder.loadTexts: rejectCpsHistDaysTimestamp.setDescription('The time DaysUnitCount was updated (in seconds since January 1, 1970).')
acceptCpsHistSecondsTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 19), )
if mibBuilder.loadTexts: acceptCpsHistSecondsTable.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistSecondsTable.setDescription('Historical (sampled) data every second for a minute.')
acceptCpsHistSecondsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 19, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "acceptCpsHistSecondsGlobalID"), (0, "TPT-DDOS-MIB", "acceptCpsHistSecondsIndex"))
if mibBuilder.loadTexts: acceptCpsHistSecondsEntry.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistSecondsEntry.setDescription('An entry in the accepted connections per sec (CPS) history seconds table. Rows cannot be created or deleted. ')
acceptCpsHistSecondsGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 19, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: acceptCpsHistSecondsGlobalID.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistSecondsGlobalID.setDescription('The global identifier of a DDoS filter group.')
acceptCpsHistSecondsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 19, 1, 2), Unsigned32())
if mibBuilder.loadTexts: acceptCpsHistSecondsIndex.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistSecondsIndex.setDescription('The index (0-59) of the second.')
acceptCpsHistSecondsUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 19, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acceptCpsHistSecondsUnitCount.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistSecondsUnitCount.setDescription('The count of filter-specific units matching the criteria for this filter in the specified second.')
acceptCpsHistSecondsTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 19, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acceptCpsHistSecondsTimestamp.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistSecondsTimestamp.setDescription('The time SecondsUnitCount was updated (in seconds since January 1, 1970).')
acceptCpsHistMinutesTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 20), )
if mibBuilder.loadTexts: acceptCpsHistMinutesTable.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistMinutesTable.setDescription('Historical (sampled) data every minute for an hour.')
acceptCpsHistMinutesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 20, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "acceptCpsHistMinutesGlobalID"), (0, "TPT-DDOS-MIB", "acceptCpsHistMinutesIndex"))
if mibBuilder.loadTexts: acceptCpsHistMinutesEntry.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistMinutesEntry.setDescription('An entry in the accepted connections per sec (CPS) history minutes table. Rows cannot be created or deleted. ')
acceptCpsHistMinutesGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 20, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: acceptCpsHistMinutesGlobalID.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistMinutesGlobalID.setDescription('The global identifier of a DDoS filter group.')
acceptCpsHistMinutesIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 20, 1, 2), Unsigned32())
if mibBuilder.loadTexts: acceptCpsHistMinutesIndex.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistMinutesIndex.setDescription('The index (0-59) of the minute.')
acceptCpsHistMinutesUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 20, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acceptCpsHistMinutesUnitCount.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistMinutesUnitCount.setDescription('The average of the SecondsUnitCount values corresponding to this minute.')
acceptCpsHistMinutesTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 20, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acceptCpsHistMinutesTimestamp.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistMinutesTimestamp.setDescription('The time MinutesUnitCount was updated (in seconds since January 1, 1970).')
acceptCpsHistHoursTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 21), )
if mibBuilder.loadTexts: acceptCpsHistHoursTable.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistHoursTable.setDescription('Historical (sampled) data every hour for a day.')
acceptCpsHistHoursEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 21, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "acceptCpsHistHoursGlobalID"), (0, "TPT-DDOS-MIB", "acceptCpsHistHoursIndex"))
if mibBuilder.loadTexts: acceptCpsHistHoursEntry.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistHoursEntry.setDescription('An entry in the accepted connections per sec (CPS) history hours table. Rows cannot be created or deleted. ')
acceptCpsHistHoursGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 21, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: acceptCpsHistHoursGlobalID.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistHoursGlobalID.setDescription('The global identifier of a DDoS filter group.')
acceptCpsHistHoursIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 21, 1, 2), Unsigned32())
if mibBuilder.loadTexts: acceptCpsHistHoursIndex.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistHoursIndex.setDescription('The index (0-23) of the hour.')
acceptCpsHistHoursUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 21, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acceptCpsHistHoursUnitCount.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistHoursUnitCount.setDescription('The average of the MinutesUnitCount values corresponding to this hour.')
acceptCpsHistHoursTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 21, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acceptCpsHistHoursTimestamp.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistHoursTimestamp.setDescription('The time HoursUnitCount was updated (in seconds since January 1, 1970).')
acceptCpsHistDaysTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 22), )
if mibBuilder.loadTexts: acceptCpsHistDaysTable.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistDaysTable.setDescription('Historical (sampled) data every day for 35 days.')
acceptCpsHistDaysEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 22, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "acceptCpsHistDaysGlobalID"), (0, "TPT-DDOS-MIB", "acceptCpsHistDaysIndex"))
if mibBuilder.loadTexts: acceptCpsHistDaysEntry.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistDaysEntry.setDescription('An entry in the accepted connections per sec (CPS) history days table. Rows cannot be created or deleted. ')
acceptCpsHistDaysGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 22, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: acceptCpsHistDaysGlobalID.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistDaysGlobalID.setDescription('The global identifier of a DDoS filter group.')
acceptCpsHistDaysIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 22, 1, 2), Unsigned32())
if mibBuilder.loadTexts: acceptCpsHistDaysIndex.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistDaysIndex.setDescription('The index (0-34) of the day.')
acceptCpsHistDaysUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 22, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acceptCpsHistDaysUnitCount.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistDaysUnitCount.setDescription('The average of the HoursUnitCount values corresponding to this day.')
acceptCpsHistDaysTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 22, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acceptCpsHistDaysTimestamp.setStatus('current')
if mibBuilder.loadTexts: acceptCpsHistDaysTimestamp.setDescription('The time DaysUnitCount was updated (in seconds since January 1, 1970).')
rejectEstHistSecondsTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 25), )
if mibBuilder.loadTexts: rejectEstHistSecondsTable.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistSecondsTable.setDescription('Historical (sampled) data every second for a minute.')
rejectEstHistSecondsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 25, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "rejectEstHistSecondsGlobalID"), (0, "TPT-DDOS-MIB", "rejectEstHistSecondsIndex"))
if mibBuilder.loadTexts: rejectEstHistSecondsEntry.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistSecondsEntry.setDescription('An entry in the rejected connections per sec (EST) history seconds table. Rows cannot be created or deleted. ')
rejectEstHistSecondsGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 25, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: rejectEstHistSecondsGlobalID.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistSecondsGlobalID.setDescription('The global identifier of a DDoS filter group.')
rejectEstHistSecondsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 25, 1, 2), Unsigned32())
if mibBuilder.loadTexts: rejectEstHistSecondsIndex.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistSecondsIndex.setDescription('The index (0-59) of the second.')
rejectEstHistSecondsUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 25, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectEstHistSecondsUnitCount.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistSecondsUnitCount.setDescription('The count of filter-specific units matching the criteria for this filter in the specified second.')
rejectEstHistSecondsTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 25, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectEstHistSecondsTimestamp.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistSecondsTimestamp.setDescription('The time SecondsUnitCount was updated (in seconds since January 1, 1970).')
rejectEstHistMinutesTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 26), )
if mibBuilder.loadTexts: rejectEstHistMinutesTable.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistMinutesTable.setDescription('Historical (sampled) data every minute for an hour.')
rejectEstHistMinutesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 26, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "rejectEstHistMinutesGlobalID"), (0, "TPT-DDOS-MIB", "rejectEstHistMinutesIndex"))
if mibBuilder.loadTexts: rejectEstHistMinutesEntry.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistMinutesEntry.setDescription('An entry in the rejected connections per sec (EST) history minutes table. Rows cannot be created or deleted. ')
rejectEstHistMinutesGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 26, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: rejectEstHistMinutesGlobalID.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistMinutesGlobalID.setDescription('The global identifier of a DDoS filter group.')
rejectEstHistMinutesIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 26, 1, 2), Unsigned32())
if mibBuilder.loadTexts: rejectEstHistMinutesIndex.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistMinutesIndex.setDescription('The index (0-59) of the minute.')
rejectEstHistMinutesUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 26, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectEstHistMinutesUnitCount.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistMinutesUnitCount.setDescription('The average of the SecondsUnitCount values corresponding to this minute.')
rejectEstHistMinutesTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 26, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectEstHistMinutesTimestamp.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistMinutesTimestamp.setDescription('The time MinutesUnitCount was updated (in seconds since January 1, 1970).')
rejectEstHistHoursTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 27), )
if mibBuilder.loadTexts: rejectEstHistHoursTable.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistHoursTable.setDescription('Historical (sampled) data every hour for a day.')
rejectEstHistHoursEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 27, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "rejectEstHistHoursGlobalID"), (0, "TPT-DDOS-MIB", "rejectEstHistHoursIndex"))
if mibBuilder.loadTexts: rejectEstHistHoursEntry.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistHoursEntry.setDescription('An entry in the rejected connections per sec (EST) history hours table. Rows cannot be created or deleted. ')
rejectEstHistHoursGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 27, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: rejectEstHistHoursGlobalID.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistHoursGlobalID.setDescription('The global identifier of a DDoS filter group.')
rejectEstHistHoursIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 27, 1, 2), Unsigned32())
if mibBuilder.loadTexts: rejectEstHistHoursIndex.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistHoursIndex.setDescription('The index (0-23) of the hour.')
rejectEstHistHoursUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 27, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectEstHistHoursUnitCount.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistHoursUnitCount.setDescription('The average of the MinutesUnitCount values corresponding to this hour.')
rejectEstHistHoursTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 27, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectEstHistHoursTimestamp.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistHoursTimestamp.setDescription('The time HoursUnitCount was updated (in seconds since January 1, 1970).')
rejectEstHistDaysTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 28), )
if mibBuilder.loadTexts: rejectEstHistDaysTable.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistDaysTable.setDescription('Historical (sampled) data every day for 35 days.')
rejectEstHistDaysEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 28, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "rejectEstHistDaysGlobalID"), (0, "TPT-DDOS-MIB", "rejectEstHistDaysIndex"))
if mibBuilder.loadTexts: rejectEstHistDaysEntry.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistDaysEntry.setDescription('An entry in the rejected connections per sec (EST) history days table. Rows cannot be created or deleted. ')
rejectEstHistDaysGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 28, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: rejectEstHistDaysGlobalID.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistDaysGlobalID.setDescription('The global identifier of a DDoS filter group.')
rejectEstHistDaysIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 28, 1, 2), Unsigned32())
if mibBuilder.loadTexts: rejectEstHistDaysIndex.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistDaysIndex.setDescription('The index (0-34) of the day.')
rejectEstHistDaysUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 28, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectEstHistDaysUnitCount.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistDaysUnitCount.setDescription('The average of the HoursUnitCount values corresponding to this day.')
rejectEstHistDaysTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 28, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rejectEstHistDaysTimestamp.setStatus('current')
if mibBuilder.loadTexts: rejectEstHistDaysTimestamp.setDescription('The time DaysUnitCount was updated (in seconds since January 1, 1970).')
acceptEstHistSecondsTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 29), )
if mibBuilder.loadTexts: acceptEstHistSecondsTable.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistSecondsTable.setDescription('Historical (sampled) data every second for a minute.')
acceptEstHistSecondsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 29, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "acceptEstHistSecondsGlobalID"), (0, "TPT-DDOS-MIB", "acceptEstHistSecondsIndex"))
if mibBuilder.loadTexts: acceptEstHistSecondsEntry.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistSecondsEntry.setDescription('An entry in the accepted connections per sec (EST) history seconds table. Rows cannot be created or deleted. ')
acceptEstHistSecondsGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 29, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: acceptEstHistSecondsGlobalID.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistSecondsGlobalID.setDescription('The global identifier of a DDoS filter group.')
acceptEstHistSecondsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 29, 1, 2), Unsigned32())
if mibBuilder.loadTexts: acceptEstHistSecondsIndex.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistSecondsIndex.setDescription('The index (0-59) of the second.')
acceptEstHistSecondsUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 29, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acceptEstHistSecondsUnitCount.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistSecondsUnitCount.setDescription('The count of filter-specific units matching the criteria for this filter in the specified second.')
acceptEstHistSecondsTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 29, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acceptEstHistSecondsTimestamp.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistSecondsTimestamp.setDescription('The time SecondsUnitCount was updated (in seconds since January 1, 1970).')
acceptEstHistMinutesTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 30), )
if mibBuilder.loadTexts: acceptEstHistMinutesTable.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistMinutesTable.setDescription('Historical (sampled) data every minute for an hour.')
acceptEstHistMinutesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 30, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "acceptEstHistMinutesGlobalID"), (0, "TPT-DDOS-MIB", "acceptEstHistMinutesIndex"))
if mibBuilder.loadTexts: acceptEstHistMinutesEntry.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistMinutesEntry.setDescription('An entry in the accepted connections per sec (EST) history minutes table. Rows cannot be created or deleted. ')
acceptEstHistMinutesGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 30, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: acceptEstHistMinutesGlobalID.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistMinutesGlobalID.setDescription('The global identifier of a DDoS filter group.')
acceptEstHistMinutesIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 30, 1, 2), Unsigned32())
if mibBuilder.loadTexts: acceptEstHistMinutesIndex.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistMinutesIndex.setDescription('The index (0-59) of the minute.')
acceptEstHistMinutesUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 30, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acceptEstHistMinutesUnitCount.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistMinutesUnitCount.setDescription('The average of the SecondsUnitCount values corresponding to this minute.')
acceptEstHistMinutesTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 30, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acceptEstHistMinutesTimestamp.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistMinutesTimestamp.setDescription('The time MinutesUnitCount was updated (in seconds since January 1, 1970).')
acceptEstHistHoursTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 31), )
if mibBuilder.loadTexts: acceptEstHistHoursTable.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistHoursTable.setDescription('Historical (sampled) data every hour for a day.')
acceptEstHistHoursEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 31, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "acceptEstHistHoursGlobalID"), (0, "TPT-DDOS-MIB", "acceptEstHistHoursIndex"))
if mibBuilder.loadTexts: acceptEstHistHoursEntry.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistHoursEntry.setDescription('An entry in the accepted connections per sec (EST) history hours table. Rows cannot be created or deleted. ')
acceptEstHistHoursGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 31, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: acceptEstHistHoursGlobalID.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistHoursGlobalID.setDescription('The global identifier of a DDoS filter group.')
acceptEstHistHoursIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 31, 1, 2), Unsigned32())
if mibBuilder.loadTexts: acceptEstHistHoursIndex.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistHoursIndex.setDescription('The index (0-23) of the hour.')
acceptEstHistHoursUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 31, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acceptEstHistHoursUnitCount.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistHoursUnitCount.setDescription('The average of the MinutesUnitCount values corresponding to this hour.')
acceptEstHistHoursTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 31, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acceptEstHistHoursTimestamp.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistHoursTimestamp.setDescription('The time HoursUnitCount was updated (in seconds since January 1, 1970).')
acceptEstHistDaysTable = MibTable((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 32), )
if mibBuilder.loadTexts: acceptEstHistDaysTable.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistDaysTable.setDescription('Historical (sampled) data every day for 35 days.')
acceptEstHistDaysEntry = MibTableRow((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 32, 1), ).setIndexNames((0, "TPT-DDOS-MIB", "acceptEstHistDaysGlobalID"), (0, "TPT-DDOS-MIB", "acceptEstHistDaysIndex"))
if mibBuilder.loadTexts: acceptEstHistDaysEntry.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistDaysEntry.setDescription('An entry in the accepted connections per sec (EST) history days table. Rows cannot be created or deleted. ')
acceptEstHistDaysGlobalID = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 32, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40)))
if mibBuilder.loadTexts: acceptEstHistDaysGlobalID.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistDaysGlobalID.setDescription('The global identifier of a DDoS filter group.')
acceptEstHistDaysIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 32, 1, 2), Unsigned32())
if mibBuilder.loadTexts: acceptEstHistDaysIndex.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistDaysIndex.setDescription('The index (0-34) of the day.')
acceptEstHistDaysUnitCount = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 32, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acceptEstHistDaysUnitCount.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistDaysUnitCount.setDescription('The average of the HoursUnitCount values corresponding to this day.')
acceptEstHistDaysTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 32, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: acceptEstHistDaysTimestamp.setStatus('current')
if mibBuilder.loadTexts: acceptEstHistDaysTimestamp.setDescription('The time DaysUnitCount was updated (in seconds since January 1, 1970).')
mibBuilder.exportSymbols("TPT-DDOS-MIB", rejectEstHistMinutesTable=rejectEstHistMinutesTable, proxyConnHistHoursGlobalID=proxyConnHistHoursGlobalID, rejectCpsHistSecondsTable=rejectCpsHistSecondsTable, proxyConnHistDaysGlobalID=proxyConnHistDaysGlobalID, acceptEstHistDaysUnitCount=acceptEstHistDaysUnitCount, acceptCpsHistMinutesGlobalID=acceptCpsHistMinutesGlobalID, proxyConnHistHoursEntry=proxyConnHistHoursEntry, acceptCpsHistHoursIndex=acceptCpsHistHoursIndex, acceptEstHistDaysTimestamp=acceptEstHistDaysTimestamp, rejectEstHistDaysEntry=rejectEstHistDaysEntry, acceptEstHistSecondsTable=acceptEstHistSecondsTable, rejectEstHistHoursEntry=rejectEstHistHoursEntry, acceptEstHistDaysGlobalID=acceptEstHistDaysGlobalID, rejectEstHistSecondsTable=rejectEstHistSecondsTable, rejectEstHistSecondsEntry=rejectEstHistSecondsEntry, acceptCpsHistSecondsEntry=acceptCpsHistSecondsEntry, acceptCpsHistSecondsUnitCount=acceptCpsHistSecondsUnitCount, proxyConnHistSecondsUnitCount=proxyConnHistSecondsUnitCount, acceptCpsHistDaysTable=acceptCpsHistDaysTable, acceptEstHistMinutesIndex=acceptEstHistMinutesIndex, rejectSynHistHoursUnitCount=rejectSynHistHoursUnitCount, rejectEstHistDaysTable=rejectEstHistDaysTable, rejectSynHistMinutesEntry=rejectSynHistMinutesEntry, acceptEstHistDaysTable=acceptEstHistDaysTable, acceptCpsHistHoursEntry=acceptCpsHistHoursEntry, rejectEstHistMinutesEntry=rejectEstHistMinutesEntry, acceptCpsHistDaysIndex=acceptCpsHistDaysIndex, acceptEstHistHoursGlobalID=acceptEstHistHoursGlobalID, rejectEstHistHoursGlobalID=rejectEstHistHoursGlobalID, acceptEstHistSecondsTimestamp=acceptEstHistSecondsTimestamp, rejectCpsHistDaysUnitCount=rejectCpsHistDaysUnitCount, rejectEstHistSecondsUnitCount=rejectEstHistSecondsUnitCount, acceptEstHistSecondsGlobalID=acceptEstHistSecondsGlobalID, proxyConnHistHoursIndex=proxyConnHistHoursIndex, rejectEstHistSecondsGlobalID=rejectEstHistSecondsGlobalID, rejectSynHistMinutesTable=rejectSynHistMinutesTable, rejectSynHistSecondsIndex=rejectSynHistSecondsIndex, acceptCpsHistMinutesIndex=acceptCpsHistMinutesIndex, acceptEstHistMinutesTimestamp=acceptEstHistMinutesTimestamp, rejectEstHistDaysTimestamp=rejectEstHistDaysTimestamp, acceptCpsHistDaysGlobalID=acceptCpsHistDaysGlobalID, rejectCpsHistSecondsIndex=rejectCpsHistSecondsIndex, acceptCpsHistMinutesUnitCount=acceptCpsHistMinutesUnitCount, proxyConnHistMinutesUnitCount=proxyConnHistMinutesUnitCount, acceptCpsHistDaysEntry=acceptCpsHistDaysEntry, proxyConnHistMinutesEntry=proxyConnHistMinutesEntry, rejectCpsHistMinutesGlobalID=rejectCpsHistMinutesGlobalID, acceptEstHistHoursEntry=acceptEstHistHoursEntry, rejectEstHistHoursIndex=rejectEstHistHoursIndex, rejectSynHistMinutesGlobalID=rejectSynHistMinutesGlobalID, acceptCpsHistHoursTable=acceptCpsHistHoursTable, rejectEstHistDaysIndex=rejectEstHistDaysIndex, rejectSynHistSecondsTable=rejectSynHistSecondsTable, rejectEstHistSecondsTimestamp=rejectEstHistSecondsTimestamp, rejectSynHistDaysGlobalID=rejectSynHistDaysGlobalID, rejectEstHistHoursTimestamp=rejectEstHistHoursTimestamp, acceptCpsHistSecondsGlobalID=acceptCpsHistSecondsGlobalID, rejectCpsHistSecondsUnitCount=rejectCpsHistSecondsUnitCount, rejectSynHistHoursTimestamp=rejectSynHistHoursTimestamp, acceptEstHistMinutesTable=acceptEstHistMinutesTable, rejectSynHistDaysUnitCount=rejectSynHistDaysUnitCount, acceptEstHistMinutesUnitCount=acceptEstHistMinutesUnitCount, PYSNMP_MODULE_ID=tpt_ddos, rejectEstHistHoursUnitCount=rejectEstHistHoursUnitCount, rejectCpsHistSecondsEntry=rejectCpsHistSecondsEntry, proxyConnHistMinutesIndex=proxyConnHistMinutesIndex, rejectCpsHistHoursEntry=rejectCpsHistHoursEntry, rejectEstHistMinutesIndex=rejectEstHistMinutesIndex, acceptEstHistSecondsUnitCount=acceptEstHistSecondsUnitCount, rejectSynHistSecondsUnitCount=rejectSynHistSecondsUnitCount, rejectCpsHistMinutesIndex=rejectCpsHistMinutesIndex, acceptCpsHistMinutesTimestamp=acceptCpsHistMinutesTimestamp, rejectSynHistMinutesTimestamp=rejectSynHistMinutesTimestamp, rejectCpsHistMinutesTable=rejectCpsHistMinutesTable, rejectEstHistMinutesUnitCount=rejectEstHistMinutesUnitCount, rejectSynHistDaysTable=rejectSynHistDaysTable, proxyConnHistDaysTimestamp=proxyConnHistDaysTimestamp, acceptCpsHistSecondsTable=acceptCpsHistSecondsTable, acceptCpsHistDaysTimestamp=acceptCpsHistDaysTimestamp, acceptCpsHistSecondsTimestamp=acceptCpsHistSecondsTimestamp, acceptEstHistDaysIndex=acceptEstHistDaysIndex, rejectSynHistSecondsTimestamp=rejectSynHistSecondsTimestamp, rejectCpsHistMinutesEntry=rejectCpsHistMinutesEntry, rejectEstHistHoursTable=rejectEstHistHoursTable, rejectCpsHistMinutesTimestamp=rejectCpsHistMinutesTimestamp, proxyConnHistDaysIndex=proxyConnHistDaysIndex, acceptEstHistSecondsIndex=acceptEstHistSecondsIndex, rejectCpsHistMinutesUnitCount=rejectCpsHistMinutesUnitCount, proxyConnHistSecondsTable=proxyConnHistSecondsTable, acceptCpsHistDaysUnitCount=acceptCpsHistDaysUnitCount, rejectEstHistDaysUnitCount=rejectEstHistDaysUnitCount, rejectCpsHistHoursIndex=rejectCpsHistHoursIndex, proxyConnHistMinutesGlobalID=proxyConnHistMinutesGlobalID, tpt_ddos=tpt_ddos, proxyConnHistSecondsGlobalID=proxyConnHistSecondsGlobalID, rejectCpsHistHoursGlobalID=rejectCpsHistHoursGlobalID, proxyConnHistDaysUnitCount=proxyConnHistDaysUnitCount, acceptEstHistDaysEntry=acceptEstHistDaysEntry, rejectSynHistSecondsEntry=rejectSynHistSecondsEntry, acceptCpsHistHoursTimestamp=acceptCpsHistHoursTimestamp, rejectCpsHistSecondsGlobalID=rejectCpsHistSecondsGlobalID, rejectCpsHistHoursUnitCount=rejectCpsHistHoursUnitCount, proxyConnHistSecondsTimestamp=proxyConnHistSecondsTimestamp, acceptEstHistHoursUnitCount=acceptEstHistHoursUnitCount, rejectCpsHistDaysTable=rejectCpsHistDaysTable, rejectSynHistHoursIndex=rejectSynHistHoursIndex, proxyConnHistSecondsIndex=proxyConnHistSecondsIndex, acceptEstHistMinutesGlobalID=acceptEstHistMinutesGlobalID, acceptEstHistHoursTimestamp=acceptEstHistHoursTimestamp, rejectSynHistSecondsGlobalID=rejectSynHistSecondsGlobalID, rejectCpsHistDaysIndex=rejectCpsHistDaysIndex, rejectEstHistDaysGlobalID=rejectEstHistDaysGlobalID, rejectSynHistDaysEntry=rejectSynHistDaysEntry, rejectSynHistMinutesUnitCount=rejectSynHistMinutesUnitCount, rejectSynHistHoursEntry=rejectSynHistHoursEntry, proxyConnHistSecondsEntry=proxyConnHistSecondsEntry, rejectCpsHistHoursTable=rejectCpsHistHoursTable, rejectSynHistHoursTable=rejectSynHistHoursTable, rejectCpsHistDaysEntry=rejectCpsHistDaysEntry, acceptEstHistSecondsEntry=acceptEstHistSecondsEntry, rejectSynHistDaysTimestamp=rejectSynHistDaysTimestamp, rejectEstHistMinutesGlobalID=rejectEstHistMinutesGlobalID, acceptEstHistHoursIndex=acceptEstHistHoursIndex, rejectSynHistMinutesIndex=rejectSynHistMinutesIndex, rejectSynHistHoursGlobalID=rejectSynHistHoursGlobalID, rejectCpsHistHoursTimestamp=rejectCpsHistHoursTimestamp, proxyConnHistHoursTimestamp=proxyConnHistHoursTimestamp, acceptEstHistMinutesEntry=acceptEstHistMinutesEntry, proxyConnHistDaysEntry=proxyConnHistDaysEntry, acceptCpsHistSecondsIndex=acceptCpsHistSecondsIndex, rejectEstHistSecondsIndex=rejectEstHistSecondsIndex, proxyConnHistMinutesTable=proxyConnHistMinutesTable, rejectCpsHistDaysTimestamp=rejectCpsHistDaysTimestamp, proxyConnHistMinutesTimestamp=proxyConnHistMinutesTimestamp, rejectSynHistDaysIndex=rejectSynHistDaysIndex, proxyConnHistHoursUnitCount=proxyConnHistHoursUnitCount, rejectCpsHistSecondsTimestamp=rejectCpsHistSecondsTimestamp, acceptEstHistHoursTable=acceptEstHistHoursTable, proxyConnHistHoursTable=proxyConnHistHoursTable, proxyConnHistDaysTable=proxyConnHistDaysTable, acceptCpsHistMinutesTable=acceptCpsHistMinutesTable, acceptCpsHistHoursGlobalID=acceptCpsHistHoursGlobalID, acceptCpsHistHoursUnitCount=acceptCpsHistHoursUnitCount, rejectEstHistMinutesTimestamp=rejectEstHistMinutesTimestamp, acceptCpsHistMinutesEntry=acceptCpsHistMinutesEntry, rejectCpsHistDaysGlobalID=rejectCpsHistDaysGlobalID)
| (octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_intersection, constraints_union, value_range_constraint, value_size_constraint, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ConstraintsUnion', 'ValueRangeConstraint', 'ValueSizeConstraint', 'SingleValueConstraint')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(notification_type, unsigned32, counter32, bits, module_identity, time_ticks, gauge32, object_identity, ip_address, integer32, iso, mib_identifier, counter64, mib_scalar, mib_table, mib_table_row, mib_table_column) = mibBuilder.importSymbols('SNMPv2-SMI', 'NotificationType', 'Unsigned32', 'Counter32', 'Bits', 'ModuleIdentity', 'TimeTicks', 'Gauge32', 'ObjectIdentity', 'IpAddress', 'Integer32', 'iso', 'MibIdentifier', 'Counter64', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
(tpt_tpa_objs,) = mibBuilder.importSymbols('TPT-TPAMIBS-MIB', 'tpt-tpa-objs')
tpt_ddos = module_identity((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9)).setLabel('tpt-ddos')
tpt_ddos.setRevisions(('2016-05-25 18:54',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
tpt_ddos.setRevisionsDescriptions(('Updated copyright information. Minor MIB syntax fixes.',))
if mibBuilder.loadTexts:
tpt_ddos.setLastUpdated('201605251854Z')
if mibBuilder.loadTexts:
tpt_ddos.setOrganization('Trend Micro, Inc.')
if mibBuilder.loadTexts:
tpt_ddos.setContactInfo('www.trendmicro.com')
if mibBuilder.loadTexts:
tpt_ddos.setDescription("DDoS management (statistics). Copyright (C) 2016 Trend Micro Incorporated. All Rights Reserved. Trend Micro makes no warranty of any kind with regard to this material, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose. Trend Micro shall not be liable for errors contained herein or for incidental or consequential damages in connection with the furnishing, performance, or use of this material. This document contains proprietary information, which is protected by copyright. No part of this document may be photocopied, reproduced, or translated into another language without the prior written consent of Trend Micro. The information is provided 'as is' without warranty of any kind and is subject to change without notice. The only warranties for Trend Micro products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. Trend Micro shall not be liable for technical or editorial errors or omissions contained herein. TippingPoint(R), the TippingPoint logo, and Digital Vaccine(R) are registered trademarks of Trend Micro. All other company and product names may be trademarks of their respective holders. All rights reserved. This document contains confidential information, trade secrets or both, which are the property of Trend Micro. No part of this documentation may be reproduced in any form or by any means or used to make any derivative work (such as translation, transformation, or adaptation) without written permission from Trend Micro or one of its subsidiaries. All other company and product names may be trademarks of their respective holders. ")
reject_syn_hist_seconds_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 5))
if mibBuilder.loadTexts:
rejectSynHistSecondsTable.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistSecondsTable.setDescription('Historical (sampled) data every second for a minute.')
reject_syn_hist_seconds_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 5, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'rejectSynHistSecondsGlobalID'), (0, 'TPT-DDOS-MIB', 'rejectSynHistSecondsIndex'))
if mibBuilder.loadTexts:
rejectSynHistSecondsEntry.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistSecondsEntry.setDescription('An entry in the rejected SYNs per second history seconds table. Rows cannot be created or deleted. ')
reject_syn_hist_seconds_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 5, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
rejectSynHistSecondsGlobalID.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistSecondsGlobalID.setDescription('The global identifier of a DDoS filter group.')
reject_syn_hist_seconds_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 5, 1, 2), unsigned32())
if mibBuilder.loadTexts:
rejectSynHistSecondsIndex.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistSecondsIndex.setDescription('The index (0-59) of the second.')
reject_syn_hist_seconds_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 5, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectSynHistSecondsUnitCount.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistSecondsUnitCount.setDescription('The count of filter-specific units matching the criteria for this filter in the specified second.')
reject_syn_hist_seconds_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 5, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectSynHistSecondsTimestamp.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistSecondsTimestamp.setDescription('The time SecondsUnitCount was updated (in seconds since January 1, 1970).')
reject_syn_hist_minutes_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 6))
if mibBuilder.loadTexts:
rejectSynHistMinutesTable.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistMinutesTable.setDescription('Historical (sampled) data every minute for an hour.')
reject_syn_hist_minutes_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 6, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'rejectSynHistMinutesGlobalID'), (0, 'TPT-DDOS-MIB', 'rejectSynHistMinutesIndex'))
if mibBuilder.loadTexts:
rejectSynHistMinutesEntry.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistMinutesEntry.setDescription('An entry in the rejected SYNs per second history minutes table. Rows cannot be created or deleted. ')
reject_syn_hist_minutes_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 6, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
rejectSynHistMinutesGlobalID.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistMinutesGlobalID.setDescription('The global identifier of a DDoS filter group.')
reject_syn_hist_minutes_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 6, 1, 2), unsigned32())
if mibBuilder.loadTexts:
rejectSynHistMinutesIndex.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistMinutesIndex.setDescription('The index (0-59) of the minute.')
reject_syn_hist_minutes_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 6, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectSynHistMinutesUnitCount.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistMinutesUnitCount.setDescription('The average of the SecondsUnitCount values corresponding to this minute.')
reject_syn_hist_minutes_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 6, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectSynHistMinutesTimestamp.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistMinutesTimestamp.setDescription('The time MinutesUnitCount was updated (in seconds since January 1, 1970).')
reject_syn_hist_hours_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 7))
if mibBuilder.loadTexts:
rejectSynHistHoursTable.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistHoursTable.setDescription('Historical (sampled) data every hour for a day.')
reject_syn_hist_hours_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 7, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'rejectSynHistHoursGlobalID'), (0, 'TPT-DDOS-MIB', 'rejectSynHistHoursIndex'))
if mibBuilder.loadTexts:
rejectSynHistHoursEntry.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistHoursEntry.setDescription('An entry in the rejected SYNs per second history hours table. Rows cannot be created or deleted. ')
reject_syn_hist_hours_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 7, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
rejectSynHistHoursGlobalID.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistHoursGlobalID.setDescription('The global identifier of a DDoS filter group.')
reject_syn_hist_hours_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 7, 1, 2), unsigned32())
if mibBuilder.loadTexts:
rejectSynHistHoursIndex.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistHoursIndex.setDescription('The index (0-23) of the hour.')
reject_syn_hist_hours_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 7, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectSynHistHoursUnitCount.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistHoursUnitCount.setDescription('The average of the MinutesUnitCount values corresponding to this hour.')
reject_syn_hist_hours_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 7, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectSynHistHoursTimestamp.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistHoursTimestamp.setDescription('The time HoursUnitCount was updated (in seconds since January 1, 1970).')
reject_syn_hist_days_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 8))
if mibBuilder.loadTexts:
rejectSynHistDaysTable.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistDaysTable.setDescription('Historical (sampled) data every day for 35 days.')
reject_syn_hist_days_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 8, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'rejectSynHistDaysGlobalID'), (0, 'TPT-DDOS-MIB', 'rejectSynHistDaysIndex'))
if mibBuilder.loadTexts:
rejectSynHistDaysEntry.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistDaysEntry.setDescription('An entry in the rejected SYNs per second history days table. Rows cannot be created or deleted. ')
reject_syn_hist_days_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 8, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
rejectSynHistDaysGlobalID.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistDaysGlobalID.setDescription('The global identifier of a DDoS filter group.')
reject_syn_hist_days_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 8, 1, 2), unsigned32())
if mibBuilder.loadTexts:
rejectSynHistDaysIndex.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistDaysIndex.setDescription('The index (0-34) of the day.')
reject_syn_hist_days_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 8, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectSynHistDaysUnitCount.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistDaysUnitCount.setDescription('The average of the HoursUnitCount values corresponding to this day.')
reject_syn_hist_days_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 8, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectSynHistDaysTimestamp.setStatus('current')
if mibBuilder.loadTexts:
rejectSynHistDaysTimestamp.setDescription('The time DaysUnitCount was updated (in seconds since January 1, 1970).')
proxy_conn_hist_seconds_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 9))
if mibBuilder.loadTexts:
proxyConnHistSecondsTable.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistSecondsTable.setDescription('Historical (sampled) data every second for a minute.')
proxy_conn_hist_seconds_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 9, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'proxyConnHistSecondsGlobalID'), (0, 'TPT-DDOS-MIB', 'proxyConnHistSecondsIndex'))
if mibBuilder.loadTexts:
proxyConnHistSecondsEntry.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistSecondsEntry.setDescription('An entry in the proxied connections per second history seconds table. Rows cannot be created or deleted. ')
proxy_conn_hist_seconds_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 9, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
proxyConnHistSecondsGlobalID.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistSecondsGlobalID.setDescription('The global identifier of a DDoS filter group.')
proxy_conn_hist_seconds_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 9, 1, 2), unsigned32())
if mibBuilder.loadTexts:
proxyConnHistSecondsIndex.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistSecondsIndex.setDescription('The index (0-59) of the second.')
proxy_conn_hist_seconds_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 9, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
proxyConnHistSecondsUnitCount.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistSecondsUnitCount.setDescription('The count of filter-specific units matching the traffic criteria for this filter in the specified second.')
proxy_conn_hist_seconds_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 9, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
proxyConnHistSecondsTimestamp.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistSecondsTimestamp.setDescription('The time SecondsUnitCount was updated (in seconds since January 1, 1970).')
proxy_conn_hist_minutes_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 10))
if mibBuilder.loadTexts:
proxyConnHistMinutesTable.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistMinutesTable.setDescription('Historical (sampled) data every minute for an hour.')
proxy_conn_hist_minutes_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 10, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'proxyConnHistMinutesGlobalID'), (0, 'TPT-DDOS-MIB', 'proxyConnHistMinutesIndex'))
if mibBuilder.loadTexts:
proxyConnHistMinutesEntry.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistMinutesEntry.setDescription('An entry in the proxied connections per second history minutes table. Rows cannot be created or deleted. ')
proxy_conn_hist_minutes_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 10, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
proxyConnHistMinutesGlobalID.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistMinutesGlobalID.setDescription('The global identifier of a DDoS filter group.')
proxy_conn_hist_minutes_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 10, 1, 2), unsigned32())
if mibBuilder.loadTexts:
proxyConnHistMinutesIndex.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistMinutesIndex.setDescription('The index (0-59) of the minute.')
proxy_conn_hist_minutes_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 10, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
proxyConnHistMinutesUnitCount.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistMinutesUnitCount.setDescription('The average of the SecondsUnitCount values corresponding to this minute.')
proxy_conn_hist_minutes_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 10, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
proxyConnHistMinutesTimestamp.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistMinutesTimestamp.setDescription('The time MinutesUnitCount was updated (in seconds since January 1, 1970).')
proxy_conn_hist_hours_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 11))
if mibBuilder.loadTexts:
proxyConnHistHoursTable.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistHoursTable.setDescription('Historical (sampled) data every hour for a day.')
proxy_conn_hist_hours_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 11, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'proxyConnHistHoursGlobalID'), (0, 'TPT-DDOS-MIB', 'proxyConnHistHoursIndex'))
if mibBuilder.loadTexts:
proxyConnHistHoursEntry.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistHoursEntry.setDescription('An entry in the proxied connections per second history hours table. Rows cannot be created or deleted. ')
proxy_conn_hist_hours_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 11, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
proxyConnHistHoursGlobalID.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistHoursGlobalID.setDescription('The global identifier of a DDoS filter group.')
proxy_conn_hist_hours_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 11, 1, 2), unsigned32())
if mibBuilder.loadTexts:
proxyConnHistHoursIndex.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistHoursIndex.setDescription('The index (0-23) of the hour.')
proxy_conn_hist_hours_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 11, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
proxyConnHistHoursUnitCount.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistHoursUnitCount.setDescription('The average of the MinutesUnitCount values corresponding to this hour.')
proxy_conn_hist_hours_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 11, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
proxyConnHistHoursTimestamp.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistHoursTimestamp.setDescription('The time HoursUnitCount was updated (in seconds since January 1, 1970).')
proxy_conn_hist_days_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 12))
if mibBuilder.loadTexts:
proxyConnHistDaysTable.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistDaysTable.setDescription('Historical (sampled) data every day for 35 days.')
proxy_conn_hist_days_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 12, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'proxyConnHistDaysGlobalID'), (0, 'TPT-DDOS-MIB', 'proxyConnHistDaysIndex'))
if mibBuilder.loadTexts:
proxyConnHistDaysEntry.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistDaysEntry.setDescription('An entry in the proxied connections per second history days table. Rows cannot be created or deleted. ')
proxy_conn_hist_days_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 12, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
proxyConnHistDaysGlobalID.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistDaysGlobalID.setDescription('The global identifier of a DDoS filter group.')
proxy_conn_hist_days_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 12, 1, 2), unsigned32())
if mibBuilder.loadTexts:
proxyConnHistDaysIndex.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistDaysIndex.setDescription('The index (0-34) of the day.')
proxy_conn_hist_days_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 12, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
proxyConnHistDaysUnitCount.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistDaysUnitCount.setDescription('The average of the HoursUnitCount values corresponding to this day.')
proxy_conn_hist_days_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 12, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
proxyConnHistDaysTimestamp.setStatus('current')
if mibBuilder.loadTexts:
proxyConnHistDaysTimestamp.setDescription('The time DaysUnitCount was updated (in seconds since January 1, 1970).')
reject_cps_hist_seconds_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 15))
if mibBuilder.loadTexts:
rejectCpsHistSecondsTable.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistSecondsTable.setDescription('Historical (sampled) data every second for a minute.')
reject_cps_hist_seconds_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 15, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'rejectCpsHistSecondsGlobalID'), (0, 'TPT-DDOS-MIB', 'rejectCpsHistSecondsIndex'))
if mibBuilder.loadTexts:
rejectCpsHistSecondsEntry.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistSecondsEntry.setDescription('An entry in the rejected connections per sec (CPS) history seconds table. Rows cannot be created or deleted. ')
reject_cps_hist_seconds_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 15, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
rejectCpsHistSecondsGlobalID.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistSecondsGlobalID.setDescription('The global identifier of a DDoS filter group.')
reject_cps_hist_seconds_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 15, 1, 2), unsigned32())
if mibBuilder.loadTexts:
rejectCpsHistSecondsIndex.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistSecondsIndex.setDescription('The index (0-59) of the second.')
reject_cps_hist_seconds_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 15, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectCpsHistSecondsUnitCount.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistSecondsUnitCount.setDescription('The count of filter-specific units matching the criteria for this filter in the specified second.')
reject_cps_hist_seconds_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 15, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectCpsHistSecondsTimestamp.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistSecondsTimestamp.setDescription('The time SecondsUnitCount was updated (in seconds since January 1, 1970).')
reject_cps_hist_minutes_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 16))
if mibBuilder.loadTexts:
rejectCpsHistMinutesTable.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistMinutesTable.setDescription('Historical (sampled) data every minute for an hour.')
reject_cps_hist_minutes_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 16, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'rejectCpsHistMinutesGlobalID'), (0, 'TPT-DDOS-MIB', 'rejectCpsHistMinutesIndex'))
if mibBuilder.loadTexts:
rejectCpsHistMinutesEntry.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistMinutesEntry.setDescription('An entry in the rejected connections per sec (CPS) history minutes table. Rows cannot be created or deleted. ')
reject_cps_hist_minutes_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 16, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
rejectCpsHistMinutesGlobalID.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistMinutesGlobalID.setDescription('The global identifier of a DDoS filter group.')
reject_cps_hist_minutes_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 16, 1, 2), unsigned32())
if mibBuilder.loadTexts:
rejectCpsHistMinutesIndex.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistMinutesIndex.setDescription('The index (0-59) of the minute.')
reject_cps_hist_minutes_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 16, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectCpsHistMinutesUnitCount.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistMinutesUnitCount.setDescription('The average of the SecondsUnitCount values corresponding to this minute.')
reject_cps_hist_minutes_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 16, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectCpsHistMinutesTimestamp.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistMinutesTimestamp.setDescription('The time MinutesUnitCount was updated (in seconds since January 1, 1970).')
reject_cps_hist_hours_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 17))
if mibBuilder.loadTexts:
rejectCpsHistHoursTable.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistHoursTable.setDescription('Historical (sampled) data every hour for a day.')
reject_cps_hist_hours_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 17, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'rejectCpsHistHoursGlobalID'), (0, 'TPT-DDOS-MIB', 'rejectCpsHistHoursIndex'))
if mibBuilder.loadTexts:
rejectCpsHistHoursEntry.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistHoursEntry.setDescription('An entry in the rejected connections per sec (CPS) history hours table. Rows cannot be created or deleted. ')
reject_cps_hist_hours_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 17, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
rejectCpsHistHoursGlobalID.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistHoursGlobalID.setDescription('The global identifier of a DDoS filter group.')
reject_cps_hist_hours_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 17, 1, 2), unsigned32())
if mibBuilder.loadTexts:
rejectCpsHistHoursIndex.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistHoursIndex.setDescription('The index (0-23) of the hour.')
reject_cps_hist_hours_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 17, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectCpsHistHoursUnitCount.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistHoursUnitCount.setDescription('The average of the MinutesUnitCount values corresponding to this hour.')
reject_cps_hist_hours_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 17, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectCpsHistHoursTimestamp.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistHoursTimestamp.setDescription('The time HoursUnitCount was updated (in seconds since January 1, 1970).')
reject_cps_hist_days_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 18))
if mibBuilder.loadTexts:
rejectCpsHistDaysTable.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistDaysTable.setDescription('Historical (sampled) data every day for 35 days.')
reject_cps_hist_days_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 18, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'rejectCpsHistDaysGlobalID'), (0, 'TPT-DDOS-MIB', 'rejectCpsHistDaysIndex'))
if mibBuilder.loadTexts:
rejectCpsHistDaysEntry.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistDaysEntry.setDescription('An entry in the rejected connections per sec (CPS) history days table. Rows cannot be created or deleted. ')
reject_cps_hist_days_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 18, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
rejectCpsHistDaysGlobalID.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistDaysGlobalID.setDescription('The global identifier of a DDoS filter group.')
reject_cps_hist_days_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 18, 1, 2), unsigned32())
if mibBuilder.loadTexts:
rejectCpsHistDaysIndex.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistDaysIndex.setDescription('The index (0-34) of the day.')
reject_cps_hist_days_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 18, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectCpsHistDaysUnitCount.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistDaysUnitCount.setDescription('The average of the HoursUnitCount values corresponding to this day.')
reject_cps_hist_days_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 18, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectCpsHistDaysTimestamp.setStatus('current')
if mibBuilder.loadTexts:
rejectCpsHistDaysTimestamp.setDescription('The time DaysUnitCount was updated (in seconds since January 1, 1970).')
accept_cps_hist_seconds_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 19))
if mibBuilder.loadTexts:
acceptCpsHistSecondsTable.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistSecondsTable.setDescription('Historical (sampled) data every second for a minute.')
accept_cps_hist_seconds_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 19, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'acceptCpsHistSecondsGlobalID'), (0, 'TPT-DDOS-MIB', 'acceptCpsHistSecondsIndex'))
if mibBuilder.loadTexts:
acceptCpsHistSecondsEntry.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistSecondsEntry.setDescription('An entry in the accepted connections per sec (CPS) history seconds table. Rows cannot be created or deleted. ')
accept_cps_hist_seconds_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 19, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
acceptCpsHistSecondsGlobalID.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistSecondsGlobalID.setDescription('The global identifier of a DDoS filter group.')
accept_cps_hist_seconds_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 19, 1, 2), unsigned32())
if mibBuilder.loadTexts:
acceptCpsHistSecondsIndex.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistSecondsIndex.setDescription('The index (0-59) of the second.')
accept_cps_hist_seconds_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 19, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acceptCpsHistSecondsUnitCount.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistSecondsUnitCount.setDescription('The count of filter-specific units matching the criteria for this filter in the specified second.')
accept_cps_hist_seconds_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 19, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acceptCpsHistSecondsTimestamp.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistSecondsTimestamp.setDescription('The time SecondsUnitCount was updated (in seconds since January 1, 1970).')
accept_cps_hist_minutes_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 20))
if mibBuilder.loadTexts:
acceptCpsHistMinutesTable.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistMinutesTable.setDescription('Historical (sampled) data every minute for an hour.')
accept_cps_hist_minutes_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 20, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'acceptCpsHistMinutesGlobalID'), (0, 'TPT-DDOS-MIB', 'acceptCpsHistMinutesIndex'))
if mibBuilder.loadTexts:
acceptCpsHistMinutesEntry.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistMinutesEntry.setDescription('An entry in the accepted connections per sec (CPS) history minutes table. Rows cannot be created or deleted. ')
accept_cps_hist_minutes_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 20, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
acceptCpsHistMinutesGlobalID.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistMinutesGlobalID.setDescription('The global identifier of a DDoS filter group.')
accept_cps_hist_minutes_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 20, 1, 2), unsigned32())
if mibBuilder.loadTexts:
acceptCpsHistMinutesIndex.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistMinutesIndex.setDescription('The index (0-59) of the minute.')
accept_cps_hist_minutes_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 20, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acceptCpsHistMinutesUnitCount.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistMinutesUnitCount.setDescription('The average of the SecondsUnitCount values corresponding to this minute.')
accept_cps_hist_minutes_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 20, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acceptCpsHistMinutesTimestamp.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistMinutesTimestamp.setDescription('The time MinutesUnitCount was updated (in seconds since January 1, 1970).')
accept_cps_hist_hours_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 21))
if mibBuilder.loadTexts:
acceptCpsHistHoursTable.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistHoursTable.setDescription('Historical (sampled) data every hour for a day.')
accept_cps_hist_hours_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 21, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'acceptCpsHistHoursGlobalID'), (0, 'TPT-DDOS-MIB', 'acceptCpsHistHoursIndex'))
if mibBuilder.loadTexts:
acceptCpsHistHoursEntry.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistHoursEntry.setDescription('An entry in the accepted connections per sec (CPS) history hours table. Rows cannot be created or deleted. ')
accept_cps_hist_hours_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 21, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
acceptCpsHistHoursGlobalID.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistHoursGlobalID.setDescription('The global identifier of a DDoS filter group.')
accept_cps_hist_hours_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 21, 1, 2), unsigned32())
if mibBuilder.loadTexts:
acceptCpsHistHoursIndex.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistHoursIndex.setDescription('The index (0-23) of the hour.')
accept_cps_hist_hours_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 21, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acceptCpsHistHoursUnitCount.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistHoursUnitCount.setDescription('The average of the MinutesUnitCount values corresponding to this hour.')
accept_cps_hist_hours_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 21, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acceptCpsHistHoursTimestamp.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistHoursTimestamp.setDescription('The time HoursUnitCount was updated (in seconds since January 1, 1970).')
accept_cps_hist_days_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 22))
if mibBuilder.loadTexts:
acceptCpsHistDaysTable.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistDaysTable.setDescription('Historical (sampled) data every day for 35 days.')
accept_cps_hist_days_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 22, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'acceptCpsHistDaysGlobalID'), (0, 'TPT-DDOS-MIB', 'acceptCpsHistDaysIndex'))
if mibBuilder.loadTexts:
acceptCpsHistDaysEntry.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistDaysEntry.setDescription('An entry in the accepted connections per sec (CPS) history days table. Rows cannot be created or deleted. ')
accept_cps_hist_days_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 22, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
acceptCpsHistDaysGlobalID.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistDaysGlobalID.setDescription('The global identifier of a DDoS filter group.')
accept_cps_hist_days_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 22, 1, 2), unsigned32())
if mibBuilder.loadTexts:
acceptCpsHistDaysIndex.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistDaysIndex.setDescription('The index (0-34) of the day.')
accept_cps_hist_days_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 22, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acceptCpsHistDaysUnitCount.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistDaysUnitCount.setDescription('The average of the HoursUnitCount values corresponding to this day.')
accept_cps_hist_days_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 22, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acceptCpsHistDaysTimestamp.setStatus('current')
if mibBuilder.loadTexts:
acceptCpsHistDaysTimestamp.setDescription('The time DaysUnitCount was updated (in seconds since January 1, 1970).')
reject_est_hist_seconds_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 25))
if mibBuilder.loadTexts:
rejectEstHistSecondsTable.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistSecondsTable.setDescription('Historical (sampled) data every second for a minute.')
reject_est_hist_seconds_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 25, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'rejectEstHistSecondsGlobalID'), (0, 'TPT-DDOS-MIB', 'rejectEstHistSecondsIndex'))
if mibBuilder.loadTexts:
rejectEstHistSecondsEntry.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistSecondsEntry.setDescription('An entry in the rejected connections per sec (EST) history seconds table. Rows cannot be created or deleted. ')
reject_est_hist_seconds_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 25, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
rejectEstHistSecondsGlobalID.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistSecondsGlobalID.setDescription('The global identifier of a DDoS filter group.')
reject_est_hist_seconds_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 25, 1, 2), unsigned32())
if mibBuilder.loadTexts:
rejectEstHistSecondsIndex.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistSecondsIndex.setDescription('The index (0-59) of the second.')
reject_est_hist_seconds_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 25, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectEstHistSecondsUnitCount.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistSecondsUnitCount.setDescription('The count of filter-specific units matching the criteria for this filter in the specified second.')
reject_est_hist_seconds_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 25, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectEstHistSecondsTimestamp.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistSecondsTimestamp.setDescription('The time SecondsUnitCount was updated (in seconds since January 1, 1970).')
reject_est_hist_minutes_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 26))
if mibBuilder.loadTexts:
rejectEstHistMinutesTable.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistMinutesTable.setDescription('Historical (sampled) data every minute for an hour.')
reject_est_hist_minutes_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 26, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'rejectEstHistMinutesGlobalID'), (0, 'TPT-DDOS-MIB', 'rejectEstHistMinutesIndex'))
if mibBuilder.loadTexts:
rejectEstHistMinutesEntry.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistMinutesEntry.setDescription('An entry in the rejected connections per sec (EST) history minutes table. Rows cannot be created or deleted. ')
reject_est_hist_minutes_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 26, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
rejectEstHistMinutesGlobalID.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistMinutesGlobalID.setDescription('The global identifier of a DDoS filter group.')
reject_est_hist_minutes_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 26, 1, 2), unsigned32())
if mibBuilder.loadTexts:
rejectEstHistMinutesIndex.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistMinutesIndex.setDescription('The index (0-59) of the minute.')
reject_est_hist_minutes_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 26, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectEstHistMinutesUnitCount.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistMinutesUnitCount.setDescription('The average of the SecondsUnitCount values corresponding to this minute.')
reject_est_hist_minutes_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 26, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectEstHistMinutesTimestamp.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistMinutesTimestamp.setDescription('The time MinutesUnitCount was updated (in seconds since January 1, 1970).')
reject_est_hist_hours_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 27))
if mibBuilder.loadTexts:
rejectEstHistHoursTable.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistHoursTable.setDescription('Historical (sampled) data every hour for a day.')
reject_est_hist_hours_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 27, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'rejectEstHistHoursGlobalID'), (0, 'TPT-DDOS-MIB', 'rejectEstHistHoursIndex'))
if mibBuilder.loadTexts:
rejectEstHistHoursEntry.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistHoursEntry.setDescription('An entry in the rejected connections per sec (EST) history hours table. Rows cannot be created or deleted. ')
reject_est_hist_hours_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 27, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
rejectEstHistHoursGlobalID.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistHoursGlobalID.setDescription('The global identifier of a DDoS filter group.')
reject_est_hist_hours_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 27, 1, 2), unsigned32())
if mibBuilder.loadTexts:
rejectEstHistHoursIndex.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistHoursIndex.setDescription('The index (0-23) of the hour.')
reject_est_hist_hours_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 27, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectEstHistHoursUnitCount.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistHoursUnitCount.setDescription('The average of the MinutesUnitCount values corresponding to this hour.')
reject_est_hist_hours_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 27, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectEstHistHoursTimestamp.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistHoursTimestamp.setDescription('The time HoursUnitCount was updated (in seconds since January 1, 1970).')
reject_est_hist_days_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 28))
if mibBuilder.loadTexts:
rejectEstHistDaysTable.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistDaysTable.setDescription('Historical (sampled) data every day for 35 days.')
reject_est_hist_days_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 28, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'rejectEstHistDaysGlobalID'), (0, 'TPT-DDOS-MIB', 'rejectEstHistDaysIndex'))
if mibBuilder.loadTexts:
rejectEstHistDaysEntry.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistDaysEntry.setDescription('An entry in the rejected connections per sec (EST) history days table. Rows cannot be created or deleted. ')
reject_est_hist_days_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 28, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
rejectEstHistDaysGlobalID.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistDaysGlobalID.setDescription('The global identifier of a DDoS filter group.')
reject_est_hist_days_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 28, 1, 2), unsigned32())
if mibBuilder.loadTexts:
rejectEstHistDaysIndex.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistDaysIndex.setDescription('The index (0-34) of the day.')
reject_est_hist_days_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 28, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectEstHistDaysUnitCount.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistDaysUnitCount.setDescription('The average of the HoursUnitCount values corresponding to this day.')
reject_est_hist_days_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 28, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rejectEstHistDaysTimestamp.setStatus('current')
if mibBuilder.loadTexts:
rejectEstHistDaysTimestamp.setDescription('The time DaysUnitCount was updated (in seconds since January 1, 1970).')
accept_est_hist_seconds_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 29))
if mibBuilder.loadTexts:
acceptEstHistSecondsTable.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistSecondsTable.setDescription('Historical (sampled) data every second for a minute.')
accept_est_hist_seconds_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 29, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'acceptEstHistSecondsGlobalID'), (0, 'TPT-DDOS-MIB', 'acceptEstHistSecondsIndex'))
if mibBuilder.loadTexts:
acceptEstHistSecondsEntry.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistSecondsEntry.setDescription('An entry in the accepted connections per sec (EST) history seconds table. Rows cannot be created or deleted. ')
accept_est_hist_seconds_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 29, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
acceptEstHistSecondsGlobalID.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistSecondsGlobalID.setDescription('The global identifier of a DDoS filter group.')
accept_est_hist_seconds_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 29, 1, 2), unsigned32())
if mibBuilder.loadTexts:
acceptEstHistSecondsIndex.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistSecondsIndex.setDescription('The index (0-59) of the second.')
accept_est_hist_seconds_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 29, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acceptEstHistSecondsUnitCount.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistSecondsUnitCount.setDescription('The count of filter-specific units matching the criteria for this filter in the specified second.')
accept_est_hist_seconds_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 29, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acceptEstHistSecondsTimestamp.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistSecondsTimestamp.setDescription('The time SecondsUnitCount was updated (in seconds since January 1, 1970).')
accept_est_hist_minutes_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 30))
if mibBuilder.loadTexts:
acceptEstHistMinutesTable.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistMinutesTable.setDescription('Historical (sampled) data every minute for an hour.')
accept_est_hist_minutes_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 30, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'acceptEstHistMinutesGlobalID'), (0, 'TPT-DDOS-MIB', 'acceptEstHistMinutesIndex'))
if mibBuilder.loadTexts:
acceptEstHistMinutesEntry.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistMinutesEntry.setDescription('An entry in the accepted connections per sec (EST) history minutes table. Rows cannot be created or deleted. ')
accept_est_hist_minutes_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 30, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
acceptEstHistMinutesGlobalID.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistMinutesGlobalID.setDescription('The global identifier of a DDoS filter group.')
accept_est_hist_minutes_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 30, 1, 2), unsigned32())
if mibBuilder.loadTexts:
acceptEstHistMinutesIndex.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistMinutesIndex.setDescription('The index (0-59) of the minute.')
accept_est_hist_minutes_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 30, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acceptEstHistMinutesUnitCount.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistMinutesUnitCount.setDescription('The average of the SecondsUnitCount values corresponding to this minute.')
accept_est_hist_minutes_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 30, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acceptEstHistMinutesTimestamp.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistMinutesTimestamp.setDescription('The time MinutesUnitCount was updated (in seconds since January 1, 1970).')
accept_est_hist_hours_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 31))
if mibBuilder.loadTexts:
acceptEstHistHoursTable.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistHoursTable.setDescription('Historical (sampled) data every hour for a day.')
accept_est_hist_hours_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 31, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'acceptEstHistHoursGlobalID'), (0, 'TPT-DDOS-MIB', 'acceptEstHistHoursIndex'))
if mibBuilder.loadTexts:
acceptEstHistHoursEntry.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistHoursEntry.setDescription('An entry in the accepted connections per sec (EST) history hours table. Rows cannot be created or deleted. ')
accept_est_hist_hours_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 31, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
acceptEstHistHoursGlobalID.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistHoursGlobalID.setDescription('The global identifier of a DDoS filter group.')
accept_est_hist_hours_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 31, 1, 2), unsigned32())
if mibBuilder.loadTexts:
acceptEstHistHoursIndex.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistHoursIndex.setDescription('The index (0-23) of the hour.')
accept_est_hist_hours_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 31, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acceptEstHistHoursUnitCount.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistHoursUnitCount.setDescription('The average of the MinutesUnitCount values corresponding to this hour.')
accept_est_hist_hours_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 31, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acceptEstHistHoursTimestamp.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistHoursTimestamp.setDescription('The time HoursUnitCount was updated (in seconds since January 1, 1970).')
accept_est_hist_days_table = mib_table((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 32))
if mibBuilder.loadTexts:
acceptEstHistDaysTable.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistDaysTable.setDescription('Historical (sampled) data every day for 35 days.')
accept_est_hist_days_entry = mib_table_row((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 32, 1)).setIndexNames((0, 'TPT-DDOS-MIB', 'acceptEstHistDaysGlobalID'), (0, 'TPT-DDOS-MIB', 'acceptEstHistDaysIndex'))
if mibBuilder.loadTexts:
acceptEstHistDaysEntry.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistDaysEntry.setDescription('An entry in the accepted connections per sec (EST) history days table. Rows cannot be created or deleted. ')
accept_est_hist_days_global_id = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 32, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40)))
if mibBuilder.loadTexts:
acceptEstHistDaysGlobalID.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistDaysGlobalID.setDescription('The global identifier of a DDoS filter group.')
accept_est_hist_days_index = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 32, 1, 2), unsigned32())
if mibBuilder.loadTexts:
acceptEstHistDaysIndex.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistDaysIndex.setDescription('The index (0-34) of the day.')
accept_est_hist_days_unit_count = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 32, 1, 3), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acceptEstHistDaysUnitCount.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistDaysUnitCount.setDescription('The average of the HoursUnitCount values corresponding to this day.')
accept_est_hist_days_timestamp = mib_table_column((1, 3, 6, 1, 4, 1, 10734, 3, 3, 2, 9, 32, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
acceptEstHistDaysTimestamp.setStatus('current')
if mibBuilder.loadTexts:
acceptEstHistDaysTimestamp.setDescription('The time DaysUnitCount was updated (in seconds since January 1, 1970).')
mibBuilder.exportSymbols('TPT-DDOS-MIB', rejectEstHistMinutesTable=rejectEstHistMinutesTable, proxyConnHistHoursGlobalID=proxyConnHistHoursGlobalID, rejectCpsHistSecondsTable=rejectCpsHistSecondsTable, proxyConnHistDaysGlobalID=proxyConnHistDaysGlobalID, acceptEstHistDaysUnitCount=acceptEstHistDaysUnitCount, acceptCpsHistMinutesGlobalID=acceptCpsHistMinutesGlobalID, proxyConnHistHoursEntry=proxyConnHistHoursEntry, acceptCpsHistHoursIndex=acceptCpsHistHoursIndex, acceptEstHistDaysTimestamp=acceptEstHistDaysTimestamp, rejectEstHistDaysEntry=rejectEstHistDaysEntry, acceptEstHistSecondsTable=acceptEstHistSecondsTable, rejectEstHistHoursEntry=rejectEstHistHoursEntry, acceptEstHistDaysGlobalID=acceptEstHistDaysGlobalID, rejectEstHistSecondsTable=rejectEstHistSecondsTable, rejectEstHistSecondsEntry=rejectEstHistSecondsEntry, acceptCpsHistSecondsEntry=acceptCpsHistSecondsEntry, acceptCpsHistSecondsUnitCount=acceptCpsHistSecondsUnitCount, proxyConnHistSecondsUnitCount=proxyConnHistSecondsUnitCount, acceptCpsHistDaysTable=acceptCpsHistDaysTable, acceptEstHistMinutesIndex=acceptEstHistMinutesIndex, rejectSynHistHoursUnitCount=rejectSynHistHoursUnitCount, rejectEstHistDaysTable=rejectEstHistDaysTable, rejectSynHistMinutesEntry=rejectSynHistMinutesEntry, acceptEstHistDaysTable=acceptEstHistDaysTable, acceptCpsHistHoursEntry=acceptCpsHistHoursEntry, rejectEstHistMinutesEntry=rejectEstHistMinutesEntry, acceptCpsHistDaysIndex=acceptCpsHistDaysIndex, acceptEstHistHoursGlobalID=acceptEstHistHoursGlobalID, rejectEstHistHoursGlobalID=rejectEstHistHoursGlobalID, acceptEstHistSecondsTimestamp=acceptEstHistSecondsTimestamp, rejectCpsHistDaysUnitCount=rejectCpsHistDaysUnitCount, rejectEstHistSecondsUnitCount=rejectEstHistSecondsUnitCount, acceptEstHistSecondsGlobalID=acceptEstHistSecondsGlobalID, proxyConnHistHoursIndex=proxyConnHistHoursIndex, rejectEstHistSecondsGlobalID=rejectEstHistSecondsGlobalID, rejectSynHistMinutesTable=rejectSynHistMinutesTable, rejectSynHistSecondsIndex=rejectSynHistSecondsIndex, acceptCpsHistMinutesIndex=acceptCpsHistMinutesIndex, acceptEstHistMinutesTimestamp=acceptEstHistMinutesTimestamp, rejectEstHistDaysTimestamp=rejectEstHistDaysTimestamp, acceptCpsHistDaysGlobalID=acceptCpsHistDaysGlobalID, rejectCpsHistSecondsIndex=rejectCpsHistSecondsIndex, acceptCpsHistMinutesUnitCount=acceptCpsHistMinutesUnitCount, proxyConnHistMinutesUnitCount=proxyConnHistMinutesUnitCount, acceptCpsHistDaysEntry=acceptCpsHistDaysEntry, proxyConnHistMinutesEntry=proxyConnHistMinutesEntry, rejectCpsHistMinutesGlobalID=rejectCpsHistMinutesGlobalID, acceptEstHistHoursEntry=acceptEstHistHoursEntry, rejectEstHistHoursIndex=rejectEstHistHoursIndex, rejectSynHistMinutesGlobalID=rejectSynHistMinutesGlobalID, acceptCpsHistHoursTable=acceptCpsHistHoursTable, rejectEstHistDaysIndex=rejectEstHistDaysIndex, rejectSynHistSecondsTable=rejectSynHistSecondsTable, rejectEstHistSecondsTimestamp=rejectEstHistSecondsTimestamp, rejectSynHistDaysGlobalID=rejectSynHistDaysGlobalID, rejectEstHistHoursTimestamp=rejectEstHistHoursTimestamp, acceptCpsHistSecondsGlobalID=acceptCpsHistSecondsGlobalID, rejectCpsHistSecondsUnitCount=rejectCpsHistSecondsUnitCount, rejectSynHistHoursTimestamp=rejectSynHistHoursTimestamp, acceptEstHistMinutesTable=acceptEstHistMinutesTable, rejectSynHistDaysUnitCount=rejectSynHistDaysUnitCount, acceptEstHistMinutesUnitCount=acceptEstHistMinutesUnitCount, PYSNMP_MODULE_ID=tpt_ddos, rejectEstHistHoursUnitCount=rejectEstHistHoursUnitCount, rejectCpsHistSecondsEntry=rejectCpsHistSecondsEntry, proxyConnHistMinutesIndex=proxyConnHistMinutesIndex, rejectCpsHistHoursEntry=rejectCpsHistHoursEntry, rejectEstHistMinutesIndex=rejectEstHistMinutesIndex, acceptEstHistSecondsUnitCount=acceptEstHistSecondsUnitCount, rejectSynHistSecondsUnitCount=rejectSynHistSecondsUnitCount, rejectCpsHistMinutesIndex=rejectCpsHistMinutesIndex, acceptCpsHistMinutesTimestamp=acceptCpsHistMinutesTimestamp, rejectSynHistMinutesTimestamp=rejectSynHistMinutesTimestamp, rejectCpsHistMinutesTable=rejectCpsHistMinutesTable, rejectEstHistMinutesUnitCount=rejectEstHistMinutesUnitCount, rejectSynHistDaysTable=rejectSynHistDaysTable, proxyConnHistDaysTimestamp=proxyConnHistDaysTimestamp, acceptCpsHistSecondsTable=acceptCpsHistSecondsTable, acceptCpsHistDaysTimestamp=acceptCpsHistDaysTimestamp, acceptCpsHistSecondsTimestamp=acceptCpsHistSecondsTimestamp, acceptEstHistDaysIndex=acceptEstHistDaysIndex, rejectSynHistSecondsTimestamp=rejectSynHistSecondsTimestamp, rejectCpsHistMinutesEntry=rejectCpsHistMinutesEntry, rejectEstHistHoursTable=rejectEstHistHoursTable, rejectCpsHistMinutesTimestamp=rejectCpsHistMinutesTimestamp, proxyConnHistDaysIndex=proxyConnHistDaysIndex, acceptEstHistSecondsIndex=acceptEstHistSecondsIndex, rejectCpsHistMinutesUnitCount=rejectCpsHistMinutesUnitCount, proxyConnHistSecondsTable=proxyConnHistSecondsTable, acceptCpsHistDaysUnitCount=acceptCpsHistDaysUnitCount, rejectEstHistDaysUnitCount=rejectEstHistDaysUnitCount, rejectCpsHistHoursIndex=rejectCpsHistHoursIndex, proxyConnHistMinutesGlobalID=proxyConnHistMinutesGlobalID, tpt_ddos=tpt_ddos, proxyConnHistSecondsGlobalID=proxyConnHistSecondsGlobalID, rejectCpsHistHoursGlobalID=rejectCpsHistHoursGlobalID, proxyConnHistDaysUnitCount=proxyConnHistDaysUnitCount, acceptEstHistDaysEntry=acceptEstHistDaysEntry, rejectSynHistSecondsEntry=rejectSynHistSecondsEntry, acceptCpsHistHoursTimestamp=acceptCpsHistHoursTimestamp, rejectCpsHistSecondsGlobalID=rejectCpsHistSecondsGlobalID, rejectCpsHistHoursUnitCount=rejectCpsHistHoursUnitCount, proxyConnHistSecondsTimestamp=proxyConnHistSecondsTimestamp, acceptEstHistHoursUnitCount=acceptEstHistHoursUnitCount, rejectCpsHistDaysTable=rejectCpsHistDaysTable, rejectSynHistHoursIndex=rejectSynHistHoursIndex, proxyConnHistSecondsIndex=proxyConnHistSecondsIndex, acceptEstHistMinutesGlobalID=acceptEstHistMinutesGlobalID, acceptEstHistHoursTimestamp=acceptEstHistHoursTimestamp, rejectSynHistSecondsGlobalID=rejectSynHistSecondsGlobalID, rejectCpsHistDaysIndex=rejectCpsHistDaysIndex, rejectEstHistDaysGlobalID=rejectEstHistDaysGlobalID, rejectSynHistDaysEntry=rejectSynHistDaysEntry, rejectSynHistMinutesUnitCount=rejectSynHistMinutesUnitCount, rejectSynHistHoursEntry=rejectSynHistHoursEntry, proxyConnHistSecondsEntry=proxyConnHistSecondsEntry, rejectCpsHistHoursTable=rejectCpsHistHoursTable, rejectSynHistHoursTable=rejectSynHistHoursTable, rejectCpsHistDaysEntry=rejectCpsHistDaysEntry, acceptEstHistSecondsEntry=acceptEstHistSecondsEntry, rejectSynHistDaysTimestamp=rejectSynHistDaysTimestamp, rejectEstHistMinutesGlobalID=rejectEstHistMinutesGlobalID, acceptEstHistHoursIndex=acceptEstHistHoursIndex, rejectSynHistMinutesIndex=rejectSynHistMinutesIndex, rejectSynHistHoursGlobalID=rejectSynHistHoursGlobalID, rejectCpsHistHoursTimestamp=rejectCpsHistHoursTimestamp, proxyConnHistHoursTimestamp=proxyConnHistHoursTimestamp, acceptEstHistMinutesEntry=acceptEstHistMinutesEntry, proxyConnHistDaysEntry=proxyConnHistDaysEntry, acceptCpsHistSecondsIndex=acceptCpsHistSecondsIndex, rejectEstHistSecondsIndex=rejectEstHistSecondsIndex, proxyConnHistMinutesTable=proxyConnHistMinutesTable, rejectCpsHistDaysTimestamp=rejectCpsHistDaysTimestamp, proxyConnHistMinutesTimestamp=proxyConnHistMinutesTimestamp, rejectSynHistDaysIndex=rejectSynHistDaysIndex, proxyConnHistHoursUnitCount=proxyConnHistHoursUnitCount, rejectCpsHistSecondsTimestamp=rejectCpsHistSecondsTimestamp, acceptEstHistHoursTable=acceptEstHistHoursTable, proxyConnHistHoursTable=proxyConnHistHoursTable, proxyConnHistDaysTable=proxyConnHistDaysTable, acceptCpsHistMinutesTable=acceptCpsHistMinutesTable, acceptCpsHistHoursGlobalID=acceptCpsHistHoursGlobalID, acceptCpsHistHoursUnitCount=acceptCpsHistHoursUnitCount, rejectEstHistMinutesTimestamp=rejectEstHistMinutesTimestamp, acceptCpsHistMinutesEntry=acceptCpsHistMinutesEntry, rejectCpsHistDaysGlobalID=rejectCpsHistDaysGlobalID) |
#
# PySNMP MIB module CNT251-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CNT251-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 18:09:31 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ConstraintsUnion, ValueSizeConstraint, SingleValueConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ConstraintsUnion", "ValueSizeConstraint", "SingleValueConstraint", "ConstraintsIntersection")
cnt2CfgSystemProbe, = mibBuilder.importSymbols("CNT25-MIB", "cnt2CfgSystemProbe")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
Bits, MibIdentifier, Unsigned32, IpAddress, ModuleIdentity, Integer32, iso, Counter64, NotificationType, Gauge32, Counter32, TimeTicks, MibScalar, MibTable, MibTableRow, MibTableColumn, ObjectIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "Bits", "MibIdentifier", "Unsigned32", "IpAddress", "ModuleIdentity", "Integer32", "iso", "Counter64", "NotificationType", "Gauge32", "Counter32", "TimeTicks", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ObjectIdentity")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
cnt2SysChassisType = MibScalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 6, 12, 13, 14, 15, 16, 17))).clone(namedValues=NamedValues(("slot-2", 2), ("slot-6", 6), ("slot-12", 12), ("osg", 13), ("usg", 14), ("usd6", 15), ("usd12", 16), ("tm", 17)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysChassisType.setStatus('mandatory')
cnt2SysZachCardType = MibScalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("not-present", 1), ("rs232", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysZachCardType.setStatus('mandatory')
cnt2SysHmbFirmwareRevision = MibScalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysHmbFirmwareRevision.setStatus('mandatory')
cnt2SysScnrcVersion = MibScalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysScnrcVersion.setStatus('mandatory')
cnt2SysDatPresent = MibScalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysDatPresent.setStatus('mandatory')
cnt2SysCdRomPresent = MibScalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysCdRomPresent.setStatus('mandatory')
cnt2SysProbeDateTime = MibScalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysProbeDateTime.setStatus('mandatory')
cnt2SysSlotCount = MibScalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysSlotCount.setStatus('mandatory')
cnt2SysPowerSupplyTable = MibTable((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 9), )
if mibBuilder.loadTexts: cnt2SysPowerSupplyTable.setStatus('mandatory')
cnt2SysPowerSupplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 9, 1), ).setIndexNames((0, "CNT251-MIB", "cnt2SysPowerSupplyIndex"))
if mibBuilder.loadTexts: cnt2SysPowerSupplyEntry.setStatus('mandatory')
cnt2SysPowerSupplyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 9, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysPowerSupplyIndex.setStatus('mandatory')
cnt2SysPowerSupplyPresent = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 9, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysPowerSupplyPresent.setStatus('mandatory')
cnt2SysFanTable = MibTable((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 10), )
if mibBuilder.loadTexts: cnt2SysFanTable.setStatus('mandatory')
cnt2SysFanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 10, 1), ).setIndexNames((0, "CNT251-MIB", "cnt2SysFanIndex"))
if mibBuilder.loadTexts: cnt2SysFanEntry.setStatus('mandatory')
cnt2SysFanIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 10, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysFanIndex.setStatus('mandatory')
cnt2SysFanPresent = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 10, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysFanPresent.setStatus('mandatory')
cnt2SysAdapterTable = MibTable((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11), )
if mibBuilder.loadTexts: cnt2SysAdapterTable.setStatus('mandatory')
cnt2SysAdapterEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1), ).setIndexNames((0, "CNT251-MIB", "cnt2SysAdapterIndex"))
if mibBuilder.loadTexts: cnt2SysAdapterEntry.setStatus('mandatory')
cnt2SysAdapterIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysAdapterIndex.setStatus('mandatory')
cnt2SysAdapterType = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("unknown", 1), ("absent", 2), ("sparc", 3), ("escon", 4), ("ppc", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysAdapterType.setStatus('mandatory')
cnt2SysAdapterName = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15))).clone(namedValues=NamedValues(("absent", 1), ("unknown", 2), ("zsp1", 3), ("zen1", 4), ("zap1", 5), ("zsp2", 6), ("zen2", 7), ("zap2", 8), ("zen3", 9), ("usg1", 10), ("usg2", 11), ("zap3", 12), ("zap4", 13), ("zen4", 14), ("o1x1", 15)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysAdapterName.setStatus('mandatory')
cnt2SysAdapterPartNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysAdapterPartNumber.setStatus('mandatory')
cnt2SysAdapterSerialNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysAdapterSerialNumber.setStatus('mandatory')
cnt2SysAdapterHostId = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysAdapterHostId.setStatus('mandatory')
cnt2SysAdapterBoardRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysAdapterBoardRevision.setStatus('mandatory')
cnt2SysAdapterFirmwareMajorRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysAdapterFirmwareMajorRevision.setStatus('mandatory')
cnt2SysAdapterFirmwareMinorRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysAdapterFirmwareMinorRevision.setStatus('mandatory')
cnt2SysAdapterHostName = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 10), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysAdapterHostName.setStatus('mandatory')
cnt2SysAdapterOsName = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 11), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysAdapterOsName.setStatus('mandatory')
cnt2SysAdapterOsMajorVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysAdapterOsMajorVersion.setStatus('mandatory')
cnt2SysAdapterOsMinorVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysAdapterOsMinorVersion.setStatus('mandatory')
cnt2SysAdapterServiceMonitorStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("primary", 2), ("secondary", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysAdapterServiceMonitorStatus.setStatus('mandatory')
cnt2SysBusTable = MibTable((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 12), )
if mibBuilder.loadTexts: cnt2SysBusTable.setStatus('mandatory')
cnt2SysBusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 12, 1), ).setIndexNames((0, "CNT251-MIB", "cnt2SysBusAdapterIndex"), (0, "CNT251-MIB", "cnt2SysBusIndex"))
if mibBuilder.loadTexts: cnt2SysBusEntry.setStatus('mandatory')
cnt2SysBusAdapterIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 12, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysBusAdapterIndex.setStatus('mandatory')
cnt2SysBusIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 12, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysBusIndex.setStatus('mandatory')
cnt2SysBusType = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 12, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("unknown", 1), ("sbus", 2), ("pci", 3), ("vme", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysBusType.setStatus('mandatory')
cnt2SysCardTable = MibTable((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13), )
if mibBuilder.loadTexts: cnt2SysCardTable.setStatus('mandatory')
cnt2SysCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13, 1), ).setIndexNames((0, "CNT251-MIB", "cnt2SysCardAdapterIndex"), (0, "CNT251-MIB", "cnt2SysCardBusIndex"), (0, "CNT251-MIB", "cnt2SysCardIndex"))
if mibBuilder.loadTexts: cnt2SysCardEntry.setStatus('mandatory')
cnt2SysCardAdapterIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysCardAdapterIndex.setStatus('mandatory')
cnt2SysCardBusIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysCardBusIndex.setStatus('mandatory')
cnt2SysCardIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysCardIndex.setStatus('mandatory')
cnt2SysCardFunction = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("unknown", 1), ("interface", 2), ("compression", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysCardFunction.setStatus('mandatory')
cnt2SysCardFirmwareMajorRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysCardFirmwareMajorRevision.setStatus('mandatory')
cnt2SysCardFirmwareMinorRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysCardFirmwareMinorRevision.setStatus('mandatory')
cnt2SysCardVendorOctetString = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysCardVendorOctetString.setStatus('mandatory')
cnt2SysCardVendorDisplayString = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13, 1, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysCardVendorDisplayString.setStatus('mandatory')
cnt2SysIfTable = MibTable((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14), )
if mibBuilder.loadTexts: cnt2SysIfTable.setStatus('mandatory')
cnt2SysIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14, 1), ).setIndexNames((0, "CNT251-MIB", "cnt2SysIfAdapterIndex"), (0, "CNT251-MIB", "cnt2SysIfBusIndex"), (0, "CNT251-MIB", "cnt2SysIfIndex"))
if mibBuilder.loadTexts: cnt2SysIfEntry.setStatus('mandatory')
cnt2SysIfAdapterIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysIfAdapterIndex.setStatus('mandatory')
cnt2SysIfBusIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysIfBusIndex.setStatus('mandatory')
cnt2SysIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysIfIndex.setStatus('mandatory')
cnt2SysIfType = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))).clone(namedValues=NamedValues(("unknown", 1), ("ethernetCsmacd", 2), ("async", 3), ("escon", 4), ("atm", 5), ("fibreChannel", 6), ("scsi-2", 7), ("scsi-3", 8), ("ds3", 9), ("fddi", 10), ("fastEther", 11), ("isdn", 12), ("gigabitEthernet", 13)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysIfType.setStatus('mandatory')
cnt2SysIfCardIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysIfCardIndex.setStatus('mandatory')
cnt2SysIfName = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysIfName.setStatus('mandatory')
cnt2SysIfConnector = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("absent", 1), ("unknown", 2), ("micro-d15", 3), ("scsi-2", 4), ("scsi-3", 5), ("sc-duplex", 6), ("rj45", 7), ("bnc", 8), ("hssdc", 9), ("rsd-duplex", 10)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysIfConnector.setStatus('mandatory')
cnt2SysIfSnmpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysIfSnmpIndex.setStatus('mandatory')
cnt2SysSerialNumber = MibScalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 15), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysSerialNumber.setStatus('mandatory')
cnt2SysOsVersion = MibScalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 16), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnt2SysOsVersion.setStatus('mandatory')
mibBuilder.exportSymbols("CNT251-MIB", cnt2SysZachCardType=cnt2SysZachCardType, cnt2SysBusTable=cnt2SysBusTable, cnt2SysAdapterEntry=cnt2SysAdapterEntry, cnt2SysCardFirmwareMinorRevision=cnt2SysCardFirmwareMinorRevision, cnt2SysFanIndex=cnt2SysFanIndex, cnt2SysChassisType=cnt2SysChassisType, cnt2SysFanPresent=cnt2SysFanPresent, cnt2SysIfEntry=cnt2SysIfEntry, cnt2SysIfConnector=cnt2SysIfConnector, cnt2SysBusType=cnt2SysBusType, cnt2SysFanEntry=cnt2SysFanEntry, cnt2SysAdapterType=cnt2SysAdapterType, cnt2SysCardBusIndex=cnt2SysCardBusIndex, cnt2SysSlotCount=cnt2SysSlotCount, cnt2SysAdapterTable=cnt2SysAdapterTable, cnt2SysPowerSupplyIndex=cnt2SysPowerSupplyIndex, cnt2SysAdapterName=cnt2SysAdapterName, cnt2SysProbeDateTime=cnt2SysProbeDateTime, cnt2SysCardIndex=cnt2SysCardIndex, cnt2SysAdapterFirmwareMinorRevision=cnt2SysAdapterFirmwareMinorRevision, cnt2SysIfAdapterIndex=cnt2SysIfAdapterIndex, cnt2SysOsVersion=cnt2SysOsVersion, cnt2SysIfType=cnt2SysIfType, cnt2SysPowerSupplyEntry=cnt2SysPowerSupplyEntry, cnt2SysCardEntry=cnt2SysCardEntry, cnt2SysAdapterOsMajorVersion=cnt2SysAdapterOsMajorVersion, cnt2SysCardVendorDisplayString=cnt2SysCardVendorDisplayString, cnt2SysCardVendorOctetString=cnt2SysCardVendorOctetString, cnt2SysCardFunction=cnt2SysCardFunction, cnt2SysDatPresent=cnt2SysDatPresent, cnt2SysAdapterFirmwareMajorRevision=cnt2SysAdapterFirmwareMajorRevision, cnt2SysIfBusIndex=cnt2SysIfBusIndex, cnt2SysPowerSupplyPresent=cnt2SysPowerSupplyPresent, cnt2SysAdapterHostId=cnt2SysAdapterHostId, cnt2SysAdapterBoardRevision=cnt2SysAdapterBoardRevision, cnt2SysIfName=cnt2SysIfName, cnt2SysCardFirmwareMajorRevision=cnt2SysCardFirmwareMajorRevision, cnt2SysAdapterSerialNumber=cnt2SysAdapterSerialNumber, cnt2SysFanTable=cnt2SysFanTable, cnt2SysBusIndex=cnt2SysBusIndex, cnt2SysIfSnmpIndex=cnt2SysIfSnmpIndex, cnt2SysAdapterOsMinorVersion=cnt2SysAdapterOsMinorVersion, cnt2SysAdapterIndex=cnt2SysAdapterIndex, cnt2SysAdapterServiceMonitorStatus=cnt2SysAdapterServiceMonitorStatus, cnt2SysBusAdapterIndex=cnt2SysBusAdapterIndex, cnt2SysSerialNumber=cnt2SysSerialNumber, cnt2SysPowerSupplyTable=cnt2SysPowerSupplyTable, cnt2SysCardTable=cnt2SysCardTable, cnt2SysAdapterHostName=cnt2SysAdapterHostName, cnt2SysScnrcVersion=cnt2SysScnrcVersion, cnt2SysBusEntry=cnt2SysBusEntry, cnt2SysCardAdapterIndex=cnt2SysCardAdapterIndex, cnt2SysIfIndex=cnt2SysIfIndex, cnt2SysHmbFirmwareRevision=cnt2SysHmbFirmwareRevision, cnt2SysAdapterOsName=cnt2SysAdapterOsName, cnt2SysIfCardIndex=cnt2SysIfCardIndex, cnt2SysCdRomPresent=cnt2SysCdRomPresent, cnt2SysIfTable=cnt2SysIfTable, cnt2SysAdapterPartNumber=cnt2SysAdapterPartNumber)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, constraints_union, value_size_constraint, single_value_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ConstraintsUnion', 'ValueSizeConstraint', 'SingleValueConstraint', 'ConstraintsIntersection')
(cnt2_cfg_system_probe,) = mibBuilder.importSymbols('CNT25-MIB', 'cnt2CfgSystemProbe')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(bits, mib_identifier, unsigned32, ip_address, module_identity, integer32, iso, counter64, notification_type, gauge32, counter32, time_ticks, mib_scalar, mib_table, mib_table_row, mib_table_column, object_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'Bits', 'MibIdentifier', 'Unsigned32', 'IpAddress', 'ModuleIdentity', 'Integer32', 'iso', 'Counter64', 'NotificationType', 'Gauge32', 'Counter32', 'TimeTicks', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ObjectIdentity')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
cnt2_sys_chassis_type = mib_scalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 6, 12, 13, 14, 15, 16, 17))).clone(namedValues=named_values(('slot-2', 2), ('slot-6', 6), ('slot-12', 12), ('osg', 13), ('usg', 14), ('usd6', 15), ('usd12', 16), ('tm', 17)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysChassisType.setStatus('mandatory')
cnt2_sys_zach_card_type = mib_scalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('not-present', 1), ('rs232', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysZachCardType.setStatus('mandatory')
cnt2_sys_hmb_firmware_revision = mib_scalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysHmbFirmwareRevision.setStatus('mandatory')
cnt2_sys_scnrc_version = mib_scalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysScnrcVersion.setStatus('mandatory')
cnt2_sys_dat_present = mib_scalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysDatPresent.setStatus('mandatory')
cnt2_sys_cd_rom_present = mib_scalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysCdRomPresent.setStatus('mandatory')
cnt2_sys_probe_date_time = mib_scalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysProbeDateTime.setStatus('mandatory')
cnt2_sys_slot_count = mib_scalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysSlotCount.setStatus('mandatory')
cnt2_sys_power_supply_table = mib_table((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 9))
if mibBuilder.loadTexts:
cnt2SysPowerSupplyTable.setStatus('mandatory')
cnt2_sys_power_supply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 9, 1)).setIndexNames((0, 'CNT251-MIB', 'cnt2SysPowerSupplyIndex'))
if mibBuilder.loadTexts:
cnt2SysPowerSupplyEntry.setStatus('mandatory')
cnt2_sys_power_supply_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 9, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysPowerSupplyIndex.setStatus('mandatory')
cnt2_sys_power_supply_present = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 9, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysPowerSupplyPresent.setStatus('mandatory')
cnt2_sys_fan_table = mib_table((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 10))
if mibBuilder.loadTexts:
cnt2SysFanTable.setStatus('mandatory')
cnt2_sys_fan_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 10, 1)).setIndexNames((0, 'CNT251-MIB', 'cnt2SysFanIndex'))
if mibBuilder.loadTexts:
cnt2SysFanEntry.setStatus('mandatory')
cnt2_sys_fan_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 10, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysFanIndex.setStatus('mandatory')
cnt2_sys_fan_present = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 10, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysFanPresent.setStatus('mandatory')
cnt2_sys_adapter_table = mib_table((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11))
if mibBuilder.loadTexts:
cnt2SysAdapterTable.setStatus('mandatory')
cnt2_sys_adapter_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1)).setIndexNames((0, 'CNT251-MIB', 'cnt2SysAdapterIndex'))
if mibBuilder.loadTexts:
cnt2SysAdapterEntry.setStatus('mandatory')
cnt2_sys_adapter_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysAdapterIndex.setStatus('mandatory')
cnt2_sys_adapter_type = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('unknown', 1), ('absent', 2), ('sparc', 3), ('escon', 4), ('ppc', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysAdapterType.setStatus('mandatory')
cnt2_sys_adapter_name = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15))).clone(namedValues=named_values(('absent', 1), ('unknown', 2), ('zsp1', 3), ('zen1', 4), ('zap1', 5), ('zsp2', 6), ('zen2', 7), ('zap2', 8), ('zen3', 9), ('usg1', 10), ('usg2', 11), ('zap3', 12), ('zap4', 13), ('zen4', 14), ('o1x1', 15)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysAdapterName.setStatus('mandatory')
cnt2_sys_adapter_part_number = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysAdapterPartNumber.setStatus('mandatory')
cnt2_sys_adapter_serial_number = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysAdapterSerialNumber.setStatus('mandatory')
cnt2_sys_adapter_host_id = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysAdapterHostId.setStatus('mandatory')
cnt2_sys_adapter_board_revision = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysAdapterBoardRevision.setStatus('mandatory')
cnt2_sys_adapter_firmware_major_revision = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysAdapterFirmwareMajorRevision.setStatus('mandatory')
cnt2_sys_adapter_firmware_minor_revision = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysAdapterFirmwareMinorRevision.setStatus('mandatory')
cnt2_sys_adapter_host_name = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 10), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysAdapterHostName.setStatus('mandatory')
cnt2_sys_adapter_os_name = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 11), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysAdapterOsName.setStatus('mandatory')
cnt2_sys_adapter_os_major_version = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysAdapterOsMajorVersion.setStatus('mandatory')
cnt2_sys_adapter_os_minor_version = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysAdapterOsMinorVersion.setStatus('mandatory')
cnt2_sys_adapter_service_monitor_status = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 11, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('primary', 2), ('secondary', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysAdapterServiceMonitorStatus.setStatus('mandatory')
cnt2_sys_bus_table = mib_table((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 12))
if mibBuilder.loadTexts:
cnt2SysBusTable.setStatus('mandatory')
cnt2_sys_bus_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 12, 1)).setIndexNames((0, 'CNT251-MIB', 'cnt2SysBusAdapterIndex'), (0, 'CNT251-MIB', 'cnt2SysBusIndex'))
if mibBuilder.loadTexts:
cnt2SysBusEntry.setStatus('mandatory')
cnt2_sys_bus_adapter_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 12, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysBusAdapterIndex.setStatus('mandatory')
cnt2_sys_bus_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 12, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysBusIndex.setStatus('mandatory')
cnt2_sys_bus_type = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 12, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('unknown', 1), ('sbus', 2), ('pci', 3), ('vme', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysBusType.setStatus('mandatory')
cnt2_sys_card_table = mib_table((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13))
if mibBuilder.loadTexts:
cnt2SysCardTable.setStatus('mandatory')
cnt2_sys_card_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13, 1)).setIndexNames((0, 'CNT251-MIB', 'cnt2SysCardAdapterIndex'), (0, 'CNT251-MIB', 'cnt2SysCardBusIndex'), (0, 'CNT251-MIB', 'cnt2SysCardIndex'))
if mibBuilder.loadTexts:
cnt2SysCardEntry.setStatus('mandatory')
cnt2_sys_card_adapter_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysCardAdapterIndex.setStatus('mandatory')
cnt2_sys_card_bus_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysCardBusIndex.setStatus('mandatory')
cnt2_sys_card_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysCardIndex.setStatus('mandatory')
cnt2_sys_card_function = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('unknown', 1), ('interface', 2), ('compression', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysCardFunction.setStatus('mandatory')
cnt2_sys_card_firmware_major_revision = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysCardFirmwareMajorRevision.setStatus('mandatory')
cnt2_sys_card_firmware_minor_revision = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysCardFirmwareMinorRevision.setStatus('mandatory')
cnt2_sys_card_vendor_octet_string = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13, 1, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysCardVendorOctetString.setStatus('mandatory')
cnt2_sys_card_vendor_display_string = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 13, 1, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysCardVendorDisplayString.setStatus('mandatory')
cnt2_sys_if_table = mib_table((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14))
if mibBuilder.loadTexts:
cnt2SysIfTable.setStatus('mandatory')
cnt2_sys_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14, 1)).setIndexNames((0, 'CNT251-MIB', 'cnt2SysIfAdapterIndex'), (0, 'CNT251-MIB', 'cnt2SysIfBusIndex'), (0, 'CNT251-MIB', 'cnt2SysIfIndex'))
if mibBuilder.loadTexts:
cnt2SysIfEntry.setStatus('mandatory')
cnt2_sys_if_adapter_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysIfAdapterIndex.setStatus('mandatory')
cnt2_sys_if_bus_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysIfBusIndex.setStatus('mandatory')
cnt2_sys_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysIfIndex.setStatus('mandatory')
cnt2_sys_if_type = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))).clone(namedValues=named_values(('unknown', 1), ('ethernetCsmacd', 2), ('async', 3), ('escon', 4), ('atm', 5), ('fibreChannel', 6), ('scsi-2', 7), ('scsi-3', 8), ('ds3', 9), ('fddi', 10), ('fastEther', 11), ('isdn', 12), ('gigabitEthernet', 13)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysIfType.setStatus('mandatory')
cnt2_sys_if_card_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysIfCardIndex.setStatus('mandatory')
cnt2_sys_if_name = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysIfName.setStatus('mandatory')
cnt2_sys_if_connector = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('absent', 1), ('unknown', 2), ('micro-d15', 3), ('scsi-2', 4), ('scsi-3', 5), ('sc-duplex', 6), ('rj45', 7), ('bnc', 8), ('hssdc', 9), ('rsd-duplex', 10)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysIfConnector.setStatus('mandatory')
cnt2_sys_if_snmp_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 14, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysIfSnmpIndex.setStatus('mandatory')
cnt2_sys_serial_number = mib_scalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 15), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysSerialNumber.setStatus('mandatory')
cnt2_sys_os_version = mib_scalar((1, 3, 6, 1, 4, 1, 333, 2, 5, 1, 16), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnt2SysOsVersion.setStatus('mandatory')
mibBuilder.exportSymbols('CNT251-MIB', cnt2SysZachCardType=cnt2SysZachCardType, cnt2SysBusTable=cnt2SysBusTable, cnt2SysAdapterEntry=cnt2SysAdapterEntry, cnt2SysCardFirmwareMinorRevision=cnt2SysCardFirmwareMinorRevision, cnt2SysFanIndex=cnt2SysFanIndex, cnt2SysChassisType=cnt2SysChassisType, cnt2SysFanPresent=cnt2SysFanPresent, cnt2SysIfEntry=cnt2SysIfEntry, cnt2SysIfConnector=cnt2SysIfConnector, cnt2SysBusType=cnt2SysBusType, cnt2SysFanEntry=cnt2SysFanEntry, cnt2SysAdapterType=cnt2SysAdapterType, cnt2SysCardBusIndex=cnt2SysCardBusIndex, cnt2SysSlotCount=cnt2SysSlotCount, cnt2SysAdapterTable=cnt2SysAdapterTable, cnt2SysPowerSupplyIndex=cnt2SysPowerSupplyIndex, cnt2SysAdapterName=cnt2SysAdapterName, cnt2SysProbeDateTime=cnt2SysProbeDateTime, cnt2SysCardIndex=cnt2SysCardIndex, cnt2SysAdapterFirmwareMinorRevision=cnt2SysAdapterFirmwareMinorRevision, cnt2SysIfAdapterIndex=cnt2SysIfAdapterIndex, cnt2SysOsVersion=cnt2SysOsVersion, cnt2SysIfType=cnt2SysIfType, cnt2SysPowerSupplyEntry=cnt2SysPowerSupplyEntry, cnt2SysCardEntry=cnt2SysCardEntry, cnt2SysAdapterOsMajorVersion=cnt2SysAdapterOsMajorVersion, cnt2SysCardVendorDisplayString=cnt2SysCardVendorDisplayString, cnt2SysCardVendorOctetString=cnt2SysCardVendorOctetString, cnt2SysCardFunction=cnt2SysCardFunction, cnt2SysDatPresent=cnt2SysDatPresent, cnt2SysAdapterFirmwareMajorRevision=cnt2SysAdapterFirmwareMajorRevision, cnt2SysIfBusIndex=cnt2SysIfBusIndex, cnt2SysPowerSupplyPresent=cnt2SysPowerSupplyPresent, cnt2SysAdapterHostId=cnt2SysAdapterHostId, cnt2SysAdapterBoardRevision=cnt2SysAdapterBoardRevision, cnt2SysIfName=cnt2SysIfName, cnt2SysCardFirmwareMajorRevision=cnt2SysCardFirmwareMajorRevision, cnt2SysAdapterSerialNumber=cnt2SysAdapterSerialNumber, cnt2SysFanTable=cnt2SysFanTable, cnt2SysBusIndex=cnt2SysBusIndex, cnt2SysIfSnmpIndex=cnt2SysIfSnmpIndex, cnt2SysAdapterOsMinorVersion=cnt2SysAdapterOsMinorVersion, cnt2SysAdapterIndex=cnt2SysAdapterIndex, cnt2SysAdapterServiceMonitorStatus=cnt2SysAdapterServiceMonitorStatus, cnt2SysBusAdapterIndex=cnt2SysBusAdapterIndex, cnt2SysSerialNumber=cnt2SysSerialNumber, cnt2SysPowerSupplyTable=cnt2SysPowerSupplyTable, cnt2SysCardTable=cnt2SysCardTable, cnt2SysAdapterHostName=cnt2SysAdapterHostName, cnt2SysScnrcVersion=cnt2SysScnrcVersion, cnt2SysBusEntry=cnt2SysBusEntry, cnt2SysCardAdapterIndex=cnt2SysCardAdapterIndex, cnt2SysIfIndex=cnt2SysIfIndex, cnt2SysHmbFirmwareRevision=cnt2SysHmbFirmwareRevision, cnt2SysAdapterOsName=cnt2SysAdapterOsName, cnt2SysIfCardIndex=cnt2SysIfCardIndex, cnt2SysCdRomPresent=cnt2SysCdRomPresent, cnt2SysIfTable=cnt2SysIfTable, cnt2SysAdapterPartNumber=cnt2SysAdapterPartNumber) |
def sanitize(time_string):
if '-' in time_string:
splitter = '-'
elif ':' in time_string:
splitter = ':'
else:
return(time_string)
(mins, secs) = time_string.split(splitter)
return(mins + '.' + secs)
with open('james.txt') as jaf:
data = jaf.readline()
james = data.strip().split(',')
with open('julie.txt') as juf:
data = juf.readline()
julie = data.strip().split(',')
with open('mikey.txt') as mif:
data = mif.readline()
mikey = data.strip().split(',')
with open('sarah.txt') as saf:
data = saf.readline()
sarah = data.strip().split(',')
print(sorted(set([sanitize(t) for t in james]))[0:3])
print(sorted(set([sanitize(t) for t in julie]))[0:3])
print(sorted(set([sanitize(t) for t in mikey]))[0:3])
print(sorted(set([sanitize(t) for t in sarah]))[0:3])
| def sanitize(time_string):
if '-' in time_string:
splitter = '-'
elif ':' in time_string:
splitter = ':'
else:
return time_string
(mins, secs) = time_string.split(splitter)
return mins + '.' + secs
with open('james.txt') as jaf:
data = jaf.readline()
james = data.strip().split(',')
with open('julie.txt') as juf:
data = juf.readline()
julie = data.strip().split(',')
with open('mikey.txt') as mif:
data = mif.readline()
mikey = data.strip().split(',')
with open('sarah.txt') as saf:
data = saf.readline()
sarah = data.strip().split(',')
print(sorted(set([sanitize(t) for t in james]))[0:3])
print(sorted(set([sanitize(t) for t in julie]))[0:3])
print(sorted(set([sanitize(t) for t in mikey]))[0:3])
print(sorted(set([sanitize(t) for t in sarah]))[0:3]) |
def top3(products, amounts, prices):
revenue_index_product = [ (amo*pri,-idx,pro) for (pro,amo,pri,idx) in zip(products,amounts,prices,range(len(prices))) ]
revenue_index_product = sorted(revenue_index_product, reverse=True )
return [ pro for (rev,idx,pro) in revenue_index_product[0:3] ]
| def top3(products, amounts, prices):
revenue_index_product = [(amo * pri, -idx, pro) for (pro, amo, pri, idx) in zip(products, amounts, prices, range(len(prices)))]
revenue_index_product = sorted(revenue_index_product, reverse=True)
return [pro for (rev, idx, pro) in revenue_index_product[0:3]] |
__all__ = [ 'XDict' ]
class XDict(dict):
__slots__ = ()
__setattr__ = dict.__setitem__
__delattr__ = dict.__delitem__
__getitem__ = dict.get
__getattr__ = dict.get
__getnewargs__ = lambda self: getattr(dict,self).__getnewargs__(self)
__repr__ = lambda self: '<XDict %s>' % dict.__repr__(self)
__getstate__ = lambda self: None
__copy__ = lambda self: Storage(self)
| __all__ = ['XDict']
class Xdict(dict):
__slots__ = ()
__setattr__ = dict.__setitem__
__delattr__ = dict.__delitem__
__getitem__ = dict.get
__getattr__ = dict.get
__getnewargs__ = lambda self: getattr(dict, self).__getnewargs__(self)
__repr__ = lambda self: '<XDict %s>' % dict.__repr__(self)
__getstate__ = lambda self: None
__copy__ = lambda self: storage(self) |
class Node:
def __init__(self, data = None, next = None):
self.data = data
self.next = next
def setNext(self,next):
self.next=next
def setData(self, data):
self.data=data
class LinkedList:
def __init__(self):
self.head = None
def add(self, data):
if self.head==None:
self.head=Node(data=data,next=None)
else:
temp=self.head
while temp.next!=None:
temp=temp.next
nuevo=Node(data=data,next=None)
temp.setNext(nuevo)
def delete(self, key):
temp = self.head
prev = None
while temp.next!= None and temp.data != key:
prev = temp
temp = temp.next
if prev is None:
self.head = temp.next
elif temp:
prev.next = temp.next
temp.next = None
def search(self,key):
temp=self.head
while temp.next!=None and temp.data!=key:
temp=temp.next
return temp
def print(self):
temp = self.head
while temp.next != None:
print(temp.data, end =" => ")
temp =temp.next
def replace(self,data,index):
temp=self.head
count=0
while temp.next!=None and count<index:
temp=temp.next
temp.setData(data)
| class Node:
def __init__(self, data=None, next=None):
self.data = data
self.next = next
def set_next(self, next):
self.next = next
def set_data(self, data):
self.data = data
class Linkedlist:
def __init__(self):
self.head = None
def add(self, data):
if self.head == None:
self.head = node(data=data, next=None)
else:
temp = self.head
while temp.next != None:
temp = temp.next
nuevo = node(data=data, next=None)
temp.setNext(nuevo)
def delete(self, key):
temp = self.head
prev = None
while temp.next != None and temp.data != key:
prev = temp
temp = temp.next
if prev is None:
self.head = temp.next
elif temp:
prev.next = temp.next
temp.next = None
def search(self, key):
temp = self.head
while temp.next != None and temp.data != key:
temp = temp.next
return temp
def print(self):
temp = self.head
while temp.next != None:
print(temp.data, end=' => ')
temp = temp.next
def replace(self, data, index):
temp = self.head
count = 0
while temp.next != None and count < index:
temp = temp.next
temp.setData(data) |
AddrSize = 8
Out = open("Template.txt", "w")
Out.write(">->+\n[>\n" + ">" * AddrSize + "+" + "<" * AddrSize + "\n\n")
def Mark(C, L):
if C == L:
Out.write("\t" * 0 + "[-\n")
Out.write("\t" * 0 + "#\n")
Out.write("\t" * 0 + "]\n")
return
Out.write("\t" * 0 + "[>\n")
Mark(C+1, L)
Out.write("\t" * 0 + "]>\n")
Mark(C+1, L)
Mark(0,AddrSize)
Out.write("+[-<+]-\n>]")
Out.close() | addr_size = 8
out = open('Template.txt', 'w')
Out.write('>->+\n[>\n' + '>' * AddrSize + '+' + '<' * AddrSize + '\n\n')
def mark(C, L):
if C == L:
Out.write('\t' * 0 + '[-\n')
Out.write('\t' * 0 + '#\n')
Out.write('\t' * 0 + ']\n')
return
Out.write('\t' * 0 + '[>\n')
mark(C + 1, L)
Out.write('\t' * 0 + ']>\n')
mark(C + 1, L)
mark(0, AddrSize)
Out.write('+[-<+]-\n>]')
Out.close() |
length = int(input())
width = int(input())
height = int(input())
occupied = float(input())
occupied_percent = occupied / 100
full_capacity = length * width * height
occupied_total = occupied_percent * full_capacity
remaining = full_capacity - occupied_total
capacity_in_dm = remaining / 1000
water = capacity_in_dm
print(water) | length = int(input())
width = int(input())
height = int(input())
occupied = float(input())
occupied_percent = occupied / 100
full_capacity = length * width * height
occupied_total = occupied_percent * full_capacity
remaining = full_capacity - occupied_total
capacity_in_dm = remaining / 1000
water = capacity_in_dm
print(water) |
module_id = 'gl'
report_name = 'tb_bf_maj'
table_name = 'gl_totals'
report_type = 'bf_cf'
groups = []
groups.append([
'code', # dim
['code_maj', []], # grp_name, filter
])
include_zeros = True
# allow_select_loc_fun = True
expand_subledg = True
columns = [
['op_date', 'op_date', 'Op date', 'DTE', 85, None, 'Total:'],
['cl_date', 'cl_date', 'Cl date', 'DTE', 85, None, False],
['code_maj', 'code_maj', 'Maj', 'TEXT', 80, None, False],
['op_bal', 'op_bal', 'Op bal', 'DEC', 100, None, True],
['mvmt', 'cl_bal - op_bal', 'Mvmt', 'DEC', 100, None, True],
['cl_bal', 'cl_bal', 'Cl bal', 'DEC', 100, None, True],
]
| module_id = 'gl'
report_name = 'tb_bf_maj'
table_name = 'gl_totals'
report_type = 'bf_cf'
groups = []
groups.append(['code', ['code_maj', []]])
include_zeros = True
expand_subledg = True
columns = [['op_date', 'op_date', 'Op date', 'DTE', 85, None, 'Total:'], ['cl_date', 'cl_date', 'Cl date', 'DTE', 85, None, False], ['code_maj', 'code_maj', 'Maj', 'TEXT', 80, None, False], ['op_bal', 'op_bal', 'Op bal', 'DEC', 100, None, True], ['mvmt', 'cl_bal - op_bal', 'Mvmt', 'DEC', 100, None, True], ['cl_bal', 'cl_bal', 'Cl bal', 'DEC', 100, None, True]] |
class Calculator:
def __init__(self):
self.result = 0
def adder(self, num):
self.result += num
return self.result
cal1 = Calculator()
cal2 = Calculator()
print(cal1.adder(3)) # 3
print(cal1.adder(5)) # 8
print(cal2.adder(3)) # 3
print(cal2.adder(7)) # 10
# Empty Class
class Simple:
pass
# Variable
class Service:
text = "Hello world"
service = Service()
print(service.text) # Hello world
class Service2:
def __init__(self, name):
self.name = name
service2=Service2("hi")
print(service2.name) # hi
############
# inherit
class Car:
def __init__(self, sun_roof):
self.sun_roof = sun_roof
def drive(self):
print("Drive")
class Sonata(Car):
name = "sonata"
sonata=Sonata("Sun roof")
sonata.drive()
print(sonata.name, sonata.sun_roof)
# Drive
# sonata Sun roof
############
#############
# Overriding
class Genesis(Car):
def drive(self):
print("Genesis Drive")
genesis=Genesis("SunRoof")
genesis.drive() # Genesis Drive
#############
#############
# Operator overloading
class Pride(Car):
def __add__(self, other):
self.drive()
other.drive()
def __sub__(self, other):
return
def __mul__(self, other):
return
def __truediv__(self, other):
return
pride = Pride("SunRoof")
pride + genesis
# Drive
# Genesis Drive
#############
| class Calculator:
def __init__(self):
self.result = 0
def adder(self, num):
self.result += num
return self.result
cal1 = calculator()
cal2 = calculator()
print(cal1.adder(3))
print(cal1.adder(5))
print(cal2.adder(3))
print(cal2.adder(7))
class Simple:
pass
class Service:
text = 'Hello world'
service = service()
print(service.text)
class Service2:
def __init__(self, name):
self.name = name
service2 = service2('hi')
print(service2.name)
class Car:
def __init__(self, sun_roof):
self.sun_roof = sun_roof
def drive(self):
print('Drive')
class Sonata(Car):
name = 'sonata'
sonata = sonata('Sun roof')
sonata.drive()
print(sonata.name, sonata.sun_roof)
class Genesis(Car):
def drive(self):
print('Genesis Drive')
genesis = genesis('SunRoof')
genesis.drive()
class Pride(Car):
def __add__(self, other):
self.drive()
other.drive()
def __sub__(self, other):
return
def __mul__(self, other):
return
def __truediv__(self, other):
return
pride = pride('SunRoof')
pride + genesis |
# !/usr/bin/env python3
# Author: C.K
# Email: theck17@163.com
# DateTime:2021-09-03 16:21:08
# Description:
class Solution:
def cloneGraph(self, node: 'Node') -> 'Node':
if not node:
return node
m = {node: Node(node.val)}
stack = [node]
while stack:
n = stack.pop()
for neigh in n.neighbors:
if neigh not in m:
stack.append(neigh)
m[neigh] = Node(neigh.val)
m[n].neighbors.append(m[neigh])
return m[node]
if __name__ == "__main__":
pass
| class Solution:
def clone_graph(self, node: 'Node') -> 'Node':
if not node:
return node
m = {node: node(node.val)}
stack = [node]
while stack:
n = stack.pop()
for neigh in n.neighbors:
if neigh not in m:
stack.append(neigh)
m[neigh] = node(neigh.val)
m[n].neighbors.append(m[neigh])
return m[node]
if __name__ == '__main__':
pass |
N=int(input())
A=[int(input()) for i in range(N)]
B={a:i for (i,a) in enumerate(sorted(set(A)))}
for a in A:
print(B[a]) | n = int(input())
a = [int(input()) for i in range(N)]
b = {a: i for (i, a) in enumerate(sorted(set(A)))}
for a in A:
print(B[a]) |
# List of strings/words
words = input().split()
word_one = words[0]
word_two = words[1]
total_sum = 0
shorter_word_length = min(len(word_one), len(word_two))
# Process shorter string
for i in range(shorter_word_length):
word_one_current = word_one[i]
word_two_current = word_two[i]
ch_multiplication = ord(word_one_current) * ord(word_two_current)
total_sum += ch_multiplication
# If the string have different lengths, we have to process characters of the longer one
longer_word_length = max(len(word_one), len(word_two))
for i in range(shorter_word_length, longer_word_length):
if len(word_one) > len(word_two):
current_word_char = word_one[i]
else:
current_word_char = word_two[i]
total_sum += ord(current_word_char)
print(total_sum) | words = input().split()
word_one = words[0]
word_two = words[1]
total_sum = 0
shorter_word_length = min(len(word_one), len(word_two))
for i in range(shorter_word_length):
word_one_current = word_one[i]
word_two_current = word_two[i]
ch_multiplication = ord(word_one_current) * ord(word_two_current)
total_sum += ch_multiplication
longer_word_length = max(len(word_one), len(word_two))
for i in range(shorter_word_length, longer_word_length):
if len(word_one) > len(word_two):
current_word_char = word_one[i]
else:
current_word_char = word_two[i]
total_sum += ord(current_word_char)
print(total_sum) |
def solution(n: int):
answer = 0
i = 1
while i * i < n + 1:
if n % i == 0:
if i == n // i:
answer += i
else:
answer += i + n // i
i += 1
return answer
if __name__ == "__main__":
i = 25
print(solution(i))
| def solution(n: int):
answer = 0
i = 1
while i * i < n + 1:
if n % i == 0:
if i == n // i:
answer += i
else:
answer += i + n // i
i += 1
return answer
if __name__ == '__main__':
i = 25
print(solution(i)) |
qst_deliver_message = 0
qst_deliver_message_to_enemy_lord = 1
qst_raise_troops = 2
qst_escort_lady = 3
qst_deal_with_bandits_at_lords_village = 4
qst_collect_taxes = 5
qst_hunt_down_fugitive = 6
qst_kill_local_merchant = 7
qst_bring_back_runaway_serfs = 8
qst_follow_spy = 9
qst_capture_enemy_hero = 10
qst_lend_companion = 11
qst_collect_debt = 12
qst_incriminate_loyal_commander = 13
qst_meet_spy_in_enemy_town = 14
qst_capture_prisoners = 15
qst_lend_surgeon = 16
qst_follow_army = 17
qst_report_to_army = 18
qst_deliver_cattle_to_army = 19
qst_join_siege_with_army = 20
qst_screen_army = 21
qst_scout_waypoints = 22
qst_rescue_lord_by_replace = 23
qst_deliver_message_to_prisoner_lord = 24
qst_duel_for_lady = 25
qst_duel_courtship_rival = 26
qst_duel_avenge_insult = 27
qst_move_cattle_herd = 28
qst_escort_merchant_caravan = 29
qst_deliver_wine = 30
qst_troublesome_bandits = 31
qst_kidnapped_girl = 32
qst_persuade_lords_to_make_peace = 33
qst_deal_with_looters = 34
qst_deal_with_night_bandits = 35
qst_deliver_grain = 36
qst_deliver_cattle = 37
qst_train_peasants_against_bandits = 38
qst_eliminate_bandits_infesting_village = 39
qst_visit_lady = 40
qst_formal_marriage_proposal = 41
qst_obtain_liege_blessing = 42
qst_wed_betrothed = 43
qst_wed_betrothed_female = 44
qst_join_faction = 45
qst_rebel_against_kingdom = 46
qst_consult_with_minister = 47
qst_organize_feast = 48
qst_resolve_dispute = 49
qst_offer_gift = 50
qst_denounce_lord = 51
qst_intrigue_against_lord = 52
qst_track_down_bandits = 53
qst_track_down_provocateurs = 54
qst_retaliate_for_border_incident = 55
qst_raid_caravan_to_start_war = 56
qst_cause_provocation = 57
qst_rescue_prisoner = 58
qst_destroy_bandit_lair = 59
qst_blank_quest_2 = 60
qst_blank_quest_3 = 61
qst_blank_quest_4 = 62
qst_blank_quest_5 = 63
qst_blank_quest_6 = 64
qst_blank_quest_7 = 65
qst_blank_quest_8 = 66
qst_blank_quest_9 = 67
qst_blank_quest_10 = 68
qst_blank_quest_11 = 69
qst_blank_quest_12 = 70
qst_blank_quest_13 = 71
qst_blank_quest_14 = 72
qst_blank_quest_15 = 73
qst_blank_quest_16 = 74
qst_blank_quest_17 = 75
qst_blank_quest_18 = 76
qst_blank_quest_19 = 77
qst_blank_quest_20 = 78
qst_blank_quest_21 = 79
qst_blank_quest_22 = 80
qst_blank_quest_23 = 81
qst_blank_quest_24 = 82
qst_blank_quest_25 = 83
qst_blank_quest_26 = 84
qst_blank_quest_27 = 85
qst_collect_men = 86
qst_learn_where_merchant_brother_is = 87
qst_save_relative_of_merchant = 88
qst_save_town_from_bandits = 89
qst_quests_end = 90
qsttag_deliver_message = 504403158265495552
qsttag_deliver_message_to_enemy_lord = 504403158265495553
qsttag_raise_troops = 504403158265495554
qsttag_escort_lady = 504403158265495555
qsttag_deal_with_bandits_at_lords_village = 504403158265495556
qsttag_collect_taxes = 504403158265495557
qsttag_hunt_down_fugitive = 504403158265495558
qsttag_kill_local_merchant = 504403158265495559
qsttag_bring_back_runaway_serfs = 504403158265495560
qsttag_follow_spy = 504403158265495561
qsttag_capture_enemy_hero = 504403158265495562
qsttag_lend_companion = 504403158265495563
qsttag_collect_debt = 504403158265495564
qsttag_incriminate_loyal_commander = 504403158265495565
qsttag_meet_spy_in_enemy_town = 504403158265495566
qsttag_capture_prisoners = 504403158265495567
qsttag_lend_surgeon = 504403158265495568
qsttag_follow_army = 504403158265495569
qsttag_report_to_army = 504403158265495570
qsttag_deliver_cattle_to_army = 504403158265495571
qsttag_join_siege_with_army = 504403158265495572
qsttag_screen_army = 504403158265495573
qsttag_scout_waypoints = 504403158265495574
qsttag_rescue_lord_by_replace = 504403158265495575
qsttag_deliver_message_to_prisoner_lord = 504403158265495576
qsttag_duel_for_lady = 504403158265495577
qsttag_duel_courtship_rival = 504403158265495578
qsttag_duel_avenge_insult = 504403158265495579
qsttag_move_cattle_herd = 504403158265495580
qsttag_escort_merchant_caravan = 504403158265495581
qsttag_deliver_wine = 504403158265495582
qsttag_troublesome_bandits = 504403158265495583
qsttag_kidnapped_girl = 504403158265495584
qsttag_persuade_lords_to_make_peace = 504403158265495585
qsttag_deal_with_looters = 504403158265495586
qsttag_deal_with_night_bandits = 504403158265495587
qsttag_deliver_grain = 504403158265495588
qsttag_deliver_cattle = 504403158265495589
qsttag_train_peasants_against_bandits = 504403158265495590
qsttag_eliminate_bandits_infesting_village = 504403158265495591
qsttag_visit_lady = 504403158265495592
qsttag_formal_marriage_proposal = 504403158265495593
qsttag_obtain_liege_blessing = 504403158265495594
qsttag_wed_betrothed = 504403158265495595
qsttag_wed_betrothed_female = 504403158265495596
qsttag_join_faction = 504403158265495597
qsttag_rebel_against_kingdom = 504403158265495598
qsttag_consult_with_minister = 504403158265495599
qsttag_organize_feast = 504403158265495600
qsttag_resolve_dispute = 504403158265495601
qsttag_offer_gift = 504403158265495602
qsttag_denounce_lord = 504403158265495603
qsttag_intrigue_against_lord = 504403158265495604
qsttag_track_down_bandits = 504403158265495605
qsttag_track_down_provocateurs = 504403158265495606
qsttag_retaliate_for_border_incident = 504403158265495607
qsttag_raid_caravan_to_start_war = 504403158265495608
qsttag_cause_provocation = 504403158265495609
qsttag_rescue_prisoner = 504403158265495610
qsttag_destroy_bandit_lair = 504403158265495611
qsttag_blank_quest_2 = 504403158265495612
qsttag_blank_quest_3 = 504403158265495613
qsttag_blank_quest_4 = 504403158265495614
qsttag_blank_quest_5 = 504403158265495615
qsttag_blank_quest_6 = 504403158265495616
qsttag_blank_quest_7 = 504403158265495617
qsttag_blank_quest_8 = 504403158265495618
qsttag_blank_quest_9 = 504403158265495619
qsttag_blank_quest_10 = 504403158265495620
qsttag_blank_quest_11 = 504403158265495621
qsttag_blank_quest_12 = 504403158265495622
qsttag_blank_quest_13 = 504403158265495623
qsttag_blank_quest_14 = 504403158265495624
qsttag_blank_quest_15 = 504403158265495625
qsttag_blank_quest_16 = 504403158265495626
qsttag_blank_quest_17 = 504403158265495627
qsttag_blank_quest_18 = 504403158265495628
qsttag_blank_quest_19 = 504403158265495629
qsttag_blank_quest_20 = 504403158265495630
qsttag_blank_quest_21 = 504403158265495631
qsttag_blank_quest_22 = 504403158265495632
qsttag_blank_quest_23 = 504403158265495633
qsttag_blank_quest_24 = 504403158265495634
qsttag_blank_quest_25 = 504403158265495635
qsttag_blank_quest_26 = 504403158265495636
qsttag_blank_quest_27 = 504403158265495637
qsttag_collect_men = 504403158265495638
qsttag_learn_where_merchant_brother_is = 504403158265495639
qsttag_save_relative_of_merchant = 504403158265495640
qsttag_save_town_from_bandits = 504403158265495641
qsttag_quests_end = 504403158265495642
| qst_deliver_message = 0
qst_deliver_message_to_enemy_lord = 1
qst_raise_troops = 2
qst_escort_lady = 3
qst_deal_with_bandits_at_lords_village = 4
qst_collect_taxes = 5
qst_hunt_down_fugitive = 6
qst_kill_local_merchant = 7
qst_bring_back_runaway_serfs = 8
qst_follow_spy = 9
qst_capture_enemy_hero = 10
qst_lend_companion = 11
qst_collect_debt = 12
qst_incriminate_loyal_commander = 13
qst_meet_spy_in_enemy_town = 14
qst_capture_prisoners = 15
qst_lend_surgeon = 16
qst_follow_army = 17
qst_report_to_army = 18
qst_deliver_cattle_to_army = 19
qst_join_siege_with_army = 20
qst_screen_army = 21
qst_scout_waypoints = 22
qst_rescue_lord_by_replace = 23
qst_deliver_message_to_prisoner_lord = 24
qst_duel_for_lady = 25
qst_duel_courtship_rival = 26
qst_duel_avenge_insult = 27
qst_move_cattle_herd = 28
qst_escort_merchant_caravan = 29
qst_deliver_wine = 30
qst_troublesome_bandits = 31
qst_kidnapped_girl = 32
qst_persuade_lords_to_make_peace = 33
qst_deal_with_looters = 34
qst_deal_with_night_bandits = 35
qst_deliver_grain = 36
qst_deliver_cattle = 37
qst_train_peasants_against_bandits = 38
qst_eliminate_bandits_infesting_village = 39
qst_visit_lady = 40
qst_formal_marriage_proposal = 41
qst_obtain_liege_blessing = 42
qst_wed_betrothed = 43
qst_wed_betrothed_female = 44
qst_join_faction = 45
qst_rebel_against_kingdom = 46
qst_consult_with_minister = 47
qst_organize_feast = 48
qst_resolve_dispute = 49
qst_offer_gift = 50
qst_denounce_lord = 51
qst_intrigue_against_lord = 52
qst_track_down_bandits = 53
qst_track_down_provocateurs = 54
qst_retaliate_for_border_incident = 55
qst_raid_caravan_to_start_war = 56
qst_cause_provocation = 57
qst_rescue_prisoner = 58
qst_destroy_bandit_lair = 59
qst_blank_quest_2 = 60
qst_blank_quest_3 = 61
qst_blank_quest_4 = 62
qst_blank_quest_5 = 63
qst_blank_quest_6 = 64
qst_blank_quest_7 = 65
qst_blank_quest_8 = 66
qst_blank_quest_9 = 67
qst_blank_quest_10 = 68
qst_blank_quest_11 = 69
qst_blank_quest_12 = 70
qst_blank_quest_13 = 71
qst_blank_quest_14 = 72
qst_blank_quest_15 = 73
qst_blank_quest_16 = 74
qst_blank_quest_17 = 75
qst_blank_quest_18 = 76
qst_blank_quest_19 = 77
qst_blank_quest_20 = 78
qst_blank_quest_21 = 79
qst_blank_quest_22 = 80
qst_blank_quest_23 = 81
qst_blank_quest_24 = 82
qst_blank_quest_25 = 83
qst_blank_quest_26 = 84
qst_blank_quest_27 = 85
qst_collect_men = 86
qst_learn_where_merchant_brother_is = 87
qst_save_relative_of_merchant = 88
qst_save_town_from_bandits = 89
qst_quests_end = 90
qsttag_deliver_message = 504403158265495552
qsttag_deliver_message_to_enemy_lord = 504403158265495553
qsttag_raise_troops = 504403158265495554
qsttag_escort_lady = 504403158265495555
qsttag_deal_with_bandits_at_lords_village = 504403158265495556
qsttag_collect_taxes = 504403158265495557
qsttag_hunt_down_fugitive = 504403158265495558
qsttag_kill_local_merchant = 504403158265495559
qsttag_bring_back_runaway_serfs = 504403158265495560
qsttag_follow_spy = 504403158265495561
qsttag_capture_enemy_hero = 504403158265495562
qsttag_lend_companion = 504403158265495563
qsttag_collect_debt = 504403158265495564
qsttag_incriminate_loyal_commander = 504403158265495565
qsttag_meet_spy_in_enemy_town = 504403158265495566
qsttag_capture_prisoners = 504403158265495567
qsttag_lend_surgeon = 504403158265495568
qsttag_follow_army = 504403158265495569
qsttag_report_to_army = 504403158265495570
qsttag_deliver_cattle_to_army = 504403158265495571
qsttag_join_siege_with_army = 504403158265495572
qsttag_screen_army = 504403158265495573
qsttag_scout_waypoints = 504403158265495574
qsttag_rescue_lord_by_replace = 504403158265495575
qsttag_deliver_message_to_prisoner_lord = 504403158265495576
qsttag_duel_for_lady = 504403158265495577
qsttag_duel_courtship_rival = 504403158265495578
qsttag_duel_avenge_insult = 504403158265495579
qsttag_move_cattle_herd = 504403158265495580
qsttag_escort_merchant_caravan = 504403158265495581
qsttag_deliver_wine = 504403158265495582
qsttag_troublesome_bandits = 504403158265495583
qsttag_kidnapped_girl = 504403158265495584
qsttag_persuade_lords_to_make_peace = 504403158265495585
qsttag_deal_with_looters = 504403158265495586
qsttag_deal_with_night_bandits = 504403158265495587
qsttag_deliver_grain = 504403158265495588
qsttag_deliver_cattle = 504403158265495589
qsttag_train_peasants_against_bandits = 504403158265495590
qsttag_eliminate_bandits_infesting_village = 504403158265495591
qsttag_visit_lady = 504403158265495592
qsttag_formal_marriage_proposal = 504403158265495593
qsttag_obtain_liege_blessing = 504403158265495594
qsttag_wed_betrothed = 504403158265495595
qsttag_wed_betrothed_female = 504403158265495596
qsttag_join_faction = 504403158265495597
qsttag_rebel_against_kingdom = 504403158265495598
qsttag_consult_with_minister = 504403158265495599
qsttag_organize_feast = 504403158265495600
qsttag_resolve_dispute = 504403158265495601
qsttag_offer_gift = 504403158265495602
qsttag_denounce_lord = 504403158265495603
qsttag_intrigue_against_lord = 504403158265495604
qsttag_track_down_bandits = 504403158265495605
qsttag_track_down_provocateurs = 504403158265495606
qsttag_retaliate_for_border_incident = 504403158265495607
qsttag_raid_caravan_to_start_war = 504403158265495608
qsttag_cause_provocation = 504403158265495609
qsttag_rescue_prisoner = 504403158265495610
qsttag_destroy_bandit_lair = 504403158265495611
qsttag_blank_quest_2 = 504403158265495612
qsttag_blank_quest_3 = 504403158265495613
qsttag_blank_quest_4 = 504403158265495614
qsttag_blank_quest_5 = 504403158265495615
qsttag_blank_quest_6 = 504403158265495616
qsttag_blank_quest_7 = 504403158265495617
qsttag_blank_quest_8 = 504403158265495618
qsttag_blank_quest_9 = 504403158265495619
qsttag_blank_quest_10 = 504403158265495620
qsttag_blank_quest_11 = 504403158265495621
qsttag_blank_quest_12 = 504403158265495622
qsttag_blank_quest_13 = 504403158265495623
qsttag_blank_quest_14 = 504403158265495624
qsttag_blank_quest_15 = 504403158265495625
qsttag_blank_quest_16 = 504403158265495626
qsttag_blank_quest_17 = 504403158265495627
qsttag_blank_quest_18 = 504403158265495628
qsttag_blank_quest_19 = 504403158265495629
qsttag_blank_quest_20 = 504403158265495630
qsttag_blank_quest_21 = 504403158265495631
qsttag_blank_quest_22 = 504403158265495632
qsttag_blank_quest_23 = 504403158265495633
qsttag_blank_quest_24 = 504403158265495634
qsttag_blank_quest_25 = 504403158265495635
qsttag_blank_quest_26 = 504403158265495636
qsttag_blank_quest_27 = 504403158265495637
qsttag_collect_men = 504403158265495638
qsttag_learn_where_merchant_brother_is = 504403158265495639
qsttag_save_relative_of_merchant = 504403158265495640
qsttag_save_town_from_bandits = 504403158265495641
qsttag_quests_end = 504403158265495642 |
# Aluguel de carros
k= (float(input('Total kilometragem percorrida: ')))
a= (int(input('Total de dias alugado: ')))
kr= (float(input('Valor por kilometro rodado: R$ ')))
ad = (float(input('Valor do dia de aluguel: R$ ')))
tk = k*kr # total de kilometros rodados
ta = a * ad # total dias de aluguel
total = tk + ta
print(f'Total a pagar por {k:.2f} kilometros rodados + {a} dias de aluguel: R$ {total:.2f}') | k = float(input('Total kilometragem percorrida: '))
a = int(input('Total de dias alugado: '))
kr = float(input('Valor por kilometro rodado: R$ '))
ad = float(input('Valor do dia de aluguel: R$ '))
tk = k * kr
ta = a * ad
total = tk + ta
print(f'Total a pagar por {k:.2f} kilometros rodados + {a} dias de aluguel: R$ {total:.2f}') |
# AUTOGENERATED BY NBDEV! DO NOT EDIT!
__all__ = ["index", "modules", "custom_doc_links", "git_url"]
index = {"dimension": "00_core.ipynb",
"reshaped": "00_core.ipynb",
"show": "00_core.ipynb",
"makeThreatenedSquares": "00_core.ipynb",
"defence": "00_core.ipynb",
"attack": "00_core.ipynb",
"fetch": "01_data.ipynb",
"Game": "01_data.ipynb",
"fromGame": "01_data.ipynb",
"games": "01_data.ipynb",
"MoveSequencerResult": "01_data.ipynb",
"makeMoveSequencer": "01_data.ipynb",
"diffReduce": "01_data.ipynb",
"countZeros": "01_data.ipynb",
"makeDiffReduceAnalyzer": "01_data.ipynb",
"zerosDiffReduce": "01_data.ipynb",
"showGameUi": "02_ui.ipynb",
"download": "03_stockfish.ipynb",
"extract": "03_stockfish.ipynb",
"makeEngine": "03_stockfish.ipynb",
"playGame": "03_stockfish.ipynb",
"Processor": "04_processor.ipynb"}
modules = ["core.py",
"data.py",
"ui.py",
"stockfish.py",
"processor.py"]
doc_url = "https://mikhas.github.io/cheviz/"
git_url = "https://github.com/mikhas/cheviz/tree/master/"
def custom_doc_links(name): return None
| __all__ = ['index', 'modules', 'custom_doc_links', 'git_url']
index = {'dimension': '00_core.ipynb', 'reshaped': '00_core.ipynb', 'show': '00_core.ipynb', 'makeThreatenedSquares': '00_core.ipynb', 'defence': '00_core.ipynb', 'attack': '00_core.ipynb', 'fetch': '01_data.ipynb', 'Game': '01_data.ipynb', 'fromGame': '01_data.ipynb', 'games': '01_data.ipynb', 'MoveSequencerResult': '01_data.ipynb', 'makeMoveSequencer': '01_data.ipynb', 'diffReduce': '01_data.ipynb', 'countZeros': '01_data.ipynb', 'makeDiffReduceAnalyzer': '01_data.ipynb', 'zerosDiffReduce': '01_data.ipynb', 'showGameUi': '02_ui.ipynb', 'download': '03_stockfish.ipynb', 'extract': '03_stockfish.ipynb', 'makeEngine': '03_stockfish.ipynb', 'playGame': '03_stockfish.ipynb', 'Processor': '04_processor.ipynb'}
modules = ['core.py', 'data.py', 'ui.py', 'stockfish.py', 'processor.py']
doc_url = 'https://mikhas.github.io/cheviz/'
git_url = 'https://github.com/mikhas/cheviz/tree/master/'
def custom_doc_links(name):
return None |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.