content
stringlengths 7
1.05M
| fixed_cases
stringlengths 1
1.28M
|
---|---|
'''
@author: Sevval MEHDER
Filling one cell: O(1)
Filling all cells: O(2xn) = O(n)
'''
def find_maximum_cost(Y):
values = [[0 for _ in range(2)] for _ in range(len(Y))]
# Go on with adding these 2 options
i = 1
while i < len(Y):
# Put these two options
values[i][0] = max(values[i - 1][0], values[i - 1][1] + Y[i - 1] - 1)
values[i][1] = max(values[i - 1][1] + abs(Y[i] - Y[i - 1]), values[i - 1][0] + Y[i] - 1)
i += 1
#print(values)
return max(values[len(Y) - 1][0], values[len(Y) - 1][1])
def main():
Y = [5, 6, 8, 13, 9]
cost = find_maximum_cost(Y)
print(cost)
# Output: 34
main()
| """
@author: Sevval MEHDER
Filling one cell: O(1)
Filling all cells: O(2xn) = O(n)
"""
def find_maximum_cost(Y):
values = [[0 for _ in range(2)] for _ in range(len(Y))]
i = 1
while i < len(Y):
values[i][0] = max(values[i - 1][0], values[i - 1][1] + Y[i - 1] - 1)
values[i][1] = max(values[i - 1][1] + abs(Y[i] - Y[i - 1]), values[i - 1][0] + Y[i] - 1)
i += 1
return max(values[len(Y) - 1][0], values[len(Y) - 1][1])
def main():
y = [5, 6, 8, 13, 9]
cost = find_maximum_cost(Y)
print(cost)
main() |
def can_build(plat):
return (plat == "android")
def configure(env):
if env["platform"] == "android":
# Amazon dependencies
env.android_add_dependency("compile fileTree(dir: '../../../modules/godotamazon/android/lib/', include: ['*.jar'])")
env.android_add_java_dir("android/src")
env.android_add_res_dir("res")
env.android_add_to_manifest("android/AndroidManifestChunk.xml")
env.android_add_to_permissions("android/AndroidPermissionsChunk.xml")
env.disable_module()
| def can_build(plat):
return plat == 'android'
def configure(env):
if env['platform'] == 'android':
env.android_add_dependency("compile fileTree(dir: '../../../modules/godotamazon/android/lib/', include: ['*.jar'])")
env.android_add_java_dir('android/src')
env.android_add_res_dir('res')
env.android_add_to_manifest('android/AndroidManifestChunk.xml')
env.android_add_to_permissions('android/AndroidPermissionsChunk.xml')
env.disable_module() |
# by Kami Bigdely
# Inline method.
# TODO: Refactor this program to improve its readability.
class Person:
def __init__(self, my_age):
self.age = my_age
self.LEGAL_DRINKING_AGE = 18
def enter_night_club(self, my_age):
if older_than_18_year_old(my_age):
print("Allowed to enter.")
else:
print("Enterance of minors is denited.")
def older_than_18_year_old(self, age):
if age > LEGAL_DRINKING_AGE:
return True
else:
return False
# LEGAL_DRINKING_AGE = 18
person = Person(17.9)
person.enter_night_club(person)
# enter_night_club(person)
| class Person:
def __init__(self, my_age):
self.age = my_age
self.LEGAL_DRINKING_AGE = 18
def enter_night_club(self, my_age):
if older_than_18_year_old(my_age):
print('Allowed to enter.')
else:
print('Enterance of minors is denited.')
def older_than_18_year_old(self, age):
if age > LEGAL_DRINKING_AGE:
return True
else:
return False
person = person(17.9)
person.enter_night_club(person) |
# Copyright (c) 2017 Dustin Doloff
# Licensed under Apache License v2.0
load(
"//assert:assert.bzl",
"assert_equal",
)
load(
"//control_flow:control_flow.bzl",
"while_loop",
)
def run_all_tests():
test_while_loop()
def incr(state):
if type(state) == "dict":
state["incr_calls"] = state.get("incr_calls", 0) + 1
state["value"] += 1
else:
state += 1
return state
def decr(state):
if type(state) == "dict":
state["decr_calls"] = state.get("decr_calls", 0) + 1
state["value"] -= 1
else:
state -= 1
return state
def is_3(state):
if type(state) == "dict":
state["is_3_calls"] = state.get("is_3_calls", 0) + 1
return state["value"] == 3
else:
return state == 3
def test_while_loop():
assert_equal(None, while_loop(fail))
assert_equal(0, while_loop(decr, state = 3))
assert_equal(
{
"incr_calls": 3,
"is_3_calls": 4,
"value": 3,
},
while_loop(incr, is_3, state = {"value": 0}),
)
| load('//assert:assert.bzl', 'assert_equal')
load('//control_flow:control_flow.bzl', 'while_loop')
def run_all_tests():
test_while_loop()
def incr(state):
if type(state) == 'dict':
state['incr_calls'] = state.get('incr_calls', 0) + 1
state['value'] += 1
else:
state += 1
return state
def decr(state):
if type(state) == 'dict':
state['decr_calls'] = state.get('decr_calls', 0) + 1
state['value'] -= 1
else:
state -= 1
return state
def is_3(state):
if type(state) == 'dict':
state['is_3_calls'] = state.get('is_3_calls', 0) + 1
return state['value'] == 3
else:
return state == 3
def test_while_loop():
assert_equal(None, while_loop(fail))
assert_equal(0, while_loop(decr, state=3))
assert_equal({'incr_calls': 3, 'is_3_calls': 4, 'value': 3}, while_loop(incr, is_3, state={'value': 0})) |
fixed_time_entries = [{'stop': '2018-03-05T18:08:21+00:00', 'at': '2018-03-05T18:08:21+00:00', 'duration': 70,
'guid': '68c5136314e9680a54d0a28508139836', 'start': '2018-03-05T18:08:15+00:00', 'id': 1,
'description': 'task-1', 'duronly': False, 'uid': 2488778, 'billable': False, 'wid': 1688309},
{'stop': '2018-03-05T18:08:21+00:00', 'at': '2018-03-05T18:08:21+00:00', 'duration': 6,
'guid': '68c5136314e9680a54d0a28508139836', 'start': '2018-03-05T18:08:15+00:00', 'id': 2,
'description': 'task-2', 'duronly': False, 'uid': 2488778, 'billable': False, 'wid': 1688309},
{'stop': '2018-03-05T18:08:21+00:00', 'at': '2018-03-05T18:08:21+00:00', 'duration': 500,
'guid': '68c5136314e9680a54d0a28508139836', 'start': '2018-03-05T18:08:15+00:00', 'id': 3,
'description': 'task-3', 'duronly': False, 'uid': 2488778, 'billable': False, 'wid': 1688309}]
| fixed_time_entries = [{'stop': '2018-03-05T18:08:21+00:00', 'at': '2018-03-05T18:08:21+00:00', 'duration': 70, 'guid': '68c5136314e9680a54d0a28508139836', 'start': '2018-03-05T18:08:15+00:00', 'id': 1, 'description': 'task-1', 'duronly': False, 'uid': 2488778, 'billable': False, 'wid': 1688309}, {'stop': '2018-03-05T18:08:21+00:00', 'at': '2018-03-05T18:08:21+00:00', 'duration': 6, 'guid': '68c5136314e9680a54d0a28508139836', 'start': '2018-03-05T18:08:15+00:00', 'id': 2, 'description': 'task-2', 'duronly': False, 'uid': 2488778, 'billable': False, 'wid': 1688309}, {'stop': '2018-03-05T18:08:21+00:00', 'at': '2018-03-05T18:08:21+00:00', 'duration': 500, 'guid': '68c5136314e9680a54d0a28508139836', 'start': '2018-03-05T18:08:15+00:00', 'id': 3, 'description': 'task-3', 'duronly': False, 'uid': 2488778, 'billable': False, 'wid': 1688309}] |
# from django.conf.urls import url, include
# from rest_framework import routers
# from planex.site import views
# router = routers.SimpleRouter()
# router.register(r'pages', views.PageViewSet, basename='pages')
# router.register(r'documents', views.DocumentViewSet, basename='documents')
urlpatterns = []
# url(r'^', include(router.urls)),
# url(r'^images/(?P<id>[0-9])/$', views.ImageMetaView.as_view(), name='image_meta'), # URL returning json metadata follows API endpoint conventions
# url(r'^images/(?P<id>[0-9])/serve/$', views.ImageServeView.as_view(), name='images'), # URL from which to serve images direct to browser
| urlpatterns = [] |
def solution(phone_book):
answer = True
phone_book = sorted(phone_book, key=(lambda x: len(x)))
for i, item in enumerate(phone_book):
for j in range(0, i):
if item.find(phone_book[j])==0:
return False
return answer
| def solution(phone_book):
answer = True
phone_book = sorted(phone_book, key=lambda x: len(x))
for (i, item) in enumerate(phone_book):
for j in range(0, i):
if item.find(phone_book[j]) == 0:
return False
return answer |
lst2 = list(map(lambda x: 2 ** x, range(5)))
print(lst2)
for i in list(map(lambda x: x ** 2, lst2)):
print(i, end=" ")
print()
print(list(map(lambda x: 1 if x % 2 == 0 else 0, lst2)))
| lst2 = list(map(lambda x: 2 ** x, range(5)))
print(lst2)
for i in list(map(lambda x: x ** 2, lst2)):
print(i, end=' ')
print()
print(list(map(lambda x: 1 if x % 2 == 0 else 0, lst2))) |
# encoding: UTF-8
LOADING_ERROR = 'Error occurred when loading the config file, please check.'
CONFIG_KEY_MISSING = 'Key missing in the config file, please check.'
DATA_SERVER_CONNECTED = 'Data server connected.'
DATA_SERVER_DISCONNECTED = 'Data server disconnected'
DATA_SERVER_LOGIN = 'Data server login completed.'
DATA_SERVER_LOGOUT = 'Data server logout completed.'
TRADING_SERVER_CONNECTED = 'Trading server connected.'
TRADING_SERVER_DISCONNECTED = 'Trading server disconnected.'
TRADING_SERVER_AUTHENTICATED = 'Trading server authenticated.'
TRADING_SERVER_LOGIN = 'Trading server login completed.'
TRADING_SERVER_LOGOUT = 'Trading server logout completed.'
SETTLEMENT_INFO_CONFIRMED = 'Settlement info confirmed.'
CONTRACT_DATA_RECEIVED = 'Contract data received.' | loading_error = 'Error occurred when loading the config file, please check.'
config_key_missing = 'Key missing in the config file, please check.'
data_server_connected = 'Data server connected.'
data_server_disconnected = 'Data server disconnected'
data_server_login = 'Data server login completed.'
data_server_logout = 'Data server logout completed.'
trading_server_connected = 'Trading server connected.'
trading_server_disconnected = 'Trading server disconnected.'
trading_server_authenticated = 'Trading server authenticated.'
trading_server_login = 'Trading server login completed.'
trading_server_logout = 'Trading server logout completed.'
settlement_info_confirmed = 'Settlement info confirmed.'
contract_data_received = 'Contract data received.' |
GPIO_BASE_PATH = "/sys/class/gpio"
MOTOR_PIN = "13"
PIR_PIN = "12"
DONALD_TRACK = "donald_duck.mp3" | gpio_base_path = '/sys/class/gpio'
motor_pin = '13'
pir_pin = '12'
donald_track = 'donald_duck.mp3' |
#
# @lc app=leetcode id=717 lang=python3
#
# [717] 1-bit and 2-bit Characters
#
# https://leetcode.com/problems/1-bit-and-2-bit-characters/description/
#
# algorithms
# Easy (49.13%)
# Likes: 325
# Dislikes: 844
# Total Accepted: 52.5K
# Total Submissions: 107K
# Testcase Example: '[1,0,0]'
#
# We have two special characters. The first character can be represented by one
# bit 0. The second character can be represented by two bits (10 or 11).
#
# Now given a string represented by several bits. Return whether the last
# character must be a one-bit character or not. The given string will always
# end with a zero.
#
# Example 1:
#
# Input:
# bits = [1, 0, 0]
# Output: True
# Explanation:
# The only way to decode it is two-bit character and one-bit character. So the
# last character is one-bit character.
#
#
#
# Example 2:
#
# Input:
# bits = [1, 1, 1, 0]
# Output: False
# Explanation:
# The only way to decode it is two-bit character and two-bit character. So the
# last character is NOT one-bit character.
#
#
#
# Note:
# 1 .
# bits[i] is always 0 or 1.
#
#
# @lc code=start
class Solution:
def isOneBitCharacter(self, bits: List[int]) -> bool:
i = 0
n = len(bits)
if n<=1:
return True
while i < n:
if bits[i]==0:
i+=1
else:
i+=2
if i==n-1:
return True
return False
# @lc code=end
| class Solution:
def is_one_bit_character(self, bits: List[int]) -> bool:
i = 0
n = len(bits)
if n <= 1:
return True
while i < n:
if bits[i] == 0:
i += 1
else:
i += 2
if i == n - 1:
return True
return False |
ACRONYM = "BSC"
def transcription_factor_regulatory_site(**identifier_properties):
unique_data_string = [
identifier_properties.get("absolutePosition", "NoAbsolutePosition"),
identifier_properties.get("leftEndPosition", "NoLEND"),
identifier_properties.get("rightEndPosition", "NoREND")
]
return unique_data_string
| acronym = 'BSC'
def transcription_factor_regulatory_site(**identifier_properties):
unique_data_string = [identifier_properties.get('absolutePosition', 'NoAbsolutePosition'), identifier_properties.get('leftEndPosition', 'NoLEND'), identifier_properties.get('rightEndPosition', 'NoREND')]
return unique_data_string |
# -*- coding: utf-8 -*-
# @Time : 2019/10/15 0015 16:21
# @Author : Erichym
# @Email : [email protected]
# @File : 520.py
# @Software: PyCharm
class Solution:
def detectCapitalUse(self, word: str) -> bool:
if 97<=ord(word[0])<=122:
for i in range(1,len(word),1):
if ord(word[i])>122 or ord(word[i])<97:
return False
return True
# first alpha is capital
elif len(word)>1:
if 65 <= ord(word[1]) <= 90:
for i in range(2, len(word), 1):
if ord(word[i]) > 90 or ord(word[i]) < 65:
return False
return True
if 97 <= ord(word[1]) <= 122:
for i in range(1, len(word), 1):
if ord(word[i]) > 122 or ord(word[i]) < 97:
return False
return True
else:
return True
def detectCapitalUse2(self, word: str) -> bool:
return word.isupper() or word.islower() or word.istitle()
if __name__=="__main__":
word="G"
so=Solution()
a=so.detectCapitalUse2(word)
print(a)
| class Solution:
def detect_capital_use(self, word: str) -> bool:
if 97 <= ord(word[0]) <= 122:
for i in range(1, len(word), 1):
if ord(word[i]) > 122 or ord(word[i]) < 97:
return False
return True
elif len(word) > 1:
if 65 <= ord(word[1]) <= 90:
for i in range(2, len(word), 1):
if ord(word[i]) > 90 or ord(word[i]) < 65:
return False
return True
if 97 <= ord(word[1]) <= 122:
for i in range(1, len(word), 1):
if ord(word[i]) > 122 or ord(word[i]) < 97:
return False
return True
else:
return True
def detect_capital_use2(self, word: str) -> bool:
return word.isupper() or word.islower() or word.istitle()
if __name__ == '__main__':
word = 'G'
so = solution()
a = so.detectCapitalUse2(word)
print(a) |
def waxs_S_edge_guil(t=1):
dets = [pil300KW]
names = ['sample02', 'sample03', 'sample04', 'sample05', 'sample06', 'sample07', 'sample08', 'sample09', 'sample10', 'sample11', 'sample12']
x = [26500, 21500, 16000, 10500, 5000, 0, -5500, -10500, 16000, -21000, -26500]#, -34000, -41000]
y = [600, 600, 800, 700, 700, 600, 600, 600, 600, 900, 900]#, 700, 800]
energies = np.linspace(2450, 2500, 26)
waxs_arc = [0, 6.5, 13]
for name, xs, ys in zip(names, x, y):
yield from bps.mv(piezo.x, xs)
yield from bps.mv(piezo.y, ys)
yss = np.linspace(ys, ys + 1300, 26)
if int(waxs.arc.position) == 0:
waxs_arc = [0, 6.5, 13]
elif int(waxs.arc.position) == 13:
waxs_arc = [13, 6.5, 0]
if name == 'sample02':
waxs_arc = [6.5, 0]
for wa in waxs_arc:
yield from bps.mv(waxs, wa)
det_exposure_time(t,t)
name_fmt = '{sample}_{energy}eV_wa{wax}'
for e, ysss in zip(energies, yss):
yield from bps.sleep(1)
yield from bps.mv(energy, e)
yield from bps.mv(piezo.y, ysss)
sample_name = name_fmt.format(sample=name, energy=e, wax = wa)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2470)
yield from bps.mv(energy, 2450)
def giwaxs_S_edge_chris(t=1):
dets = [pil300KW]
# names = ['e1_01', 'e1_02', 'e1_03', 'e1_04', 'd1_01', 'd1_02', 'd1_03', 'd1_04', 'd1_05', 'd1_06']
# x = [56000, 45500, 34000, 22000, 11000, 0, -11000, -22500, -34000, -46000]
names = ['d1_07', 'd1_08', 'd1_10', 'd1_11']
x = [55000, 42500, 31000, 19000]
energies = np.arange(2450, 2470, 5).tolist() + np.arange(2470, 2480, 0.25).tolist() + np.arange(2480, 2490, 1).tolist()+ np.arange(2490, 2501, 5).tolist()
waxs_arc = np.linspace(0, 39, 7)
ai0 = 0
for name, xs in zip(names, x):
yield from bps.mv(piezo.x, xs)
yield from bps.mv(piezo.th, ai0)
yield from bps.mv(GV7.open_cmd, 1 )
yield from bps.sleep(1)
yield from bps.mv(GV7.open_cmd, 1 )
yield from bps.sleep(1)
yield from alignement_gisaxs(angle = 0.4)
# yield from bps.mv(att2_9, 'Insert')
yield from bps.mv(GV7.close_cmd, 1 )
yield from bps.sleep(1)
# yield from bps.mv(att2_9, 'Insert')
yield from bps.mv(GV7.close_cmd, 1 )
yield from bps.sleep(1)
ai0 = piezo.th.position
yield from bps.mv(piezo.th, ai0 + 0.7)
xss = np.linspace(xs, xs - 8000, 57)
for wa in waxs_arc:
yield from bps.mv(waxs, wa)
det_exposure_time(t,t)
name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}'
for e, xsss in zip(energies, xss):
yield from bps.mv(energy, e)
yield from bps.sleep(2)
yield from bps.mv(piezo.x, xsss)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, wax = wa, xbpm = '%4.3f'%bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2470)
yield from bps.mv(energy, 2450)
def giwaxs_S_edge_chris_redo(t=1):
dets = [pil300KW]
names = ['a1_02_redo']#, 'sample03', 'sample04', 'sample05', 'sample06', 'sample07', 'sample08', 'sample09', 'sample10', 'sample11', 'sample12']
x = [38000,-6000,-16000, -26000, -38000]#, 21500, 16000, 10500, 5000, 0, -5500, -10500, 16000, -21000, -26500]#, -34000, -41000]
#y = [600]#, 600, 800, 700, 700, 600, 600, 600, 600, 900, 900]#, 700, 800]
energiess = [[2495, 2500], [2495], [2455, 2470, 2495, 2500], [2488, 2490, 2495, 2500], [2495, 2500]]
waxs_arc = np.linspace(0, 39, 7)
ai0 = 0
for name, xs, energies in zip(names, x, energiess):
yield from bps.mv(piezo.x, xs)
yield from bps.mv(piezo.th, ai0)
yield from bps.mv(GV7.open_cmd, 1 )
yield from bps.sleep(1)
yield from bps.mv(GV7.open_cmd, 1 )
yield from bps.sleep(1)
yield from alignement_gisaxs(angle = 0.4)
yield from bps.mv(att2_9, 'Insert')
yield from bps.mv(GV7.close_cmd, 1 )
yield from bps.sleep(1)
yield from bps.mv(att2_9, 'Insert')
yield from bps.mv(GV7.close_cmd, 1 )
yield from bps.sleep(1)
ai0 = piezo.th.position
yield from bps.mv(piezo.th, ai0 + 0.7)
'''
if int(waxs.arc.position) == 0:
waxs_arc = [0, 6.5, 13]
elif int(waxs.arc.position) == 13:
waxs_arc = [13, 6.5, 0]
'''
for wa in waxs_arc:
yield from bps.mv(waxs, wa)
yield from bps.mvr(piezo.x, -500)
det_exposure_time(t,t)
name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}'
for e in energies:
yield from bps.mv(energy, e)
yield from bps.sleep(1)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, wax = wa, xbpm = '%4.3f'%bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2470)
yield from bps.mv(energy, 2450)
def waxs_S_edge_chris_n(t=1):
dets = [pil300KW]
names = ['b2_08', 'b2_09', 'b2_10', 'c2_01', 'c2_02', 'c2_03', 'c2_04', 'c2_05', 'c2_06', 'c2_07', 'c2_08']
x = [41500, 36300, 30900, 25600, 20200, 15200, 9700, 4700, -500, -5900, -11500]
y = [1000, 800, 800, 900, 800, 800, 600, 400, 500, 600, 500]
energies = np.arange(2445, 2470, 5).tolist() + np.arange(2470, 2480, 0.25).tolist() + np.arange(2480, 2490, 1).tolist()+ np.arange(2490, 2501, 5).tolist()
waxs_arc = np.linspace(0, 39, 7)
for name, xs, ys in zip(names, x, y):
yield from bps.mv(piezo.x, xs)
yield from bps.mv(piezo.y, ys)
yss = np.linspace(ys, ys + 1000, 29)
xss = np.array([xs, xs + 500])
yss, xss = np.meshgrid(yss, xss)
yss = yss.ravel()
xss = xss.ravel()
for wa in waxs_arc:
yield from bps.mv(waxs, wa)
det_exposure_time(t,t)
name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}'
for e, xsss, ysss in zip(energies, xss, yss):
yield from bps.mv(energy, e)
yield from bps.sleep(1)
yield from bps.mv(piezo.y, ysss)
yield from bps.mv(piezo.x, xsss)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, wax = wa, xbpm = '%4.3f'%bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2470)
yield from bps.mv(energy, 2450)
dets = [pil300KW]
names = ['EH_static']
x = [-16700]
y = [1000]
energies = [2450, 2470, 2475, 2500]
waxs_arc = np.linspace(0, 39, 7)
for name, xs, ys in zip(names, x, y):
yield from bps.mv(piezo.x, xs)
yield from bps.mv(piezo.y, ys)
for wa in waxs_arc:
yield from bps.mv(waxs, wa)
det_exposure_time(t,t)
name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}'
for e in energies:
yield from bps.mv(energy, e)
yield from bps.sleep(1)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, wax = wa, xbpm = '%4.3f'%bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2470)
yield from bps.mv(energy, 2450)
yield from bps.mv(energy, 2450)
yield from bps.sleep(5)
yield from bps.mv(energy, 2500)
yield from bps.sleep(5)
yield from bps.mv(energy, 2550)
yield from bps.sleep(5)
yield from bps.mv(energy, 2580)
yield from bps.sleep(5)
yield from bps.mv(energy, 2610)
yield from bps.sleep(5)
yield from bps.mv(energy, 2640)
yield from bps.sleep(5)
yield from bps.mv(energy, 2660)
yield from bps.sleep(5)
yield from bps.mv(energy, 2680)
yield from bps.sleep(5)
yield from bps.mv(energy, 2700)
yield from bps.sleep(5)
yield from bps.mv(energy, 2720)
yield from bps.sleep(5)
yield from bps.mv(energy, 2740)
yield from bps.sleep(5)
yield from bps.mv(energy, 2760)
yield from bps.sleep(5)
yield from bps.mv(energy, 2780)
yield from bps.sleep(5)
yield from bps.mv(energy, 2800)
yield from bps.sleep(5)
dets = [pil300KW]
names = ['c2_04', 'c2_06', 'c2_08']
x = [10600, 400, -10400]
y = [600, 500, 500]
energies = np.arange(2810, 2820, 5).tolist() + np.arange(2820, 2840, 0.5).tolist() + np.arange(2840, 2850, 1).tolist()
waxs_arc = np.linspace(0, 36, 5)
for name, xs, ys in zip(names, x, y):
yield from bps.mv(piezo.x, xs)
yield from bps.mv(piezo.y, ys)
yss = np.linspace(ys, ys + 1000, 52)
for wa in waxs_arc:
yield from bps.mv(waxs, wa)
det_exposure_time(t,t)
name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}'
for e, ysss in zip(energies, yss):
yield from bps.mv(energy, e)
yield from bps.sleep(1)
yield from bps.mv(piezo.y, ysss)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, wax = wa, xbpm = '%4.3f'%bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2830)
yield from bps.sleep(5)
yield from bps.mv(energy, 2810)
yield from bps.sleep(5)
def waxs_S_edge_chris_night(t=1):
dets = [pil300KW]
energies = np.arange(2445, 2470, 5).tolist() + np.arange(2470, 2480, 0.25).tolist() + np.arange(2480, 2490, 1).tolist()+ np.arange(2490, 2501, 5).tolist()
waxs_arc = np.linspace(0, 39, 7)
yield from bps.mv(stage.th, 0)
yield from bps.mv(stage.y, 0)
names = ['e2_01', 'e2_02', 'e2_03', 'e2_04', 'b2_04', 'b2_08', 'd2_01', 'd2_02', 'd2_03',
'd2_04', 'd2_05', 'd2_06', 'd2_07', 'd2_08']
x = [41600, 35800, 29400, 23500, 6500, 1200, -4500, -9800,-15200,-21000,-26700,-32000,-37200,-42800,]
y = [-4300, -4300, -4100, -4000, -4200,-4200, -4300, -4200, -4200, -4300, -4300, -4200, -4100, -4300, ]
for name, xs, ys in zip(names, x, y):
yield from bps.mv(piezo.x, xs)
yield from bps.mv(piezo.y, ys)
yss = np.linspace(ys, ys + 1000, 29)
xss = np.array([xs, xs + 500])
yss, xss = np.meshgrid(yss, xss)
yss = yss.ravel()
xss = xss.ravel()
for wa in waxs_arc:
yield from bps.mv(waxs, wa)
det_exposure_time(t,t)
name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}'
for e, xsss, ysss in zip(energies, xss, yss):
yield from bps.mv(energy, e)
yield from bps.sleep(1)
yield from bps.mv(piezo.y, ysss)
yield from bps.mv(piezo.x, xsss)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, wax = wa, xbpm = '%4.3f'%bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2470)
yield from bps.mv(energy, 2450)
yield from bps.mv(stage.th, 1)
yield from bps.mv(stage.y, -8)
names = ['d2_10', 'd2_11']
x = [-15700, -10200]
y = [-8800, -8800]
for name, xs, ys in zip(names, x, y):
yield from bps.mv(piezo.x, xs)
yield from bps.mv(piezo.y, ys)
yss = np.linspace(ys, ys + 1000, 29)
xss = np.array([xs, xs + 500])
yss, xss = np.meshgrid(yss, xss)
yss = yss.ravel()
xss = xss.ravel()
for wa in waxs_arc:
yield from bps.mv(waxs, wa)
det_exposure_time(t,t)
name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}'
for e, xsss, ysss in zip(energies, xss, yss):
yield from bps.mv(energy, e)
yield from bps.sleep(1)
yield from bps.mv(piezo.y, ysss)
yield from bps.mv(piezo.x, xsss)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, wax = wa, xbpm = '%4.3f'%bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2470)
yield from bps.mv(energy, 2450)
yield from bps.mv(energy, 2450)
yield from bps.sleep(5)
yield from bps.mv(energy, 2500)
yield from bps.sleep(5)
yield from bps.mv(energy, 2550)
yield from bps.sleep(5)
yield from bps.mv(energy, 2580)
yield from bps.sleep(5)
yield from bps.mv(energy, 2610)
yield from bps.sleep(5)
yield from bps.mv(energy, 2640)
yield from bps.sleep(5)
yield from bps.mv(energy, 2660)
yield from bps.sleep(5)
yield from bps.mv(energy, 2680)
yield from bps.sleep(5)
yield from bps.mv(energy, 2700)
yield from bps.sleep(5)
yield from bps.mv(energy, 2720)
yield from bps.sleep(5)
yield from bps.mv(energy, 2740)
yield from bps.sleep(5)
yield from bps.mv(energy, 2760)
yield from bps.sleep(5)
yield from bps.mv(energy, 2780)
yield from bps.sleep(5)
yield from bps.mv(energy, 2800)
yield from bps.sleep(5)
dets = [pil300KW]
yield from bps.mv(stage.th, 0)
yield from bps.mv(stage.y, 0)
names = ['b2_01', 'b2_02', 'b2_04', 'b2_08']
x = [17800, 12200, 6750, 1450]
y = [-4100, -4200,-4200,-4200]
energies = np.arange(2810, 2820, 5).tolist() + np.arange(2820, 2825, 1).tolist() + np.arange(2825, 2835, 0.25).tolist() + np.arange(2835, 2840, 0.5).tolist() + np.arange(2840, 2850, 1).tolist()
waxs_arc = np.linspace(0, 39, 7)
for name, xs, ys in zip(names, x, y):
yield from bps.mv(piezo.x, xs)
yield from bps.mv(piezo.y, ys)
yss = np.linspace(ys, ys + 1000, 29)
xss = np.array([xs, xs + 500])
yss, xss = np.meshgrid(yss, xss)
yss = yss.ravel()
xss = xss.ravel()
for wa in waxs_arc:
yield from bps.mv(waxs, wa)
det_exposure_time(t,t)
name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}'
for e, xsss, ysss in zip(energies, xss, yss):
yield from bps.mv(energy, e)
yield from bps.sleep(1)
yield from bps.mv(piezo.y, ysss)
yield from bps.mv(piezo.x, xsss)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, wax = wa, xbpm = '%4.3f'%bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2830)
yield from bps.sleep(2)
yield from bps.mv(energy, 2810)
yield from bps.sleep(2)
def nexafs_90deg_McNeil(t=1):
dets = [pil300KW]
energies = np.arange(2445, 2470, 5).tolist() + np.arange(2470, 2480, 0.25).tolist() + np.arange(2480, 2490, 1).tolist()+ np.arange(2490, 2501, 5).tolist()
waxs_arc = [52.5]
ai = [0.7, 20, 55]
names = ['D1_06']
for name in names:
det_exposure_time(t,t)
name_fmt = 'nexafs_vert_{sample}_{energy}eV_angle{ai}_bpm{xbpm}'
ai0 = prs.position
for ais in ai:
yield from bps.mv(prs, ai0-ais)
yield from bps.mvr(piezo.y, 100)
for e in energies:
yield from bps.mv(energy, e)
yield from bps.sleep(1)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, ai ='%2.2d'%ais, xbpm = '%4.3f'%bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2470)
yield from bps.mv(energy, 2450)
def giwaxs_vert_S_edge_McNeil(t=1):
dets = [pil300KW]
names = ['D1_06']
energies = np.arange(2445, 2470, 5).tolist() + np.arange(2470, 2480, 0.25).tolist() + np.arange(2480, 2490, 1).tolist()+ np.arange(2490, 2501, 5).tolist()
waxs_arc = [4, 10.5, 17]
dets = [pil300KW]
for name in names:
for i, wa in enumerate(waxs_arc):
if i==0:
print('wa=4deg')
else:
yield from bps.mv(waxs, wa)
name_fmt = 'GIWAXS_90deg_{sample}_{energy}eV_ai0.7_wa{wax}_bpm{xbpm}'
for e in energies:
yield from bps.mv(energy, e)
yield from bps.sleep(1)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f'%e, wax = wa, xbpm = '%4.3f'%bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2470)
yield from bps.mv(energy, 2450) | def waxs_s_edge_guil(t=1):
dets = [pil300KW]
names = ['sample02', 'sample03', 'sample04', 'sample05', 'sample06', 'sample07', 'sample08', 'sample09', 'sample10', 'sample11', 'sample12']
x = [26500, 21500, 16000, 10500, 5000, 0, -5500, -10500, 16000, -21000, -26500]
y = [600, 600, 800, 700, 700, 600, 600, 600, 600, 900, 900]
energies = np.linspace(2450, 2500, 26)
waxs_arc = [0, 6.5, 13]
for (name, xs, ys) in zip(names, x, y):
yield from bps.mv(piezo.x, xs)
yield from bps.mv(piezo.y, ys)
yss = np.linspace(ys, ys + 1300, 26)
if int(waxs.arc.position) == 0:
waxs_arc = [0, 6.5, 13]
elif int(waxs.arc.position) == 13:
waxs_arc = [13, 6.5, 0]
if name == 'sample02':
waxs_arc = [6.5, 0]
for wa in waxs_arc:
yield from bps.mv(waxs, wa)
det_exposure_time(t, t)
name_fmt = '{sample}_{energy}eV_wa{wax}'
for (e, ysss) in zip(energies, yss):
yield from bps.sleep(1)
yield from bps.mv(energy, e)
yield from bps.mv(piezo.y, ysss)
sample_name = name_fmt.format(sample=name, energy=e, wax=wa)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2470)
yield from bps.mv(energy, 2450)
def giwaxs_s_edge_chris(t=1):
dets = [pil300KW]
names = ['d1_07', 'd1_08', 'd1_10', 'd1_11']
x = [55000, 42500, 31000, 19000]
energies = np.arange(2450, 2470, 5).tolist() + np.arange(2470, 2480, 0.25).tolist() + np.arange(2480, 2490, 1).tolist() + np.arange(2490, 2501, 5).tolist()
waxs_arc = np.linspace(0, 39, 7)
ai0 = 0
for (name, xs) in zip(names, x):
yield from bps.mv(piezo.x, xs)
yield from bps.mv(piezo.th, ai0)
yield from bps.mv(GV7.open_cmd, 1)
yield from bps.sleep(1)
yield from bps.mv(GV7.open_cmd, 1)
yield from bps.sleep(1)
yield from alignement_gisaxs(angle=0.4)
yield from bps.mv(GV7.close_cmd, 1)
yield from bps.sleep(1)
yield from bps.mv(GV7.close_cmd, 1)
yield from bps.sleep(1)
ai0 = piezo.th.position
yield from bps.mv(piezo.th, ai0 + 0.7)
xss = np.linspace(xs, xs - 8000, 57)
for wa in waxs_arc:
yield from bps.mv(waxs, wa)
det_exposure_time(t, t)
name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}'
for (e, xsss) in zip(energies, xss):
yield from bps.mv(energy, e)
yield from bps.sleep(2)
yield from bps.mv(piezo.x, xsss)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f' % e, wax=wa, xbpm='%4.3f' % bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2470)
yield from bps.mv(energy, 2450)
def giwaxs_s_edge_chris_redo(t=1):
dets = [pil300KW]
names = ['a1_02_redo']
x = [38000, -6000, -16000, -26000, -38000]
energiess = [[2495, 2500], [2495], [2455, 2470, 2495, 2500], [2488, 2490, 2495, 2500], [2495, 2500]]
waxs_arc = np.linspace(0, 39, 7)
ai0 = 0
for (name, xs, energies) in zip(names, x, energiess):
yield from bps.mv(piezo.x, xs)
yield from bps.mv(piezo.th, ai0)
yield from bps.mv(GV7.open_cmd, 1)
yield from bps.sleep(1)
yield from bps.mv(GV7.open_cmd, 1)
yield from bps.sleep(1)
yield from alignement_gisaxs(angle=0.4)
yield from bps.mv(att2_9, 'Insert')
yield from bps.mv(GV7.close_cmd, 1)
yield from bps.sleep(1)
yield from bps.mv(att2_9, 'Insert')
yield from bps.mv(GV7.close_cmd, 1)
yield from bps.sleep(1)
ai0 = piezo.th.position
yield from bps.mv(piezo.th, ai0 + 0.7)
'\n if int(waxs.arc.position) == 0:\n waxs_arc = [0, 6.5, 13]\n elif int(waxs.arc.position) == 13:\n waxs_arc = [13, 6.5, 0]\n '
for wa in waxs_arc:
yield from bps.mv(waxs, wa)
yield from bps.mvr(piezo.x, -500)
det_exposure_time(t, t)
name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}'
for e in energies:
yield from bps.mv(energy, e)
yield from bps.sleep(1)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f' % e, wax=wa, xbpm='%4.3f' % bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2470)
yield from bps.mv(energy, 2450)
def waxs_s_edge_chris_n(t=1):
dets = [pil300KW]
names = ['b2_08', 'b2_09', 'b2_10', 'c2_01', 'c2_02', 'c2_03', 'c2_04', 'c2_05', 'c2_06', 'c2_07', 'c2_08']
x = [41500, 36300, 30900, 25600, 20200, 15200, 9700, 4700, -500, -5900, -11500]
y = [1000, 800, 800, 900, 800, 800, 600, 400, 500, 600, 500]
energies = np.arange(2445, 2470, 5).tolist() + np.arange(2470, 2480, 0.25).tolist() + np.arange(2480, 2490, 1).tolist() + np.arange(2490, 2501, 5).tolist()
waxs_arc = np.linspace(0, 39, 7)
for (name, xs, ys) in zip(names, x, y):
yield from bps.mv(piezo.x, xs)
yield from bps.mv(piezo.y, ys)
yss = np.linspace(ys, ys + 1000, 29)
xss = np.array([xs, xs + 500])
(yss, xss) = np.meshgrid(yss, xss)
yss = yss.ravel()
xss = xss.ravel()
for wa in waxs_arc:
yield from bps.mv(waxs, wa)
det_exposure_time(t, t)
name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}'
for (e, xsss, ysss) in zip(energies, xss, yss):
yield from bps.mv(energy, e)
yield from bps.sleep(1)
yield from bps.mv(piezo.y, ysss)
yield from bps.mv(piezo.x, xsss)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f' % e, wax=wa, xbpm='%4.3f' % bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2470)
yield from bps.mv(energy, 2450)
dets = [pil300KW]
names = ['EH_static']
x = [-16700]
y = [1000]
energies = [2450, 2470, 2475, 2500]
waxs_arc = np.linspace(0, 39, 7)
for (name, xs, ys) in zip(names, x, y):
yield from bps.mv(piezo.x, xs)
yield from bps.mv(piezo.y, ys)
for wa in waxs_arc:
yield from bps.mv(waxs, wa)
det_exposure_time(t, t)
name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}'
for e in energies:
yield from bps.mv(energy, e)
yield from bps.sleep(1)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f' % e, wax=wa, xbpm='%4.3f' % bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2470)
yield from bps.mv(energy, 2450)
yield from bps.mv(energy, 2450)
yield from bps.sleep(5)
yield from bps.mv(energy, 2500)
yield from bps.sleep(5)
yield from bps.mv(energy, 2550)
yield from bps.sleep(5)
yield from bps.mv(energy, 2580)
yield from bps.sleep(5)
yield from bps.mv(energy, 2610)
yield from bps.sleep(5)
yield from bps.mv(energy, 2640)
yield from bps.sleep(5)
yield from bps.mv(energy, 2660)
yield from bps.sleep(5)
yield from bps.mv(energy, 2680)
yield from bps.sleep(5)
yield from bps.mv(energy, 2700)
yield from bps.sleep(5)
yield from bps.mv(energy, 2720)
yield from bps.sleep(5)
yield from bps.mv(energy, 2740)
yield from bps.sleep(5)
yield from bps.mv(energy, 2760)
yield from bps.sleep(5)
yield from bps.mv(energy, 2780)
yield from bps.sleep(5)
yield from bps.mv(energy, 2800)
yield from bps.sleep(5)
dets = [pil300KW]
names = ['c2_04', 'c2_06', 'c2_08']
x = [10600, 400, -10400]
y = [600, 500, 500]
energies = np.arange(2810, 2820, 5).tolist() + np.arange(2820, 2840, 0.5).tolist() + np.arange(2840, 2850, 1).tolist()
waxs_arc = np.linspace(0, 36, 5)
for (name, xs, ys) in zip(names, x, y):
yield from bps.mv(piezo.x, xs)
yield from bps.mv(piezo.y, ys)
yss = np.linspace(ys, ys + 1000, 52)
for wa in waxs_arc:
yield from bps.mv(waxs, wa)
det_exposure_time(t, t)
name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}'
for (e, ysss) in zip(energies, yss):
yield from bps.mv(energy, e)
yield from bps.sleep(1)
yield from bps.mv(piezo.y, ysss)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f' % e, wax=wa, xbpm='%4.3f' % bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2830)
yield from bps.sleep(5)
yield from bps.mv(energy, 2810)
yield from bps.sleep(5)
def waxs_s_edge_chris_night(t=1):
dets = [pil300KW]
energies = np.arange(2445, 2470, 5).tolist() + np.arange(2470, 2480, 0.25).tolist() + np.arange(2480, 2490, 1).tolist() + np.arange(2490, 2501, 5).tolist()
waxs_arc = np.linspace(0, 39, 7)
yield from bps.mv(stage.th, 0)
yield from bps.mv(stage.y, 0)
names = ['e2_01', 'e2_02', 'e2_03', 'e2_04', 'b2_04', 'b2_08', 'd2_01', 'd2_02', 'd2_03', 'd2_04', 'd2_05', 'd2_06', 'd2_07', 'd2_08']
x = [41600, 35800, 29400, 23500, 6500, 1200, -4500, -9800, -15200, -21000, -26700, -32000, -37200, -42800]
y = [-4300, -4300, -4100, -4000, -4200, -4200, -4300, -4200, -4200, -4300, -4300, -4200, -4100, -4300]
for (name, xs, ys) in zip(names, x, y):
yield from bps.mv(piezo.x, xs)
yield from bps.mv(piezo.y, ys)
yss = np.linspace(ys, ys + 1000, 29)
xss = np.array([xs, xs + 500])
(yss, xss) = np.meshgrid(yss, xss)
yss = yss.ravel()
xss = xss.ravel()
for wa in waxs_arc:
yield from bps.mv(waxs, wa)
det_exposure_time(t, t)
name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}'
for (e, xsss, ysss) in zip(energies, xss, yss):
yield from bps.mv(energy, e)
yield from bps.sleep(1)
yield from bps.mv(piezo.y, ysss)
yield from bps.mv(piezo.x, xsss)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f' % e, wax=wa, xbpm='%4.3f' % bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2470)
yield from bps.mv(energy, 2450)
yield from bps.mv(stage.th, 1)
yield from bps.mv(stage.y, -8)
names = ['d2_10', 'd2_11']
x = [-15700, -10200]
y = [-8800, -8800]
for (name, xs, ys) in zip(names, x, y):
yield from bps.mv(piezo.x, xs)
yield from bps.mv(piezo.y, ys)
yss = np.linspace(ys, ys + 1000, 29)
xss = np.array([xs, xs + 500])
(yss, xss) = np.meshgrid(yss, xss)
yss = yss.ravel()
xss = xss.ravel()
for wa in waxs_arc:
yield from bps.mv(waxs, wa)
det_exposure_time(t, t)
name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}'
for (e, xsss, ysss) in zip(energies, xss, yss):
yield from bps.mv(energy, e)
yield from bps.sleep(1)
yield from bps.mv(piezo.y, ysss)
yield from bps.mv(piezo.x, xsss)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f' % e, wax=wa, xbpm='%4.3f' % bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2470)
yield from bps.mv(energy, 2450)
yield from bps.mv(energy, 2450)
yield from bps.sleep(5)
yield from bps.mv(energy, 2500)
yield from bps.sleep(5)
yield from bps.mv(energy, 2550)
yield from bps.sleep(5)
yield from bps.mv(energy, 2580)
yield from bps.sleep(5)
yield from bps.mv(energy, 2610)
yield from bps.sleep(5)
yield from bps.mv(energy, 2640)
yield from bps.sleep(5)
yield from bps.mv(energy, 2660)
yield from bps.sleep(5)
yield from bps.mv(energy, 2680)
yield from bps.sleep(5)
yield from bps.mv(energy, 2700)
yield from bps.sleep(5)
yield from bps.mv(energy, 2720)
yield from bps.sleep(5)
yield from bps.mv(energy, 2740)
yield from bps.sleep(5)
yield from bps.mv(energy, 2760)
yield from bps.sleep(5)
yield from bps.mv(energy, 2780)
yield from bps.sleep(5)
yield from bps.mv(energy, 2800)
yield from bps.sleep(5)
dets = [pil300KW]
yield from bps.mv(stage.th, 0)
yield from bps.mv(stage.y, 0)
names = ['b2_01', 'b2_02', 'b2_04', 'b2_08']
x = [17800, 12200, 6750, 1450]
y = [-4100, -4200, -4200, -4200]
energies = np.arange(2810, 2820, 5).tolist() + np.arange(2820, 2825, 1).tolist() + np.arange(2825, 2835, 0.25).tolist() + np.arange(2835, 2840, 0.5).tolist() + np.arange(2840, 2850, 1).tolist()
waxs_arc = np.linspace(0, 39, 7)
for (name, xs, ys) in zip(names, x, y):
yield from bps.mv(piezo.x, xs)
yield from bps.mv(piezo.y, ys)
yss = np.linspace(ys, ys + 1000, 29)
xss = np.array([xs, xs + 500])
(yss, xss) = np.meshgrid(yss, xss)
yss = yss.ravel()
xss = xss.ravel()
for wa in waxs_arc:
yield from bps.mv(waxs, wa)
det_exposure_time(t, t)
name_fmt = '{sample}_{energy}eV_wa{wax}_bpm{xbpm}'
for (e, xsss, ysss) in zip(energies, xss, yss):
yield from bps.mv(energy, e)
yield from bps.sleep(1)
yield from bps.mv(piezo.y, ysss)
yield from bps.mv(piezo.x, xsss)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f' % e, wax=wa, xbpm='%4.3f' % bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2830)
yield from bps.sleep(2)
yield from bps.mv(energy, 2810)
yield from bps.sleep(2)
def nexafs_90deg__mc_neil(t=1):
dets = [pil300KW]
energies = np.arange(2445, 2470, 5).tolist() + np.arange(2470, 2480, 0.25).tolist() + np.arange(2480, 2490, 1).tolist() + np.arange(2490, 2501, 5).tolist()
waxs_arc = [52.5]
ai = [0.7, 20, 55]
names = ['D1_06']
for name in names:
det_exposure_time(t, t)
name_fmt = 'nexafs_vert_{sample}_{energy}eV_angle{ai}_bpm{xbpm}'
ai0 = prs.position
for ais in ai:
yield from bps.mv(prs, ai0 - ais)
yield from bps.mvr(piezo.y, 100)
for e in energies:
yield from bps.mv(energy, e)
yield from bps.sleep(1)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f' % e, ai='%2.2d' % ais, xbpm='%4.3f' % bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2470)
yield from bps.mv(energy, 2450)
def giwaxs_vert_s_edge__mc_neil(t=1):
dets = [pil300KW]
names = ['D1_06']
energies = np.arange(2445, 2470, 5).tolist() + np.arange(2470, 2480, 0.25).tolist() + np.arange(2480, 2490, 1).tolist() + np.arange(2490, 2501, 5).tolist()
waxs_arc = [4, 10.5, 17]
dets = [pil300KW]
for name in names:
for (i, wa) in enumerate(waxs_arc):
if i == 0:
print('wa=4deg')
else:
yield from bps.mv(waxs, wa)
name_fmt = 'GIWAXS_90deg_{sample}_{energy}eV_ai0.7_wa{wax}_bpm{xbpm}'
for e in energies:
yield from bps.mv(energy, e)
yield from bps.sleep(1)
bpm = xbpm2.sumX.value
sample_name = name_fmt.format(sample=name, energy='%6.2f' % e, wax=wa, xbpm='%4.3f' % bpm)
sample_id(user_name='GF', sample_name=sample_name)
print(f'\n\t=== Sample: {sample_name} ===\n')
yield from bp.count(dets, num=1)
yield from bps.mv(energy, 2470)
yield from bps.mv(energy, 2450) |
class ThePhantomMenace:
def find(self, doors, droids):
greatest_min = -1
best_door = doors[0]
for idx, door in enumerate(doors):
greatest_distance = 9999
for droid in droids:
distance = abs(droid - door)
if distance < greatest_distance:
greatest_distance = distance
if greatest_distance > greatest_min:
greatest_min = greatest_distance
return greatest_min
| class Thephantommenace:
def find(self, doors, droids):
greatest_min = -1
best_door = doors[0]
for (idx, door) in enumerate(doors):
greatest_distance = 9999
for droid in droids:
distance = abs(droid - door)
if distance < greatest_distance:
greatest_distance = distance
if greatest_distance > greatest_min:
greatest_min = greatest_distance
return greatest_min |
def get_index_of(sequence, item):
for i in range(len(sequence)):
if sequence[i] == item:
return i
numbers = [0, 1, 1, 2, 3, 5, 8, 13, 21, 34]
thirteenIndex = get_index_of(numbers, 13)
print("13 is at:", thirteenIndex)
| def get_index_of(sequence, item):
for i in range(len(sequence)):
if sequence[i] == item:
return i
numbers = [0, 1, 1, 2, 3, 5, 8, 13, 21, 34]
thirteen_index = get_index_of(numbers, 13)
print('13 is at:', thirteenIndex) |
num1 =100
num2 = 200
num3 = 300
num5 =500
| num1 = 100
num2 = 200
num3 = 300
num5 = 500 |
# pw2wannier stores the k index in 4 digits, which crashes computations on grids larger than 9999. This fixes it.
f = open("silicon.amn")
out = open("silicon.amn.new", "w")
out.write(f.readline())
out.write(f.readline())
for line in f:
line = line[0:10] + " " + line[10:]
out.write(line)
f = open("silicon.mmn")
out = open("silicon.mmn.new", "w")
out.write(f.readline())
out.write(f.readline())
i = 0
for line in f:
if ((i % 17) == 0):
out.write(line[0:5] + " " + line[5:])
else:
out.write(line)
i = i+1
f = open("silicon.eig")
out = open("silicon.eig.new", "w")
i = 0
for line in f:
line = line[0:5] + " " + line[5:]
out.write(line)
| f = open('silicon.amn')
out = open('silicon.amn.new', 'w')
out.write(f.readline())
out.write(f.readline())
for line in f:
line = line[0:10] + ' ' + line[10:]
out.write(line)
f = open('silicon.mmn')
out = open('silicon.mmn.new', 'w')
out.write(f.readline())
out.write(f.readline())
i = 0
for line in f:
if i % 17 == 0:
out.write(line[0:5] + ' ' + line[5:])
else:
out.write(line)
i = i + 1
f = open('silicon.eig')
out = open('silicon.eig.new', 'w')
i = 0
for line in f:
line = line[0:5] + ' ' + line[5:]
out.write(line) |
# Admin specfic links
ADMIN_HANDLE = "@kwokyto"
# Bot settings
NUMBER_TO_NOTIFY = 5
NUMBER_TO_BUMP = 5
# Messages sent to the user
INVALID_FORMAT_MESSAGE = "Simi? I can only read text, don't send me anything else."
NO_COMMAND_MESSAGE = "What are you saying?? Send a proper command lah please."
START_MESSAGE = "Harlo ah! Easy peasy, /join to join queue, or /help if you still blur."
HELP_MESSAGE = "Aiyo ok ok, these are what you can use:" +\
"\n /start - Display start message" +\
"\n /help - Display help message with available commands" +\
"\n /join - Join the queue" +\
"\n /leave - Leave the queue" +\
"\n /howlong - Get your position and queue length" +\
"\n\nStill don't know ah? Aish ok message me here: " + ADMIN_HANDLE
IN_QUEUE_MESSAGE = "Tsk! You are already in the queue lah!"
JOIN_SUCCESS_MESSAGE = "See got queue then happy happy just join right? Ok ok I put you in."
YOUR_TURN_MESSAGE = "Eh eh its your turn already, hurry up lah can or not?"
NOT_IN_QUEUE_MESSAGE = "Woi... You are not in the queue yet leh!"
LEAVE_SUCCESS_MESSAGE = "You think this one game is it? Join queue then leave... Nevermind, take you out of the queue already."
POSITION_MESSAGE = "How long more ah? Now in front of you got "
QUEUE_LENGTH_MESSAGE = " people. Then, the whole queue total got "
EMPTY_QUEUE_MESSAGE = "Nobody in the queue lah what are you doing??"
NEXT_SUCCESS_MESSAGE = "Ok done, next person is "
COME_NOW_MESSAGE = "Oi! Quick come, it's almost you liao. Number of people in front of you: "
BUMP_SUCCESS_MESSAGE = "Ok liao, that late person got bumped down already. Next person in line is "
INVALID_COMMAND_MESSAGE= "You think I graduated from Harvard is it? Don't know what you are telling me to do lah!"
USELESS_BUMP_MESSAGE = "Only 1 person in the queue, you want to bump for what?"
BUMPEE_MESSAGE = "See lah, tell you come don't want to come. Too late liao, you got bumped down the queue. Use /howlong to check your position."
UNDER_MAINTENANCE_MESSAGE = "Sorry, the bot is currently under maintenance. Do hang tight for more updates, or contact " + ADMIN_HANDLE | admin_handle = '@kwokyto'
number_to_notify = 5
number_to_bump = 5
invalid_format_message = "Simi? I can only read text, don't send me anything else."
no_command_message = 'What are you saying?? Send a proper command lah please.'
start_message = 'Harlo ah! Easy peasy, /join to join queue, or /help if you still blur.'
help_message = 'Aiyo ok ok, these are what you can use:' + '\n /start - Display start message' + '\n /help - Display help message with available commands' + '\n /join - Join the queue' + '\n /leave - Leave the queue' + '\n /howlong - Get your position and queue length' + "\n\nStill don't know ah? Aish ok message me here: " + ADMIN_HANDLE
in_queue_message = 'Tsk! You are already in the queue lah!'
join_success_message = 'See got queue then happy happy just join right? Ok ok I put you in.'
your_turn_message = 'Eh eh its your turn already, hurry up lah can or not?'
not_in_queue_message = 'Woi... You are not in the queue yet leh!'
leave_success_message = 'You think this one game is it? Join queue then leave... Nevermind, take you out of the queue already.'
position_message = 'How long more ah? Now in front of you got '
queue_length_message = ' people. Then, the whole queue total got '
empty_queue_message = 'Nobody in the queue lah what are you doing??'
next_success_message = 'Ok done, next person is '
come_now_message = "Oi! Quick come, it's almost you liao. Number of people in front of you: "
bump_success_message = 'Ok liao, that late person got bumped down already. Next person in line is '
invalid_command_message = "You think I graduated from Harvard is it? Don't know what you are telling me to do lah!"
useless_bump_message = 'Only 1 person in the queue, you want to bump for what?'
bumpee_message = "See lah, tell you come don't want to come. Too late liao, you got bumped down the queue. Use /howlong to check your position."
under_maintenance_message = 'Sorry, the bot is currently under maintenance. Do hang tight for more updates, or contact ' + ADMIN_HANDLE |
# dataset settings
ann_type = 'tanz_base' # * _base or _evaluation
videos_per_gpu_train = 8 if ann_type == 'tanz_base' else 4
workers_per_gpu_train = 1
num_classes = 9 if ann_type == 'tanz_base' else 42
## * model settings
model = dict(
type='Recognizer3D',
backbone=dict(
type='ResNet3d', # paper: 3D Residual Networks for Action Recognition
pretrained2d=True, # using a 2D pre-trained model on Imagenet
pretrained='torchvision://resnet50', # 3D pre-trained ResNet
depth=50,
conv_cfg=dict(type='Conv3d'), # using 3D convolutions
norm_eval=False, # set BachNormalization layers to eval while training
inflate=((1, 1, 1), (1, 0, 1, 0), (1, 0, 1, 0, 1, 0), (0, 1, 0)), # inflate dim of each block
zero_init_residual=False, # whether to init residual blocks with 0
),
cls_head=dict(
type='I3DHead', # the head varies with the type of architecture
num_classes=num_classes,
in_channels=2048, # the input channels of classification head
spatial_type='avg', # type of pooling in spatial dimension
dropout_ratio=0.5, # probability in dropout layer
init_std=0.01), # std value for linear layer initiation
# model training and testing settings
train_cfg=None, # config for training hyperparameters
test_cfg=dict(average_clips='prob')) # config for testing hyperparameters
## * dataset settings
dataset_type = 'VideoDataset'
data_root = '/mmaction2/'
data_root_val = data_root
ann_file_train = f'data/{ann_type}/tanz_train_list_videos.txt'
ann_file_val = f'data/{ann_type}/tanz_val_list_videos.txt'
ann_file_test = f'/mnt/data_transfer/read/to_process_test/{ann_type}_test_list_videos.txt'
# config for image normalization used in data pipeline
# https://stats.stackexchange.com/questions/211436/why-normalize-images-by-subtracting-datasets-image-mean-instead-of-the-current
img_norm_cfg = dict(
mean=[123.675, 116.28, 103.53], # mean values of different channels to normalize
std=[58.395, 57.12, 57.375], # std values of different channels to normalize
to_bgr=False, # whether to convert channels from rgb to bgr
)
## * pre-processing pipelines, data augmentation techniques
## For the pre-processing pipelines down below, it might be a good idea to use lazy mode as this will accelerate the training
# each operation takes a dic as input and outputs a dic for the next operation
train_pipeline = [ # list of training pipeline steps
dict(type='DecordInit'), # mmaction/datasets/pipelines/loading.py
dict(
type='SampleFrames',
clip_len=48, # number of frames sampled for each clip
frame_interval=3, # temporal interval of adjacent sampled frames; # frames skipped while sampling
num_clips=1),
dict(type='DecordDecode'),
# augmentations: mmaction/datasets/pipelines/augmentations.py
dict(type='Resize', scale=(-1, 256)), # the scale to resize images
dict(
type=
'MultiScaleCrop', # crop images with a list of randomly selected scales
input_size=224,
scales=(1, 0.8), # width & height scales to be selected
random_crop=False,
max_wh_scale_gap=0),
dict(type='Resize', scale=(224, 224), keep_ratio=False),
dict(
type='Flip', # flip pipeline
flip_ratio=0.5), # probability of implementing flip
dict(
type='Normalize', # normalize pipeline
**img_norm_cfg), # config of image normalization
dict(type='FormatShape', input_format='NCTHW'), # format final image shape to the given input_format
dict(
type=
'Collect', # collect pipeline that decides which keys in the data should be passed to the recognizer
keys=['imgs', 'label'], # keys of input
meta_keys=[]), # meta keys of input
dict(
type='ToTensor', # convert other types to tensor
keys=['imgs', 'label']) # keys to be converted from image to tensor
]
val_pipeline = [
dict(type='DecordInit'),
dict(
type='SampleFrames',
clip_len=48,
frame_interval=3,
num_clips=1,
test_mode=True),
dict(type='DecordDecode'),
dict(type='Resize', scale=(-1, 256)),
dict(
type=
'CenterCrop', # center crop pipeline, cropping the center area from images
crop_size=224),
dict(
type='Flip', # flip pipeline
flip_ratio=0), # probability of implementig the flip
dict(type='Normalize', **img_norm_cfg),
dict(type='FormatShape', input_format='NCTHW'),
dict(type='Collect', keys=['imgs', 'label'], meta_keys=[]),
dict(type='ToTensor', keys=['imgs'])
]
# one tweak that could be done here if you get a cuda out of memory error
# could be to change the test pipeline into a light one
# for e.g., num_clips=10 -> num_clips=1
# dict(type='ThreeCrop', crop_size=256) -> dict(type='CenterCrop', crop_size=224)
test_pipeline = [
dict(type='DecordInit'),
dict(
type='SampleFrames',
clip_len=48,
frame_interval=3,
num_clips=5,
test_mode=True),
dict(type='DecordDecode'),
dict(type='Resize', scale=(-1, 256)),
dict(
type='ThreeCrop', # three crop pipeline, cropping 3 areas from images
crop_size=256), # the size to crop images
dict(type='Flip', flip_ratio=0),
dict(type='Normalize', **img_norm_cfg),
dict(type='FormatShape', input_format='NCTHW'),
dict(type='Collect', keys=['imgs', 'label'], meta_keys=[]),
dict(type='ToTensor', keys=['imgs'])
]
data = dict(
# tune these two `_gpu` values according to the Linear Scaling Rule (https://arxiv.org/abs/1706.02677)
# https://mmaction2.readthedocs.io/en/latest/recognition_models.html
videos_per_gpu=videos_per_gpu_train, # originally 8; number of videos in each GPU, i.e. mini-batch size of GPU
workers_per_gpu=workers_per_gpu_train, # originally 8; workers (sub-processes) to pre-fetch data for each single gpu; (multithreaded loading for PyTorch)
test_dataloader=dict( # Additional config of test dataloader
videos_per_gpu=1, # has to be one-one else the mainz gpus won't hold and SIGKILL9 error results
workers_per_gpu=1),
val_dataloader=dict(videos_per_gpu=1, workers_per_gpu=1),
train=dict( # training dataset config
type=dataset_type,
ann_file=ann_file_train,
data_prefix=data_root,
pipeline=train_pipeline,
# num_classes=num_classes,
# multi_class=True,
),
val=dict(
type=dataset_type,
ann_file=ann_file_val,
data_prefix=data_root_val,
pipeline=val_pipeline,
# num_classes=num_classes,
# multi_class=True,
),
test=dict(
type=dataset_type,
ann_file=ann_file_test,
data_prefix='',
pipeline=test_pipeline,
# num_classes=num_classes,
# multi_class=True,
)
)
### optimizations
# normally the optimizations goes into a separate file but we want to have a bird's eye view in all the possible
# configs in this particular config file. For the case of i3d, the optimizations can be found at configs/_base_/schedules/sgd_100e.py
# * checkout the linear scaling rule to optimize the learning rate for the #GPUs
optimizer = dict(
type='SGD',
lr=0.005, # * linear scaling rule
momentum=0.9,
weight_decay=0.0001)
optimizer_config = dict(grad_clip=dict(max_norm=40, norm_type=2))
# learning policy
lr_config = dict(policy='step', step=[40, 80])
total_epochs = 50
### runtime settings
checkpoint_config = dict(interval=5)
log_config = dict(
interval=20,
hooks=[dict(type='TextLoggerHook')]
)
evaluation = dict( # Config of evaluation during training
interval=5, # Interval to perform evaluation
metric_options=dict(
top_k_accuracy=dict(
topk=(1, 2, 3, 4, 5))), # set the top-k accuracy during validation;
# for training the corresponding head must be modified (i3d_head in this case): https://github.com/open-mmlab/mmaction2/issues/874
# for testing: eval config below
)
eval_config = dict(
metric_options=dict(top_k_accuracy=dict(topk=(1, 2, 3, 4, 5))),)
dist_params = dict(backend='nccl')
log_level = 'INFO'
load_from = 'https://download.openmmlab.com/mmaction/recognition/i3d/i3d_r50_video_32x2x1_100e_kinetics400_rgb/i3d_r50_video_32x2x1_100e_kinetics400_rgb_20200826-e31c6f52.pth'
resume_from = None
workflow = [('train', 1)]
| ann_type = 'tanz_base'
videos_per_gpu_train = 8 if ann_type == 'tanz_base' else 4
workers_per_gpu_train = 1
num_classes = 9 if ann_type == 'tanz_base' else 42
model = dict(type='Recognizer3D', backbone=dict(type='ResNet3d', pretrained2d=True, pretrained='torchvision://resnet50', depth=50, conv_cfg=dict(type='Conv3d'), norm_eval=False, inflate=((1, 1, 1), (1, 0, 1, 0), (1, 0, 1, 0, 1, 0), (0, 1, 0)), zero_init_residual=False), cls_head=dict(type='I3DHead', num_classes=num_classes, in_channels=2048, spatial_type='avg', dropout_ratio=0.5, init_std=0.01), train_cfg=None, test_cfg=dict(average_clips='prob'))
dataset_type = 'VideoDataset'
data_root = '/mmaction2/'
data_root_val = data_root
ann_file_train = f'data/{ann_type}/tanz_train_list_videos.txt'
ann_file_val = f'data/{ann_type}/tanz_val_list_videos.txt'
ann_file_test = f'/mnt/data_transfer/read/to_process_test/{ann_type}_test_list_videos.txt'
img_norm_cfg = dict(mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_bgr=False)
train_pipeline = [dict(type='DecordInit'), dict(type='SampleFrames', clip_len=48, frame_interval=3, num_clips=1), dict(type='DecordDecode'), dict(type='Resize', scale=(-1, 256)), dict(type='MultiScaleCrop', input_size=224, scales=(1, 0.8), random_crop=False, max_wh_scale_gap=0), dict(type='Resize', scale=(224, 224), keep_ratio=False), dict(type='Flip', flip_ratio=0.5), dict(type='Normalize', **img_norm_cfg), dict(type='FormatShape', input_format='NCTHW'), dict(type='Collect', keys=['imgs', 'label'], meta_keys=[]), dict(type='ToTensor', keys=['imgs', 'label'])]
val_pipeline = [dict(type='DecordInit'), dict(type='SampleFrames', clip_len=48, frame_interval=3, num_clips=1, test_mode=True), dict(type='DecordDecode'), dict(type='Resize', scale=(-1, 256)), dict(type='CenterCrop', crop_size=224), dict(type='Flip', flip_ratio=0), dict(type='Normalize', **img_norm_cfg), dict(type='FormatShape', input_format='NCTHW'), dict(type='Collect', keys=['imgs', 'label'], meta_keys=[]), dict(type='ToTensor', keys=['imgs'])]
test_pipeline = [dict(type='DecordInit'), dict(type='SampleFrames', clip_len=48, frame_interval=3, num_clips=5, test_mode=True), dict(type='DecordDecode'), dict(type='Resize', scale=(-1, 256)), dict(type='ThreeCrop', crop_size=256), dict(type='Flip', flip_ratio=0), dict(type='Normalize', **img_norm_cfg), dict(type='FormatShape', input_format='NCTHW'), dict(type='Collect', keys=['imgs', 'label'], meta_keys=[]), dict(type='ToTensor', keys=['imgs'])]
data = dict(videos_per_gpu=videos_per_gpu_train, workers_per_gpu=workers_per_gpu_train, test_dataloader=dict(videos_per_gpu=1, workers_per_gpu=1), val_dataloader=dict(videos_per_gpu=1, workers_per_gpu=1), train=dict(type=dataset_type, ann_file=ann_file_train, data_prefix=data_root, pipeline=train_pipeline), val=dict(type=dataset_type, ann_file=ann_file_val, data_prefix=data_root_val, pipeline=val_pipeline), test=dict(type=dataset_type, ann_file=ann_file_test, data_prefix='', pipeline=test_pipeline))
optimizer = dict(type='SGD', lr=0.005, momentum=0.9, weight_decay=0.0001)
optimizer_config = dict(grad_clip=dict(max_norm=40, norm_type=2))
lr_config = dict(policy='step', step=[40, 80])
total_epochs = 50
checkpoint_config = dict(interval=5)
log_config = dict(interval=20, hooks=[dict(type='TextLoggerHook')])
evaluation = dict(interval=5, metric_options=dict(top_k_accuracy=dict(topk=(1, 2, 3, 4, 5))))
eval_config = dict(metric_options=dict(top_k_accuracy=dict(topk=(1, 2, 3, 4, 5))))
dist_params = dict(backend='nccl')
log_level = 'INFO'
load_from = 'https://download.openmmlab.com/mmaction/recognition/i3d/i3d_r50_video_32x2x1_100e_kinetics400_rgb/i3d_r50_video_32x2x1_100e_kinetics400_rgb_20200826-e31c6f52.pth'
resume_from = None
workflow = [('train', 1)] |
class Solution:
MIN_VALUE = -(2 ** 31)
MAX_VALUE = 2 ** 31 - 1
def myAtoi(self, string: str) -> int:
try:
return self._fit_in_range(self._parse_number(string))
except ValueError:
return 0
def _parse_number(self, string: str) -> str:
string = string.strip()
sign = '-' if string and string[0] == '-' else '+'
string = string.removeprefix(sign)
for i, char in enumerate(string):
if not char.isnumeric():
return int(f'{sign}{string[:i]}')
return int(f'{sign}{string}')
def _fit_in_range(self, number: int) -> int:
if number < self.MIN_VALUE:
return self.MIN_VALUE
if number > self.MAX_VALUE:
return self.MAX_VALUE
return number
def test_my_atoi():
solution = Solution()
assert solution.myAtoi('42') == 42
assert solution.myAtoi('') == 0
assert solution.myAtoi(' 42 ') == 42
assert solution.myAtoi(' -42') == -42
assert solution.myAtoi('4193 with words') == 4193
assert solution.myAtoi(' 4193 with words') == 4193
assert solution.myAtoi('words and 987') == 0
assert solution.myAtoi('-91283472332') == -2147483648
assert solution.myAtoi('3.14159') == 3
assert solution.myAtoi('+1') == 1
assert solution.myAtoi(' -0012a42') == -12
assert solution.myAtoi(' ++1') == 0
| class Solution:
min_value = -2 ** 31
max_value = 2 ** 31 - 1
def my_atoi(self, string: str) -> int:
try:
return self._fit_in_range(self._parse_number(string))
except ValueError:
return 0
def _parse_number(self, string: str) -> str:
string = string.strip()
sign = '-' if string and string[0] == '-' else '+'
string = string.removeprefix(sign)
for (i, char) in enumerate(string):
if not char.isnumeric():
return int(f'{sign}{string[:i]}')
return int(f'{sign}{string}')
def _fit_in_range(self, number: int) -> int:
if number < self.MIN_VALUE:
return self.MIN_VALUE
if number > self.MAX_VALUE:
return self.MAX_VALUE
return number
def test_my_atoi():
solution = solution()
assert solution.myAtoi('42') == 42
assert solution.myAtoi('') == 0
assert solution.myAtoi(' 42 ') == 42
assert solution.myAtoi(' -42') == -42
assert solution.myAtoi('4193 with words') == 4193
assert solution.myAtoi(' 4193 with words') == 4193
assert solution.myAtoi('words and 987') == 0
assert solution.myAtoi('-91283472332') == -2147483648
assert solution.myAtoi('3.14159') == 3
assert solution.myAtoi('+1') == 1
assert solution.myAtoi(' -0012a42') == -12
assert solution.myAtoi(' ++1') == 0 |
#Colors to be used in the plots
color = ["#f94144","#f3722c","#f8961e","#f9c74f","#90be6d","#43aa8b","#577590"]
sns.palplot(color)
| color = ['#f94144', '#f3722c', '#f8961e', '#f9c74f', '#90be6d', '#43aa8b', '#577590']
sns.palplot(color) |
class Shirt:
def __init__(self, size, color):
self.size = size.lower()
self.color = color.lower()
def __repr__(self):
return str(self.size + "&" + self.color) | class Shirt:
def __init__(self, size, color):
self.size = size.lower()
self.color = color.lower()
def __repr__(self):
return str(self.size + '&' + self.color) |
def is_number(value):
'''Checks if a string can be converted into
a float (or int as a by product). Helper function
for string_cols_to_numeric'''
try:
float(value)
return True
except ValueError:
return False
| def is_number(value):
"""Checks if a string can be converted into
a float (or int as a by product). Helper function
for string_cols_to_numeric"""
try:
float(value)
return True
except ValueError:
return False |
#!/usr/bin/python3
class strategyBase(object):
def __init__(self):
pass
def _get_data(self):
pass
def _settle(self):
pass
if __name__ == "__main__":
pass
| class Strategybase(object):
def __init__(self):
pass
def _get_data(self):
pass
def _settle(self):
pass
if __name__ == '__main__':
pass |
# by Kami Bigdely
# Extract Class
foods = {'butternut squash soup':[45, True, 'soup','North African',\
['butter squash','onion','carrot', 'garlic','butter','black pepper', 'cinnamon','coconut milk']\
,'1. Grill the butter squash, onion, carrot and garlic in the oven until'
'they get soft and golden on top 2. Put all in blender with'
'butter and coconut milk. Blend them till they become puree. Then move the content into a pot'
'. Add coconut milk. Simmer for 5 mintues.'],
'shirazi salad':[5, True, 'salad','Iranian', ['cucumber', 'tomato', 'onion', 'lemon juice'], \
'1. dice cucumbers, tomatoes and onions 2. put all into a bowl 3. pour lemon juice 3. add salt'
'4. Mixed them thoroughly'],
'Home-made Beef Sausage': [60, False, 'deli','All',['sausage casing', 'regular ground beef','garlic',\
'corriander seeds','black pepper seeds','fennel seed','paprika'],'1. In a blender,'
' blend corriander seeds, black pepper seeds, fennel seeds and garlic to make'
'the seasonings 2. In a bowl, mix ground beef with the'
'seasoning 3. Add all the content to a sausage stuffer. Put the casing on'
"the stuffer funnel. Rotate the stuffer's handle (or turn it on) to make your yummy sausages!"]}
def print_food():
print("Name:",key)
print("Prep time:",value[0], "mins")
print("Is Veggie?", 'Yes' if value[1] else "No")
print("Food Type:", value[2])
print("Cuisine:", value[3])
def print_separate_foods():
for item in value[4]:
print(item, end=', ')
print()
print("recipe", value[5])
print("***")
for key, value in foods.items():
print_food()
print_separate_foods()
| foods = {'butternut squash soup': [45, True, 'soup', 'North African', ['butter squash', 'onion', 'carrot', 'garlic', 'butter', 'black pepper', 'cinnamon', 'coconut milk'], '1. Grill the butter squash, onion, carrot and garlic in the oven untilthey get soft and golden on top 2. Put all in blender withbutter and coconut milk. Blend them till they become puree. Then move the content into a pot. Add coconut milk. Simmer for 5 mintues.'], 'shirazi salad': [5, True, 'salad', 'Iranian', ['cucumber', 'tomato', 'onion', 'lemon juice'], '1. dice cucumbers, tomatoes and onions 2. put all into a bowl 3. pour lemon juice 3. add salt4. Mixed them thoroughly'], 'Home-made Beef Sausage': [60, False, 'deli', 'All', ['sausage casing', 'regular ground beef', 'garlic', 'corriander seeds', 'black pepper seeds', 'fennel seed', 'paprika'], "1. In a blender, blend corriander seeds, black pepper seeds, fennel seeds and garlic to makethe seasonings 2. In a bowl, mix ground beef with theseasoning 3. Add all the content to a sausage stuffer. Put the casing onthe stuffer funnel. Rotate the stuffer's handle (or turn it on) to make your yummy sausages!"]}
def print_food():
print('Name:', key)
print('Prep time:', value[0], 'mins')
print('Is Veggie?', 'Yes' if value[1] else 'No')
print('Food Type:', value[2])
print('Cuisine:', value[3])
def print_separate_foods():
for item in value[4]:
print(item, end=', ')
print()
print('recipe', value[5])
print('***')
for (key, value) in foods.items():
print_food()
print_separate_foods() |
def decimal_to_binary(num):
if (num == 0):
return 0
return num%2+10*decimal_to_binary(num//2)
print(decimal_to_binary(2))
| def decimal_to_binary(num):
if num == 0:
return 0
return num % 2 + 10 * decimal_to_binary(num // 2)
print(decimal_to_binary(2)) |
# yacctab.py
# This file is automatically generated. Do not edit.
_tabversion = '3.10'
_lr_method = 'LALR'
_lr_signature = 'translation_unit_or_emptyleftLORleftLANDleftORleftXORleftANDleftEQNEleftGTGELTLEleftRSHIFTLSHIFTleftPLUSMINUSleftTIMESDIVIDEMODAUTO 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 _BOOL _COMPLEX _NORETURN _THREAD_LOCAL _STATIC_ASSERT _ATOMIC _ALIGNOF _ALIGNAS 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 U8CHAR_CONST U16CHAR_CONST U32CHAR_CONST STRING_LITERAL WSTRING_LITERAL U8STRING_LITERAL U16STRING_LITERAL U32STRING_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 external_declaration : static_assert\n static_assert : _STATIC_ASSERT LPAREN constant_expression COMMA unified_string_literal RPAREN\n | _STATIC_ASSERT LPAREN constant_expression RPAREN\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 | static_assert\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_no_type : atomic_specifier declaration_specifiers_no_type_opt\n declaration_specifiers_no_type : alignment_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 declaration_specifiers : declaration_specifiers alignment_specifier\n storage_class_specifier : AUTO\n | REGISTER\n | STATIC\n | EXTERN\n | TYPEDEF\n | _THREAD_LOCAL\n function_specifier : INLINE\n | _NORETURN\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 | atomic_specifier\n atomic_specifier : _ATOMIC LPAREN type_name RPAREN\n type_qualifier : CONST\n | RESTRICT\n | VOLATILE\n | _ATOMIC\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 specifier_qualifier_list : alignment_specifier\n specifier_qualifier_list : specifier_qualifier_list alignment_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 alignment_specifier : _ALIGNAS LPAREN type_name RPAREN\n | _ALIGNAS LPAREN constant_expression RPAREN\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 assignment_expression : LPAREN compound_statement RPAREN 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 | _ALIGNOF 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 | U8CHAR_CONST\n | U16CHAR_CONST\n | U32CHAR_CONST\n unified_string_literal : STRING_LITERAL\n | unified_string_literal STRING_LITERAL\n unified_wstring_literal : WSTRING_LITERAL\n | U8STRING_LITERAL\n | U16STRING_LITERAL\n | U32STRING_LITERAL\n | unified_wstring_literal WSTRING_LITERAL\n | unified_wstring_literal U8STRING_LITERAL\n | unified_wstring_literal U16STRING_LITERAL\n | unified_wstring_literal U32STRING_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,10,14,15,63,89,90,125,205,248,262,351,493,],[-337,0,-58,-59,-60,-62,-63,-64,-65,-66,-67,-70,-71,-61,-87,-72,-73,-336,-74,-69,-218,-68,]),'SEMI':([0,2,4,5,6,7,8,9,10,12,13,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,68,69,70,71,72,73,74,75,76,77,78,80,82,83,84,85,86,87,88,89,90,95,96,97,98,99,100,101,102,103,104,105,106,108,109,110,115,116,117,119,120,121,122,125,126,128,130,138,139,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,200,201,202,203,204,205,206,207,208,209,211,217,218,219,220,221,222,223,224,225,226,227,228,229,230,233,236,239,242,243,244,245,246,247,248,249,250,251,252,262,263,287,288,289,291,292,293,296,297,298,299,307,308,322,323,326,329,330,331,332,333,334,335,336,337,338,339,340,341,342,344,345,349,350,351,352,353,354,356,357,365,366,367,368,369,370,371,372,398,399,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,434,435,454,455,458,459,460,463,464,465,466,468,470,474,475,476,477,478,479,480,487,488,491,493,495,496,499,500,502,503,516,517,518,519,520,521,523,524,525,529,530,532,546,547,548,549,551,554,556,563,564,567,572,573,575,577,578,579,],[9,9,-60,-62,-63,-64,-65,-66,-67,-337,89,-70,-71,-52,-337,-337,-337,-125,-99,-337,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,-337,-337,-126,-131,-178,-95,-96,-97,-98,-101,-85,-131,-19,-20,-132,-134,-179,-54,-37,-87,-72,-53,-90,-9,-10,-337,-91,-92,-100,-86,-126,-15,-16,-136,-138,-94,-93,-166,-167,-335,-146,-147,207,-73,-337,-178,-55,-303,-252,-253,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-30,207,207,207,-149,-156,-336,-337,-159,-160,-142,-144,-13,-337,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-312,357,-14,-337,369,370,372,-235,-239,-274,-74,-38,-133,-135,-193,-69,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-35,-36,-137,-139,-168,207,-151,207,-153,-148,-157,460,-140,-141,-145,-25,-26,-161,-163,-143,-127,-174,-175,-218,-217,-13,-337,-337,-234,-81,-84,-337,477,-230,-231,478,-233,-43,-44,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,-292,-293,-294,-295,-296,-31,-34,-169,-170,-150,-152,-158,-165,-219,-337,-221,-237,-236,-83,523,-337,-229,-232,-240,-194,-39,-42,-275,-68,-290,-291,-281,-282,-32,-33,-162,-164,-220,-337,-337,-337,-337,552,-195,-40,-41,-254,-222,-84,-224,-225,565,-299,-306,-337,573,-300,-223,-226,-337,-337,-228,-227,]),'PPHASH':([0,2,4,5,6,7,8,9,10,14,15,63,89,90,125,205,248,262,351,493,],[14,14,-60,-62,-63,-64,-65,-66,-67,-70,-71,-61,-87,-72,-73,-336,-74,-69,-218,-68,]),'PPPRAGMA':([0,2,4,5,6,7,8,9,10,14,15,63,89,90,119,122,125,126,200,201,202,204,205,207,208,218,219,220,221,222,223,224,225,226,227,228,229,239,248,262,329,331,334,351,352,354,356,357,365,366,369,370,372,460,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[15,15,-60,-62,-63,-64,-65,-66,-67,-70,-71,-61,-87,-72,-335,15,-73,15,15,15,15,-156,-336,-159,-160,15,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,15,-74,-69,15,15,-157,-218,-217,15,15,-234,15,-84,-230,-231,-233,-158,-219,15,-221,-83,-229,-232,-68,-220,15,15,15,-222,-84,-224,-225,15,-223,-226,15,15,-228,-227,]),'_STATIC_ASSERT':([0,2,4,5,6,7,8,9,10,14,15,63,89,90,119,125,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,248,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[16,16,-60,-62,-63,-64,-65,-66,-67,-70,-71,-61,-87,-72,-335,-73,16,-336,16,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,16,-74,-69,-218,-217,16,16,-234,16,-84,-230,-231,-233,-219,16,-221,-83,-229,-232,-68,-220,16,16,16,-222,-84,-224,-225,16,-223,-226,16,16,-228,-227,]),'ID':([0,2,4,5,6,7,8,9,10,12,14,15,17,19,20,21,22,23,24,25,26,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,61,62,63,68,69,70,71,73,74,75,76,77,79,80,81,89,90,91,93,94,96,97,98,99,100,101,102,104,110,111,112,113,114,115,116,117,118,119,120,121,124,125,126,132,133,134,135,136,142,143,144,145,148,149,150,151,155,156,179,180,181,189,191,192,193,194,195,196,203,205,206,209,211,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,241,244,248,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,290,294,302,305,306,310,314,318,319,326,327,328,330,332,333,336,337,338,343,344,345,349,350,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,393,395,396,397,400,443,444,447,450,452,454,455,458,459,461,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,501,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,557,558,563,565,572,573,575,577,578,579,],[27,27,-60,-62,-63,-64,-65,-66,-67,27,-70,-71,27,27,-337,-337,-337,-125,-99,27,-337,-104,-337,-122,-123,-124,-126,-238,116,120,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-154,-155,-61,27,27,-126,-131,-95,-96,-97,-98,-101,27,-131,27,-87,-72,154,-337,154,-90,-9,-10,-337,-91,-92,-100,-126,-94,-180,-27,-28,-182,-93,-166,-167,199,-335,-146,-147,154,-73,230,27,154,-337,154,154,-284,-285,-286,-283,154,154,154,154,-287,-288,154,-337,-28,27,27,154,-181,-183,199,199,-149,-336,27,-142,-144,230,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,154,154,230,368,154,-74,-337,154,-337,-28,-69,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,154,426,428,154,154,-284,154,154,154,27,27,-337,-168,199,154,-151,-153,-148,-140,-141,-145,154,-143,-127,-174,-175,-218,-217,230,230,-234,154,154,154,154,230,-84,154,-230,-231,-233,154,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,154,-12,154,154,-284,154,154,154,-337,154,27,154,154,-169,-170,-150,-152,27,154,-219,230,-221,154,-83,154,-229,-232,-337,-198,-337,-68,154,154,154,154,-337,-28,-284,-220,230,230,230,154,154,154,-11,-284,154,154,-222,-84,-224,-225,154,-337,154,154,230,154,-223,-226,230,230,-228,-227,]),'LPAREN':([0,2,4,5,6,7,8,9,10,12,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,63,68,69,70,71,73,74,75,76,77,79,80,81,87,88,89,90,91,93,95,96,97,98,99,100,101,102,104,107,110,111,112,113,114,115,116,117,119,120,121,124,125,126,130,132,133,134,136,138,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,189,191,192,193,194,203,205,206,209,211,213,218,219,220,221,222,223,224,225,226,227,228,229,230,231,234,235,237,238,239,240,244,248,249,253,254,255,256,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,287,288,290,294,296,297,298,299,302,305,306,307,308,314,315,318,319,320,321,326,328,330,332,333,336,337,338,343,344,345,347,348,349,350,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,398,399,400,401,424,426,427,428,429,434,435,441,442,443,447,450,452,454,455,458,459,461,462,464,465,466,469,473,474,476,477,478,481,483,487,488,492,493,494,495,496,497,502,503,504,505,506,509,510,512,514,518,519,520,521,522,523,526,527,529,530,537,538,539,540,541,542,543,544,545,546,547,548,549,552,554,555,556,558,559,560,563,565,567,570,571,572,573,575,577,578,579,],[17,17,-60,-62,-63,-64,-65,-66,-67,81,-70,-71,91,17,94,17,-337,-337,-337,-125,-99,17,-337,-29,-104,-337,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,123,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,124,-61,81,17,-126,123,-95,-96,-97,-98,-101,81,-131,81,135,-37,-87,-72,136,-337,94,-90,-9,-10,-337,-91,-92,-100,-126,123,-94,-180,-27,-28,-182,-93,-166,-167,-335,-146,-147,136,-73,235,135,81,235,-337,235,-303,-284,-285,-286,-283,284,290,290,136,294,295,-289,-312,-287,-288,-301,-302,-304,300,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-30,235,-337,-28,318,81,235,-181,-183,-149,-336,81,-142,-144,347,235,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-312,136,358,235,362,363,235,367,235,-74,-38,-337,235,-337,-28,-69,-326,235,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,136,235,235,-297,-298,235,235,-331,-332,-333,-334,-284,235,235,-35,-36,318,444,318,-337,-45,453,-168,136,-151,-153,-148,-140,-141,-145,136,-143,-127,347,347,-174,-175,-218,-217,235,235,-234,235,235,235,235,235,-84,235,-230,-231,-233,235,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,235,-12,136,-284,235,235,-43,-44,136,-305,-292,-293,-294,-295,-296,-31,-34,444,453,-337,318,235,235,-169,-170,-150,-152,81,136,-219,235,-221,136,522,-83,235,-229,-232,-337,-198,-39,-42,-337,-68,136,-290,-291,235,-32,-33,235,-337,-28,-207,-213,-211,-284,-220,235,235,235,235,235,235,-11,-40,-41,-284,235,235,-50,-51,-209,-208,-210,-212,-222,-84,-224,-225,235,-299,-337,-306,235,-46,-49,235,235,-300,-47,-48,-223,-226,235,235,-228,-227,]),'TIMES':([0,2,4,5,6,7,8,9,10,12,14,15,17,20,21,22,23,24,25,26,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,68,69,70,71,73,74,75,76,77,80,81,89,90,91,93,96,97,98,99,100,101,102,104,110,111,112,113,114,115,116,117,119,120,121,124,125,126,132,133,134,136,138,140,141,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,180,181,189,191,192,194,203,205,206,209,211,213,218,219,220,221,222,223,224,225,226,227,228,229,230,231,235,239,244,247,248,253,254,255,256,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,287,288,289,290,291,292,293,294,296,297,298,299,302,305,306,318,319,326,328,330,332,333,336,337,338,343,344,345,347,349,350,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,443,450,452,454,455,458,459,461,462,464,465,466,469,474,476,477,478,481,483,491,492,493,494,495,496,497,499,500,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,554,555,556,558,563,565,567,572,573,575,577,578,579,],[29,29,-60,-62,-63,-64,-65,-66,-67,29,-70,-71,29,-337,-337,-337,-125,-99,29,-337,-104,-337,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,29,29,-126,-131,-95,-96,-97,-98,-101,-131,29,-87,-72,142,-337,-90,-9,-10,-337,-91,-92,-100,-126,-94,29,-27,-28,-182,-93,-166,-167,-335,-146,-147,142,-73,142,29,142,-337,142,-303,265,-255,-284,-285,-286,-283,-274,-276,142,142,142,142,-289,-312,-287,-288,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,302,-337,-28,29,29,142,-183,-149,-336,29,-142,-144,29,142,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-312,142,142,142,142,-274,-74,-337,395,-337,-28,-69,-326,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,142,-297,-298,-277,142,-278,-279,-280,142,-331,-332,-333,-334,-284,142,142,29,451,-168,142,-151,-153,-148,-140,-141,-145,142,-143,-127,29,-174,-175,-218,-217,142,142,-234,142,142,142,142,142,-84,142,-230,-231,-233,142,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,142,-12,142,-284,142,142,142,-305,-256,-257,-258,265,265,265,265,265,265,265,265,265,265,265,265,265,265,265,-292,-293,-294,-295,-296,-337,142,514,-169,-170,-150,-152,29,142,-219,142,-221,142,-83,142,-229,-232,-337,-198,-275,-337,-68,142,-290,-291,142,-281,-282,537,-337,-28,-284,-220,142,142,142,142,142,142,-11,-284,142,142,-222,-84,-224,-225,142,-299,-337,-306,142,142,142,-300,-223,-226,142,142,-228,-227,]),'TYPEID':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,61,62,63,66,67,68,69,70,71,72,73,74,75,76,77,79,80,81,89,90,94,95,96,97,98,99,100,101,102,104,110,111,112,113,114,115,116,117,119,120,121,122,123,124,125,126,127,132,135,136,178,189,190,191,193,194,200,201,202,203,204,205,206,207,208,209,210,211,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,285,286,290,294,295,300,307,308,309,314,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,461,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[34,34,-60,-62,-63,-64,-65,-66,-67,34,88,-70,-71,-52,-337,-337,-337,-125,-99,34,-337,-29,-104,-337,-122,-123,-124,-126,-238,117,121,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-154,-155,-61,34,-88,88,34,-126,-131,34,-95,-96,-97,-98,-101,88,-131,88,-87,-72,34,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-180,-27,-28,-182,-93,-166,-167,-335,-146,-147,34,34,34,-73,34,-89,88,34,34,-30,320,34,88,-181,-183,34,34,34,-149,-156,-336,88,-159,-160,-142,34,-144,34,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,34,-74,-69,427,429,34,34,34,34,-35,-36,34,320,34,-168,34,-151,34,-153,-148,-157,-140,-141,-145,-143,-127,34,-174,-175,-218,-217,-234,-81,-84,34,-230,-231,-233,-31,-34,34,34,-169,-170,-150,-152,-158,88,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'ENUM':([0,2,4,5,6,7,8,9,10,11,14,15,18,20,21,22,25,26,27,28,33,49,50,51,52,53,54,55,56,57,58,59,63,66,67,69,70,71,72,89,90,94,95,96,97,98,99,100,101,110,114,115,119,122,123,124,125,126,127,135,136,178,190,194,200,201,202,204,205,207,208,210,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,329,331,334,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[35,35,-60,-62,-63,-64,-65,-66,-67,35,-70,-71,-52,-337,-337,-337,35,-337,-29,-104,-337,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,35,-88,35,-337,-131,35,-87,-72,35,-53,-90,-9,-10,-337,-91,-92,-94,-182,-93,-335,35,35,35,-73,35,-89,35,35,-30,35,-183,35,35,35,-156,-336,-159,-160,35,35,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,35,-74,-69,35,35,35,35,-35,-36,35,35,35,35,-157,-127,35,-174,-175,-218,-217,-234,-81,-84,35,-230,-231,-233,-31,-34,35,35,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'VOID':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[37,37,-60,-62,-63,-64,-65,-66,-67,37,37,-70,-71,-52,-337,-337,-337,-125,-99,37,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,37,-88,37,37,-126,-131,37,-95,-96,-97,-98,-101,-131,-87,-72,37,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,37,37,37,-73,37,-89,37,37,-30,37,37,-183,37,37,37,-149,-156,-336,37,-159,-160,-142,37,-144,37,37,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,37,-74,-69,37,37,37,37,-35,-36,37,37,-168,37,-151,37,-153,-148,-157,-140,-141,-145,-143,-127,37,-174,-175,-218,-217,-234,-81,-84,37,-230,-231,-233,-31,-34,37,37,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'_BOOL':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[38,38,-60,-62,-63,-64,-65,-66,-67,38,38,-70,-71,-52,-337,-337,-337,-125,-99,38,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,38,-88,38,38,-126,-131,38,-95,-96,-97,-98,-101,-131,-87,-72,38,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,38,38,38,-73,38,-89,38,38,-30,38,38,-183,38,38,38,-149,-156,-336,38,-159,-160,-142,38,-144,38,38,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,38,-74,-69,38,38,38,38,-35,-36,38,38,-168,38,-151,38,-153,-148,-157,-140,-141,-145,-143,-127,38,-174,-175,-218,-217,-234,-81,-84,38,-230,-231,-233,-31,-34,38,38,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'CHAR':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[39,39,-60,-62,-63,-64,-65,-66,-67,39,39,-70,-71,-52,-337,-337,-337,-125,-99,39,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,39,-88,39,39,-126,-131,39,-95,-96,-97,-98,-101,-131,-87,-72,39,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,39,39,39,-73,39,-89,39,39,-30,39,39,-183,39,39,39,-149,-156,-336,39,-159,-160,-142,39,-144,39,39,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,39,-74,-69,39,39,39,39,-35,-36,39,39,-168,39,-151,39,-153,-148,-157,-140,-141,-145,-143,-127,39,-174,-175,-218,-217,-234,-81,-84,39,-230,-231,-233,-31,-34,39,39,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'SHORT':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[40,40,-60,-62,-63,-64,-65,-66,-67,40,40,-70,-71,-52,-337,-337,-337,-125,-99,40,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,40,-88,40,40,-126,-131,40,-95,-96,-97,-98,-101,-131,-87,-72,40,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,40,40,40,-73,40,-89,40,40,-30,40,40,-183,40,40,40,-149,-156,-336,40,-159,-160,-142,40,-144,40,40,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,40,-74,-69,40,40,40,40,-35,-36,40,40,-168,40,-151,40,-153,-148,-157,-140,-141,-145,-143,-127,40,-174,-175,-218,-217,-234,-81,-84,40,-230,-231,-233,-31,-34,40,40,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'INT':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[41,41,-60,-62,-63,-64,-65,-66,-67,41,41,-70,-71,-52,-337,-337,-337,-125,-99,41,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,41,-88,41,41,-126,-131,41,-95,-96,-97,-98,-101,-131,-87,-72,41,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,41,41,41,-73,41,-89,41,41,-30,41,41,-183,41,41,41,-149,-156,-336,41,-159,-160,-142,41,-144,41,41,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,41,-74,-69,41,41,41,41,-35,-36,41,41,-168,41,-151,41,-153,-148,-157,-140,-141,-145,-143,-127,41,-174,-175,-218,-217,-234,-81,-84,41,-230,-231,-233,-31,-34,41,41,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'LONG':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[42,42,-60,-62,-63,-64,-65,-66,-67,42,42,-70,-71,-52,-337,-337,-337,-125,-99,42,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,42,-88,42,42,-126,-131,42,-95,-96,-97,-98,-101,-131,-87,-72,42,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,42,42,42,-73,42,-89,42,42,-30,42,42,-183,42,42,42,-149,-156,-336,42,-159,-160,-142,42,-144,42,42,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,42,-74,-69,42,42,42,42,-35,-36,42,42,-168,42,-151,42,-153,-148,-157,-140,-141,-145,-143,-127,42,-174,-175,-218,-217,-234,-81,-84,42,-230,-231,-233,-31,-34,42,42,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'FLOAT':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[43,43,-60,-62,-63,-64,-65,-66,-67,43,43,-70,-71,-52,-337,-337,-337,-125,-99,43,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,43,-88,43,43,-126,-131,43,-95,-96,-97,-98,-101,-131,-87,-72,43,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,43,43,43,-73,43,-89,43,43,-30,43,43,-183,43,43,43,-149,-156,-336,43,-159,-160,-142,43,-144,43,43,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,43,-74,-69,43,43,43,43,-35,-36,43,43,-168,43,-151,43,-153,-148,-157,-140,-141,-145,-143,-127,43,-174,-175,-218,-217,-234,-81,-84,43,-230,-231,-233,-31,-34,43,43,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'DOUBLE':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[44,44,-60,-62,-63,-64,-65,-66,-67,44,44,-70,-71,-52,-337,-337,-337,-125,-99,44,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,44,-88,44,44,-126,-131,44,-95,-96,-97,-98,-101,-131,-87,-72,44,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,44,44,44,-73,44,-89,44,44,-30,44,44,-183,44,44,44,-149,-156,-336,44,-159,-160,-142,44,-144,44,44,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,44,-74,-69,44,44,44,44,-35,-36,44,44,-168,44,-151,44,-153,-148,-157,-140,-141,-145,-143,-127,44,-174,-175,-218,-217,-234,-81,-84,44,-230,-231,-233,-31,-34,44,44,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'_COMPLEX':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[45,45,-60,-62,-63,-64,-65,-66,-67,45,45,-70,-71,-52,-337,-337,-337,-125,-99,45,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,45,-88,45,45,-126,-131,45,-95,-96,-97,-98,-101,-131,-87,-72,45,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,45,45,45,-73,45,-89,45,45,-30,45,45,-183,45,45,45,-149,-156,-336,45,-159,-160,-142,45,-144,45,45,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,45,-74,-69,45,45,45,45,-35,-36,45,45,-168,45,-151,45,-153,-148,-157,-140,-141,-145,-143,-127,45,-174,-175,-218,-217,-234,-81,-84,45,-230,-231,-233,-31,-34,45,45,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'SIGNED':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[46,46,-60,-62,-63,-64,-65,-66,-67,46,46,-70,-71,-52,-337,-337,-337,-125,-99,46,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,46,-88,46,46,-126,-131,46,-95,-96,-97,-98,-101,-131,-87,-72,46,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,46,46,46,-73,46,-89,46,46,-30,46,46,-183,46,46,46,-149,-156,-336,46,-159,-160,-142,46,-144,46,46,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,46,-74,-69,46,46,46,46,-35,-36,46,46,-168,46,-151,46,-153,-148,-157,-140,-141,-145,-143,-127,46,-174,-175,-218,-217,-234,-81,-84,46,-230,-231,-233,-31,-34,46,46,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'UNSIGNED':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[47,47,-60,-62,-63,-64,-65,-66,-67,47,47,-70,-71,-52,-337,-337,-337,-125,-99,47,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,47,-88,47,47,-126,-131,47,-95,-96,-97,-98,-101,-131,-87,-72,47,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,47,47,47,-73,47,-89,47,47,-30,47,47,-183,47,47,47,-149,-156,-336,47,-159,-160,-142,47,-144,47,47,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,47,-74,-69,47,47,47,47,-35,-36,47,47,-168,47,-151,47,-153,-148,-157,-140,-141,-145,-143,-127,47,-174,-175,-218,-217,-234,-81,-84,47,-230,-231,-233,-31,-34,47,47,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'__INT128':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,94,95,96,97,98,99,100,101,102,104,110,114,115,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[48,48,-60,-62,-63,-64,-65,-66,-67,48,48,-70,-71,-52,-337,-337,-337,-125,-99,48,-337,-29,-104,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,48,-88,48,48,-126,-131,48,-95,-96,-97,-98,-101,-131,-87,-72,48,-53,-90,-9,-10,-337,-91,-92,-100,-126,-94,-182,-93,-166,-167,-335,-146,-147,48,48,48,-73,48,-89,48,48,-30,48,48,-183,48,48,48,-149,-156,-336,48,-159,-160,-142,48,-144,48,48,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,48,-74,-69,48,48,48,48,-35,-36,48,48,-168,48,-151,48,-153,-148,-157,-140,-141,-145,-143,-127,48,-174,-175,-218,-217,-234,-81,-84,48,-230,-231,-233,-31,-34,48,48,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'_ATOMIC':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,69,70,71,72,73,74,75,76,77,80,89,90,93,94,95,96,97,98,99,100,101,102,104,110,113,114,115,116,117,119,120,121,122,123,124,125,126,127,134,135,136,178,180,181,189,190,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,255,256,262,290,294,295,300,307,308,309,318,319,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,443,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,505,506,518,546,547,548,549,572,573,578,579,],[49,49,-60,-62,-63,-64,-65,-66,-67,71,80,-70,-71,-52,71,71,71,-125,-99,107,71,-29,-104,80,-122,-123,-124,71,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,71,-88,80,107,71,-131,71,-95,-96,-97,-98,-101,-131,-87,-72,80,49,-53,-90,-9,-10,71,-91,-92,-100,-126,-94,80,-182,-93,-166,-167,-335,-146,-147,49,49,49,-73,71,-89,80,49,49,-30,80,80,80,107,-183,49,49,49,-149,-156,-336,80,-159,-160,-142,71,-144,80,71,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,49,-74,80,80,-69,49,49,49,49,-35,-36,49,49,80,-168,49,-151,49,-153,-148,-157,-140,-141,-145,-143,-127,49,-174,-175,-218,-217,-234,-81,-84,71,-230,-231,-233,-31,-34,80,49,49,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,80,80,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'CONST':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,93,94,95,99,102,104,113,114,116,117,119,120,121,122,123,124,125,126,127,134,135,136,178,180,181,189,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,255,256,262,290,294,295,300,307,308,309,318,319,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,443,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,505,506,518,546,547,548,549,572,573,578,579,],[50,50,-60,-62,-63,-64,-65,-66,-67,50,50,-70,-71,-52,50,50,50,-125,-99,50,-29,-104,50,-122,-123,-124,50,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,50,-88,50,50,-131,50,-95,-96,-97,-98,-101,-131,-87,-72,50,50,-53,50,-100,-126,50,-182,-166,-167,-335,-146,-147,50,50,50,-73,50,-89,50,50,50,-30,50,50,50,-183,50,50,50,-149,-156,-336,50,-159,-160,-142,50,-144,50,50,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,50,-74,50,50,-69,50,50,50,50,-35,-36,50,50,50,-168,50,-151,50,-153,-148,-157,-140,-141,-145,-143,-127,50,-174,-175,-218,-217,-234,-81,-84,50,-230,-231,-233,-31,-34,50,50,50,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,50,50,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'RESTRICT':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,93,94,95,99,102,104,113,114,116,117,119,120,121,122,123,124,125,126,127,134,135,136,178,180,181,189,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,255,256,262,290,294,295,300,307,308,309,318,319,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,443,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,505,506,518,546,547,548,549,572,573,578,579,],[51,51,-60,-62,-63,-64,-65,-66,-67,51,51,-70,-71,-52,51,51,51,-125,-99,51,-29,-104,51,-122,-123,-124,51,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,51,-88,51,51,-131,51,-95,-96,-97,-98,-101,-131,-87,-72,51,51,-53,51,-100,-126,51,-182,-166,-167,-335,-146,-147,51,51,51,-73,51,-89,51,51,51,-30,51,51,51,-183,51,51,51,-149,-156,-336,51,-159,-160,-142,51,-144,51,51,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,51,-74,51,51,-69,51,51,51,51,-35,-36,51,51,51,-168,51,-151,51,-153,-148,-157,-140,-141,-145,-143,-127,51,-174,-175,-218,-217,-234,-81,-84,51,-230,-231,-233,-31,-34,51,51,51,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,51,51,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'VOLATILE':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,93,94,95,99,102,104,113,114,116,117,119,120,121,122,123,124,125,126,127,134,135,136,178,180,181,189,194,200,201,202,203,204,205,206,207,208,209,210,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,255,256,262,290,294,295,300,307,308,309,318,319,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,443,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,505,506,518,546,547,548,549,572,573,578,579,],[52,52,-60,-62,-63,-64,-65,-66,-67,52,52,-70,-71,-52,52,52,52,-125,-99,52,-29,-104,52,-122,-123,-124,52,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,52,-88,52,52,-131,52,-95,-96,-97,-98,-101,-131,-87,-72,52,52,-53,52,-100,-126,52,-182,-166,-167,-335,-146,-147,52,52,52,-73,52,-89,52,52,52,-30,52,52,52,-183,52,52,52,-149,-156,-336,52,-159,-160,-142,52,-144,52,52,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,52,-74,52,52,-69,52,52,52,52,-35,-36,52,52,52,-168,52,-151,52,-153,-148,-157,-140,-141,-145,-143,-127,52,-174,-175,-218,-217,-234,-81,-84,52,-230,-231,-233,-31,-34,52,52,52,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,52,52,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'AUTO':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,94,95,99,102,104,116,117,119,120,121,125,126,127,135,178,189,203,205,218,219,220,221,222,223,224,225,226,227,228,229,248,262,307,308,309,318,326,330,332,333,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[53,53,-60,-62,-63,-64,-65,-66,-67,53,53,-70,-71,-52,53,53,53,-125,-99,53,-29,-104,-122,-123,-124,53,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,53,-88,53,53,-131,53,-95,-96,-97,-98,-101,-131,-87,-72,53,-53,53,-100,-126,-166,-167,-335,-146,-147,-73,53,-89,53,-30,53,-149,-336,53,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-74,-69,-35,-36,53,53,-168,-151,-153,-148,-127,53,-174,-175,-218,-217,-234,-81,-84,53,-230,-231,-233,-31,-34,53,53,-169,-170,-150,-152,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'REGISTER':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,94,95,99,102,104,116,117,119,120,121,125,126,127,135,178,189,203,205,218,219,220,221,222,223,224,225,226,227,228,229,248,262,307,308,309,318,326,330,332,333,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[54,54,-60,-62,-63,-64,-65,-66,-67,54,54,-70,-71,-52,54,54,54,-125,-99,54,-29,-104,-122,-123,-124,54,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,54,-88,54,54,-131,54,-95,-96,-97,-98,-101,-131,-87,-72,54,-53,54,-100,-126,-166,-167,-335,-146,-147,-73,54,-89,54,-30,54,-149,-336,54,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-74,-69,-35,-36,54,54,-168,-151,-153,-148,-127,54,-174,-175,-218,-217,-234,-81,-84,54,-230,-231,-233,-31,-34,54,54,-169,-170,-150,-152,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'STATIC':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,93,94,95,99,102,104,114,116,117,119,120,121,125,126,127,134,135,178,181,189,194,203,205,218,219,220,221,222,223,224,225,226,227,228,229,248,256,262,307,308,309,318,326,330,332,333,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,443,444,453,454,455,458,459,464,466,474,477,478,493,502,503,506,518,546,547,548,549,572,573,578,579,],[28,28,-60,-62,-63,-64,-65,-66,-67,28,28,-70,-71,-52,28,28,28,-125,-99,28,-29,-104,-122,-123,-124,28,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,28,-88,28,28,-131,28,-95,-96,-97,-98,-101,-131,-87,-72,180,28,-53,28,-100,-126,-182,-166,-167,-335,-146,-147,-73,28,-89,255,28,-30,306,28,-183,-149,-336,28,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-74,397,-69,-35,-36,28,28,-168,-151,-153,-148,-127,28,-174,-175,-218,-217,-234,-81,-84,28,-230,-231,-233,-31,-34,505,28,28,-169,-170,-150,-152,-219,-221,-83,-229,-232,-68,-32,-33,539,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'EXTERN':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,94,95,99,102,104,116,117,119,120,121,125,126,127,135,178,189,203,205,218,219,220,221,222,223,224,225,226,227,228,229,248,262,307,308,309,318,326,330,332,333,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[55,55,-60,-62,-63,-64,-65,-66,-67,55,55,-70,-71,-52,55,55,55,-125,-99,55,-29,-104,-122,-123,-124,55,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,55,-88,55,55,-131,55,-95,-96,-97,-98,-101,-131,-87,-72,55,-53,55,-100,-126,-166,-167,-335,-146,-147,-73,55,-89,55,-30,55,-149,-336,55,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-74,-69,-35,-36,55,55,-168,-151,-153,-148,-127,55,-174,-175,-218,-217,-234,-81,-84,55,-230,-231,-233,-31,-34,55,55,-169,-170,-150,-152,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'TYPEDEF':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,94,95,99,102,104,116,117,119,120,121,125,126,127,135,178,189,203,205,218,219,220,221,222,223,224,225,226,227,228,229,248,262,307,308,309,318,326,330,332,333,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[56,56,-60,-62,-63,-64,-65,-66,-67,56,56,-70,-71,-52,56,56,56,-125,-99,56,-29,-104,-122,-123,-124,56,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,56,-88,56,56,-131,56,-95,-96,-97,-98,-101,-131,-87,-72,56,-53,56,-100,-126,-166,-167,-335,-146,-147,-73,56,-89,56,-30,56,-149,-336,56,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-74,-69,-35,-36,56,56,-168,-151,-153,-148,-127,56,-174,-175,-218,-217,-234,-81,-84,56,-230,-231,-233,-31,-34,56,56,-169,-170,-150,-152,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'_THREAD_LOCAL':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,94,95,99,102,104,116,117,119,120,121,125,126,127,135,178,189,203,205,218,219,220,221,222,223,224,225,226,227,228,229,248,262,307,308,309,318,326,330,332,333,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[57,57,-60,-62,-63,-64,-65,-66,-67,57,57,-70,-71,-52,57,57,57,-125,-99,57,-29,-104,-122,-123,-124,57,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,57,-88,57,57,-131,57,-95,-96,-97,-98,-101,-131,-87,-72,57,-53,57,-100,-126,-166,-167,-335,-146,-147,-73,57,-89,57,-30,57,-149,-336,57,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-74,-69,-35,-36,57,57,-168,-151,-153,-148,-127,57,-174,-175,-218,-217,-234,-81,-84,57,-230,-231,-233,-31,-34,57,57,-169,-170,-150,-152,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'INLINE':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,94,95,99,102,104,116,117,119,120,121,125,126,127,135,178,189,203,205,218,219,220,221,222,223,224,225,226,227,228,229,248,262,307,308,309,318,326,330,332,333,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[58,58,-60,-62,-63,-64,-65,-66,-67,58,58,-70,-71,-52,58,58,58,-125,-99,58,-29,-104,-122,-123,-124,58,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,58,-88,58,58,-131,58,-95,-96,-97,-98,-101,-131,-87,-72,58,-53,58,-100,-126,-166,-167,-335,-146,-147,-73,58,-89,58,-30,58,-149,-336,58,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-74,-69,-35,-36,58,58,-168,-151,-153,-148,-127,58,-174,-175,-218,-217,-234,-81,-84,58,-230,-231,-233,-31,-34,58,58,-169,-170,-150,-152,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'_NORETURN':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,94,95,99,102,104,116,117,119,120,121,125,126,127,135,178,189,203,205,218,219,220,221,222,223,224,225,226,227,228,229,248,262,307,308,309,318,326,330,332,333,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[59,59,-60,-62,-63,-64,-65,-66,-67,59,59,-70,-71,-52,59,59,59,-125,-99,59,-29,-104,-122,-123,-124,59,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,59,-88,59,59,-131,59,-95,-96,-97,-98,-101,-131,-87,-72,59,-53,59,-100,-126,-166,-167,-335,-146,-147,-73,59,-89,59,-30,59,-149,-336,59,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-74,-69,-35,-36,59,59,-168,-151,-153,-148,-127,59,-174,-175,-218,-217,-234,-81,-84,59,-230,-231,-233,-31,-34,59,59,-169,-170,-150,-152,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'_ALIGNAS':([0,2,4,5,6,7,8,9,10,11,12,14,15,18,20,21,22,23,24,26,27,28,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,63,66,67,68,70,71,72,73,74,75,76,77,80,89,90,94,95,99,102,104,116,117,119,120,121,122,123,124,125,126,127,135,136,178,189,200,201,202,203,204,205,206,207,208,209,211,213,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,326,329,330,331,332,333,334,336,337,338,344,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,454,455,458,459,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[60,60,-60,-62,-63,-64,-65,-66,-67,60,60,-70,-71,-52,60,60,60,-125,-99,60,-29,-104,-122,-123,-124,60,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,60,-88,60,60,-131,60,-95,-96,-97,-98,-101,-131,-87,-72,60,-53,60,-100,-126,-166,-167,-335,-146,-147,60,60,60,-73,60,-89,60,60,-30,60,60,60,60,-149,-156,-336,60,-159,-160,-142,-144,60,60,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,60,-74,-69,60,60,60,60,-35,-36,60,60,-168,60,-151,60,-153,-148,-157,-140,-141,-145,-143,-127,60,-174,-175,-218,-217,-234,-81,-84,60,-230,-231,-233,-31,-34,60,60,-169,-170,-150,-152,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'STRUCT':([0,2,4,5,6,7,8,9,10,11,14,15,18,20,21,22,25,26,27,28,33,49,50,51,52,53,54,55,56,57,58,59,63,66,67,69,70,71,72,89,90,94,95,96,97,98,99,100,101,110,114,115,119,122,123,124,125,126,127,135,136,178,190,194,200,201,202,204,205,207,208,210,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,329,331,334,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[61,61,-60,-62,-63,-64,-65,-66,-67,61,-70,-71,-52,-337,-337,-337,61,-337,-29,-104,-337,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,61,-88,61,-337,-131,61,-87,-72,61,-53,-90,-9,-10,-337,-91,-92,-94,-182,-93,-335,61,61,61,-73,61,-89,61,61,-30,61,-183,61,61,61,-156,-336,-159,-160,61,61,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,61,-74,-69,61,61,61,61,-35,-36,61,61,61,61,-157,-127,61,-174,-175,-218,-217,-234,-81,-84,61,-230,-231,-233,-31,-34,61,61,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'UNION':([0,2,4,5,6,7,8,9,10,11,14,15,18,20,21,22,25,26,27,28,33,49,50,51,52,53,54,55,56,57,58,59,63,66,67,69,70,71,72,89,90,94,95,96,97,98,99,100,101,110,114,115,119,122,123,124,125,126,127,135,136,178,190,194,200,201,202,204,205,207,208,210,218,219,220,221,222,223,224,225,226,227,228,229,235,248,262,290,294,295,300,307,308,309,318,329,331,334,345,347,349,350,351,352,357,365,366,367,369,370,372,434,435,444,453,460,464,466,474,477,478,493,502,503,518,546,547,548,549,572,573,578,579,],[62,62,-60,-62,-63,-64,-65,-66,-67,62,-70,-71,-52,-337,-337,-337,62,-337,-29,-104,-337,-131,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-61,62,-88,62,-337,-131,62,-87,-72,62,-53,-90,-9,-10,-337,-91,-92,-94,-182,-93,-335,62,62,62,-73,62,-89,62,62,-30,62,-183,62,62,62,-156,-336,-159,-160,62,62,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,62,-74,-69,62,62,62,62,-35,-36,62,62,62,62,-157,-127,62,-174,-175,-218,-217,-234,-81,-84,62,-230,-231,-233,-31,-34,62,62,-158,-219,-221,-83,-229,-232,-68,-32,-33,-220,-222,-84,-224,-225,-223,-226,-228,-227,]),'LBRACE':([11,15,18,27,35,36,61,62,64,65,66,67,72,89,90,95,116,117,119,120,121,126,127,129,133,178,192,205,218,219,220,221,222,223,224,225,226,227,228,229,235,239,253,262,307,308,351,352,354,356,357,365,366,369,370,372,387,388,389,400,434,435,464,465,466,469,474,477,478,481,483,492,493,498,499,502,503,518,519,520,521,526,527,546,547,548,549,555,563,572,573,575,577,578,579,],[-337,-71,-52,-29,119,119,-154,-155,119,-7,-8,-88,-337,-87,-72,-53,119,119,-335,119,119,119,-89,119,119,-30,119,-336,119,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,119,119,-337,-69,-35,-36,-218,-217,119,119,-234,119,-84,-230,-231,-233,-11,119,-12,119,-31,-34,-219,119,-221,119,-83,-229,-232,-337,-198,-337,-68,119,119,-32,-33,-220,119,119,119,119,-11,-222,-84,-224,-225,-337,119,-223,-226,119,119,-228,-227,]),'RBRACE':([15,89,90,119,122,126,138,139,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,197,198,199,200,201,202,204,205,207,208,216,217,218,219,220,221,222,223,224,225,226,227,228,229,246,247,252,253,262,263,287,288,289,291,292,293,296,297,298,299,324,325,327,329,331,334,351,352,357,365,366,369,370,372,385,386,387,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,456,457,460,464,466,468,474,477,478,479,480,481,482,491,493,495,496,499,500,518,525,531,532,546,547,548,549,553,554,555,556,567,572,573,578,579,],[-71,-87,-72,-335,205,-337,-303,-252,-253,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,205,-171,-176,205,205,205,-156,-336,-159,-160,205,-5,-6,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-239,-274,-193,-337,-69,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,205,205,-172,205,205,-157,-218,-217,-234,-81,-84,-230,-231,-233,205,-22,-21,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,-292,-293,-294,-295,-296,-173,-177,-158,-219,-221,-237,-83,-229,-232,-240,-194,205,-196,-275,-68,-290,-291,-281,-282,-220,-195,205,-254,-222,-84,-224,-225,-197,-299,205,-306,-300,-223,-226,-228,-227,]),'CASE':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,231,-336,231,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,231,-69,-218,-217,231,231,-234,231,-84,-230,-231,-233,-219,231,-221,-83,-229,-232,-68,-220,231,231,231,-222,-84,-224,-225,231,-223,-226,231,231,-228,-227,]),'DEFAULT':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,232,-336,232,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,232,-69,-218,-217,232,232,-234,232,-84,-230,-231,-233,-219,232,-221,-83,-229,-232,-68,-220,232,232,232,-222,-84,-224,-225,232,-223,-226,232,232,-228,-227,]),'IF':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,234,-336,234,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,234,-69,-218,-217,234,234,-234,234,-84,-230,-231,-233,-219,234,-221,-83,-229,-232,-68,-220,234,234,234,-222,-84,-224,-225,234,-223,-226,234,234,-228,-227,]),'SWITCH':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,237,-336,237,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,237,-69,-218,-217,237,237,-234,237,-84,-230,-231,-233,-219,237,-221,-83,-229,-232,-68,-220,237,237,237,-222,-84,-224,-225,237,-223,-226,237,237,-228,-227,]),'WHILE':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,364,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,238,-336,238,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,238,-69,-218,-217,238,238,-234,473,238,-84,-230,-231,-233,-219,238,-221,-83,-229,-232,-68,-220,238,238,238,-222,-84,-224,-225,238,-223,-226,238,238,-228,-227,]),'DO':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,239,-336,239,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,239,-69,-218,-217,239,239,-234,239,-84,-230,-231,-233,-219,239,-221,-83,-229,-232,-68,-220,239,239,239,-222,-84,-224,-225,239,-223,-226,239,239,-228,-227,]),'FOR':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,240,-336,240,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,240,-69,-218,-217,240,240,-234,240,-84,-230,-231,-233,-219,240,-221,-83,-229,-232,-68,-220,240,240,240,-222,-84,-224,-225,240,-223,-226,240,240,-228,-227,]),'GOTO':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,241,-336,241,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,241,-69,-218,-217,241,241,-234,241,-84,-230,-231,-233,-219,241,-221,-83,-229,-232,-68,-220,241,241,241,-222,-84,-224,-225,241,-223,-226,241,241,-228,-227,]),'BREAK':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,242,-336,242,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,242,-69,-218,-217,242,242,-234,242,-84,-230,-231,-233,-219,242,-221,-83,-229,-232,-68,-220,242,242,242,-222,-84,-224,-225,242,-223,-226,242,242,-228,-227,]),'CONTINUE':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,243,-336,243,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,243,-69,-218,-217,243,243,-234,243,-84,-230,-231,-233,-219,243,-221,-83,-229,-232,-68,-220,243,243,243,-222,-84,-224,-225,243,-223,-226,243,243,-228,-227,]),'RETURN':([15,89,90,119,126,205,218,219,220,221,222,223,224,225,226,227,228,229,239,262,351,352,354,356,357,365,366,369,370,372,464,465,466,474,477,478,493,518,519,520,521,546,547,548,549,563,572,573,575,577,578,579,],[-71,-87,-72,-335,244,-336,244,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,244,-69,-218,-217,244,244,-234,244,-84,-230,-231,-233,-219,244,-221,-83,-229,-232,-68,-220,244,244,244,-222,-84,-224,-225,244,-223,-226,244,244,-228,-227,]),'PLUSPLUS':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,138,142,143,144,145,147,148,149,150,151,153,154,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,230,231,235,239,244,253,254,255,256,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,287,288,290,294,296,297,298,299,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,401,424,426,427,428,429,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,495,496,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,554,555,556,558,563,565,567,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,148,-337,-27,-28,-182,-335,148,148,148,-337,148,-303,-284,-285,-286,-283,287,148,148,148,148,-289,-312,-287,-288,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,148,-337,-28,148,-183,-336,148,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-312,148,148,148,148,-337,148,-337,-28,-69,-326,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,148,-297,-298,148,148,-331,-332,-333,-334,-284,148,148,-337,148,148,-218,-217,148,148,-234,148,148,148,148,148,-84,148,-230,-231,-233,148,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,148,-12,148,-284,148,148,148,-305,-292,-293,-294,-295,-296,-337,148,148,148,-219,148,-221,148,-83,148,-229,-232,-337,-198,-337,-68,148,-290,-291,148,148,-337,-28,-284,-220,148,148,148,148,148,148,-11,-284,148,148,-222,-84,-224,-225,148,-299,-337,-306,148,148,148,-300,-223,-226,148,148,-228,-227,]),'MINUSMINUS':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,138,142,143,144,145,147,148,149,150,151,153,154,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,230,231,235,239,244,253,254,255,256,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,287,288,290,294,296,297,298,299,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,401,424,426,427,428,429,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,495,496,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,554,555,556,558,563,565,567,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,149,-337,-27,-28,-182,-335,149,149,149,-337,149,-303,-284,-285,-286,-283,288,149,149,149,149,-289,-312,-287,-288,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,149,-337,-28,149,-183,-336,149,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-312,149,149,149,149,-337,149,-337,-28,-69,-326,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,149,-297,-298,149,149,-331,-332,-333,-334,-284,149,149,-337,149,149,-218,-217,149,149,-234,149,149,149,149,149,-84,149,-230,-231,-233,149,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,149,-12,149,-284,149,149,149,-305,-292,-293,-294,-295,-296,-337,149,149,149,-219,149,-221,149,-83,149,-229,-232,-337,-198,-337,-68,149,-290,-291,149,149,-337,-28,-284,-220,149,149,149,149,149,149,-11,-284,149,149,-222,-84,-224,-225,149,-299,-337,-306,149,149,149,-300,-223,-226,149,149,-228,-227,]),'SIZEOF':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,151,-337,-27,-28,-182,-335,151,151,151,-337,151,-284,-285,-286,-283,151,151,151,151,-287,-288,151,-337,-28,151,-183,-336,151,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,151,151,151,151,-337,151,-337,-28,-69,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,151,-284,151,151,-337,151,151,-218,-217,151,151,-234,151,151,151,151,151,-84,151,-230,-231,-233,151,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,151,-12,151,-284,151,151,151,-337,151,151,151,-219,151,-221,151,-83,151,-229,-232,-337,-198,-337,-68,151,151,151,-337,-28,-284,-220,151,151,151,151,151,151,-11,-284,151,151,-222,-84,-224,-225,151,-337,151,151,151,-223,-226,151,151,-228,-227,]),'_ALIGNOF':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,152,-337,-27,-28,-182,-335,152,152,152,-337,152,-284,-285,-286,-283,152,152,152,152,-287,-288,152,-337,-28,152,-183,-336,152,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,152,152,152,152,-337,152,-337,-28,-69,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,152,-284,152,152,-337,152,152,-218,-217,152,152,-234,152,152,152,152,152,-84,152,-230,-231,-233,152,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,152,-12,152,-284,152,152,152,-337,152,152,152,-219,152,-221,152,-83,152,-229,-232,-337,-198,-337,-68,152,152,152,-337,-28,-284,-220,152,152,152,152,152,152,-11,-284,152,152,-222,-84,-224,-225,152,-337,152,152,152,-223,-226,152,152,-228,-227,]),'AND':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,138,140,141,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,230,231,235,239,244,247,253,254,255,256,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,287,288,289,290,291,292,293,294,296,297,298,299,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,443,450,452,462,464,465,466,469,474,476,477,478,481,483,491,492,493,494,495,496,497,499,500,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,554,555,556,558,563,565,567,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,145,-337,-27,-28,-182,-335,145,145,145,-337,145,-303,278,-255,-284,-285,-286,-283,-274,-276,145,145,145,145,-289,-312,-287,-288,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,145,-337,-28,145,-183,-336,145,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-312,145,145,145,145,-274,-337,145,-337,-28,-69,-326,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,145,-297,-298,-277,145,-278,-279,-280,145,-331,-332,-333,-334,-284,145,145,-337,145,145,-218,-217,145,145,-234,145,145,145,145,145,-84,145,-230,-231,-233,145,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,145,-12,145,-284,145,145,145,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,278,278,278,278,-292,-293,-294,-295,-296,-337,145,145,145,-219,145,-221,145,-83,145,-229,-232,-337,-198,-275,-337,-68,145,-290,-291,145,-281,-282,145,-337,-28,-284,-220,145,145,145,145,145,145,-11,-284,145,145,-222,-84,-224,-225,145,-299,-337,-306,145,145,145,-300,-223,-226,145,145,-228,-227,]),'PLUS':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,138,140,141,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,230,231,235,239,244,247,253,254,255,256,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,287,288,289,290,291,292,293,294,296,297,298,299,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,443,450,452,462,464,465,466,469,474,476,477,478,481,483,491,492,493,494,495,496,497,499,500,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,554,555,556,558,563,565,567,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,143,-337,-27,-28,-182,-335,143,143,143,-337,143,-303,268,-255,-284,-285,-286,-283,-274,-276,143,143,143,143,-289,-312,-287,-288,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,143,-337,-28,143,-183,-336,143,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-312,143,143,143,143,-274,-337,143,-337,-28,-69,-326,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,143,-297,-298,-277,143,-278,-279,-280,143,-331,-332,-333,-334,-284,143,143,-337,143,143,-218,-217,143,143,-234,143,143,143,143,143,-84,143,-230,-231,-233,143,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,143,-12,143,-284,143,143,143,-305,-256,-257,-258,-259,-260,268,268,268,268,268,268,268,268,268,268,268,268,268,-292,-293,-294,-295,-296,-337,143,143,143,-219,143,-221,143,-83,143,-229,-232,-337,-198,-275,-337,-68,143,-290,-291,143,-281,-282,143,-337,-28,-284,-220,143,143,143,143,143,143,-11,-284,143,143,-222,-84,-224,-225,143,-299,-337,-306,143,143,143,-300,-223,-226,143,143,-228,-227,]),'MINUS':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,138,140,141,142,143,144,145,146,147,148,149,150,151,153,154,155,156,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,230,231,235,239,244,247,253,254,255,256,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,287,288,289,290,291,292,293,294,296,297,298,299,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,443,450,452,462,464,465,466,469,474,476,477,478,481,483,491,492,493,494,495,496,497,499,500,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,554,555,556,558,563,565,567,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,144,-337,-27,-28,-182,-335,144,144,144,-337,144,-303,269,-255,-284,-285,-286,-283,-274,-276,144,144,144,144,-289,-312,-287,-288,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,144,-337,-28,144,-183,-336,144,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,-312,144,144,144,144,-274,-337,144,-337,-28,-69,-326,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,144,-297,-298,-277,144,-278,-279,-280,144,-331,-332,-333,-334,-284,144,144,-337,144,144,-218,-217,144,144,-234,144,144,144,144,144,-84,144,-230,-231,-233,144,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,144,-12,144,-284,144,144,144,-305,-256,-257,-258,-259,-260,269,269,269,269,269,269,269,269,269,269,269,269,269,-292,-293,-294,-295,-296,-337,144,144,144,-219,144,-221,144,-83,144,-229,-232,-337,-198,-275,-337,-68,144,-290,-291,144,-281,-282,144,-337,-28,-284,-220,144,144,144,144,144,144,-11,-284,144,144,-222,-84,-224,-225,144,-299,-337,-306,144,144,144,-300,-223,-226,144,144,-228,-227,]),'NOT':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,155,-337,-27,-28,-182,-335,155,155,155,-337,155,-284,-285,-286,-283,155,155,155,155,-287,-288,155,-337,-28,155,-183,-336,155,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,155,155,155,155,-337,155,-337,-28,-69,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,155,-284,155,155,-337,155,155,-218,-217,155,155,-234,155,155,155,155,155,-84,155,-230,-231,-233,155,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,155,-12,155,-284,155,155,155,-337,155,155,155,-219,155,-221,155,-83,155,-229,-232,-337,-198,-337,-68,155,155,155,-337,-28,-284,-220,155,155,155,155,155,155,-11,-284,155,155,-222,-84,-224,-225,155,-337,155,155,155,-223,-226,155,155,-228,-227,]),'LNOT':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,156,-337,-27,-28,-182,-335,156,156,156,-337,156,-284,-285,-286,-283,156,156,156,156,-287,-288,156,-337,-28,156,-183,-336,156,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,156,156,156,156,-337,156,-337,-28,-69,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,156,-284,156,156,-337,156,156,-218,-217,156,156,-234,156,156,156,156,156,-84,156,-230,-231,-233,156,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,156,-12,156,-284,156,156,156,-337,156,156,156,-219,156,-221,156,-83,156,-229,-232,-337,-198,-337,-68,156,156,156,-337,-28,-284,-220,156,156,156,156,156,156,-11,-284,156,156,-222,-84,-224,-225,156,-337,156,156,156,-223,-226,156,156,-228,-227,]),'OFFSETOF':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,160,-337,-27,-28,-182,-335,160,160,160,-337,160,-284,-285,-286,-283,160,160,160,160,-287,-288,160,-337,-28,160,-183,-336,160,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,160,160,160,160,-337,160,-337,-28,-69,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,160,-284,160,160,-337,160,160,-218,-217,160,160,-234,160,160,160,160,160,-84,160,-230,-231,-233,160,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,160,-12,160,-284,160,160,160,-337,160,160,160,-219,160,-221,160,-83,160,-229,-232,-337,-198,-337,-68,160,160,160,-337,-28,-284,-220,160,160,160,160,160,160,-11,-284,160,160,-222,-84,-224,-225,160,-337,160,160,160,-223,-226,160,160,-228,-227,]),'INT_CONST_DEC':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,161,-337,-27,-28,-182,-335,161,161,161,-337,161,-284,-285,-286,-283,161,161,161,161,-287,-288,161,-337,-28,161,-183,-336,161,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,161,161,161,161,-337,161,-337,-28,-69,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,161,-284,161,161,-337,161,161,-218,-217,161,161,-234,161,161,161,161,161,-84,161,-230,-231,-233,161,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,161,-12,161,-284,161,161,161,-337,161,161,161,-219,161,-221,161,-83,161,-229,-232,-337,-198,-337,-68,161,161,161,-337,-28,-284,-220,161,161,161,161,161,161,-11,-284,161,161,-222,-84,-224,-225,161,-337,161,161,161,-223,-226,161,161,-228,-227,]),'INT_CONST_OCT':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,162,-337,-27,-28,-182,-335,162,162,162,-337,162,-284,-285,-286,-283,162,162,162,162,-287,-288,162,-337,-28,162,-183,-336,162,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,162,162,162,162,-337,162,-337,-28,-69,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,162,-284,162,162,-337,162,162,-218,-217,162,162,-234,162,162,162,162,162,-84,162,-230,-231,-233,162,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,162,-12,162,-284,162,162,162,-337,162,162,162,-219,162,-221,162,-83,162,-229,-232,-337,-198,-337,-68,162,162,162,-337,-28,-284,-220,162,162,162,162,162,162,-11,-284,162,162,-222,-84,-224,-225,162,-337,162,162,162,-223,-226,162,162,-228,-227,]),'INT_CONST_HEX':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,163,-337,-27,-28,-182,-335,163,163,163,-337,163,-284,-285,-286,-283,163,163,163,163,-287,-288,163,-337,-28,163,-183,-336,163,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,163,163,163,163,-337,163,-337,-28,-69,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,163,-284,163,163,-337,163,163,-218,-217,163,163,-234,163,163,163,163,163,-84,163,-230,-231,-233,163,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,163,-12,163,-284,163,163,163,-337,163,163,163,-219,163,-221,163,-83,163,-229,-232,-337,-198,-337,-68,163,163,163,-337,-28,-284,-220,163,163,163,163,163,163,-11,-284,163,163,-222,-84,-224,-225,163,-337,163,163,163,-223,-226,163,163,-228,-227,]),'INT_CONST_BIN':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,164,-337,-27,-28,-182,-335,164,164,164,-337,164,-284,-285,-286,-283,164,164,164,164,-287,-288,164,-337,-28,164,-183,-336,164,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,164,164,164,164,-337,164,-337,-28,-69,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,164,-284,164,164,-337,164,164,-218,-217,164,164,-234,164,164,164,164,164,-84,164,-230,-231,-233,164,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,164,-12,164,-284,164,164,164,-337,164,164,164,-219,164,-221,164,-83,164,-229,-232,-337,-198,-337,-68,164,164,164,-337,-28,-284,-220,164,164,164,164,164,164,-11,-284,164,164,-222,-84,-224,-225,164,-337,164,164,164,-223,-226,164,164,-228,-227,]),'INT_CONST_CHAR':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,165,-337,-27,-28,-182,-335,165,165,165,-337,165,-284,-285,-286,-283,165,165,165,165,-287,-288,165,-337,-28,165,-183,-336,165,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,165,165,165,165,-337,165,-337,-28,-69,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,165,-284,165,165,-337,165,165,-218,-217,165,165,-234,165,165,165,165,165,-84,165,-230,-231,-233,165,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,165,-12,165,-284,165,165,165,-337,165,165,165,-219,165,-221,165,-83,165,-229,-232,-337,-198,-337,-68,165,165,165,-337,-28,-284,-220,165,165,165,165,165,165,-11,-284,165,165,-222,-84,-224,-225,165,-337,165,165,165,-223,-226,165,165,-228,-227,]),'FLOAT_CONST':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,166,-337,-27,-28,-182,-335,166,166,166,-337,166,-284,-285,-286,-283,166,166,166,166,-287,-288,166,-337,-28,166,-183,-336,166,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,166,166,166,166,-337,166,-337,-28,-69,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,166,-284,166,166,-337,166,166,-218,-217,166,166,-234,166,166,166,166,166,-84,166,-230,-231,-233,166,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,166,-12,166,-284,166,166,166,-337,166,166,166,-219,166,-221,166,-83,166,-229,-232,-337,-198,-337,-68,166,166,166,-337,-28,-284,-220,166,166,166,166,166,166,-11,-284,166,166,-222,-84,-224,-225,166,-337,166,166,166,-223,-226,166,166,-228,-227,]),'HEX_FLOAT_CONST':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,167,-337,-27,-28,-182,-335,167,167,167,-337,167,-284,-285,-286,-283,167,167,167,167,-287,-288,167,-337,-28,167,-183,-336,167,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,167,167,167,167,-337,167,-337,-28,-69,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,167,-284,167,167,-337,167,167,-218,-217,167,167,-234,167,167,167,167,167,-84,167,-230,-231,-233,167,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,167,-12,167,-284,167,167,167,-337,167,167,167,-219,167,-221,167,-83,167,-229,-232,-337,-198,-337,-68,167,167,167,-337,-28,-284,-220,167,167,167,167,167,167,-11,-284,167,167,-222,-84,-224,-225,167,-337,167,167,167,-223,-226,167,167,-228,-227,]),'CHAR_CONST':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,168,-337,-27,-28,-182,-335,168,168,168,-337,168,-284,-285,-286,-283,168,168,168,168,-287,-288,168,-337,-28,168,-183,-336,168,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,168,168,168,168,-337,168,-337,-28,-69,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,168,-284,168,168,-337,168,168,-218,-217,168,168,-234,168,168,168,168,168,-84,168,-230,-231,-233,168,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,168,-12,168,-284,168,168,168,-337,168,168,168,-219,168,-221,168,-83,168,-229,-232,-337,-198,-337,-68,168,168,168,-337,-28,-284,-220,168,168,168,168,168,168,-11,-284,168,168,-222,-84,-224,-225,168,-337,168,168,168,-223,-226,168,168,-228,-227,]),'WCHAR_CONST':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,169,-337,-27,-28,-182,-335,169,169,169,-337,169,-284,-285,-286,-283,169,169,169,169,-287,-288,169,-337,-28,169,-183,-336,169,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,169,169,169,169,-337,169,-337,-28,-69,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,169,-284,169,169,-337,169,169,-218,-217,169,169,-234,169,169,169,169,169,-84,169,-230,-231,-233,169,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,169,-12,169,-284,169,169,169,-337,169,169,169,-219,169,-221,169,-83,169,-229,-232,-337,-198,-337,-68,169,169,169,-337,-28,-284,-220,169,169,169,169,169,169,-11,-284,169,169,-222,-84,-224,-225,169,-337,169,169,169,-223,-226,169,169,-228,-227,]),'U8CHAR_CONST':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,170,-337,-27,-28,-182,-335,170,170,170,-337,170,-284,-285,-286,-283,170,170,170,170,-287,-288,170,-337,-28,170,-183,-336,170,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,170,170,170,170,-337,170,-337,-28,-69,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,170,-284,170,170,-337,170,170,-218,-217,170,170,-234,170,170,170,170,170,-84,170,-230,-231,-233,170,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,170,-12,170,-284,170,170,170,-337,170,170,170,-219,170,-221,170,-83,170,-229,-232,-337,-198,-337,-68,170,170,170,-337,-28,-284,-220,170,170,170,170,170,170,-11,-284,170,170,-222,-84,-224,-225,170,-337,170,170,170,-223,-226,170,170,-228,-227,]),'U16CHAR_CONST':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,171,-337,-27,-28,-182,-335,171,171,171,-337,171,-284,-285,-286,-283,171,171,171,171,-287,-288,171,-337,-28,171,-183,-336,171,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,171,171,171,171,-337,171,-337,-28,-69,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,171,-284,171,171,-337,171,171,-218,-217,171,171,-234,171,171,171,171,171,-84,171,-230,-231,-233,171,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,171,-12,171,-284,171,171,171,-337,171,171,171,-219,171,-221,171,-83,171,-229,-232,-337,-198,-337,-68,171,171,171,-337,-28,-284,-220,171,171,171,171,171,171,-11,-284,171,171,-222,-84,-224,-225,171,-337,171,171,171,-223,-226,171,171,-228,-227,]),'U32CHAR_CONST':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,172,-337,-27,-28,-182,-335,172,172,172,-337,172,-284,-285,-286,-283,172,172,172,172,-287,-288,172,-337,-28,172,-183,-336,172,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,172,172,172,172,-337,172,-337,-28,-69,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,172,-284,172,172,-337,172,172,-218,-217,172,172,-234,172,172,172,172,172,-84,172,-230,-231,-233,172,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,172,-12,172,-284,172,172,172,-337,172,172,172,-219,172,-221,172,-83,172,-229,-232,-337,-198,-337,-68,172,172,172,-337,-28,-284,-220,172,172,172,172,172,172,-11,-284,172,172,-222,-84,-224,-225,172,-337,172,172,172,-223,-226,172,172,-228,-227,]),'STRING_LITERAL':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,138,142,143,144,145,148,149,150,151,155,156,173,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,402,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,173,-337,-27,-28,-182,-335,173,173,173,-337,173,263,-284,-285,-286,-283,173,173,173,173,-287,-288,-325,173,-337,-28,173,-183,-336,173,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,173,173,173,173,-337,173,-337,-28,173,-69,-326,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,173,-284,173,173,-337,173,173,-218,-217,173,173,-234,173,173,173,173,173,-84,173,-230,-231,-233,173,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,173,-12,173,-284,173,173,173,263,-337,173,173,173,-219,173,-221,173,-83,173,-229,-232,-337,-198,-337,-68,173,173,173,-337,-28,-284,-220,173,173,173,173,173,173,-11,-284,173,173,-222,-84,-224,-225,173,-337,173,173,173,-223,-226,173,173,-228,-227,]),'WSTRING_LITERAL':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,159,174,175,176,177,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,296,297,298,299,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,174,-337,-27,-28,-182,-335,174,174,174,-337,174,-284,-285,-286,-283,174,174,174,174,-287,-288,296,-327,-328,-329,-330,174,-337,-28,174,-183,-336,174,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,174,174,174,174,-337,174,-337,-28,-69,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,174,-331,-332,-333,-334,-284,174,174,-337,174,174,-218,-217,174,174,-234,174,174,174,174,174,-84,174,-230,-231,-233,174,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,174,-12,174,-284,174,174,174,-337,174,174,174,-219,174,-221,174,-83,174,-229,-232,-337,-198,-337,-68,174,174,174,-337,-28,-284,-220,174,174,174,174,174,174,-11,-284,174,174,-222,-84,-224,-225,174,-337,174,174,174,-223,-226,174,174,-228,-227,]),'U8STRING_LITERAL':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,159,174,175,176,177,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,296,297,298,299,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,175,-337,-27,-28,-182,-335,175,175,175,-337,175,-284,-285,-286,-283,175,175,175,175,-287,-288,297,-327,-328,-329,-330,175,-337,-28,175,-183,-336,175,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,175,175,175,175,-337,175,-337,-28,-69,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,175,-331,-332,-333,-334,-284,175,175,-337,175,175,-218,-217,175,175,-234,175,175,175,175,175,-84,175,-230,-231,-233,175,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,175,-12,175,-284,175,175,175,-337,175,175,175,-219,175,-221,175,-83,175,-229,-232,-337,-198,-337,-68,175,175,175,-337,-28,-284,-220,175,175,175,175,175,175,-11,-284,175,175,-222,-84,-224,-225,175,-337,175,175,175,-223,-226,175,175,-228,-227,]),'U16STRING_LITERAL':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,159,174,175,176,177,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,296,297,298,299,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,176,-337,-27,-28,-182,-335,176,176,176,-337,176,-284,-285,-286,-283,176,176,176,176,-287,-288,298,-327,-328,-329,-330,176,-337,-28,176,-183,-336,176,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,176,176,176,176,-337,176,-337,-28,-69,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,176,-331,-332,-333,-334,-284,176,176,-337,176,176,-218,-217,176,176,-234,176,176,176,176,176,-84,176,-230,-231,-233,176,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,176,-12,176,-284,176,176,176,-337,176,176,176,-219,176,-221,176,-83,176,-229,-232,-337,-198,-337,-68,176,176,176,-337,-28,-284,-220,176,176,176,176,176,176,-11,-284,176,176,-222,-84,-224,-225,176,-337,176,176,176,-223,-226,176,176,-228,-227,]),'U32STRING_LITERAL':([15,50,51,52,80,89,90,91,93,112,113,114,119,124,126,133,134,136,142,143,144,145,148,149,150,151,155,156,159,174,175,176,177,179,180,181,192,194,205,218,219,220,221,222,223,224,225,226,227,228,229,231,235,239,244,253,254,255,256,262,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,296,297,298,299,302,305,306,319,328,343,351,352,354,356,357,358,361,362,363,365,366,367,369,370,372,373,374,375,376,377,378,379,380,381,382,383,384,387,388,389,392,395,396,397,400,443,450,452,462,464,465,466,469,474,476,477,478,481,483,492,493,494,497,504,505,506,514,518,519,520,521,522,523,526,527,537,538,539,546,547,548,549,552,555,558,563,565,572,573,575,577,578,579,],[-71,-128,-129,-130,-131,-87,-72,177,-337,-27,-28,-182,-335,177,177,177,-337,177,-284,-285,-286,-283,177,177,177,177,-287,-288,299,-327,-328,-329,-330,177,-337,-28,177,-183,-336,177,-216,-214,-215,-75,-76,-77,-78,-79,-80,-81,-82,177,177,177,177,-337,177,-337,-28,-69,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,177,-331,-332,-333,-334,-284,177,177,-337,177,177,-218,-217,177,177,-234,177,177,177,177,177,-84,177,-230,-231,-233,177,-241,-242,-243,-244,-245,-246,-247,-248,-249,-250,-251,-11,177,-12,177,-284,177,177,177,-337,177,177,177,-219,177,-221,177,-83,177,-229,-232,-337,-198,-337,-68,177,177,177,-337,-28,-284,-220,177,177,177,177,177,177,-11,-284,177,177,-222,-84,-224,-225,177,-337,177,177,177,-223,-226,177,177,-228,-227,]),'ELSE':([15,90,205,222,223,224,225,226,227,228,229,262,351,357,365,366,369,370,372,464,466,474,477,478,493,518,546,547,548,549,572,573,578,579,],[-71,-72,-336,-75,-76,-77,-78,-79,-80,-81,-82,-69,-218,-234,-81,-84,-230,-231,-233,-219,-221,-83,-229,-232,-68,-220,-222,563,-224,-225,-223,-226,-228,-227,]),'PPPRAGMASTR':([15,],[90,]),'EQUALS':([18,27,72,85,86,87,88,95,109,128,130,138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,199,205,230,247,249,263,287,288,289,291,292,293,296,297,298,299,307,308,390,391,398,399,401,424,426,427,428,429,434,435,484,486,487,488,491,495,496,499,500,502,503,528,529,530,554,556,567,],[-52,-29,-178,133,-179,-54,-37,-53,192,-178,-55,-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-30,328,-336,-312,374,-38,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-35,-36,483,-199,-43,-44,-305,-292,-293,-294,-295,-296,-31,-34,-200,-202,-39,-42,-275,-290,-291,-281,-282,-32,-33,-201,-40,-41,-299,-306,-300,]),'COMMA':([18,23,24,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,50,51,52,53,54,55,56,57,58,59,72,73,74,75,76,77,80,83,84,85,86,87,88,95,102,104,106,108,109,111,112,113,114,116,117,120,121,128,130,137,138,139,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,184,186,187,188,189,193,194,197,198,199,203,205,209,211,213,230,236,245,246,247,249,250,251,252,260,263,287,288,289,291,292,293,296,297,298,299,307,308,311,312,313,314,315,316,317,320,321,322,323,324,325,326,327,330,332,333,336,337,338,340,341,342,344,345,346,348,349,350,371,386,398,399,401,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,429,433,434,435,439,440,441,442,454,455,456,457,458,459,463,467,468,470,471,472,479,480,482,487,488,491,495,496,499,500,502,503,509,510,512,516,517,525,529,530,531,532,533,540,541,542,543,544,545,550,553,554,556,559,560,567,569,570,571,],[-52,-125,-99,-29,-104,-337,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-178,-95,-96,-97,-98,-101,-131,132,-132,-134,-179,-54,-37,-53,-100,-126,191,-136,-138,-180,-27,-28,-182,-166,-167,-146,-147,-178,-55,261,-303,-252,-253,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-30,309,310,-186,-191,-337,-181,-183,327,-171,-176,-149,-336,-142,-144,-337,-312,361,-235,-239,-274,-38,-133,-135,-193,361,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-35,-36,-188,-189,-190,-204,-56,-1,-2,-45,-206,-137,-139,327,327,-168,-172,-151,-153,-148,-140,-141,-145,461,-161,-163,-143,-127,-203,-204,-174,-175,361,481,-43,-44,-305,361,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,361,497,-292,-310,-293,-294,-295,-296,501,-31,-34,-187,-192,-57,-205,-169,-170,-173,-177,-150,-152,-165,361,-237,-236,361,361,-240,-194,-196,-39,-42,-275,-290,-291,-281,-282,-32,-33,-207,-213,-211,-162,-164,-195,-40,-41,555,-254,-311,-50,-51,-209,-208,-210,-212,361,-197,-299,-306,-46,-49,-300,361,-47,-48,]),'RPAREN':([18,23,24,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,50,51,52,53,54,55,56,57,58,59,73,74,75,76,77,80,87,88,92,94,95,102,104,111,112,113,114,116,117,120,121,130,131,135,137,138,139,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,182,183,184,185,186,187,188,189,193,194,203,205,209,211,212,213,214,215,236,245,246,247,249,257,258,259,260,263,284,287,288,289,291,292,293,296,297,298,299,307,308,311,312,313,314,315,316,317,318,320,321,326,330,332,333,336,337,338,344,345,346,347,348,349,350,351,353,359,360,398,399,401,402,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,423,424,425,426,427,428,429,430,431,432,434,435,438,439,440,441,442,444,445,446,447,448,449,453,454,455,458,459,467,468,470,471,472,479,487,488,491,495,496,499,500,502,503,507,508,509,510,512,515,529,530,532,533,534,535,540,541,542,543,544,545,550,552,554,556,559,560,565,566,567,568,570,571,574,576,],[-52,-125,-99,-29,-104,-337,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-95,-96,-97,-98,-101,-131,-54,-37,178,-337,-53,-100,-126,-180,-27,-28,-182,-166,-167,-146,-147,-55,249,-337,262,-303,-252,-253,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-30,307,308,-184,-17,-18,-186,-191,-337,-181,-183,-149,-336,-142,-144,345,-337,349,350,-14,-235,-239,-274,-38,398,399,400,401,-326,424,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-35,-36,-188,-189,-190,-204,-56,-1,-2,-337,-45,-206,-168,-151,-153,-148,-140,-141,-145,-143,-127,-203,-337,-204,-174,-175,-218,-13,468,469,-43,-44,-305,493,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,496,-292,-310,-293,-294,-295,-296,498,499,500,-31,-34,-185,-187,-192,-57,-205,-337,509,510,-204,-23,-24,-337,-169,-170,-150,-152,519,-237,-236,520,521,-240,-39,-42,-275,-290,-291,-281,-282,-32,-33,540,541,-207,-213,-211,545,-40,-41,-254,-311,556,-307,-50,-51,-209,-208,-210,-212,564,-337,-299,-306,-46,-49,-337,575,-300,-308,-47,-48,577,-309,]),'COLON':([18,23,27,30,31,32,34,37,38,39,40,41,42,43,44,45,46,47,48,50,51,52,80,86,87,88,95,104,116,117,120,121,128,130,138,139,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,203,205,206,209,211,230,232,245,246,247,249,263,287,288,289,291,292,293,296,297,298,299,307,308,326,330,332,333,336,337,338,342,344,345,349,350,355,398,399,401,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,434,435,454,455,458,459,461,468,470,479,487,488,491,495,496,499,500,502,503,529,530,532,554,556,567,],[-52,-125,-29,-122,-123,-124,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-128,-129,-130,-131,-179,-54,-37,-53,-126,-166,-167,-146,-147,-178,-55,-303,-252,-253,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-30,-149,-336,343,-142,-144,354,356,-235,-239,-274,-38,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-35,-36,-168,-151,-153,-148,-140,-141,-145,462,-143,-127,-174,-175,465,-43,-44,-305,494,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,-292,-293,-294,-295,-296,-31,-34,-169,-170,-150,-152,343,-237,-236,-240,-39,-42,-275,-290,-291,-281,-282,-32,-33,-40,-41,-254,-299,-306,-300,]),'LBRACKET':([18,23,24,27,28,29,30,31,32,33,34,37,38,39,40,41,42,43,44,45,46,47,48,50,51,52,53,54,55,56,57,58,59,73,74,75,76,77,80,87,88,95,102,104,111,112,113,114,116,117,119,120,121,130,138,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,189,193,194,203,205,209,211,213,230,249,253,263,287,288,296,297,298,299,307,308,314,315,318,320,321,326,330,332,333,336,337,338,344,345,347,348,349,350,390,391,398,399,401,424,426,427,428,429,434,435,441,442,447,454,455,458,459,481,484,486,487,488,492,495,496,502,503,509,510,512,528,529,530,534,535,540,541,542,543,544,545,554,555,556,559,560,567,568,570,571,576,],[93,-125,-99,-29,-104,-337,-122,-123,-124,-126,-238,-110,-111,-112,-113,-114,-115,-116,-117,-118,-119,-120,-121,-128,-129,-130,-102,-103,-105,-106,-107,-108,-109,-95,-96,-97,-98,-101,-131,134,-37,93,-100,-126,-180,-27,-28,-182,-166,-167,-335,-146,-147,134,-303,283,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-30,319,-181,-183,-149,-336,-142,-144,319,-312,-38,392,-326,-297,-298,-331,-332,-333,-334,-35,-36,319,443,319,-45,452,-168,-151,-153,-148,-140,-141,-145,-143,-127,319,319,-174,-175,392,-199,-43,-44,-305,-292,-293,-294,-295,-296,-31,-34,443,452,319,-169,-170,-150,-152,392,-200,-202,-39,-42,392,-290,-291,-32,-33,-207,-213,-211,-201,-40,-41,558,-307,-50,-51,-209,-208,-210,-212,-299,392,-306,-46,-49,-300,-308,-47,-48,-309,]),'RBRACKET':([50,51,52,80,93,112,113,114,134,138,139,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,179,181,194,205,245,246,247,254,256,263,287,288,289,291,292,293,296,297,298,299,301,302,303,304,319,394,395,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,424,426,427,428,429,436,437,443,450,451,452,468,470,479,485,489,490,491,495,496,499,500,504,506,511,513,514,532,536,537,554,556,561,562,567,569,],[-128,-129,-130,-131,-337,-27,-28,-182,-337,-303,-252,-253,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-337,-28,-183,-336,-235,-239,-274,-337,-28,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,434,435,-3,-4,-337,487,488,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,495,-292,-293,-294,-295,-296,502,503,-337,-337,512,-337,-237,-236,-240,528,529,530,-275,-290,-291,-281,-282,-337,-28,542,543,544,-254,559,560,-299,-306,570,571,-300,576,]),'PERIOD':([119,138,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,253,263,287,288,296,297,298,299,390,391,401,424,426,427,428,429,481,484,486,492,495,496,528,534,535,554,555,556,567,568,576,],[-335,-303,285,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,393,-326,-297,-298,-331,-332,-333,-334,393,-199,-305,-292,-293,-294,-295,-296,393,-200,-202,393,-290,-291,-201,557,-307,-299,393,-306,-300,-308,-309,]),'ARROW':([138,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,263,287,288,296,297,298,299,401,424,426,427,428,429,495,496,554,556,567,],[-303,286,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-326,-297,-298,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-290,-291,-299,-306,-300,]),'CONDOP':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,264,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'DIVIDE':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,266,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,266,266,266,266,266,266,266,266,266,266,266,266,266,266,266,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'MOD':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,267,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,267,267,267,267,267,267,267,267,267,267,267,267,267,267,267,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'RSHIFT':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,270,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,270,270,270,270,270,270,270,270,270,270,270,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'LSHIFT':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,271,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,271,271,271,271,271,271,271,271,271,271,271,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'LT':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,272,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,272,272,272,272,272,272,272,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'LE':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,273,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,273,273,273,273,273,273,273,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'GE':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,274,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,274,274,274,274,274,274,274,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'GT':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,275,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,275,275,275,275,275,275,275,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'EQ':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,276,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,276,276,276,276,276,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'NE':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,277,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,277,277,277,277,277,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'OR':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,279,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,279,279,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'XOR':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,280,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,280,-271,280,280,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'LAND':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,281,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,281,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'LOR':([138,140,141,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,282,-255,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,-274,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-256,-257,-258,-259,-260,-261,-262,-263,-264,-265,-266,-267,-268,-269,-270,-271,-272,-273,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'XOREQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,375,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'TIMESEQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,376,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'DIVEQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,377,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'MODEQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,378,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'PLUSEQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,379,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'MINUSEQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,380,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'LSHIFTEQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,381,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'RSHIFTEQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,382,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'ANDEQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,383,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'OREQUAL':([138,146,147,153,154,157,158,159,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,205,230,247,263,287,288,289,291,292,293,296,297,298,299,401,424,426,427,428,429,491,495,496,499,500,554,556,567,],[-303,-274,-276,-289,-312,-301,-302,-304,-313,-314,-315,-316,-317,-318,-319,-320,-321,-322,-323,-324,-325,-327,-328,-329,-330,-336,-312,384,-326,-297,-298,-277,-278,-279,-280,-331,-332,-333,-334,-305,-292,-293,-294,-295,-296,-275,-290,-291,-281,-282,-299,-306,-300,]),'ELLIPSIS':([309,],[438,]),}
_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,11,12,20,21,22,25,26,29,33,68,69,70,72,93,94,99,126,134,135,179,180,189,206,213,218,239,253,254,255,318,319,347,354,356,365,367,443,444,450,452,453,465,476,481,492,504,505,519,520,521,523,552,555,563,565,575,577,],[3,65,82,97,97,97,105,97,112,97,82,105,97,65,112,185,97,217,112,185,303,112,316,339,316,353,353,387,303,112,448,112,448,353,353,353,353,112,185,303,303,448,353,353,527,527,303,112,353,353,353,353,353,527,353,353,353,353,]),'external_declaration':([0,2,],[4,63,]),'function_definition':([0,2,],[5,5,]),'declaration':([0,2,11,66,72,126,218,367,],[6,6,67,127,67,220,220,476,]),'pp_directive':([0,2,],[7,7,]),'pppragma_directive':([0,2,122,126,200,201,202,218,239,329,331,354,356,365,465,519,520,521,563,575,577,],[8,8,208,228,208,208,208,228,365,208,208,365,365,228,365,365,365,365,365,365,365,]),'static_assert':([0,2,126,218,239,354,356,365,465,519,520,521,563,575,577,],[10,10,229,229,229,229,229,229,229,229,229,229,229,229,229,]),'id_declarator':([0,2,12,17,25,68,69,81,132,189,191,206,318,461,],[11,11,72,92,109,128,109,92,128,311,128,128,92,128,]),'declaration_specifiers':([0,2,11,66,72,94,126,135,218,309,318,347,367,444,453,],[12,12,68,68,68,189,68,189,68,189,189,189,68,189,189,]),'decl_body':([0,2,11,66,72,126,218,367,],[13,13,13,13,13,13,13,13,]),'direct_id_declarator':([0,2,12,17,19,25,68,69,79,81,132,189,191,206,314,318,447,461,],[18,18,18,18,95,18,18,18,95,18,18,18,18,18,95,18,95,18,]),'pointer':([0,2,12,17,25,68,69,81,111,132,189,191,206,213,318,347,461,],[19,19,79,19,19,79,19,79,193,79,314,79,79,348,447,348,79,]),'type_qualifier':([0,2,11,12,20,21,22,26,29,33,66,68,70,72,93,94,99,113,122,123,124,126,134,135,136,180,181,189,200,201,202,206,210,213,218,235,255,256,290,294,295,300,309,318,319,329,331,347,367,443,444,453,505,506,],[20,20,20,73,20,20,20,20,114,20,20,73,20,20,114,20,20,194,114,114,114,20,114,20,114,114,194,73,114,114,114,337,194,337,20,114,114,194,114,114,114,114,20,20,114,114,114,20,20,114,20,20,114,194,]),'storage_class_specifier':([0,2,11,12,20,21,22,26,33,66,68,70,72,94,99,126,135,189,218,309,318,347,367,444,453,],[21,21,21,74,21,21,21,21,21,21,74,21,21,21,21,21,21,74,21,21,21,21,21,21,21,]),'function_specifier':([0,2,11,12,20,21,22,26,33,66,68,70,72,94,99,126,135,189,218,309,318,347,367,444,453,],[22,22,22,75,22,22,22,22,22,22,75,22,22,22,22,22,22,75,22,22,22,22,22,22,22,]),'type_specifier_no_typeid':([0,2,11,12,25,66,68,69,72,94,122,123,124,126,135,136,189,190,200,201,202,206,210,213,218,235,290,294,295,300,309,318,329,331,347,367,444,453,],[23,23,23,76,23,23,76,23,23,23,23,23,23,23,23,23,76,23,23,23,23,336,23,336,23,23,23,23,23,23,23,23,23,23,23,23,23,23,]),'type_specifier':([0,2,11,25,66,69,72,94,122,123,124,126,135,136,190,200,201,202,210,218,235,290,294,295,300,309,318,329,331,347,367,444,453,],[24,24,24,102,24,102,24,24,209,209,209,24,24,209,102,209,209,209,344,24,209,209,209,209,209,24,24,209,209,24,24,24,24,]),'declaration_specifiers_no_type':([0,2,11,20,21,22,26,33,66,70,72,94,99,126,135,218,309,318,347,367,444,453,],[25,25,69,98,98,98,98,98,69,98,69,190,98,69,190,69,190,190,190,69,190,190,]),'alignment_specifier':([0,2,11,12,20,21,22,26,33,66,68,70,72,94,99,122,123,124,126,135,136,189,200,201,202,206,213,218,235,290,294,295,300,309,318,329,331,347,367,444,453,],[26,26,26,77,26,26,26,26,26,26,77,26,26,26,26,211,211,211,26,26,211,77,211,211,211,338,338,26,211,211,211,211,211,26,26,211,211,26,26,26,26,]),'typedef_name':([0,2,11,25,66,69,72,94,122,123,124,126,135,136,190,200,201,202,210,218,235,290,294,295,300,309,318,329,331,347,367,444,453,],[30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,]),'enum_specifier':([0,2,11,25,66,69,72,94,122,123,124,126,135,136,190,200,201,202,210,218,235,290,294,295,300,309,318,329,331,347,367,444,453,],[31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,]),'struct_or_union_specifier':([0,2,11,25,66,69,72,94,122,123,124,126,135,136,190,200,201,202,210,218,235,290,294,295,300,309,318,329,331,347,367,444,453,],[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,32,32,32,]),'atomic_specifier':([0,2,11,20,21,22,25,26,33,66,69,70,72,94,99,122,123,124,126,135,136,190,200,201,202,210,218,235,290,294,295,300,309,318,329,331,347,367,444,453,],[33,33,70,99,99,99,104,99,99,70,104,99,70,33,99,104,104,104,70,33,104,104,104,104,104,104,70,104,104,104,104,104,33,33,104,104,33,70,33,33,]),'struct_or_union':([0,2,11,25,66,69,72,94,122,123,124,126,135,136,190,200,201,202,210,218,235,290,294,295,300,309,318,329,331,347,367,444,453,],[36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,36,]),'declaration_list_opt':([11,72,],[64,129,]),'declaration_list':([11,72,],[66,66,]),'init_declarator_list_opt':([12,68,],[78,78,]),'init_declarator_list':([12,68,],[83,83,]),'init_declarator':([12,68,132,191,],[84,84,250,322,]),'declarator':([12,68,132,191,206,461,],[85,85,85,85,342,342,]),'typeid_declarator':([12,68,81,132,191,206,461,],[86,86,131,86,86,86,86,]),'direct_typeid_declarator':([12,68,79,81,132,191,206,461,],[87,87,130,87,87,87,87,87,]),'declaration_specifiers_no_type_opt':([20,21,22,26,33,70,99,],[96,100,101,110,115,115,115,]),'id_init_declarator_list_opt':([25,69,],[103,103,]),'id_init_declarator_list':([25,69,],[106,106,]),'id_init_declarator':([25,69,],[108,108,]),'type_qualifier_list_opt':([29,93,134,180,255,319,443,505,],[111,179,254,305,396,450,504,538,]),'type_qualifier_list':([29,93,122,123,124,134,136,180,200,201,202,235,255,290,294,295,300,319,329,331,443,505,],[113,181,210,210,210,256,210,113,210,210,210,210,113,210,210,210,210,113,210,210,506,113,]),'brace_open':([35,36,64,116,117,120,121,126,129,133,192,218,235,239,354,356,365,388,400,465,469,498,499,519,520,521,526,563,575,577,],[118,122,126,195,196,200,201,126,126,253,253,126,126,126,126,126,126,253,492,126,492,492,492,126,126,126,253,126,126,126,]),'compound_statement':([64,126,129,218,235,239,354,356,365,465,519,520,521,563,575,577,],[125,224,248,224,359,224,224,224,224,224,224,224,224,224,224,224,]),'constant_expression':([91,124,231,328,343,392,462,],[137,215,355,457,463,485,517,]),'unified_string_literal':([91,124,126,133,136,148,149,150,151,179,192,218,231,235,239,244,254,261,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,400,450,452,462,465,469,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,402,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,138,]),'conditional_expression':([91,124,126,133,136,179,192,218,231,235,239,244,254,264,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,450,452,462,465,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[139,139,246,246,246,246,246,246,139,246,246,246,246,246,246,246,246,246,246,246,139,139,246,246,246,246,246,246,246,246,246,246,139,246,246,246,246,139,246,246,532,246,246,246,246,246,246,246,246,246,246,246,246,246,246,246,246,]),'binary_expression':([91,124,126,133,136,179,192,218,231,235,239,244,254,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,450,452,462,465,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[140,140,140,140,140,140,140,140,140,140,140,140,140,140,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,140,]),'cast_expression':([91,124,126,133,136,150,179,192,218,231,235,239,244,254,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,400,450,452,462,465,469,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[141,141,141,141,141,292,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,491,141,141,141,141,491,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,141,]),'unary_expression':([91,124,126,133,136,148,149,150,151,179,192,218,231,235,239,244,254,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,400,450,452,462,465,469,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[146,146,247,247,247,289,291,146,293,247,247,247,146,247,247,247,247,247,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,146,247,247,247,247,247,247,146,146,247,247,247,247,247,247,247,247,247,247,146,247,247,146,247,247,146,247,146,247,146,247,247,247,247,247,247,247,247,247,247,247,247,247,247,247,247,]),'postfix_expression':([91,124,126,133,136,148,149,150,151,179,192,218,231,235,239,244,254,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,400,450,452,462,465,469,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,147,]),'unary_operator':([91,124,126,133,136,148,149,150,151,179,192,218,231,235,239,244,254,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,400,450,452,462,465,469,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,150,]),'primary_expression':([91,124,126,133,136,148,149,150,151,179,192,218,231,235,239,244,254,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,400,450,452,462,465,469,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,153,]),'identifier':([91,94,124,126,133,135,136,148,149,150,151,179,192,218,231,235,239,244,254,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,310,328,343,354,356,358,361,362,363,365,367,373,388,392,393,396,397,400,444,450,452,462,465,469,476,494,497,501,504,519,520,521,522,523,526,538,539,552,557,558,563,565,575,577,],[157,188,157,157,157,188,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,157,440,157,157,157,157,157,157,157,157,157,157,157,157,157,486,157,157,157,188,157,157,157,157,157,157,157,157,535,157,157,157,157,157,157,157,157,157,157,568,157,157,157,157,157,]),'constant':([91,124,126,133,136,148,149,150,151,179,192,218,231,235,239,244,254,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,400,450,452,462,465,469,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,158,]),'unified_wstring_literal':([91,124,126,133,136,148,149,150,151,179,192,218,231,235,239,244,254,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,290,294,305,306,328,343,354,356,358,361,362,363,365,367,373,388,392,396,397,400,450,452,462,465,469,476,494,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,]),'parameter_type_list':([94,135,318,347,444,453,],[182,257,449,449,507,449,]),'identifier_list_opt':([94,135,444,],[183,258,508,]),'parameter_list':([94,135,318,347,444,453,],[184,184,184,184,184,184,]),'identifier_list':([94,135,444,],[186,186,186,]),'parameter_declaration':([94,135,309,318,347,444,453,],[187,187,439,187,187,187,187,]),'enumerator_list':([118,195,196,],[197,324,325,]),'enumerator':([118,195,196,327,],[198,198,198,456,]),'struct_declaration_list':([122,200,201,],[202,329,331,]),'brace_close':([122,197,200,201,202,216,324,325,329,331,385,481,531,555,],[203,326,330,332,333,351,454,455,458,459,480,525,554,567,]),'struct_declaration':([122,200,201,202,329,331,],[204,204,204,334,334,334,]),'specifier_qualifier_list':([122,123,124,136,200,201,202,235,290,294,295,300,329,331,],[206,213,213,213,206,206,206,213,213,213,213,213,206,206,]),'type_name':([123,124,136,235,290,294,295,300,],[212,214,259,360,430,431,432,433,]),'block_item_list_opt':([126,],[216,]),'block_item_list':([126,],[218,]),'block_item':([126,218,],[219,352,]),'statement':([126,218,239,354,356,365,465,519,520,521,563,575,577,],[221,221,366,366,366,474,366,547,366,366,366,366,366,]),'labeled_statement':([126,218,239,354,356,365,465,519,520,521,563,575,577,],[222,222,222,222,222,222,222,222,222,222,222,222,222,]),'expression_statement':([126,218,239,354,356,365,465,519,520,521,563,575,577,],[223,223,223,223,223,223,223,223,223,223,223,223,223,]),'selection_statement':([126,218,239,354,356,365,465,519,520,521,563,575,577,],[225,225,225,225,225,225,225,225,225,225,225,225,225,]),'iteration_statement':([126,218,239,354,356,365,465,519,520,521,563,575,577,],[226,226,226,226,226,226,226,226,226,226,226,226,226,]),'jump_statement':([126,218,239,354,356,365,465,519,520,521,563,575,577,],[227,227,227,227,227,227,227,227,227,227,227,227,227,]),'expression_opt':([126,218,239,354,356,365,367,465,476,519,520,521,523,552,563,565,575,577,],[233,233,233,233,233,233,475,233,524,233,233,233,551,566,233,574,233,233,]),'expression':([126,136,218,235,239,244,264,283,290,294,354,356,358,362,363,365,367,465,476,519,520,521,522,523,552,558,563,565,575,577,],[236,260,236,260,236,371,403,422,260,260,236,236,467,471,472,236,236,236,236,236,236,236,550,236,236,569,236,236,236,236,]),'assignment_expression':([126,133,136,179,192,218,235,239,244,254,264,283,284,290,294,305,306,354,356,358,361,362,363,365,367,373,388,396,397,450,452,465,476,497,504,519,520,521,522,523,526,538,539,552,558,563,565,575,577,],[245,252,245,304,252,245,245,245,245,304,245,245,425,245,245,436,437,245,245,245,470,245,245,245,245,479,252,489,490,304,304,245,245,533,304,245,245,245,245,245,252,561,562,245,245,245,245,245,245,]),'initializer':([133,192,388,526,],[251,323,482,553,]),'assignment_expression_opt':([179,254,450,452,504,],[301,394,511,513,536,]),'typeid_noparen_declarator':([189,],[312,]),'abstract_declarator_opt':([189,213,],[313,346,]),'direct_typeid_noparen_declarator':([189,314,],[315,441,]),'abstract_declarator':([189,213,318,347,],[317,317,445,445,]),'direct_abstract_declarator':([189,213,314,318,347,348,447,],[321,321,442,321,321,442,442,]),'struct_declarator_list_opt':([206,],[335,]),'struct_declarator_list':([206,],[340,]),'struct_declarator':([206,461,],[341,516,]),'pragmacomp_or_statement':([239,354,356,465,519,520,521,563,575,577,],[364,464,466,518,546,548,549,572,578,579,]),'assignment_operator':([247,],[373,]),'initializer_list_opt':([253,],[385,]),'initializer_list':([253,492,],[386,531,]),'designation_opt':([253,481,492,555,],[388,526,388,526,]),'designation':([253,481,492,555,],[389,389,389,389,]),'designator_list':([253,481,492,555,],[390,390,390,390,]),'designator':([253,390,481,492,555,],[391,484,391,391,391,]),'argument_expression_list':([284,],[423,]),'parameter_type_list_opt':([318,347,453,],[446,446,515,]),'offsetof_member_designator':([501,],[534,]),}
_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',509),
('translation_unit_or_empty -> empty','translation_unit_or_empty',1,'p_translation_unit_or_empty','c_parser.py',510),
('translation_unit -> external_declaration','translation_unit',1,'p_translation_unit_1','c_parser.py',518),
('translation_unit -> translation_unit external_declaration','translation_unit',2,'p_translation_unit_2','c_parser.py',524),
('external_declaration -> function_definition','external_declaration',1,'p_external_declaration_1','c_parser.py',534),
('external_declaration -> declaration','external_declaration',1,'p_external_declaration_2','c_parser.py',539),
('external_declaration -> pp_directive','external_declaration',1,'p_external_declaration_3','c_parser.py',544),
('external_declaration -> pppragma_directive','external_declaration',1,'p_external_declaration_3','c_parser.py',545),
('external_declaration -> SEMI','external_declaration',1,'p_external_declaration_4','c_parser.py',550),
('external_declaration -> static_assert','external_declaration',1,'p_external_declaration_5','c_parser.py',555),
('static_assert -> _STATIC_ASSERT LPAREN constant_expression COMMA unified_string_literal RPAREN','static_assert',6,'p_static_assert_declaration','c_parser.py',560),
('static_assert -> _STATIC_ASSERT LPAREN constant_expression RPAREN','static_assert',4,'p_static_assert_declaration','c_parser.py',561),
('pp_directive -> PPHASH','pp_directive',1,'p_pp_directive','c_parser.py',569),
('pppragma_directive -> PPPRAGMA','pppragma_directive',1,'p_pppragma_directive','c_parser.py',575),
('pppragma_directive -> PPPRAGMA PPPRAGMASTR','pppragma_directive',2,'p_pppragma_directive','c_parser.py',576),
('function_definition -> id_declarator declaration_list_opt compound_statement','function_definition',3,'p_function_definition_1','c_parser.py',586),
('function_definition -> declaration_specifiers id_declarator declaration_list_opt compound_statement','function_definition',4,'p_function_definition_2','c_parser.py',604),
('statement -> labeled_statement','statement',1,'p_statement','c_parser.py',619),
('statement -> expression_statement','statement',1,'p_statement','c_parser.py',620),
('statement -> compound_statement','statement',1,'p_statement','c_parser.py',621),
('statement -> selection_statement','statement',1,'p_statement','c_parser.py',622),
('statement -> iteration_statement','statement',1,'p_statement','c_parser.py',623),
('statement -> jump_statement','statement',1,'p_statement','c_parser.py',624),
('statement -> pppragma_directive','statement',1,'p_statement','c_parser.py',625),
('statement -> static_assert','statement',1,'p_statement','c_parser.py',626),
('pragmacomp_or_statement -> pppragma_directive statement','pragmacomp_or_statement',2,'p_pragmacomp_or_statement','c_parser.py',674),
('pragmacomp_or_statement -> statement','pragmacomp_or_statement',1,'p_pragmacomp_or_statement','c_parser.py',675),
('decl_body -> declaration_specifiers init_declarator_list_opt','decl_body',2,'p_decl_body','c_parser.py',694),
('decl_body -> declaration_specifiers_no_type id_init_declarator_list_opt','decl_body',2,'p_decl_body','c_parser.py',695),
('declaration -> decl_body SEMI','declaration',2,'p_declaration','c_parser.py',755),
('declaration_list -> declaration','declaration_list',1,'p_declaration_list','c_parser.py',764),
('declaration_list -> declaration_list declaration','declaration_list',2,'p_declaration_list','c_parser.py',765),
('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',775),
('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',780),
('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',785),
('declaration_specifiers_no_type -> atomic_specifier declaration_specifiers_no_type_opt','declaration_specifiers_no_type',2,'p_declaration_specifiers_no_type_4','c_parser.py',792),
('declaration_specifiers_no_type -> alignment_specifier declaration_specifiers_no_type_opt','declaration_specifiers_no_type',2,'p_declaration_specifiers_no_type_5','c_parser.py',797),
('declaration_specifiers -> declaration_specifiers type_qualifier','declaration_specifiers',2,'p_declaration_specifiers_1','c_parser.py',802),
('declaration_specifiers -> declaration_specifiers storage_class_specifier','declaration_specifiers',2,'p_declaration_specifiers_2','c_parser.py',807),
('declaration_specifiers -> declaration_specifiers function_specifier','declaration_specifiers',2,'p_declaration_specifiers_3','c_parser.py',812),
('declaration_specifiers -> declaration_specifiers type_specifier_no_typeid','declaration_specifiers',2,'p_declaration_specifiers_4','c_parser.py',817),
('declaration_specifiers -> type_specifier','declaration_specifiers',1,'p_declaration_specifiers_5','c_parser.py',822),
('declaration_specifiers -> declaration_specifiers_no_type type_specifier','declaration_specifiers',2,'p_declaration_specifiers_6','c_parser.py',827),
('declaration_specifiers -> declaration_specifiers alignment_specifier','declaration_specifiers',2,'p_declaration_specifiers_7','c_parser.py',832),
('storage_class_specifier -> AUTO','storage_class_specifier',1,'p_storage_class_specifier','c_parser.py',837),
('storage_class_specifier -> REGISTER','storage_class_specifier',1,'p_storage_class_specifier','c_parser.py',838),
('storage_class_specifier -> STATIC','storage_class_specifier',1,'p_storage_class_specifier','c_parser.py',839),
('storage_class_specifier -> EXTERN','storage_class_specifier',1,'p_storage_class_specifier','c_parser.py',840),
('storage_class_specifier -> TYPEDEF','storage_class_specifier',1,'p_storage_class_specifier','c_parser.py',841),
('storage_class_specifier -> _THREAD_LOCAL','storage_class_specifier',1,'p_storage_class_specifier','c_parser.py',842),
('function_specifier -> INLINE','function_specifier',1,'p_function_specifier','c_parser.py',847),
('function_specifier -> _NORETURN','function_specifier',1,'p_function_specifier','c_parser.py',848),
('type_specifier_no_typeid -> VOID','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',853),
('type_specifier_no_typeid -> _BOOL','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',854),
('type_specifier_no_typeid -> CHAR','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',855),
('type_specifier_no_typeid -> SHORT','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',856),
('type_specifier_no_typeid -> INT','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',857),
('type_specifier_no_typeid -> LONG','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',858),
('type_specifier_no_typeid -> FLOAT','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',859),
('type_specifier_no_typeid -> DOUBLE','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',860),
('type_specifier_no_typeid -> _COMPLEX','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',861),
('type_specifier_no_typeid -> SIGNED','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',862),
('type_specifier_no_typeid -> UNSIGNED','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',863),
('type_specifier_no_typeid -> __INT128','type_specifier_no_typeid',1,'p_type_specifier_no_typeid','c_parser.py',864),
('type_specifier -> typedef_name','type_specifier',1,'p_type_specifier','c_parser.py',869),
('type_specifier -> enum_specifier','type_specifier',1,'p_type_specifier','c_parser.py',870),
('type_specifier -> struct_or_union_specifier','type_specifier',1,'p_type_specifier','c_parser.py',871),
('type_specifier -> type_specifier_no_typeid','type_specifier',1,'p_type_specifier','c_parser.py',872),
('type_specifier -> atomic_specifier','type_specifier',1,'p_type_specifier','c_parser.py',873),
('atomic_specifier -> _ATOMIC LPAREN type_name RPAREN','atomic_specifier',4,'p_atomic_specifier','c_parser.py',879),
('type_qualifier -> CONST','type_qualifier',1,'p_type_qualifier','c_parser.py',886),
('type_qualifier -> RESTRICT','type_qualifier',1,'p_type_qualifier','c_parser.py',887),
('type_qualifier -> VOLATILE','type_qualifier',1,'p_type_qualifier','c_parser.py',888),
('type_qualifier -> _ATOMIC','type_qualifier',1,'p_type_qualifier','c_parser.py',889),
('init_declarator_list -> init_declarator','init_declarator_list',1,'p_init_declarator_list','c_parser.py',894),
('init_declarator_list -> init_declarator_list COMMA init_declarator','init_declarator_list',3,'p_init_declarator_list','c_parser.py',895),
('init_declarator -> declarator','init_declarator',1,'p_init_declarator','c_parser.py',903),
('init_declarator -> declarator EQUALS initializer','init_declarator',3,'p_init_declarator','c_parser.py',904),
('id_init_declarator_list -> id_init_declarator','id_init_declarator_list',1,'p_id_init_declarator_list','c_parser.py',909),
('id_init_declarator_list -> id_init_declarator_list COMMA init_declarator','id_init_declarator_list',3,'p_id_init_declarator_list','c_parser.py',910),
('id_init_declarator -> id_declarator','id_init_declarator',1,'p_id_init_declarator','c_parser.py',915),
('id_init_declarator -> id_declarator EQUALS initializer','id_init_declarator',3,'p_id_init_declarator','c_parser.py',916),
('specifier_qualifier_list -> specifier_qualifier_list type_specifier_no_typeid','specifier_qualifier_list',2,'p_specifier_qualifier_list_1','c_parser.py',923),
('specifier_qualifier_list -> specifier_qualifier_list type_qualifier','specifier_qualifier_list',2,'p_specifier_qualifier_list_2','c_parser.py',928),
('specifier_qualifier_list -> type_specifier','specifier_qualifier_list',1,'p_specifier_qualifier_list_3','c_parser.py',933),
('specifier_qualifier_list -> type_qualifier_list type_specifier','specifier_qualifier_list',2,'p_specifier_qualifier_list_4','c_parser.py',938),
('specifier_qualifier_list -> alignment_specifier','specifier_qualifier_list',1,'p_specifier_qualifier_list_5','c_parser.py',943),
('specifier_qualifier_list -> specifier_qualifier_list alignment_specifier','specifier_qualifier_list',2,'p_specifier_qualifier_list_6','c_parser.py',948),
('struct_or_union_specifier -> struct_or_union ID','struct_or_union_specifier',2,'p_struct_or_union_specifier_1','c_parser.py',956),
('struct_or_union_specifier -> struct_or_union TYPEID','struct_or_union_specifier',2,'p_struct_or_union_specifier_1','c_parser.py',957),
('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',967),
('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',968),
('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',985),
('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',986),
('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',987),
('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',988),
('struct_or_union -> STRUCT','struct_or_union',1,'p_struct_or_union','c_parser.py',1004),
('struct_or_union -> UNION','struct_or_union',1,'p_struct_or_union','c_parser.py',1005),
('struct_declaration_list -> struct_declaration','struct_declaration_list',1,'p_struct_declaration_list','c_parser.py',1012),
('struct_declaration_list -> struct_declaration_list struct_declaration','struct_declaration_list',2,'p_struct_declaration_list','c_parser.py',1013),
('struct_declaration -> specifier_qualifier_list struct_declarator_list_opt SEMI','struct_declaration',3,'p_struct_declaration_1','c_parser.py',1021),
('struct_declaration -> SEMI','struct_declaration',1,'p_struct_declaration_2','c_parser.py',1059),
('struct_declaration -> pppragma_directive','struct_declaration',1,'p_struct_declaration_3','c_parser.py',1064),
('struct_declarator_list -> struct_declarator','struct_declarator_list',1,'p_struct_declarator_list','c_parser.py',1069),
('struct_declarator_list -> struct_declarator_list COMMA struct_declarator','struct_declarator_list',3,'p_struct_declarator_list','c_parser.py',1070),
('struct_declarator -> declarator','struct_declarator',1,'p_struct_declarator_1','c_parser.py',1078),
('struct_declarator -> declarator COLON constant_expression','struct_declarator',3,'p_struct_declarator_2','c_parser.py',1083),
('struct_declarator -> COLON constant_expression','struct_declarator',2,'p_struct_declarator_2','c_parser.py',1084),
('enum_specifier -> ENUM ID','enum_specifier',2,'p_enum_specifier_1','c_parser.py',1092),
('enum_specifier -> ENUM TYPEID','enum_specifier',2,'p_enum_specifier_1','c_parser.py',1093),
('enum_specifier -> ENUM brace_open enumerator_list brace_close','enum_specifier',4,'p_enum_specifier_2','c_parser.py',1098),
('enum_specifier -> ENUM ID brace_open enumerator_list brace_close','enum_specifier',5,'p_enum_specifier_3','c_parser.py',1103),
('enum_specifier -> ENUM TYPEID brace_open enumerator_list brace_close','enum_specifier',5,'p_enum_specifier_3','c_parser.py',1104),
('enumerator_list -> enumerator','enumerator_list',1,'p_enumerator_list','c_parser.py',1109),
('enumerator_list -> enumerator_list COMMA','enumerator_list',2,'p_enumerator_list','c_parser.py',1110),
('enumerator_list -> enumerator_list COMMA enumerator','enumerator_list',3,'p_enumerator_list','c_parser.py',1111),
('alignment_specifier -> _ALIGNAS LPAREN type_name RPAREN','alignment_specifier',4,'p_alignment_specifier','c_parser.py',1122),
('alignment_specifier -> _ALIGNAS LPAREN constant_expression RPAREN','alignment_specifier',4,'p_alignment_specifier','c_parser.py',1123),
('enumerator -> ID','enumerator',1,'p_enumerator','c_parser.py',1128),
('enumerator -> ID EQUALS constant_expression','enumerator',3,'p_enumerator','c_parser.py',1129),
('declarator -> id_declarator','declarator',1,'p_declarator','c_parser.py',1144),
('declarator -> typeid_declarator','declarator',1,'p_declarator','c_parser.py',1145),
('pointer -> TIMES type_qualifier_list_opt','pointer',2,'p_pointer','c_parser.py',1257),
('pointer -> TIMES type_qualifier_list_opt pointer','pointer',3,'p_pointer','c_parser.py',1258),
('type_qualifier_list -> type_qualifier','type_qualifier_list',1,'p_type_qualifier_list','c_parser.py',1287),
('type_qualifier_list -> type_qualifier_list type_qualifier','type_qualifier_list',2,'p_type_qualifier_list','c_parser.py',1288),
('parameter_type_list -> parameter_list','parameter_type_list',1,'p_parameter_type_list','c_parser.py',1293),
('parameter_type_list -> parameter_list COMMA ELLIPSIS','parameter_type_list',3,'p_parameter_type_list','c_parser.py',1294),
('parameter_list -> parameter_declaration','parameter_list',1,'p_parameter_list','c_parser.py',1302),
('parameter_list -> parameter_list COMMA parameter_declaration','parameter_list',3,'p_parameter_list','c_parser.py',1303),
('parameter_declaration -> declaration_specifiers id_declarator','parameter_declaration',2,'p_parameter_declaration_1','c_parser.py',1322),
('parameter_declaration -> declaration_specifiers typeid_noparen_declarator','parameter_declaration',2,'p_parameter_declaration_1','c_parser.py',1323),
('parameter_declaration -> declaration_specifiers abstract_declarator_opt','parameter_declaration',2,'p_parameter_declaration_2','c_parser.py',1334),
('identifier_list -> identifier','identifier_list',1,'p_identifier_list','c_parser.py',1366),
('identifier_list -> identifier_list COMMA identifier','identifier_list',3,'p_identifier_list','c_parser.py',1367),
('initializer -> assignment_expression','initializer',1,'p_initializer_1','c_parser.py',1376),
('initializer -> brace_open initializer_list_opt brace_close','initializer',3,'p_initializer_2','c_parser.py',1381),
('initializer -> brace_open initializer_list COMMA brace_close','initializer',4,'p_initializer_2','c_parser.py',1382),
('initializer_list -> designation_opt initializer','initializer_list',2,'p_initializer_list','c_parser.py',1390),
('initializer_list -> initializer_list COMMA designation_opt initializer','initializer_list',4,'p_initializer_list','c_parser.py',1391),
('designation -> designator_list EQUALS','designation',2,'p_designation','c_parser.py',1402),
('designator_list -> designator','designator_list',1,'p_designator_list','c_parser.py',1410),
('designator_list -> designator_list designator','designator_list',2,'p_designator_list','c_parser.py',1411),
('designator -> LBRACKET constant_expression RBRACKET','designator',3,'p_designator','c_parser.py',1416),
('designator -> PERIOD identifier','designator',2,'p_designator','c_parser.py',1417),
('type_name -> specifier_qualifier_list abstract_declarator_opt','type_name',2,'p_type_name','c_parser.py',1422),
('abstract_declarator -> pointer','abstract_declarator',1,'p_abstract_declarator_1','c_parser.py',1434),
('abstract_declarator -> pointer direct_abstract_declarator','abstract_declarator',2,'p_abstract_declarator_2','c_parser.py',1442),
('abstract_declarator -> direct_abstract_declarator','abstract_declarator',1,'p_abstract_declarator_3','c_parser.py',1447),
('direct_abstract_declarator -> LPAREN abstract_declarator RPAREN','direct_abstract_declarator',3,'p_direct_abstract_declarator_1','c_parser.py',1457),
('direct_abstract_declarator -> direct_abstract_declarator LBRACKET assignment_expression_opt RBRACKET','direct_abstract_declarator',4,'p_direct_abstract_declarator_2','c_parser.py',1461),
('direct_abstract_declarator -> LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET','direct_abstract_declarator',4,'p_direct_abstract_declarator_3','c_parser.py',1472),
('direct_abstract_declarator -> direct_abstract_declarator LBRACKET TIMES RBRACKET','direct_abstract_declarator',4,'p_direct_abstract_declarator_4','c_parser.py',1482),
('direct_abstract_declarator -> LBRACKET TIMES RBRACKET','direct_abstract_declarator',3,'p_direct_abstract_declarator_5','c_parser.py',1493),
('direct_abstract_declarator -> direct_abstract_declarator LPAREN parameter_type_list_opt RPAREN','direct_abstract_declarator',4,'p_direct_abstract_declarator_6','c_parser.py',1502),
('direct_abstract_declarator -> LPAREN parameter_type_list_opt RPAREN','direct_abstract_declarator',3,'p_direct_abstract_declarator_7','c_parser.py',1512),
('block_item -> declaration','block_item',1,'p_block_item','c_parser.py',1523),
('block_item -> statement','block_item',1,'p_block_item','c_parser.py',1524),
('block_item_list -> block_item','block_item_list',1,'p_block_item_list','c_parser.py',1531),
('block_item_list -> block_item_list block_item','block_item_list',2,'p_block_item_list','c_parser.py',1532),
('compound_statement -> brace_open block_item_list_opt brace_close','compound_statement',3,'p_compound_statement_1','c_parser.py',1538),
('labeled_statement -> ID COLON pragmacomp_or_statement','labeled_statement',3,'p_labeled_statement_1','c_parser.py',1544),
('labeled_statement -> CASE constant_expression COLON pragmacomp_or_statement','labeled_statement',4,'p_labeled_statement_2','c_parser.py',1548),
('labeled_statement -> DEFAULT COLON pragmacomp_or_statement','labeled_statement',3,'p_labeled_statement_3','c_parser.py',1552),
('selection_statement -> IF LPAREN expression RPAREN pragmacomp_or_statement','selection_statement',5,'p_selection_statement_1','c_parser.py',1556),
('selection_statement -> IF LPAREN expression RPAREN statement ELSE pragmacomp_or_statement','selection_statement',7,'p_selection_statement_2','c_parser.py',1560),
('selection_statement -> SWITCH LPAREN expression RPAREN pragmacomp_or_statement','selection_statement',5,'p_selection_statement_3','c_parser.py',1564),
('iteration_statement -> WHILE LPAREN expression RPAREN pragmacomp_or_statement','iteration_statement',5,'p_iteration_statement_1','c_parser.py',1569),
('iteration_statement -> DO pragmacomp_or_statement WHILE LPAREN expression RPAREN SEMI','iteration_statement',7,'p_iteration_statement_2','c_parser.py',1573),
('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',1577),
('iteration_statement -> FOR LPAREN declaration expression_opt SEMI expression_opt RPAREN pragmacomp_or_statement','iteration_statement',8,'p_iteration_statement_4','c_parser.py',1581),
('jump_statement -> GOTO ID SEMI','jump_statement',3,'p_jump_statement_1','c_parser.py',1586),
('jump_statement -> BREAK SEMI','jump_statement',2,'p_jump_statement_2','c_parser.py',1590),
('jump_statement -> CONTINUE SEMI','jump_statement',2,'p_jump_statement_3','c_parser.py',1594),
('jump_statement -> RETURN expression SEMI','jump_statement',3,'p_jump_statement_4','c_parser.py',1598),
('jump_statement -> RETURN SEMI','jump_statement',2,'p_jump_statement_4','c_parser.py',1599),
('expression_statement -> expression_opt SEMI','expression_statement',2,'p_expression_statement','c_parser.py',1604),
('expression -> assignment_expression','expression',1,'p_expression','c_parser.py',1611),
('expression -> expression COMMA assignment_expression','expression',3,'p_expression','c_parser.py',1612),
('assignment_expression -> LPAREN compound_statement RPAREN','assignment_expression',3,'p_parenthesized_compound_expression','c_parser.py',1624),
('typedef_name -> TYPEID','typedef_name',1,'p_typedef_name','c_parser.py',1628),
('assignment_expression -> conditional_expression','assignment_expression',1,'p_assignment_expression','c_parser.py',1632),
('assignment_expression -> unary_expression assignment_operator assignment_expression','assignment_expression',3,'p_assignment_expression','c_parser.py',1633),
('assignment_operator -> EQUALS','assignment_operator',1,'p_assignment_operator','c_parser.py',1646),
('assignment_operator -> XOREQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1647),
('assignment_operator -> TIMESEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1648),
('assignment_operator -> DIVEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1649),
('assignment_operator -> MODEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1650),
('assignment_operator -> PLUSEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1651),
('assignment_operator -> MINUSEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1652),
('assignment_operator -> LSHIFTEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1653),
('assignment_operator -> RSHIFTEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1654),
('assignment_operator -> ANDEQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1655),
('assignment_operator -> OREQUAL','assignment_operator',1,'p_assignment_operator','c_parser.py',1656),
('constant_expression -> conditional_expression','constant_expression',1,'p_constant_expression','c_parser.py',1661),
('conditional_expression -> binary_expression','conditional_expression',1,'p_conditional_expression','c_parser.py',1665),
('conditional_expression -> binary_expression CONDOP expression COLON conditional_expression','conditional_expression',5,'p_conditional_expression','c_parser.py',1666),
('binary_expression -> cast_expression','binary_expression',1,'p_binary_expression','c_parser.py',1674),
('binary_expression -> binary_expression TIMES binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1675),
('binary_expression -> binary_expression DIVIDE binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1676),
('binary_expression -> binary_expression MOD binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1677),
('binary_expression -> binary_expression PLUS binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1678),
('binary_expression -> binary_expression MINUS binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1679),
('binary_expression -> binary_expression RSHIFT binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1680),
('binary_expression -> binary_expression LSHIFT binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1681),
('binary_expression -> binary_expression LT binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1682),
('binary_expression -> binary_expression LE binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1683),
('binary_expression -> binary_expression GE binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1684),
('binary_expression -> binary_expression GT binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1685),
('binary_expression -> binary_expression EQ binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1686),
('binary_expression -> binary_expression NE binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1687),
('binary_expression -> binary_expression AND binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1688),
('binary_expression -> binary_expression OR binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1689),
('binary_expression -> binary_expression XOR binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1690),
('binary_expression -> binary_expression LAND binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1691),
('binary_expression -> binary_expression LOR binary_expression','binary_expression',3,'p_binary_expression','c_parser.py',1692),
('cast_expression -> unary_expression','cast_expression',1,'p_cast_expression_1','c_parser.py',1700),
('cast_expression -> LPAREN type_name RPAREN cast_expression','cast_expression',4,'p_cast_expression_2','c_parser.py',1704),
('unary_expression -> postfix_expression','unary_expression',1,'p_unary_expression_1','c_parser.py',1708),
('unary_expression -> PLUSPLUS unary_expression','unary_expression',2,'p_unary_expression_2','c_parser.py',1712),
('unary_expression -> MINUSMINUS unary_expression','unary_expression',2,'p_unary_expression_2','c_parser.py',1713),
('unary_expression -> unary_operator cast_expression','unary_expression',2,'p_unary_expression_2','c_parser.py',1714),
('unary_expression -> SIZEOF unary_expression','unary_expression',2,'p_unary_expression_3','c_parser.py',1719),
('unary_expression -> SIZEOF LPAREN type_name RPAREN','unary_expression',4,'p_unary_expression_3','c_parser.py',1720),
('unary_expression -> _ALIGNOF LPAREN type_name RPAREN','unary_expression',4,'p_unary_expression_3','c_parser.py',1721),
('unary_operator -> AND','unary_operator',1,'p_unary_operator','c_parser.py',1729),
('unary_operator -> TIMES','unary_operator',1,'p_unary_operator','c_parser.py',1730),
('unary_operator -> PLUS','unary_operator',1,'p_unary_operator','c_parser.py',1731),
('unary_operator -> MINUS','unary_operator',1,'p_unary_operator','c_parser.py',1732),
('unary_operator -> NOT','unary_operator',1,'p_unary_operator','c_parser.py',1733),
('unary_operator -> LNOT','unary_operator',1,'p_unary_operator','c_parser.py',1734),
('postfix_expression -> primary_expression','postfix_expression',1,'p_postfix_expression_1','c_parser.py',1739),
('postfix_expression -> postfix_expression LBRACKET expression RBRACKET','postfix_expression',4,'p_postfix_expression_2','c_parser.py',1743),
('postfix_expression -> postfix_expression LPAREN argument_expression_list RPAREN','postfix_expression',4,'p_postfix_expression_3','c_parser.py',1747),
('postfix_expression -> postfix_expression LPAREN RPAREN','postfix_expression',3,'p_postfix_expression_3','c_parser.py',1748),
('postfix_expression -> postfix_expression PERIOD ID','postfix_expression',3,'p_postfix_expression_4','c_parser.py',1753),
('postfix_expression -> postfix_expression PERIOD TYPEID','postfix_expression',3,'p_postfix_expression_4','c_parser.py',1754),
('postfix_expression -> postfix_expression ARROW ID','postfix_expression',3,'p_postfix_expression_4','c_parser.py',1755),
('postfix_expression -> postfix_expression ARROW TYPEID','postfix_expression',3,'p_postfix_expression_4','c_parser.py',1756),
('postfix_expression -> postfix_expression PLUSPLUS','postfix_expression',2,'p_postfix_expression_5','c_parser.py',1762),
('postfix_expression -> postfix_expression MINUSMINUS','postfix_expression',2,'p_postfix_expression_5','c_parser.py',1763),
('postfix_expression -> LPAREN type_name RPAREN brace_open initializer_list brace_close','postfix_expression',6,'p_postfix_expression_6','c_parser.py',1768),
('postfix_expression -> LPAREN type_name RPAREN brace_open initializer_list COMMA brace_close','postfix_expression',7,'p_postfix_expression_6','c_parser.py',1769),
('primary_expression -> identifier','primary_expression',1,'p_primary_expression_1','c_parser.py',1774),
('primary_expression -> constant','primary_expression',1,'p_primary_expression_2','c_parser.py',1778),
('primary_expression -> unified_string_literal','primary_expression',1,'p_primary_expression_3','c_parser.py',1782),
('primary_expression -> unified_wstring_literal','primary_expression',1,'p_primary_expression_3','c_parser.py',1783),
('primary_expression -> LPAREN expression RPAREN','primary_expression',3,'p_primary_expression_4','c_parser.py',1788),
('primary_expression -> OFFSETOF LPAREN type_name COMMA offsetof_member_designator RPAREN','primary_expression',6,'p_primary_expression_5','c_parser.py',1792),
('offsetof_member_designator -> identifier','offsetof_member_designator',1,'p_offsetof_member_designator','c_parser.py',1800),
('offsetof_member_designator -> offsetof_member_designator PERIOD identifier','offsetof_member_designator',3,'p_offsetof_member_designator','c_parser.py',1801),
('offsetof_member_designator -> offsetof_member_designator LBRACKET expression RBRACKET','offsetof_member_designator',4,'p_offsetof_member_designator','c_parser.py',1802),
('argument_expression_list -> assignment_expression','argument_expression_list',1,'p_argument_expression_list','c_parser.py',1814),
('argument_expression_list -> argument_expression_list COMMA assignment_expression','argument_expression_list',3,'p_argument_expression_list','c_parser.py',1815),
('identifier -> ID','identifier',1,'p_identifier','c_parser.py',1824),
('constant -> INT_CONST_DEC','constant',1,'p_constant_1','c_parser.py',1828),
('constant -> INT_CONST_OCT','constant',1,'p_constant_1','c_parser.py',1829),
('constant -> INT_CONST_HEX','constant',1,'p_constant_1','c_parser.py',1830),
('constant -> INT_CONST_BIN','constant',1,'p_constant_1','c_parser.py',1831),
('constant -> INT_CONST_CHAR','constant',1,'p_constant_1','c_parser.py',1832),
('constant -> FLOAT_CONST','constant',1,'p_constant_2','c_parser.py',1851),
('constant -> HEX_FLOAT_CONST','constant',1,'p_constant_2','c_parser.py',1852),
('constant -> CHAR_CONST','constant',1,'p_constant_3','c_parser.py',1868),
('constant -> WCHAR_CONST','constant',1,'p_constant_3','c_parser.py',1869),
('constant -> U8CHAR_CONST','constant',1,'p_constant_3','c_parser.py',1870),
('constant -> U16CHAR_CONST','constant',1,'p_constant_3','c_parser.py',1871),
('constant -> U32CHAR_CONST','constant',1,'p_constant_3','c_parser.py',1872),
('unified_string_literal -> STRING_LITERAL','unified_string_literal',1,'p_unified_string_literal','c_parser.py',1883),
('unified_string_literal -> unified_string_literal STRING_LITERAL','unified_string_literal',2,'p_unified_string_literal','c_parser.py',1884),
('unified_wstring_literal -> WSTRING_LITERAL','unified_wstring_literal',1,'p_unified_wstring_literal','c_parser.py',1894),
('unified_wstring_literal -> U8STRING_LITERAL','unified_wstring_literal',1,'p_unified_wstring_literal','c_parser.py',1895),
('unified_wstring_literal -> U16STRING_LITERAL','unified_wstring_literal',1,'p_unified_wstring_literal','c_parser.py',1896),
('unified_wstring_literal -> U32STRING_LITERAL','unified_wstring_literal',1,'p_unified_wstring_literal','c_parser.py',1897),
('unified_wstring_literal -> unified_wstring_literal WSTRING_LITERAL','unified_wstring_literal',2,'p_unified_wstring_literal','c_parser.py',1898),
('unified_wstring_literal -> unified_wstring_literal U8STRING_LITERAL','unified_wstring_literal',2,'p_unified_wstring_literal','c_parser.py',1899),
('unified_wstring_literal -> unified_wstring_literal U16STRING_LITERAL','unified_wstring_literal',2,'p_unified_wstring_literal','c_parser.py',1900),
('unified_wstring_literal -> unified_wstring_literal U32STRING_LITERAL','unified_wstring_literal',2,'p_unified_wstring_literal','c_parser.py',1901),
('brace_open -> LBRACE','brace_open',1,'p_brace_open','c_parser.py',1911),
('brace_close -> RBRACE','brace_close',1,'p_brace_close','c_parser.py',1917),
('empty -> <empty>','empty',0,'p_empty','c_parser.py',1923),
]
| _tabversion = '3.10'
_lr_method = 'LALR'
_lr_signature = 'translation_unit_or_emptyleftLORleftLANDleftORleftXORleftANDleftEQNEleftGTGELTLEleftRSHIFTLSHIFTleftPLUSMINUSleftTIMESDIVIDEMODAUTO 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 _BOOL _COMPLEX _NORETURN _THREAD_LOCAL _STATIC_ASSERT _ATOMIC _ALIGNOF _ALIGNAS 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 U8CHAR_CONST U16CHAR_CONST U32CHAR_CONST STRING_LITERAL WSTRING_LITERAL U8STRING_LITERAL U16STRING_LITERAL U32STRING_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 external_declaration : static_assert\n static_assert : _STATIC_ASSERT LPAREN constant_expression COMMA unified_string_literal RPAREN\n | _STATIC_ASSERT LPAREN constant_expression RPAREN\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 | static_assert\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_no_type : atomic_specifier declaration_specifiers_no_type_opt\n declaration_specifiers_no_type : alignment_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 declaration_specifiers : declaration_specifiers alignment_specifier\n storage_class_specifier : AUTO\n | REGISTER\n | STATIC\n | EXTERN\n | TYPEDEF\n | _THREAD_LOCAL\n function_specifier : INLINE\n | _NORETURN\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 | atomic_specifier\n atomic_specifier : _ATOMIC LPAREN type_name RPAREN\n type_qualifier : CONST\n | RESTRICT\n | VOLATILE\n | _ATOMIC\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 specifier_qualifier_list : alignment_specifier\n specifier_qualifier_list : specifier_qualifier_list alignment_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 alignment_specifier : _ALIGNAS LPAREN type_name RPAREN\n | _ALIGNAS LPAREN constant_expression RPAREN\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 assignment_expression : LPAREN compound_statement RPAREN 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 | _ALIGNOF 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 | U8CHAR_CONST\n | U16CHAR_CONST\n | U32CHAR_CONST\n unified_string_literal : STRING_LITERAL\n | unified_string_literal STRING_LITERAL\n unified_wstring_literal : WSTRING_LITERAL\n | U8STRING_LITERAL\n | U16STRING_LITERAL\n | U32STRING_LITERAL\n | unified_wstring_literal WSTRING_LITERAL\n | unified_wstring_literal U8STRING_LITERAL\n | unified_wstring_literal U16STRING_LITERAL\n | unified_wstring_literal U32STRING_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, 10, 14, 15, 63, 89, 90, 125, 205, 248, 262, 351, 493], [-337, 0, -58, -59, -60, -62, -63, -64, -65, -66, -67, -70, -71, -61, -87, -72, -73, -336, -74, -69, -218, -68]), 'SEMI': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 108, 109, 110, 115, 116, 117, 119, 120, 121, 122, 125, 126, 128, 130, 138, 139, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 233, 236, 239, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 262, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 307, 308, 322, 323, 326, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 344, 345, 349, 350, 351, 352, 353, 354, 356, 357, 365, 366, 367, 368, 369, 370, 371, 372, 398, 399, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 434, 435, 454, 455, 458, 459, 460, 463, 464, 465, 466, 468, 470, 474, 475, 476, 477, 478, 479, 480, 487, 488, 491, 493, 495, 496, 499, 500, 502, 503, 516, 517, 518, 519, 520, 521, 523, 524, 525, 529, 530, 532, 546, 547, 548, 549, 551, 554, 556, 563, 564, 567, 572, 573, 575, 577, 578, 579], [9, 9, -60, -62, -63, -64, -65, -66, -67, -337, 89, -70, -71, -52, -337, -337, -337, -125, -99, -337, -337, -29, -104, -122, -123, -124, -126, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, -337, -337, -126, -131, -178, -95, -96, -97, -98, -101, -85, -131, -19, -20, -132, -134, -179, -54, -37, -87, -72, -53, -90, -9, -10, -337, -91, -92, -100, -86, -126, -15, -16, -136, -138, -94, -93, -166, -167, -335, -146, -147, 207, -73, -337, -178, -55, -303, -252, -253, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -30, 207, 207, 207, -149, -156, -336, -337, -159, -160, -142, -144, -13, -337, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, -312, 357, -14, -337, 369, 370, 372, -235, -239, -274, -74, -38, -133, -135, -193, -69, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -35, -36, -137, -139, -168, 207, -151, 207, -153, -148, -157, 460, -140, -141, -145, -25, -26, -161, -163, -143, -127, -174, -175, -218, -217, -13, -337, -337, -234, -81, -84, -337, 477, -230, -231, 478, -233, -43, -44, -305, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -268, -269, -270, -271, -272, -273, -292, -293, -294, -295, -296, -31, -34, -169, -170, -150, -152, -158, -165, -219, -337, -221, -237, -236, -83, 523, -337, -229, -232, -240, -194, -39, -42, -275, -68, -290, -291, -281, -282, -32, -33, -162, -164, -220, -337, -337, -337, -337, 552, -195, -40, -41, -254, -222, -84, -224, -225, 565, -299, -306, -337, 573, -300, -223, -226, -337, -337, -228, -227]), 'PPHASH': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 14, 15, 63, 89, 90, 125, 205, 248, 262, 351, 493], [14, 14, -60, -62, -63, -64, -65, -66, -67, -70, -71, -61, -87, -72, -73, -336, -74, -69, -218, -68]), 'PPPRAGMA': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 14, 15, 63, 89, 90, 119, 122, 125, 126, 200, 201, 202, 204, 205, 207, 208, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 239, 248, 262, 329, 331, 334, 351, 352, 354, 356, 357, 365, 366, 369, 370, 372, 460, 464, 465, 466, 474, 477, 478, 493, 518, 519, 520, 521, 546, 547, 548, 549, 563, 572, 573, 575, 577, 578, 579], [15, 15, -60, -62, -63, -64, -65, -66, -67, -70, -71, -61, -87, -72, -335, 15, -73, 15, 15, 15, 15, -156, -336, -159, -160, 15, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 15, -74, -69, 15, 15, -157, -218, -217, 15, 15, -234, 15, -84, -230, -231, -233, -158, -219, 15, -221, -83, -229, -232, -68, -220, 15, 15, 15, -222, -84, -224, -225, 15, -223, -226, 15, 15, -228, -227]), '_STATIC_ASSERT': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 14, 15, 63, 89, 90, 119, 125, 126, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 239, 248, 262, 351, 352, 354, 356, 357, 365, 366, 369, 370, 372, 464, 465, 466, 474, 477, 478, 493, 518, 519, 520, 521, 546, 547, 548, 549, 563, 572, 573, 575, 577, 578, 579], [16, 16, -60, -62, -63, -64, -65, -66, -67, -70, -71, -61, -87, -72, -335, -73, 16, -336, 16, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 16, -74, -69, -218, -217, 16, 16, -234, 16, -84, -230, -231, -233, -219, 16, -221, -83, -229, -232, -68, -220, 16, 16, 16, -222, -84, -224, -225, 16, -223, -226, 16, 16, -228, -227]), 'ID': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 17, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 68, 69, 70, 71, 73, 74, 75, 76, 77, 79, 80, 81, 89, 90, 91, 93, 94, 96, 97, 98, 99, 100, 101, 102, 104, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 124, 125, 126, 132, 133, 134, 135, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 179, 180, 181, 189, 191, 192, 193, 194, 195, 196, 203, 205, 206, 209, 211, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 241, 244, 248, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 290, 294, 302, 305, 306, 310, 314, 318, 319, 326, 327, 328, 330, 332, 333, 336, 337, 338, 343, 344, 345, 349, 350, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 393, 395, 396, 397, 400, 443, 444, 447, 450, 452, 454, 455, 458, 459, 461, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 501, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 557, 558, 563, 565, 572, 573, 575, 577, 578, 579], [27, 27, -60, -62, -63, -64, -65, -66, -67, 27, -70, -71, 27, 27, -337, -337, -337, -125, -99, 27, -337, -104, -337, -122, -123, -124, -126, -238, 116, 120, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -154, -155, -61, 27, 27, -126, -131, -95, -96, -97, -98, -101, 27, -131, 27, -87, -72, 154, -337, 154, -90, -9, -10, -337, -91, -92, -100, -126, -94, -180, -27, -28, -182, -93, -166, -167, 199, -335, -146, -147, 154, -73, 230, 27, 154, -337, 154, 154, -284, -285, -286, -283, 154, 154, 154, 154, -287, -288, 154, -337, -28, 27, 27, 154, -181, -183, 199, 199, -149, -336, 27, -142, -144, 230, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 154, 154, 230, 368, 154, -74, -337, 154, -337, -28, -69, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 426, 428, 154, 154, -284, 154, 154, 154, 27, 27, -337, -168, 199, 154, -151, -153, -148, -140, -141, -145, 154, -143, -127, -174, -175, -218, -217, 230, 230, -234, 154, 154, 154, 154, 230, -84, 154, -230, -231, -233, 154, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 154, -12, 154, 154, -284, 154, 154, 154, -337, 154, 27, 154, 154, -169, -170, -150, -152, 27, 154, -219, 230, -221, 154, -83, 154, -229, -232, -337, -198, -337, -68, 154, 154, 154, 154, -337, -28, -284, -220, 230, 230, 230, 154, 154, 154, -11, -284, 154, 154, -222, -84, -224, -225, 154, -337, 154, 154, 230, 154, -223, -226, 230, 230, -228, -227]), 'LPAREN': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 63, 68, 69, 70, 71, 73, 74, 75, 76, 77, 79, 80, 81, 87, 88, 89, 90, 91, 93, 95, 96, 97, 98, 99, 100, 101, 102, 104, 107, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 124, 125, 126, 130, 132, 133, 134, 136, 138, 142, 143, 144, 145, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 189, 191, 192, 193, 194, 203, 205, 206, 209, 211, 213, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 234, 235, 237, 238, 239, 240, 244, 248, 249, 253, 254, 255, 256, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 287, 288, 290, 294, 296, 297, 298, 299, 302, 305, 306, 307, 308, 314, 315, 318, 319, 320, 321, 326, 328, 330, 332, 333, 336, 337, 338, 343, 344, 345, 347, 348, 349, 350, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 398, 399, 400, 401, 424, 426, 427, 428, 429, 434, 435, 441, 442, 443, 447, 450, 452, 454, 455, 458, 459, 461, 462, 464, 465, 466, 469, 473, 474, 476, 477, 478, 481, 483, 487, 488, 492, 493, 494, 495, 496, 497, 502, 503, 504, 505, 506, 509, 510, 512, 514, 518, 519, 520, 521, 522, 523, 526, 527, 529, 530, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 552, 554, 555, 556, 558, 559, 560, 563, 565, 567, 570, 571, 572, 573, 575, 577, 578, 579], [17, 17, -60, -62, -63, -64, -65, -66, -67, 81, -70, -71, 91, 17, 94, 17, -337, -337, -337, -125, -99, 17, -337, -29, -104, -337, -122, -123, -124, -126, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, 123, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, 124, -61, 81, 17, -126, 123, -95, -96, -97, -98, -101, 81, -131, 81, 135, -37, -87, -72, 136, -337, 94, -90, -9, -10, -337, -91, -92, -100, -126, 123, -94, -180, -27, -28, -182, -93, -166, -167, -335, -146, -147, 136, -73, 235, 135, 81, 235, -337, 235, -303, -284, -285, -286, -283, 284, 290, 290, 136, 294, 295, -289, -312, -287, -288, -301, -302, -304, 300, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -30, 235, -337, -28, 318, 81, 235, -181, -183, -149, -336, 81, -142, -144, 347, 235, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, -312, 136, 358, 235, 362, 363, 235, 367, 235, -74, -38, -337, 235, -337, -28, -69, -326, 235, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 136, 235, 235, -297, -298, 235, 235, -331, -332, -333, -334, -284, 235, 235, -35, -36, 318, 444, 318, -337, -45, 453, -168, 136, -151, -153, -148, -140, -141, -145, 136, -143, -127, 347, 347, -174, -175, -218, -217, 235, 235, -234, 235, 235, 235, 235, 235, -84, 235, -230, -231, -233, 235, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 235, -12, 136, -284, 235, 235, -43, -44, 136, -305, -292, -293, -294, -295, -296, -31, -34, 444, 453, -337, 318, 235, 235, -169, -170, -150, -152, 81, 136, -219, 235, -221, 136, 522, -83, 235, -229, -232, -337, -198, -39, -42, -337, -68, 136, -290, -291, 235, -32, -33, 235, -337, -28, -207, -213, -211, -284, -220, 235, 235, 235, 235, 235, 235, -11, -40, -41, -284, 235, 235, -50, -51, -209, -208, -210, -212, -222, -84, -224, -225, 235, -299, -337, -306, 235, -46, -49, 235, 235, -300, -47, -48, -223, -226, 235, 235, -228, -227]), 'TIMES': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 17, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 68, 69, 70, 71, 73, 74, 75, 76, 77, 80, 81, 89, 90, 91, 93, 96, 97, 98, 99, 100, 101, 102, 104, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 124, 125, 126, 132, 133, 134, 136, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 181, 189, 191, 192, 194, 203, 205, 206, 209, 211, 213, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 235, 239, 244, 247, 248, 253, 254, 255, 256, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 287, 288, 289, 290, 291, 292, 293, 294, 296, 297, 298, 299, 302, 305, 306, 318, 319, 326, 328, 330, 332, 333, 336, 337, 338, 343, 344, 345, 347, 349, 350, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 443, 450, 452, 454, 455, 458, 459, 461, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 491, 492, 493, 494, 495, 496, 497, 499, 500, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 554, 555, 556, 558, 563, 565, 567, 572, 573, 575, 577, 578, 579], [29, 29, -60, -62, -63, -64, -65, -66, -67, 29, -70, -71, 29, -337, -337, -337, -125, -99, 29, -337, -104, -337, -122, -123, -124, -126, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 29, 29, -126, -131, -95, -96, -97, -98, -101, -131, 29, -87, -72, 142, -337, -90, -9, -10, -337, -91, -92, -100, -126, -94, 29, -27, -28, -182, -93, -166, -167, -335, -146, -147, 142, -73, 142, 29, 142, -337, 142, -303, 265, -255, -284, -285, -286, -283, -274, -276, 142, 142, 142, 142, -289, -312, -287, -288, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, 302, -337, -28, 29, 29, 142, -183, -149, -336, 29, -142, -144, 29, 142, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, -312, 142, 142, 142, 142, -274, -74, -337, 395, -337, -28, -69, -326, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, -297, -298, -277, 142, -278, -279, -280, 142, -331, -332, -333, -334, -284, 142, 142, 29, 451, -168, 142, -151, -153, -148, -140, -141, -145, 142, -143, -127, 29, -174, -175, -218, -217, 142, 142, -234, 142, 142, 142, 142, 142, -84, 142, -230, -231, -233, 142, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 142, -12, 142, -284, 142, 142, 142, -305, -256, -257, -258, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, -292, -293, -294, -295, -296, -337, 142, 514, -169, -170, -150, -152, 29, 142, -219, 142, -221, 142, -83, 142, -229, -232, -337, -198, -275, -337, -68, 142, -290, -291, 142, -281, -282, 537, -337, -28, -284, -220, 142, 142, 142, 142, 142, 142, -11, -284, 142, 142, -222, -84, -224, -225, 142, -299, -337, -306, 142, 142, 142, -300, -223, -226, 142, 142, -228, -227]), 'TYPEID': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61, 62, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 79, 80, 81, 89, 90, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 110, 111, 112, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 132, 135, 136, 178, 189, 190, 191, 193, 194, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 262, 285, 286, 290, 294, 295, 300, 307, 308, 309, 314, 318, 326, 329, 330, 331, 332, 333, 334, 336, 337, 338, 344, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 460, 461, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [34, 34, -60, -62, -63, -64, -65, -66, -67, 34, 88, -70, -71, -52, -337, -337, -337, -125, -99, 34, -337, -29, -104, -337, -122, -123, -124, -126, -238, 117, 121, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -154, -155, -61, 34, -88, 88, 34, -126, -131, 34, -95, -96, -97, -98, -101, 88, -131, 88, -87, -72, 34, -53, -90, -9, -10, -337, -91, -92, -100, -126, -94, -180, -27, -28, -182, -93, -166, -167, -335, -146, -147, 34, 34, 34, -73, 34, -89, 88, 34, 34, -30, 320, 34, 88, -181, -183, 34, 34, 34, -149, -156, -336, 88, -159, -160, -142, 34, -144, 34, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 34, -74, -69, 427, 429, 34, 34, 34, 34, -35, -36, 34, 320, 34, -168, 34, -151, 34, -153, -148, -157, -140, -141, -145, -143, -127, 34, -174, -175, -218, -217, -234, -81, -84, 34, -230, -231, -233, -31, -34, 34, 34, -169, -170, -150, -152, -158, 88, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'ENUM': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 18, 20, 21, 22, 25, 26, 27, 28, 33, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 69, 70, 71, 72, 89, 90, 94, 95, 96, 97, 98, 99, 100, 101, 110, 114, 115, 119, 122, 123, 124, 125, 126, 127, 135, 136, 178, 190, 194, 200, 201, 202, 204, 205, 207, 208, 210, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 262, 290, 294, 295, 300, 307, 308, 309, 318, 329, 331, 334, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 460, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [35, 35, -60, -62, -63, -64, -65, -66, -67, 35, -70, -71, -52, -337, -337, -337, 35, -337, -29, -104, -337, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 35, -88, 35, -337, -131, 35, -87, -72, 35, -53, -90, -9, -10, -337, -91, -92, -94, -182, -93, -335, 35, 35, 35, -73, 35, -89, 35, 35, -30, 35, -183, 35, 35, 35, -156, -336, -159, -160, 35, 35, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 35, -74, -69, 35, 35, 35, 35, -35, -36, 35, 35, 35, 35, -157, -127, 35, -174, -175, -218, -217, -234, -81, -84, 35, -230, -231, -233, -31, -34, 35, 35, -158, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'VOID': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 110, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 135, 136, 178, 189, 190, 194, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 262, 290, 294, 295, 300, 307, 308, 309, 318, 326, 329, 330, 331, 332, 333, 334, 336, 337, 338, 344, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 460, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [37, 37, -60, -62, -63, -64, -65, -66, -67, 37, 37, -70, -71, -52, -337, -337, -337, -125, -99, 37, -337, -29, -104, -122, -123, -124, -126, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 37, -88, 37, 37, -126, -131, 37, -95, -96, -97, -98, -101, -131, -87, -72, 37, -53, -90, -9, -10, -337, -91, -92, -100, -126, -94, -182, -93, -166, -167, -335, -146, -147, 37, 37, 37, -73, 37, -89, 37, 37, -30, 37, 37, -183, 37, 37, 37, -149, -156, -336, 37, -159, -160, -142, 37, -144, 37, 37, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 37, -74, -69, 37, 37, 37, 37, -35, -36, 37, 37, -168, 37, -151, 37, -153, -148, -157, -140, -141, -145, -143, -127, 37, -174, -175, -218, -217, -234, -81, -84, 37, -230, -231, -233, -31, -34, 37, 37, -169, -170, -150, -152, -158, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), '_BOOL': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 110, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 135, 136, 178, 189, 190, 194, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 262, 290, 294, 295, 300, 307, 308, 309, 318, 326, 329, 330, 331, 332, 333, 334, 336, 337, 338, 344, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 460, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [38, 38, -60, -62, -63, -64, -65, -66, -67, 38, 38, -70, -71, -52, -337, -337, -337, -125, -99, 38, -337, -29, -104, -122, -123, -124, -126, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 38, -88, 38, 38, -126, -131, 38, -95, -96, -97, -98, -101, -131, -87, -72, 38, -53, -90, -9, -10, -337, -91, -92, -100, -126, -94, -182, -93, -166, -167, -335, -146, -147, 38, 38, 38, -73, 38, -89, 38, 38, -30, 38, 38, -183, 38, 38, 38, -149, -156, -336, 38, -159, -160, -142, 38, -144, 38, 38, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 38, -74, -69, 38, 38, 38, 38, -35, -36, 38, 38, -168, 38, -151, 38, -153, -148, -157, -140, -141, -145, -143, -127, 38, -174, -175, -218, -217, -234, -81, -84, 38, -230, -231, -233, -31, -34, 38, 38, -169, -170, -150, -152, -158, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'CHAR': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 110, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 135, 136, 178, 189, 190, 194, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 262, 290, 294, 295, 300, 307, 308, 309, 318, 326, 329, 330, 331, 332, 333, 334, 336, 337, 338, 344, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 460, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [39, 39, -60, -62, -63, -64, -65, -66, -67, 39, 39, -70, -71, -52, -337, -337, -337, -125, -99, 39, -337, -29, -104, -122, -123, -124, -126, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 39, -88, 39, 39, -126, -131, 39, -95, -96, -97, -98, -101, -131, -87, -72, 39, -53, -90, -9, -10, -337, -91, -92, -100, -126, -94, -182, -93, -166, -167, -335, -146, -147, 39, 39, 39, -73, 39, -89, 39, 39, -30, 39, 39, -183, 39, 39, 39, -149, -156, -336, 39, -159, -160, -142, 39, -144, 39, 39, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 39, -74, -69, 39, 39, 39, 39, -35, -36, 39, 39, -168, 39, -151, 39, -153, -148, -157, -140, -141, -145, -143, -127, 39, -174, -175, -218, -217, -234, -81, -84, 39, -230, -231, -233, -31, -34, 39, 39, -169, -170, -150, -152, -158, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'SHORT': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 110, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 135, 136, 178, 189, 190, 194, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 262, 290, 294, 295, 300, 307, 308, 309, 318, 326, 329, 330, 331, 332, 333, 334, 336, 337, 338, 344, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 460, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [40, 40, -60, -62, -63, -64, -65, -66, -67, 40, 40, -70, -71, -52, -337, -337, -337, -125, -99, 40, -337, -29, -104, -122, -123, -124, -126, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 40, -88, 40, 40, -126, -131, 40, -95, -96, -97, -98, -101, -131, -87, -72, 40, -53, -90, -9, -10, -337, -91, -92, -100, -126, -94, -182, -93, -166, -167, -335, -146, -147, 40, 40, 40, -73, 40, -89, 40, 40, -30, 40, 40, -183, 40, 40, 40, -149, -156, -336, 40, -159, -160, -142, 40, -144, 40, 40, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 40, -74, -69, 40, 40, 40, 40, -35, -36, 40, 40, -168, 40, -151, 40, -153, -148, -157, -140, -141, -145, -143, -127, 40, -174, -175, -218, -217, -234, -81, -84, 40, -230, -231, -233, -31, -34, 40, 40, -169, -170, -150, -152, -158, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'INT': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 110, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 135, 136, 178, 189, 190, 194, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 262, 290, 294, 295, 300, 307, 308, 309, 318, 326, 329, 330, 331, 332, 333, 334, 336, 337, 338, 344, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 460, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [41, 41, -60, -62, -63, -64, -65, -66, -67, 41, 41, -70, -71, -52, -337, -337, -337, -125, -99, 41, -337, -29, -104, -122, -123, -124, -126, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 41, -88, 41, 41, -126, -131, 41, -95, -96, -97, -98, -101, -131, -87, -72, 41, -53, -90, -9, -10, -337, -91, -92, -100, -126, -94, -182, -93, -166, -167, -335, -146, -147, 41, 41, 41, -73, 41, -89, 41, 41, -30, 41, 41, -183, 41, 41, 41, -149, -156, -336, 41, -159, -160, -142, 41, -144, 41, 41, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 41, -74, -69, 41, 41, 41, 41, -35, -36, 41, 41, -168, 41, -151, 41, -153, -148, -157, -140, -141, -145, -143, -127, 41, -174, -175, -218, -217, -234, -81, -84, 41, -230, -231, -233, -31, -34, 41, 41, -169, -170, -150, -152, -158, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'LONG': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 110, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 135, 136, 178, 189, 190, 194, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 262, 290, 294, 295, 300, 307, 308, 309, 318, 326, 329, 330, 331, 332, 333, 334, 336, 337, 338, 344, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 460, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [42, 42, -60, -62, -63, -64, -65, -66, -67, 42, 42, -70, -71, -52, -337, -337, -337, -125, -99, 42, -337, -29, -104, -122, -123, -124, -126, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 42, -88, 42, 42, -126, -131, 42, -95, -96, -97, -98, -101, -131, -87, -72, 42, -53, -90, -9, -10, -337, -91, -92, -100, -126, -94, -182, -93, -166, -167, -335, -146, -147, 42, 42, 42, -73, 42, -89, 42, 42, -30, 42, 42, -183, 42, 42, 42, -149, -156, -336, 42, -159, -160, -142, 42, -144, 42, 42, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 42, -74, -69, 42, 42, 42, 42, -35, -36, 42, 42, -168, 42, -151, 42, -153, -148, -157, -140, -141, -145, -143, -127, 42, -174, -175, -218, -217, -234, -81, -84, 42, -230, -231, -233, -31, -34, 42, 42, -169, -170, -150, -152, -158, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'FLOAT': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 110, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 135, 136, 178, 189, 190, 194, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 262, 290, 294, 295, 300, 307, 308, 309, 318, 326, 329, 330, 331, 332, 333, 334, 336, 337, 338, 344, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 460, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [43, 43, -60, -62, -63, -64, -65, -66, -67, 43, 43, -70, -71, -52, -337, -337, -337, -125, -99, 43, -337, -29, -104, -122, -123, -124, -126, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 43, -88, 43, 43, -126, -131, 43, -95, -96, -97, -98, -101, -131, -87, -72, 43, -53, -90, -9, -10, -337, -91, -92, -100, -126, -94, -182, -93, -166, -167, -335, -146, -147, 43, 43, 43, -73, 43, -89, 43, 43, -30, 43, 43, -183, 43, 43, 43, -149, -156, -336, 43, -159, -160, -142, 43, -144, 43, 43, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 43, -74, -69, 43, 43, 43, 43, -35, -36, 43, 43, -168, 43, -151, 43, -153, -148, -157, -140, -141, -145, -143, -127, 43, -174, -175, -218, -217, -234, -81, -84, 43, -230, -231, -233, -31, -34, 43, 43, -169, -170, -150, -152, -158, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'DOUBLE': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 110, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 135, 136, 178, 189, 190, 194, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 262, 290, 294, 295, 300, 307, 308, 309, 318, 326, 329, 330, 331, 332, 333, 334, 336, 337, 338, 344, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 460, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [44, 44, -60, -62, -63, -64, -65, -66, -67, 44, 44, -70, -71, -52, -337, -337, -337, -125, -99, 44, -337, -29, -104, -122, -123, -124, -126, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 44, -88, 44, 44, -126, -131, 44, -95, -96, -97, -98, -101, -131, -87, -72, 44, -53, -90, -9, -10, -337, -91, -92, -100, -126, -94, -182, -93, -166, -167, -335, -146, -147, 44, 44, 44, -73, 44, -89, 44, 44, -30, 44, 44, -183, 44, 44, 44, -149, -156, -336, 44, -159, -160, -142, 44, -144, 44, 44, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 44, -74, -69, 44, 44, 44, 44, -35, -36, 44, 44, -168, 44, -151, 44, -153, -148, -157, -140, -141, -145, -143, -127, 44, -174, -175, -218, -217, -234, -81, -84, 44, -230, -231, -233, -31, -34, 44, 44, -169, -170, -150, -152, -158, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), '_COMPLEX': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 110, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 135, 136, 178, 189, 190, 194, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 262, 290, 294, 295, 300, 307, 308, 309, 318, 326, 329, 330, 331, 332, 333, 334, 336, 337, 338, 344, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 460, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [45, 45, -60, -62, -63, -64, -65, -66, -67, 45, 45, -70, -71, -52, -337, -337, -337, -125, -99, 45, -337, -29, -104, -122, -123, -124, -126, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 45, -88, 45, 45, -126, -131, 45, -95, -96, -97, -98, -101, -131, -87, -72, 45, -53, -90, -9, -10, -337, -91, -92, -100, -126, -94, -182, -93, -166, -167, -335, -146, -147, 45, 45, 45, -73, 45, -89, 45, 45, -30, 45, 45, -183, 45, 45, 45, -149, -156, -336, 45, -159, -160, -142, 45, -144, 45, 45, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 45, -74, -69, 45, 45, 45, 45, -35, -36, 45, 45, -168, 45, -151, 45, -153, -148, -157, -140, -141, -145, -143, -127, 45, -174, -175, -218, -217, -234, -81, -84, 45, -230, -231, -233, -31, -34, 45, 45, -169, -170, -150, -152, -158, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'SIGNED': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 110, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 135, 136, 178, 189, 190, 194, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 262, 290, 294, 295, 300, 307, 308, 309, 318, 326, 329, 330, 331, 332, 333, 334, 336, 337, 338, 344, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 460, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [46, 46, -60, -62, -63, -64, -65, -66, -67, 46, 46, -70, -71, -52, -337, -337, -337, -125, -99, 46, -337, -29, -104, -122, -123, -124, -126, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 46, -88, 46, 46, -126, -131, 46, -95, -96, -97, -98, -101, -131, -87, -72, 46, -53, -90, -9, -10, -337, -91, -92, -100, -126, -94, -182, -93, -166, -167, -335, -146, -147, 46, 46, 46, -73, 46, -89, 46, 46, -30, 46, 46, -183, 46, 46, 46, -149, -156, -336, 46, -159, -160, -142, 46, -144, 46, 46, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 46, -74, -69, 46, 46, 46, 46, -35, -36, 46, 46, -168, 46, -151, 46, -153, -148, -157, -140, -141, -145, -143, -127, 46, -174, -175, -218, -217, -234, -81, -84, 46, -230, -231, -233, -31, -34, 46, 46, -169, -170, -150, -152, -158, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'UNSIGNED': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 110, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 135, 136, 178, 189, 190, 194, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 262, 290, 294, 295, 300, 307, 308, 309, 318, 326, 329, 330, 331, 332, 333, 334, 336, 337, 338, 344, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 460, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [47, 47, -60, -62, -63, -64, -65, -66, -67, 47, 47, -70, -71, -52, -337, -337, -337, -125, -99, 47, -337, -29, -104, -122, -123, -124, -126, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 47, -88, 47, 47, -126, -131, 47, -95, -96, -97, -98, -101, -131, -87, -72, 47, -53, -90, -9, -10, -337, -91, -92, -100, -126, -94, -182, -93, -166, -167, -335, -146, -147, 47, 47, 47, -73, 47, -89, 47, 47, -30, 47, 47, -183, 47, 47, 47, -149, -156, -336, 47, -159, -160, -142, 47, -144, 47, 47, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 47, -74, -69, 47, 47, 47, 47, -35, -36, 47, 47, -168, 47, -151, 47, -153, -148, -157, -140, -141, -145, -143, -127, 47, -174, -175, -218, -217, -234, -81, -84, 47, -230, -231, -233, -31, -34, 47, 47, -169, -170, -150, -152, -158, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), '__INT128': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 110, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 135, 136, 178, 189, 190, 194, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 262, 290, 294, 295, 300, 307, 308, 309, 318, 326, 329, 330, 331, 332, 333, 334, 336, 337, 338, 344, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 460, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [48, 48, -60, -62, -63, -64, -65, -66, -67, 48, 48, -70, -71, -52, -337, -337, -337, -125, -99, 48, -337, -29, -104, -122, -123, -124, -126, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 48, -88, 48, 48, -126, -131, 48, -95, -96, -97, -98, -101, -131, -87, -72, 48, -53, -90, -9, -10, -337, -91, -92, -100, -126, -94, -182, -93, -166, -167, -335, -146, -147, 48, 48, 48, -73, 48, -89, 48, 48, -30, 48, 48, -183, 48, 48, 48, -149, -156, -336, 48, -159, -160, -142, 48, -144, 48, 48, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 48, -74, -69, 48, 48, 48, 48, -35, -36, 48, 48, -168, 48, -151, 48, -153, -148, -157, -140, -141, -145, -143, -127, 48, -174, -175, -218, -217, -234, -81, -84, 48, -230, -231, -233, -31, -34, 48, 48, -169, -170, -150, -152, -158, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), '_ATOMIC': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 104, 110, 113, 114, 115, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 134, 135, 136, 178, 180, 181, 189, 190, 194, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 255, 256, 262, 290, 294, 295, 300, 307, 308, 309, 318, 319, 326, 329, 330, 331, 332, 333, 334, 336, 337, 338, 344, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 443, 444, 453, 454, 455, 458, 459, 460, 464, 466, 474, 477, 478, 493, 502, 503, 505, 506, 518, 546, 547, 548, 549, 572, 573, 578, 579], [49, 49, -60, -62, -63, -64, -65, -66, -67, 71, 80, -70, -71, -52, 71, 71, 71, -125, -99, 107, 71, -29, -104, 80, -122, -123, -124, 71, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 71, -88, 80, 107, 71, -131, 71, -95, -96, -97, -98, -101, -131, -87, -72, 80, 49, -53, -90, -9, -10, 71, -91, -92, -100, -126, -94, 80, -182, -93, -166, -167, -335, -146, -147, 49, 49, 49, -73, 71, -89, 80, 49, 49, -30, 80, 80, 80, 107, -183, 49, 49, 49, -149, -156, -336, 80, -159, -160, -142, 71, -144, 80, 71, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 49, -74, 80, 80, -69, 49, 49, 49, 49, -35, -36, 49, 49, 80, -168, 49, -151, 49, -153, -148, -157, -140, -141, -145, -143, -127, 49, -174, -175, -218, -217, -234, -81, -84, 71, -230, -231, -233, -31, -34, 80, 49, 49, -169, -170, -150, -152, -158, -219, -221, -83, -229, -232, -68, -32, -33, 80, 80, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'CONST': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 93, 94, 95, 99, 102, 104, 113, 114, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 134, 135, 136, 178, 180, 181, 189, 194, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 255, 256, 262, 290, 294, 295, 300, 307, 308, 309, 318, 319, 326, 329, 330, 331, 332, 333, 334, 336, 337, 338, 344, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 443, 444, 453, 454, 455, 458, 459, 460, 464, 466, 474, 477, 478, 493, 502, 503, 505, 506, 518, 546, 547, 548, 549, 572, 573, 578, 579], [50, 50, -60, -62, -63, -64, -65, -66, -67, 50, 50, -70, -71, -52, 50, 50, 50, -125, -99, 50, -29, -104, 50, -122, -123, -124, 50, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 50, -88, 50, 50, -131, 50, -95, -96, -97, -98, -101, -131, -87, -72, 50, 50, -53, 50, -100, -126, 50, -182, -166, -167, -335, -146, -147, 50, 50, 50, -73, 50, -89, 50, 50, 50, -30, 50, 50, 50, -183, 50, 50, 50, -149, -156, -336, 50, -159, -160, -142, 50, -144, 50, 50, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 50, -74, 50, 50, -69, 50, 50, 50, 50, -35, -36, 50, 50, 50, -168, 50, -151, 50, -153, -148, -157, -140, -141, -145, -143, -127, 50, -174, -175, -218, -217, -234, -81, -84, 50, -230, -231, -233, -31, -34, 50, 50, 50, -169, -170, -150, -152, -158, -219, -221, -83, -229, -232, -68, -32, -33, 50, 50, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'RESTRICT': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 93, 94, 95, 99, 102, 104, 113, 114, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 134, 135, 136, 178, 180, 181, 189, 194, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 255, 256, 262, 290, 294, 295, 300, 307, 308, 309, 318, 319, 326, 329, 330, 331, 332, 333, 334, 336, 337, 338, 344, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 443, 444, 453, 454, 455, 458, 459, 460, 464, 466, 474, 477, 478, 493, 502, 503, 505, 506, 518, 546, 547, 548, 549, 572, 573, 578, 579], [51, 51, -60, -62, -63, -64, -65, -66, -67, 51, 51, -70, -71, -52, 51, 51, 51, -125, -99, 51, -29, -104, 51, -122, -123, -124, 51, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 51, -88, 51, 51, -131, 51, -95, -96, -97, -98, -101, -131, -87, -72, 51, 51, -53, 51, -100, -126, 51, -182, -166, -167, -335, -146, -147, 51, 51, 51, -73, 51, -89, 51, 51, 51, -30, 51, 51, 51, -183, 51, 51, 51, -149, -156, -336, 51, -159, -160, -142, 51, -144, 51, 51, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 51, -74, 51, 51, -69, 51, 51, 51, 51, -35, -36, 51, 51, 51, -168, 51, -151, 51, -153, -148, -157, -140, -141, -145, -143, -127, 51, -174, -175, -218, -217, -234, -81, -84, 51, -230, -231, -233, -31, -34, 51, 51, 51, -169, -170, -150, -152, -158, -219, -221, -83, -229, -232, -68, -32, -33, 51, 51, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'VOLATILE': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 93, 94, 95, 99, 102, 104, 113, 114, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 134, 135, 136, 178, 180, 181, 189, 194, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 213, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 255, 256, 262, 290, 294, 295, 300, 307, 308, 309, 318, 319, 326, 329, 330, 331, 332, 333, 334, 336, 337, 338, 344, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 443, 444, 453, 454, 455, 458, 459, 460, 464, 466, 474, 477, 478, 493, 502, 503, 505, 506, 518, 546, 547, 548, 549, 572, 573, 578, 579], [52, 52, -60, -62, -63, -64, -65, -66, -67, 52, 52, -70, -71, -52, 52, 52, 52, -125, -99, 52, -29, -104, 52, -122, -123, -124, 52, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 52, -88, 52, 52, -131, 52, -95, -96, -97, -98, -101, -131, -87, -72, 52, 52, -53, 52, -100, -126, 52, -182, -166, -167, -335, -146, -147, 52, 52, 52, -73, 52, -89, 52, 52, 52, -30, 52, 52, 52, -183, 52, 52, 52, -149, -156, -336, 52, -159, -160, -142, 52, -144, 52, 52, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 52, -74, 52, 52, -69, 52, 52, 52, 52, -35, -36, 52, 52, 52, -168, 52, -151, 52, -153, -148, -157, -140, -141, -145, -143, -127, 52, -174, -175, -218, -217, -234, -81, -84, 52, -230, -231, -233, -31, -34, 52, 52, 52, -169, -170, -150, -152, -158, -219, -221, -83, -229, -232, -68, -32, -33, 52, 52, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'AUTO': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 99, 102, 104, 116, 117, 119, 120, 121, 125, 126, 127, 135, 178, 189, 203, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 248, 262, 307, 308, 309, 318, 326, 330, 332, 333, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [53, 53, -60, -62, -63, -64, -65, -66, -67, 53, 53, -70, -71, -52, 53, 53, 53, -125, -99, 53, -29, -104, -122, -123, -124, 53, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 53, -88, 53, 53, -131, 53, -95, -96, -97, -98, -101, -131, -87, -72, 53, -53, 53, -100, -126, -166, -167, -335, -146, -147, -73, 53, -89, 53, -30, 53, -149, -336, 53, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, -74, -69, -35, -36, 53, 53, -168, -151, -153, -148, -127, 53, -174, -175, -218, -217, -234, -81, -84, 53, -230, -231, -233, -31, -34, 53, 53, -169, -170, -150, -152, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'REGISTER': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 99, 102, 104, 116, 117, 119, 120, 121, 125, 126, 127, 135, 178, 189, 203, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 248, 262, 307, 308, 309, 318, 326, 330, 332, 333, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [54, 54, -60, -62, -63, -64, -65, -66, -67, 54, 54, -70, -71, -52, 54, 54, 54, -125, -99, 54, -29, -104, -122, -123, -124, 54, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 54, -88, 54, 54, -131, 54, -95, -96, -97, -98, -101, -131, -87, -72, 54, -53, 54, -100, -126, -166, -167, -335, -146, -147, -73, 54, -89, 54, -30, 54, -149, -336, 54, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, -74, -69, -35, -36, 54, 54, -168, -151, -153, -148, -127, 54, -174, -175, -218, -217, -234, -81, -84, 54, -230, -231, -233, -31, -34, 54, 54, -169, -170, -150, -152, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'STATIC': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 93, 94, 95, 99, 102, 104, 114, 116, 117, 119, 120, 121, 125, 126, 127, 134, 135, 178, 181, 189, 194, 203, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 248, 256, 262, 307, 308, 309, 318, 326, 330, 332, 333, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 443, 444, 453, 454, 455, 458, 459, 464, 466, 474, 477, 478, 493, 502, 503, 506, 518, 546, 547, 548, 549, 572, 573, 578, 579], [28, 28, -60, -62, -63, -64, -65, -66, -67, 28, 28, -70, -71, -52, 28, 28, 28, -125, -99, 28, -29, -104, -122, -123, -124, 28, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 28, -88, 28, 28, -131, 28, -95, -96, -97, -98, -101, -131, -87, -72, 180, 28, -53, 28, -100, -126, -182, -166, -167, -335, -146, -147, -73, 28, -89, 255, 28, -30, 306, 28, -183, -149, -336, 28, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, -74, 397, -69, -35, -36, 28, 28, -168, -151, -153, -148, -127, 28, -174, -175, -218, -217, -234, -81, -84, 28, -230, -231, -233, -31, -34, 505, 28, 28, -169, -170, -150, -152, -219, -221, -83, -229, -232, -68, -32, -33, 539, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'EXTERN': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 99, 102, 104, 116, 117, 119, 120, 121, 125, 126, 127, 135, 178, 189, 203, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 248, 262, 307, 308, 309, 318, 326, 330, 332, 333, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [55, 55, -60, -62, -63, -64, -65, -66, -67, 55, 55, -70, -71, -52, 55, 55, 55, -125, -99, 55, -29, -104, -122, -123, -124, 55, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 55, -88, 55, 55, -131, 55, -95, -96, -97, -98, -101, -131, -87, -72, 55, -53, 55, -100, -126, -166, -167, -335, -146, -147, -73, 55, -89, 55, -30, 55, -149, -336, 55, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, -74, -69, -35, -36, 55, 55, -168, -151, -153, -148, -127, 55, -174, -175, -218, -217, -234, -81, -84, 55, -230, -231, -233, -31, -34, 55, 55, -169, -170, -150, -152, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'TYPEDEF': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 99, 102, 104, 116, 117, 119, 120, 121, 125, 126, 127, 135, 178, 189, 203, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 248, 262, 307, 308, 309, 318, 326, 330, 332, 333, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [56, 56, -60, -62, -63, -64, -65, -66, -67, 56, 56, -70, -71, -52, 56, 56, 56, -125, -99, 56, -29, -104, -122, -123, -124, 56, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 56, -88, 56, 56, -131, 56, -95, -96, -97, -98, -101, -131, -87, -72, 56, -53, 56, -100, -126, -166, -167, -335, -146, -147, -73, 56, -89, 56, -30, 56, -149, -336, 56, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, -74, -69, -35, -36, 56, 56, -168, -151, -153, -148, -127, 56, -174, -175, -218, -217, -234, -81, -84, 56, -230, -231, -233, -31, -34, 56, 56, -169, -170, -150, -152, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), '_THREAD_LOCAL': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 99, 102, 104, 116, 117, 119, 120, 121, 125, 126, 127, 135, 178, 189, 203, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 248, 262, 307, 308, 309, 318, 326, 330, 332, 333, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [57, 57, -60, -62, -63, -64, -65, -66, -67, 57, 57, -70, -71, -52, 57, 57, 57, -125, -99, 57, -29, -104, -122, -123, -124, 57, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 57, -88, 57, 57, -131, 57, -95, -96, -97, -98, -101, -131, -87, -72, 57, -53, 57, -100, -126, -166, -167, -335, -146, -147, -73, 57, -89, 57, -30, 57, -149, -336, 57, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, -74, -69, -35, -36, 57, 57, -168, -151, -153, -148, -127, 57, -174, -175, -218, -217, -234, -81, -84, 57, -230, -231, -233, -31, -34, 57, 57, -169, -170, -150, -152, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'INLINE': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 99, 102, 104, 116, 117, 119, 120, 121, 125, 126, 127, 135, 178, 189, 203, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 248, 262, 307, 308, 309, 318, 326, 330, 332, 333, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [58, 58, -60, -62, -63, -64, -65, -66, -67, 58, 58, -70, -71, -52, 58, 58, 58, -125, -99, 58, -29, -104, -122, -123, -124, 58, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 58, -88, 58, 58, -131, 58, -95, -96, -97, -98, -101, -131, -87, -72, 58, -53, 58, -100, -126, -166, -167, -335, -146, -147, -73, 58, -89, 58, -30, 58, -149, -336, 58, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, -74, -69, -35, -36, 58, 58, -168, -151, -153, -148, -127, 58, -174, -175, -218, -217, -234, -81, -84, 58, -230, -231, -233, -31, -34, 58, 58, -169, -170, -150, -152, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), '_NORETURN': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 99, 102, 104, 116, 117, 119, 120, 121, 125, 126, 127, 135, 178, 189, 203, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 248, 262, 307, 308, 309, 318, 326, 330, 332, 333, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [59, 59, -60, -62, -63, -64, -65, -66, -67, 59, 59, -70, -71, -52, 59, 59, 59, -125, -99, 59, -29, -104, -122, -123, -124, 59, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 59, -88, 59, 59, -131, 59, -95, -96, -97, -98, -101, -131, -87, -72, 59, -53, 59, -100, -126, -166, -167, -335, -146, -147, -73, 59, -89, 59, -30, 59, -149, -336, 59, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, -74, -69, -35, -36, 59, 59, -168, -151, -153, -148, -127, 59, -174, -175, -218, -217, -234, -81, -84, 59, -230, -231, -233, -31, -34, 59, 59, -169, -170, -150, -152, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), '_ALIGNAS': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 20, 21, 22, 23, 24, 26, 27, 28, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 68, 70, 71, 72, 73, 74, 75, 76, 77, 80, 89, 90, 94, 95, 99, 102, 104, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 127, 135, 136, 178, 189, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 211, 213, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 262, 290, 294, 295, 300, 307, 308, 309, 318, 326, 329, 330, 331, 332, 333, 334, 336, 337, 338, 344, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 454, 455, 458, 459, 460, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [60, 60, -60, -62, -63, -64, -65, -66, -67, 60, 60, -70, -71, -52, 60, 60, 60, -125, -99, 60, -29, -104, -122, -123, -124, 60, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 60, -88, 60, 60, -131, 60, -95, -96, -97, -98, -101, -131, -87, -72, 60, -53, 60, -100, -126, -166, -167, -335, -146, -147, 60, 60, 60, -73, 60, -89, 60, 60, -30, 60, 60, 60, 60, -149, -156, -336, 60, -159, -160, -142, -144, 60, 60, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 60, -74, -69, 60, 60, 60, 60, -35, -36, 60, 60, -168, 60, -151, 60, -153, -148, -157, -140, -141, -145, -143, -127, 60, -174, -175, -218, -217, -234, -81, -84, 60, -230, -231, -233, -31, -34, 60, 60, -169, -170, -150, -152, -158, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'STRUCT': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 18, 20, 21, 22, 25, 26, 27, 28, 33, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 69, 70, 71, 72, 89, 90, 94, 95, 96, 97, 98, 99, 100, 101, 110, 114, 115, 119, 122, 123, 124, 125, 126, 127, 135, 136, 178, 190, 194, 200, 201, 202, 204, 205, 207, 208, 210, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 262, 290, 294, 295, 300, 307, 308, 309, 318, 329, 331, 334, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 460, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [61, 61, -60, -62, -63, -64, -65, -66, -67, 61, -70, -71, -52, -337, -337, -337, 61, -337, -29, -104, -337, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 61, -88, 61, -337, -131, 61, -87, -72, 61, -53, -90, -9, -10, -337, -91, -92, -94, -182, -93, -335, 61, 61, 61, -73, 61, -89, 61, 61, -30, 61, -183, 61, 61, 61, -156, -336, -159, -160, 61, 61, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 61, -74, -69, 61, 61, 61, 61, -35, -36, 61, 61, 61, 61, -157, -127, 61, -174, -175, -218, -217, -234, -81, -84, 61, -230, -231, -233, -31, -34, 61, 61, -158, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'UNION': ([0, 2, 4, 5, 6, 7, 8, 9, 10, 11, 14, 15, 18, 20, 21, 22, 25, 26, 27, 28, 33, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 63, 66, 67, 69, 70, 71, 72, 89, 90, 94, 95, 96, 97, 98, 99, 100, 101, 110, 114, 115, 119, 122, 123, 124, 125, 126, 127, 135, 136, 178, 190, 194, 200, 201, 202, 204, 205, 207, 208, 210, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 248, 262, 290, 294, 295, 300, 307, 308, 309, 318, 329, 331, 334, 345, 347, 349, 350, 351, 352, 357, 365, 366, 367, 369, 370, 372, 434, 435, 444, 453, 460, 464, 466, 474, 477, 478, 493, 502, 503, 518, 546, 547, 548, 549, 572, 573, 578, 579], [62, 62, -60, -62, -63, -64, -65, -66, -67, 62, -70, -71, -52, -337, -337, -337, 62, -337, -29, -104, -337, -131, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -61, 62, -88, 62, -337, -131, 62, -87, -72, 62, -53, -90, -9, -10, -337, -91, -92, -94, -182, -93, -335, 62, 62, 62, -73, 62, -89, 62, 62, -30, 62, -183, 62, 62, 62, -156, -336, -159, -160, 62, 62, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 62, -74, -69, 62, 62, 62, 62, -35, -36, 62, 62, 62, 62, -157, -127, 62, -174, -175, -218, -217, -234, -81, -84, 62, -230, -231, -233, -31, -34, 62, 62, -158, -219, -221, -83, -229, -232, -68, -32, -33, -220, -222, -84, -224, -225, -223, -226, -228, -227]), 'LBRACE': ([11, 15, 18, 27, 35, 36, 61, 62, 64, 65, 66, 67, 72, 89, 90, 95, 116, 117, 119, 120, 121, 126, 127, 129, 133, 178, 192, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 235, 239, 253, 262, 307, 308, 351, 352, 354, 356, 357, 365, 366, 369, 370, 372, 387, 388, 389, 400, 434, 435, 464, 465, 466, 469, 474, 477, 478, 481, 483, 492, 493, 498, 499, 502, 503, 518, 519, 520, 521, 526, 527, 546, 547, 548, 549, 555, 563, 572, 573, 575, 577, 578, 579], [-337, -71, -52, -29, 119, 119, -154, -155, 119, -7, -8, -88, -337, -87, -72, -53, 119, 119, -335, 119, 119, 119, -89, 119, 119, -30, 119, -336, 119, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 119, 119, -337, -69, -35, -36, -218, -217, 119, 119, -234, 119, -84, -230, -231, -233, -11, 119, -12, 119, -31, -34, -219, 119, -221, 119, -83, -229, -232, -337, -198, -337, -68, 119, 119, -32, -33, -220, 119, 119, 119, 119, -11, -222, -84, -224, -225, -337, 119, -223, -226, 119, 119, -228, -227]), 'RBRACE': ([15, 89, 90, 119, 122, 126, 138, 139, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 197, 198, 199, 200, 201, 202, 204, 205, 207, 208, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 246, 247, 252, 253, 262, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 324, 325, 327, 329, 331, 334, 351, 352, 357, 365, 366, 369, 370, 372, 385, 386, 387, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 456, 457, 460, 464, 466, 468, 474, 477, 478, 479, 480, 481, 482, 491, 493, 495, 496, 499, 500, 518, 525, 531, 532, 546, 547, 548, 549, 553, 554, 555, 556, 567, 572, 573, 578, 579], [-71, -87, -72, -335, 205, -337, -303, -252, -253, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, 205, -171, -176, 205, 205, 205, -156, -336, -159, -160, 205, -5, -6, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, -239, -274, -193, -337, -69, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, 205, 205, -172, 205, 205, -157, -218, -217, -234, -81, -84, -230, -231, -233, 205, -22, -21, -305, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -268, -269, -270, -271, -272, -273, -292, -293, -294, -295, -296, -173, -177, -158, -219, -221, -237, -83, -229, -232, -240, -194, 205, -196, -275, -68, -290, -291, -281, -282, -220, -195, 205, -254, -222, -84, -224, -225, -197, -299, 205, -306, -300, -223, -226, -228, -227]), 'CASE': ([15, 89, 90, 119, 126, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 239, 262, 351, 352, 354, 356, 357, 365, 366, 369, 370, 372, 464, 465, 466, 474, 477, 478, 493, 518, 519, 520, 521, 546, 547, 548, 549, 563, 572, 573, 575, 577, 578, 579], [-71, -87, -72, -335, 231, -336, 231, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 231, -69, -218, -217, 231, 231, -234, 231, -84, -230, -231, -233, -219, 231, -221, -83, -229, -232, -68, -220, 231, 231, 231, -222, -84, -224, -225, 231, -223, -226, 231, 231, -228, -227]), 'DEFAULT': ([15, 89, 90, 119, 126, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 239, 262, 351, 352, 354, 356, 357, 365, 366, 369, 370, 372, 464, 465, 466, 474, 477, 478, 493, 518, 519, 520, 521, 546, 547, 548, 549, 563, 572, 573, 575, 577, 578, 579], [-71, -87, -72, -335, 232, -336, 232, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 232, -69, -218, -217, 232, 232, -234, 232, -84, -230, -231, -233, -219, 232, -221, -83, -229, -232, -68, -220, 232, 232, 232, -222, -84, -224, -225, 232, -223, -226, 232, 232, -228, -227]), 'IF': ([15, 89, 90, 119, 126, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 239, 262, 351, 352, 354, 356, 357, 365, 366, 369, 370, 372, 464, 465, 466, 474, 477, 478, 493, 518, 519, 520, 521, 546, 547, 548, 549, 563, 572, 573, 575, 577, 578, 579], [-71, -87, -72, -335, 234, -336, 234, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 234, -69, -218, -217, 234, 234, -234, 234, -84, -230, -231, -233, -219, 234, -221, -83, -229, -232, -68, -220, 234, 234, 234, -222, -84, -224, -225, 234, -223, -226, 234, 234, -228, -227]), 'SWITCH': ([15, 89, 90, 119, 126, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 239, 262, 351, 352, 354, 356, 357, 365, 366, 369, 370, 372, 464, 465, 466, 474, 477, 478, 493, 518, 519, 520, 521, 546, 547, 548, 549, 563, 572, 573, 575, 577, 578, 579], [-71, -87, -72, -335, 237, -336, 237, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 237, -69, -218, -217, 237, 237, -234, 237, -84, -230, -231, -233, -219, 237, -221, -83, -229, -232, -68, -220, 237, 237, 237, -222, -84, -224, -225, 237, -223, -226, 237, 237, -228, -227]), 'WHILE': ([15, 89, 90, 119, 126, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 239, 262, 351, 352, 354, 356, 357, 364, 365, 366, 369, 370, 372, 464, 465, 466, 474, 477, 478, 493, 518, 519, 520, 521, 546, 547, 548, 549, 563, 572, 573, 575, 577, 578, 579], [-71, -87, -72, -335, 238, -336, 238, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 238, -69, -218, -217, 238, 238, -234, 473, 238, -84, -230, -231, -233, -219, 238, -221, -83, -229, -232, -68, -220, 238, 238, 238, -222, -84, -224, -225, 238, -223, -226, 238, 238, -228, -227]), 'DO': ([15, 89, 90, 119, 126, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 239, 262, 351, 352, 354, 356, 357, 365, 366, 369, 370, 372, 464, 465, 466, 474, 477, 478, 493, 518, 519, 520, 521, 546, 547, 548, 549, 563, 572, 573, 575, 577, 578, 579], [-71, -87, -72, -335, 239, -336, 239, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 239, -69, -218, -217, 239, 239, -234, 239, -84, -230, -231, -233, -219, 239, -221, -83, -229, -232, -68, -220, 239, 239, 239, -222, -84, -224, -225, 239, -223, -226, 239, 239, -228, -227]), 'FOR': ([15, 89, 90, 119, 126, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 239, 262, 351, 352, 354, 356, 357, 365, 366, 369, 370, 372, 464, 465, 466, 474, 477, 478, 493, 518, 519, 520, 521, 546, 547, 548, 549, 563, 572, 573, 575, 577, 578, 579], [-71, -87, -72, -335, 240, -336, 240, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 240, -69, -218, -217, 240, 240, -234, 240, -84, -230, -231, -233, -219, 240, -221, -83, -229, -232, -68, -220, 240, 240, 240, -222, -84, -224, -225, 240, -223, -226, 240, 240, -228, -227]), 'GOTO': ([15, 89, 90, 119, 126, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 239, 262, 351, 352, 354, 356, 357, 365, 366, 369, 370, 372, 464, 465, 466, 474, 477, 478, 493, 518, 519, 520, 521, 546, 547, 548, 549, 563, 572, 573, 575, 577, 578, 579], [-71, -87, -72, -335, 241, -336, 241, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 241, -69, -218, -217, 241, 241, -234, 241, -84, -230, -231, -233, -219, 241, -221, -83, -229, -232, -68, -220, 241, 241, 241, -222, -84, -224, -225, 241, -223, -226, 241, 241, -228, -227]), 'BREAK': ([15, 89, 90, 119, 126, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 239, 262, 351, 352, 354, 356, 357, 365, 366, 369, 370, 372, 464, 465, 466, 474, 477, 478, 493, 518, 519, 520, 521, 546, 547, 548, 549, 563, 572, 573, 575, 577, 578, 579], [-71, -87, -72, -335, 242, -336, 242, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 242, -69, -218, -217, 242, 242, -234, 242, -84, -230, -231, -233, -219, 242, -221, -83, -229, -232, -68, -220, 242, 242, 242, -222, -84, -224, -225, 242, -223, -226, 242, 242, -228, -227]), 'CONTINUE': ([15, 89, 90, 119, 126, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 239, 262, 351, 352, 354, 356, 357, 365, 366, 369, 370, 372, 464, 465, 466, 474, 477, 478, 493, 518, 519, 520, 521, 546, 547, 548, 549, 563, 572, 573, 575, 577, 578, 579], [-71, -87, -72, -335, 243, -336, 243, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 243, -69, -218, -217, 243, 243, -234, 243, -84, -230, -231, -233, -219, 243, -221, -83, -229, -232, -68, -220, 243, 243, 243, -222, -84, -224, -225, 243, -223, -226, 243, 243, -228, -227]), 'RETURN': ([15, 89, 90, 119, 126, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 239, 262, 351, 352, 354, 356, 357, 365, 366, 369, 370, 372, 464, 465, 466, 474, 477, 478, 493, 518, 519, 520, 521, 546, 547, 548, 549, 563, 572, 573, 575, 577, 578, 579], [-71, -87, -72, -335, 244, -336, 244, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 244, -69, -218, -217, 244, 244, -234, 244, -84, -230, -231, -233, -219, 244, -221, -83, -229, -232, -68, -220, 244, 244, 244, -222, -84, -224, -225, 244, -223, -226, 244, 244, -228, -227]), 'PLUSPLUS': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 138, 142, 143, 144, 145, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 235, 239, 244, 253, 254, 255, 256, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 287, 288, 290, 294, 296, 297, 298, 299, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 401, 424, 426, 427, 428, 429, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 495, 496, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 554, 555, 556, 558, 563, 565, 567, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 148, -337, -27, -28, -182, -335, 148, 148, 148, -337, 148, -303, -284, -285, -286, -283, 287, 148, 148, 148, 148, -289, -312, -287, -288, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, 148, -337, -28, 148, -183, -336, 148, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, -312, 148, 148, 148, 148, -337, 148, -337, -28, -69, -326, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, -297, -298, 148, 148, -331, -332, -333, -334, -284, 148, 148, -337, 148, 148, -218, -217, 148, 148, -234, 148, 148, 148, 148, 148, -84, 148, -230, -231, -233, 148, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 148, -12, 148, -284, 148, 148, 148, -305, -292, -293, -294, -295, -296, -337, 148, 148, 148, -219, 148, -221, 148, -83, 148, -229, -232, -337, -198, -337, -68, 148, -290, -291, 148, 148, -337, -28, -284, -220, 148, 148, 148, 148, 148, 148, -11, -284, 148, 148, -222, -84, -224, -225, 148, -299, -337, -306, 148, 148, 148, -300, -223, -226, 148, 148, -228, -227]), 'MINUSMINUS': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 138, 142, 143, 144, 145, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 235, 239, 244, 253, 254, 255, 256, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 287, 288, 290, 294, 296, 297, 298, 299, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 401, 424, 426, 427, 428, 429, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 495, 496, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 554, 555, 556, 558, 563, 565, 567, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 149, -337, -27, -28, -182, -335, 149, 149, 149, -337, 149, -303, -284, -285, -286, -283, 288, 149, 149, 149, 149, -289, -312, -287, -288, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, 149, -337, -28, 149, -183, -336, 149, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, -312, 149, 149, 149, 149, -337, 149, -337, -28, -69, -326, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, -297, -298, 149, 149, -331, -332, -333, -334, -284, 149, 149, -337, 149, 149, -218, -217, 149, 149, -234, 149, 149, 149, 149, 149, -84, 149, -230, -231, -233, 149, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 149, -12, 149, -284, 149, 149, 149, -305, -292, -293, -294, -295, -296, -337, 149, 149, 149, -219, 149, -221, 149, -83, 149, -229, -232, -337, -198, -337, -68, 149, -290, -291, 149, 149, -337, -28, -284, -220, 149, 149, 149, 149, 149, 149, -11, -284, 149, 149, -222, -84, -224, -225, 149, -299, -337, -306, 149, 149, 149, -300, -223, -226, 149, 149, -228, -227]), 'SIZEOF': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 151, -337, -27, -28, -182, -335, 151, 151, 151, -337, 151, -284, -285, -286, -283, 151, 151, 151, 151, -287, -288, 151, -337, -28, 151, -183, -336, 151, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 151, 151, 151, 151, -337, 151, -337, -28, -69, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, -284, 151, 151, -337, 151, 151, -218, -217, 151, 151, -234, 151, 151, 151, 151, 151, -84, 151, -230, -231, -233, 151, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 151, -12, 151, -284, 151, 151, 151, -337, 151, 151, 151, -219, 151, -221, 151, -83, 151, -229, -232, -337, -198, -337, -68, 151, 151, 151, -337, -28, -284, -220, 151, 151, 151, 151, 151, 151, -11, -284, 151, 151, -222, -84, -224, -225, 151, -337, 151, 151, 151, -223, -226, 151, 151, -228, -227]), '_ALIGNOF': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 152, -337, -27, -28, -182, -335, 152, 152, 152, -337, 152, -284, -285, -286, -283, 152, 152, 152, 152, -287, -288, 152, -337, -28, 152, -183, -336, 152, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 152, 152, 152, 152, -337, 152, -337, -28, -69, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, -284, 152, 152, -337, 152, 152, -218, -217, 152, 152, -234, 152, 152, 152, 152, 152, -84, 152, -230, -231, -233, 152, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 152, -12, 152, -284, 152, 152, 152, -337, 152, 152, 152, -219, 152, -221, 152, -83, 152, -229, -232, -337, -198, -337, -68, 152, 152, 152, -337, -28, -284, -220, 152, 152, 152, 152, 152, 152, -11, -284, 152, 152, -222, -84, -224, -225, 152, -337, 152, 152, 152, -223, -226, 152, 152, -228, -227]), 'AND': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 235, 239, 244, 247, 253, 254, 255, 256, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 287, 288, 289, 290, 291, 292, 293, 294, 296, 297, 298, 299, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 491, 492, 493, 494, 495, 496, 497, 499, 500, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 554, 555, 556, 558, 563, 565, 567, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 145, -337, -27, -28, -182, -335, 145, 145, 145, -337, 145, -303, 278, -255, -284, -285, -286, -283, -274, -276, 145, 145, 145, 145, -289, -312, -287, -288, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, 145, -337, -28, 145, -183, -336, 145, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, -312, 145, 145, 145, 145, -274, -337, 145, -337, -28, -69, -326, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, 145, -297, -298, -277, 145, -278, -279, -280, 145, -331, -332, -333, -334, -284, 145, 145, -337, 145, 145, -218, -217, 145, 145, -234, 145, 145, 145, 145, 145, -84, 145, -230, -231, -233, 145, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 145, -12, 145, -284, 145, 145, 145, -305, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -268, -269, 278, 278, 278, 278, -292, -293, -294, -295, -296, -337, 145, 145, 145, -219, 145, -221, 145, -83, 145, -229, -232, -337, -198, -275, -337, -68, 145, -290, -291, 145, -281, -282, 145, -337, -28, -284, -220, 145, 145, 145, 145, 145, 145, -11, -284, 145, 145, -222, -84, -224, -225, 145, -299, -337, -306, 145, 145, 145, -300, -223, -226, 145, 145, -228, -227]), 'PLUS': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 235, 239, 244, 247, 253, 254, 255, 256, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 287, 288, 289, 290, 291, 292, 293, 294, 296, 297, 298, 299, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 491, 492, 493, 494, 495, 496, 497, 499, 500, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 554, 555, 556, 558, 563, 565, 567, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 143, -337, -27, -28, -182, -335, 143, 143, 143, -337, 143, -303, 268, -255, -284, -285, -286, -283, -274, -276, 143, 143, 143, 143, -289, -312, -287, -288, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, 143, -337, -28, 143, -183, -336, 143, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, -312, 143, 143, 143, 143, -274, -337, 143, -337, -28, -69, -326, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, -297, -298, -277, 143, -278, -279, -280, 143, -331, -332, -333, -334, -284, 143, 143, -337, 143, 143, -218, -217, 143, 143, -234, 143, 143, 143, 143, 143, -84, 143, -230, -231, -233, 143, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 143, -12, 143, -284, 143, 143, 143, -305, -256, -257, -258, -259, -260, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, -292, -293, -294, -295, -296, -337, 143, 143, 143, -219, 143, -221, 143, -83, 143, -229, -232, -337, -198, -275, -337, -68, 143, -290, -291, 143, -281, -282, 143, -337, -28, -284, -220, 143, 143, 143, 143, 143, 143, -11, -284, 143, 143, -222, -84, -224, -225, 143, -299, -337, -306, 143, 143, 143, -300, -223, -226, 143, 143, -228, -227]), 'MINUS': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 138, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 153, 154, 155, 156, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 235, 239, 244, 247, 253, 254, 255, 256, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 287, 288, 289, 290, 291, 292, 293, 294, 296, 297, 298, 299, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 491, 492, 493, 494, 495, 496, 497, 499, 500, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 554, 555, 556, 558, 563, 565, 567, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 144, -337, -27, -28, -182, -335, 144, 144, 144, -337, 144, -303, 269, -255, -284, -285, -286, -283, -274, -276, 144, 144, 144, 144, -289, -312, -287, -288, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, 144, -337, -28, 144, -183, -336, 144, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, -312, 144, 144, 144, 144, -274, -337, 144, -337, -28, -69, -326, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, 144, -297, -298, -277, 144, -278, -279, -280, 144, -331, -332, -333, -334, -284, 144, 144, -337, 144, 144, -218, -217, 144, 144, -234, 144, 144, 144, 144, 144, -84, 144, -230, -231, -233, 144, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 144, -12, 144, -284, 144, 144, 144, -305, -256, -257, -258, -259, -260, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, -292, -293, -294, -295, -296, -337, 144, 144, 144, -219, 144, -221, 144, -83, 144, -229, -232, -337, -198, -275, -337, -68, 144, -290, -291, 144, -281, -282, 144, -337, -28, -284, -220, 144, 144, 144, 144, 144, 144, -11, -284, 144, 144, -222, -84, -224, -225, 144, -299, -337, -306, 144, 144, 144, -300, -223, -226, 144, 144, -228, -227]), 'NOT': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 155, -337, -27, -28, -182, -335, 155, 155, 155, -337, 155, -284, -285, -286, -283, 155, 155, 155, 155, -287, -288, 155, -337, -28, 155, -183, -336, 155, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 155, 155, 155, 155, -337, 155, -337, -28, -69, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, -284, 155, 155, -337, 155, 155, -218, -217, 155, 155, -234, 155, 155, 155, 155, 155, -84, 155, -230, -231, -233, 155, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 155, -12, 155, -284, 155, 155, 155, -337, 155, 155, 155, -219, 155, -221, 155, -83, 155, -229, -232, -337, -198, -337, -68, 155, 155, 155, -337, -28, -284, -220, 155, 155, 155, 155, 155, 155, -11, -284, 155, 155, -222, -84, -224, -225, 155, -337, 155, 155, 155, -223, -226, 155, 155, -228, -227]), 'LNOT': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 156, -337, -27, -28, -182, -335, 156, 156, 156, -337, 156, -284, -285, -286, -283, 156, 156, 156, 156, -287, -288, 156, -337, -28, 156, -183, -336, 156, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 156, 156, 156, 156, -337, 156, -337, -28, -69, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, 156, -284, 156, 156, -337, 156, 156, -218, -217, 156, 156, -234, 156, 156, 156, 156, 156, -84, 156, -230, -231, -233, 156, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 156, -12, 156, -284, 156, 156, 156, -337, 156, 156, 156, -219, 156, -221, 156, -83, 156, -229, -232, -337, -198, -337, -68, 156, 156, 156, -337, -28, -284, -220, 156, 156, 156, 156, 156, 156, -11, -284, 156, 156, -222, -84, -224, -225, 156, -337, 156, 156, 156, -223, -226, 156, 156, -228, -227]), 'OFFSETOF': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 160, -337, -27, -28, -182, -335, 160, 160, 160, -337, 160, -284, -285, -286, -283, 160, 160, 160, 160, -287, -288, 160, -337, -28, 160, -183, -336, 160, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 160, 160, 160, 160, -337, 160, -337, -28, -69, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, -284, 160, 160, -337, 160, 160, -218, -217, 160, 160, -234, 160, 160, 160, 160, 160, -84, 160, -230, -231, -233, 160, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 160, -12, 160, -284, 160, 160, 160, -337, 160, 160, 160, -219, 160, -221, 160, -83, 160, -229, -232, -337, -198, -337, -68, 160, 160, 160, -337, -28, -284, -220, 160, 160, 160, 160, 160, 160, -11, -284, 160, 160, -222, -84, -224, -225, 160, -337, 160, 160, 160, -223, -226, 160, 160, -228, -227]), 'INT_CONST_DEC': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 161, -337, -27, -28, -182, -335, 161, 161, 161, -337, 161, -284, -285, -286, -283, 161, 161, 161, 161, -287, -288, 161, -337, -28, 161, -183, -336, 161, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 161, 161, 161, 161, -337, 161, -337, -28, -69, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, -284, 161, 161, -337, 161, 161, -218, -217, 161, 161, -234, 161, 161, 161, 161, 161, -84, 161, -230, -231, -233, 161, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 161, -12, 161, -284, 161, 161, 161, -337, 161, 161, 161, -219, 161, -221, 161, -83, 161, -229, -232, -337, -198, -337, -68, 161, 161, 161, -337, -28, -284, -220, 161, 161, 161, 161, 161, 161, -11, -284, 161, 161, -222, -84, -224, -225, 161, -337, 161, 161, 161, -223, -226, 161, 161, -228, -227]), 'INT_CONST_OCT': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 162, -337, -27, -28, -182, -335, 162, 162, 162, -337, 162, -284, -285, -286, -283, 162, 162, 162, 162, -287, -288, 162, -337, -28, 162, -183, -336, 162, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 162, 162, 162, 162, -337, 162, -337, -28, -69, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, -284, 162, 162, -337, 162, 162, -218, -217, 162, 162, -234, 162, 162, 162, 162, 162, -84, 162, -230, -231, -233, 162, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 162, -12, 162, -284, 162, 162, 162, -337, 162, 162, 162, -219, 162, -221, 162, -83, 162, -229, -232, -337, -198, -337, -68, 162, 162, 162, -337, -28, -284, -220, 162, 162, 162, 162, 162, 162, -11, -284, 162, 162, -222, -84, -224, -225, 162, -337, 162, 162, 162, -223, -226, 162, 162, -228, -227]), 'INT_CONST_HEX': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 163, -337, -27, -28, -182, -335, 163, 163, 163, -337, 163, -284, -285, -286, -283, 163, 163, 163, 163, -287, -288, 163, -337, -28, 163, -183, -336, 163, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 163, 163, 163, 163, -337, 163, -337, -28, -69, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, -284, 163, 163, -337, 163, 163, -218, -217, 163, 163, -234, 163, 163, 163, 163, 163, -84, 163, -230, -231, -233, 163, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 163, -12, 163, -284, 163, 163, 163, -337, 163, 163, 163, -219, 163, -221, 163, -83, 163, -229, -232, -337, -198, -337, -68, 163, 163, 163, -337, -28, -284, -220, 163, 163, 163, 163, 163, 163, -11, -284, 163, 163, -222, -84, -224, -225, 163, -337, 163, 163, 163, -223, -226, 163, 163, -228, -227]), 'INT_CONST_BIN': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 164, -337, -27, -28, -182, -335, 164, 164, 164, -337, 164, -284, -285, -286, -283, 164, 164, 164, 164, -287, -288, 164, -337, -28, 164, -183, -336, 164, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 164, 164, 164, 164, -337, 164, -337, -28, -69, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, -284, 164, 164, -337, 164, 164, -218, -217, 164, 164, -234, 164, 164, 164, 164, 164, -84, 164, -230, -231, -233, 164, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 164, -12, 164, -284, 164, 164, 164, -337, 164, 164, 164, -219, 164, -221, 164, -83, 164, -229, -232, -337, -198, -337, -68, 164, 164, 164, -337, -28, -284, -220, 164, 164, 164, 164, 164, 164, -11, -284, 164, 164, -222, -84, -224, -225, 164, -337, 164, 164, 164, -223, -226, 164, 164, -228, -227]), 'INT_CONST_CHAR': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 165, -337, -27, -28, -182, -335, 165, 165, 165, -337, 165, -284, -285, -286, -283, 165, 165, 165, 165, -287, -288, 165, -337, -28, 165, -183, -336, 165, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 165, 165, 165, 165, -337, 165, -337, -28, -69, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, -284, 165, 165, -337, 165, 165, -218, -217, 165, 165, -234, 165, 165, 165, 165, 165, -84, 165, -230, -231, -233, 165, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 165, -12, 165, -284, 165, 165, 165, -337, 165, 165, 165, -219, 165, -221, 165, -83, 165, -229, -232, -337, -198, -337, -68, 165, 165, 165, -337, -28, -284, -220, 165, 165, 165, 165, 165, 165, -11, -284, 165, 165, -222, -84, -224, -225, 165, -337, 165, 165, 165, -223, -226, 165, 165, -228, -227]), 'FLOAT_CONST': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 166, -337, -27, -28, -182, -335, 166, 166, 166, -337, 166, -284, -285, -286, -283, 166, 166, 166, 166, -287, -288, 166, -337, -28, 166, -183, -336, 166, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 166, 166, 166, 166, -337, 166, -337, -28, -69, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, -284, 166, 166, -337, 166, 166, -218, -217, 166, 166, -234, 166, 166, 166, 166, 166, -84, 166, -230, -231, -233, 166, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 166, -12, 166, -284, 166, 166, 166, -337, 166, 166, 166, -219, 166, -221, 166, -83, 166, -229, -232, -337, -198, -337, -68, 166, 166, 166, -337, -28, -284, -220, 166, 166, 166, 166, 166, 166, -11, -284, 166, 166, -222, -84, -224, -225, 166, -337, 166, 166, 166, -223, -226, 166, 166, -228, -227]), 'HEX_FLOAT_CONST': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 167, -337, -27, -28, -182, -335, 167, 167, 167, -337, 167, -284, -285, -286, -283, 167, 167, 167, 167, -287, -288, 167, -337, -28, 167, -183, -336, 167, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 167, 167, 167, 167, -337, 167, -337, -28, -69, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, -284, 167, 167, -337, 167, 167, -218, -217, 167, 167, -234, 167, 167, 167, 167, 167, -84, 167, -230, -231, -233, 167, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 167, -12, 167, -284, 167, 167, 167, -337, 167, 167, 167, -219, 167, -221, 167, -83, 167, -229, -232, -337, -198, -337, -68, 167, 167, 167, -337, -28, -284, -220, 167, 167, 167, 167, 167, 167, -11, -284, 167, 167, -222, -84, -224, -225, 167, -337, 167, 167, 167, -223, -226, 167, 167, -228, -227]), 'CHAR_CONST': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 168, -337, -27, -28, -182, -335, 168, 168, 168, -337, 168, -284, -285, -286, -283, 168, 168, 168, 168, -287, -288, 168, -337, -28, 168, -183, -336, 168, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 168, 168, 168, 168, -337, 168, -337, -28, -69, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, -284, 168, 168, -337, 168, 168, -218, -217, 168, 168, -234, 168, 168, 168, 168, 168, -84, 168, -230, -231, -233, 168, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 168, -12, 168, -284, 168, 168, 168, -337, 168, 168, 168, -219, 168, -221, 168, -83, 168, -229, -232, -337, -198, -337, -68, 168, 168, 168, -337, -28, -284, -220, 168, 168, 168, 168, 168, 168, -11, -284, 168, 168, -222, -84, -224, -225, 168, -337, 168, 168, 168, -223, -226, 168, 168, -228, -227]), 'WCHAR_CONST': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 169, -337, -27, -28, -182, -335, 169, 169, 169, -337, 169, -284, -285, -286, -283, 169, 169, 169, 169, -287, -288, 169, -337, -28, 169, -183, -336, 169, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 169, 169, 169, 169, -337, 169, -337, -28, -69, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, -284, 169, 169, -337, 169, 169, -218, -217, 169, 169, -234, 169, 169, 169, 169, 169, -84, 169, -230, -231, -233, 169, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 169, -12, 169, -284, 169, 169, 169, -337, 169, 169, 169, -219, 169, -221, 169, -83, 169, -229, -232, -337, -198, -337, -68, 169, 169, 169, -337, -28, -284, -220, 169, 169, 169, 169, 169, 169, -11, -284, 169, 169, -222, -84, -224, -225, 169, -337, 169, 169, 169, -223, -226, 169, 169, -228, -227]), 'U8CHAR_CONST': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 170, -337, -27, -28, -182, -335, 170, 170, 170, -337, 170, -284, -285, -286, -283, 170, 170, 170, 170, -287, -288, 170, -337, -28, 170, -183, -336, 170, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 170, 170, 170, 170, -337, 170, -337, -28, -69, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, -284, 170, 170, -337, 170, 170, -218, -217, 170, 170, -234, 170, 170, 170, 170, 170, -84, 170, -230, -231, -233, 170, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 170, -12, 170, -284, 170, 170, 170, -337, 170, 170, 170, -219, 170, -221, 170, -83, 170, -229, -232, -337, -198, -337, -68, 170, 170, 170, -337, -28, -284, -220, 170, 170, 170, 170, 170, 170, -11, -284, 170, 170, -222, -84, -224, -225, 170, -337, 170, 170, 170, -223, -226, 170, 170, -228, -227]), 'U16CHAR_CONST': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 171, -337, -27, -28, -182, -335, 171, 171, 171, -337, 171, -284, -285, -286, -283, 171, 171, 171, 171, -287, -288, 171, -337, -28, 171, -183, -336, 171, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 171, 171, 171, 171, -337, 171, -337, -28, -69, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, -284, 171, 171, -337, 171, 171, -218, -217, 171, 171, -234, 171, 171, 171, 171, 171, -84, 171, -230, -231, -233, 171, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 171, -12, 171, -284, 171, 171, 171, -337, 171, 171, 171, -219, 171, -221, 171, -83, 171, -229, -232, -337, -198, -337, -68, 171, 171, 171, -337, -28, -284, -220, 171, 171, 171, 171, 171, 171, -11, -284, 171, 171, -222, -84, -224, -225, 171, -337, 171, 171, 171, -223, -226, 171, 171, -228, -227]), 'U32CHAR_CONST': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 172, -337, -27, -28, -182, -335, 172, 172, 172, -337, 172, -284, -285, -286, -283, 172, 172, 172, 172, -287, -288, 172, -337, -28, 172, -183, -336, 172, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 172, 172, 172, 172, -337, 172, -337, -28, -69, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, -284, 172, 172, -337, 172, 172, -218, -217, 172, 172, -234, 172, 172, 172, 172, 172, -84, 172, -230, -231, -233, 172, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 172, -12, 172, -284, 172, 172, 172, -337, 172, 172, 172, -219, 172, -221, 172, -83, 172, -229, -232, -337, -198, -337, -68, 172, 172, 172, -337, -28, -284, -220, 172, 172, 172, 172, 172, 172, -11, -284, 172, 172, -222, -84, -224, -225, 172, -337, 172, 172, 172, -223, -226, 172, 172, -228, -227]), 'STRING_LITERAL': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 138, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 173, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 402, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 173, -337, -27, -28, -182, -335, 173, 173, 173, -337, 173, 263, -284, -285, -286, -283, 173, 173, 173, 173, -287, -288, -325, 173, -337, -28, 173, -183, -336, 173, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 173, 173, 173, 173, -337, 173, -337, -28, 173, -69, -326, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, -284, 173, 173, -337, 173, 173, -218, -217, 173, 173, -234, 173, 173, 173, 173, 173, -84, 173, -230, -231, -233, 173, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 173, -12, 173, -284, 173, 173, 173, 263, -337, 173, 173, 173, -219, 173, -221, 173, -83, 173, -229, -232, -337, -198, -337, -68, 173, 173, 173, -337, -28, -284, -220, 173, 173, 173, 173, 173, 173, -11, -284, 173, 173, -222, -84, -224, -225, 173, -337, 173, 173, 173, -223, -226, 173, 173, -228, -227]), 'WSTRING_LITERAL': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 159, 174, 175, 176, 177, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 296, 297, 298, 299, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 174, -337, -27, -28, -182, -335, 174, 174, 174, -337, 174, -284, -285, -286, -283, 174, 174, 174, 174, -287, -288, 296, -327, -328, -329, -330, 174, -337, -28, 174, -183, -336, 174, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 174, 174, 174, 174, -337, 174, -337, -28, -69, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, -331, -332, -333, -334, -284, 174, 174, -337, 174, 174, -218, -217, 174, 174, -234, 174, 174, 174, 174, 174, -84, 174, -230, -231, -233, 174, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 174, -12, 174, -284, 174, 174, 174, -337, 174, 174, 174, -219, 174, -221, 174, -83, 174, -229, -232, -337, -198, -337, -68, 174, 174, 174, -337, -28, -284, -220, 174, 174, 174, 174, 174, 174, -11, -284, 174, 174, -222, -84, -224, -225, 174, -337, 174, 174, 174, -223, -226, 174, 174, -228, -227]), 'U8STRING_LITERAL': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 159, 174, 175, 176, 177, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 296, 297, 298, 299, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 175, -337, -27, -28, -182, -335, 175, 175, 175, -337, 175, -284, -285, -286, -283, 175, 175, 175, 175, -287, -288, 297, -327, -328, -329, -330, 175, -337, -28, 175, -183, -336, 175, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 175, 175, 175, 175, -337, 175, -337, -28, -69, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, -331, -332, -333, -334, -284, 175, 175, -337, 175, 175, -218, -217, 175, 175, -234, 175, 175, 175, 175, 175, -84, 175, -230, -231, -233, 175, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 175, -12, 175, -284, 175, 175, 175, -337, 175, 175, 175, -219, 175, -221, 175, -83, 175, -229, -232, -337, -198, -337, -68, 175, 175, 175, -337, -28, -284, -220, 175, 175, 175, 175, 175, 175, -11, -284, 175, 175, -222, -84, -224, -225, 175, -337, 175, 175, 175, -223, -226, 175, 175, -228, -227]), 'U16STRING_LITERAL': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 159, 174, 175, 176, 177, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 296, 297, 298, 299, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 176, -337, -27, -28, -182, -335, 176, 176, 176, -337, 176, -284, -285, -286, -283, 176, 176, 176, 176, -287, -288, 298, -327, -328, -329, -330, 176, -337, -28, 176, -183, -336, 176, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 176, 176, 176, 176, -337, 176, -337, -28, -69, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, -331, -332, -333, -334, -284, 176, 176, -337, 176, 176, -218, -217, 176, 176, -234, 176, 176, 176, 176, 176, -84, 176, -230, -231, -233, 176, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 176, -12, 176, -284, 176, 176, 176, -337, 176, 176, 176, -219, 176, -221, 176, -83, 176, -229, -232, -337, -198, -337, -68, 176, 176, 176, -337, -28, -284, -220, 176, 176, 176, 176, 176, 176, -11, -284, 176, 176, -222, -84, -224, -225, 176, -337, 176, 176, 176, -223, -226, 176, 176, -228, -227]), 'U32STRING_LITERAL': ([15, 50, 51, 52, 80, 89, 90, 91, 93, 112, 113, 114, 119, 124, 126, 133, 134, 136, 142, 143, 144, 145, 148, 149, 150, 151, 155, 156, 159, 174, 175, 176, 177, 179, 180, 181, 192, 194, 205, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 231, 235, 239, 244, 253, 254, 255, 256, 262, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 296, 297, 298, 299, 302, 305, 306, 319, 328, 343, 351, 352, 354, 356, 357, 358, 361, 362, 363, 365, 366, 367, 369, 370, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 387, 388, 389, 392, 395, 396, 397, 400, 443, 450, 452, 462, 464, 465, 466, 469, 474, 476, 477, 478, 481, 483, 492, 493, 494, 497, 504, 505, 506, 514, 518, 519, 520, 521, 522, 523, 526, 527, 537, 538, 539, 546, 547, 548, 549, 552, 555, 558, 563, 565, 572, 573, 575, 577, 578, 579], [-71, -128, -129, -130, -131, -87, -72, 177, -337, -27, -28, -182, -335, 177, 177, 177, -337, 177, -284, -285, -286, -283, 177, 177, 177, 177, -287, -288, 299, -327, -328, -329, -330, 177, -337, -28, 177, -183, -336, 177, -216, -214, -215, -75, -76, -77, -78, -79, -80, -81, -82, 177, 177, 177, 177, -337, 177, -337, -28, -69, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, -331, -332, -333, -334, -284, 177, 177, -337, 177, 177, -218, -217, 177, 177, -234, 177, 177, 177, 177, 177, -84, 177, -230, -231, -233, 177, -241, -242, -243, -244, -245, -246, -247, -248, -249, -250, -251, -11, 177, -12, 177, -284, 177, 177, 177, -337, 177, 177, 177, -219, 177, -221, 177, -83, 177, -229, -232, -337, -198, -337, -68, 177, 177, 177, -337, -28, -284, -220, 177, 177, 177, 177, 177, 177, -11, -284, 177, 177, -222, -84, -224, -225, 177, -337, 177, 177, 177, -223, -226, 177, 177, -228, -227]), 'ELSE': ([15, 90, 205, 222, 223, 224, 225, 226, 227, 228, 229, 262, 351, 357, 365, 366, 369, 370, 372, 464, 466, 474, 477, 478, 493, 518, 546, 547, 548, 549, 572, 573, 578, 579], [-71, -72, -336, -75, -76, -77, -78, -79, -80, -81, -82, -69, -218, -234, -81, -84, -230, -231, -233, -219, -221, -83, -229, -232, -68, -220, -222, 563, -224, -225, -223, -226, -228, -227]), 'PPPRAGMASTR': ([15], [90]), 'EQUALS': ([18, 27, 72, 85, 86, 87, 88, 95, 109, 128, 130, 138, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 199, 205, 230, 247, 249, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 307, 308, 390, 391, 398, 399, 401, 424, 426, 427, 428, 429, 434, 435, 484, 486, 487, 488, 491, 495, 496, 499, 500, 502, 503, 528, 529, 530, 554, 556, 567], [-52, -29, -178, 133, -179, -54, -37, -53, 192, -178, -55, -303, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -30, 328, -336, -312, 374, -38, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -35, -36, 483, -199, -43, -44, -305, -292, -293, -294, -295, -296, -31, -34, -200, -202, -39, -42, -275, -290, -291, -281, -282, -32, -33, -201, -40, -41, -299, -306, -300]), 'COMMA': ([18, 23, 24, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 72, 73, 74, 75, 76, 77, 80, 83, 84, 85, 86, 87, 88, 95, 102, 104, 106, 108, 109, 111, 112, 113, 114, 116, 117, 120, 121, 128, 130, 137, 138, 139, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 184, 186, 187, 188, 189, 193, 194, 197, 198, 199, 203, 205, 209, 211, 213, 230, 236, 245, 246, 247, 249, 250, 251, 252, 260, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 307, 308, 311, 312, 313, 314, 315, 316, 317, 320, 321, 322, 323, 324, 325, 326, 327, 330, 332, 333, 336, 337, 338, 340, 341, 342, 344, 345, 346, 348, 349, 350, 371, 386, 398, 399, 401, 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, 429, 433, 434, 435, 439, 440, 441, 442, 454, 455, 456, 457, 458, 459, 463, 467, 468, 470, 471, 472, 479, 480, 482, 487, 488, 491, 495, 496, 499, 500, 502, 503, 509, 510, 512, 516, 517, 525, 529, 530, 531, 532, 533, 540, 541, 542, 543, 544, 545, 550, 553, 554, 556, 559, 560, 567, 569, 570, 571], [-52, -125, -99, -29, -104, -337, -122, -123, -124, -126, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -178, -95, -96, -97, -98, -101, -131, 132, -132, -134, -179, -54, -37, -53, -100, -126, 191, -136, -138, -180, -27, -28, -182, -166, -167, -146, -147, -178, -55, 261, -303, -252, -253, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -30, 309, 310, -186, -191, -337, -181, -183, 327, -171, -176, -149, -336, -142, -144, -337, -312, 361, -235, -239, -274, -38, -133, -135, -193, 361, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -35, -36, -188, -189, -190, -204, -56, -1, -2, -45, -206, -137, -139, 327, 327, -168, -172, -151, -153, -148, -140, -141, -145, 461, -161, -163, -143, -127, -203, -204, -174, -175, 361, 481, -43, -44, -305, 361, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -268, -269, -270, -271, -272, -273, 361, 497, -292, -310, -293, -294, -295, -296, 501, -31, -34, -187, -192, -57, -205, -169, -170, -173, -177, -150, -152, -165, 361, -237, -236, 361, 361, -240, -194, -196, -39, -42, -275, -290, -291, -281, -282, -32, -33, -207, -213, -211, -162, -164, -195, -40, -41, 555, -254, -311, -50, -51, -209, -208, -210, -212, 361, -197, -299, -306, -46, -49, -300, 361, -47, -48]), 'RPAREN': ([18, 23, 24, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 73, 74, 75, 76, 77, 80, 87, 88, 92, 94, 95, 102, 104, 111, 112, 113, 114, 116, 117, 120, 121, 130, 131, 135, 137, 138, 139, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 182, 183, 184, 185, 186, 187, 188, 189, 193, 194, 203, 205, 209, 211, 212, 213, 214, 215, 236, 245, 246, 247, 249, 257, 258, 259, 260, 263, 284, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 307, 308, 311, 312, 313, 314, 315, 316, 317, 318, 320, 321, 326, 330, 332, 333, 336, 337, 338, 344, 345, 346, 347, 348, 349, 350, 351, 353, 359, 360, 398, 399, 401, 402, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 434, 435, 438, 439, 440, 441, 442, 444, 445, 446, 447, 448, 449, 453, 454, 455, 458, 459, 467, 468, 470, 471, 472, 479, 487, 488, 491, 495, 496, 499, 500, 502, 503, 507, 508, 509, 510, 512, 515, 529, 530, 532, 533, 534, 535, 540, 541, 542, 543, 544, 545, 550, 552, 554, 556, 559, 560, 565, 566, 567, 568, 570, 571, 574, 576], [-52, -125, -99, -29, -104, -337, -122, -123, -124, -126, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -95, -96, -97, -98, -101, -131, -54, -37, 178, -337, -53, -100, -126, -180, -27, -28, -182, -166, -167, -146, -147, -55, 249, -337, 262, -303, -252, -253, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -30, 307, 308, -184, -17, -18, -186, -191, -337, -181, -183, -149, -336, -142, -144, 345, -337, 349, 350, -14, -235, -239, -274, -38, 398, 399, 400, 401, -326, 424, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -35, -36, -188, -189, -190, -204, -56, -1, -2, -337, -45, -206, -168, -151, -153, -148, -140, -141, -145, -143, -127, -203, -337, -204, -174, -175, -218, -13, 468, 469, -43, -44, -305, 493, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -268, -269, -270, -271, -272, -273, 496, -292, -310, -293, -294, -295, -296, 498, 499, 500, -31, -34, -185, -187, -192, -57, -205, -337, 509, 510, -204, -23, -24, -337, -169, -170, -150, -152, 519, -237, -236, 520, 521, -240, -39, -42, -275, -290, -291, -281, -282, -32, -33, 540, 541, -207, -213, -211, 545, -40, -41, -254, -311, 556, -307, -50, -51, -209, -208, -210, -212, 564, -337, -299, -306, -46, -49, -337, 575, -300, -308, -47, -48, 577, -309]), 'COLON': ([18, 23, 27, 30, 31, 32, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 80, 86, 87, 88, 95, 104, 116, 117, 120, 121, 128, 130, 138, 139, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 203, 205, 206, 209, 211, 230, 232, 245, 246, 247, 249, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 307, 308, 326, 330, 332, 333, 336, 337, 338, 342, 344, 345, 349, 350, 355, 398, 399, 401, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 434, 435, 454, 455, 458, 459, 461, 468, 470, 479, 487, 488, 491, 495, 496, 499, 500, 502, 503, 529, 530, 532, 554, 556, 567], [-52, -125, -29, -122, -123, -124, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -128, -129, -130, -131, -179, -54, -37, -53, -126, -166, -167, -146, -147, -178, -55, -303, -252, -253, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -30, -149, -336, 343, -142, -144, 354, 356, -235, -239, -274, -38, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -35, -36, -168, -151, -153, -148, -140, -141, -145, 462, -143, -127, -174, -175, 465, -43, -44, -305, 494, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -268, -269, -270, -271, -272, -273, -292, -293, -294, -295, -296, -31, -34, -169, -170, -150, -152, 343, -237, -236, -240, -39, -42, -275, -290, -291, -281, -282, -32, -33, -40, -41, -254, -299, -306, -300]), 'LBRACKET': ([18, 23, 24, 27, 28, 29, 30, 31, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 73, 74, 75, 76, 77, 80, 87, 88, 95, 102, 104, 111, 112, 113, 114, 116, 117, 119, 120, 121, 130, 138, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 189, 193, 194, 203, 205, 209, 211, 213, 230, 249, 253, 263, 287, 288, 296, 297, 298, 299, 307, 308, 314, 315, 318, 320, 321, 326, 330, 332, 333, 336, 337, 338, 344, 345, 347, 348, 349, 350, 390, 391, 398, 399, 401, 424, 426, 427, 428, 429, 434, 435, 441, 442, 447, 454, 455, 458, 459, 481, 484, 486, 487, 488, 492, 495, 496, 502, 503, 509, 510, 512, 528, 529, 530, 534, 535, 540, 541, 542, 543, 544, 545, 554, 555, 556, 559, 560, 567, 568, 570, 571, 576], [93, -125, -99, -29, -104, -337, -122, -123, -124, -126, -238, -110, -111, -112, -113, -114, -115, -116, -117, -118, -119, -120, -121, -128, -129, -130, -102, -103, -105, -106, -107, -108, -109, -95, -96, -97, -98, -101, -131, 134, -37, 93, -100, -126, -180, -27, -28, -182, -166, -167, -335, -146, -147, 134, -303, 283, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -30, 319, -181, -183, -149, -336, -142, -144, 319, -312, -38, 392, -326, -297, -298, -331, -332, -333, -334, -35, -36, 319, 443, 319, -45, 452, -168, -151, -153, -148, -140, -141, -145, -143, -127, 319, 319, -174, -175, 392, -199, -43, -44, -305, -292, -293, -294, -295, -296, -31, -34, 443, 452, 319, -169, -170, -150, -152, 392, -200, -202, -39, -42, 392, -290, -291, -32, -33, -207, -213, -211, -201, -40, -41, 558, -307, -50, -51, -209, -208, -210, -212, -299, 392, -306, -46, -49, -300, -308, -47, -48, -309]), 'RBRACKET': ([50, 51, 52, 80, 93, 112, 113, 114, 134, 138, 139, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 179, 181, 194, 205, 245, 246, 247, 254, 256, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 301, 302, 303, 304, 319, 394, 395, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 424, 426, 427, 428, 429, 436, 437, 443, 450, 451, 452, 468, 470, 479, 485, 489, 490, 491, 495, 496, 499, 500, 504, 506, 511, 513, 514, 532, 536, 537, 554, 556, 561, 562, 567, 569], [-128, -129, -130, -131, -337, -27, -28, -182, -337, -303, -252, -253, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -337, -28, -183, -336, -235, -239, -274, -337, -28, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, 434, 435, -3, -4, -337, 487, 488, -305, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -268, -269, -270, -271, -272, -273, 495, -292, -293, -294, -295, -296, 502, 503, -337, -337, 512, -337, -237, -236, -240, 528, 529, 530, -275, -290, -291, -281, -282, -337, -28, 542, 543, 544, -254, 559, 560, -299, -306, 570, 571, -300, 576]), 'PERIOD': ([119, 138, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 253, 263, 287, 288, 296, 297, 298, 299, 390, 391, 401, 424, 426, 427, 428, 429, 481, 484, 486, 492, 495, 496, 528, 534, 535, 554, 555, 556, 567, 568, 576], [-335, -303, 285, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, 393, -326, -297, -298, -331, -332, -333, -334, 393, -199, -305, -292, -293, -294, -295, -296, 393, -200, -202, 393, -290, -291, -201, 557, -307, -299, 393, -306, -300, -308, -309]), 'ARROW': ([138, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 263, 287, 288, 296, 297, 298, 299, 401, 424, 426, 427, 428, 429, 495, 496, 554, 556, 567], [-303, 286, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, -326, -297, -298, -331, -332, -333, -334, -305, -292, -293, -294, -295, -296, -290, -291, -299, -306, -300]), 'CONDOP': ([138, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, 264, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, -274, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -268, -269, -270, -271, -272, -273, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'DIVIDE': ([138, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, 266, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, -274, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -256, -257, -258, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'MOD': ([138, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, 267, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, -274, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -256, -257, -258, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'RSHIFT': ([138, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, 270, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, -274, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -256, -257, -258, -259, -260, -261, -262, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'LSHIFT': ([138, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, 271, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, -274, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -256, -257, -258, -259, -260, -261, -262, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'LT': ([138, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, 272, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, -274, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, 272, 272, 272, 272, 272, 272, 272, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'LE': ([138, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, 273, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, -274, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, 273, 273, 273, 273, 273, 273, 273, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'GE': ([138, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, 274, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, -274, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, 274, 274, 274, 274, 274, 274, 274, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'GT': ([138, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, 275, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, -274, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, 275, 275, 275, 275, 275, 275, 275, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'EQ': ([138, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, 276, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, -274, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -268, 276, 276, 276, 276, 276, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'NE': ([138, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, 277, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, -274, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -268, 277, 277, 277, 277, 277, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'OR': ([138, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, 279, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, -274, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -268, -269, -270, -271, 279, 279, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'XOR': ([138, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, 280, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, -274, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -268, -269, 280, -271, 280, 280, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'LAND': ([138, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, 281, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, -274, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -268, -269, -270, -271, -272, 281, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'LOR': ([138, 140, 141, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, 282, -255, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, -274, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -256, -257, -258, -259, -260, -261, -262, -263, -264, -265, -266, -267, -268, -269, -270, -271, -272, -273, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'XOREQUAL': ([138, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, 375, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'TIMESEQUAL': ([138, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, 376, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'DIVEQUAL': ([138, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, 377, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'MODEQUAL': ([138, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, 378, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'PLUSEQUAL': ([138, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, 379, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'MINUSEQUAL': ([138, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, 380, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'LSHIFTEQUAL': ([138, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, 381, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'RSHIFTEQUAL': ([138, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, 382, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'ANDEQUAL': ([138, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, 383, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'OREQUAL': ([138, 146, 147, 153, 154, 157, 158, 159, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 205, 230, 247, 263, 287, 288, 289, 291, 292, 293, 296, 297, 298, 299, 401, 424, 426, 427, 428, 429, 491, 495, 496, 499, 500, 554, 556, 567], [-303, -274, -276, -289, -312, -301, -302, -304, -313, -314, -315, -316, -317, -318, -319, -320, -321, -322, -323, -324, -325, -327, -328, -329, -330, -336, -312, 384, -326, -297, -298, -277, -278, -279, -280, -331, -332, -333, -334, -305, -292, -293, -294, -295, -296, -275, -290, -291, -281, -282, -299, -306, -300]), 'ELLIPSIS': ([309], [438])}
_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, 11, 12, 20, 21, 22, 25, 26, 29, 33, 68, 69, 70, 72, 93, 94, 99, 126, 134, 135, 179, 180, 189, 206, 213, 218, 239, 253, 254, 255, 318, 319, 347, 354, 356, 365, 367, 443, 444, 450, 452, 453, 465, 476, 481, 492, 504, 505, 519, 520, 521, 523, 552, 555, 563, 565, 575, 577], [3, 65, 82, 97, 97, 97, 105, 97, 112, 97, 82, 105, 97, 65, 112, 185, 97, 217, 112, 185, 303, 112, 316, 339, 316, 353, 353, 387, 303, 112, 448, 112, 448, 353, 353, 353, 353, 112, 185, 303, 303, 448, 353, 353, 527, 527, 303, 112, 353, 353, 353, 353, 353, 527, 353, 353, 353, 353]), 'external_declaration': ([0, 2], [4, 63]), 'function_definition': ([0, 2], [5, 5]), 'declaration': ([0, 2, 11, 66, 72, 126, 218, 367], [6, 6, 67, 127, 67, 220, 220, 476]), 'pp_directive': ([0, 2], [7, 7]), 'pppragma_directive': ([0, 2, 122, 126, 200, 201, 202, 218, 239, 329, 331, 354, 356, 365, 465, 519, 520, 521, 563, 575, 577], [8, 8, 208, 228, 208, 208, 208, 228, 365, 208, 208, 365, 365, 228, 365, 365, 365, 365, 365, 365, 365]), 'static_assert': ([0, 2, 126, 218, 239, 354, 356, 365, 465, 519, 520, 521, 563, 575, 577], [10, 10, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229, 229]), 'id_declarator': ([0, 2, 12, 17, 25, 68, 69, 81, 132, 189, 191, 206, 318, 461], [11, 11, 72, 92, 109, 128, 109, 92, 128, 311, 128, 128, 92, 128]), 'declaration_specifiers': ([0, 2, 11, 66, 72, 94, 126, 135, 218, 309, 318, 347, 367, 444, 453], [12, 12, 68, 68, 68, 189, 68, 189, 68, 189, 189, 189, 68, 189, 189]), 'decl_body': ([0, 2, 11, 66, 72, 126, 218, 367], [13, 13, 13, 13, 13, 13, 13, 13]), 'direct_id_declarator': ([0, 2, 12, 17, 19, 25, 68, 69, 79, 81, 132, 189, 191, 206, 314, 318, 447, 461], [18, 18, 18, 18, 95, 18, 18, 18, 95, 18, 18, 18, 18, 18, 95, 18, 95, 18]), 'pointer': ([0, 2, 12, 17, 25, 68, 69, 81, 111, 132, 189, 191, 206, 213, 318, 347, 461], [19, 19, 79, 19, 19, 79, 19, 79, 193, 79, 314, 79, 79, 348, 447, 348, 79]), 'type_qualifier': ([0, 2, 11, 12, 20, 21, 22, 26, 29, 33, 66, 68, 70, 72, 93, 94, 99, 113, 122, 123, 124, 126, 134, 135, 136, 180, 181, 189, 200, 201, 202, 206, 210, 213, 218, 235, 255, 256, 290, 294, 295, 300, 309, 318, 319, 329, 331, 347, 367, 443, 444, 453, 505, 506], [20, 20, 20, 73, 20, 20, 20, 20, 114, 20, 20, 73, 20, 20, 114, 20, 20, 194, 114, 114, 114, 20, 114, 20, 114, 114, 194, 73, 114, 114, 114, 337, 194, 337, 20, 114, 114, 194, 114, 114, 114, 114, 20, 20, 114, 114, 114, 20, 20, 114, 20, 20, 114, 194]), 'storage_class_specifier': ([0, 2, 11, 12, 20, 21, 22, 26, 33, 66, 68, 70, 72, 94, 99, 126, 135, 189, 218, 309, 318, 347, 367, 444, 453], [21, 21, 21, 74, 21, 21, 21, 21, 21, 21, 74, 21, 21, 21, 21, 21, 21, 74, 21, 21, 21, 21, 21, 21, 21]), 'function_specifier': ([0, 2, 11, 12, 20, 21, 22, 26, 33, 66, 68, 70, 72, 94, 99, 126, 135, 189, 218, 309, 318, 347, 367, 444, 453], [22, 22, 22, 75, 22, 22, 22, 22, 22, 22, 75, 22, 22, 22, 22, 22, 22, 75, 22, 22, 22, 22, 22, 22, 22]), 'type_specifier_no_typeid': ([0, 2, 11, 12, 25, 66, 68, 69, 72, 94, 122, 123, 124, 126, 135, 136, 189, 190, 200, 201, 202, 206, 210, 213, 218, 235, 290, 294, 295, 300, 309, 318, 329, 331, 347, 367, 444, 453], [23, 23, 23, 76, 23, 23, 76, 23, 23, 23, 23, 23, 23, 23, 23, 23, 76, 23, 23, 23, 23, 336, 23, 336, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23]), 'type_specifier': ([0, 2, 11, 25, 66, 69, 72, 94, 122, 123, 124, 126, 135, 136, 190, 200, 201, 202, 210, 218, 235, 290, 294, 295, 300, 309, 318, 329, 331, 347, 367, 444, 453], [24, 24, 24, 102, 24, 102, 24, 24, 209, 209, 209, 24, 24, 209, 102, 209, 209, 209, 344, 24, 209, 209, 209, 209, 209, 24, 24, 209, 209, 24, 24, 24, 24]), 'declaration_specifiers_no_type': ([0, 2, 11, 20, 21, 22, 26, 33, 66, 70, 72, 94, 99, 126, 135, 218, 309, 318, 347, 367, 444, 453], [25, 25, 69, 98, 98, 98, 98, 98, 69, 98, 69, 190, 98, 69, 190, 69, 190, 190, 190, 69, 190, 190]), 'alignment_specifier': ([0, 2, 11, 12, 20, 21, 22, 26, 33, 66, 68, 70, 72, 94, 99, 122, 123, 124, 126, 135, 136, 189, 200, 201, 202, 206, 213, 218, 235, 290, 294, 295, 300, 309, 318, 329, 331, 347, 367, 444, 453], [26, 26, 26, 77, 26, 26, 26, 26, 26, 26, 77, 26, 26, 26, 26, 211, 211, 211, 26, 26, 211, 77, 211, 211, 211, 338, 338, 26, 211, 211, 211, 211, 211, 26, 26, 211, 211, 26, 26, 26, 26]), 'typedef_name': ([0, 2, 11, 25, 66, 69, 72, 94, 122, 123, 124, 126, 135, 136, 190, 200, 201, 202, 210, 218, 235, 290, 294, 295, 300, 309, 318, 329, 331, 347, 367, 444, 453], [30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30]), 'enum_specifier': ([0, 2, 11, 25, 66, 69, 72, 94, 122, 123, 124, 126, 135, 136, 190, 200, 201, 202, 210, 218, 235, 290, 294, 295, 300, 309, 318, 329, 331, 347, 367, 444, 453], [31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31]), 'struct_or_union_specifier': ([0, 2, 11, 25, 66, 69, 72, 94, 122, 123, 124, 126, 135, 136, 190, 200, 201, 202, 210, 218, 235, 290, 294, 295, 300, 309, 318, 329, 331, 347, 367, 444, 453], [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, 32, 32, 32]), 'atomic_specifier': ([0, 2, 11, 20, 21, 22, 25, 26, 33, 66, 69, 70, 72, 94, 99, 122, 123, 124, 126, 135, 136, 190, 200, 201, 202, 210, 218, 235, 290, 294, 295, 300, 309, 318, 329, 331, 347, 367, 444, 453], [33, 33, 70, 99, 99, 99, 104, 99, 99, 70, 104, 99, 70, 33, 99, 104, 104, 104, 70, 33, 104, 104, 104, 104, 104, 104, 70, 104, 104, 104, 104, 104, 33, 33, 104, 104, 33, 70, 33, 33]), 'struct_or_union': ([0, 2, 11, 25, 66, 69, 72, 94, 122, 123, 124, 126, 135, 136, 190, 200, 201, 202, 210, 218, 235, 290, 294, 295, 300, 309, 318, 329, 331, 347, 367, 444, 453], [36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36]), 'declaration_list_opt': ([11, 72], [64, 129]), 'declaration_list': ([11, 72], [66, 66]), 'init_declarator_list_opt': ([12, 68], [78, 78]), 'init_declarator_list': ([12, 68], [83, 83]), 'init_declarator': ([12, 68, 132, 191], [84, 84, 250, 322]), 'declarator': ([12, 68, 132, 191, 206, 461], [85, 85, 85, 85, 342, 342]), 'typeid_declarator': ([12, 68, 81, 132, 191, 206, 461], [86, 86, 131, 86, 86, 86, 86]), 'direct_typeid_declarator': ([12, 68, 79, 81, 132, 191, 206, 461], [87, 87, 130, 87, 87, 87, 87, 87]), 'declaration_specifiers_no_type_opt': ([20, 21, 22, 26, 33, 70, 99], [96, 100, 101, 110, 115, 115, 115]), 'id_init_declarator_list_opt': ([25, 69], [103, 103]), 'id_init_declarator_list': ([25, 69], [106, 106]), 'id_init_declarator': ([25, 69], [108, 108]), 'type_qualifier_list_opt': ([29, 93, 134, 180, 255, 319, 443, 505], [111, 179, 254, 305, 396, 450, 504, 538]), 'type_qualifier_list': ([29, 93, 122, 123, 124, 134, 136, 180, 200, 201, 202, 235, 255, 290, 294, 295, 300, 319, 329, 331, 443, 505], [113, 181, 210, 210, 210, 256, 210, 113, 210, 210, 210, 210, 113, 210, 210, 210, 210, 113, 210, 210, 506, 113]), 'brace_open': ([35, 36, 64, 116, 117, 120, 121, 126, 129, 133, 192, 218, 235, 239, 354, 356, 365, 388, 400, 465, 469, 498, 499, 519, 520, 521, 526, 563, 575, 577], [118, 122, 126, 195, 196, 200, 201, 126, 126, 253, 253, 126, 126, 126, 126, 126, 126, 253, 492, 126, 492, 492, 492, 126, 126, 126, 253, 126, 126, 126]), 'compound_statement': ([64, 126, 129, 218, 235, 239, 354, 356, 365, 465, 519, 520, 521, 563, 575, 577], [125, 224, 248, 224, 359, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224]), 'constant_expression': ([91, 124, 231, 328, 343, 392, 462], [137, 215, 355, 457, 463, 485, 517]), 'unified_string_literal': ([91, 124, 126, 133, 136, 148, 149, 150, 151, 179, 192, 218, 231, 235, 239, 244, 254, 261, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 305, 306, 328, 343, 354, 356, 358, 361, 362, 363, 365, 367, 373, 388, 392, 396, 397, 400, 450, 452, 462, 465, 469, 476, 494, 497, 504, 519, 520, 521, 522, 523, 526, 538, 539, 552, 558, 563, 565, 575, 577], [138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 402, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138, 138]), 'conditional_expression': ([91, 124, 126, 133, 136, 179, 192, 218, 231, 235, 239, 244, 254, 264, 283, 284, 290, 294, 305, 306, 328, 343, 354, 356, 358, 361, 362, 363, 365, 367, 373, 388, 392, 396, 397, 450, 452, 462, 465, 476, 494, 497, 504, 519, 520, 521, 522, 523, 526, 538, 539, 552, 558, 563, 565, 575, 577], [139, 139, 246, 246, 246, 246, 246, 246, 139, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 139, 139, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 139, 246, 246, 246, 246, 139, 246, 246, 532, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246, 246]), 'binary_expression': ([91, 124, 126, 133, 136, 179, 192, 218, 231, 235, 239, 244, 254, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 305, 306, 328, 343, 354, 356, 358, 361, 362, 363, 365, 367, 373, 388, 392, 396, 397, 450, 452, 462, 465, 476, 494, 497, 504, 519, 520, 521, 522, 523, 526, 538, 539, 552, 558, 563, 565, 575, 577], [140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140]), 'cast_expression': ([91, 124, 126, 133, 136, 150, 179, 192, 218, 231, 235, 239, 244, 254, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 305, 306, 328, 343, 354, 356, 358, 361, 362, 363, 365, 367, 373, 388, 392, 396, 397, 400, 450, 452, 462, 465, 469, 476, 494, 497, 504, 519, 520, 521, 522, 523, 526, 538, 539, 552, 558, 563, 565, 575, 577], [141, 141, 141, 141, 141, 292, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 491, 141, 141, 141, 141, 491, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141, 141]), 'unary_expression': ([91, 124, 126, 133, 136, 148, 149, 150, 151, 179, 192, 218, 231, 235, 239, 244, 254, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 305, 306, 328, 343, 354, 356, 358, 361, 362, 363, 365, 367, 373, 388, 392, 396, 397, 400, 450, 452, 462, 465, 469, 476, 494, 497, 504, 519, 520, 521, 522, 523, 526, 538, 539, 552, 558, 563, 565, 575, 577], [146, 146, 247, 247, 247, 289, 291, 146, 293, 247, 247, 247, 146, 247, 247, 247, 247, 247, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 247, 247, 247, 247, 247, 247, 146, 146, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 146, 247, 247, 146, 247, 247, 146, 247, 146, 247, 146, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247, 247]), 'postfix_expression': ([91, 124, 126, 133, 136, 148, 149, 150, 151, 179, 192, 218, 231, 235, 239, 244, 254, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 305, 306, 328, 343, 354, 356, 358, 361, 362, 363, 365, 367, 373, 388, 392, 396, 397, 400, 450, 452, 462, 465, 469, 476, 494, 497, 504, 519, 520, 521, 522, 523, 526, 538, 539, 552, 558, 563, 565, 575, 577], [147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147]), 'unary_operator': ([91, 124, 126, 133, 136, 148, 149, 150, 151, 179, 192, 218, 231, 235, 239, 244, 254, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 305, 306, 328, 343, 354, 356, 358, 361, 362, 363, 365, 367, 373, 388, 392, 396, 397, 400, 450, 452, 462, 465, 469, 476, 494, 497, 504, 519, 520, 521, 522, 523, 526, 538, 539, 552, 558, 563, 565, 575, 577], [150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150]), 'primary_expression': ([91, 124, 126, 133, 136, 148, 149, 150, 151, 179, 192, 218, 231, 235, 239, 244, 254, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 305, 306, 328, 343, 354, 356, 358, 361, 362, 363, 365, 367, 373, 388, 392, 396, 397, 400, 450, 452, 462, 465, 469, 476, 494, 497, 504, 519, 520, 521, 522, 523, 526, 538, 539, 552, 558, 563, 565, 575, 577], [153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153]), 'identifier': ([91, 94, 124, 126, 133, 135, 136, 148, 149, 150, 151, 179, 192, 218, 231, 235, 239, 244, 254, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 305, 306, 310, 328, 343, 354, 356, 358, 361, 362, 363, 365, 367, 373, 388, 392, 393, 396, 397, 400, 444, 450, 452, 462, 465, 469, 476, 494, 497, 501, 504, 519, 520, 521, 522, 523, 526, 538, 539, 552, 557, 558, 563, 565, 575, 577], [157, 188, 157, 157, 157, 188, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 440, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 486, 157, 157, 157, 188, 157, 157, 157, 157, 157, 157, 157, 157, 535, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 568, 157, 157, 157, 157, 157]), 'constant': ([91, 124, 126, 133, 136, 148, 149, 150, 151, 179, 192, 218, 231, 235, 239, 244, 254, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 305, 306, 328, 343, 354, 356, 358, 361, 362, 363, 365, 367, 373, 388, 392, 396, 397, 400, 450, 452, 462, 465, 469, 476, 494, 497, 504, 519, 520, 521, 522, 523, 526, 538, 539, 552, 558, 563, 565, 575, 577], [158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158]), 'unified_wstring_literal': ([91, 124, 126, 133, 136, 148, 149, 150, 151, 179, 192, 218, 231, 235, 239, 244, 254, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 290, 294, 305, 306, 328, 343, 354, 356, 358, 361, 362, 363, 365, 367, 373, 388, 392, 396, 397, 400, 450, 452, 462, 465, 469, 476, 494, 497, 504, 519, 520, 521, 522, 523, 526, 538, 539, 552, 558, 563, 565, 575, 577], [159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159]), 'parameter_type_list': ([94, 135, 318, 347, 444, 453], [182, 257, 449, 449, 507, 449]), 'identifier_list_opt': ([94, 135, 444], [183, 258, 508]), 'parameter_list': ([94, 135, 318, 347, 444, 453], [184, 184, 184, 184, 184, 184]), 'identifier_list': ([94, 135, 444], [186, 186, 186]), 'parameter_declaration': ([94, 135, 309, 318, 347, 444, 453], [187, 187, 439, 187, 187, 187, 187]), 'enumerator_list': ([118, 195, 196], [197, 324, 325]), 'enumerator': ([118, 195, 196, 327], [198, 198, 198, 456]), 'struct_declaration_list': ([122, 200, 201], [202, 329, 331]), 'brace_close': ([122, 197, 200, 201, 202, 216, 324, 325, 329, 331, 385, 481, 531, 555], [203, 326, 330, 332, 333, 351, 454, 455, 458, 459, 480, 525, 554, 567]), 'struct_declaration': ([122, 200, 201, 202, 329, 331], [204, 204, 204, 334, 334, 334]), 'specifier_qualifier_list': ([122, 123, 124, 136, 200, 201, 202, 235, 290, 294, 295, 300, 329, 331], [206, 213, 213, 213, 206, 206, 206, 213, 213, 213, 213, 213, 206, 206]), 'type_name': ([123, 124, 136, 235, 290, 294, 295, 300], [212, 214, 259, 360, 430, 431, 432, 433]), 'block_item_list_opt': ([126], [216]), 'block_item_list': ([126], [218]), 'block_item': ([126, 218], [219, 352]), 'statement': ([126, 218, 239, 354, 356, 365, 465, 519, 520, 521, 563, 575, 577], [221, 221, 366, 366, 366, 474, 366, 547, 366, 366, 366, 366, 366]), 'labeled_statement': ([126, 218, 239, 354, 356, 365, 465, 519, 520, 521, 563, 575, 577], [222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222, 222]), 'expression_statement': ([126, 218, 239, 354, 356, 365, 465, 519, 520, 521, 563, 575, 577], [223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, 223]), 'selection_statement': ([126, 218, 239, 354, 356, 365, 465, 519, 520, 521, 563, 575, 577], [225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225, 225]), 'iteration_statement': ([126, 218, 239, 354, 356, 365, 465, 519, 520, 521, 563, 575, 577], [226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226, 226]), 'jump_statement': ([126, 218, 239, 354, 356, 365, 465, 519, 520, 521, 563, 575, 577], [227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227, 227]), 'expression_opt': ([126, 218, 239, 354, 356, 365, 367, 465, 476, 519, 520, 521, 523, 552, 563, 565, 575, 577], [233, 233, 233, 233, 233, 233, 475, 233, 524, 233, 233, 233, 551, 566, 233, 574, 233, 233]), 'expression': ([126, 136, 218, 235, 239, 244, 264, 283, 290, 294, 354, 356, 358, 362, 363, 365, 367, 465, 476, 519, 520, 521, 522, 523, 552, 558, 563, 565, 575, 577], [236, 260, 236, 260, 236, 371, 403, 422, 260, 260, 236, 236, 467, 471, 472, 236, 236, 236, 236, 236, 236, 236, 550, 236, 236, 569, 236, 236, 236, 236]), 'assignment_expression': ([126, 133, 136, 179, 192, 218, 235, 239, 244, 254, 264, 283, 284, 290, 294, 305, 306, 354, 356, 358, 361, 362, 363, 365, 367, 373, 388, 396, 397, 450, 452, 465, 476, 497, 504, 519, 520, 521, 522, 523, 526, 538, 539, 552, 558, 563, 565, 575, 577], [245, 252, 245, 304, 252, 245, 245, 245, 245, 304, 245, 245, 425, 245, 245, 436, 437, 245, 245, 245, 470, 245, 245, 245, 245, 479, 252, 489, 490, 304, 304, 245, 245, 533, 304, 245, 245, 245, 245, 245, 252, 561, 562, 245, 245, 245, 245, 245, 245]), 'initializer': ([133, 192, 388, 526], [251, 323, 482, 553]), 'assignment_expression_opt': ([179, 254, 450, 452, 504], [301, 394, 511, 513, 536]), 'typeid_noparen_declarator': ([189], [312]), 'abstract_declarator_opt': ([189, 213], [313, 346]), 'direct_typeid_noparen_declarator': ([189, 314], [315, 441]), 'abstract_declarator': ([189, 213, 318, 347], [317, 317, 445, 445]), 'direct_abstract_declarator': ([189, 213, 314, 318, 347, 348, 447], [321, 321, 442, 321, 321, 442, 442]), 'struct_declarator_list_opt': ([206], [335]), 'struct_declarator_list': ([206], [340]), 'struct_declarator': ([206, 461], [341, 516]), 'pragmacomp_or_statement': ([239, 354, 356, 465, 519, 520, 521, 563, 575, 577], [364, 464, 466, 518, 546, 548, 549, 572, 578, 579]), 'assignment_operator': ([247], [373]), 'initializer_list_opt': ([253], [385]), 'initializer_list': ([253, 492], [386, 531]), 'designation_opt': ([253, 481, 492, 555], [388, 526, 388, 526]), 'designation': ([253, 481, 492, 555], [389, 389, 389, 389]), 'designator_list': ([253, 481, 492, 555], [390, 390, 390, 390]), 'designator': ([253, 390, 481, 492, 555], [391, 484, 391, 391, 391]), 'argument_expression_list': ([284], [423]), 'parameter_type_list_opt': ([318, 347, 453], [446, 446, 515]), 'offsetof_member_designator': ([501], [534])}
_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', 509), ('translation_unit_or_empty -> empty', 'translation_unit_or_empty', 1, 'p_translation_unit_or_empty', 'c_parser.py', 510), ('translation_unit -> external_declaration', 'translation_unit', 1, 'p_translation_unit_1', 'c_parser.py', 518), ('translation_unit -> translation_unit external_declaration', 'translation_unit', 2, 'p_translation_unit_2', 'c_parser.py', 524), ('external_declaration -> function_definition', 'external_declaration', 1, 'p_external_declaration_1', 'c_parser.py', 534), ('external_declaration -> declaration', 'external_declaration', 1, 'p_external_declaration_2', 'c_parser.py', 539), ('external_declaration -> pp_directive', 'external_declaration', 1, 'p_external_declaration_3', 'c_parser.py', 544), ('external_declaration -> pppragma_directive', 'external_declaration', 1, 'p_external_declaration_3', 'c_parser.py', 545), ('external_declaration -> SEMI', 'external_declaration', 1, 'p_external_declaration_4', 'c_parser.py', 550), ('external_declaration -> static_assert', 'external_declaration', 1, 'p_external_declaration_5', 'c_parser.py', 555), ('static_assert -> _STATIC_ASSERT LPAREN constant_expression COMMA unified_string_literal RPAREN', 'static_assert', 6, 'p_static_assert_declaration', 'c_parser.py', 560), ('static_assert -> _STATIC_ASSERT LPAREN constant_expression RPAREN', 'static_assert', 4, 'p_static_assert_declaration', 'c_parser.py', 561), ('pp_directive -> PPHASH', 'pp_directive', 1, 'p_pp_directive', 'c_parser.py', 569), ('pppragma_directive -> PPPRAGMA', 'pppragma_directive', 1, 'p_pppragma_directive', 'c_parser.py', 575), ('pppragma_directive -> PPPRAGMA PPPRAGMASTR', 'pppragma_directive', 2, 'p_pppragma_directive', 'c_parser.py', 576), ('function_definition -> id_declarator declaration_list_opt compound_statement', 'function_definition', 3, 'p_function_definition_1', 'c_parser.py', 586), ('function_definition -> declaration_specifiers id_declarator declaration_list_opt compound_statement', 'function_definition', 4, 'p_function_definition_2', 'c_parser.py', 604), ('statement -> labeled_statement', 'statement', 1, 'p_statement', 'c_parser.py', 619), ('statement -> expression_statement', 'statement', 1, 'p_statement', 'c_parser.py', 620), ('statement -> compound_statement', 'statement', 1, 'p_statement', 'c_parser.py', 621), ('statement -> selection_statement', 'statement', 1, 'p_statement', 'c_parser.py', 622), ('statement -> iteration_statement', 'statement', 1, 'p_statement', 'c_parser.py', 623), ('statement -> jump_statement', 'statement', 1, 'p_statement', 'c_parser.py', 624), ('statement -> pppragma_directive', 'statement', 1, 'p_statement', 'c_parser.py', 625), ('statement -> static_assert', 'statement', 1, 'p_statement', 'c_parser.py', 626), ('pragmacomp_or_statement -> pppragma_directive statement', 'pragmacomp_or_statement', 2, 'p_pragmacomp_or_statement', 'c_parser.py', 674), ('pragmacomp_or_statement -> statement', 'pragmacomp_or_statement', 1, 'p_pragmacomp_or_statement', 'c_parser.py', 675), ('decl_body -> declaration_specifiers init_declarator_list_opt', 'decl_body', 2, 'p_decl_body', 'c_parser.py', 694), ('decl_body -> declaration_specifiers_no_type id_init_declarator_list_opt', 'decl_body', 2, 'p_decl_body', 'c_parser.py', 695), ('declaration -> decl_body SEMI', 'declaration', 2, 'p_declaration', 'c_parser.py', 755), ('declaration_list -> declaration', 'declaration_list', 1, 'p_declaration_list', 'c_parser.py', 764), ('declaration_list -> declaration_list declaration', 'declaration_list', 2, 'p_declaration_list', 'c_parser.py', 765), ('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', 775), ('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', 780), ('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', 785), ('declaration_specifiers_no_type -> atomic_specifier declaration_specifiers_no_type_opt', 'declaration_specifiers_no_type', 2, 'p_declaration_specifiers_no_type_4', 'c_parser.py', 792), ('declaration_specifiers_no_type -> alignment_specifier declaration_specifiers_no_type_opt', 'declaration_specifiers_no_type', 2, 'p_declaration_specifiers_no_type_5', 'c_parser.py', 797), ('declaration_specifiers -> declaration_specifiers type_qualifier', 'declaration_specifiers', 2, 'p_declaration_specifiers_1', 'c_parser.py', 802), ('declaration_specifiers -> declaration_specifiers storage_class_specifier', 'declaration_specifiers', 2, 'p_declaration_specifiers_2', 'c_parser.py', 807), ('declaration_specifiers -> declaration_specifiers function_specifier', 'declaration_specifiers', 2, 'p_declaration_specifiers_3', 'c_parser.py', 812), ('declaration_specifiers -> declaration_specifiers type_specifier_no_typeid', 'declaration_specifiers', 2, 'p_declaration_specifiers_4', 'c_parser.py', 817), ('declaration_specifiers -> type_specifier', 'declaration_specifiers', 1, 'p_declaration_specifiers_5', 'c_parser.py', 822), ('declaration_specifiers -> declaration_specifiers_no_type type_specifier', 'declaration_specifiers', 2, 'p_declaration_specifiers_6', 'c_parser.py', 827), ('declaration_specifiers -> declaration_specifiers alignment_specifier', 'declaration_specifiers', 2, 'p_declaration_specifiers_7', 'c_parser.py', 832), ('storage_class_specifier -> AUTO', 'storage_class_specifier', 1, 'p_storage_class_specifier', 'c_parser.py', 837), ('storage_class_specifier -> REGISTER', 'storage_class_specifier', 1, 'p_storage_class_specifier', 'c_parser.py', 838), ('storage_class_specifier -> STATIC', 'storage_class_specifier', 1, 'p_storage_class_specifier', 'c_parser.py', 839), ('storage_class_specifier -> EXTERN', 'storage_class_specifier', 1, 'p_storage_class_specifier', 'c_parser.py', 840), ('storage_class_specifier -> TYPEDEF', 'storage_class_specifier', 1, 'p_storage_class_specifier', 'c_parser.py', 841), ('storage_class_specifier -> _THREAD_LOCAL', 'storage_class_specifier', 1, 'p_storage_class_specifier', 'c_parser.py', 842), ('function_specifier -> INLINE', 'function_specifier', 1, 'p_function_specifier', 'c_parser.py', 847), ('function_specifier -> _NORETURN', 'function_specifier', 1, 'p_function_specifier', 'c_parser.py', 848), ('type_specifier_no_typeid -> VOID', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 853), ('type_specifier_no_typeid -> _BOOL', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 854), ('type_specifier_no_typeid -> CHAR', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 855), ('type_specifier_no_typeid -> SHORT', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 856), ('type_specifier_no_typeid -> INT', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 857), ('type_specifier_no_typeid -> LONG', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 858), ('type_specifier_no_typeid -> FLOAT', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 859), ('type_specifier_no_typeid -> DOUBLE', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 860), ('type_specifier_no_typeid -> _COMPLEX', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 861), ('type_specifier_no_typeid -> SIGNED', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 862), ('type_specifier_no_typeid -> UNSIGNED', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 863), ('type_specifier_no_typeid -> __INT128', 'type_specifier_no_typeid', 1, 'p_type_specifier_no_typeid', 'c_parser.py', 864), ('type_specifier -> typedef_name', 'type_specifier', 1, 'p_type_specifier', 'c_parser.py', 869), ('type_specifier -> enum_specifier', 'type_specifier', 1, 'p_type_specifier', 'c_parser.py', 870), ('type_specifier -> struct_or_union_specifier', 'type_specifier', 1, 'p_type_specifier', 'c_parser.py', 871), ('type_specifier -> type_specifier_no_typeid', 'type_specifier', 1, 'p_type_specifier', 'c_parser.py', 872), ('type_specifier -> atomic_specifier', 'type_specifier', 1, 'p_type_specifier', 'c_parser.py', 873), ('atomic_specifier -> _ATOMIC LPAREN type_name RPAREN', 'atomic_specifier', 4, 'p_atomic_specifier', 'c_parser.py', 879), ('type_qualifier -> CONST', 'type_qualifier', 1, 'p_type_qualifier', 'c_parser.py', 886), ('type_qualifier -> RESTRICT', 'type_qualifier', 1, 'p_type_qualifier', 'c_parser.py', 887), ('type_qualifier -> VOLATILE', 'type_qualifier', 1, 'p_type_qualifier', 'c_parser.py', 888), ('type_qualifier -> _ATOMIC', 'type_qualifier', 1, 'p_type_qualifier', 'c_parser.py', 889), ('init_declarator_list -> init_declarator', 'init_declarator_list', 1, 'p_init_declarator_list', 'c_parser.py', 894), ('init_declarator_list -> init_declarator_list COMMA init_declarator', 'init_declarator_list', 3, 'p_init_declarator_list', 'c_parser.py', 895), ('init_declarator -> declarator', 'init_declarator', 1, 'p_init_declarator', 'c_parser.py', 903), ('init_declarator -> declarator EQUALS initializer', 'init_declarator', 3, 'p_init_declarator', 'c_parser.py', 904), ('id_init_declarator_list -> id_init_declarator', 'id_init_declarator_list', 1, 'p_id_init_declarator_list', 'c_parser.py', 909), ('id_init_declarator_list -> id_init_declarator_list COMMA init_declarator', 'id_init_declarator_list', 3, 'p_id_init_declarator_list', 'c_parser.py', 910), ('id_init_declarator -> id_declarator', 'id_init_declarator', 1, 'p_id_init_declarator', 'c_parser.py', 915), ('id_init_declarator -> id_declarator EQUALS initializer', 'id_init_declarator', 3, 'p_id_init_declarator', 'c_parser.py', 916), ('specifier_qualifier_list -> specifier_qualifier_list type_specifier_no_typeid', 'specifier_qualifier_list', 2, 'p_specifier_qualifier_list_1', 'c_parser.py', 923), ('specifier_qualifier_list -> specifier_qualifier_list type_qualifier', 'specifier_qualifier_list', 2, 'p_specifier_qualifier_list_2', 'c_parser.py', 928), ('specifier_qualifier_list -> type_specifier', 'specifier_qualifier_list', 1, 'p_specifier_qualifier_list_3', 'c_parser.py', 933), ('specifier_qualifier_list -> type_qualifier_list type_specifier', 'specifier_qualifier_list', 2, 'p_specifier_qualifier_list_4', 'c_parser.py', 938), ('specifier_qualifier_list -> alignment_specifier', 'specifier_qualifier_list', 1, 'p_specifier_qualifier_list_5', 'c_parser.py', 943), ('specifier_qualifier_list -> specifier_qualifier_list alignment_specifier', 'specifier_qualifier_list', 2, 'p_specifier_qualifier_list_6', 'c_parser.py', 948), ('struct_or_union_specifier -> struct_or_union ID', 'struct_or_union_specifier', 2, 'p_struct_or_union_specifier_1', 'c_parser.py', 956), ('struct_or_union_specifier -> struct_or_union TYPEID', 'struct_or_union_specifier', 2, 'p_struct_or_union_specifier_1', 'c_parser.py', 957), ('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', 967), ('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', 968), ('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', 985), ('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', 986), ('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', 987), ('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', 988), ('struct_or_union -> STRUCT', 'struct_or_union', 1, 'p_struct_or_union', 'c_parser.py', 1004), ('struct_or_union -> UNION', 'struct_or_union', 1, 'p_struct_or_union', 'c_parser.py', 1005), ('struct_declaration_list -> struct_declaration', 'struct_declaration_list', 1, 'p_struct_declaration_list', 'c_parser.py', 1012), ('struct_declaration_list -> struct_declaration_list struct_declaration', 'struct_declaration_list', 2, 'p_struct_declaration_list', 'c_parser.py', 1013), ('struct_declaration -> specifier_qualifier_list struct_declarator_list_opt SEMI', 'struct_declaration', 3, 'p_struct_declaration_1', 'c_parser.py', 1021), ('struct_declaration -> SEMI', 'struct_declaration', 1, 'p_struct_declaration_2', 'c_parser.py', 1059), ('struct_declaration -> pppragma_directive', 'struct_declaration', 1, 'p_struct_declaration_3', 'c_parser.py', 1064), ('struct_declarator_list -> struct_declarator', 'struct_declarator_list', 1, 'p_struct_declarator_list', 'c_parser.py', 1069), ('struct_declarator_list -> struct_declarator_list COMMA struct_declarator', 'struct_declarator_list', 3, 'p_struct_declarator_list', 'c_parser.py', 1070), ('struct_declarator -> declarator', 'struct_declarator', 1, 'p_struct_declarator_1', 'c_parser.py', 1078), ('struct_declarator -> declarator COLON constant_expression', 'struct_declarator', 3, 'p_struct_declarator_2', 'c_parser.py', 1083), ('struct_declarator -> COLON constant_expression', 'struct_declarator', 2, 'p_struct_declarator_2', 'c_parser.py', 1084), ('enum_specifier -> ENUM ID', 'enum_specifier', 2, 'p_enum_specifier_1', 'c_parser.py', 1092), ('enum_specifier -> ENUM TYPEID', 'enum_specifier', 2, 'p_enum_specifier_1', 'c_parser.py', 1093), ('enum_specifier -> ENUM brace_open enumerator_list brace_close', 'enum_specifier', 4, 'p_enum_specifier_2', 'c_parser.py', 1098), ('enum_specifier -> ENUM ID brace_open enumerator_list brace_close', 'enum_specifier', 5, 'p_enum_specifier_3', 'c_parser.py', 1103), ('enum_specifier -> ENUM TYPEID brace_open enumerator_list brace_close', 'enum_specifier', 5, 'p_enum_specifier_3', 'c_parser.py', 1104), ('enumerator_list -> enumerator', 'enumerator_list', 1, 'p_enumerator_list', 'c_parser.py', 1109), ('enumerator_list -> enumerator_list COMMA', 'enumerator_list', 2, 'p_enumerator_list', 'c_parser.py', 1110), ('enumerator_list -> enumerator_list COMMA enumerator', 'enumerator_list', 3, 'p_enumerator_list', 'c_parser.py', 1111), ('alignment_specifier -> _ALIGNAS LPAREN type_name RPAREN', 'alignment_specifier', 4, 'p_alignment_specifier', 'c_parser.py', 1122), ('alignment_specifier -> _ALIGNAS LPAREN constant_expression RPAREN', 'alignment_specifier', 4, 'p_alignment_specifier', 'c_parser.py', 1123), ('enumerator -> ID', 'enumerator', 1, 'p_enumerator', 'c_parser.py', 1128), ('enumerator -> ID EQUALS constant_expression', 'enumerator', 3, 'p_enumerator', 'c_parser.py', 1129), ('declarator -> id_declarator', 'declarator', 1, 'p_declarator', 'c_parser.py', 1144), ('declarator -> typeid_declarator', 'declarator', 1, 'p_declarator', 'c_parser.py', 1145), ('pointer -> TIMES type_qualifier_list_opt', 'pointer', 2, 'p_pointer', 'c_parser.py', 1257), ('pointer -> TIMES type_qualifier_list_opt pointer', 'pointer', 3, 'p_pointer', 'c_parser.py', 1258), ('type_qualifier_list -> type_qualifier', 'type_qualifier_list', 1, 'p_type_qualifier_list', 'c_parser.py', 1287), ('type_qualifier_list -> type_qualifier_list type_qualifier', 'type_qualifier_list', 2, 'p_type_qualifier_list', 'c_parser.py', 1288), ('parameter_type_list -> parameter_list', 'parameter_type_list', 1, 'p_parameter_type_list', 'c_parser.py', 1293), ('parameter_type_list -> parameter_list COMMA ELLIPSIS', 'parameter_type_list', 3, 'p_parameter_type_list', 'c_parser.py', 1294), ('parameter_list -> parameter_declaration', 'parameter_list', 1, 'p_parameter_list', 'c_parser.py', 1302), ('parameter_list -> parameter_list COMMA parameter_declaration', 'parameter_list', 3, 'p_parameter_list', 'c_parser.py', 1303), ('parameter_declaration -> declaration_specifiers id_declarator', 'parameter_declaration', 2, 'p_parameter_declaration_1', 'c_parser.py', 1322), ('parameter_declaration -> declaration_specifiers typeid_noparen_declarator', 'parameter_declaration', 2, 'p_parameter_declaration_1', 'c_parser.py', 1323), ('parameter_declaration -> declaration_specifiers abstract_declarator_opt', 'parameter_declaration', 2, 'p_parameter_declaration_2', 'c_parser.py', 1334), ('identifier_list -> identifier', 'identifier_list', 1, 'p_identifier_list', 'c_parser.py', 1366), ('identifier_list -> identifier_list COMMA identifier', 'identifier_list', 3, 'p_identifier_list', 'c_parser.py', 1367), ('initializer -> assignment_expression', 'initializer', 1, 'p_initializer_1', 'c_parser.py', 1376), ('initializer -> brace_open initializer_list_opt brace_close', 'initializer', 3, 'p_initializer_2', 'c_parser.py', 1381), ('initializer -> brace_open initializer_list COMMA brace_close', 'initializer', 4, 'p_initializer_2', 'c_parser.py', 1382), ('initializer_list -> designation_opt initializer', 'initializer_list', 2, 'p_initializer_list', 'c_parser.py', 1390), ('initializer_list -> initializer_list COMMA designation_opt initializer', 'initializer_list', 4, 'p_initializer_list', 'c_parser.py', 1391), ('designation -> designator_list EQUALS', 'designation', 2, 'p_designation', 'c_parser.py', 1402), ('designator_list -> designator', 'designator_list', 1, 'p_designator_list', 'c_parser.py', 1410), ('designator_list -> designator_list designator', 'designator_list', 2, 'p_designator_list', 'c_parser.py', 1411), ('designator -> LBRACKET constant_expression RBRACKET', 'designator', 3, 'p_designator', 'c_parser.py', 1416), ('designator -> PERIOD identifier', 'designator', 2, 'p_designator', 'c_parser.py', 1417), ('type_name -> specifier_qualifier_list abstract_declarator_opt', 'type_name', 2, 'p_type_name', 'c_parser.py', 1422), ('abstract_declarator -> pointer', 'abstract_declarator', 1, 'p_abstract_declarator_1', 'c_parser.py', 1434), ('abstract_declarator -> pointer direct_abstract_declarator', 'abstract_declarator', 2, 'p_abstract_declarator_2', 'c_parser.py', 1442), ('abstract_declarator -> direct_abstract_declarator', 'abstract_declarator', 1, 'p_abstract_declarator_3', 'c_parser.py', 1447), ('direct_abstract_declarator -> LPAREN abstract_declarator RPAREN', 'direct_abstract_declarator', 3, 'p_direct_abstract_declarator_1', 'c_parser.py', 1457), ('direct_abstract_declarator -> direct_abstract_declarator LBRACKET assignment_expression_opt RBRACKET', 'direct_abstract_declarator', 4, 'p_direct_abstract_declarator_2', 'c_parser.py', 1461), ('direct_abstract_declarator -> LBRACKET type_qualifier_list_opt assignment_expression_opt RBRACKET', 'direct_abstract_declarator', 4, 'p_direct_abstract_declarator_3', 'c_parser.py', 1472), ('direct_abstract_declarator -> direct_abstract_declarator LBRACKET TIMES RBRACKET', 'direct_abstract_declarator', 4, 'p_direct_abstract_declarator_4', 'c_parser.py', 1482), ('direct_abstract_declarator -> LBRACKET TIMES RBRACKET', 'direct_abstract_declarator', 3, 'p_direct_abstract_declarator_5', 'c_parser.py', 1493), ('direct_abstract_declarator -> direct_abstract_declarator LPAREN parameter_type_list_opt RPAREN', 'direct_abstract_declarator', 4, 'p_direct_abstract_declarator_6', 'c_parser.py', 1502), ('direct_abstract_declarator -> LPAREN parameter_type_list_opt RPAREN', 'direct_abstract_declarator', 3, 'p_direct_abstract_declarator_7', 'c_parser.py', 1512), ('block_item -> declaration', 'block_item', 1, 'p_block_item', 'c_parser.py', 1523), ('block_item -> statement', 'block_item', 1, 'p_block_item', 'c_parser.py', 1524), ('block_item_list -> block_item', 'block_item_list', 1, 'p_block_item_list', 'c_parser.py', 1531), ('block_item_list -> block_item_list block_item', 'block_item_list', 2, 'p_block_item_list', 'c_parser.py', 1532), ('compound_statement -> brace_open block_item_list_opt brace_close', 'compound_statement', 3, 'p_compound_statement_1', 'c_parser.py', 1538), ('labeled_statement -> ID COLON pragmacomp_or_statement', 'labeled_statement', 3, 'p_labeled_statement_1', 'c_parser.py', 1544), ('labeled_statement -> CASE constant_expression COLON pragmacomp_or_statement', 'labeled_statement', 4, 'p_labeled_statement_2', 'c_parser.py', 1548), ('labeled_statement -> DEFAULT COLON pragmacomp_or_statement', 'labeled_statement', 3, 'p_labeled_statement_3', 'c_parser.py', 1552), ('selection_statement -> IF LPAREN expression RPAREN pragmacomp_or_statement', 'selection_statement', 5, 'p_selection_statement_1', 'c_parser.py', 1556), ('selection_statement -> IF LPAREN expression RPAREN statement ELSE pragmacomp_or_statement', 'selection_statement', 7, 'p_selection_statement_2', 'c_parser.py', 1560), ('selection_statement -> SWITCH LPAREN expression RPAREN pragmacomp_or_statement', 'selection_statement', 5, 'p_selection_statement_3', 'c_parser.py', 1564), ('iteration_statement -> WHILE LPAREN expression RPAREN pragmacomp_or_statement', 'iteration_statement', 5, 'p_iteration_statement_1', 'c_parser.py', 1569), ('iteration_statement -> DO pragmacomp_or_statement WHILE LPAREN expression RPAREN SEMI', 'iteration_statement', 7, 'p_iteration_statement_2', 'c_parser.py', 1573), ('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', 1577), ('iteration_statement -> FOR LPAREN declaration expression_opt SEMI expression_opt RPAREN pragmacomp_or_statement', 'iteration_statement', 8, 'p_iteration_statement_4', 'c_parser.py', 1581), ('jump_statement -> GOTO ID SEMI', 'jump_statement', 3, 'p_jump_statement_1', 'c_parser.py', 1586), ('jump_statement -> BREAK SEMI', 'jump_statement', 2, 'p_jump_statement_2', 'c_parser.py', 1590), ('jump_statement -> CONTINUE SEMI', 'jump_statement', 2, 'p_jump_statement_3', 'c_parser.py', 1594), ('jump_statement -> RETURN expression SEMI', 'jump_statement', 3, 'p_jump_statement_4', 'c_parser.py', 1598), ('jump_statement -> RETURN SEMI', 'jump_statement', 2, 'p_jump_statement_4', 'c_parser.py', 1599), ('expression_statement -> expression_opt SEMI', 'expression_statement', 2, 'p_expression_statement', 'c_parser.py', 1604), ('expression -> assignment_expression', 'expression', 1, 'p_expression', 'c_parser.py', 1611), ('expression -> expression COMMA assignment_expression', 'expression', 3, 'p_expression', 'c_parser.py', 1612), ('assignment_expression -> LPAREN compound_statement RPAREN', 'assignment_expression', 3, 'p_parenthesized_compound_expression', 'c_parser.py', 1624), ('typedef_name -> TYPEID', 'typedef_name', 1, 'p_typedef_name', 'c_parser.py', 1628), ('assignment_expression -> conditional_expression', 'assignment_expression', 1, 'p_assignment_expression', 'c_parser.py', 1632), ('assignment_expression -> unary_expression assignment_operator assignment_expression', 'assignment_expression', 3, 'p_assignment_expression', 'c_parser.py', 1633), ('assignment_operator -> EQUALS', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1646), ('assignment_operator -> XOREQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1647), ('assignment_operator -> TIMESEQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1648), ('assignment_operator -> DIVEQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1649), ('assignment_operator -> MODEQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1650), ('assignment_operator -> PLUSEQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1651), ('assignment_operator -> MINUSEQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1652), ('assignment_operator -> LSHIFTEQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1653), ('assignment_operator -> RSHIFTEQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1654), ('assignment_operator -> ANDEQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1655), ('assignment_operator -> OREQUAL', 'assignment_operator', 1, 'p_assignment_operator', 'c_parser.py', 1656), ('constant_expression -> conditional_expression', 'constant_expression', 1, 'p_constant_expression', 'c_parser.py', 1661), ('conditional_expression -> binary_expression', 'conditional_expression', 1, 'p_conditional_expression', 'c_parser.py', 1665), ('conditional_expression -> binary_expression CONDOP expression COLON conditional_expression', 'conditional_expression', 5, 'p_conditional_expression', 'c_parser.py', 1666), ('binary_expression -> cast_expression', 'binary_expression', 1, 'p_binary_expression', 'c_parser.py', 1674), ('binary_expression -> binary_expression TIMES binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1675), ('binary_expression -> binary_expression DIVIDE binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1676), ('binary_expression -> binary_expression MOD binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1677), ('binary_expression -> binary_expression PLUS binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1678), ('binary_expression -> binary_expression MINUS binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1679), ('binary_expression -> binary_expression RSHIFT binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1680), ('binary_expression -> binary_expression LSHIFT binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1681), ('binary_expression -> binary_expression LT binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1682), ('binary_expression -> binary_expression LE binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1683), ('binary_expression -> binary_expression GE binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1684), ('binary_expression -> binary_expression GT binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1685), ('binary_expression -> binary_expression EQ binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1686), ('binary_expression -> binary_expression NE binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1687), ('binary_expression -> binary_expression AND binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1688), ('binary_expression -> binary_expression OR binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1689), ('binary_expression -> binary_expression XOR binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1690), ('binary_expression -> binary_expression LAND binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1691), ('binary_expression -> binary_expression LOR binary_expression', 'binary_expression', 3, 'p_binary_expression', 'c_parser.py', 1692), ('cast_expression -> unary_expression', 'cast_expression', 1, 'p_cast_expression_1', 'c_parser.py', 1700), ('cast_expression -> LPAREN type_name RPAREN cast_expression', 'cast_expression', 4, 'p_cast_expression_2', 'c_parser.py', 1704), ('unary_expression -> postfix_expression', 'unary_expression', 1, 'p_unary_expression_1', 'c_parser.py', 1708), ('unary_expression -> PLUSPLUS unary_expression', 'unary_expression', 2, 'p_unary_expression_2', 'c_parser.py', 1712), ('unary_expression -> MINUSMINUS unary_expression', 'unary_expression', 2, 'p_unary_expression_2', 'c_parser.py', 1713), ('unary_expression -> unary_operator cast_expression', 'unary_expression', 2, 'p_unary_expression_2', 'c_parser.py', 1714), ('unary_expression -> SIZEOF unary_expression', 'unary_expression', 2, 'p_unary_expression_3', 'c_parser.py', 1719), ('unary_expression -> SIZEOF LPAREN type_name RPAREN', 'unary_expression', 4, 'p_unary_expression_3', 'c_parser.py', 1720), ('unary_expression -> _ALIGNOF LPAREN type_name RPAREN', 'unary_expression', 4, 'p_unary_expression_3', 'c_parser.py', 1721), ('unary_operator -> AND', 'unary_operator', 1, 'p_unary_operator', 'c_parser.py', 1729), ('unary_operator -> TIMES', 'unary_operator', 1, 'p_unary_operator', 'c_parser.py', 1730), ('unary_operator -> PLUS', 'unary_operator', 1, 'p_unary_operator', 'c_parser.py', 1731), ('unary_operator -> MINUS', 'unary_operator', 1, 'p_unary_operator', 'c_parser.py', 1732), ('unary_operator -> NOT', 'unary_operator', 1, 'p_unary_operator', 'c_parser.py', 1733), ('unary_operator -> LNOT', 'unary_operator', 1, 'p_unary_operator', 'c_parser.py', 1734), ('postfix_expression -> primary_expression', 'postfix_expression', 1, 'p_postfix_expression_1', 'c_parser.py', 1739), ('postfix_expression -> postfix_expression LBRACKET expression RBRACKET', 'postfix_expression', 4, 'p_postfix_expression_2', 'c_parser.py', 1743), ('postfix_expression -> postfix_expression LPAREN argument_expression_list RPAREN', 'postfix_expression', 4, 'p_postfix_expression_3', 'c_parser.py', 1747), ('postfix_expression -> postfix_expression LPAREN RPAREN', 'postfix_expression', 3, 'p_postfix_expression_3', 'c_parser.py', 1748), ('postfix_expression -> postfix_expression PERIOD ID', 'postfix_expression', 3, 'p_postfix_expression_4', 'c_parser.py', 1753), ('postfix_expression -> postfix_expression PERIOD TYPEID', 'postfix_expression', 3, 'p_postfix_expression_4', 'c_parser.py', 1754), ('postfix_expression -> postfix_expression ARROW ID', 'postfix_expression', 3, 'p_postfix_expression_4', 'c_parser.py', 1755), ('postfix_expression -> postfix_expression ARROW TYPEID', 'postfix_expression', 3, 'p_postfix_expression_4', 'c_parser.py', 1756), ('postfix_expression -> postfix_expression PLUSPLUS', 'postfix_expression', 2, 'p_postfix_expression_5', 'c_parser.py', 1762), ('postfix_expression -> postfix_expression MINUSMINUS', 'postfix_expression', 2, 'p_postfix_expression_5', 'c_parser.py', 1763), ('postfix_expression -> LPAREN type_name RPAREN brace_open initializer_list brace_close', 'postfix_expression', 6, 'p_postfix_expression_6', 'c_parser.py', 1768), ('postfix_expression -> LPAREN type_name RPAREN brace_open initializer_list COMMA brace_close', 'postfix_expression', 7, 'p_postfix_expression_6', 'c_parser.py', 1769), ('primary_expression -> identifier', 'primary_expression', 1, 'p_primary_expression_1', 'c_parser.py', 1774), ('primary_expression -> constant', 'primary_expression', 1, 'p_primary_expression_2', 'c_parser.py', 1778), ('primary_expression -> unified_string_literal', 'primary_expression', 1, 'p_primary_expression_3', 'c_parser.py', 1782), ('primary_expression -> unified_wstring_literal', 'primary_expression', 1, 'p_primary_expression_3', 'c_parser.py', 1783), ('primary_expression -> LPAREN expression RPAREN', 'primary_expression', 3, 'p_primary_expression_4', 'c_parser.py', 1788), ('primary_expression -> OFFSETOF LPAREN type_name COMMA offsetof_member_designator RPAREN', 'primary_expression', 6, 'p_primary_expression_5', 'c_parser.py', 1792), ('offsetof_member_designator -> identifier', 'offsetof_member_designator', 1, 'p_offsetof_member_designator', 'c_parser.py', 1800), ('offsetof_member_designator -> offsetof_member_designator PERIOD identifier', 'offsetof_member_designator', 3, 'p_offsetof_member_designator', 'c_parser.py', 1801), ('offsetof_member_designator -> offsetof_member_designator LBRACKET expression RBRACKET', 'offsetof_member_designator', 4, 'p_offsetof_member_designator', 'c_parser.py', 1802), ('argument_expression_list -> assignment_expression', 'argument_expression_list', 1, 'p_argument_expression_list', 'c_parser.py', 1814), ('argument_expression_list -> argument_expression_list COMMA assignment_expression', 'argument_expression_list', 3, 'p_argument_expression_list', 'c_parser.py', 1815), ('identifier -> ID', 'identifier', 1, 'p_identifier', 'c_parser.py', 1824), ('constant -> INT_CONST_DEC', 'constant', 1, 'p_constant_1', 'c_parser.py', 1828), ('constant -> INT_CONST_OCT', 'constant', 1, 'p_constant_1', 'c_parser.py', 1829), ('constant -> INT_CONST_HEX', 'constant', 1, 'p_constant_1', 'c_parser.py', 1830), ('constant -> INT_CONST_BIN', 'constant', 1, 'p_constant_1', 'c_parser.py', 1831), ('constant -> INT_CONST_CHAR', 'constant', 1, 'p_constant_1', 'c_parser.py', 1832), ('constant -> FLOAT_CONST', 'constant', 1, 'p_constant_2', 'c_parser.py', 1851), ('constant -> HEX_FLOAT_CONST', 'constant', 1, 'p_constant_2', 'c_parser.py', 1852), ('constant -> CHAR_CONST', 'constant', 1, 'p_constant_3', 'c_parser.py', 1868), ('constant -> WCHAR_CONST', 'constant', 1, 'p_constant_3', 'c_parser.py', 1869), ('constant -> U8CHAR_CONST', 'constant', 1, 'p_constant_3', 'c_parser.py', 1870), ('constant -> U16CHAR_CONST', 'constant', 1, 'p_constant_3', 'c_parser.py', 1871), ('constant -> U32CHAR_CONST', 'constant', 1, 'p_constant_3', 'c_parser.py', 1872), ('unified_string_literal -> STRING_LITERAL', 'unified_string_literal', 1, 'p_unified_string_literal', 'c_parser.py', 1883), ('unified_string_literal -> unified_string_literal STRING_LITERAL', 'unified_string_literal', 2, 'p_unified_string_literal', 'c_parser.py', 1884), ('unified_wstring_literal -> WSTRING_LITERAL', 'unified_wstring_literal', 1, 'p_unified_wstring_literal', 'c_parser.py', 1894), ('unified_wstring_literal -> U8STRING_LITERAL', 'unified_wstring_literal', 1, 'p_unified_wstring_literal', 'c_parser.py', 1895), ('unified_wstring_literal -> U16STRING_LITERAL', 'unified_wstring_literal', 1, 'p_unified_wstring_literal', 'c_parser.py', 1896), ('unified_wstring_literal -> U32STRING_LITERAL', 'unified_wstring_literal', 1, 'p_unified_wstring_literal', 'c_parser.py', 1897), ('unified_wstring_literal -> unified_wstring_literal WSTRING_LITERAL', 'unified_wstring_literal', 2, 'p_unified_wstring_literal', 'c_parser.py', 1898), ('unified_wstring_literal -> unified_wstring_literal U8STRING_LITERAL', 'unified_wstring_literal', 2, 'p_unified_wstring_literal', 'c_parser.py', 1899), ('unified_wstring_literal -> unified_wstring_literal U16STRING_LITERAL', 'unified_wstring_literal', 2, 'p_unified_wstring_literal', 'c_parser.py', 1900), ('unified_wstring_literal -> unified_wstring_literal U32STRING_LITERAL', 'unified_wstring_literal', 2, 'p_unified_wstring_literal', 'c_parser.py', 1901), ('brace_open -> LBRACE', 'brace_open', 1, 'p_brace_open', 'c_parser.py', 1911), ('brace_close -> RBRACE', 'brace_close', 1, 'p_brace_close', 'c_parser.py', 1917), ('empty -> <empty>', 'empty', 0, 'p_empty', 'c_parser.py', 1923)] |
# -*- coding: utf-8 -*-
__all__ = ['StatesSet']
class StatesSet:
STATE, CAPTURED = range(2)
def __init__(self):
self._list = []
self._set = set()
def __len__(self):
return len(self._list)
def __bool__(self):
return bool(self._list)
def __iter__(self):
yield from self._list
def __contains__(self, item):
return item in self._set
def __getitem__(self, item):
return self._list[item]
def extend(self, items):
items = tuple(
item
for item in items
if item[self.STATE] not in self._set)
self._list.extend(items)
self._set.update(
item[self.STATE]
for item in items)
def clear(self):
self._list.clear()
self._set.clear()
| __all__ = ['StatesSet']
class Statesset:
(state, captured) = range(2)
def __init__(self):
self._list = []
self._set = set()
def __len__(self):
return len(self._list)
def __bool__(self):
return bool(self._list)
def __iter__(self):
yield from self._list
def __contains__(self, item):
return item in self._set
def __getitem__(self, item):
return self._list[item]
def extend(self, items):
items = tuple((item for item in items if item[self.STATE] not in self._set))
self._list.extend(items)
self._set.update((item[self.STATE] for item in items))
def clear(self):
self._list.clear()
self._set.clear() |
load("@rules_cc//cc:defs.bzl", "cc_library")
# https://docs.bazel.build/versions/master/be/c-cpp.html#cc_library
cc_library(
name = "cpp-utils",
srcs = glob(["src/*.cpp"]),
hdrs = glob(["inc/*.h"]),
includes = ["inc"],
visibility = ["//visibility:public"],
deps = [
"@com_github_spdlog//:spdlog",
"@com_google_absl//absl/debugging:failure_signal_handler",
"@com_google_absl//absl/debugging:stacktrace",
"@com_google_absl//absl/debugging:symbolize",
"@com_google_absl//absl/synchronization",
"@com_google_absl//absl/time",
"@com_google_googletest//:gtest_main",
],
)
| load('@rules_cc//cc:defs.bzl', 'cc_library')
cc_library(name='cpp-utils', srcs=glob(['src/*.cpp']), hdrs=glob(['inc/*.h']), includes=['inc'], visibility=['//visibility:public'], deps=['@com_github_spdlog//:spdlog', '@com_google_absl//absl/debugging:failure_signal_handler', '@com_google_absl//absl/debugging:stacktrace', '@com_google_absl//absl/debugging:symbolize', '@com_google_absl//absl/synchronization', '@com_google_absl//absl/time', '@com_google_googletest//:gtest_main']) |
#-*- coding: UTF-8 -*-
class quick_sort():
a=[]
def __init__(self,data):
self.a=data[:]
def sort(self,left,right):
if left!=right:
mid=left+int((right-left)/2)
self.sort(left,mid)
self.sort(mid+1,right)
b=[]
i=0
for i in range(left,mid+1):
b.append(self.a[i])
b.append('zz')
i=0
for i in range(mid+1,right+1):
b.append(self.a[i])
b.append('zz')
i=j=0
k=mid-left+2
for i in range(left,right+1):
if b[j]>b[k]:
value=b[k]
k+=1
else:
value=b[j]
j+=1
self.a[i]=value
return self.a
def show(self):
print(self.a)
class quick_sort_Multidimensional_Data():
a=[]
def __init__(self,data):
self.a=data[:]
def sort(self,left,right):
if left!=right:
mid=left+int((right-left)/2)
self.sort(left,mid)
self.sort(mid+1,right)
b=[]
i=0
for i in range(left,mid+1):
b.append(self.a[i])
b.append(['',10])
i=0
for i in range(mid+1,right+1):
b.append(self.a[i])
b.append(['',10])
i=j=0
k=mid-left+2
for i in range(left,right+1):
if b[j][0]>b[k][0]:
value=b[k]
k+=1
else:
value=b[j]
j+=1
self.a[i]=value
return self.a
def show(self):
print(self.a) | class Quick_Sort:
a = []
def __init__(self, data):
self.a = data[:]
def sort(self, left, right):
if left != right:
mid = left + int((right - left) / 2)
self.sort(left, mid)
self.sort(mid + 1, right)
b = []
i = 0
for i in range(left, mid + 1):
b.append(self.a[i])
b.append('zz')
i = 0
for i in range(mid + 1, right + 1):
b.append(self.a[i])
b.append('zz')
i = j = 0
k = mid - left + 2
for i in range(left, right + 1):
if b[j] > b[k]:
value = b[k]
k += 1
else:
value = b[j]
j += 1
self.a[i] = value
return self.a
def show(self):
print(self.a)
class Quick_Sort_Multidimensional_Data:
a = []
def __init__(self, data):
self.a = data[:]
def sort(self, left, right):
if left != right:
mid = left + int((right - left) / 2)
self.sort(left, mid)
self.sort(mid + 1, right)
b = []
i = 0
for i in range(left, mid + 1):
b.append(self.a[i])
b.append(['', 10])
i = 0
for i in range(mid + 1, right + 1):
b.append(self.a[i])
b.append(['', 10])
i = j = 0
k = mid - left + 2
for i in range(left, right + 1):
if b[j][0] > b[k][0]:
value = b[k]
k += 1
else:
value = b[j]
j += 1
self.a[i] = value
return self.a
def show(self):
print(self.a) |
#
# PySNMP MIB module CISCO-SNA-LLC-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-SNA-LLC-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 17:35:59 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, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint, SingleValueConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint", "SingleValueConstraint", "ValueRangeConstraint")
ciscoExperiment, = mibBuilder.importSymbols("CISCO-SMI", "ciscoExperiment")
ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex")
NotificationGroup, ModuleCompliance, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup")
Unsigned32, Counter64, MibIdentifier, Bits, iso, Integer32, MibScalar, MibTable, MibTableRow, MibTableColumn, Gauge32, ObjectIdentity, TimeTicks, Counter32, NotificationType, IpAddress, ModuleIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "Unsigned32", "Counter64", "MibIdentifier", "Bits", "iso", "Integer32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Gauge32", "ObjectIdentity", "TimeTicks", "Counter32", "NotificationType", "IpAddress", "ModuleIdentity")
DisplayString, TimeStamp, MacAddress, TextualConvention, RowStatus = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TimeStamp", "MacAddress", "TextualConvention", "RowStatus")
ciscoSnaLlcMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 10, 8))
ciscoSnaLlcMIB.setRevisions(('1995-05-10 00:00',))
if mibBuilder.loadTexts: ciscoSnaLlcMIB.setLastUpdated('9505100000Z')
if mibBuilder.loadTexts: ciscoSnaLlcMIB.setOrganization('cisco IBM engineering Working Group')
ciscoSnaLlcMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 1))
llcPortGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1))
llcSapGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2))
llcCcGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3))
llcPortAdminTable = MibTable((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1), )
if mibBuilder.loadTexts: llcPortAdminTable.setStatus('current')
llcPortAdminEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-SNA-LLC-MIB", "llcPortVirtualIndex"))
if mibBuilder.loadTexts: llcPortAdminEntry.setStatus('current')
llcPortVirtualIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)))
if mibBuilder.loadTexts: llcPortVirtualIndex.setStatus('current')
llcPortAdminName = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcPortAdminName.setStatus('current')
llcPortAdminMaxSaps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 3), Gauge32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcPortAdminMaxSaps.setStatus('current')
llcPortAdminMaxCcs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 4), Gauge32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcPortAdminMaxCcs.setStatus('current')
llcPortAdminMaxPDUOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 5), Integer32()).setUnits('octets').setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcPortAdminMaxPDUOctets.setStatus('current')
llcPortAdminMaxUnackedIPDUsSend = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 127)).clone(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcPortAdminMaxUnackedIPDUsSend.setStatus('current')
llcPortAdminMaxUnackedIPDUsRcv = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 127)).clone(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcPortAdminMaxUnackedIPDUsRcv.setStatus('current')
llcPortAdminMaxRetransmits = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 8), Integer32().clone(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcPortAdminMaxRetransmits.setStatus('current')
llcPortAdminAckTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 9), TimeTicks().clone(300)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcPortAdminAckTimer.setStatus('current')
llcPortAdminPbitTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 10), TimeTicks().clone(300)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcPortAdminPbitTimer.setStatus('current')
llcPortAdminRejTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 11), TimeTicks().clone(300)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcPortAdminRejTimer.setStatus('current')
llcPortAdminBusyTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 12), TimeTicks().clone(30000)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcPortAdminBusyTimer.setStatus('current')
llcPortAdminInactTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 13), TimeTicks().clone(3000)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcPortAdminInactTimer.setStatus('current')
llcPortAdminDelayAckCount = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 14), Integer32().clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcPortAdminDelayAckCount.setStatus('current')
llcPortAdminDelayAckTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 15), TimeTicks().clone(100)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcPortAdminDelayAckTimer.setStatus('current')
llcPortAdminNw = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 16), Integer32().clone(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcPortAdminNw.setStatus('current')
llcPortOperTable = MibTable((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2), )
if mibBuilder.loadTexts: llcPortOperTable.setStatus('current')
llcPortOperEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-SNA-LLC-MIB", "llcPortVirtualIndex"))
if mibBuilder.loadTexts: llcPortOperEntry.setStatus('current')
llcPortOperMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcPortOperMacAddress.setStatus('current')
llcPortOperNumSaps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2, 1, 2), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcPortOperNumSaps.setStatus('current')
llcPortOperHiWaterNumSaps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2, 1, 3), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcPortOperHiWaterNumSaps.setStatus('current')
llcPortOperSimRim = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2))).clone('no')).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcPortOperSimRim.setStatus('current')
llcPortOperLastModifyTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2, 1, 5), TimeStamp()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcPortOperLastModifyTime.setStatus('current')
llcPortStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3), )
if mibBuilder.loadTexts: llcPortStatsTable.setStatus('current')
llcPortStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-SNA-LLC-MIB", "llcPortVirtualIndex"))
if mibBuilder.loadTexts: llcPortStatsEntry.setStatus('current')
llcPortStatsPDUsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcPortStatsPDUsIn.setStatus('current')
llcPortStatsPDUsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcPortStatsPDUsOut.setStatus('current')
llcPortStatsOctetsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 3), Counter32()).setUnits('octets').setMaxAccess("readonly")
if mibBuilder.loadTexts: llcPortStatsOctetsIn.setStatus('current')
llcPortStatsOctetsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 4), Counter32()).setUnits('octets').setMaxAccess("readonly")
if mibBuilder.loadTexts: llcPortStatsOctetsOut.setStatus('current')
llcPortStatsTESTCommandsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcPortStatsTESTCommandsIn.setStatus('current')
llcPortStatsTESTResponsesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcPortStatsTESTResponsesOut.setStatus('current')
llcPortStatsLocalBusies = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcPortStatsLocalBusies.setStatus('current')
llcPortStatsUnknownSaps = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcPortStatsUnknownSaps.setStatus('current')
llcSapAdminTable = MibTable((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1), )
if mibBuilder.loadTexts: llcSapAdminTable.setStatus('current')
llcSapAdminEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-SNA-LLC-MIB", "llcPortVirtualIndex"), (0, "CISCO-SNA-LLC-MIB", "llcSapNumber"))
if mibBuilder.loadTexts: llcSapAdminEntry.setStatus('current')
llcSapNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255)))
if mibBuilder.loadTexts: llcSapNumber.setStatus('current')
llcSapAdminMaxPDUOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 2), Integer32()).setUnits('octets').setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcSapAdminMaxPDUOctets.setStatus('current')
llcSapAdminMaxUnackedIPDUsSend = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcSapAdminMaxUnackedIPDUsSend.setStatus('current')
llcSapAdminMaxUnackedIPDUsRcv = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcSapAdminMaxUnackedIPDUsRcv.setStatus('current')
llcSapAdminMaxRetransmits = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcSapAdminMaxRetransmits.setStatus('current')
llcSapAdminAckTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 6), TimeTicks()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcSapAdminAckTimer.setStatus('current')
llcSapAdminPbitTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 7), TimeTicks()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcSapAdminPbitTimer.setStatus('current')
llcSapAdminRejTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 8), TimeTicks()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcSapAdminRejTimer.setStatus('current')
llcSapAdminBusyTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 9), TimeTicks()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcSapAdminBusyTimer.setStatus('current')
llcSapAdminInactTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 10), TimeTicks()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcSapAdminInactTimer.setStatus('current')
llcSapAdminDelayAckCount = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcSapAdminDelayAckCount.setStatus('current')
llcSapAdminDelayAckTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 12), TimeTicks()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcSapAdminDelayAckTimer.setStatus('current')
llcSapAdminNw = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 13), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: llcSapAdminNw.setStatus('current')
llcSapOperTable = MibTable((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 2), )
if mibBuilder.loadTexts: llcSapOperTable.setStatus('current')
llcSapOperEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-SNA-LLC-MIB", "llcPortVirtualIndex"), (0, "CISCO-SNA-LLC-MIB", "llcSapNumber"))
if mibBuilder.loadTexts: llcSapOperEntry.setStatus('current')
llcSapOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("inactive", 1), ("active", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapOperStatus.setStatus('current')
llcSapOperNumCcs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapOperNumCcs.setStatus('current')
llcSapOperHiWaterNumCcs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 2, 1, 3), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapOperHiWaterNumCcs.setStatus('current')
llcSapOperLlc2Support = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapOperLlc2Support.setStatus('current')
llcSapStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3), )
if mibBuilder.loadTexts: llcSapStatsTable.setStatus('current')
llcSapStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-SNA-LLC-MIB", "llcPortVirtualIndex"), (0, "CISCO-SNA-LLC-MIB", "llcSapNumber"))
if mibBuilder.loadTexts: llcSapStatsEntry.setStatus('current')
llcSapStatsLocalBusies = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsLocalBusies.setStatus('current')
llcSapStatsRemoteBusies = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsRemoteBusies.setStatus('current')
llcSapStatsIFramesIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsIFramesIn.setStatus('current')
llcSapStatsIFramesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsIFramesOut.setStatus('current')
llcSapStatsIOctetsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsIOctetsIn.setStatus('current')
llcSapStatsIOctetsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsIOctetsOut.setStatus('current')
llcSapStatsSFramesIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsSFramesIn.setStatus('current')
llcSapStatsSFramesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsSFramesOut.setStatus('current')
llcSapStatsRetransmitsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsRetransmitsOut.setStatus('current')
llcSapStatsREJsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsREJsIn.setStatus('current')
llcSapStatsREJsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsREJsOut.setStatus('current')
llcSapStatsWwCount = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsWwCount.setStatus('current')
llcSapStatsTESTCommandsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsTESTCommandsIn.setStatus('current')
llcSapStatsTESTCommandsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsTESTCommandsOut.setStatus('current')
llcSapStatsTESTResponsesIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsTESTResponsesIn.setStatus('current')
llcSapStatsTESTResponsesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsTESTResponsesOut.setStatus('current')
llcSapStatsXIDCommandsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsXIDCommandsIn.setStatus('current')
llcSapStatsXIDCommandsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsXIDCommandsOut.setStatus('current')
llcSapStatsXIDResponsesIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsXIDResponsesIn.setStatus('current')
llcSapStatsXIDResponsesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsXIDResponsesOut.setStatus('current')
llcSapStatsUIFramesIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsUIFramesIn.setStatus('current')
llcSapStatsUIFramesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsUIFramesOut.setStatus('current')
llcSapStatsUIOctetsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsUIOctetsIn.setStatus('current')
llcSapStatsUIOctetsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsUIOctetsOut.setStatus('current')
llcSapStatsConnectOk = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsConnectOk.setStatus('current')
llcSapStatsConnectFail = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsConnectFail.setStatus('current')
llcSapStatsDisconnect = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsDisconnect.setStatus('current')
llcSapStatsDisconnectFRMRSend = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsDisconnectFRMRSend.setStatus('current')
llcSapStatsDisconnectFRMRRcv = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsDisconnectFRMRRcv.setStatus('current')
llcSapStatsDisconnectTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsDisconnectTimer.setStatus('current')
llcSapStatsDMsInABM = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 31), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsDMsInABM.setStatus('current')
llcSapStatsSABMEsInABM = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 32), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcSapStatsSABMEsInABM.setStatus('current')
llcCcAdminTable = MibTable((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1), )
if mibBuilder.loadTexts: llcCcAdminTable.setStatus('current')
llcCcAdminEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-SNA-LLC-MIB", "llcPortVirtualIndex"), (0, "CISCO-SNA-LLC-MIB", "llcSapNumber"), (0, "CISCO-SNA-LLC-MIB", "llcCcRMac"), (0, "CISCO-SNA-LLC-MIB", "llcCcRSap"))
if mibBuilder.loadTexts: llcCcAdminEntry.setStatus('current')
llcCcRMac = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 1), MacAddress())
if mibBuilder.loadTexts: llcCcRMac.setStatus('current')
llcCcRSap = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255)))
if mibBuilder.loadTexts: llcCcRSap.setStatus('current')
llcCcAdminBounce = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2))).clone('no')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: llcCcAdminBounce.setStatus('current')
llcCcAdminMaxPDUOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 4), Integer32()).setUnits('octets').setMaxAccess("readcreate")
if mibBuilder.loadTexts: llcCcAdminMaxPDUOctets.setStatus('current')
llcCcAdminMaxUnackedIPDUsSend = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: llcCcAdminMaxUnackedIPDUsSend.setStatus('current')
llcCcAdminMaxUnackedIPDUsRcv = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: llcCcAdminMaxUnackedIPDUsRcv.setStatus('current')
llcCcAdminMaxRetransmits = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 7), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: llcCcAdminMaxRetransmits.setStatus('current')
llcCcAdminAckTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 8), TimeTicks()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: llcCcAdminAckTimer.setStatus('current')
llcCcAdminPbitTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 9), TimeTicks()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: llcCcAdminPbitTimer.setStatus('current')
llcCcAdminRejTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 10), TimeTicks()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: llcCcAdminRejTimer.setStatus('current')
llcCcAdminBusyTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 11), TimeTicks()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: llcCcAdminBusyTimer.setStatus('current')
llcCcAdminInactTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 12), TimeTicks()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: llcCcAdminInactTimer.setStatus('current')
llcCcAdminDelayAckCount = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 13), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: llcCcAdminDelayAckCount.setStatus('current')
llcCcAdminDelayAckTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 14), TimeTicks()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: llcCcAdminDelayAckTimer.setStatus('current')
llcCcAdminNw = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 15), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: llcCcAdminNw.setStatus('current')
llcCcAdminRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 16), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: llcCcAdminRowStatus.setStatus('current')
llcCcOperTable = MibTable((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2), )
if mibBuilder.loadTexts: llcCcOperTable.setStatus('current')
llcCcOperEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-SNA-LLC-MIB", "llcPortVirtualIndex"), (0, "CISCO-SNA-LLC-MIB", "llcSapNumber"), (0, "CISCO-SNA-LLC-MIB", "llcCcRMac"), (0, "CISCO-SNA-LLC-MIB", "llcCcRSap"))
if mibBuilder.loadTexts: llcCcOperEntry.setStatus('current')
llcCcOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14))).clone(namedValues=NamedValues(("aDM", 1), ("setup", 2), ("normal", 3), ("busy", 4), ("reject", 5), ("await", 6), ("awaitBusy", 7), ("awaitReject", 8), ("dConn", 9), ("reset", 10), ("error", 11), ("conn", 12), ("resetCheck", 13), ("resetWait", 14)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperState.setStatus('current')
llcCcOperMaxIPDUOctetsSend = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperMaxIPDUOctetsSend.setStatus('current')
llcCcOperMaxIPDUOctetsRcv = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperMaxIPDUOctetsRcv.setStatus('current')
llcCcOperMaxUnackedIPDUsSend = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 127))).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperMaxUnackedIPDUsSend.setStatus('current')
llcCcOperMaxUnackedIPDUsRcv = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 127))).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperMaxUnackedIPDUsRcv.setStatus('current')
llcCcOperMaxRetransmits = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperMaxRetransmits.setStatus('current')
llcCcOperAckTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 7), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperAckTimer.setStatus('current')
llcCcOperPbitTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 8), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperPbitTimer.setStatus('current')
llcCcOperRejTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 9), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperRejTimer.setStatus('current')
llcCcOperBusyTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 10), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperBusyTimer.setStatus('current')
llcCcOperInactTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 11), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperInactTimer.setStatus('current')
llcCcOperDelayAckCount = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperDelayAckCount.setStatus('current')
llcCcOperDelayAckTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 13), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperDelayAckTimer.setStatus('current')
llcCcOperNw = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperNw.setStatus('current')
llcCcOperWw = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 127))).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperWw.setStatus('current')
llcCcOperCreateTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 16), TimeStamp()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperCreateTime.setStatus('current')
llcCcOperLastModifyTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 17), TimeStamp()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperLastModifyTime.setStatus('current')
llcCcOperLastFailTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 18), TimeStamp()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperLastFailTime.setStatus('current')
llcCcOperLastFailCause = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("undefined", 1), ("rxFRMR", 2), ("txFRMR", 3), ("discReceived", 4), ("discSent", 5), ("retriesExpired", 6), ("forcedShutdown", 7))).clone('undefined')).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperLastFailCause.setStatus('current')
llcCcOperLastFailFRMRInfo = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 20), OctetString().subtype(subtypeSpec=ValueSizeConstraint(3, 3)).setFixedLength(3)).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperLastFailFRMRInfo.setStatus('current')
llcCcOperLastWwCause = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("neverInvoked", 1), ("lostData", 2), ("macLayerCongestion", 3), ("other", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcOperLastWwCause.setStatus('current')
llcCcStatsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3), )
if mibBuilder.loadTexts: llcCcStatsTable.setStatus('current')
llcCcStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-SNA-LLC-MIB", "llcPortVirtualIndex"), (0, "CISCO-SNA-LLC-MIB", "llcSapNumber"), (0, "CISCO-SNA-LLC-MIB", "llcCcRMac"), (0, "CISCO-SNA-LLC-MIB", "llcCcRSap"))
if mibBuilder.loadTexts: llcCcStatsEntry.setStatus('current')
llcCcStatsLocalBusies = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcStatsLocalBusies.setStatus('current')
llcCcStatsRemoteBusies = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcStatsRemoteBusies.setStatus('current')
llcCcStatsIFramesIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcStatsIFramesIn.setStatus('current')
llcCcStatsIFramesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcStatsIFramesOut.setStatus('current')
llcCcStatsIOctetsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcStatsIOctetsIn.setStatus('current')
llcCcStatsIOctetsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcStatsIOctetsOut.setStatus('current')
llcCcStatsSFramesIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcStatsSFramesIn.setStatus('current')
llcCcStatsSFramesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcStatsSFramesOut.setStatus('current')
llcCcStatsRetransmitsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcStatsRetransmitsOut.setStatus('current')
llcCcStatsREJsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcStatsREJsIn.setStatus('current')
llcCcStatsREJsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcStatsREJsOut.setStatus('current')
llcCcStatsWwCount = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: llcCcStatsWwCount.setStatus('current')
snaLlcMIBNotificationPrefix = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 2))
snaLlcMIBNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 2, 0))
llcCcStatusChange = NotificationType((1, 3, 6, 1, 4, 1, 9, 10, 8, 2, 0, 1)).setObjects(("CISCO-SNA-LLC-MIB", "llcCcOperState"), ("CISCO-SNA-LLC-MIB", "llcCcOperLastFailTime"), ("CISCO-SNA-LLC-MIB", "llcCcOperLastFailCause"), ("CISCO-SNA-LLC-MIB", "llcCcOperLastFailFRMRInfo"))
if mibBuilder.loadTexts: llcCcStatusChange.setStatus('current')
snaLlcMIBConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 3))
snaLlcMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 3, 1))
snaLlcMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 3, 2))
llcCoreCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 10, 8, 3, 1, 1)).setObjects(("CISCO-SNA-LLC-MIB", "llcCorePortGroup"), ("CISCO-SNA-LLC-MIB", "llcCoreSapGroup"), ("CISCO-SNA-LLC-MIB", "llcCoreCcGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
llcCoreCompliance = llcCoreCompliance.setStatus('current')
llcCorePortGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 10, 8, 3, 2, 1)).setObjects(("CISCO-SNA-LLC-MIB", "llcPortAdminName"), ("CISCO-SNA-LLC-MIB", "llcPortAdminMaxSaps"), ("CISCO-SNA-LLC-MIB", "llcPortAdminMaxCcs"), ("CISCO-SNA-LLC-MIB", "llcPortAdminMaxPDUOctets"), ("CISCO-SNA-LLC-MIB", "llcPortAdminMaxUnackedIPDUsSend"), ("CISCO-SNA-LLC-MIB", "llcPortAdminMaxUnackedIPDUsRcv"), ("CISCO-SNA-LLC-MIB", "llcPortAdminMaxRetransmits"), ("CISCO-SNA-LLC-MIB", "llcPortAdminAckTimer"), ("CISCO-SNA-LLC-MIB", "llcPortAdminPbitTimer"), ("CISCO-SNA-LLC-MIB", "llcPortAdminRejTimer"), ("CISCO-SNA-LLC-MIB", "llcPortAdminBusyTimer"), ("CISCO-SNA-LLC-MIB", "llcPortAdminInactTimer"), ("CISCO-SNA-LLC-MIB", "llcPortAdminDelayAckCount"), ("CISCO-SNA-LLC-MIB", "llcPortAdminDelayAckTimer"), ("CISCO-SNA-LLC-MIB", "llcPortAdminNw"), ("CISCO-SNA-LLC-MIB", "llcPortOperMacAddress"), ("CISCO-SNA-LLC-MIB", "llcPortOperNumSaps"), ("CISCO-SNA-LLC-MIB", "llcPortOperHiWaterNumSaps"), ("CISCO-SNA-LLC-MIB", "llcPortOperSimRim"), ("CISCO-SNA-LLC-MIB", "llcPortOperLastModifyTime"), ("CISCO-SNA-LLC-MIB", "llcPortStatsPDUsIn"), ("CISCO-SNA-LLC-MIB", "llcPortStatsPDUsOut"), ("CISCO-SNA-LLC-MIB", "llcPortStatsOctetsIn"), ("CISCO-SNA-LLC-MIB", "llcPortStatsOctetsOut"), ("CISCO-SNA-LLC-MIB", "llcPortStatsTESTCommandsIn"), ("CISCO-SNA-LLC-MIB", "llcPortStatsTESTResponsesOut"), ("CISCO-SNA-LLC-MIB", "llcPortStatsLocalBusies"), ("CISCO-SNA-LLC-MIB", "llcPortStatsUnknownSaps"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
llcCorePortGroup = llcCorePortGroup.setStatus('current')
llcCoreSapGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 10, 8, 3, 2, 2)).setObjects(("CISCO-SNA-LLC-MIB", "llcSapAdminMaxPDUOctets"), ("CISCO-SNA-LLC-MIB", "llcSapAdminMaxUnackedIPDUsSend"), ("CISCO-SNA-LLC-MIB", "llcSapAdminMaxUnackedIPDUsRcv"), ("CISCO-SNA-LLC-MIB", "llcSapAdminMaxRetransmits"), ("CISCO-SNA-LLC-MIB", "llcSapAdminAckTimer"), ("CISCO-SNA-LLC-MIB", "llcSapAdminPbitTimer"), ("CISCO-SNA-LLC-MIB", "llcSapAdminRejTimer"), ("CISCO-SNA-LLC-MIB", "llcSapAdminBusyTimer"), ("CISCO-SNA-LLC-MIB", "llcSapAdminInactTimer"), ("CISCO-SNA-LLC-MIB", "llcSapAdminDelayAckCount"), ("CISCO-SNA-LLC-MIB", "llcSapAdminDelayAckTimer"), ("CISCO-SNA-LLC-MIB", "llcSapAdminNw"), ("CISCO-SNA-LLC-MIB", "llcSapOperStatus"), ("CISCO-SNA-LLC-MIB", "llcSapOperNumCcs"), ("CISCO-SNA-LLC-MIB", "llcSapOperHiWaterNumCcs"), ("CISCO-SNA-LLC-MIB", "llcSapOperLlc2Support"), ("CISCO-SNA-LLC-MIB", "llcSapStatsLocalBusies"), ("CISCO-SNA-LLC-MIB", "llcSapStatsRemoteBusies"), ("CISCO-SNA-LLC-MIB", "llcSapStatsIFramesIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsIFramesOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsIOctetsIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsIOctetsOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsSFramesIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsSFramesOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsRetransmitsOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsREJsIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsREJsOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsWwCount"), ("CISCO-SNA-LLC-MIB", "llcSapStatsTESTCommandsIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsTESTCommandsOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsTESTResponsesIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsTESTResponsesOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsXIDCommandsIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsXIDCommandsOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsXIDResponsesIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsXIDResponsesOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsUIFramesIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsUIFramesOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsUIOctetsIn"), ("CISCO-SNA-LLC-MIB", "llcSapStatsUIOctetsOut"), ("CISCO-SNA-LLC-MIB", "llcSapStatsConnectOk"), ("CISCO-SNA-LLC-MIB", "llcSapStatsConnectFail"), ("CISCO-SNA-LLC-MIB", "llcSapStatsDisconnect"), ("CISCO-SNA-LLC-MIB", "llcSapStatsDisconnectFRMRSend"), ("CISCO-SNA-LLC-MIB", "llcSapStatsDisconnectFRMRRcv"), ("CISCO-SNA-LLC-MIB", "llcSapStatsDisconnectTimer"), ("CISCO-SNA-LLC-MIB", "llcSapStatsDMsInABM"), ("CISCO-SNA-LLC-MIB", "llcSapStatsSABMEsInABM"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
llcCoreSapGroup = llcCoreSapGroup.setStatus('current')
llcCoreCcGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 10, 8, 3, 2, 3)).setObjects(("CISCO-SNA-LLC-MIB", "llcCcAdminBounce"), ("CISCO-SNA-LLC-MIB", "llcCcAdminMaxPDUOctets"), ("CISCO-SNA-LLC-MIB", "llcCcAdminMaxUnackedIPDUsSend"), ("CISCO-SNA-LLC-MIB", "llcCcAdminMaxUnackedIPDUsRcv"), ("CISCO-SNA-LLC-MIB", "llcCcAdminMaxRetransmits"), ("CISCO-SNA-LLC-MIB", "llcCcAdminAckTimer"), ("CISCO-SNA-LLC-MIB", "llcCcAdminPbitTimer"), ("CISCO-SNA-LLC-MIB", "llcCcAdminRejTimer"), ("CISCO-SNA-LLC-MIB", "llcCcAdminBusyTimer"), ("CISCO-SNA-LLC-MIB", "llcCcAdminInactTimer"), ("CISCO-SNA-LLC-MIB", "llcCcAdminDelayAckCount"), ("CISCO-SNA-LLC-MIB", "llcCcAdminDelayAckTimer"), ("CISCO-SNA-LLC-MIB", "llcCcAdminNw"), ("CISCO-SNA-LLC-MIB", "llcCcAdminRowStatus"), ("CISCO-SNA-LLC-MIB", "llcCcOperState"), ("CISCO-SNA-LLC-MIB", "llcCcOperMaxIPDUOctetsSend"), ("CISCO-SNA-LLC-MIB", "llcCcOperMaxIPDUOctetsRcv"), ("CISCO-SNA-LLC-MIB", "llcCcOperMaxUnackedIPDUsSend"), ("CISCO-SNA-LLC-MIB", "llcCcOperMaxUnackedIPDUsRcv"), ("CISCO-SNA-LLC-MIB", "llcCcOperMaxRetransmits"), ("CISCO-SNA-LLC-MIB", "llcCcOperAckTimer"), ("CISCO-SNA-LLC-MIB", "llcCcOperPbitTimer"), ("CISCO-SNA-LLC-MIB", "llcCcOperRejTimer"), ("CISCO-SNA-LLC-MIB", "llcCcOperBusyTimer"), ("CISCO-SNA-LLC-MIB", "llcCcOperInactTimer"), ("CISCO-SNA-LLC-MIB", "llcCcOperDelayAckCount"), ("CISCO-SNA-LLC-MIB", "llcCcOperDelayAckTimer"), ("CISCO-SNA-LLC-MIB", "llcCcOperNw"), ("CISCO-SNA-LLC-MIB", "llcCcOperWw"), ("CISCO-SNA-LLC-MIB", "llcCcOperCreateTime"), ("CISCO-SNA-LLC-MIB", "llcCcOperLastModifyTime"), ("CISCO-SNA-LLC-MIB", "llcCcOperLastFailTime"), ("CISCO-SNA-LLC-MIB", "llcCcOperLastFailCause"), ("CISCO-SNA-LLC-MIB", "llcCcOperLastFailFRMRInfo"), ("CISCO-SNA-LLC-MIB", "llcCcOperLastWwCause"), ("CISCO-SNA-LLC-MIB", "llcCcStatsLocalBusies"), ("CISCO-SNA-LLC-MIB", "llcCcStatsRemoteBusies"), ("CISCO-SNA-LLC-MIB", "llcCcStatsIFramesIn"), ("CISCO-SNA-LLC-MIB", "llcCcStatsIFramesOut"), ("CISCO-SNA-LLC-MIB", "llcCcStatsIOctetsIn"), ("CISCO-SNA-LLC-MIB", "llcCcStatsIOctetsOut"), ("CISCO-SNA-LLC-MIB", "llcCcStatsSFramesIn"), ("CISCO-SNA-LLC-MIB", "llcCcStatsSFramesOut"), ("CISCO-SNA-LLC-MIB", "llcCcStatsRetransmitsOut"), ("CISCO-SNA-LLC-MIB", "llcCcStatsREJsIn"), ("CISCO-SNA-LLC-MIB", "llcCcStatsREJsOut"), ("CISCO-SNA-LLC-MIB", "llcCcStatsWwCount"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
llcCoreCcGroup = llcCoreCcGroup.setStatus('current')
mibBuilder.exportSymbols("CISCO-SNA-LLC-MIB", llcSapAdminEntry=llcSapAdminEntry, llcSapOperStatus=llcSapOperStatus, llcPortStatsOctetsOut=llcPortStatsOctetsOut, llcCcStatsWwCount=llcCcStatsWwCount, llcCcAdminRejTimer=llcCcAdminRejTimer, llcPortAdminMaxUnackedIPDUsSend=llcPortAdminMaxUnackedIPDUsSend, llcSapOperLlc2Support=llcSapOperLlc2Support, llcCcRSap=llcCcRSap, llcSapStatsDisconnectTimer=llcSapStatsDisconnectTimer, llcCcOperTable=llcCcOperTable, llcCcOperAckTimer=llcCcOperAckTimer, llcCcOperWw=llcCcOperWw, snaLlcMIBCompliances=snaLlcMIBCompliances, llcCcOperLastModifyTime=llcCcOperLastModifyTime, llcSapAdminDelayAckCount=llcSapAdminDelayAckCount, llcCcAdminNw=llcCcAdminNw, llcSapAdminMaxPDUOctets=llcSapAdminMaxPDUOctets, llcCoreCcGroup=llcCoreCcGroup, llcSapStatsTESTCommandsOut=llcSapStatsTESTCommandsOut, llcCcOperMaxUnackedIPDUsSend=llcCcOperMaxUnackedIPDUsSend, llcCcOperLastWwCause=llcCcOperLastWwCause, llcPortAdminTable=llcPortAdminTable, llcPortAdminMaxRetransmits=llcPortAdminMaxRetransmits, llcSapStatsDisconnectFRMRRcv=llcSapStatsDisconnectFRMRRcv, llcCcOperEntry=llcCcOperEntry, llcCcStatsREJsOut=llcCcStatsREJsOut, llcPortGroup=llcPortGroup, llcPortAdminMaxPDUOctets=llcPortAdminMaxPDUOctets, llcSapAdminBusyTimer=llcSapAdminBusyTimer, llcSapStatsXIDCommandsIn=llcSapStatsXIDCommandsIn, snaLlcMIBNotifications=snaLlcMIBNotifications, llcCcAdminRowStatus=llcCcAdminRowStatus, llcCcStatsTable=llcCcStatsTable, llcCcOperMaxIPDUOctetsRcv=llcCcOperMaxIPDUOctetsRcv, llcSapStatsIFramesOut=llcSapStatsIFramesOut, llcSapOperNumCcs=llcSapOperNumCcs, llcPortVirtualIndex=llcPortVirtualIndex, llcPortOperMacAddress=llcPortOperMacAddress, llcPortOperLastModifyTime=llcPortOperLastModifyTime, llcCcStatsIFramesOut=llcCcStatsIFramesOut, llcSapStatsDMsInABM=llcSapStatsDMsInABM, llcCcRMac=llcCcRMac, llcCcOperDelayAckCount=llcCcOperDelayAckCount, llcPortStatsEntry=llcPortStatsEntry, llcPortStatsPDUsOut=llcPortStatsPDUsOut, llcSapStatsLocalBusies=llcSapStatsLocalBusies, llcCcStatsLocalBusies=llcCcStatsLocalBusies, llcCcAdminMaxPDUOctets=llcCcAdminMaxPDUOctets, llcSapStatsDisconnectFRMRSend=llcSapStatsDisconnectFRMRSend, llcCcAdminBounce=llcCcAdminBounce, llcCcOperLastFailCause=llcCcOperLastFailCause, llcSapStatsSABMEsInABM=llcSapStatsSABMEsInABM, llcSapGroup=llcSapGroup, llcSapStatsSFramesOut=llcSapStatsSFramesOut, llcCcOperLastFailFRMRInfo=llcCcOperLastFailFRMRInfo, llcPortAdminMaxUnackedIPDUsRcv=llcPortAdminMaxUnackedIPDUsRcv, llcPortOperTable=llcPortOperTable, llcCcStatsREJsIn=llcCcStatsREJsIn, llcSapStatsConnectOk=llcSapStatsConnectOk, llcSapStatsUIOctetsIn=llcSapStatsUIOctetsIn, llcPortAdminPbitTimer=llcPortAdminPbitTimer, llcSapAdminMaxUnackedIPDUsSend=llcSapAdminMaxUnackedIPDUsSend, llcSapAdminNw=llcSapAdminNw, llcSapStatsTESTResponsesIn=llcSapStatsTESTResponsesIn, llcPortAdminName=llcPortAdminName, llcPortAdminEntry=llcPortAdminEntry, llcSapOperEntry=llcSapOperEntry, llcPortOperHiWaterNumSaps=llcPortOperHiWaterNumSaps, llcCcGroup=llcCcGroup, llcSapStatsRemoteBusies=llcSapStatsRemoteBusies, llcCcAdminTable=llcCcAdminTable, llcCcStatsSFramesOut=llcCcStatsSFramesOut, llcCcOperMaxRetransmits=llcCcOperMaxRetransmits, llcCcAdminPbitTimer=llcCcAdminPbitTimer, llcCcAdminAckTimer=llcCcAdminAckTimer, snaLlcMIBNotificationPrefix=snaLlcMIBNotificationPrefix, snaLlcMIBGroups=snaLlcMIBGroups, llcCcOperCreateTime=llcCcOperCreateTime, llcSapAdminPbitTimer=llcSapAdminPbitTimer, llcCcAdminMaxUnackedIPDUsSend=llcCcAdminMaxUnackedIPDUsSend, llcCcOperNw=llcCcOperNw, llcCcOperLastFailTime=llcCcOperLastFailTime, llcCcStatsRetransmitsOut=llcCcStatsRetransmitsOut, llcSapNumber=llcSapNumber, llcCcAdminEntry=llcCcAdminEntry, llcCcOperMaxIPDUOctetsSend=llcCcOperMaxIPDUOctetsSend, llcCoreSapGroup=llcCoreSapGroup, llcSapStatsREJsIn=llcSapStatsREJsIn, llcCcStatsIOctetsOut=llcCcStatsIOctetsOut, llcSapStatsUIOctetsOut=llcSapStatsUIOctetsOut, llcSapStatsIOctetsOut=llcSapStatsIOctetsOut, llcSapAdminAckTimer=llcSapAdminAckTimer, llcPortAdminInactTimer=llcPortAdminInactTimer, llcPortStatsTESTCommandsIn=llcPortStatsTESTCommandsIn, llcCcOperDelayAckTimer=llcCcOperDelayAckTimer, llcSapAdminRejTimer=llcSapAdminRejTimer, llcCcOperPbitTimer=llcCcOperPbitTimer, llcPortAdminMaxSaps=llcPortAdminMaxSaps, llcSapStatsXIDResponsesIn=llcSapStatsXIDResponsesIn, llcPortStatsLocalBusies=llcPortStatsLocalBusies, llcSapOperTable=llcSapOperTable, llcSapAdminMaxUnackedIPDUsRcv=llcSapAdminMaxUnackedIPDUsRcv, llcSapStatsIFramesIn=llcSapStatsIFramesIn, llcPortStatsPDUsIn=llcPortStatsPDUsIn, llcSapStatsUIFramesIn=llcSapStatsUIFramesIn, llcCcStatusChange=llcCcStatusChange, llcPortStatsTable=llcPortStatsTable, llcCcOperMaxUnackedIPDUsRcv=llcCcOperMaxUnackedIPDUsRcv, llcSapStatsIOctetsIn=llcSapStatsIOctetsIn, llcSapStatsWwCount=llcSapStatsWwCount, llcSapOperHiWaterNumCcs=llcSapOperHiWaterNumCcs, llcCcAdminDelayAckCount=llcCcAdminDelayAckCount, llcSapAdminTable=llcSapAdminTable, llcSapStatsTESTCommandsIn=llcSapStatsTESTCommandsIn, llcPortOperNumSaps=llcPortOperNumSaps, llcSapStatsXIDResponsesOut=llcSapStatsXIDResponsesOut, llcSapStatsTESTResponsesOut=llcSapStatsTESTResponsesOut, ciscoSnaLlcMIBObjects=ciscoSnaLlcMIBObjects, llcPortStatsUnknownSaps=llcPortStatsUnknownSaps, llcSapStatsSFramesIn=llcSapStatsSFramesIn, llcSapStatsTable=llcSapStatsTable, llcSapStatsREJsOut=llcSapStatsREJsOut, llcCcStatsIFramesIn=llcCcStatsIFramesIn, llcCoreCompliance=llcCoreCompliance, llcSapStatsRetransmitsOut=llcSapStatsRetransmitsOut, llcCcOperBusyTimer=llcCcOperBusyTimer, llcSapStatsXIDCommandsOut=llcSapStatsXIDCommandsOut, llcCcAdminMaxUnackedIPDUsRcv=llcCcAdminMaxUnackedIPDUsRcv, llcPortAdminRejTimer=llcPortAdminRejTimer, llcPortStatsOctetsIn=llcPortStatsOctetsIn, snaLlcMIBConformance=snaLlcMIBConformance, llcCcStatsSFramesIn=llcCcStatsSFramesIn, llcPortAdminAckTimer=llcPortAdminAckTimer, llcSapAdminDelayAckTimer=llcSapAdminDelayAckTimer, llcCcAdminBusyTimer=llcCcAdminBusyTimer, llcCcAdminInactTimer=llcCcAdminInactTimer, llcCcOperRejTimer=llcCcOperRejTimer, ciscoSnaLlcMIB=ciscoSnaLlcMIB, llcSapStatsEntry=llcSapStatsEntry, llcCcStatsEntry=llcCcStatsEntry, llcSapStatsConnectFail=llcSapStatsConnectFail, llcPortAdminDelayAckTimer=llcPortAdminDelayAckTimer, llcPortAdminNw=llcPortAdminNw, llcSapAdminInactTimer=llcSapAdminInactTimer, llcPortOperSimRim=llcPortOperSimRim, llcSapStatsDisconnect=llcSapStatsDisconnect, llcCcStatsIOctetsIn=llcCcStatsIOctetsIn, llcPortAdminDelayAckCount=llcPortAdminDelayAckCount, PYSNMP_MODULE_ID=ciscoSnaLlcMIB, llcPortAdminMaxCcs=llcPortAdminMaxCcs, llcPortStatsTESTResponsesOut=llcPortStatsTESTResponsesOut, llcCcOperState=llcCcOperState, llcCcOperInactTimer=llcCcOperInactTimer, llcSapStatsUIFramesOut=llcSapStatsUIFramesOut, llcSapAdminMaxRetransmits=llcSapAdminMaxRetransmits, llcCcAdminMaxRetransmits=llcCcAdminMaxRetransmits, llcCorePortGroup=llcCorePortGroup, llcCcStatsRemoteBusies=llcCcStatsRemoteBusies, llcCcAdminDelayAckTimer=llcCcAdminDelayAckTimer, llcPortOperEntry=llcPortOperEntry, llcPortAdminBusyTimer=llcPortAdminBusyTimer)
| (integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, constraints_intersection, value_size_constraint, single_value_constraint, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueSizeConstraint', 'SingleValueConstraint', 'ValueRangeConstraint')
(cisco_experiment,) = mibBuilder.importSymbols('CISCO-SMI', 'ciscoExperiment')
(if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex')
(notification_group, module_compliance, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance', 'ObjectGroup')
(unsigned32, counter64, mib_identifier, bits, iso, integer32, mib_scalar, mib_table, mib_table_row, mib_table_column, gauge32, object_identity, time_ticks, counter32, notification_type, ip_address, module_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'Unsigned32', 'Counter64', 'MibIdentifier', 'Bits', 'iso', 'Integer32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Gauge32', 'ObjectIdentity', 'TimeTicks', 'Counter32', 'NotificationType', 'IpAddress', 'ModuleIdentity')
(display_string, time_stamp, mac_address, textual_convention, row_status) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TimeStamp', 'MacAddress', 'TextualConvention', 'RowStatus')
cisco_sna_llc_mib = module_identity((1, 3, 6, 1, 4, 1, 9, 10, 8))
ciscoSnaLlcMIB.setRevisions(('1995-05-10 00:00',))
if mibBuilder.loadTexts:
ciscoSnaLlcMIB.setLastUpdated('9505100000Z')
if mibBuilder.loadTexts:
ciscoSnaLlcMIB.setOrganization('cisco IBM engineering Working Group')
cisco_sna_llc_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 1))
llc_port_group = mib_identifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1))
llc_sap_group = mib_identifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2))
llc_cc_group = mib_identifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3))
llc_port_admin_table = mib_table((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1))
if mibBuilder.loadTexts:
llcPortAdminTable.setStatus('current')
llc_port_admin_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'CISCO-SNA-LLC-MIB', 'llcPortVirtualIndex'))
if mibBuilder.loadTexts:
llcPortAdminEntry.setStatus('current')
llc_port_virtual_index = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535)))
if mibBuilder.loadTexts:
llcPortVirtualIndex.setStatus('current')
llc_port_admin_name = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcPortAdminName.setStatus('current')
llc_port_admin_max_saps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 3), gauge32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcPortAdminMaxSaps.setStatus('current')
llc_port_admin_max_ccs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 4), gauge32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcPortAdminMaxCcs.setStatus('current')
llc_port_admin_max_pdu_octets = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 5), integer32()).setUnits('octets').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcPortAdminMaxPDUOctets.setStatus('current')
llc_port_admin_max_unacked_ipd_us_send = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 127)).clone(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcPortAdminMaxUnackedIPDUsSend.setStatus('current')
llc_port_admin_max_unacked_ipd_us_rcv = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 127)).clone(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcPortAdminMaxUnackedIPDUsRcv.setStatus('current')
llc_port_admin_max_retransmits = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 8), integer32().clone(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcPortAdminMaxRetransmits.setStatus('current')
llc_port_admin_ack_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 9), time_ticks().clone(300)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcPortAdminAckTimer.setStatus('current')
llc_port_admin_pbit_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 10), time_ticks().clone(300)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcPortAdminPbitTimer.setStatus('current')
llc_port_admin_rej_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 11), time_ticks().clone(300)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcPortAdminRejTimer.setStatus('current')
llc_port_admin_busy_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 12), time_ticks().clone(30000)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcPortAdminBusyTimer.setStatus('current')
llc_port_admin_inact_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 13), time_ticks().clone(3000)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcPortAdminInactTimer.setStatus('current')
llc_port_admin_delay_ack_count = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 14), integer32().clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcPortAdminDelayAckCount.setStatus('current')
llc_port_admin_delay_ack_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 15), time_ticks().clone(100)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcPortAdminDelayAckTimer.setStatus('current')
llc_port_admin_nw = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 1, 1, 16), integer32().clone(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcPortAdminNw.setStatus('current')
llc_port_oper_table = mib_table((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2))
if mibBuilder.loadTexts:
llcPortOperTable.setStatus('current')
llc_port_oper_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'CISCO-SNA-LLC-MIB', 'llcPortVirtualIndex'))
if mibBuilder.loadTexts:
llcPortOperEntry.setStatus('current')
llc_port_oper_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcPortOperMacAddress.setStatus('current')
llc_port_oper_num_saps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2, 1, 2), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcPortOperNumSaps.setStatus('current')
llc_port_oper_hi_water_num_saps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2, 1, 3), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcPortOperHiWaterNumSaps.setStatus('current')
llc_port_oper_sim_rim = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2))).clone('no')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcPortOperSimRim.setStatus('current')
llc_port_oper_last_modify_time = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 2, 1, 5), time_stamp()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcPortOperLastModifyTime.setStatus('current')
llc_port_stats_table = mib_table((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3))
if mibBuilder.loadTexts:
llcPortStatsTable.setStatus('current')
llc_port_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'CISCO-SNA-LLC-MIB', 'llcPortVirtualIndex'))
if mibBuilder.loadTexts:
llcPortStatsEntry.setStatus('current')
llc_port_stats_pd_us_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcPortStatsPDUsIn.setStatus('current')
llc_port_stats_pd_us_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcPortStatsPDUsOut.setStatus('current')
llc_port_stats_octets_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 3), counter32()).setUnits('octets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcPortStatsOctetsIn.setStatus('current')
llc_port_stats_octets_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 4), counter32()).setUnits('octets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcPortStatsOctetsOut.setStatus('current')
llc_port_stats_test_commands_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcPortStatsTESTCommandsIn.setStatus('current')
llc_port_stats_test_responses_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcPortStatsTESTResponsesOut.setStatus('current')
llc_port_stats_local_busies = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcPortStatsLocalBusies.setStatus('current')
llc_port_stats_unknown_saps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 1, 3, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcPortStatsUnknownSaps.setStatus('current')
llc_sap_admin_table = mib_table((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1))
if mibBuilder.loadTexts:
llcSapAdminTable.setStatus('current')
llc_sap_admin_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'CISCO-SNA-LLC-MIB', 'llcPortVirtualIndex'), (0, 'CISCO-SNA-LLC-MIB', 'llcSapNumber'))
if mibBuilder.loadTexts:
llcSapAdminEntry.setStatus('current')
llc_sap_number = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 255)))
if mibBuilder.loadTexts:
llcSapNumber.setStatus('current')
llc_sap_admin_max_pdu_octets = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 2), integer32()).setUnits('octets').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcSapAdminMaxPDUOctets.setStatus('current')
llc_sap_admin_max_unacked_ipd_us_send = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 127))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcSapAdminMaxUnackedIPDUsSend.setStatus('current')
llc_sap_admin_max_unacked_ipd_us_rcv = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 127))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcSapAdminMaxUnackedIPDUsRcv.setStatus('current')
llc_sap_admin_max_retransmits = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcSapAdminMaxRetransmits.setStatus('current')
llc_sap_admin_ack_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 6), time_ticks()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcSapAdminAckTimer.setStatus('current')
llc_sap_admin_pbit_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 7), time_ticks()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcSapAdminPbitTimer.setStatus('current')
llc_sap_admin_rej_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 8), time_ticks()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcSapAdminRejTimer.setStatus('current')
llc_sap_admin_busy_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 9), time_ticks()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcSapAdminBusyTimer.setStatus('current')
llc_sap_admin_inact_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 10), time_ticks()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcSapAdminInactTimer.setStatus('current')
llc_sap_admin_delay_ack_count = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcSapAdminDelayAckCount.setStatus('current')
llc_sap_admin_delay_ack_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 12), time_ticks()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcSapAdminDelayAckTimer.setStatus('current')
llc_sap_admin_nw = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 1, 1, 13), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
llcSapAdminNw.setStatus('current')
llc_sap_oper_table = mib_table((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 2))
if mibBuilder.loadTexts:
llcSapOperTable.setStatus('current')
llc_sap_oper_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 2, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'CISCO-SNA-LLC-MIB', 'llcPortVirtualIndex'), (0, 'CISCO-SNA-LLC-MIB', 'llcSapNumber'))
if mibBuilder.loadTexts:
llcSapOperEntry.setStatus('current')
llc_sap_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('inactive', 1), ('active', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapOperStatus.setStatus('current')
llc_sap_oper_num_ccs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapOperNumCcs.setStatus('current')
llc_sap_oper_hi_water_num_ccs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 2, 1, 3), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapOperHiWaterNumCcs.setStatus('current')
llc_sap_oper_llc2_support = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapOperLlc2Support.setStatus('current')
llc_sap_stats_table = mib_table((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3))
if mibBuilder.loadTexts:
llcSapStatsTable.setStatus('current')
llc_sap_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'CISCO-SNA-LLC-MIB', 'llcPortVirtualIndex'), (0, 'CISCO-SNA-LLC-MIB', 'llcSapNumber'))
if mibBuilder.loadTexts:
llcSapStatsEntry.setStatus('current')
llc_sap_stats_local_busies = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsLocalBusies.setStatus('current')
llc_sap_stats_remote_busies = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsRemoteBusies.setStatus('current')
llc_sap_stats_i_frames_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsIFramesIn.setStatus('current')
llc_sap_stats_i_frames_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsIFramesOut.setStatus('current')
llc_sap_stats_i_octets_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsIOctetsIn.setStatus('current')
llc_sap_stats_i_octets_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsIOctetsOut.setStatus('current')
llc_sap_stats_s_frames_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsSFramesIn.setStatus('current')
llc_sap_stats_s_frames_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsSFramesOut.setStatus('current')
llc_sap_stats_retransmits_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsRetransmitsOut.setStatus('current')
llc_sap_stats_re_js_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsREJsIn.setStatus('current')
llc_sap_stats_re_js_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsREJsOut.setStatus('current')
llc_sap_stats_ww_count = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsWwCount.setStatus('current')
llc_sap_stats_test_commands_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsTESTCommandsIn.setStatus('current')
llc_sap_stats_test_commands_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsTESTCommandsOut.setStatus('current')
llc_sap_stats_test_responses_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsTESTResponsesIn.setStatus('current')
llc_sap_stats_test_responses_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsTESTResponsesOut.setStatus('current')
llc_sap_stats_xid_commands_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsXIDCommandsIn.setStatus('current')
llc_sap_stats_xid_commands_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsXIDCommandsOut.setStatus('current')
llc_sap_stats_xid_responses_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsXIDResponsesIn.setStatus('current')
llc_sap_stats_xid_responses_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsXIDResponsesOut.setStatus('current')
llc_sap_stats_ui_frames_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsUIFramesIn.setStatus('current')
llc_sap_stats_ui_frames_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsUIFramesOut.setStatus('current')
llc_sap_stats_ui_octets_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsUIOctetsIn.setStatus('current')
llc_sap_stats_ui_octets_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsUIOctetsOut.setStatus('current')
llc_sap_stats_connect_ok = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 25), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsConnectOk.setStatus('current')
llc_sap_stats_connect_fail = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 26), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsConnectFail.setStatus('current')
llc_sap_stats_disconnect = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 27), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsDisconnect.setStatus('current')
llc_sap_stats_disconnect_frmr_send = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 28), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsDisconnectFRMRSend.setStatus('current')
llc_sap_stats_disconnect_frmr_rcv = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 29), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsDisconnectFRMRRcv.setStatus('current')
llc_sap_stats_disconnect_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 30), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsDisconnectTimer.setStatus('current')
llc_sap_stats_d_ms_in_abm = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 31), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsDMsInABM.setStatus('current')
llc_sap_stats_sabm_es_in_abm = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 2, 3, 1, 32), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcSapStatsSABMEsInABM.setStatus('current')
llc_cc_admin_table = mib_table((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1))
if mibBuilder.loadTexts:
llcCcAdminTable.setStatus('current')
llc_cc_admin_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'CISCO-SNA-LLC-MIB', 'llcPortVirtualIndex'), (0, 'CISCO-SNA-LLC-MIB', 'llcSapNumber'), (0, 'CISCO-SNA-LLC-MIB', 'llcCcRMac'), (0, 'CISCO-SNA-LLC-MIB', 'llcCcRSap'))
if mibBuilder.loadTexts:
llcCcAdminEntry.setStatus('current')
llc_cc_r_mac = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 1), mac_address())
if mibBuilder.loadTexts:
llcCcRMac.setStatus('current')
llc_cc_r_sap = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 255)))
if mibBuilder.loadTexts:
llcCcRSap.setStatus('current')
llc_cc_admin_bounce = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2))).clone('no')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
llcCcAdminBounce.setStatus('current')
llc_cc_admin_max_pdu_octets = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 4), integer32()).setUnits('octets').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
llcCcAdminMaxPDUOctets.setStatus('current')
llc_cc_admin_max_unacked_ipd_us_send = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 127))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
llcCcAdminMaxUnackedIPDUsSend.setStatus('current')
llc_cc_admin_max_unacked_ipd_us_rcv = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 127))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
llcCcAdminMaxUnackedIPDUsRcv.setStatus('current')
llc_cc_admin_max_retransmits = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 7), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
llcCcAdminMaxRetransmits.setStatus('current')
llc_cc_admin_ack_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 8), time_ticks()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
llcCcAdminAckTimer.setStatus('current')
llc_cc_admin_pbit_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 9), time_ticks()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
llcCcAdminPbitTimer.setStatus('current')
llc_cc_admin_rej_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 10), time_ticks()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
llcCcAdminRejTimer.setStatus('current')
llc_cc_admin_busy_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 11), time_ticks()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
llcCcAdminBusyTimer.setStatus('current')
llc_cc_admin_inact_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 12), time_ticks()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
llcCcAdminInactTimer.setStatus('current')
llc_cc_admin_delay_ack_count = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 13), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
llcCcAdminDelayAckCount.setStatus('current')
llc_cc_admin_delay_ack_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 14), time_ticks()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
llcCcAdminDelayAckTimer.setStatus('current')
llc_cc_admin_nw = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 15), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
llcCcAdminNw.setStatus('current')
llc_cc_admin_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 1, 1, 16), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
llcCcAdminRowStatus.setStatus('current')
llc_cc_oper_table = mib_table((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2))
if mibBuilder.loadTexts:
llcCcOperTable.setStatus('current')
llc_cc_oper_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'CISCO-SNA-LLC-MIB', 'llcPortVirtualIndex'), (0, 'CISCO-SNA-LLC-MIB', 'llcSapNumber'), (0, 'CISCO-SNA-LLC-MIB', 'llcCcRMac'), (0, 'CISCO-SNA-LLC-MIB', 'llcCcRSap'))
if mibBuilder.loadTexts:
llcCcOperEntry.setStatus('current')
llc_cc_oper_state = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14))).clone(namedValues=named_values(('aDM', 1), ('setup', 2), ('normal', 3), ('busy', 4), ('reject', 5), ('await', 6), ('awaitBusy', 7), ('awaitReject', 8), ('dConn', 9), ('reset', 10), ('error', 11), ('conn', 12), ('resetCheck', 13), ('resetWait', 14)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperState.setStatus('current')
llc_cc_oper_max_ipdu_octets_send = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperMaxIPDUOctetsSend.setStatus('current')
llc_cc_oper_max_ipdu_octets_rcv = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperMaxIPDUOctetsRcv.setStatus('current')
llc_cc_oper_max_unacked_ipd_us_send = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 127))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperMaxUnackedIPDUsSend.setStatus('current')
llc_cc_oper_max_unacked_ipd_us_rcv = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 127))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperMaxUnackedIPDUsRcv.setStatus('current')
llc_cc_oper_max_retransmits = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperMaxRetransmits.setStatus('current')
llc_cc_oper_ack_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 7), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperAckTimer.setStatus('current')
llc_cc_oper_pbit_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 8), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperPbitTimer.setStatus('current')
llc_cc_oper_rej_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 9), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperRejTimer.setStatus('current')
llc_cc_oper_busy_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 10), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperBusyTimer.setStatus('current')
llc_cc_oper_inact_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 11), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperInactTimer.setStatus('current')
llc_cc_oper_delay_ack_count = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperDelayAckCount.setStatus('current')
llc_cc_oper_delay_ack_timer = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 13), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperDelayAckTimer.setStatus('current')
llc_cc_oper_nw = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperNw.setStatus('current')
llc_cc_oper_ww = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(1, 127))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperWw.setStatus('current')
llc_cc_oper_create_time = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 16), time_stamp()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperCreateTime.setStatus('current')
llc_cc_oper_last_modify_time = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 17), time_stamp()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperLastModifyTime.setStatus('current')
llc_cc_oper_last_fail_time = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 18), time_stamp()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperLastFailTime.setStatus('current')
llc_cc_oper_last_fail_cause = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('undefined', 1), ('rxFRMR', 2), ('txFRMR', 3), ('discReceived', 4), ('discSent', 5), ('retriesExpired', 6), ('forcedShutdown', 7))).clone('undefined')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperLastFailCause.setStatus('current')
llc_cc_oper_last_fail_frmr_info = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 20), octet_string().subtype(subtypeSpec=value_size_constraint(3, 3)).setFixedLength(3)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperLastFailFRMRInfo.setStatus('current')
llc_cc_oper_last_ww_cause = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 2, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('neverInvoked', 1), ('lostData', 2), ('macLayerCongestion', 3), ('other', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcOperLastWwCause.setStatus('current')
llc_cc_stats_table = mib_table((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3))
if mibBuilder.loadTexts:
llcCcStatsTable.setStatus('current')
llc_cc_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'CISCO-SNA-LLC-MIB', 'llcPortVirtualIndex'), (0, 'CISCO-SNA-LLC-MIB', 'llcSapNumber'), (0, 'CISCO-SNA-LLC-MIB', 'llcCcRMac'), (0, 'CISCO-SNA-LLC-MIB', 'llcCcRSap'))
if mibBuilder.loadTexts:
llcCcStatsEntry.setStatus('current')
llc_cc_stats_local_busies = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcStatsLocalBusies.setStatus('current')
llc_cc_stats_remote_busies = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcStatsRemoteBusies.setStatus('current')
llc_cc_stats_i_frames_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcStatsIFramesIn.setStatus('current')
llc_cc_stats_i_frames_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcStatsIFramesOut.setStatus('current')
llc_cc_stats_i_octets_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcStatsIOctetsIn.setStatus('current')
llc_cc_stats_i_octets_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcStatsIOctetsOut.setStatus('current')
llc_cc_stats_s_frames_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcStatsSFramesIn.setStatus('current')
llc_cc_stats_s_frames_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcStatsSFramesOut.setStatus('current')
llc_cc_stats_retransmits_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcStatsRetransmitsOut.setStatus('current')
llc_cc_stats_re_js_in = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcStatsREJsIn.setStatus('current')
llc_cc_stats_re_js_out = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcStatsREJsOut.setStatus('current')
llc_cc_stats_ww_count = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 8, 1, 3, 3, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
llcCcStatsWwCount.setStatus('current')
sna_llc_mib_notification_prefix = mib_identifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 2))
sna_llc_mib_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 2, 0))
llc_cc_status_change = notification_type((1, 3, 6, 1, 4, 1, 9, 10, 8, 2, 0, 1)).setObjects(('CISCO-SNA-LLC-MIB', 'llcCcOperState'), ('CISCO-SNA-LLC-MIB', 'llcCcOperLastFailTime'), ('CISCO-SNA-LLC-MIB', 'llcCcOperLastFailCause'), ('CISCO-SNA-LLC-MIB', 'llcCcOperLastFailFRMRInfo'))
if mibBuilder.loadTexts:
llcCcStatusChange.setStatus('current')
sna_llc_mib_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 3))
sna_llc_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 3, 1))
sna_llc_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 9, 10, 8, 3, 2))
llc_core_compliance = module_compliance((1, 3, 6, 1, 4, 1, 9, 10, 8, 3, 1, 1)).setObjects(('CISCO-SNA-LLC-MIB', 'llcCorePortGroup'), ('CISCO-SNA-LLC-MIB', 'llcCoreSapGroup'), ('CISCO-SNA-LLC-MIB', 'llcCoreCcGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
llc_core_compliance = llcCoreCompliance.setStatus('current')
llc_core_port_group = object_group((1, 3, 6, 1, 4, 1, 9, 10, 8, 3, 2, 1)).setObjects(('CISCO-SNA-LLC-MIB', 'llcPortAdminName'), ('CISCO-SNA-LLC-MIB', 'llcPortAdminMaxSaps'), ('CISCO-SNA-LLC-MIB', 'llcPortAdminMaxCcs'), ('CISCO-SNA-LLC-MIB', 'llcPortAdminMaxPDUOctets'), ('CISCO-SNA-LLC-MIB', 'llcPortAdminMaxUnackedIPDUsSend'), ('CISCO-SNA-LLC-MIB', 'llcPortAdminMaxUnackedIPDUsRcv'), ('CISCO-SNA-LLC-MIB', 'llcPortAdminMaxRetransmits'), ('CISCO-SNA-LLC-MIB', 'llcPortAdminAckTimer'), ('CISCO-SNA-LLC-MIB', 'llcPortAdminPbitTimer'), ('CISCO-SNA-LLC-MIB', 'llcPortAdminRejTimer'), ('CISCO-SNA-LLC-MIB', 'llcPortAdminBusyTimer'), ('CISCO-SNA-LLC-MIB', 'llcPortAdminInactTimer'), ('CISCO-SNA-LLC-MIB', 'llcPortAdminDelayAckCount'), ('CISCO-SNA-LLC-MIB', 'llcPortAdminDelayAckTimer'), ('CISCO-SNA-LLC-MIB', 'llcPortAdminNw'), ('CISCO-SNA-LLC-MIB', 'llcPortOperMacAddress'), ('CISCO-SNA-LLC-MIB', 'llcPortOperNumSaps'), ('CISCO-SNA-LLC-MIB', 'llcPortOperHiWaterNumSaps'), ('CISCO-SNA-LLC-MIB', 'llcPortOperSimRim'), ('CISCO-SNA-LLC-MIB', 'llcPortOperLastModifyTime'), ('CISCO-SNA-LLC-MIB', 'llcPortStatsPDUsIn'), ('CISCO-SNA-LLC-MIB', 'llcPortStatsPDUsOut'), ('CISCO-SNA-LLC-MIB', 'llcPortStatsOctetsIn'), ('CISCO-SNA-LLC-MIB', 'llcPortStatsOctetsOut'), ('CISCO-SNA-LLC-MIB', 'llcPortStatsTESTCommandsIn'), ('CISCO-SNA-LLC-MIB', 'llcPortStatsTESTResponsesOut'), ('CISCO-SNA-LLC-MIB', 'llcPortStatsLocalBusies'), ('CISCO-SNA-LLC-MIB', 'llcPortStatsUnknownSaps'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
llc_core_port_group = llcCorePortGroup.setStatus('current')
llc_core_sap_group = object_group((1, 3, 6, 1, 4, 1, 9, 10, 8, 3, 2, 2)).setObjects(('CISCO-SNA-LLC-MIB', 'llcSapAdminMaxPDUOctets'), ('CISCO-SNA-LLC-MIB', 'llcSapAdminMaxUnackedIPDUsSend'), ('CISCO-SNA-LLC-MIB', 'llcSapAdminMaxUnackedIPDUsRcv'), ('CISCO-SNA-LLC-MIB', 'llcSapAdminMaxRetransmits'), ('CISCO-SNA-LLC-MIB', 'llcSapAdminAckTimer'), ('CISCO-SNA-LLC-MIB', 'llcSapAdminPbitTimer'), ('CISCO-SNA-LLC-MIB', 'llcSapAdminRejTimer'), ('CISCO-SNA-LLC-MIB', 'llcSapAdminBusyTimer'), ('CISCO-SNA-LLC-MIB', 'llcSapAdminInactTimer'), ('CISCO-SNA-LLC-MIB', 'llcSapAdminDelayAckCount'), ('CISCO-SNA-LLC-MIB', 'llcSapAdminDelayAckTimer'), ('CISCO-SNA-LLC-MIB', 'llcSapAdminNw'), ('CISCO-SNA-LLC-MIB', 'llcSapOperStatus'), ('CISCO-SNA-LLC-MIB', 'llcSapOperNumCcs'), ('CISCO-SNA-LLC-MIB', 'llcSapOperHiWaterNumCcs'), ('CISCO-SNA-LLC-MIB', 'llcSapOperLlc2Support'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsLocalBusies'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsRemoteBusies'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsIFramesIn'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsIFramesOut'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsIOctetsIn'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsIOctetsOut'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsSFramesIn'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsSFramesOut'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsRetransmitsOut'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsREJsIn'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsREJsOut'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsWwCount'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsTESTCommandsIn'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsTESTCommandsOut'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsTESTResponsesIn'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsTESTResponsesOut'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsXIDCommandsIn'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsXIDCommandsOut'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsXIDResponsesIn'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsXIDResponsesOut'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsUIFramesIn'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsUIFramesOut'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsUIOctetsIn'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsUIOctetsOut'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsConnectOk'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsConnectFail'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsDisconnect'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsDisconnectFRMRSend'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsDisconnectFRMRRcv'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsDisconnectTimer'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsDMsInABM'), ('CISCO-SNA-LLC-MIB', 'llcSapStatsSABMEsInABM'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
llc_core_sap_group = llcCoreSapGroup.setStatus('current')
llc_core_cc_group = object_group((1, 3, 6, 1, 4, 1, 9, 10, 8, 3, 2, 3)).setObjects(('CISCO-SNA-LLC-MIB', 'llcCcAdminBounce'), ('CISCO-SNA-LLC-MIB', 'llcCcAdminMaxPDUOctets'), ('CISCO-SNA-LLC-MIB', 'llcCcAdminMaxUnackedIPDUsSend'), ('CISCO-SNA-LLC-MIB', 'llcCcAdminMaxUnackedIPDUsRcv'), ('CISCO-SNA-LLC-MIB', 'llcCcAdminMaxRetransmits'), ('CISCO-SNA-LLC-MIB', 'llcCcAdminAckTimer'), ('CISCO-SNA-LLC-MIB', 'llcCcAdminPbitTimer'), ('CISCO-SNA-LLC-MIB', 'llcCcAdminRejTimer'), ('CISCO-SNA-LLC-MIB', 'llcCcAdminBusyTimer'), ('CISCO-SNA-LLC-MIB', 'llcCcAdminInactTimer'), ('CISCO-SNA-LLC-MIB', 'llcCcAdminDelayAckCount'), ('CISCO-SNA-LLC-MIB', 'llcCcAdminDelayAckTimer'), ('CISCO-SNA-LLC-MIB', 'llcCcAdminNw'), ('CISCO-SNA-LLC-MIB', 'llcCcAdminRowStatus'), ('CISCO-SNA-LLC-MIB', 'llcCcOperState'), ('CISCO-SNA-LLC-MIB', 'llcCcOperMaxIPDUOctetsSend'), ('CISCO-SNA-LLC-MIB', 'llcCcOperMaxIPDUOctetsRcv'), ('CISCO-SNA-LLC-MIB', 'llcCcOperMaxUnackedIPDUsSend'), ('CISCO-SNA-LLC-MIB', 'llcCcOperMaxUnackedIPDUsRcv'), ('CISCO-SNA-LLC-MIB', 'llcCcOperMaxRetransmits'), ('CISCO-SNA-LLC-MIB', 'llcCcOperAckTimer'), ('CISCO-SNA-LLC-MIB', 'llcCcOperPbitTimer'), ('CISCO-SNA-LLC-MIB', 'llcCcOperRejTimer'), ('CISCO-SNA-LLC-MIB', 'llcCcOperBusyTimer'), ('CISCO-SNA-LLC-MIB', 'llcCcOperInactTimer'), ('CISCO-SNA-LLC-MIB', 'llcCcOperDelayAckCount'), ('CISCO-SNA-LLC-MIB', 'llcCcOperDelayAckTimer'), ('CISCO-SNA-LLC-MIB', 'llcCcOperNw'), ('CISCO-SNA-LLC-MIB', 'llcCcOperWw'), ('CISCO-SNA-LLC-MIB', 'llcCcOperCreateTime'), ('CISCO-SNA-LLC-MIB', 'llcCcOperLastModifyTime'), ('CISCO-SNA-LLC-MIB', 'llcCcOperLastFailTime'), ('CISCO-SNA-LLC-MIB', 'llcCcOperLastFailCause'), ('CISCO-SNA-LLC-MIB', 'llcCcOperLastFailFRMRInfo'), ('CISCO-SNA-LLC-MIB', 'llcCcOperLastWwCause'), ('CISCO-SNA-LLC-MIB', 'llcCcStatsLocalBusies'), ('CISCO-SNA-LLC-MIB', 'llcCcStatsRemoteBusies'), ('CISCO-SNA-LLC-MIB', 'llcCcStatsIFramesIn'), ('CISCO-SNA-LLC-MIB', 'llcCcStatsIFramesOut'), ('CISCO-SNA-LLC-MIB', 'llcCcStatsIOctetsIn'), ('CISCO-SNA-LLC-MIB', 'llcCcStatsIOctetsOut'), ('CISCO-SNA-LLC-MIB', 'llcCcStatsSFramesIn'), ('CISCO-SNA-LLC-MIB', 'llcCcStatsSFramesOut'), ('CISCO-SNA-LLC-MIB', 'llcCcStatsRetransmitsOut'), ('CISCO-SNA-LLC-MIB', 'llcCcStatsREJsIn'), ('CISCO-SNA-LLC-MIB', 'llcCcStatsREJsOut'), ('CISCO-SNA-LLC-MIB', 'llcCcStatsWwCount'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
llc_core_cc_group = llcCoreCcGroup.setStatus('current')
mibBuilder.exportSymbols('CISCO-SNA-LLC-MIB', llcSapAdminEntry=llcSapAdminEntry, llcSapOperStatus=llcSapOperStatus, llcPortStatsOctetsOut=llcPortStatsOctetsOut, llcCcStatsWwCount=llcCcStatsWwCount, llcCcAdminRejTimer=llcCcAdminRejTimer, llcPortAdminMaxUnackedIPDUsSend=llcPortAdminMaxUnackedIPDUsSend, llcSapOperLlc2Support=llcSapOperLlc2Support, llcCcRSap=llcCcRSap, llcSapStatsDisconnectTimer=llcSapStatsDisconnectTimer, llcCcOperTable=llcCcOperTable, llcCcOperAckTimer=llcCcOperAckTimer, llcCcOperWw=llcCcOperWw, snaLlcMIBCompliances=snaLlcMIBCompliances, llcCcOperLastModifyTime=llcCcOperLastModifyTime, llcSapAdminDelayAckCount=llcSapAdminDelayAckCount, llcCcAdminNw=llcCcAdminNw, llcSapAdminMaxPDUOctets=llcSapAdminMaxPDUOctets, llcCoreCcGroup=llcCoreCcGroup, llcSapStatsTESTCommandsOut=llcSapStatsTESTCommandsOut, llcCcOperMaxUnackedIPDUsSend=llcCcOperMaxUnackedIPDUsSend, llcCcOperLastWwCause=llcCcOperLastWwCause, llcPortAdminTable=llcPortAdminTable, llcPortAdminMaxRetransmits=llcPortAdminMaxRetransmits, llcSapStatsDisconnectFRMRRcv=llcSapStatsDisconnectFRMRRcv, llcCcOperEntry=llcCcOperEntry, llcCcStatsREJsOut=llcCcStatsREJsOut, llcPortGroup=llcPortGroup, llcPortAdminMaxPDUOctets=llcPortAdminMaxPDUOctets, llcSapAdminBusyTimer=llcSapAdminBusyTimer, llcSapStatsXIDCommandsIn=llcSapStatsXIDCommandsIn, snaLlcMIBNotifications=snaLlcMIBNotifications, llcCcAdminRowStatus=llcCcAdminRowStatus, llcCcStatsTable=llcCcStatsTable, llcCcOperMaxIPDUOctetsRcv=llcCcOperMaxIPDUOctetsRcv, llcSapStatsIFramesOut=llcSapStatsIFramesOut, llcSapOperNumCcs=llcSapOperNumCcs, llcPortVirtualIndex=llcPortVirtualIndex, llcPortOperMacAddress=llcPortOperMacAddress, llcPortOperLastModifyTime=llcPortOperLastModifyTime, llcCcStatsIFramesOut=llcCcStatsIFramesOut, llcSapStatsDMsInABM=llcSapStatsDMsInABM, llcCcRMac=llcCcRMac, llcCcOperDelayAckCount=llcCcOperDelayAckCount, llcPortStatsEntry=llcPortStatsEntry, llcPortStatsPDUsOut=llcPortStatsPDUsOut, llcSapStatsLocalBusies=llcSapStatsLocalBusies, llcCcStatsLocalBusies=llcCcStatsLocalBusies, llcCcAdminMaxPDUOctets=llcCcAdminMaxPDUOctets, llcSapStatsDisconnectFRMRSend=llcSapStatsDisconnectFRMRSend, llcCcAdminBounce=llcCcAdminBounce, llcCcOperLastFailCause=llcCcOperLastFailCause, llcSapStatsSABMEsInABM=llcSapStatsSABMEsInABM, llcSapGroup=llcSapGroup, llcSapStatsSFramesOut=llcSapStatsSFramesOut, llcCcOperLastFailFRMRInfo=llcCcOperLastFailFRMRInfo, llcPortAdminMaxUnackedIPDUsRcv=llcPortAdminMaxUnackedIPDUsRcv, llcPortOperTable=llcPortOperTable, llcCcStatsREJsIn=llcCcStatsREJsIn, llcSapStatsConnectOk=llcSapStatsConnectOk, llcSapStatsUIOctetsIn=llcSapStatsUIOctetsIn, llcPortAdminPbitTimer=llcPortAdminPbitTimer, llcSapAdminMaxUnackedIPDUsSend=llcSapAdminMaxUnackedIPDUsSend, llcSapAdminNw=llcSapAdminNw, llcSapStatsTESTResponsesIn=llcSapStatsTESTResponsesIn, llcPortAdminName=llcPortAdminName, llcPortAdminEntry=llcPortAdminEntry, llcSapOperEntry=llcSapOperEntry, llcPortOperHiWaterNumSaps=llcPortOperHiWaterNumSaps, llcCcGroup=llcCcGroup, llcSapStatsRemoteBusies=llcSapStatsRemoteBusies, llcCcAdminTable=llcCcAdminTable, llcCcStatsSFramesOut=llcCcStatsSFramesOut, llcCcOperMaxRetransmits=llcCcOperMaxRetransmits, llcCcAdminPbitTimer=llcCcAdminPbitTimer, llcCcAdminAckTimer=llcCcAdminAckTimer, snaLlcMIBNotificationPrefix=snaLlcMIBNotificationPrefix, snaLlcMIBGroups=snaLlcMIBGroups, llcCcOperCreateTime=llcCcOperCreateTime, llcSapAdminPbitTimer=llcSapAdminPbitTimer, llcCcAdminMaxUnackedIPDUsSend=llcCcAdminMaxUnackedIPDUsSend, llcCcOperNw=llcCcOperNw, llcCcOperLastFailTime=llcCcOperLastFailTime, llcCcStatsRetransmitsOut=llcCcStatsRetransmitsOut, llcSapNumber=llcSapNumber, llcCcAdminEntry=llcCcAdminEntry, llcCcOperMaxIPDUOctetsSend=llcCcOperMaxIPDUOctetsSend, llcCoreSapGroup=llcCoreSapGroup, llcSapStatsREJsIn=llcSapStatsREJsIn, llcCcStatsIOctetsOut=llcCcStatsIOctetsOut, llcSapStatsUIOctetsOut=llcSapStatsUIOctetsOut, llcSapStatsIOctetsOut=llcSapStatsIOctetsOut, llcSapAdminAckTimer=llcSapAdminAckTimer, llcPortAdminInactTimer=llcPortAdminInactTimer, llcPortStatsTESTCommandsIn=llcPortStatsTESTCommandsIn, llcCcOperDelayAckTimer=llcCcOperDelayAckTimer, llcSapAdminRejTimer=llcSapAdminRejTimer, llcCcOperPbitTimer=llcCcOperPbitTimer, llcPortAdminMaxSaps=llcPortAdminMaxSaps, llcSapStatsXIDResponsesIn=llcSapStatsXIDResponsesIn, llcPortStatsLocalBusies=llcPortStatsLocalBusies, llcSapOperTable=llcSapOperTable, llcSapAdminMaxUnackedIPDUsRcv=llcSapAdminMaxUnackedIPDUsRcv, llcSapStatsIFramesIn=llcSapStatsIFramesIn, llcPortStatsPDUsIn=llcPortStatsPDUsIn, llcSapStatsUIFramesIn=llcSapStatsUIFramesIn, llcCcStatusChange=llcCcStatusChange, llcPortStatsTable=llcPortStatsTable, llcCcOperMaxUnackedIPDUsRcv=llcCcOperMaxUnackedIPDUsRcv, llcSapStatsIOctetsIn=llcSapStatsIOctetsIn, llcSapStatsWwCount=llcSapStatsWwCount, llcSapOperHiWaterNumCcs=llcSapOperHiWaterNumCcs, llcCcAdminDelayAckCount=llcCcAdminDelayAckCount, llcSapAdminTable=llcSapAdminTable, llcSapStatsTESTCommandsIn=llcSapStatsTESTCommandsIn, llcPortOperNumSaps=llcPortOperNumSaps, llcSapStatsXIDResponsesOut=llcSapStatsXIDResponsesOut, llcSapStatsTESTResponsesOut=llcSapStatsTESTResponsesOut, ciscoSnaLlcMIBObjects=ciscoSnaLlcMIBObjects, llcPortStatsUnknownSaps=llcPortStatsUnknownSaps, llcSapStatsSFramesIn=llcSapStatsSFramesIn, llcSapStatsTable=llcSapStatsTable, llcSapStatsREJsOut=llcSapStatsREJsOut, llcCcStatsIFramesIn=llcCcStatsIFramesIn, llcCoreCompliance=llcCoreCompliance, llcSapStatsRetransmitsOut=llcSapStatsRetransmitsOut, llcCcOperBusyTimer=llcCcOperBusyTimer, llcSapStatsXIDCommandsOut=llcSapStatsXIDCommandsOut, llcCcAdminMaxUnackedIPDUsRcv=llcCcAdminMaxUnackedIPDUsRcv, llcPortAdminRejTimer=llcPortAdminRejTimer, llcPortStatsOctetsIn=llcPortStatsOctetsIn, snaLlcMIBConformance=snaLlcMIBConformance, llcCcStatsSFramesIn=llcCcStatsSFramesIn, llcPortAdminAckTimer=llcPortAdminAckTimer, llcSapAdminDelayAckTimer=llcSapAdminDelayAckTimer, llcCcAdminBusyTimer=llcCcAdminBusyTimer, llcCcAdminInactTimer=llcCcAdminInactTimer, llcCcOperRejTimer=llcCcOperRejTimer, ciscoSnaLlcMIB=ciscoSnaLlcMIB, llcSapStatsEntry=llcSapStatsEntry, llcCcStatsEntry=llcCcStatsEntry, llcSapStatsConnectFail=llcSapStatsConnectFail, llcPortAdminDelayAckTimer=llcPortAdminDelayAckTimer, llcPortAdminNw=llcPortAdminNw, llcSapAdminInactTimer=llcSapAdminInactTimer, llcPortOperSimRim=llcPortOperSimRim, llcSapStatsDisconnect=llcSapStatsDisconnect, llcCcStatsIOctetsIn=llcCcStatsIOctetsIn, llcPortAdminDelayAckCount=llcPortAdminDelayAckCount, PYSNMP_MODULE_ID=ciscoSnaLlcMIB, llcPortAdminMaxCcs=llcPortAdminMaxCcs, llcPortStatsTESTResponsesOut=llcPortStatsTESTResponsesOut, llcCcOperState=llcCcOperState, llcCcOperInactTimer=llcCcOperInactTimer, llcSapStatsUIFramesOut=llcSapStatsUIFramesOut, llcSapAdminMaxRetransmits=llcSapAdminMaxRetransmits, llcCcAdminMaxRetransmits=llcCcAdminMaxRetransmits, llcCorePortGroup=llcCorePortGroup, llcCcStatsRemoteBusies=llcCcStatsRemoteBusies, llcCcAdminDelayAckTimer=llcCcAdminDelayAckTimer, llcPortOperEntry=llcPortOperEntry, llcPortAdminBusyTimer=llcPortAdminBusyTimer) |
OUR_APP_NAME = 'Demo'
SECTION_NAME = 'Manufacturer'
SECTION_ITEMS = 'Products'
| our_app_name = 'Demo'
section_name = 'Manufacturer'
section_items = 'Products' |
SSID1 = 'ap1'
PASSWORD1 = 'pw1'
SSID2 = 'ap2'
PASSWORD2 = 'pw2'
MQTT_PORT = '1883'
MQTT_USER = 'useri'
MQTT_PASSWORD = 'salari'
MQTT_SERVER = 'ip'
WEBREPL_PASSWORD = "pw"
CLIENT_ID = "ESP32-aurinkopaneeli"
DHCP_NAME = "ESP32-aurinkopaneeli"
TOPIC_ERRORS = 'errors/home/esp32'
TOPIC_TEMP = 'koti/ulko/aurinkopaneeli/lampo'
TOPIC_HUMIDITY = 'koti/ulko/aurinkopaneeli/kosteus'
TOPIC_PRESSURE = 'koti/ulko/aurinkopaneeli/paine'
TOPIC_BATTERY_VOLTAGE = 'koti/ulko/aurinkopaneeli/jannite'
NTPSERVER = 'pool.ntp.org'
BATTERY_ADC_PIN = 32
SOLARPANEL_ADC_PIN = 34
STEPPER1_PIN1 = 12
STEPPER1_PIN2 = 13
STEPPER1_PIN3 = 14
STEPPER1_PIN4 = 15
STEPPER1_DELAY = 2
MICROSWITCH_PIN = 23
I2C_SCL_PIN = 22
I2C_SDA_PIN = 21
SECONDARY_ACTIVATION_PIN = 18
| ssid1 = 'ap1'
password1 = 'pw1'
ssid2 = 'ap2'
password2 = 'pw2'
mqtt_port = '1883'
mqtt_user = 'useri'
mqtt_password = 'salari'
mqtt_server = 'ip'
webrepl_password = 'pw'
client_id = 'ESP32-aurinkopaneeli'
dhcp_name = 'ESP32-aurinkopaneeli'
topic_errors = 'errors/home/esp32'
topic_temp = 'koti/ulko/aurinkopaneeli/lampo'
topic_humidity = 'koti/ulko/aurinkopaneeli/kosteus'
topic_pressure = 'koti/ulko/aurinkopaneeli/paine'
topic_battery_voltage = 'koti/ulko/aurinkopaneeli/jannite'
ntpserver = 'pool.ntp.org'
battery_adc_pin = 32
solarpanel_adc_pin = 34
stepper1_pin1 = 12
stepper1_pin2 = 13
stepper1_pin3 = 14
stepper1_pin4 = 15
stepper1_delay = 2
microswitch_pin = 23
i2_c_scl_pin = 22
i2_c_sda_pin = 21
secondary_activation_pin = 18 |
n=int(input())
a=[]
for i in range(0,n):
ele=int(input())
a.append(ele)
print(list(set(a)))
lower=int(input())
upper=int(input())
b=[x for x in range(lower,upper+1) if ( int(x**0.5))**2==x and sum(list(map(int,str(x))))<10 ]
a=[(x,x**2)for x in range(lower,upper+1)]
print(b)
n=int(input())
m=int(input())
a=[]
b=[]
for c in range(0,n):
ele=int(input())
a.append(ele)
for c in range(0,m):
ele=int(input())
b.append(ele)
print(list(set(a)&set(b)))
n=int(input())
a=[]
b=[]
c=[]
for i in range(1,n+1):
x=int(input())
a.append(x)
if(x%2==0):
b.append(x)
else:
c.append(x)
a.sort()
print(a[n-1])
for i in range(0,len(b)):
print(b[i],sep=" ",end=" ")
n= int (input())
sieve=set(range(2,n+1))
while sieve:
prime=min(sieve)
print(prime,end="\t")
sieve=sieve-set(range(prime,n+1,prime))
print()
n=int(input())
for i in range(n,0,-1):
print((n-i)*''+i*'*')
n=int(input())
for i in range(1,n+1):
for j in range(1,n+1):
if(i==j):
print(1,sep=" ",end=" ")
else:
print(0,sep=" ",end=" ")
print()
n=int(input())
for j in range(1,n+1):
a=[]
for i in range(1,j+1):
print(i,sep=" ",end=" ")
if(i<j):
print("+",sep=" ",end=" ")
a.append(i)
print("=",sum(a))
n=int(input())
count=0
while(n>0):
count=count+1
n=n//10
print(count)
n=int(input())
temp=n
rev=0
while(n>0):
dig=n%10
rev=rev*10+dig
n=n//10
if(temp==rev):
print("YES")
n=int(input())
temp=str(n)
a=temp+temp
b=temp+temp+temp
print(n+int(a)+int(b))
n=int(input())
a=[]
for i in range(1,n+1):
a.append(i)
print(sum(a))
A=int(input())
B=int(input())
C=int(input())
d=[]
d.append(A)
d.append(B)
d.append(C)
for i in range(0,3):
for j in range(0,3):
for k in range(0,3):
if(i!=j & j!=k & k!=i):
print(d[i],d[j],d[k])
| n = int(input())
a = []
for i in range(0, n):
ele = int(input())
a.append(ele)
print(list(set(a)))
lower = int(input())
upper = int(input())
b = [x for x in range(lower, upper + 1) if int(x ** 0.5) ** 2 == x and sum(list(map(int, str(x)))) < 10]
a = [(x, x ** 2) for x in range(lower, upper + 1)]
print(b)
n = int(input())
m = int(input())
a = []
b = []
for c in range(0, n):
ele = int(input())
a.append(ele)
for c in range(0, m):
ele = int(input())
b.append(ele)
print(list(set(a) & set(b)))
n = int(input())
a = []
b = []
c = []
for i in range(1, n + 1):
x = int(input())
a.append(x)
if x % 2 == 0:
b.append(x)
else:
c.append(x)
a.sort()
print(a[n - 1])
for i in range(0, len(b)):
print(b[i], sep=' ', end=' ')
n = int(input())
sieve = set(range(2, n + 1))
while sieve:
prime = min(sieve)
print(prime, end='\t')
sieve = sieve - set(range(prime, n + 1, prime))
print()
n = int(input())
for i in range(n, 0, -1):
print((n - i) * '' + i * '*')
n = int(input())
for i in range(1, n + 1):
for j in range(1, n + 1):
if i == j:
print(1, sep=' ', end=' ')
else:
print(0, sep=' ', end=' ')
print()
n = int(input())
for j in range(1, n + 1):
a = []
for i in range(1, j + 1):
print(i, sep=' ', end=' ')
if i < j:
print('+', sep=' ', end=' ')
a.append(i)
print('=', sum(a))
n = int(input())
count = 0
while n > 0:
count = count + 1
n = n // 10
print(count)
n = int(input())
temp = n
rev = 0
while n > 0:
dig = n % 10
rev = rev * 10 + dig
n = n // 10
if temp == rev:
print('YES')
n = int(input())
temp = str(n)
a = temp + temp
b = temp + temp + temp
print(n + int(a) + int(b))
n = int(input())
a = []
for i in range(1, n + 1):
a.append(i)
print(sum(a))
a = int(input())
b = int(input())
c = int(input())
d = []
d.append(A)
d.append(B)
d.append(C)
for i in range(0, 3):
for j in range(0, 3):
for k in range(0, 3):
if i != j & j != k & k != i:
print(d[i], d[j], d[k]) |
def add(x, y):
return x+y
result = add(1, 2)
print(f"This is the sum: , {result}")
| def add(x, y):
return x + y
result = add(1, 2)
print(f'This is the sum: , {result}') |
ld,lm,ly = map(int,input().split())
dd,dm,dy = map(int,input().split())
if ly< dy:
print('0')
elif ly > dy:
print('10000')
elif lm > dm:
print(500*(lm-dm))
elif lm < dm:
print('0')
elif ld > dd:
print(15*(ld-dd))
else:
print('0')
| (ld, lm, ly) = map(int, input().split())
(dd, dm, dy) = map(int, input().split())
if ly < dy:
print('0')
elif ly > dy:
print('10000')
elif lm > dm:
print(500 * (lm - dm))
elif lm < dm:
print('0')
elif ld > dd:
print(15 * (ld - dd))
else:
print('0') |
{
"targets": [
{
"target_name": "pm",
"sources": [
"src/pm.cpp",
"src/pm.h"
],
'conditions': [
['OS=="win"',
{
'sources': [
"src/pm_win.cpp"
]
}
],
['OS=="mac"',
{
'sources': [
"src/pm_mac.cpp"
]
}
],
['OS=="linux"',
{
"conditions" :
[
["target_arch=='ia32'",
{
'include_dirs+':
[
'/usr/include/dbus-1.0/',
'/usr/include/glib-2.0/',
'/usr/lib/i386-linux-gnu/glib-2.0/include/',
'/usr/lib/i386-linux-gnu/dbus-1.0/include/'
]
}
],
["target_arch=='x64'",
{
'include_dirs+':
[
'/usr/include/dbus-1.0/',
'/usr/include/glib-2.0/',
'/usr/lib/x86_64-linux-gnu/glib-2.0/include/',
'/usr/lib/x86_64-linux-gnu/dbus-1.0/include/'
],
}
]
],
'sources': [
"src/pm_linux.cpp"
],
'link_settings': {
'libraries': [
'-ldbus-glib-1'
]
}
}
]
]
}
]
}
| {'targets': [{'target_name': 'pm', 'sources': ['src/pm.cpp', 'src/pm.h'], 'conditions': [['OS=="win"', {'sources': ['src/pm_win.cpp']}], ['OS=="mac"', {'sources': ['src/pm_mac.cpp']}], ['OS=="linux"', {'conditions': [["target_arch=='ia32'", {'include_dirs+': ['/usr/include/dbus-1.0/', '/usr/include/glib-2.0/', '/usr/lib/i386-linux-gnu/glib-2.0/include/', '/usr/lib/i386-linux-gnu/dbus-1.0/include/']}], ["target_arch=='x64'", {'include_dirs+': ['/usr/include/dbus-1.0/', '/usr/include/glib-2.0/', '/usr/lib/x86_64-linux-gnu/glib-2.0/include/', '/usr/lib/x86_64-linux-gnu/dbus-1.0/include/']}]], 'sources': ['src/pm_linux.cpp'], 'link_settings': {'libraries': ['-ldbus-glib-1']}}]]}]} |
def perfect_array(length):
return ' '.join(['1']*length)
def main():
t = int(input())
for _ in range(t):
length = int(input())
print(perfect_array(length))
main()
| def perfect_array(length):
return ' '.join(['1'] * length)
def main():
t = int(input())
for _ in range(t):
length = int(input())
print(perfect_array(length))
main() |
# Copyright 2019 VMware, Inc.
# SPDX-License-Identifier: BSD-2-Clause
# Package initialisation for Doctor.
# Mightn't be necessary to declare __all__ at time of writing because it lists
# everything.
__all__ = ['comment_block.py',
'comment_line.py',
'doc_markdown.py',
'doctor_class.py',
'getter.py',
'main.py',
'markdown.py',
'parser.py']
| __all__ = ['comment_block.py', 'comment_line.py', 'doc_markdown.py', 'doctor_class.py', 'getter.py', 'main.py', 'markdown.py', 'parser.py'] |
def hello(s):
print("Hello, %s!!!" % s)
hello('world')
hello('python')
hello('Sasha') | def hello(s):
print('Hello, %s!!!' % s)
hello('world')
hello('python')
hello('Sasha') |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
def score(str_in):
garbage = False
cnt = 1
out = 0
stack = []
garbage_cnt = 0
skip = False
for i in str_in:
if skip:
skip = False
continue
if i == '!':
skip = True
continue
if garbage and i == '>':
garbage = False
if garbage:
garbage_cnt += 1
continue
if i == '<' and not garbage:
garbage = True
if i == '{':
stack.append(cnt)
cnt += 1
elif i == '}':
popped = stack.pop()
out += popped
cnt -= 1
return out, garbage_cnt
if __name__ == '__main__':
with open('score.txt') as f:
test_lines = f.readlines()
for line in test_lines:
test_input, expected_output = line.split('\\')
expected = int(expected_output)
assert score(test_input)[0] == expected, 'String:{}\tExpected:{}\tActual:{}'.format(test_input[0], expected, score(test_input))
with open('input.txt') as f:
line = f.readline().strip()
print(score(line))
| def score(str_in):
garbage = False
cnt = 1
out = 0
stack = []
garbage_cnt = 0
skip = False
for i in str_in:
if skip:
skip = False
continue
if i == '!':
skip = True
continue
if garbage and i == '>':
garbage = False
if garbage:
garbage_cnt += 1
continue
if i == '<' and (not garbage):
garbage = True
if i == '{':
stack.append(cnt)
cnt += 1
elif i == '}':
popped = stack.pop()
out += popped
cnt -= 1
return (out, garbage_cnt)
if __name__ == '__main__':
with open('score.txt') as f:
test_lines = f.readlines()
for line in test_lines:
(test_input, expected_output) = line.split('\\')
expected = int(expected_output)
assert score(test_input)[0] == expected, 'String:{}\tExpected:{}\tActual:{}'.format(test_input[0], expected, score(test_input))
with open('input.txt') as f:
line = f.readline().strip()
print(score(line)) |
class TreeNode:
def __init__(self, data):
self.data = data
self.parent = None
self.children = []
self.__length = 0
def add_child(self, children):
self.__length += len(children)
for child in children:
child.parent = self
self.children.append(child)
def __len__(self):
return self.__length
def get_level(self):
level = 0
parent = self.parent
while parent:
level += 1
parent = parent.parent
return level
def print_tree(self, properties, level="DEEPEST"):
space_levels = self.get_level()
if level != "DEEPEST" and space_levels > level:
return
if level == "DEEPEST":
level = len(self)+1
spaces = " " * space_levels * 3
prefix = spaces + "|__" if space_levels > 0 else ""
print_this = ""
if properties == "all":
properties = list(self.data.keys())
for property in properties:
print_this += self.data[property] + " "
print (prefix + print_this.strip())
if self.children:
for child in self.children:
child.print_tree(properties, level)
if __name__ == "__main__":
root = TreeNode(data={"name": "Nilpul", "designation": "(CEO)"})
cto = TreeNode(data={"name": "Chinmay", "designation": "(CTO)"})
it_head = TreeNode(data={"name": "Vishwa", "designation": "(Infrastructure Head)"})
it_head.add_child([
TreeNode(data={"name": "Dhaval", "designation": "(Cloud Manager)"}),
TreeNode(data={"name": "Abhijit", "designation": "(App Manager)"}),
])
app_head = TreeNode(data={"name": "Aamir", "designation": "(Application Head)"})
cto.add_child([it_head, app_head])
hr_head = TreeNode(data={"name": "Gels", "designation": "(HR Head)"})
hr_head.add_child([
TreeNode(data={"name": "Peter", "designation": "(Recruitment Manager)"}),
TreeNode(data={"name": "George", "designation": "(Policy Manager)"}),
])
root.add_child([cto, hr_head])
print ("-"*20+"all"+"-"*20)
root.print_tree("all")
print ("-"*20+"name"+"-"*20)
root.print_tree(("name",))
print ("-"*20+"designation"+"-"*20)
root.print_tree(("designation",))
print ("-"*20+"name, designation"+"-"*20)
root.print_tree(("name", "designation"))
print ("-"*20+"name, level=0"+"-"*20)
root.print_tree("all", level=0)
print ("-"*20+"name, level=1"+"-"*20)
root.print_tree("all", level=1)
print ("-"*20+"name, level=2"+"-"*20)
root.print_tree("all", level=2)
print ("-"*20+"name, level=3"+"-"*20)
root.print_tree("all", level=3)
| class Treenode:
def __init__(self, data):
self.data = data
self.parent = None
self.children = []
self.__length = 0
def add_child(self, children):
self.__length += len(children)
for child in children:
child.parent = self
self.children.append(child)
def __len__(self):
return self.__length
def get_level(self):
level = 0
parent = self.parent
while parent:
level += 1
parent = parent.parent
return level
def print_tree(self, properties, level='DEEPEST'):
space_levels = self.get_level()
if level != 'DEEPEST' and space_levels > level:
return
if level == 'DEEPEST':
level = len(self) + 1
spaces = ' ' * space_levels * 3
prefix = spaces + '|__' if space_levels > 0 else ''
print_this = ''
if properties == 'all':
properties = list(self.data.keys())
for property in properties:
print_this += self.data[property] + ' '
print(prefix + print_this.strip())
if self.children:
for child in self.children:
child.print_tree(properties, level)
if __name__ == '__main__':
root = tree_node(data={'name': 'Nilpul', 'designation': '(CEO)'})
cto = tree_node(data={'name': 'Chinmay', 'designation': '(CTO)'})
it_head = tree_node(data={'name': 'Vishwa', 'designation': '(Infrastructure Head)'})
it_head.add_child([tree_node(data={'name': 'Dhaval', 'designation': '(Cloud Manager)'}), tree_node(data={'name': 'Abhijit', 'designation': '(App Manager)'})])
app_head = tree_node(data={'name': 'Aamir', 'designation': '(Application Head)'})
cto.add_child([it_head, app_head])
hr_head = tree_node(data={'name': 'Gels', 'designation': '(HR Head)'})
hr_head.add_child([tree_node(data={'name': 'Peter', 'designation': '(Recruitment Manager)'}), tree_node(data={'name': 'George', 'designation': '(Policy Manager)'})])
root.add_child([cto, hr_head])
print('-' * 20 + 'all' + '-' * 20)
root.print_tree('all')
print('-' * 20 + 'name' + '-' * 20)
root.print_tree(('name',))
print('-' * 20 + 'designation' + '-' * 20)
root.print_tree(('designation',))
print('-' * 20 + 'name, designation' + '-' * 20)
root.print_tree(('name', 'designation'))
print('-' * 20 + 'name, level=0' + '-' * 20)
root.print_tree('all', level=0)
print('-' * 20 + 'name, level=1' + '-' * 20)
root.print_tree('all', level=1)
print('-' * 20 + 'name, level=2' + '-' * 20)
root.print_tree('all', level=2)
print('-' * 20 + 'name, level=3' + '-' * 20)
root.print_tree('all', level=3) |
# Copyright (C) 2020-Present the hyssop authors and contributors.
#
# This module is part of hyssop and is released under
# the MIT License: http://www.opensource.org/licenses/mit-license.php
'''
File created: September 4th 2020
Modified By: hsky77
Last Updated: April 6th 2021 22:26:59 pm
'''
Version = '0.0.7'
| """
File created: September 4th 2020
Modified By: hsky77
Last Updated: April 6th 2021 22:26:59 pm
"""
version = '0.0.7' |
class Extractor(object):
def __init__(self, transcript):
self.transcript = transcript
def get_location(self):
return "TBD"
def get_date(self):
return "TBD"
| class Extractor(object):
def __init__(self, transcript):
self.transcript = transcript
def get_location(self):
return 'TBD'
def get_date(self):
return 'TBD' |
def test_all_function(numeric_state):
state = numeric_state
state["subtracted"] = state["amount"] - state["amount"]
space = state.space[1]
all_events = space.all()
assert len(all_events) == 3 | def test_all_function(numeric_state):
state = numeric_state
state['subtracted'] = state['amount'] - state['amount']
space = state.space[1]
all_events = space.all()
assert len(all_events) == 3 |
#input: data from communties_data.txt
#output: data useful for predictive analysis (ie: excluding first 5 attributes) in 2D Array
def clean_raw_data(data):
rows = (row.strip().split() for row in data)
leaveLoop = 0
cleaned_data = []
for row in rows:
tmp = [stat.strip() for stat in row[0].split(',')]
cleaned_data.append(tmp[5:])
return cleaned_data
#input: data from summary.txt
#output: data in 2D Array
def clean_sum_data(data):
# Summary data contains the Attribute, Min, Max, Mean, SD, Correl, Median, Mode, Missing
sum_rows = (row.strip().split() for row in data)
new_list = []
for row in sum_rows:
new_list.append(row)
return new_list
#input: output of clean_raw_data, clean_sum_data, use median value
#output clean_raw_data with the '?' values replaced with the median value if True or mean if False
def replace_null_data(old_replacee, replacer, median=True):
replacee = list(old_replacee)
for row in replacee:
replaced = False
old_row = list(row)
for col in range(len(row)):
if row[col] == '?':
replaced = True
if median:
row[col] = replacer[col][6]
else:
row[col] = replacer[col][3]
return replacee
# Looks funny but this makes sure it runs when called by a python file in a different directory and still work when run locally
summary_data = open("../Data/summary.txt", "r")
raw_data = open("../Data/communities_data.txt", "r")
cleaned_data = clean_raw_data(raw_data)
sumarized_data = clean_sum_data(summary_data)
usable_data = replace_null_data(cleaned_data, sumarized_data) | def clean_raw_data(data):
rows = (row.strip().split() for row in data)
leave_loop = 0
cleaned_data = []
for row in rows:
tmp = [stat.strip() for stat in row[0].split(',')]
cleaned_data.append(tmp[5:])
return cleaned_data
def clean_sum_data(data):
sum_rows = (row.strip().split() for row in data)
new_list = []
for row in sum_rows:
new_list.append(row)
return new_list
def replace_null_data(old_replacee, replacer, median=True):
replacee = list(old_replacee)
for row in replacee:
replaced = False
old_row = list(row)
for col in range(len(row)):
if row[col] == '?':
replaced = True
if median:
row[col] = replacer[col][6]
else:
row[col] = replacer[col][3]
return replacee
summary_data = open('../Data/summary.txt', 'r')
raw_data = open('../Data/communities_data.txt', 'r')
cleaned_data = clean_raw_data(raw_data)
sumarized_data = clean_sum_data(summary_data)
usable_data = replace_null_data(cleaned_data, sumarized_data) |
#
# PySNMP MIB module Juniper-DS3-CONF (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/Juniper-DS3-CONF
# Produced by pysmi-0.3.4 at Mon Apr 29 19:51:33 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, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint", "ValueSizeConstraint")
juniAgents, = mibBuilder.importSymbols("Juniper-Agents", "juniAgents")
NotificationGroup, ModuleCompliance, AgentCapabilities = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "AgentCapabilities")
MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, MibIdentifier, Counter64, Bits, TimeTicks, Integer32, NotificationType, ModuleIdentity, IpAddress, Counter32, Gauge32, ObjectIdentity, iso = mibBuilder.importSymbols("SNMPv2-SMI", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "MibIdentifier", "Counter64", "Bits", "TimeTicks", "Integer32", "NotificationType", "ModuleIdentity", "IpAddress", "Counter32", "Gauge32", "ObjectIdentity", "iso")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
juniDs3Agent = ModuleIdentity((1, 3, 6, 1, 4, 1, 4874, 5, 2, 11))
juniDs3Agent.setRevisions(('2003-09-29 21:05', '2003-01-30 19:08', '2003-01-30 16:37', '2002-08-27 18:48', '2001-04-18 19:41',))
if mibBuilder.loadTexts: juniDs3Agent.setLastUpdated('200309292105Z')
if mibBuilder.loadTexts: juniDs3Agent.setOrganization('Juniper Networks, Inc.')
juniDs3AgentV1 = AgentCapabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 11, 1))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniDs3AgentV1 = juniDs3AgentV1.setProductRelease('Version 1 of the DS3 component of the JUNOSe SNMP agent. This version\n of the DS3 component was supported in JUNOSe 1.0 system releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniDs3AgentV1 = juniDs3AgentV1.setStatus('obsolete')
juniDs3AgentV2 = AgentCapabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 11, 2))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniDs3AgentV2 = juniDs3AgentV2.setProductRelease('Version 2 of the DS3 component of the JUNOSe SNMP agent. This version\n of the DS3 component was supported in JUNOSe 1.1 thru JUNOSe 2.5 system\n releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniDs3AgentV2 = juniDs3AgentV2.setStatus('obsolete')
juniDs3AgentV3 = AgentCapabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 11, 3))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniDs3AgentV3 = juniDs3AgentV3.setProductRelease('Version 3 of the DS3 component of the JUNOSe SNMP agent. This version\n of the DS3 component was supported in JUNOSe 2.6 and subsequent JUNOSe\n 2.x system releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniDs3AgentV3 = juniDs3AgentV3.setStatus('obsolete')
juniDs3AgentV4 = AgentCapabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 11, 4))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniDs3AgentV4 = juniDs3AgentV4.setProductRelease('Version 4 of the DS3 component of the JUNOSe SNMP agent. This version\n of the DS3 component was supported in JUNOSe 3.x system releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniDs3AgentV4 = juniDs3AgentV4.setStatus('obsolete')
juniDs3AgentV5 = AgentCapabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 11, 5))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniDs3AgentV5 = juniDs3AgentV5.setProductRelease('Version 5 of the DS3 component of the JUNOSe SNMP agent. This version\n of the DS3 component was supported in JUNOSe 4.0 system releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniDs3AgentV5 = juniDs3AgentV5.setStatus('obsolete')
juniDs3AgentV6 = AgentCapabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 11, 6))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniDs3AgentV6 = juniDs3AgentV6.setProductRelease('Version 6 of the DS3 component of the JUNOSe SNMP agent. This version\n of the DS3 component is supported in JUNOSe 4.1 and subsequent system\n releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniDs3AgentV6 = juniDs3AgentV6.setStatus('current')
mibBuilder.exportSymbols("Juniper-DS3-CONF", juniDs3Agent=juniDs3Agent, juniDs3AgentV5=juniDs3AgentV5, juniDs3AgentV2=juniDs3AgentV2, juniDs3AgentV6=juniDs3AgentV6, juniDs3AgentV3=juniDs3AgentV3, PYSNMP_MODULE_ID=juniDs3Agent, juniDs3AgentV1=juniDs3AgentV1, juniDs3AgentV4=juniDs3AgentV4)
| (octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, constraints_union, constraints_intersection, value_range_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint', 'ValueSizeConstraint')
(juni_agents,) = mibBuilder.importSymbols('Juniper-Agents', 'juniAgents')
(notification_group, module_compliance, agent_capabilities) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance', 'AgentCapabilities')
(mib_scalar, mib_table, mib_table_row, mib_table_column, unsigned32, mib_identifier, counter64, bits, time_ticks, integer32, notification_type, module_identity, ip_address, counter32, gauge32, object_identity, iso) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Unsigned32', 'MibIdentifier', 'Counter64', 'Bits', 'TimeTicks', 'Integer32', 'NotificationType', 'ModuleIdentity', 'IpAddress', 'Counter32', 'Gauge32', 'ObjectIdentity', 'iso')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
juni_ds3_agent = module_identity((1, 3, 6, 1, 4, 1, 4874, 5, 2, 11))
juniDs3Agent.setRevisions(('2003-09-29 21:05', '2003-01-30 19:08', '2003-01-30 16:37', '2002-08-27 18:48', '2001-04-18 19:41'))
if mibBuilder.loadTexts:
juniDs3Agent.setLastUpdated('200309292105Z')
if mibBuilder.loadTexts:
juniDs3Agent.setOrganization('Juniper Networks, Inc.')
juni_ds3_agent_v1 = agent_capabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 11, 1))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_ds3_agent_v1 = juniDs3AgentV1.setProductRelease('Version 1 of the DS3 component of the JUNOSe SNMP agent. This version\n of the DS3 component was supported in JUNOSe 1.0 system releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_ds3_agent_v1 = juniDs3AgentV1.setStatus('obsolete')
juni_ds3_agent_v2 = agent_capabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 11, 2))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_ds3_agent_v2 = juniDs3AgentV2.setProductRelease('Version 2 of the DS3 component of the JUNOSe SNMP agent. This version\n of the DS3 component was supported in JUNOSe 1.1 thru JUNOSe 2.5 system\n releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_ds3_agent_v2 = juniDs3AgentV2.setStatus('obsolete')
juni_ds3_agent_v3 = agent_capabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 11, 3))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_ds3_agent_v3 = juniDs3AgentV3.setProductRelease('Version 3 of the DS3 component of the JUNOSe SNMP agent. This version\n of the DS3 component was supported in JUNOSe 2.6 and subsequent JUNOSe\n 2.x system releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_ds3_agent_v3 = juniDs3AgentV3.setStatus('obsolete')
juni_ds3_agent_v4 = agent_capabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 11, 4))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_ds3_agent_v4 = juniDs3AgentV4.setProductRelease('Version 4 of the DS3 component of the JUNOSe SNMP agent. This version\n of the DS3 component was supported in JUNOSe 3.x system releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_ds3_agent_v4 = juniDs3AgentV4.setStatus('obsolete')
juni_ds3_agent_v5 = agent_capabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 11, 5))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_ds3_agent_v5 = juniDs3AgentV5.setProductRelease('Version 5 of the DS3 component of the JUNOSe SNMP agent. This version\n of the DS3 component was supported in JUNOSe 4.0 system releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_ds3_agent_v5 = juniDs3AgentV5.setStatus('obsolete')
juni_ds3_agent_v6 = agent_capabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 11, 6))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_ds3_agent_v6 = juniDs3AgentV6.setProductRelease('Version 6 of the DS3 component of the JUNOSe SNMP agent. This version\n of the DS3 component is supported in JUNOSe 4.1 and subsequent system\n releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_ds3_agent_v6 = juniDs3AgentV6.setStatus('current')
mibBuilder.exportSymbols('Juniper-DS3-CONF', juniDs3Agent=juniDs3Agent, juniDs3AgentV5=juniDs3AgentV5, juniDs3AgentV2=juniDs3AgentV2, juniDs3AgentV6=juniDs3AgentV6, juniDs3AgentV3=juniDs3AgentV3, PYSNMP_MODULE_ID=juniDs3Agent, juniDs3AgentV1=juniDs3AgentV1, juniDs3AgentV4=juniDs3AgentV4) |
# -*- coding: utf-8 -*-
#
# Copyright (C) 2019 Edward Lau <[email protected]>
# Licensed under the MIT License.
#
__version__ = '0.1.0'
| __version__ = '0.1.0' |
expected_output = {
"controller_config": {
"group_name": "default",
"ipv4": "10.9.3.4",
"mac_address": "AAAA.BBFF.8888",
"multicast_ipv4": "0.0.0.0",
"multicast_ipv6": "::",
"pmtu": "N/A",
"public_ip": "N/A",
"status": "N/A",
},
"mobility_summary": {
"domain_id": "0x34ac",
"dscp_value": "48",
"group_name": "default",
"keepalive": "10/3",
"mac_addr": "687d.b4ff.b9e9",
"mgmt_ipv4": "10.20.30.40",
"mgmt_ipv6": "",
"mgmt_vlan": "143",
"multi_ipv4": "0.0.0.0",
"multi_ipv6": "::",
},
} | expected_output = {'controller_config': {'group_name': 'default', 'ipv4': '10.9.3.4', 'mac_address': 'AAAA.BBFF.8888', 'multicast_ipv4': '0.0.0.0', 'multicast_ipv6': '::', 'pmtu': 'N/A', 'public_ip': 'N/A', 'status': 'N/A'}, 'mobility_summary': {'domain_id': '0x34ac', 'dscp_value': '48', 'group_name': 'default', 'keepalive': '10/3', 'mac_addr': '687d.b4ff.b9e9', 'mgmt_ipv4': '10.20.30.40', 'mgmt_ipv6': '', 'mgmt_vlan': '143', 'multi_ipv4': '0.0.0.0', 'multi_ipv6': '::'}} |
'''
# Sample code to perform I/O:
name = input() # Reading input from STDIN
print('Hi, %s.' % name) # Writing output to STDOUT
# Warning: Printing unwanted or ill-formatted data to output will cause the test cases to fail
'''
# Write your code here
def right(a,b):
r=a
for i in range(b):
r=r[-1:]+r[:-1]
r=''.join(r)
return int(r)
def left(a,b):
r=a
for i in range(b):
r.append(a.pop(0))
r=''.join(r)
return int(r)
def btod(n):
if n==0:
return 0
return n%10+2*(btod(n//10))
for i in range(int(input())):
a,b,c=input().split()
a=int(a)
b=int(b)
a=bin(a)
a=a[2:]
a=str(a)
if (16-len(a))!=0:
a="0"*(16-len(a))+a
a=list(a)
if c=='L':
res=left(a,b)
res=btod(res)
print(res)
if c=='R':
res=right(a,b)
res=btod(res)
print(res)
| """
# Sample code to perform I/O:
name = input() # Reading input from STDIN
print('Hi, %s.' % name) # Writing output to STDOUT
# Warning: Printing unwanted or ill-formatted data to output will cause the test cases to fail
"""
def right(a, b):
r = a
for i in range(b):
r = r[-1:] + r[:-1]
r = ''.join(r)
return int(r)
def left(a, b):
r = a
for i in range(b):
r.append(a.pop(0))
r = ''.join(r)
return int(r)
def btod(n):
if n == 0:
return 0
return n % 10 + 2 * btod(n // 10)
for i in range(int(input())):
(a, b, c) = input().split()
a = int(a)
b = int(b)
a = bin(a)
a = a[2:]
a = str(a)
if 16 - len(a) != 0:
a = '0' * (16 - len(a)) + a
a = list(a)
if c == 'L':
res = left(a, b)
res = btod(res)
print(res)
if c == 'R':
res = right(a, b)
res = btod(res)
print(res) |
# Write a function to check if the array is sorted or not
arr = [1,2,3,5,9]
n = len(arr)
i = 0
def isSortedArray(arr,i, n):
if (i==n-1):
return True
if arr[i] < arr[i+1] and isSortedArray(arr,i+1,n):
return True
else:
return False
print(isSortedArray(arr,i,n))
| arr = [1, 2, 3, 5, 9]
n = len(arr)
i = 0
def is_sorted_array(arr, i, n):
if i == n - 1:
return True
if arr[i] < arr[i + 1] and is_sorted_array(arr, i + 1, n):
return True
else:
return False
print(is_sorted_array(arr, i, n)) |
dict = {
"__open_crash__": 'Crash save {} exists, do you want to recover it?',
"__about__": "Simple route designer using BSicon",
"__export_fail__": 'Failed to export {}',
"__open_fail__": 'Failed to open {}',
"__paste_no_valid_blocks__": "No valid blocks to paste",
"__paste_filter_invalid_blocks__": "Invalid blocks have been filtered ({} remain)",
"__export_success__": 'Successfully exported to {}',
"__download_icons__": "Downloading missing blocks from wikimedia",
"__block_dir__": "No blocks available, please install 7-zip / p7zip and unpack blocks.7z to {}",
}
| dict = {'__open_crash__': 'Crash save {} exists, do you want to recover it?', '__about__': 'Simple route designer using BSicon', '__export_fail__': 'Failed to export {}', '__open_fail__': 'Failed to open {}', '__paste_no_valid_blocks__': 'No valid blocks to paste', '__paste_filter_invalid_blocks__': 'Invalid blocks have been filtered ({} remain)', '__export_success__': 'Successfully exported to {}', '__download_icons__': 'Downloading missing blocks from wikimedia', '__block_dir__': 'No blocks available, please install 7-zip / p7zip and unpack blocks.7z to {}'} |
def fact(n):
ans = 1
for i in range(1,n+1):
ans = ans*i
return ans
T = int(input())
while T:
n = input()
n = int(n)
print(fact(n))
T = T-1
| def fact(n):
ans = 1
for i in range(1, n + 1):
ans = ans * i
return ans
t = int(input())
while T:
n = input()
n = int(n)
print(fact(n))
t = T - 1 |
BOARDS = {
'arduino' : {
'digital' : tuple(x for x in range(14)),
'analog' : tuple(x for x in range(6)),
'pwm' : (3, 5, 6, 9, 10, 11),
'use_ports' : True,
'disabled' : (0, 1) # Rx, Tx, Crystal
},
'arduino_mega' : {
'digital' : tuple(x for x in range(54)),
'analog' : tuple(x for x in range(16)),
'pwm' : tuple(x for x in range(2,14)),
'use_ports' : True,
'disabled' : (0, 1) # Rx, Tx, Crystal
},
'duinobot' : {
'digital' : tuple(x for x in range(19)),
'analog' : tuple(x for x in range(7)),
'pwm' : (5, 6, 9),
'use_ports' : True,
'disabled' : (0, 1, 3, 4, 8)
}
}
| boards = {'arduino': {'digital': tuple((x for x in range(14))), 'analog': tuple((x for x in range(6))), 'pwm': (3, 5, 6, 9, 10, 11), 'use_ports': True, 'disabled': (0, 1)}, 'arduino_mega': {'digital': tuple((x for x in range(54))), 'analog': tuple((x for x in range(16))), 'pwm': tuple((x for x in range(2, 14))), 'use_ports': True, 'disabled': (0, 1)}, 'duinobot': {'digital': tuple((x for x in range(19))), 'analog': tuple((x for x in range(7))), 'pwm': (5, 6, 9), 'use_ports': True, 'disabled': (0, 1, 3, 4, 8)}} |
# This code should store "codewa.rs" as a variable called name but it's not working.
# Can you figure out why?
a = "code"
b = "wa.rs"
name = a + b
def test():
assert name == "codewa.rs"
| a = 'code'
b = 'wa.rs'
name = a + b
def test():
assert name == 'codewa.rs' |
#brute force
T= int(input())
while T!=0:
T-=1
n = int(input())
if n>3:
k1=0
k2=0
value1 , value2 , value3 , value4 =0,0,0,0
'''
#---------------------------------------
value1 = 14*(n-1) + 20
#----------------------------------------
k1=n//2
k2 = n % 2
if k2 ==0:
#value2 = 28*(k1-1) + 40
value2 = 26*(k1-1) + 18+18
elif k2 ==1:
#value2 = 28*(k1-1) + 54
value2 = 26*(k1-1) + 18 + 33
#-------------------------------------------
k1 = n//3
k2= n%3
if k2==0:
value3 = 37*(k1-1) + 51
elif k2==1:
value3 = 37*(k1-1) + 47
elif k2==2:
value3 = 37*(k1-1) + 78
'''
#--------------------------------------------
k1 = n//4
k2 = n % 4
value4=0
if k1>0:
if k2==0:
value4 = 44*(k1-1) + 60
elif k2==1:
value4 = 44*(k1-1) + 56 +20
elif k2==2:
value4 = 44*(k1-1) + 88
elif k2==3:
value4 = 44*(k1-1) + 48 + 51
value= max(value1 , value2 , value3 , value4)
elif n==1:
value = 20
elif n==3:
value = 51
else:
value = 36
print(value)
'''
if n%3==0:
k = n//3
value = 37*(k-1) +51
elif n%4==0:
k= n//4
value = 44*(k-1) + 60
else:
k1 = n//4
k2 = n%4
if k2==1:
value = 44*(k1-1) + 56 +20
elif k2==2:
value = 44*(k1-1) + 52 + 40
elif k2==3:
value = 44*(k1-1) + 48 + 51
else:
print('wrong')
'''
| t = int(input())
while T != 0:
t -= 1
n = int(input())
if n > 3:
k1 = 0
k2 = 0
(value1, value2, value3, value4) = (0, 0, 0, 0)
'\n\t\t#---------------------------------------\n\t\tvalue1 = 14*(n-1) + 20\n\t\t#----------------------------------------\n\t\tk1=n//2\n\t\tk2 = n % 2\n\t\tif k2 ==0:\n\t\t\t#value2 = 28*(k1-1) + 40\n\t\t\tvalue2 = 26*(k1-1) + 18+18\n\t\telif k2 ==1:\n\t\t\t#value2 = 28*(k1-1) + 54\n\t\t\tvalue2 = 26*(k1-1) + 18 + 33\n\n\t\t#-------------------------------------------\n\t\tk1 = n//3\n\t\tk2= n%3\n\t\tif k2==0:\n\t\t\tvalue3 = 37*(k1-1) + 51\n\t\telif k2==1:\n\t\t\tvalue3 = 37*(k1-1) + 47\n\t\telif k2==2:\n\t\t\tvalue3 = 37*(k1-1) + 78\n\t\t'
k1 = n // 4
k2 = n % 4
value4 = 0
if k1 > 0:
if k2 == 0:
value4 = 44 * (k1 - 1) + 60
elif k2 == 1:
value4 = 44 * (k1 - 1) + 56 + 20
elif k2 == 2:
value4 = 44 * (k1 - 1) + 88
elif k2 == 3:
value4 = 44 * (k1 - 1) + 48 + 51
value = max(value1, value2, value3, value4)
elif n == 1:
value = 20
elif n == 3:
value = 51
else:
value = 36
print(value)
"\n\t\tif n%3==0:\n\t\t\tk = n//3\n\t\t\tvalue = 37*(k-1) +51\n\t\telif n%4==0:\n\t\t\tk= n//4\n\t\t\tvalue = 44*(k-1) + 60\n\t\telse:\n\t\t\tk1 = n//4\n\t\t\tk2 = n%4\n\t\t\tif k2==1:\n\t\t\t\tvalue = 44*(k1-1) + 56 +20\n\t\t\telif k2==2:\n\t\t\t\tvalue = 44*(k1-1) + 52 + 40\n\t\t\telif k2==3:\n\t\t\t\tvalue = 44*(k1-1) + 48 + 51\n\t\t\telse:\n\t\t\t\tprint('wrong')\n " |
'''
pyatmos jb2008 subpackage
This subpackage defines the following functions:
JB2008_subfunc.py - subfunctions that implement the atmospheric model JB2008
jb2008.py - Input interface of JB2008
spaceweather.py
download_sw_jb2008 - Download or update the space weather file for JB2008 from https://sol.spacenvironment.net/JB2008/indices/
read_sw_jb2008 - Read the space weather file for JB2008
''' | """
pyatmos jb2008 subpackage
This subpackage defines the following functions:
JB2008_subfunc.py - subfunctions that implement the atmospheric model JB2008
jb2008.py - Input interface of JB2008
spaceweather.py
download_sw_jb2008 - Download or update the space weather file for JB2008 from https://sol.spacenvironment.net/JB2008/indices/
read_sw_jb2008 - Read the space weather file for JB2008
""" |
class GameContainer:
def __init__(self, lowest_level, high_score, stat_diffs, points_available):
self.lowest_level = lowest_level
self.high_score = high_score
self.stat_diffs = stat_diffs
self.points_available = points_available
| class Gamecontainer:
def __init__(self, lowest_level, high_score, stat_diffs, points_available):
self.lowest_level = lowest_level
self.high_score = high_score
self.stat_diffs = stat_diffs
self.points_available = points_available |
class Foo:
class Bar:
def baz(self):
pass
| class Foo:
class Bar:
def baz(self):
pass |
def main():
return "foo"
def failure():
raise RuntimeError("This is an error")
| def main():
return 'foo'
def failure():
raise runtime_error('This is an error') |
def lily_format(seq):
return " ".join(point["lilypond"] for point in seq)
def output(seq):
return "{ %s }" % lily_format(seq)
def write(filename, seq):
with open(filename, "w") as f:
f.write(output(seq))
| def lily_format(seq):
return ' '.join((point['lilypond'] for point in seq))
def output(seq):
return '{ %s }' % lily_format(seq)
def write(filename, seq):
with open(filename, 'w') as f:
f.write(output(seq)) |
print("Iterando sobre o arquivo")
with open("dados.txt", "r") as arquivo:
for linha in arquivo:
print(linha)
print("Fim do arquivo", arquivo.name)
| print('Iterando sobre o arquivo')
with open('dados.txt', 'r') as arquivo:
for linha in arquivo:
print(linha)
print('Fim do arquivo', arquivo.name) |
power = {'BUSES': {'Area': 1.33155,
'Bus/Area': 1.33155,
'Bus/Gate Leakage': 0.00662954,
'Bus/Peak Dynamic': 0.0,
'Bus/Runtime Dynamic': 0.0,
'Bus/Subthreshold Leakage': 0.0691322,
'Bus/Subthreshold Leakage with power gating': 0.0259246,
'Gate Leakage': 0.00662954,
'Peak Dynamic': 0.0,
'Runtime Dynamic': 0.0,
'Subthreshold Leakage': 0.0691322,
'Subthreshold Leakage with power gating': 0.0259246},
'Core': [{'Area': 32.6082,
'Execution Unit/Area': 8.2042,
'Execution Unit/Complex ALUs/Area': 0.235435,
'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646,
'Execution Unit/Complex ALUs/Peak Dynamic': 0.063025,
'Execution Unit/Complex ALUs/Runtime Dynamic': 0.252192,
'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111,
'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163,
'Execution Unit/Floating Point Units/Area': 4.6585,
'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156,
'Execution Unit/Floating Point Units/Peak Dynamic': 0.336758,
'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033,
'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829,
'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061,
'Execution Unit/Gate Leakage': 0.122718,
'Execution Unit/Instruction Scheduler/Area': 2.17927,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.328073,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.00115349,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.20978,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.28979,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.017004,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00962066,
'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00730101,
'Execution Unit/Instruction Scheduler/Instruction Window/Area': 1.00996,
'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00529112,
'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 2.07911,
'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.501812,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0800117,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0455351,
'Execution Unit/Instruction Scheduler/Peak Dynamic': 4.84781,
'Execution Unit/Instruction Scheduler/ROB/Area': 0.841232,
'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.000856399,
'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.55892,
'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.287803,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.0178624,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00897339,
'Execution Unit/Instruction Scheduler/Runtime Dynamic': 1.07941,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.114878,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.0641291,
'Execution Unit/Integer ALUs/Area': 0.47087,
'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291,
'Execution Unit/Integer ALUs/Peak Dynamic': 0.234815,
'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344,
'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222,
'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833,
'Execution Unit/Peak Dynamic': 5.93592,
'Execution Unit/Register Files/Area': 0.570804,
'Execution Unit/Register Files/Floating Point RF/Area': 0.208131,
'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788,
'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.0636208,
'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.0105051,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968,
'Execution Unit/Register Files/Gate Leakage': 0.000622708,
'Execution Unit/Register Files/Integer RF/Area': 0.362673,
'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992,
'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0997069,
'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0776918,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675,
'Execution Unit/Register Files/Peak Dynamic': 0.163328,
'Execution Unit/Register Files/Runtime Dynamic': 0.0881969,
'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387,
'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643,
'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0442632,
'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00607074,
'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.258199,
'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.653394,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.0920413,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0345155,
'Execution Unit/Runtime Dynamic': 2.47857,
'Execution Unit/Subthreshold Leakage': 1.83518,
'Execution Unit/Subthreshold Leakage with power gating': 0.709678,
'Gate Leakage': 0.372997,
'Instruction Fetch Unit/Area': 5.86007,
'Instruction Fetch Unit/Branch Predictor/Area': 0.138516,
'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00171471,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00171471,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00149793,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000582287,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045,
'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838,
'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732,
'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05,
'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602,
'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.00111605,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733,
'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00604339,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282,
'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954,
'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758,
'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867,
'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0162826,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357,
'Instruction Fetch Unit/Gate Leakage': 0.0590479,
'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323,
'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05,
'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827,
'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0746871,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682,
'Instruction Fetch Unit/Instruction Cache/Area': 3.14635,
'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931,
'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 4.75074,
'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.220284,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386,
'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799,
'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493,
'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404,
'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.253671,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104,
'Instruction Fetch Unit/Peak Dynamic': 7.20335,
'Instruction Fetch Unit/Runtime Dynamic': 0.570969,
'Instruction Fetch Unit/Subthreshold Leakage': 0.932587,
'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.408542,
'L2/Area': 4.53318,
'L2/Gate Leakage': 0.015464,
'L2/Peak Dynamic': 0.0912664,
'L2/Runtime Dynamic': 0.0149542,
'L2/Subthreshold Leakage': 0.834142,
'L2/Subthreshold Leakage with power gating': 0.401066,
'Load Store Unit/Area': 8.80969,
'Load Store Unit/Data Cache/Area': 6.84535,
'Load Store Unit/Data Cache/Gate Leakage': 0.0279261,
'Load Store Unit/Data Cache/Peak Dynamic': 3.91288,
'Load Store Unit/Data Cache/Runtime Dynamic': 1.30685,
'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675,
'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085,
'Load Store Unit/Gate Leakage': 0.0351387,
'Load Store Unit/LoadQ/Area': 0.0836782,
'Load Store Unit/LoadQ/Gate Leakage': 0.00059896,
'Load Store Unit/LoadQ/Peak Dynamic': 0.0865673,
'Load Store Unit/LoadQ/Runtime Dynamic': 0.0865674,
'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961,
'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918,
'Load Store Unit/Peak Dynamic': 4.32334,
'Load Store Unit/Runtime Dynamic': 1.82034,
'Load Store Unit/StoreQ/Area': 0.322079,
'Load Store Unit/StoreQ/Gate Leakage': 0.00329971,
'Load Store Unit/StoreQ/Peak Dynamic': 0.21346,
'Load Store Unit/StoreQ/Runtime Dynamic': 0.426921,
'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621,
'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004,
'Load Store Unit/Subthreshold Leakage': 0.591622,
'Load Store Unit/Subthreshold Leakage with power gating': 0.283406,
'Memory Management Unit/Area': 0.434579,
'Memory Management Unit/Dtlb/Area': 0.0879726,
'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729,
'Memory Management Unit/Dtlb/Peak Dynamic': 0.0757577,
'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0770213,
'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699,
'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485,
'Memory Management Unit/Gate Leakage': 0.00813591,
'Memory Management Unit/Itlb/Area': 0.301552,
'Memory Management Unit/Itlb/Gate Leakage': 0.00393464,
'Memory Management Unit/Itlb/Peak Dynamic': 0.295384,
'Memory Management Unit/Itlb/Runtime Dynamic': 0.0364302,
'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758,
'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842,
'Memory Management Unit/Peak Dynamic': 0.584853,
'Memory Management Unit/Runtime Dynamic': 0.113451,
'Memory Management Unit/Subthreshold Leakage': 0.0769113,
'Memory Management Unit/Subthreshold Leakage with power gating': 0.0399462,
'Peak Dynamic': 22.7004,
'Renaming Unit/Area': 0.369768,
'Renaming Unit/FP Front End RAT/Area': 0.168486,
'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00489731,
'Renaming Unit/FP Front End RAT/Peak Dynamic': 3.33511,
'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.221959,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0437281,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.024925,
'Renaming Unit/Free List/Area': 0.0414755,
'Renaming Unit/Free List/Gate Leakage': 4.15911e-05,
'Renaming Unit/Free List/Peak Dynamic': 0.0401324,
'Renaming Unit/Free List/Runtime Dynamic': 0.0174892,
'Renaming Unit/Free List/Subthreshold Leakage': 0.000670426,
'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000377987,
'Renaming Unit/Gate Leakage': 0.00863632,
'Renaming Unit/Int Front End RAT/Area': 0.114751,
'Renaming Unit/Int Front End RAT/Gate Leakage': 0.00038343,
'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.86945,
'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.146944,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00611897,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00348781,
'Renaming Unit/Peak Dynamic': 4.56169,
'Renaming Unit/Runtime Dynamic': 0.386393,
'Renaming Unit/Subthreshold Leakage': 0.070483,
'Renaming Unit/Subthreshold Leakage with power gating': 0.0362779,
'Runtime Dynamic': 5.38467,
'Subthreshold Leakage': 6.21877,
'Subthreshold Leakage with power gating': 2.58311},
{'Area': 32.0201,
'Execution Unit/Area': 7.68434,
'Execution Unit/Complex ALUs/Area': 0.235435,
'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646,
'Execution Unit/Complex ALUs/Peak Dynamic': 0.0248217,
'Execution Unit/Complex ALUs/Runtime Dynamic': 0.222185,
'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111,
'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163,
'Execution Unit/Floating Point Units/Area': 4.6585,
'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156,
'Execution Unit/Floating Point Units/Peak Dynamic': 0.132187,
'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033,
'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829,
'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061,
'Execution Unit/Gate Leakage': 0.120359,
'Execution Unit/Instruction Scheduler/Area': 1.66526,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.123111,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519,
'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913,
'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223,
'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562,
'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763,
'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.198574,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964,
'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262,
'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388,
'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608,
'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451,
'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.100234,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446,
'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.421919,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346,
'Execution Unit/Integer ALUs/Area': 0.47087,
'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291,
'Execution Unit/Integer ALUs/Peak Dynamic': 0.120538,
'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344,
'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222,
'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833,
'Execution Unit/Peak Dynamic': 4.29263,
'Execution Unit/Register Files/Area': 0.570804,
'Execution Unit/Register Files/Floating Point RF/Area': 0.208131,
'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788,
'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.0249729,
'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00516385,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968,
'Execution Unit/Register Files/Gate Leakage': 0.000622708,
'Execution Unit/Register Files/Integer RF/Area': 0.362673,
'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992,
'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0467096,
'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0381898,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675,
'Execution Unit/Register Files/Peak Dynamic': 0.0716825,
'Execution Unit/Register Files/Runtime Dynamic': 0.0433536,
'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387,
'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643,
'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912,
'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402,
'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.104611,
'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.268124,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543,
'Execution Unit/Runtime Dynamic': 1.36096,
'Execution Unit/Subthreshold Leakage': 1.79543,
'Execution Unit/Subthreshold Leakage with power gating': 0.688821,
'Gate Leakage': 0.368936,
'Instruction Fetch Unit/Area': 5.85939,
'Instruction Fetch Unit/Branch Predictor/Area': 0.138516,
'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00096861,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00096861,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.000870559,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.00035172,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045,
'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838,
'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732,
'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05,
'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602,
'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000548599,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733,
'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00335638,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282,
'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954,
'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758,
'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867,
'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.00832581,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357,
'Instruction Fetch Unit/Gate Leakage': 0.0589979,
'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323,
'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05,
'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827,
'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0367128,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682,
'Instruction Fetch Unit/Instruction Cache/Area': 3.14635,
'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931,
'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 2.33525,
'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.106878,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386,
'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799,
'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493,
'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404,
'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.124693,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104,
'Instruction Fetch Unit/Peak Dynamic': 4.6671,
'Instruction Fetch Unit/Runtime Dynamic': 0.279967,
'Instruction Fetch Unit/Subthreshold Leakage': 0.932286,
'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843,
'L2/Area': 4.53318,
'L2/Gate Leakage': 0.015464,
'L2/Peak Dynamic': 0.0412946,
'L2/Runtime Dynamic': 0.00689639,
'L2/Subthreshold Leakage': 0.834142,
'L2/Subthreshold Leakage with power gating': 0.401066,
'Load Store Unit/Area': 8.80901,
'Load Store Unit/Data Cache/Area': 6.84535,
'Load Store Unit/Data Cache/Gate Leakage': 0.0279261,
'Load Store Unit/Data Cache/Peak Dynamic': 2.56248,
'Load Store Unit/Data Cache/Runtime Dynamic': 0.647909,
'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675,
'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085,
'Load Store Unit/Gate Leakage': 0.0350888,
'Load Store Unit/LoadQ/Area': 0.0836782,
'Load Store Unit/LoadQ/Gate Leakage': 0.00059896,
'Load Store Unit/LoadQ/Peak Dynamic': 0.0428786,
'Load Store Unit/LoadQ/Runtime Dynamic': 0.0428785,
'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961,
'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918,
'Load Store Unit/Peak Dynamic': 2.76496,
'Load Store Unit/Runtime Dynamic': 0.902249,
'Load Store Unit/StoreQ/Area': 0.322079,
'Load Store Unit/StoreQ/Gate Leakage': 0.00329971,
'Load Store Unit/StoreQ/Peak Dynamic': 0.105731,
'Load Store Unit/StoreQ/Runtime Dynamic': 0.211462,
'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621,
'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004,
'Load Store Unit/Subthreshold Leakage': 0.591321,
'Load Store Unit/Subthreshold Leakage with power gating': 0.283293,
'Memory Management Unit/Area': 0.4339,
'Memory Management Unit/Dtlb/Area': 0.0879726,
'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729,
'Memory Management Unit/Dtlb/Peak Dynamic': 0.0375244,
'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0380905,
'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699,
'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485,
'Memory Management Unit/Gate Leakage': 0.00808595,
'Memory Management Unit/Itlb/Area': 0.301552,
'Memory Management Unit/Itlb/Gate Leakage': 0.00393464,
'Memory Management Unit/Itlb/Peak Dynamic': 0.145197,
'Memory Management Unit/Itlb/Runtime Dynamic': 0.0176811,
'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758,
'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842,
'Memory Management Unit/Peak Dynamic': 0.365766,
'Memory Management Unit/Runtime Dynamic': 0.0557716,
'Memory Management Unit/Subthreshold Leakage': 0.0766103,
'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333,
'Peak Dynamic': 15.7212,
'Renaming Unit/Area': 0.303608,
'Renaming Unit/FP Front End RAT/Area': 0.131045,
'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123,
'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468,
'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.0656927,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885,
'Renaming Unit/Free List/Area': 0.0340654,
'Renaming Unit/Free List/Gate Leakage': 2.5481e-05,
'Renaming Unit/Free List/Peak Dynamic': 0.0306032,
'Renaming Unit/Free List/Runtime Dynamic': 0.00635391,
'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144,
'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064,
'Renaming Unit/Gate Leakage': 0.00708398,
'Renaming Unit/Int Front End RAT/Area': 0.0941223,
'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242,
'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965,
'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0618182,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228,
'Renaming Unit/Peak Dynamic': 3.58947,
'Renaming Unit/Runtime Dynamic': 0.133865,
'Renaming Unit/Subthreshold Leakage': 0.0552466,
'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461,
'Runtime Dynamic': 2.73971,
'Subthreshold Leakage': 6.16288,
'Subthreshold Leakage with power gating': 2.55328},
{'Area': 32.0201,
'Execution Unit/Area': 7.68434,
'Execution Unit/Complex ALUs/Area': 0.235435,
'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646,
'Execution Unit/Complex ALUs/Peak Dynamic': 0.0146909,
'Execution Unit/Complex ALUs/Runtime Dynamic': 0.214227,
'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111,
'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163,
'Execution Unit/Floating Point Units/Area': 4.6585,
'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156,
'Execution Unit/Floating Point Units/Peak Dynamic': 0.0762629,
'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033,
'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829,
'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061,
'Execution Unit/Gate Leakage': 0.120359,
'Execution Unit/Instruction Scheduler/Area': 1.66526,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.103046,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519,
'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913,
'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223,
'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562,
'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763,
'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.166209,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964,
'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262,
'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388,
'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608,
'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451,
'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.0838969,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446,
'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.353152,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346,
'Execution Unit/Integer ALUs/Area': 0.47087,
'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291,
'Execution Unit/Integer ALUs/Peak Dynamic': 0.106162,
'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344,
'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222,
'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833,
'Execution Unit/Peak Dynamic': 4.16664,
'Execution Unit/Register Files/Area': 0.570804,
'Execution Unit/Register Files/Floating Point RF/Area': 0.208131,
'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788,
'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.0144077,
'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00432221,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968,
'Execution Unit/Register Files/Gate Leakage': 0.000622708,
'Execution Unit/Register Files/Integer RF/Area': 0.362673,
'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992,
'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0368798,
'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0319654,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675,
'Execution Unit/Register Files/Peak Dynamic': 0.0512875,
'Execution Unit/Register Files/Runtime Dynamic': 0.0362876,
'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387,
'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643,
'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912,
'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402,
'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.081369,
'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.218818,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543,
'Execution Unit/Runtime Dynamic': 1.22786,
'Execution Unit/Subthreshold Leakage': 1.79543,
'Execution Unit/Subthreshold Leakage with power gating': 0.688821,
'Gate Leakage': 0.368936,
'Instruction Fetch Unit/Area': 5.85939,
'Instruction Fetch Unit/Branch Predictor/Area': 0.138516,
'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.000754142,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.000754142,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.000672222,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000268632,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045,
'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838,
'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732,
'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05,
'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602,
'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000459186,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733,
'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00263969,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282,
'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954,
'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758,
'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867,
'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.00668167,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357,
'Instruction Fetch Unit/Gate Leakage': 0.0589979,
'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323,
'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05,
'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827,
'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0307292,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682,
'Instruction Fetch Unit/Instruction Cache/Area': 3.14635,
'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931,
'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 1.95464,
'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.0862819,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386,
'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799,
'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493,
'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404,
'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.10437,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104,
'Instruction Fetch Unit/Peak Dynamic': 4.26802,
'Instruction Fetch Unit/Runtime Dynamic': 0.230703,
'Instruction Fetch Unit/Subthreshold Leakage': 0.932286,
'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843,
'L2/Area': 4.53318,
'L2/Gate Leakage': 0.015464,
'L2/Peak Dynamic': 0.0400426,
'L2/Runtime Dynamic': 0.0100873,
'L2/Subthreshold Leakage': 0.834142,
'L2/Subthreshold Leakage with power gating': 0.401066,
'Load Store Unit/Area': 8.80901,
'Load Store Unit/Data Cache/Area': 6.84535,
'Load Store Unit/Data Cache/Gate Leakage': 0.0279261,
'Load Store Unit/Data Cache/Peak Dynamic': 2.34645,
'Load Store Unit/Data Cache/Runtime Dynamic': 0.549699,
'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675,
'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085,
'Load Store Unit/Gate Leakage': 0.0350888,
'Load Store Unit/LoadQ/Area': 0.0836782,
'Load Store Unit/LoadQ/Gate Leakage': 0.00059896,
'Load Store Unit/LoadQ/Peak Dynamic': 0.0358894,
'Load Store Unit/LoadQ/Runtime Dynamic': 0.0358894,
'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961,
'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918,
'Load Store Unit/Peak Dynamic': 2.51592,
'Load Store Unit/Runtime Dynamic': 0.762582,
'Load Store Unit/StoreQ/Area': 0.322079,
'Load Store Unit/StoreQ/Gate Leakage': 0.00329971,
'Load Store Unit/StoreQ/Peak Dynamic': 0.0884971,
'Load Store Unit/StoreQ/Runtime Dynamic': 0.176994,
'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621,
'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004,
'Load Store Unit/Subthreshold Leakage': 0.591321,
'Load Store Unit/Subthreshold Leakage with power gating': 0.283293,
'Memory Management Unit/Area': 0.4339,
'Memory Management Unit/Dtlb/Area': 0.0879726,
'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729,
'Memory Management Unit/Dtlb/Peak Dynamic': 0.0314079,
'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0319777,
'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699,
'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485,
'Memory Management Unit/Gate Leakage': 0.00808595,
'Memory Management Unit/Itlb/Area': 0.301552,
'Memory Management Unit/Itlb/Gate Leakage': 0.00393464,
'Memory Management Unit/Itlb/Peak Dynamic': 0.121532,
'Memory Management Unit/Itlb/Runtime Dynamic': 0.0142383,
'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758,
'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842,
'Memory Management Unit/Peak Dynamic': 0.331594,
'Memory Management Unit/Runtime Dynamic': 0.046216,
'Memory Management Unit/Subthreshold Leakage': 0.0766103,
'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333,
'Peak Dynamic': 14.9117,
'Renaming Unit/Area': 0.303608,
'Renaming Unit/FP Front End RAT/Area': 0.131045,
'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123,
'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468,
'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.0378998,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885,
'Renaming Unit/Free List/Area': 0.0340654,
'Renaming Unit/Free List/Gate Leakage': 2.5481e-05,
'Renaming Unit/Free List/Peak Dynamic': 0.0306032,
'Renaming Unit/Free List/Runtime Dynamic': 0.00511039,
'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144,
'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064,
'Renaming Unit/Gate Leakage': 0.00708398,
'Renaming Unit/Int Front End RAT/Area': 0.0941223,
'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242,
'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965,
'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0524499,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228,
'Renaming Unit/Peak Dynamic': 3.58947,
'Renaming Unit/Runtime Dynamic': 0.0954601,
'Renaming Unit/Subthreshold Leakage': 0.0552466,
'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461,
'Runtime Dynamic': 2.37291,
'Subthreshold Leakage': 6.16288,
'Subthreshold Leakage with power gating': 2.55328},
{'Area': 32.0201,
'Execution Unit/Area': 7.68434,
'Execution Unit/Complex ALUs/Area': 0.235435,
'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646,
'Execution Unit/Complex ALUs/Peak Dynamic': 0.0118559,
'Execution Unit/Complex ALUs/Runtime Dynamic': 0.212,
'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111,
'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163,
'Execution Unit/Floating Point Units/Area': 4.6585,
'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156,
'Execution Unit/Floating Point Units/Peak Dynamic': 0.060521,
'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033,
'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829,
'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061,
'Execution Unit/Gate Leakage': 0.120359,
'Execution Unit/Instruction Scheduler/Area': 1.66526,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.0715576,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519,
'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913,
'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223,
'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562,
'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763,
'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.11542,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964,
'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262,
'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388,
'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608,
'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451,
'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.05826,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446,
'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.245237,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346,
'Execution Unit/Integer ALUs/Area': 0.47087,
'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291,
'Execution Unit/Integer ALUs/Peak Dynamic': 0.0725621,
'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344,
'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222,
'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833,
'Execution Unit/Peak Dynamic': 4.07335,
'Execution Unit/Register Files/Area': 0.570804,
'Execution Unit/Register Files/Floating Point RF/Area': 0.208131,
'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788,
'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.0114337,
'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00300145,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968,
'Execution Unit/Register Files/Gate Leakage': 0.000622708,
'Execution Unit/Register Files/Integer RF/Area': 0.362673,
'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992,
'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0262853,
'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0221975,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675,
'Execution Unit/Register Files/Peak Dynamic': 0.037719,
'Execution Unit/Register Files/Runtime Dynamic': 0.025199,
'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387,
'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643,
'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912,
'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402,
'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.0583403,
'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.160581,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543,
'Execution Unit/Runtime Dynamic': 1.0484,
'Execution Unit/Subthreshold Leakage': 1.79543,
'Execution Unit/Subthreshold Leakage with power gating': 0.688821,
'Gate Leakage': 0.368936,
'Instruction Fetch Unit/Area': 5.85939,
'Instruction Fetch Unit/Branch Predictor/Area': 0.138516,
'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.000374453,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.000374453,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.000332464,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000132157,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045,
'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838,
'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732,
'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05,
'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602,
'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000318869,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733,
'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00140024,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282,
'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954,
'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758,
'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867,
'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.00336457,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357,
'Instruction Fetch Unit/Gate Leakage': 0.0589979,
'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323,
'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05,
'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827,
'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0213391,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682,
'Instruction Fetch Unit/Instruction Cache/Area': 3.14635,
'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931,
'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 1.35735,
'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.0530035,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386,
'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799,
'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493,
'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404,
'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.0724771,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104,
'Instruction Fetch Unit/Peak Dynamic': 3.64174,
'Instruction Fetch Unit/Runtime Dynamic': 0.151584,
'Instruction Fetch Unit/Subthreshold Leakage': 0.932286,
'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843,
'L2/Area': 4.53318,
'L2/Gate Leakage': 0.015464,
'L2/Peak Dynamic': 0.0384802,
'L2/Runtime Dynamic': 0.00959312,
'L2/Subthreshold Leakage': 0.834142,
'L2/Subthreshold Leakage with power gating': 0.401066,
'Load Store Unit/Area': 8.80901,
'Load Store Unit/Data Cache/Area': 6.84535,
'Load Store Unit/Data Cache/Gate Leakage': 0.0279261,
'Load Store Unit/Data Cache/Peak Dynamic': 2.0509,
'Load Store Unit/Data Cache/Runtime Dynamic': 0.406273,
'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675,
'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085,
'Load Store Unit/Gate Leakage': 0.0350888,
'Load Store Unit/LoadQ/Area': 0.0836782,
'Load Store Unit/LoadQ/Gate Leakage': 0.00059896,
'Load Store Unit/LoadQ/Peak Dynamic': 0.0263276,
'Load Store Unit/LoadQ/Runtime Dynamic': 0.0263275,
'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961,
'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918,
'Load Store Unit/Peak Dynamic': 2.17522,
'Load Store Unit/Runtime Dynamic': 0.562439,
'Load Store Unit/StoreQ/Area': 0.322079,
'Load Store Unit/StoreQ/Gate Leakage': 0.00329971,
'Load Store Unit/StoreQ/Peak Dynamic': 0.0649195,
'Load Store Unit/StoreQ/Runtime Dynamic': 0.129838,
'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621,
'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004,
'Load Store Unit/Subthreshold Leakage': 0.591321,
'Load Store Unit/Subthreshold Leakage with power gating': 0.283293,
'Memory Management Unit/Area': 0.4339,
'Memory Management Unit/Dtlb/Area': 0.0879726,
'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729,
'Memory Management Unit/Dtlb/Peak Dynamic': 0.0230401,
'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0236093,
'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699,
'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485,
'Memory Management Unit/Gate Leakage': 0.00808595,
'Memory Management Unit/Itlb/Area': 0.301552,
'Memory Management Unit/Itlb/Gate Leakage': 0.00393464,
'Memory Management Unit/Itlb/Peak Dynamic': 0.0843949,
'Memory Management Unit/Itlb/Runtime Dynamic': 0.00871477,
'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758,
'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842,
'Memory Management Unit/Peak Dynamic': 0.280083,
'Memory Management Unit/Runtime Dynamic': 0.0323241,
'Memory Management Unit/Subthreshold Leakage': 0.0766103,
'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333,
'Peak Dynamic': 13.7983,
'Renaming Unit/Area': 0.303608,
'Renaming Unit/FP Front End RAT/Area': 0.131045,
'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123,
'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468,
'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.0300766,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885,
'Renaming Unit/Free List/Area': 0.0340654,
'Renaming Unit/Free List/Gate Leakage': 2.5481e-05,
'Renaming Unit/Free List/Peak Dynamic': 0.0306032,
'Renaming Unit/Free List/Runtime Dynamic': 0.00359451,
'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144,
'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064,
'Renaming Unit/Gate Leakage': 0.00708398,
'Renaming Unit/Int Front End RAT/Area': 0.0941223,
'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242,
'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965,
'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0366169,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228,
'Renaming Unit/Peak Dynamic': 3.58947,
'Renaming Unit/Runtime Dynamic': 0.070288,
'Renaming Unit/Subthreshold Leakage': 0.0552466,
'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461,
'Runtime Dynamic': 1.87462,
'Subthreshold Leakage': 6.16288,
'Subthreshold Leakage with power gating': 2.55328}],
'DRAM': {'Area': 0,
'Gate Leakage': 0,
'Peak Dynamic': 6.7133013220344875,
'Runtime Dynamic': 6.7133013220344875,
'Subthreshold Leakage': 4.252,
'Subthreshold Leakage with power gating': 4.252},
'L3': [{'Area': 61.9075,
'Gate Leakage': 0.0484137,
'Peak Dynamic': 0.334987,
'Runtime Dynamic': 0.0855449,
'Subthreshold Leakage': 6.80085,
'Subthreshold Leakage with power gating': 3.32364}],
'Processor': {'Area': 191.908,
'Gate Leakage': 1.53485,
'Peak Dynamic': 67.4667,
'Peak Power': 100.579,
'Runtime Dynamic': 12.4575,
'Subthreshold Leakage': 31.5774,
'Subthreshold Leakage with power gating': 13.9484,
'Total Cores/Area': 128.669,
'Total Cores/Gate Leakage': 1.4798,
'Total Cores/Peak Dynamic': 67.1317,
'Total Cores/Runtime Dynamic': 12.3719,
'Total Cores/Subthreshold Leakage': 24.7074,
'Total Cores/Subthreshold Leakage with power gating': 10.2429,
'Total L3s/Area': 61.9075,
'Total L3s/Gate Leakage': 0.0484137,
'Total L3s/Peak Dynamic': 0.334987,
'Total L3s/Runtime Dynamic': 0.0855449,
'Total L3s/Subthreshold Leakage': 6.80085,
'Total L3s/Subthreshold Leakage with power gating': 3.32364,
'Total Leakage': 33.1122,
'Total NoCs/Area': 1.33155,
'Total NoCs/Gate Leakage': 0.00662954,
'Total NoCs/Peak Dynamic': 0.0,
'Total NoCs/Runtime Dynamic': 0.0,
'Total NoCs/Subthreshold Leakage': 0.0691322,
'Total NoCs/Subthreshold Leakage with power gating': 0.0259246}} | power = {'BUSES': {'Area': 1.33155, 'Bus/Area': 1.33155, 'Bus/Gate Leakage': 0.00662954, 'Bus/Peak Dynamic': 0.0, 'Bus/Runtime Dynamic': 0.0, 'Bus/Subthreshold Leakage': 0.0691322, 'Bus/Subthreshold Leakage with power gating': 0.0259246, 'Gate Leakage': 0.00662954, 'Peak Dynamic': 0.0, 'Runtime Dynamic': 0.0, 'Subthreshold Leakage': 0.0691322, 'Subthreshold Leakage with power gating': 0.0259246}, 'Core': [{'Area': 32.6082, 'Execution Unit/Area': 8.2042, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 0.063025, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.252192, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 0.336758, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.122718, 'Execution Unit/Instruction Scheduler/Area': 2.17927, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.328073, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.00115349, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.20978, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.28979, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.017004, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00962066, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00730101, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 1.00996, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00529112, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 2.07911, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.501812, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0800117, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0455351, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 4.84781, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.841232, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.000856399, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.55892, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.287803, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.0178624, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00897339, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 1.07941, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.114878, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.0641291, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.234815, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 5.93592, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.0636208, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.0105051, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0997069, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0776918, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.163328, 'Execution Unit/Register Files/Runtime Dynamic': 0.0881969, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0442632, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00607074, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.258199, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.653394, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.0920413, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0345155, 'Execution Unit/Runtime Dynamic': 2.47857, 'Execution Unit/Subthreshold Leakage': 1.83518, 'Execution Unit/Subthreshold Leakage with power gating': 0.709678, 'Gate Leakage': 0.372997, 'Instruction Fetch Unit/Area': 5.86007, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00171471, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00171471, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00149793, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000582287, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.00111605, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00604339, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0162826, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0590479, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0746871, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 4.75074, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.220284, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.253671, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 7.20335, 'Instruction Fetch Unit/Runtime Dynamic': 0.570969, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932587, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.408542, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0912664, 'L2/Runtime Dynamic': 0.0149542, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80969, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 3.91288, 'Load Store Unit/Data Cache/Runtime Dynamic': 1.30685, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0351387, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0865673, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0865674, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 4.32334, 'Load Store Unit/Runtime Dynamic': 1.82034, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.21346, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.426921, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591622, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283406, 'Memory Management Unit/Area': 0.434579, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0757577, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0770213, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00813591, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.295384, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0364302, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.584853, 'Memory Management Unit/Runtime Dynamic': 0.113451, 'Memory Management Unit/Subthreshold Leakage': 0.0769113, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0399462, 'Peak Dynamic': 22.7004, 'Renaming Unit/Area': 0.369768, 'Renaming Unit/FP Front End RAT/Area': 0.168486, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00489731, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 3.33511, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.221959, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0437281, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.024925, 'Renaming Unit/Free List/Area': 0.0414755, 'Renaming Unit/Free List/Gate Leakage': 4.15911e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0401324, 'Renaming Unit/Free List/Runtime Dynamic': 0.0174892, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000670426, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000377987, 'Renaming Unit/Gate Leakage': 0.00863632, 'Renaming Unit/Int Front End RAT/Area': 0.114751, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.00038343, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.86945, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.146944, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00611897, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00348781, 'Renaming Unit/Peak Dynamic': 4.56169, 'Renaming Unit/Runtime Dynamic': 0.386393, 'Renaming Unit/Subthreshold Leakage': 0.070483, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0362779, 'Runtime Dynamic': 5.38467, 'Subthreshold Leakage': 6.21877, 'Subthreshold Leakage with power gating': 2.58311}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 0.0248217, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.222185, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 0.132187, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.123111, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.198574, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.100234, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.421919, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.120538, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 4.29263, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.0249729, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00516385, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0467096, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0381898, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.0716825, 'Execution Unit/Register Files/Runtime Dynamic': 0.0433536, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.104611, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.268124, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 1.36096, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00096861, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00096861, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.000870559, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.00035172, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000548599, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00335638, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.00832581, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0367128, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 2.33525, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.106878, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.124693, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 4.6671, 'Instruction Fetch Unit/Runtime Dynamic': 0.279967, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0412946, 'L2/Runtime Dynamic': 0.00689639, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 2.56248, 'Load Store Unit/Data Cache/Runtime Dynamic': 0.647909, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0428786, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0428785, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 2.76496, 'Load Store Unit/Runtime Dynamic': 0.902249, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.105731, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.211462, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0375244, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0380905, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.145197, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0176811, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.365766, 'Memory Management Unit/Runtime Dynamic': 0.0557716, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 15.7212, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.0656927, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.00635391, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0618182, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.133865, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 2.73971, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 0.0146909, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.214227, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 0.0762629, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.103046, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.166209, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.0838969, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.353152, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.106162, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 4.16664, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.0144077, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00432221, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0368798, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0319654, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.0512875, 'Execution Unit/Register Files/Runtime Dynamic': 0.0362876, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.081369, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.218818, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 1.22786, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.000754142, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.000754142, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.000672222, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000268632, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000459186, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00263969, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.00668167, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0307292, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 1.95464, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.0862819, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.10437, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 4.26802, 'Instruction Fetch Unit/Runtime Dynamic': 0.230703, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0400426, 'L2/Runtime Dynamic': 0.0100873, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 2.34645, 'Load Store Unit/Data Cache/Runtime Dynamic': 0.549699, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0358894, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0358894, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 2.51592, 'Load Store Unit/Runtime Dynamic': 0.762582, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.0884971, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.176994, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0314079, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0319777, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.121532, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0142383, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.331594, 'Memory Management Unit/Runtime Dynamic': 0.046216, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 14.9117, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.0378998, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.00511039, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0524499, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.0954601, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 2.37291, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 0.0118559, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.212, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 0.060521, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.0715576, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.11542, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.05826, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.245237, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.0725621, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 4.07335, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.0114337, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00300145, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0262853, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0221975, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.037719, 'Execution Unit/Register Files/Runtime Dynamic': 0.025199, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.0583403, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.160581, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 1.0484, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.000374453, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.000374453, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.000332464, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000132157, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.000318869, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00140024, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.00336457, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0213391, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 1.35735, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.0530035, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.0724771, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 3.64174, 'Instruction Fetch Unit/Runtime Dynamic': 0.151584, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0384802, 'L2/Runtime Dynamic': 0.00959312, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 2.0509, 'Load Store Unit/Data Cache/Runtime Dynamic': 0.406273, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0263276, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0263275, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 2.17522, 'Load Store Unit/Runtime Dynamic': 0.562439, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.0649195, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.129838, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0230401, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0236093, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.0843949, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.00871477, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.280083, 'Memory Management Unit/Runtime Dynamic': 0.0323241, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 13.7983, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.0300766, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.00359451, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.0366169, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.070288, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 1.87462, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}], 'DRAM': {'Area': 0, 'Gate Leakage': 0, 'Peak Dynamic': 6.7133013220344875, 'Runtime Dynamic': 6.7133013220344875, 'Subthreshold Leakage': 4.252, 'Subthreshold Leakage with power gating': 4.252}, 'L3': [{'Area': 61.9075, 'Gate Leakage': 0.0484137, 'Peak Dynamic': 0.334987, 'Runtime Dynamic': 0.0855449, 'Subthreshold Leakage': 6.80085, 'Subthreshold Leakage with power gating': 3.32364}], 'Processor': {'Area': 191.908, 'Gate Leakage': 1.53485, 'Peak Dynamic': 67.4667, 'Peak Power': 100.579, 'Runtime Dynamic': 12.4575, 'Subthreshold Leakage': 31.5774, 'Subthreshold Leakage with power gating': 13.9484, 'Total Cores/Area': 128.669, 'Total Cores/Gate Leakage': 1.4798, 'Total Cores/Peak Dynamic': 67.1317, 'Total Cores/Runtime Dynamic': 12.3719, 'Total Cores/Subthreshold Leakage': 24.7074, 'Total Cores/Subthreshold Leakage with power gating': 10.2429, 'Total L3s/Area': 61.9075, 'Total L3s/Gate Leakage': 0.0484137, 'Total L3s/Peak Dynamic': 0.334987, 'Total L3s/Runtime Dynamic': 0.0855449, 'Total L3s/Subthreshold Leakage': 6.80085, 'Total L3s/Subthreshold Leakage with power gating': 3.32364, 'Total Leakage': 33.1122, 'Total NoCs/Area': 1.33155, 'Total NoCs/Gate Leakage': 0.00662954, 'Total NoCs/Peak Dynamic': 0.0, 'Total NoCs/Runtime Dynamic': 0.0, 'Total NoCs/Subthreshold Leakage': 0.0691322, 'Total NoCs/Subthreshold Leakage with power gating': 0.0259246}} |
# Definition for a binary tree node.
class TreeNode:
def __init__(self, val=0, left=None, right=None):
self.val = val
self.left = left
self.right = right
class Solution:
sum = 0
def DFS(self,node: TreeNode, path: str):
if node is None:
return
if node.left is None and node.right is None:
self.sum+= int(path+str(node.val))
return
path = path+str(node.val)
self.DFS(node.left, path)
self.DFS(node.right, path)
def sumNumbers(self, root: TreeNode) -> int:
if root is None:
return []
self.DFS(root, "")
return self.sum
| class Treenode:
def __init__(self, val=0, left=None, right=None):
self.val = val
self.left = left
self.right = right
class Solution:
sum = 0
def dfs(self, node: TreeNode, path: str):
if node is None:
return
if node.left is None and node.right is None:
self.sum += int(path + str(node.val))
return
path = path + str(node.val)
self.DFS(node.left, path)
self.DFS(node.right, path)
def sum_numbers(self, root: TreeNode) -> int:
if root is None:
return []
self.DFS(root, '')
return self.sum |
N=int(input())
count=0
for i in range(1,N+1):
if len(str(i))%2==1:count+=1
print(count) | n = int(input())
count = 0
for i in range(1, N + 1):
if len(str(i)) % 2 == 1:
count += 1
print(count) |
#
# PySNMP MIB module CXCFG-IPX-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CXCFG-IPX-MIB
# Produced by pysmi-0.3.4 at Wed May 1 12:32:22 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)
#
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsIntersection, SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion", "ValueSizeConstraint")
cxIpx, Alias = mibBuilder.importSymbols("CXProduct-SMI", "cxIpx", "Alias")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
iso, MibIdentifier, Counter64, ModuleIdentity, Counter32, Unsigned32, MibScalar, MibTable, MibTableRow, MibTableColumn, ObjectIdentity, Bits, NotificationType, TimeTicks, Gauge32, Integer32, IpAddress = mibBuilder.importSymbols("SNMPv2-SMI", "iso", "MibIdentifier", "Counter64", "ModuleIdentity", "Counter32", "Unsigned32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ObjectIdentity", "Bits", "NotificationType", "TimeTicks", "Gauge32", "Integer32", "IpAddress")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
cxCfgIpx = MibIdentifier((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1))
class NetNumber(OctetString):
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(4, 4)
fixedLength = 4
cxCfgIpxNumClockTicksPerSecond = MibScalar((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxNumClockTicksPerSecond.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxNumClockTicksPerSecond.setDescription('Identifies the number of clock ticks per second. Range of Values: None Default Value: The value is always 1 ')
cxCfgIpxPortTable = MibTable((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2), )
if mibBuilder.loadTexts: cxCfgIpxPortTable.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortTable.setDescription('Provides configuration information for each IPX port. The table contains three default entries (rows); each row corresponds to a particular IPX port. Some of the values in a row can be modified. If more than three IPX ports are required, additional entries can be added.')
cxCfgIpxPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1), ).setIndexNames((0, "CXCFG-IPX-MIB", "cxCfgIpxPort"))
if mibBuilder.loadTexts: cxCfgIpxPortEntry.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortEntry.setDescription('Provides configuration information for a particular IPX port. Some of the parameters can be modified.')
cxCfgIpxPort = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cxCfgIpxPort.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPort.setDescription('Identifies the number of the IPX Port. The number is used as local index for this and the ipxStatsTable. Range of Values: From 1 to 32 Default Value: None Note: The system defines three default entries; their respective values are 1, 2, and 3.')
cxCfgIpxPortIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cxCfgIpxPortIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortIfIndex.setDescription('Identifies the table row that contains configuration or monitoring objects for a specific type of physical interface. Range of Values: From 1 to the number of entries in the interface table. Default value: None ')
cxCfgIpxPortSubnetworkSAPAlias = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 3), Alias()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortSubnetworkSAPAlias.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortSubnetworkSAPAlias.setDescription('Determines the name which uniquely defines the cxCfgIpxPortSubnetworkSap. Range of Values: 0 to 16 alphanumeric characters. The first character must be a letter, spaces are not allowed. Default Values: None Note: The system defines three default entries; their respective values are LAN-PORT1, CNV-PORT1, and CNV-PORT2. Related Parameter: The object must be the same as cxLanIoPortAlias of the cxLanIoPortTable, and cxFwkDestAlias in cxFwkCircuitTable. Configuration Changed: Administrative')
cxCfgIpxPortState = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone('off')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortState.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortState.setDescription('Determines the initialization state of the IPX port. Options: on (1): The port is active, transmission is possible. off (2): The port is inactive, transmission is not possible. Default Values: (1) On. For LAN ports (2) Off. For convergence ports Configuration Changed: Administrative')
cxCfgIpxPortRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("invalid", 1), ("valid", 2))).clone('valid')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortRowStatus.setDescription('Determines the status of the objects in a table row. Options: valid (1): Values are enabled. invalid (2): Row is flagged, after next reset the values will be disabled and the row will be deleted from the table. Default Value: (1) Valid. Values are enabled Configuration Changed: Administrative ')
cxCfgIpxPortTransportTime = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortTransportTime.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortTransportTime.setDescription('Determines the transport time, in clock ticks, for LAN or WAN links. This value is set to 1 for LAN links. WAN links may have a value of 1 or higher. One clock tick is 55 ms. Range of Values: From 1 to 30 Default Value: 1 Configuration Changed: Administrative')
cxCfgIpxPortMaxHops = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16)).clone(16)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortMaxHops.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortMaxHops.setDescription('Determines the maximum number of hops a packet may take before it is discarded. Range of Values: From 1 to 16 Default Value: 16 Configuration Changed: Administrative ')
cxCfgIpxPortIntNetNum = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 8), NetNumber()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortIntNetNum.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortIntNetNum.setDescription('Determines the IPX internal network number associated with the port. The number must be entered as 8 hexadecimal characters, for example 0xAB12CD34. The x must be lowercase; the others are not case sensitive. Range of Values: 4 octets, each character ranging from 00 to FF Default Value: None Note: The system defines three default entries; their respective values are 00 00 00 0xa2, 00 00 00 0xf1, and 00 00 00 0xf2. Configuration Changed: Administrative ')
cxCfgIpxPortPerSapBcast = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone('on')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortPerSapBcast.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortPerSapBcast.setDescription('Determines whether periodic SAP broadcasting is active. Options: On (1): SAP broadcasting is active, and the router sends periodic SAP broadcasts to advertise its services to other locally attached networks. Off (2): SAP broadcasting is inactive. Default Value: (1) Related parameter: The frequency of the broadcast is determined by cxCfgIpxPortPerSAPTxTimer. Configuration Changed: Administrative')
cxCfgIpxPortPerRipBcast = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone('on')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortPerRipBcast.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortPerRipBcast.setDescription('Determines whether periodic RIP broadcasting is active. Options: on (1): RIP broadcasting is active, and the router sends periodic RIP broadcasts to advertise its services to other locally attached networks. off (2): RIP broadcasting is inactive. Default Value: on (1) Related Parameter: The frequency of the broadcast is determined by cxCfgIpxPortPerRipTxTimer. Configuration Changed: Administrative')
cxCfgIpxPortSapBcast = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone('on')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortSapBcast.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortSapBcast.setDescription('Determines whether the port sends a SAP broadcast in response to a SAP query sent by another router. Options: on (1): The port will respond to SAP queries. off (2): The port will not respond to SAP queries. Default Value: on (1) Configuration Changed: Administrative')
cxCfgIpxPortRipBcast = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone('on')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortRipBcast.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortRipBcast.setDescription('Determines whether the port sends a RIP broadcast in response to a RIP query sent by another router. When the value is set to on, the port responds to RIP queries. Options: On (1): The port will respond to RIP queries. Off (2): The port will not respond to RIP queries. Default Value: on (1) Configuration Changed: Administrative')
cxCfgIpxPortDiagPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone('off')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortDiagPackets.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortDiagPackets.setDescription('Determines whether the IPX port will respond to diagnostic packets. Options: On (1): The port will respond, and will transmit a diagnostic response packet. Off (2): The port will not respond. Default Value: off (2) Configuration Changed: Administrative. ')
cxCfgIpxPortPerRipTxTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 3600)).clone(60)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortPerRipTxTimer.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortPerRipTxTimer.setDescription('Determines the length of time, in seconds, between periodic RIP broadcasts. Range of Values: From 1 to 3600 Default Value: 60 Configuration Changed: Administrative ')
cxCfgIpxPortPerSapTxTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 3600)).clone(60)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortPerSapTxTimer.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortPerSapTxTimer.setDescription('Determines the length of time, in seconds, between periodic SAP broadcasts. Range of Values: From 1 to 3600 Default Value: 60 Configuration Changed: Administrative')
cxCfgIpxPortRipAgeTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 3600)).clone(180)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortRipAgeTimer.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortRipAgeTimer.setDescription("Determines the length of time, in seconds, that an entry can remain in the IPX port's RIP table without being updated. When the value (number of seconds) expires the entry in the RIP table is deleted. A value of 0 means aging is not used. Range of Values: From 1 to 3600 Default Value: 180 Configuration Changed: Administrative ")
cxCfgIpxPortSapAgeTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 3600)).clone(180)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortSapAgeTimer.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortSapAgeTimer.setDescription("Determines the length of time (aging), in seconds, that an entry can remain in the IPX port's SAP table without being updated. When the value (number of seconds) expires the entry in the SAP table is deleted. A value of 0 means aging is not used. Range of Values: From 1 to 3600 Default Value: 180 Configuration Changed: Administrative ")
cxCfgIpxPortFrameType = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("raw-802-3", 1), ("ethernet-II", 2), ("llc-802-2", 3), ("snap", 4))).clone('raw-802-3')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortFrameType.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortFrameType.setDescription('Determines which type of framing is used for IPX header information. Framing refers to the way the header information is formatted. The format is determined by the destination IPX number. Upon receipt of data, the IPX router checks its address tables to determine which header format is used by the destination address. The first three options are used for LAN data; the fourth option is used for WAN (frame relay) destinations. Options: raw- 802-3 (1): Used for LAN data. ethernet-II (2): Used for LAN data. LLC-802-3 (3): Used for LAN data. snap (4): Used for WAN (frame relay). Default Value: raw- 802-3 (1) Configuration Changed: Administrative')
cxCfgIpxPortWatchSpoof = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone('off')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortWatchSpoof.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortWatchSpoof.setDescription('Determines whether IPX Watchdog Spoofing is enabled (on). IPX Watchdog Spoofing is a software technique that limits the number of IPX Watchdog frames that are sent over a WAN; the technique is intended to decrease the use of expensive WAN lines without disturbing overall network use. If IPX Watchdog Spoofing is desired, the remote peer must also have this parameter enabled. Options: on (1): IPX Watchdog Spoofing is enabled. off (2): IPX Watchdog Spoofing is disabled. Default Value: off (2) Configuration Changed: Administrative ')
cxCfgIpxPortSpxWatchSpoof = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone('off')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortSpxWatchSpoof.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortSpxWatchSpoof.setDescription('Determines whether SPX Watchdog Spoofing is enabled (on). SPX Watchdog Spoofing is a software technique that limits the number of SPX Watchdog frames that are sent over a WAN; the technique is intended to decrease the use of expensive WAN lines without disturbing overall network use. If SPX Watchdog Spoofing is desired, the remote peer must also have this parameter on. Options: On (1): SPX Watchdog Spoofing is enabled. Off (2): SPX Watchdog Spoofing is disabled. Default Value: off (2) Configuration Changed: Administrative')
cxCfgIpxPortSerialSpoof = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2))).clone('off')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortSerialSpoof.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortSerialSpoof.setDescription('Determines whether Serialization Spoofing is (enabled) on. Serialization Spoofing is a software technique that limits the number of Serialization frames (they test the legal version of Novell software) that are sent over a WAN; the technique is intended to decrease the use of expensive WAN lines without disturbing overall network use. Options: on (1): Serialization Spoofing is enabled. off (2): Serialization Spoofing is disabled. Default Value: off (2) Configuration Changed: Administrative ')
cxCfgIpxPortSRSupport = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('disabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cxCfgIpxPortSRSupport.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxPortSRSupport.setDescription('Determines whether the port should support Source Routing packet. If it is enabled, the physical infterface of the port must be Token-Ring. If it is disabled, any Source Routing packet will be discarded. Default Value: disabled (2) Configuration Changed: administrative')
cxCfgIpxMibLevel = MibScalar((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 20), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cxCfgIpxMibLevel.setStatus('mandatory')
if mibBuilder.loadTexts: cxCfgIpxMibLevel.setDescription('Used to determine current MIB module release supported by the agent. Object is in decimal.')
mibBuilder.exportSymbols("CXCFG-IPX-MIB", cxCfgIpxPortFrameType=cxCfgIpxPortFrameType, cxCfgIpxPortRowStatus=cxCfgIpxPortRowStatus, cxCfgIpxPortIfIndex=cxCfgIpxPortIfIndex, cxCfgIpxPortSubnetworkSAPAlias=cxCfgIpxPortSubnetworkSAPAlias, cxCfgIpxPortSpxWatchSpoof=cxCfgIpxPortSpxWatchSpoof, cxCfgIpxPortPerSapTxTimer=cxCfgIpxPortPerSapTxTimer, cxCfgIpxNumClockTicksPerSecond=cxCfgIpxNumClockTicksPerSecond, cxCfgIpxPortRipAgeTimer=cxCfgIpxPortRipAgeTimer, cxCfgIpxPortTransportTime=cxCfgIpxPortTransportTime, cxCfgIpxPortRipBcast=cxCfgIpxPortRipBcast, cxCfgIpxPortMaxHops=cxCfgIpxPortMaxHops, cxCfgIpxPortState=cxCfgIpxPortState, cxCfgIpxPortEntry=cxCfgIpxPortEntry, NetNumber=NetNumber, cxCfgIpxMibLevel=cxCfgIpxMibLevel, cxCfgIpxPortSerialSpoof=cxCfgIpxPortSerialSpoof, cxCfgIpxPortSapBcast=cxCfgIpxPortSapBcast, cxCfgIpxPortSapAgeTimer=cxCfgIpxPortSapAgeTimer, cxCfgIpxPortIntNetNum=cxCfgIpxPortIntNetNum, cxCfgIpxPortSRSupport=cxCfgIpxPortSRSupport, cxCfgIpxPortPerRipTxTimer=cxCfgIpxPortPerRipTxTimer, cxCfgIpx=cxCfgIpx, cxCfgIpxPortWatchSpoof=cxCfgIpxPortWatchSpoof, cxCfgIpxPortPerSapBcast=cxCfgIpxPortPerSapBcast, cxCfgIpxPortTable=cxCfgIpxPortTable, cxCfgIpxPortPerRipBcast=cxCfgIpxPortPerRipBcast, cxCfgIpxPortDiagPackets=cxCfgIpxPortDiagPackets, cxCfgIpxPort=cxCfgIpxPort)
| (object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_intersection, single_value_constraint, value_range_constraint, constraints_union, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'ValueSizeConstraint')
(cx_ipx, alias) = mibBuilder.importSymbols('CXProduct-SMI', 'cxIpx', 'Alias')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(iso, mib_identifier, counter64, module_identity, counter32, unsigned32, mib_scalar, mib_table, mib_table_row, mib_table_column, object_identity, bits, notification_type, time_ticks, gauge32, integer32, ip_address) = mibBuilder.importSymbols('SNMPv2-SMI', 'iso', 'MibIdentifier', 'Counter64', 'ModuleIdentity', 'Counter32', 'Unsigned32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ObjectIdentity', 'Bits', 'NotificationType', 'TimeTicks', 'Gauge32', 'Integer32', 'IpAddress')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
cx_cfg_ipx = mib_identifier((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1))
class Netnumber(OctetString):
subtype_spec = OctetString.subtypeSpec + value_size_constraint(4, 4)
fixed_length = 4
cx_cfg_ipx_num_clock_ticks_per_second = mib_scalar((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxNumClockTicksPerSecond.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxNumClockTicksPerSecond.setDescription('Identifies the number of clock ticks per second. Range of Values: None Default Value: The value is always 1 ')
cx_cfg_ipx_port_table = mib_table((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2))
if mibBuilder.loadTexts:
cxCfgIpxPortTable.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortTable.setDescription('Provides configuration information for each IPX port. The table contains three default entries (rows); each row corresponds to a particular IPX port. Some of the values in a row can be modified. If more than three IPX ports are required, additional entries can be added.')
cx_cfg_ipx_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1)).setIndexNames((0, 'CXCFG-IPX-MIB', 'cxCfgIpxPort'))
if mibBuilder.loadTexts:
cxCfgIpxPortEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortEntry.setDescription('Provides configuration information for a particular IPX port. Some of the parameters can be modified.')
cx_cfg_ipx_port = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cxCfgIpxPort.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPort.setDescription('Identifies the number of the IPX Port. The number is used as local index for this and the ipxStatsTable. Range of Values: From 1 to 32 Default Value: None Note: The system defines three default entries; their respective values are 1, 2, and 3.')
cx_cfg_ipx_port_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cxCfgIpxPortIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortIfIndex.setDescription('Identifies the table row that contains configuration or monitoring objects for a specific type of physical interface. Range of Values: From 1 to the number of entries in the interface table. Default value: None ')
cx_cfg_ipx_port_subnetwork_sap_alias = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 3), alias()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortSubnetworkSAPAlias.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortSubnetworkSAPAlias.setDescription('Determines the name which uniquely defines the cxCfgIpxPortSubnetworkSap. Range of Values: 0 to 16 alphanumeric characters. The first character must be a letter, spaces are not allowed. Default Values: None Note: The system defines three default entries; their respective values are LAN-PORT1, CNV-PORT1, and CNV-PORT2. Related Parameter: The object must be the same as cxLanIoPortAlias of the cxLanIoPortTable, and cxFwkDestAlias in cxFwkCircuitTable. Configuration Changed: Administrative')
cx_cfg_ipx_port_state = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone('off')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortState.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortState.setDescription('Determines the initialization state of the IPX port. Options: on (1): The port is active, transmission is possible. off (2): The port is inactive, transmission is not possible. Default Values: (1) On. For LAN ports (2) Off. For convergence ports Configuration Changed: Administrative')
cx_cfg_ipx_port_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('invalid', 1), ('valid', 2))).clone('valid')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortRowStatus.setDescription('Determines the status of the objects in a table row. Options: valid (1): Values are enabled. invalid (2): Row is flagged, after next reset the values will be disabled and the row will be deleted from the table. Default Value: (1) Valid. Values are enabled Configuration Changed: Administrative ')
cx_cfg_ipx_port_transport_time = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 30)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortTransportTime.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortTransportTime.setDescription('Determines the transport time, in clock ticks, for LAN or WAN links. This value is set to 1 for LAN links. WAN links may have a value of 1 or higher. One clock tick is 55 ms. Range of Values: From 1 to 30 Default Value: 1 Configuration Changed: Administrative')
cx_cfg_ipx_port_max_hops = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 16)).clone(16)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortMaxHops.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortMaxHops.setDescription('Determines the maximum number of hops a packet may take before it is discarded. Range of Values: From 1 to 16 Default Value: 16 Configuration Changed: Administrative ')
cx_cfg_ipx_port_int_net_num = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 8), net_number()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortIntNetNum.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortIntNetNum.setDescription('Determines the IPX internal network number associated with the port. The number must be entered as 8 hexadecimal characters, for example 0xAB12CD34. The x must be lowercase; the others are not case sensitive. Range of Values: 4 octets, each character ranging from 00 to FF Default Value: None Note: The system defines three default entries; their respective values are 00 00 00 0xa2, 00 00 00 0xf1, and 00 00 00 0xf2. Configuration Changed: Administrative ')
cx_cfg_ipx_port_per_sap_bcast = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone('on')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortPerSapBcast.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortPerSapBcast.setDescription('Determines whether periodic SAP broadcasting is active. Options: On (1): SAP broadcasting is active, and the router sends periodic SAP broadcasts to advertise its services to other locally attached networks. Off (2): SAP broadcasting is inactive. Default Value: (1) Related parameter: The frequency of the broadcast is determined by cxCfgIpxPortPerSAPTxTimer. Configuration Changed: Administrative')
cx_cfg_ipx_port_per_rip_bcast = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone('on')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortPerRipBcast.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortPerRipBcast.setDescription('Determines whether periodic RIP broadcasting is active. Options: on (1): RIP broadcasting is active, and the router sends periodic RIP broadcasts to advertise its services to other locally attached networks. off (2): RIP broadcasting is inactive. Default Value: on (1) Related Parameter: The frequency of the broadcast is determined by cxCfgIpxPortPerRipTxTimer. Configuration Changed: Administrative')
cx_cfg_ipx_port_sap_bcast = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone('on')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortSapBcast.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortSapBcast.setDescription('Determines whether the port sends a SAP broadcast in response to a SAP query sent by another router. Options: on (1): The port will respond to SAP queries. off (2): The port will not respond to SAP queries. Default Value: on (1) Configuration Changed: Administrative')
cx_cfg_ipx_port_rip_bcast = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone('on')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortRipBcast.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortRipBcast.setDescription('Determines whether the port sends a RIP broadcast in response to a RIP query sent by another router. When the value is set to on, the port responds to RIP queries. Options: On (1): The port will respond to RIP queries. Off (2): The port will not respond to RIP queries. Default Value: on (1) Configuration Changed: Administrative')
cx_cfg_ipx_port_diag_packets = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone('off')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortDiagPackets.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortDiagPackets.setDescription('Determines whether the IPX port will respond to diagnostic packets. Options: On (1): The port will respond, and will transmit a diagnostic response packet. Off (2): The port will not respond. Default Value: off (2) Configuration Changed: Administrative. ')
cx_cfg_ipx_port_per_rip_tx_timer = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(1, 3600)).clone(60)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortPerRipTxTimer.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortPerRipTxTimer.setDescription('Determines the length of time, in seconds, between periodic RIP broadcasts. Range of Values: From 1 to 3600 Default Value: 60 Configuration Changed: Administrative ')
cx_cfg_ipx_port_per_sap_tx_timer = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(1, 3600)).clone(60)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortPerSapTxTimer.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortPerSapTxTimer.setDescription('Determines the length of time, in seconds, between periodic SAP broadcasts. Range of Values: From 1 to 3600 Default Value: 60 Configuration Changed: Administrative')
cx_cfg_ipx_port_rip_age_timer = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 3600)).clone(180)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortRipAgeTimer.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortRipAgeTimer.setDescription("Determines the length of time, in seconds, that an entry can remain in the IPX port's RIP table without being updated. When the value (number of seconds) expires the entry in the RIP table is deleted. A value of 0 means aging is not used. Range of Values: From 1 to 3600 Default Value: 180 Configuration Changed: Administrative ")
cx_cfg_ipx_port_sap_age_timer = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(1, 3600)).clone(180)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortSapAgeTimer.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortSapAgeTimer.setDescription("Determines the length of time (aging), in seconds, that an entry can remain in the IPX port's SAP table without being updated. When the value (number of seconds) expires the entry in the SAP table is deleted. A value of 0 means aging is not used. Range of Values: From 1 to 3600 Default Value: 180 Configuration Changed: Administrative ")
cx_cfg_ipx_port_frame_type = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('raw-802-3', 1), ('ethernet-II', 2), ('llc-802-2', 3), ('snap', 4))).clone('raw-802-3')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortFrameType.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortFrameType.setDescription('Determines which type of framing is used for IPX header information. Framing refers to the way the header information is formatted. The format is determined by the destination IPX number. Upon receipt of data, the IPX router checks its address tables to determine which header format is used by the destination address. The first three options are used for LAN data; the fourth option is used for WAN (frame relay) destinations. Options: raw- 802-3 (1): Used for LAN data. ethernet-II (2): Used for LAN data. LLC-802-3 (3): Used for LAN data. snap (4): Used for WAN (frame relay). Default Value: raw- 802-3 (1) Configuration Changed: Administrative')
cx_cfg_ipx_port_watch_spoof = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone('off')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortWatchSpoof.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortWatchSpoof.setDescription('Determines whether IPX Watchdog Spoofing is enabled (on). IPX Watchdog Spoofing is a software technique that limits the number of IPX Watchdog frames that are sent over a WAN; the technique is intended to decrease the use of expensive WAN lines without disturbing overall network use. If IPX Watchdog Spoofing is desired, the remote peer must also have this parameter enabled. Options: on (1): IPX Watchdog Spoofing is enabled. off (2): IPX Watchdog Spoofing is disabled. Default Value: off (2) Configuration Changed: Administrative ')
cx_cfg_ipx_port_spx_watch_spoof = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone('off')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortSpxWatchSpoof.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortSpxWatchSpoof.setDescription('Determines whether SPX Watchdog Spoofing is enabled (on). SPX Watchdog Spoofing is a software technique that limits the number of SPX Watchdog frames that are sent over a WAN; the technique is intended to decrease the use of expensive WAN lines without disturbing overall network use. If SPX Watchdog Spoofing is desired, the remote peer must also have this parameter on. Options: On (1): SPX Watchdog Spoofing is enabled. Off (2): SPX Watchdog Spoofing is disabled. Default Value: off (2) Configuration Changed: Administrative')
cx_cfg_ipx_port_serial_spoof = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2))).clone('off')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortSerialSpoof.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortSerialSpoof.setDescription('Determines whether Serialization Spoofing is (enabled) on. Serialization Spoofing is a software technique that limits the number of Serialization frames (they test the legal version of Novell software) that are sent over a WAN; the technique is intended to decrease the use of expensive WAN lines without disturbing overall network use. Options: on (1): Serialization Spoofing is enabled. off (2): Serialization Spoofing is disabled. Default Value: off (2) Configuration Changed: Administrative ')
cx_cfg_ipx_port_sr_support = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 2, 1, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('disabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cxCfgIpxPortSRSupport.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxPortSRSupport.setDescription('Determines whether the port should support Source Routing packet. If it is enabled, the physical infterface of the port must be Token-Ring. If it is disabled, any Source Routing packet will be discarded. Default Value: disabled (2) Configuration Changed: administrative')
cx_cfg_ipx_mib_level = mib_scalar((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 13, 1, 20), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cxCfgIpxMibLevel.setStatus('mandatory')
if mibBuilder.loadTexts:
cxCfgIpxMibLevel.setDescription('Used to determine current MIB module release supported by the agent. Object is in decimal.')
mibBuilder.exportSymbols('CXCFG-IPX-MIB', cxCfgIpxPortFrameType=cxCfgIpxPortFrameType, cxCfgIpxPortRowStatus=cxCfgIpxPortRowStatus, cxCfgIpxPortIfIndex=cxCfgIpxPortIfIndex, cxCfgIpxPortSubnetworkSAPAlias=cxCfgIpxPortSubnetworkSAPAlias, cxCfgIpxPortSpxWatchSpoof=cxCfgIpxPortSpxWatchSpoof, cxCfgIpxPortPerSapTxTimer=cxCfgIpxPortPerSapTxTimer, cxCfgIpxNumClockTicksPerSecond=cxCfgIpxNumClockTicksPerSecond, cxCfgIpxPortRipAgeTimer=cxCfgIpxPortRipAgeTimer, cxCfgIpxPortTransportTime=cxCfgIpxPortTransportTime, cxCfgIpxPortRipBcast=cxCfgIpxPortRipBcast, cxCfgIpxPortMaxHops=cxCfgIpxPortMaxHops, cxCfgIpxPortState=cxCfgIpxPortState, cxCfgIpxPortEntry=cxCfgIpxPortEntry, NetNumber=NetNumber, cxCfgIpxMibLevel=cxCfgIpxMibLevel, cxCfgIpxPortSerialSpoof=cxCfgIpxPortSerialSpoof, cxCfgIpxPortSapBcast=cxCfgIpxPortSapBcast, cxCfgIpxPortSapAgeTimer=cxCfgIpxPortSapAgeTimer, cxCfgIpxPortIntNetNum=cxCfgIpxPortIntNetNum, cxCfgIpxPortSRSupport=cxCfgIpxPortSRSupport, cxCfgIpxPortPerRipTxTimer=cxCfgIpxPortPerRipTxTimer, cxCfgIpx=cxCfgIpx, cxCfgIpxPortWatchSpoof=cxCfgIpxPortWatchSpoof, cxCfgIpxPortPerSapBcast=cxCfgIpxPortPerSapBcast, cxCfgIpxPortTable=cxCfgIpxPortTable, cxCfgIpxPortPerRipBcast=cxCfgIpxPortPerRipBcast, cxCfgIpxPortDiagPackets=cxCfgIpxPortDiagPackets, cxCfgIpxPort=cxCfgIpxPort) |
#
# PySNMP MIB module RBN-ENVMON-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/RBN-ENVMON-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 20:44:20 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)
#
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ValueSizeConstraint, SingleValueConstraint, ConstraintsIntersection, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ValueSizeConstraint", "SingleValueConstraint", "ConstraintsIntersection", "ValueRangeConstraint")
rbnMgmt, = mibBuilder.importSymbols("RBN-SMI", "rbnMgmt")
NotificationGroup, ModuleCompliance, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup")
MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, iso, Counter64, Counter32, TimeTicks, IpAddress, NotificationType, ModuleIdentity, Unsigned32, Gauge32, ObjectIdentity, Bits, Integer32 = mibBuilder.importSymbols("SNMPv2-SMI", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "iso", "Counter64", "Counter32", "TimeTicks", "IpAddress", "NotificationType", "ModuleIdentity", "Unsigned32", "Gauge32", "ObjectIdentity", "Bits", "Integer32")
TruthValue, TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TruthValue", "TextualConvention", "DisplayString")
rbnEnvMonMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 2352, 2, 4))
if mibBuilder.loadTexts: rbnEnvMonMIB.setLastUpdated('9901272300Z')
if mibBuilder.loadTexts: rbnEnvMonMIB.setOrganization('RedBack Networks, Inc.')
rbnEnvMonMIBNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 2352, 2, 4, 0))
rbnEnvMonMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1))
rbnEnvMonMIBConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 2352, 2, 4, 2))
rbnFanStatusTable = MibTable((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 1), )
if mibBuilder.loadTexts: rbnFanStatusTable.setStatus('current')
rbnFanStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 1, 1), ).setIndexNames((0, "RBN-ENVMON-MIB", "rbnFanIndex"))
if mibBuilder.loadTexts: rbnFanStatusEntry.setStatus('current')
rbnFanIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 1, 1, 1), Integer32())
if mibBuilder.loadTexts: rbnFanIndex.setStatus('current')
rbnFanDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rbnFanDescr.setStatus('current')
rbnFanFail = MibTableColumn((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 1, 1, 3), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rbnFanFail.setStatus('current')
rbnPowerStatusTable = MibTable((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 2), )
if mibBuilder.loadTexts: rbnPowerStatusTable.setStatus('current')
rbnPowerStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 2, 1), ).setIndexNames((0, "RBN-ENVMON-MIB", "rbnPowerIndex"))
if mibBuilder.loadTexts: rbnPowerStatusEntry.setStatus('current')
rbnPowerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 2, 1, 1), Integer32())
if mibBuilder.loadTexts: rbnPowerIndex.setStatus('current')
rbnPowerDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rbnPowerDescr.setStatus('current')
rbnPowerFail = MibTableColumn((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 2, 1, 3), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rbnPowerFail.setStatus('current')
rbnFanFailChange = NotificationType((1, 3, 6, 1, 4, 1, 2352, 2, 4, 0, 1)).setObjects(("RBN-ENVMON-MIB", "rbnFanFail"))
if mibBuilder.loadTexts: rbnFanFailChange.setStatus('current')
rbnPowerFailChange = NotificationType((1, 3, 6, 1, 4, 1, 2352, 2, 4, 0, 2)).setObjects(("RBN-ENVMON-MIB", "rbnPowerFail"))
if mibBuilder.loadTexts: rbnPowerFailChange.setStatus('current')
rbnEnvMonMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 2352, 2, 4, 2, 1))
rbnEnvMonMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 2352, 2, 4, 2, 2))
rbnEnvMonMIBObjectGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 2352, 2, 4, 2, 1, 1)).setObjects(("RBN-ENVMON-MIB", "rbnFanDescr"), ("RBN-ENVMON-MIB", "rbnFanFail"), ("RBN-ENVMON-MIB", "rbnPowerDescr"), ("RBN-ENVMON-MIB", "rbnPowerFail"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
rbnEnvMonMIBObjectGroup = rbnEnvMonMIBObjectGroup.setStatus('current')
rbnEnvMonMIBNotificationGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 2352, 2, 4, 2, 1, 2)).setObjects(("RBN-ENVMON-MIB", "rbnFanFailChange"), ("RBN-ENVMON-MIB", "rbnPowerFailChange"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
rbnEnvMonMIBNotificationGroup = rbnEnvMonMIBNotificationGroup.setStatus('current')
rbnEnvMonMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 2352, 2, 4, 2, 2, 1)).setObjects(("RBN-ENVMON-MIB", "rbnEnvMonMIBObjectGroup"), ("RBN-ENVMON-MIB", "rbnEnvMonMIBNotificationGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
rbnEnvMonMIBCompliance = rbnEnvMonMIBCompliance.setStatus('current')
mibBuilder.exportSymbols("RBN-ENVMON-MIB", rbnFanFail=rbnFanFail, rbnFanStatusEntry=rbnFanStatusEntry, rbnFanDescr=rbnFanDescr, rbnEnvMonMIBGroups=rbnEnvMonMIBGroups, rbnPowerIndex=rbnPowerIndex, rbnEnvMonMIB=rbnEnvMonMIB, rbnPowerFail=rbnPowerFail, rbnPowerStatusTable=rbnPowerStatusTable, rbnPowerStatusEntry=rbnPowerStatusEntry, rbnEnvMonMIBNotificationGroup=rbnEnvMonMIBNotificationGroup, rbnEnvMonMIBCompliances=rbnEnvMonMIBCompliances, PYSNMP_MODULE_ID=rbnEnvMonMIB, rbnPowerDescr=rbnPowerDescr, rbnEnvMonMIBObjects=rbnEnvMonMIBObjects, rbnEnvMonMIBObjectGroup=rbnEnvMonMIBObjectGroup, rbnPowerFailChange=rbnPowerFailChange, rbnFanFailChange=rbnFanFailChange, rbnFanIndex=rbnFanIndex, rbnEnvMonMIBCompliance=rbnEnvMonMIBCompliance, rbnFanStatusTable=rbnFanStatusTable, rbnEnvMonMIBNotifications=rbnEnvMonMIBNotifications, rbnEnvMonMIBConformance=rbnEnvMonMIBConformance)
| (object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, value_size_constraint, single_value_constraint, constraints_intersection, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ValueSizeConstraint', 'SingleValueConstraint', 'ConstraintsIntersection', 'ValueRangeConstraint')
(rbn_mgmt,) = mibBuilder.importSymbols('RBN-SMI', 'rbnMgmt')
(notification_group, module_compliance, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance', 'ObjectGroup')
(mib_identifier, mib_scalar, mib_table, mib_table_row, mib_table_column, iso, counter64, counter32, time_ticks, ip_address, notification_type, module_identity, unsigned32, gauge32, object_identity, bits, integer32) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibIdentifier', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'iso', 'Counter64', 'Counter32', 'TimeTicks', 'IpAddress', 'NotificationType', 'ModuleIdentity', 'Unsigned32', 'Gauge32', 'ObjectIdentity', 'Bits', 'Integer32')
(truth_value, textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TruthValue', 'TextualConvention', 'DisplayString')
rbn_env_mon_mib = module_identity((1, 3, 6, 1, 4, 1, 2352, 2, 4))
if mibBuilder.loadTexts:
rbnEnvMonMIB.setLastUpdated('9901272300Z')
if mibBuilder.loadTexts:
rbnEnvMonMIB.setOrganization('RedBack Networks, Inc.')
rbn_env_mon_mib_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 2352, 2, 4, 0))
rbn_env_mon_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1))
rbn_env_mon_mib_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 2352, 2, 4, 2))
rbn_fan_status_table = mib_table((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 1))
if mibBuilder.loadTexts:
rbnFanStatusTable.setStatus('current')
rbn_fan_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 1, 1)).setIndexNames((0, 'RBN-ENVMON-MIB', 'rbnFanIndex'))
if mibBuilder.loadTexts:
rbnFanStatusEntry.setStatus('current')
rbn_fan_index = mib_table_column((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 1, 1, 1), integer32())
if mibBuilder.loadTexts:
rbnFanIndex.setStatus('current')
rbn_fan_descr = mib_table_column((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rbnFanDescr.setStatus('current')
rbn_fan_fail = mib_table_column((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 1, 1, 3), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rbnFanFail.setStatus('current')
rbn_power_status_table = mib_table((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 2))
if mibBuilder.loadTexts:
rbnPowerStatusTable.setStatus('current')
rbn_power_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 2, 1)).setIndexNames((0, 'RBN-ENVMON-MIB', 'rbnPowerIndex'))
if mibBuilder.loadTexts:
rbnPowerStatusEntry.setStatus('current')
rbn_power_index = mib_table_column((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 2, 1, 1), integer32())
if mibBuilder.loadTexts:
rbnPowerIndex.setStatus('current')
rbn_power_descr = mib_table_column((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rbnPowerDescr.setStatus('current')
rbn_power_fail = mib_table_column((1, 3, 6, 1, 4, 1, 2352, 2, 4, 1, 2, 1, 3), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rbnPowerFail.setStatus('current')
rbn_fan_fail_change = notification_type((1, 3, 6, 1, 4, 1, 2352, 2, 4, 0, 1)).setObjects(('RBN-ENVMON-MIB', 'rbnFanFail'))
if mibBuilder.loadTexts:
rbnFanFailChange.setStatus('current')
rbn_power_fail_change = notification_type((1, 3, 6, 1, 4, 1, 2352, 2, 4, 0, 2)).setObjects(('RBN-ENVMON-MIB', 'rbnPowerFail'))
if mibBuilder.loadTexts:
rbnPowerFailChange.setStatus('current')
rbn_env_mon_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 2352, 2, 4, 2, 1))
rbn_env_mon_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 2352, 2, 4, 2, 2))
rbn_env_mon_mib_object_group = object_group((1, 3, 6, 1, 4, 1, 2352, 2, 4, 2, 1, 1)).setObjects(('RBN-ENVMON-MIB', 'rbnFanDescr'), ('RBN-ENVMON-MIB', 'rbnFanFail'), ('RBN-ENVMON-MIB', 'rbnPowerDescr'), ('RBN-ENVMON-MIB', 'rbnPowerFail'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
rbn_env_mon_mib_object_group = rbnEnvMonMIBObjectGroup.setStatus('current')
rbn_env_mon_mib_notification_group = notification_group((1, 3, 6, 1, 4, 1, 2352, 2, 4, 2, 1, 2)).setObjects(('RBN-ENVMON-MIB', 'rbnFanFailChange'), ('RBN-ENVMON-MIB', 'rbnPowerFailChange'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
rbn_env_mon_mib_notification_group = rbnEnvMonMIBNotificationGroup.setStatus('current')
rbn_env_mon_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 2352, 2, 4, 2, 2, 1)).setObjects(('RBN-ENVMON-MIB', 'rbnEnvMonMIBObjectGroup'), ('RBN-ENVMON-MIB', 'rbnEnvMonMIBNotificationGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
rbn_env_mon_mib_compliance = rbnEnvMonMIBCompliance.setStatus('current')
mibBuilder.exportSymbols('RBN-ENVMON-MIB', rbnFanFail=rbnFanFail, rbnFanStatusEntry=rbnFanStatusEntry, rbnFanDescr=rbnFanDescr, rbnEnvMonMIBGroups=rbnEnvMonMIBGroups, rbnPowerIndex=rbnPowerIndex, rbnEnvMonMIB=rbnEnvMonMIB, rbnPowerFail=rbnPowerFail, rbnPowerStatusTable=rbnPowerStatusTable, rbnPowerStatusEntry=rbnPowerStatusEntry, rbnEnvMonMIBNotificationGroup=rbnEnvMonMIBNotificationGroup, rbnEnvMonMIBCompliances=rbnEnvMonMIBCompliances, PYSNMP_MODULE_ID=rbnEnvMonMIB, rbnPowerDescr=rbnPowerDescr, rbnEnvMonMIBObjects=rbnEnvMonMIBObjects, rbnEnvMonMIBObjectGroup=rbnEnvMonMIBObjectGroup, rbnPowerFailChange=rbnPowerFailChange, rbnFanFailChange=rbnFanFailChange, rbnFanIndex=rbnFanIndex, rbnEnvMonMIBCompliance=rbnEnvMonMIBCompliance, rbnFanStatusTable=rbnFanStatusTable, rbnEnvMonMIBNotifications=rbnEnvMonMIBNotifications, rbnEnvMonMIBConformance=rbnEnvMonMIBConformance) |
# https://www.codechef.com/problems/MNMX
for T in range(int(input())):
n,a=int(input()),list(map(int,input().split()))
print((n-1)*min(a))
# If order matters
# s=0
# for z in range(n-1):
# if(a[0]>=a[1]):
# s+=a[1]
# a.pop(0)
# else:
# s+=a[0]
# a.pop(1)
# print(s) | for t in range(int(input())):
(n, a) = (int(input()), list(map(int, input().split())))
print((n - 1) * min(a)) |
class NoLastBookException (Exception):
pass
class OpenLastBookFileFailed (Exception):
pass
| class Nolastbookexception(Exception):
pass
class Openlastbookfilefailed(Exception):
pass |
fruta = []
fruta.append('Banana')
fruta.append('Tangerina')
fruta.append('uva')
fruta.append('Laranja')
fruta.append('Melancia')
for f,p in enumerate(fruta):
print(f'Na prateleira {f} temos {p}')
| fruta = []
fruta.append('Banana')
fruta.append('Tangerina')
fruta.append('uva')
fruta.append('Laranja')
fruta.append('Melancia')
for (f, p) in enumerate(fruta):
print(f'Na prateleira {f} temos {p}') |
rows_count = int(input())
def get_snake_pos(matrix):
for i, row in enumerate(matrix):
if "S" in row:
j = row.index("S")
snake_pos = [i, j]
return snake_pos
def get_food_pos(matrix):
food_positions = []
for i, row in enumerate(matrix):
for j, _ in enumerate(row):
if matrix[i][j] == "*":
food_positions.append([i, j])
return food_positions
def get_lair(matrix):
lair_positions = []
for i, row in enumerate(matrix):
for j, _ in enumerate(row):
if matrix[i][j] == "B":
lair_positions.append([i, j])
return lair_positions
def move_left(snake_pos):
(i, j) = snake_pos
new_snake_pos = [i, j - 1]
return new_snake_pos
def move_right(snake_pos):
(i, j) = snake_pos
new_snake_pos = [i, j + 1]
return new_snake_pos
def move_up(snake_pos):
(i, j) = snake_pos
new_snake_pos = [i - 1, j]
return new_snake_pos
def move_down(snake_pos):
(i, j) = snake_pos
new_snake_pos = [i + 1, j]
return new_snake_pos
def on_food(snake_pos, food):
flag = False
for food_pos in food:
if snake_pos == food_pos:
flag = True
return flag
def on_lair(snake_pos, lairs):
flag = False
for lair_pos in lairs:
if snake_pos == lair_pos:
flag = True
return flag
def leave_trail(matrix, snake_pos):
(i, j) = snake_pos
matrix[i][j] = "."
def out_of_field(snake_pos, rows_count):
flag = False
(i, j) = snake_pos
if not (0 <= i <= rows_count - 1) or not (0 <= j <= rows_count - 1):
flag = True
return flag
field = [input() for _ in range(rows_count)]
# Get initial coords fo pieces
food = get_food_pos(field)
snake_pos = get_snake_pos(field)
lairs = get_lair(field)
food_count = 0
field = [list(row) for row in field]
while True:
command = input()
if command == "left":
leave_trail(field, snake_pos)
snake_pos = move_left(snake_pos)
elif command == "right":
leave_trail(field, snake_pos)
snake_pos = move_right(snake_pos)
elif command == "up":
leave_trail(field, snake_pos)
snake_pos = move_up(snake_pos)
elif command == "down":
leave_trail(field, snake_pos)
snake_pos = move_down(snake_pos)
if out_of_field(snake_pos, rows_count):
print("Game over!")
break
elif on_food(snake_pos, food):
food_count += 1
food.remove(snake_pos)
elif on_lair(snake_pos, lairs):
lairs.remove(snake_pos)
leave_trail(field, snake_pos)
snake_pos = lairs[0]
lairs = []
if food_count >= 10:
print("You won! You fed the snake.")
(i, j) = snake_pos
field[i][j] = "S"
break
print(f"Food eaten: {food_count}")
[print(''.join(row)) for row in field] | rows_count = int(input())
def get_snake_pos(matrix):
for (i, row) in enumerate(matrix):
if 'S' in row:
j = row.index('S')
snake_pos = [i, j]
return snake_pos
def get_food_pos(matrix):
food_positions = []
for (i, row) in enumerate(matrix):
for (j, _) in enumerate(row):
if matrix[i][j] == '*':
food_positions.append([i, j])
return food_positions
def get_lair(matrix):
lair_positions = []
for (i, row) in enumerate(matrix):
for (j, _) in enumerate(row):
if matrix[i][j] == 'B':
lair_positions.append([i, j])
return lair_positions
def move_left(snake_pos):
(i, j) = snake_pos
new_snake_pos = [i, j - 1]
return new_snake_pos
def move_right(snake_pos):
(i, j) = snake_pos
new_snake_pos = [i, j + 1]
return new_snake_pos
def move_up(snake_pos):
(i, j) = snake_pos
new_snake_pos = [i - 1, j]
return new_snake_pos
def move_down(snake_pos):
(i, j) = snake_pos
new_snake_pos = [i + 1, j]
return new_snake_pos
def on_food(snake_pos, food):
flag = False
for food_pos in food:
if snake_pos == food_pos:
flag = True
return flag
def on_lair(snake_pos, lairs):
flag = False
for lair_pos in lairs:
if snake_pos == lair_pos:
flag = True
return flag
def leave_trail(matrix, snake_pos):
(i, j) = snake_pos
matrix[i][j] = '.'
def out_of_field(snake_pos, rows_count):
flag = False
(i, j) = snake_pos
if not 0 <= i <= rows_count - 1 or not 0 <= j <= rows_count - 1:
flag = True
return flag
field = [input() for _ in range(rows_count)]
food = get_food_pos(field)
snake_pos = get_snake_pos(field)
lairs = get_lair(field)
food_count = 0
field = [list(row) for row in field]
while True:
command = input()
if command == 'left':
leave_trail(field, snake_pos)
snake_pos = move_left(snake_pos)
elif command == 'right':
leave_trail(field, snake_pos)
snake_pos = move_right(snake_pos)
elif command == 'up':
leave_trail(field, snake_pos)
snake_pos = move_up(snake_pos)
elif command == 'down':
leave_trail(field, snake_pos)
snake_pos = move_down(snake_pos)
if out_of_field(snake_pos, rows_count):
print('Game over!')
break
elif on_food(snake_pos, food):
food_count += 1
food.remove(snake_pos)
elif on_lair(snake_pos, lairs):
lairs.remove(snake_pos)
leave_trail(field, snake_pos)
snake_pos = lairs[0]
lairs = []
if food_count >= 10:
print('You won! You fed the snake.')
(i, j) = snake_pos
field[i][j] = 'S'
break
print(f'Food eaten: {food_count}')
[print(''.join(row)) for row in field] |
#!/usr/bin/env python
# TODO: import the random module
# This function parses both the player
# and monster files
def parse_file(filename):
members = {}
file = open(filename,"r")
lines = file.readlines()
for line in lines:
name, diff = line.split(";")
members[name] = {"str": int(diff)}
return members
# MONSTER FIGHT!
def fight_monster(diff, roll):
if diff > roll:
return -1
return 1
# Performs rolls for groups
def do_roll(entities):
roll = 0
for entity in entities:
e_name = entity
e_str = entities[entity]["str"]
e_roll = roll_dice(e_str)
roll += e_roll
print(f"{entity} rolls a {e_roll}!")
return roll
# Roll an individual die
def roll_dice(sides):
return random.randint(1, sides)
# Initialze points
points = 0
# TODO: Load files to parse for player and
# monster data
# Create loop to move from challenge to challenge
for monster in monsters:
# TODO: "Appear" the monster and do the monster's
# die roll
# TODO: Get players' team roll
print(f"The group rolled a total of: {group_roll}!")
# TODO: Get the result of this single fight
if result > 0:
print(f"The players beat the {m_name}!\n")
else:
print(f"The players failed to beat the {m_name}!\n")
# TODO: if statement to report the final outcome of all
# battles! | def parse_file(filename):
members = {}
file = open(filename, 'r')
lines = file.readlines()
for line in lines:
(name, diff) = line.split(';')
members[name] = {'str': int(diff)}
return members
def fight_monster(diff, roll):
if diff > roll:
return -1
return 1
def do_roll(entities):
roll = 0
for entity in entities:
e_name = entity
e_str = entities[entity]['str']
e_roll = roll_dice(e_str)
roll += e_roll
print(f'{entity} rolls a {e_roll}!')
return roll
def roll_dice(sides):
return random.randint(1, sides)
points = 0
for monster in monsters:
print(f'The group rolled a total of: {group_roll}!')
if result > 0:
print(f'The players beat the {m_name}!\n')
else:
print(f'The players failed to beat the {m_name}!\n') |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2020/2/12 16:25
# @Author : Baimohan/PH
# @Site : https://github.com/BaiMoHan
# @File : setdefault.py
# @Software: PyCharm
cars = {'BMW': 8.5, 'BENS': 8.3, 'AUDI': 7.9}
print(cars.setdefault('PORSCHE', 9.2))
print(cars)
print(cars.setdefault('BMW', 4.5))
print(cars) | cars = {'BMW': 8.5, 'BENS': 8.3, 'AUDI': 7.9}
print(cars.setdefault('PORSCHE', 9.2))
print(cars)
print(cars.setdefault('BMW', 4.5))
print(cars) |
NUMBER_OF_ROWS = 8
NUMBER_OF_COLUMNS = 8
DIMENSION_OF_EACH_SQUARE = 64
BOARD_COLOR_1 = "#DDB88C"
BOARD_COLOR_2 = "#A66D4F"
X_AXIS_LABELS = ('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H')
Y_AXIS_LABELS = (1, 2, 3, 4, 5, 6, 7, 8)
SHORT_NAME = {
'R':'Rook', 'N':'Knight', 'B':'Bishop',
'Q':'Queen', 'K':'King', 'P':'Pawn'
}
# remember capital letters - White pieces, Small letters - Black pieces
START_PIECES_POSITION = {
"A8": "r", "B8": "n", "C8": "b", "D8": "q", "E8": "k", "F8": "b", "G8": "n", "H8": "r",
"A7": "p", "B7": "p", "C7": "p", "D7": "p", "E7": "p", "F7": "p", "G7": "p", "H7": "p",
"A2": "P", "B2": "P", "C2": "P", "D2": "P", "E2": "P", "F2": "P", "G2": "P", "H2": "P",
"A1": "R", "B1": "N", "C1": "B", "D1": "Q", "E1": "K", "F1": "B", "G1": "N", "H1": "R"
}
ORTHOGONAL_POSITIONS = ((-1,0),(0,1),(1,0),(0, -1))
DIAGONAL_POSITIONS = ((-1,-1),(-1,1),(1,-1),(1,1))
KNIGHT_POSITIONS = ((-2,-1),(-2,1),(-1,-2),(-1,2),(1,-2),(1,2),(2,-1),(2,1))
| number_of_rows = 8
number_of_columns = 8
dimension_of_each_square = 64
board_color_1 = '#DDB88C'
board_color_2 = '#A66D4F'
x_axis_labels = ('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H')
y_axis_labels = (1, 2, 3, 4, 5, 6, 7, 8)
short_name = {'R': 'Rook', 'N': 'Knight', 'B': 'Bishop', 'Q': 'Queen', 'K': 'King', 'P': 'Pawn'}
start_pieces_position = {'A8': 'r', 'B8': 'n', 'C8': 'b', 'D8': 'q', 'E8': 'k', 'F8': 'b', 'G8': 'n', 'H8': 'r', 'A7': 'p', 'B7': 'p', 'C7': 'p', 'D7': 'p', 'E7': 'p', 'F7': 'p', 'G7': 'p', 'H7': 'p', 'A2': 'P', 'B2': 'P', 'C2': 'P', 'D2': 'P', 'E2': 'P', 'F2': 'P', 'G2': 'P', 'H2': 'P', 'A1': 'R', 'B1': 'N', 'C1': 'B', 'D1': 'Q', 'E1': 'K', 'F1': 'B', 'G1': 'N', 'H1': 'R'}
orthogonal_positions = ((-1, 0), (0, 1), (1, 0), (0, -1))
diagonal_positions = ((-1, -1), (-1, 1), (1, -1), (1, 1))
knight_positions = ((-2, -1), (-2, 1), (-1, -2), (-1, 2), (1, -2), (1, 2), (2, -1), (2, 1)) |
def power(x, y, p) :
res = 1 # Initialize result
# Update x if it is more
# than or equal to p
x = x % p
if (x == 0) :
return 0
while (y > 0) :
# If y is odd, multiply
# x with result
if ((y & 1) == 1) :
res = (res * x) % p
# y must be even now
y = y >> 1 # y = y/2
x = (x * x) % p
return res
mod = int(1e9)+7
for i in range(int(input())):
n,a = [int(j) for j in input().split()]
c = a%mod
p = (a**2)%mod
for j in range(n-1):
q = power(p,(j+2)**2-(j+1)**2,mod)
c = (c+q)%mod
p = (q*p)%mod
print(c)
| def power(x, y, p):
res = 1
x = x % p
if x == 0:
return 0
while y > 0:
if y & 1 == 1:
res = res * x % p
y = y >> 1
x = x * x % p
return res
mod = int(1000000000.0) + 7
for i in range(int(input())):
(n, a) = [int(j) for j in input().split()]
c = a % mod
p = a ** 2 % mod
for j in range(n - 1):
q = power(p, (j + 2) ** 2 - (j + 1) ** 2, mod)
c = (c + q) % mod
p = q * p % mod
print(c) |
class Solution:
def isPalindrome(self, s: str) -> bool:
l, r = 0, len(s) - 1
while(l < r):
while(l < r and s[l].isalnum() == False):
l+=1
while(l < r and s[r].isalnum() == False):
r-=1
if(s[l].lower() != s[r].lower()):
return False
l += 1
r -= 1
return True
# Time Complexity - O(n)
# Space Complexity - O(1)
| class Solution:
def is_palindrome(self, s: str) -> bool:
(l, r) = (0, len(s) - 1)
while l < r:
while l < r and s[l].isalnum() == False:
l += 1
while l < r and s[r].isalnum() == False:
r -= 1
if s[l].lower() != s[r].lower():
return False
l += 1
r -= 1
return True |
class Solution:
def solve(self, nums):
if len(nums) <= 2: return 0
l_maxes = []
l_max = -inf
for num in nums:
l_max = max(l_max,num)
l_maxes.append(l_max)
r_maxes = []
r_max = -inf
for num in nums[::-1]:
r_max = max(r_max,num)
r_maxes.append(r_max)
r_maxes.reverse()
return sum(max(0,min(l_maxes[i-1],r_maxes[i+1])-nums[i]) for i in range(1,len(nums)-1))
| class Solution:
def solve(self, nums):
if len(nums) <= 2:
return 0
l_maxes = []
l_max = -inf
for num in nums:
l_max = max(l_max, num)
l_maxes.append(l_max)
r_maxes = []
r_max = -inf
for num in nums[::-1]:
r_max = max(r_max, num)
r_maxes.append(r_max)
r_maxes.reverse()
return sum((max(0, min(l_maxes[i - 1], r_maxes[i + 1]) - nums[i]) for i in range(1, len(nums) - 1))) |
# Definition for singly-linked list.
class ListNode:
def __init__(self, x):
self.val = x
self.next = None
class Solution:
def swapPairs(self, head: ListNode) -> ListNode:
return self.swap(head)
def swap(self, head: ListNode) -> ListNode:
if head == None:
return None
if head.next == None:
return head
temp = head
head = head.next
temp.next = self.swap(head.next)
head.next = temp
return head | class Listnode:
def __init__(self, x):
self.val = x
self.next = None
class Solution:
def swap_pairs(self, head: ListNode) -> ListNode:
return self.swap(head)
def swap(self, head: ListNode) -> ListNode:
if head == None:
return None
if head.next == None:
return head
temp = head
head = head.next
temp.next = self.swap(head.next)
head.next = temp
return head |
def FermatPrimalityTest(number):
''' if number != 1 '''
if (number > 1):
''' repeat the test few times '''
for time in range(3):
''' Draw a RANDOM number in range of number ( Z_number ) '''
randomNumber = random.randint(2, number)-1
''' Test if a^(n-1) = 1 mod n '''
if ( pow(randomNumber, number-1, number) != 1 ):
return False
return True
else:
''' case number == 1 '''
return False
| def fermat_primality_test(number):
""" if number != 1 """
if number > 1:
' repeat the test few times '
for time in range(3):
' Draw a RANDOM number in range of number ( Z_number ) '
random_number = random.randint(2, number) - 1
' Test if a^(n-1) = 1 mod n '
if pow(randomNumber, number - 1, number) != 1:
return False
return True
else:
' case number == 1 '
return False |
# Using Array slicing in python to reverse arrays
# defining reverse function
def reversedArray(array):
print(array[::-1])
# Creating a Template Array
array = [1, 2, 3, 4, 5]
print("Current Array Order:")
print(array)
print("Reversed Array Order:")
reversedArray(array)
| def reversed_array(array):
print(array[::-1])
array = [1, 2, 3, 4, 5]
print('Current Array Order:')
print(array)
print('Reversed Array Order:')
reversed_array(array) |
#Get a left position and a right
# iterative uses a loop
def is_palindrome(string):
left_index = 0
right_index = len(string) - 1
#repeat, or loop
while left_index < right_index:
#check if dismatch
if string[left_index] != string[right_index]:
return False
#move to the next characters to check
# with the left we wanna move forward, so we add 1
left_index += 1
# with right we need to substract
right_index -= 1
return True
#recursive
def is_palindrome_recursive(string, left_index, right_index):
print(left_index)
print(right_index)
#base case, it's when we stop
if left_index == right_index:
return True
if string[left_index] != string[right_index]:
return False
#recursive case, when we call the function within itself
if left_index < right_index:
return is_palindrome_recursive(string, left_index + 1, right_index - 1)
return True
print(is_palindrome_recursive("talo", 0, len("deed")-1))
# print(is_palindrome_recursive("tacocat"))
# print(is_palindrome_recursive("tasdfklajdf"))
| def is_palindrome(string):
left_index = 0
right_index = len(string) - 1
while left_index < right_index:
if string[left_index] != string[right_index]:
return False
left_index += 1
right_index -= 1
return True
def is_palindrome_recursive(string, left_index, right_index):
print(left_index)
print(right_index)
if left_index == right_index:
return True
if string[left_index] != string[right_index]:
return False
if left_index < right_index:
return is_palindrome_recursive(string, left_index + 1, right_index - 1)
return True
print(is_palindrome_recursive('talo', 0, len('deed') - 1)) |
def distributeCandies(self, candies: int, num_people: int) -> List[int]:
r = [0 for _ in range(num_people)]
i = 0
c = 1
while candies != 0:
if i > num_people - 1:
i = 0
if c > candies:
r[i] += candies
break
r[i] += c
candies -= c
i += 1
c += 1
return r
| def distribute_candies(self, candies: int, num_people: int) -> List[int]:
r = [0 for _ in range(num_people)]
i = 0
c = 1
while candies != 0:
if i > num_people - 1:
i = 0
if c > candies:
r[i] += candies
break
r[i] += c
candies -= c
i += 1
c += 1
return r |
LETTERS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
FIRST_LETTER = LETTERS[0]
def get_sequence(column, count, step=1):
column = validate(column)
count = max(abs(count), 1)
sequence = []
if column:
sequence.append(column)
count = count - 1
for i in range(count):
previous = sequence[-1] if sequence else column
sequence.append(next(previous, step))
return sequence
def next(column, step=1):
column = validate(column)
if not column:
return FIRST_LETTER
step = max(abs(step), 1)
base = column[0:-1] if len(column) > 1 else ''
next_char = column[-1] if len(column) > 1 else column
for i in range(step):
next_char = get_next_char(next_char)
if next_char == FIRST_LETTER:
base = rollover(base)
return base + next_char
def rollover(column):
if not column:
return FIRST_LETTER
base = column[0:-1]
next_char = get_next_char(column[-1])
if next_char == FIRST_LETTER:
return rollover(base) + next_char
return base + next_char
def get_next_char(char):
index = LETTERS.index(char) + 1
return FIRST_LETTER if index >= len(LETTERS) else LETTERS[index]
def validate(column):
if not column:
return None
column = column.strip().upper()
invalid_chars = [c for c in column if c not in LETTERS]
return None if invalid_chars else column | letters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
first_letter = LETTERS[0]
def get_sequence(column, count, step=1):
column = validate(column)
count = max(abs(count), 1)
sequence = []
if column:
sequence.append(column)
count = count - 1
for i in range(count):
previous = sequence[-1] if sequence else column
sequence.append(next(previous, step))
return sequence
def next(column, step=1):
column = validate(column)
if not column:
return FIRST_LETTER
step = max(abs(step), 1)
base = column[0:-1] if len(column) > 1 else ''
next_char = column[-1] if len(column) > 1 else column
for i in range(step):
next_char = get_next_char(next_char)
if next_char == FIRST_LETTER:
base = rollover(base)
return base + next_char
def rollover(column):
if not column:
return FIRST_LETTER
base = column[0:-1]
next_char = get_next_char(column[-1])
if next_char == FIRST_LETTER:
return rollover(base) + next_char
return base + next_char
def get_next_char(char):
index = LETTERS.index(char) + 1
return FIRST_LETTER if index >= len(LETTERS) else LETTERS[index]
def validate(column):
if not column:
return None
column = column.strip().upper()
invalid_chars = [c for c in column if c not in LETTERS]
return None if invalid_chars else column |
# ToDo: Make it configurable
DEFAULT_PARAMS = {
"os_api": "23",
"device_type": "Pixel",
"ssmix": "a",
"manifest_version_code": "2018111632",
"dpi": 420,
"app_name": "musical_ly",
"version_name": "9.1.0",
"is_my_cn": 0,
"ac": "wifi",
"update_version_code": "2018111632",
"channel": "googleplay",
"device_platform": "android",
"build_number": "9.9.0",
"version_code": 910,
"timezone_name": "America/New_York",
"timezone_offset": 36000,
"resolution": "1080*1920",
"os_version": "7.1.2",
"device_brand": "Google",
"mcc_mnc": "23001",
"is_my_cn": 0,
"fp": "",
"app_language": "en",
"language": "en",
"region": "US",
"sys_region": "US",
"account_region": "US",
"carrier_region": "US",
"carrier_region_v2": "505",
"aid": "1233",
"pass-region": 1,
"pass-route": 1,
"app_type": "normal",
# "iid": "6742828344465966597",
# "device_id": "6746627788566021893",
# ToDo: Make it dynamic
"iid": "6749111388298184454",
"device_id": "6662384847253865990",
}
DEFAULT_HEADERS = {
"Host": "api2.musical.ly",
"X-SS-TC": "0",
"User-Agent": f"com.zhiliaoapp.musically/{DEFAULT_PARAMS['manifest_version_code']}"
+ f" (Linux; U; Android {DEFAULT_PARAMS['os_version']};"
+ f" {DEFAULT_PARAMS['language']}_{DEFAULT_PARAMS['region']};"
+ f" {DEFAULT_PARAMS['device_type']};"
+ f" Build/NHG47Q; Cronet/58.0.2991.0)",
"Accept-Encoding": "gzip",
"Accept": "*/*",
"Connection": "keep-alive",
"X-Tt-Token": "",
"sdk-version": "1",
"Cookie": "null = 1;",
}
| default_params = {'os_api': '23', 'device_type': 'Pixel', 'ssmix': 'a', 'manifest_version_code': '2018111632', 'dpi': 420, 'app_name': 'musical_ly', 'version_name': '9.1.0', 'is_my_cn': 0, 'ac': 'wifi', 'update_version_code': '2018111632', 'channel': 'googleplay', 'device_platform': 'android', 'build_number': '9.9.0', 'version_code': 910, 'timezone_name': 'America/New_York', 'timezone_offset': 36000, 'resolution': '1080*1920', 'os_version': '7.1.2', 'device_brand': 'Google', 'mcc_mnc': '23001', 'is_my_cn': 0, 'fp': '', 'app_language': 'en', 'language': 'en', 'region': 'US', 'sys_region': 'US', 'account_region': 'US', 'carrier_region': 'US', 'carrier_region_v2': '505', 'aid': '1233', 'pass-region': 1, 'pass-route': 1, 'app_type': 'normal', 'iid': '6749111388298184454', 'device_id': '6662384847253865990'}
default_headers = {'Host': 'api2.musical.ly', 'X-SS-TC': '0', 'User-Agent': f"com.zhiliaoapp.musically/{DEFAULT_PARAMS['manifest_version_code']}" + f" (Linux; U; Android {DEFAULT_PARAMS['os_version']};" + f" {DEFAULT_PARAMS['language']}_{DEFAULT_PARAMS['region']};" + f" {DEFAULT_PARAMS['device_type']};" + f' Build/NHG47Q; Cronet/58.0.2991.0)', 'Accept-Encoding': 'gzip', 'Accept': '*/*', 'Connection': 'keep-alive', 'X-Tt-Token': '', 'sdk-version': '1', 'Cookie': 'null = 1;'} |
def Ispalindrome(usrname):
return usrname==usrname[::-1]
def main():
usrname=input("Enter the String :")
#temp=usrname[::-1]
if Ispalindrome(usrname):
print("String %s is palindrome"%(usrname))
else:
print("String %s is not palindrome"%(usrname))
if __name__ == '__main__':
main()
| def ispalindrome(usrname):
return usrname == usrname[::-1]
def main():
usrname = input('Enter the String :')
if ispalindrome(usrname):
print('String %s is palindrome' % usrname)
else:
print('String %s is not palindrome' % usrname)
if __name__ == '__main__':
main() |
# Advent of Code 2015
#
# From https://adventofcode.com/2015/day/3
#
inputs = [data.strip() for data in open('../inputs/Advent2015_03.txt', 'r')][0]
move = {'^': 0 + 1j, ">": 1, "v": 0 - 1j, "<": -1}
def visit(inputs):
position = 0 + 0j
visited = {position}
for x in inputs:
position = position + move[x]
visited.add(position)
return visited
print(f"AoC 2015 Day 3, Part 1 answer is {len(visit(inputs))}")
print(f"AoC 2015 Day 3, Part 2 answer is {len(visit(inputs[0::2]) | visit(inputs[1::2]))}")
| inputs = [data.strip() for data in open('../inputs/Advent2015_03.txt', 'r')][0]
move = {'^': 0 + 1j, '>': 1, 'v': 0 - 1j, '<': -1}
def visit(inputs):
position = 0 + 0j
visited = {position}
for x in inputs:
position = position + move[x]
visited.add(position)
return visited
print(f'AoC 2015 Day 3, Part 1 answer is {len(visit(inputs))}')
print(f'AoC 2015 Day 3, Part 2 answer is {len(visit(inputs[0::2]) | visit(inputs[1::2]))}') |
age1 = 12
age2 = 18
print("age1 + age2")
print(age1 + age2)
print("age1 - age2")
print(age1 - age2)
print("age1 * age2")
print(age1 * age2)
print("age1 / age2")
print(age1 / age2)
print("age1 % age2")
print(age1 % age2)
sent1 = "Today is a beautiful day"
firstName = "Marlon"
lastName = "Monzon"
print(firstName + " " + lastName)
print ("HI" * 10)
sentence = "Marlon was playing basketball.";
# Splicing
print(sentence[0:6])
print(sentence[:-12]) | age1 = 12
age2 = 18
print('age1 + age2')
print(age1 + age2)
print('age1 - age2')
print(age1 - age2)
print('age1 * age2')
print(age1 * age2)
print('age1 / age2')
print(age1 / age2)
print('age1 % age2')
print(age1 % age2)
sent1 = 'Today is a beautiful day'
first_name = 'Marlon'
last_name = 'Monzon'
print(firstName + ' ' + lastName)
print('HI' * 10)
sentence = 'Marlon was playing basketball.'
print(sentence[0:6])
print(sentence[:-12]) |
a = input()
s = [int(x) for x in input().split()]
ans = [str(x) for x in sorted(s)]
print(' '.join(ans))
| a = input()
s = [int(x) for x in input().split()]
ans = [str(x) for x in sorted(s)]
print(' '.join(ans)) |
# Equations (c) Baltasar 2019 MIT License <[email protected]>
class TDS:
def __init__(self):
self._vbles = {}
def __iadd__(self, other):
self._vbles[other[0]] = other[1]
return self
def __getitem__(self, item):
return self._vbles[item]
def __setitem__(self, item, value):
self._vbles[item] = value
def get_vble_names(self):
return list(self._vbles.keys())
def __len__(self):
return len(self._vbles)
def get(self, vble):
return self._vbles[vble]
def __str__(self):
toret = ""
delim = ""
for key in self._vbles.keys():
toret += delim
toret += str(key) + " = " + str(self._vbles[key])
delim = ", "
return toret
| class Tds:
def __init__(self):
self._vbles = {}
def __iadd__(self, other):
self._vbles[other[0]] = other[1]
return self
def __getitem__(self, item):
return self._vbles[item]
def __setitem__(self, item, value):
self._vbles[item] = value
def get_vble_names(self):
return list(self._vbles.keys())
def __len__(self):
return len(self._vbles)
def get(self, vble):
return self._vbles[vble]
def __str__(self):
toret = ''
delim = ''
for key in self._vbles.keys():
toret += delim
toret += str(key) + ' = ' + str(self._vbles[key])
delim = ', '
return toret |
x = int(input("enter percentage\n"))
if(x>=65):
print("Excellent")
elif(x>=55 and x<65):
print("Good")
elif(x>=40 and x<55):
print("Fair")
else:
print("Failed")
| x = int(input('enter percentage\n'))
if x >= 65:
print('Excellent')
elif x >= 55 and x < 65:
print('Good')
elif x >= 40 and x < 55:
print('Fair')
else:
print('Failed') |
WORK_PATH = "/tmp/posts"
PORT = 8000
AUTHOR = "@asadiyan"
TITLE = "fsBlog"
DESCRIPTION = "<h3></h3>"
| work_path = '/tmp/posts'
port = 8000
author = '@asadiyan'
title = 'fsBlog'
description = '<h3></h3>' |
def TwosComplementOf(n):
if isinstance(n,str) == True:
binintnum = int(n)
binmun = int("{0:08b}".format(binintnum))
strnum = str(binmun)
size = len(strnum)
idx = size -1
while idx >= 0:
if strnum[idx] == '1':
break
idx = idx - 1
if idx == -1:
return '1'+strnum
position = idx-1
while position >= 0:
if strnum[position] == '1':
strnum = list(strnum)
strnum[position] ='0'
strnum = ''.join(strnum)
else:
strnum = list(strnum)
strnum[position] = '1'
strnum = ''.join(strnum)
position = position-1
return strnum
else:
binmun = int("{0:08b}".format(n))
strnum = str(binmun)
size = len(strnum)
idx = size - 1
while idx >= 0:
if strnum[idx] == '1':
break
idx = idx - 1
if idx == -1:
return '1' + strnum
position = idx - 1
while position >= 0:
if strnum[position] == '1':
strnum = list(strnum)
strnum[position] = '0'
strnum = ''.join(strnum)
else:
strnum = list(strnum)
strnum[position] = '1'
strnum = ''.join(strnum)
position = position - 1
return strnum
| def twos_complement_of(n):
if isinstance(n, str) == True:
binintnum = int(n)
binmun = int('{0:08b}'.format(binintnum))
strnum = str(binmun)
size = len(strnum)
idx = size - 1
while idx >= 0:
if strnum[idx] == '1':
break
idx = idx - 1
if idx == -1:
return '1' + strnum
position = idx - 1
while position >= 0:
if strnum[position] == '1':
strnum = list(strnum)
strnum[position] = '0'
strnum = ''.join(strnum)
else:
strnum = list(strnum)
strnum[position] = '1'
strnum = ''.join(strnum)
position = position - 1
return strnum
else:
binmun = int('{0:08b}'.format(n))
strnum = str(binmun)
size = len(strnum)
idx = size - 1
while idx >= 0:
if strnum[idx] == '1':
break
idx = idx - 1
if idx == -1:
return '1' + strnum
position = idx - 1
while position >= 0:
if strnum[position] == '1':
strnum = list(strnum)
strnum[position] = '0'
strnum = ''.join(strnum)
else:
strnum = list(strnum)
strnum[position] = '1'
strnum = ''.join(strnum)
position = position - 1
return strnum |
# pylint: skip-file
# pylint: disable=too-many-instance-attributes
class GcloudComputeZones(GcloudCLI):
''' Class to wrap the gcloud compute zones command'''
# pylint allows 5
# pylint: disable=too-many-arguments
def __init__(self, region=None, verbose=False):
''' Constructor for gcloud resource '''
super(GcloudComputeZones, self).__init__()
self._region = region
self.verbose = verbose
@property
def region(self):
'''property for region'''
return self._region
def list_zones(self):
'''return a list of zones'''
results = self._list_zones()
if results['returncode'] == 0 and self.region:
zones = []
for zone in results['results']:
if self.region == zone['region']:
zones.append(zone)
results['results'] = zones
return results
| class Gcloudcomputezones(GcloudCLI):
""" Class to wrap the gcloud compute zones command"""
def __init__(self, region=None, verbose=False):
""" Constructor for gcloud resource """
super(GcloudComputeZones, self).__init__()
self._region = region
self.verbose = verbose
@property
def region(self):
"""property for region"""
return self._region
def list_zones(self):
"""return a list of zones"""
results = self._list_zones()
if results['returncode'] == 0 and self.region:
zones = []
for zone in results['results']:
if self.region == zone['region']:
zones.append(zone)
results['results'] = zones
return results |
class Stack:
def __init__(self, *objects):
self.stack = []
if len(objects) > 0:
for obj in objects:
self.stack.append(obj)
def push(self, *objects):
for obj in objects:
self.stack.append(obj)
def pop(self, obj):
if self.stack != []:
self.stack.pop()
def top_item(self):
if self.stack != []:
return self.stack[len(self.stack) - 1]
def isempty(self):
return self.stack == 0
def dimension(self):
return len(self.stack)
def clear(self):
self.stack.clear()
def __str__(self):
return self.stack.__str__()
def __repr__(self):
return self.stack.__repr__()
def __eq__(self, Stack_instance):
return self.stack == Stack_instance.stack
# usage
if __name__ == '__main__':
q = Stack()
q2 = Stack(1, 2, 3, 4, 5, 6, 7, 8)
print(q)
print(q2)
q3 = Stack(1, 2, 3, 4, *[1, 2, 3, 4, 5], Stack(1, 2, 3, 4))
print(q3)
print(q == q3) | class Stack:
def __init__(self, *objects):
self.stack = []
if len(objects) > 0:
for obj in objects:
self.stack.append(obj)
def push(self, *objects):
for obj in objects:
self.stack.append(obj)
def pop(self, obj):
if self.stack != []:
self.stack.pop()
def top_item(self):
if self.stack != []:
return self.stack[len(self.stack) - 1]
def isempty(self):
return self.stack == 0
def dimension(self):
return len(self.stack)
def clear(self):
self.stack.clear()
def __str__(self):
return self.stack.__str__()
def __repr__(self):
return self.stack.__repr__()
def __eq__(self, Stack_instance):
return self.stack == Stack_instance.stack
if __name__ == '__main__':
q = stack()
q2 = stack(1, 2, 3, 4, 5, 6, 7, 8)
print(q)
print(q2)
q3 = stack(1, 2, 3, 4, *[1, 2, 3, 4, 5], stack(1, 2, 3, 4))
print(q3)
print(q == q3) |
class CalcError(Exception):
def __init__(self, error):
self.message = error
super().__init__(self.message)
| class Calcerror(Exception):
def __init__(self, error):
self.message = error
super().__init__(self.message) |
#Binary to Decimal conversion
def binDec(n):
num = int(n);
value = 0;
base = 1;
flag = num;
while(flag):
l = flag%10;
flag = int(flag/10);
print(flag);
value = value+l*base;
base = base*2;
return value
num = input();
a = binDec(num);
print(a)
| def bin_dec(n):
num = int(n)
value = 0
base = 1
flag = num
while flag:
l = flag % 10
flag = int(flag / 10)
print(flag)
value = value + l * base
base = base * 2
return value
num = input()
a = bin_dec(num)
print(a) |
{
'targets': [
{
'target_name': 'lb_shell_package',
'type': 'none',
'default_project': 1,
'dependencies': [
'lb_shell_contents',
],
'conditions': [
['target_arch=="android"', {
'dependencies': [
'lb_shell_android.gyp:lb_shell_apk',
],
}, {
'dependencies': [
'lb_shell_exe.gyp:lb_shell',
],
}],
['target_arch not in ["linux", "android", "wiiu"]', {
'dependencies': [
'../platforms/<(target_arch)_deploy.gyp:lb_shell_deploy',
],
}],
],
},
{
'target_name': 'lb_layout_tests_package',
'type': 'none',
'dependencies': [
'lb_shell_exe.gyp:lb_layout_tests',
'lb_shell_contents',
],
},
{
'target_name': 'lb_unit_tests_package',
'type': 'none',
'dependencies': [
'lb_shell_exe.gyp:unit_tests_base',
'lb_shell_exe.gyp:unit_tests_crypto',
'lb_shell_exe.gyp:unit_tests_media',
'lb_shell_exe.gyp:unit_tests_net',
'lb_shell_exe.gyp:unit_tests_sql',
'lb_shell_exe.gyp:lb_unit_tests',
'lb_shell_exe.gyp:unit_tests_image_decoder',
'lb_shell_exe.gyp:unit_tests_xml_parser',
'lb_shell_contents',
'<@(platform_contents_unit_tests)',
],
'conditions': [
['target_arch not in ["linux", "android", "wiiu"]', {
'dependencies': [
'../platforms/<(target_arch)_deploy.gyp:unit_tests_base_deploy',
'../platforms/<(target_arch)_deploy.gyp:unit_tests_media_deploy',
'../platforms/<(target_arch)_deploy.gyp:unit_tests_net_deploy',
'../platforms/<(target_arch)_deploy.gyp:unit_tests_sql_deploy',
'../platforms/<(target_arch)_deploy.gyp:lb_unit_tests_deploy',
],
}],
],
},
{
'target_name': 'lb_shell_contents',
'type': 'none',
'dependencies': [
'<@(platform_contents_lbshell)',
],
},
],
'conditions': [
['target_arch == "android"', {
'targets': [
{
'target_name': 'lb_unit_tests_package_apks',
'type': 'none',
'dependencies': [
'lb_shell_exe.gyp:unit_tests_base_apk',
'lb_shell_exe.gyp:unit_tests_crypto_apk',
'lb_shell_exe.gyp:unit_tests_media_apk',
'lb_shell_exe.gyp:unit_tests_net_apk',
'lb_shell_exe.gyp:unit_tests_sql_apk',
'lb_shell_exe.gyp:lb_unit_tests_apk',
'lb_shell_exe.gyp:unit_tests_image_decoder_apk',
'lb_shell_exe.gyp:unit_tests_xml_parser_apk',
'lb_shell_contents',
'<@(platform_contents_unit_tests)',
],
},
],
}],
],
}
| {'targets': [{'target_name': 'lb_shell_package', 'type': 'none', 'default_project': 1, 'dependencies': ['lb_shell_contents'], 'conditions': [['target_arch=="android"', {'dependencies': ['lb_shell_android.gyp:lb_shell_apk']}, {'dependencies': ['lb_shell_exe.gyp:lb_shell']}], ['target_arch not in ["linux", "android", "wiiu"]', {'dependencies': ['../platforms/<(target_arch)_deploy.gyp:lb_shell_deploy']}]]}, {'target_name': 'lb_layout_tests_package', 'type': 'none', 'dependencies': ['lb_shell_exe.gyp:lb_layout_tests', 'lb_shell_contents']}, {'target_name': 'lb_unit_tests_package', 'type': 'none', 'dependencies': ['lb_shell_exe.gyp:unit_tests_base', 'lb_shell_exe.gyp:unit_tests_crypto', 'lb_shell_exe.gyp:unit_tests_media', 'lb_shell_exe.gyp:unit_tests_net', 'lb_shell_exe.gyp:unit_tests_sql', 'lb_shell_exe.gyp:lb_unit_tests', 'lb_shell_exe.gyp:unit_tests_image_decoder', 'lb_shell_exe.gyp:unit_tests_xml_parser', 'lb_shell_contents', '<@(platform_contents_unit_tests)'], 'conditions': [['target_arch not in ["linux", "android", "wiiu"]', {'dependencies': ['../platforms/<(target_arch)_deploy.gyp:unit_tests_base_deploy', '../platforms/<(target_arch)_deploy.gyp:unit_tests_media_deploy', '../platforms/<(target_arch)_deploy.gyp:unit_tests_net_deploy', '../platforms/<(target_arch)_deploy.gyp:unit_tests_sql_deploy', '../platforms/<(target_arch)_deploy.gyp:lb_unit_tests_deploy']}]]}, {'target_name': 'lb_shell_contents', 'type': 'none', 'dependencies': ['<@(platform_contents_lbshell)']}], 'conditions': [['target_arch == "android"', {'targets': [{'target_name': 'lb_unit_tests_package_apks', 'type': 'none', 'dependencies': ['lb_shell_exe.gyp:unit_tests_base_apk', 'lb_shell_exe.gyp:unit_tests_crypto_apk', 'lb_shell_exe.gyp:unit_tests_media_apk', 'lb_shell_exe.gyp:unit_tests_net_apk', 'lb_shell_exe.gyp:unit_tests_sql_apk', 'lb_shell_exe.gyp:lb_unit_tests_apk', 'lb_shell_exe.gyp:unit_tests_image_decoder_apk', 'lb_shell_exe.gyp:unit_tests_xml_parser_apk', 'lb_shell_contents', '<@(platform_contents_unit_tests)']}]}]]} |
# PRINT OUT A WELCOME MESSAGE.
print('Welcome to Food Funhouse!')
# LOOP UNTIL THE USER CHOOSES TO EXIT.
order_total_in_dollars_and_cents = 0.0
while True:
# PRINT OUT THE MENU OPTIONS.
print('1. Cheeseburger - $5.50')
print('2. Pizza - $5.00')
print('3. Taco - $3.00')
print('4. Cookie - $1.99')
print('5. Milk - $0.99')
print('6. Pay for Order/Exit')
print('7. Cancel Order/Exit')
# LET THE USER SELECT A MENU OPTION.
selected_menu_option = int(input('Select an item to order: '))
# PRINT OUT THE OPTION THE USER SELECTED.
if 1 == selected_menu_option:
order_total_in_dollars_and_cents += 5.50
print('You ordered a cheeseburger. Order total: $' + str(order_total_in_dollars_and_cents))
elif 2 == selected_menu_option:
order_total_in_dollars_and_cents += 5.00
print('You ordered a pizza. Order total: $' + str(order_total_in_dollars_and_cents))
elif 3 == selected_menu_option:
order_total_in_dollars_and_cents += 3.00
print('You ordered a taco. Order total: $' + str(order_total_in_dollars_and_cents))
elif 4 == selected_menu_option:
order_total_in_dollars_and_cents += 1.99
print('You ordered a cookie. Order total: $' + str(order_total_in_dollars_and_cents))
elif 5 == selected_menu_option:
order_total_in_dollars_and_cents += 0.99
print('You ordered milk. Order total: $' + str(order_total_in_dollars_and_cents))
elif 6 == selected_menu_option:
# PRINT THE ORDER TOTAL.
print('Your order total is $' + str(order_total_in_dollars_and_cents))
# WAIT UNTIL THE USER INPUTS ENOUGH MONEY TO PAY FOR THE ORDER.
payment_amount_in_dollars_and_cents = 0.0
while payment_amount_in_dollars_and_cents < order_total_in_dollars_and_cents:
# GET THE PAYMENT AMOUNT FROM THE USER.
payment_amount_in_dollars_and_cents = float(input('Enter payment amount: '))
# INFORM THE USER IF THE PAYMENT AMOUNT ISN'T ENOUGH.
payment_amount_enough = payment_amount_in_dollars_and_cents >= order_total_in_dollars_and_cents
if not payment_amount_enough:
print('Not enough to pay for order.')
# CALCULATE THE CHANGE FOR THE ORDER.
change_in_dollars_and_cents = payment_amount_in_dollars_and_cents - order_total_in_dollars_and_cents
# INFORM THE USER OF THEIR CHANGE.
print('Thanks for paying!')
print('Your change is $' + str(change_in_dollars_and_cents))
break
elif 7 == selected_menu_option:
print('Exiting...')
break
else:
print('Invalid selection. Please try again.')
| print('Welcome to Food Funhouse!')
order_total_in_dollars_and_cents = 0.0
while True:
print('1. Cheeseburger - $5.50')
print('2. Pizza - $5.00')
print('3. Taco - $3.00')
print('4. Cookie - $1.99')
print('5. Milk - $0.99')
print('6. Pay for Order/Exit')
print('7. Cancel Order/Exit')
selected_menu_option = int(input('Select an item to order: '))
if 1 == selected_menu_option:
order_total_in_dollars_and_cents += 5.5
print('You ordered a cheeseburger. Order total: $' + str(order_total_in_dollars_and_cents))
elif 2 == selected_menu_option:
order_total_in_dollars_and_cents += 5.0
print('You ordered a pizza. Order total: $' + str(order_total_in_dollars_and_cents))
elif 3 == selected_menu_option:
order_total_in_dollars_and_cents += 3.0
print('You ordered a taco. Order total: $' + str(order_total_in_dollars_and_cents))
elif 4 == selected_menu_option:
order_total_in_dollars_and_cents += 1.99
print('You ordered a cookie. Order total: $' + str(order_total_in_dollars_and_cents))
elif 5 == selected_menu_option:
order_total_in_dollars_and_cents += 0.99
print('You ordered milk. Order total: $' + str(order_total_in_dollars_and_cents))
elif 6 == selected_menu_option:
print('Your order total is $' + str(order_total_in_dollars_and_cents))
payment_amount_in_dollars_and_cents = 0.0
while payment_amount_in_dollars_and_cents < order_total_in_dollars_and_cents:
payment_amount_in_dollars_and_cents = float(input('Enter payment amount: '))
payment_amount_enough = payment_amount_in_dollars_and_cents >= order_total_in_dollars_and_cents
if not payment_amount_enough:
print('Not enough to pay for order.')
change_in_dollars_and_cents = payment_amount_in_dollars_and_cents - order_total_in_dollars_and_cents
print('Thanks for paying!')
print('Your change is $' + str(change_in_dollars_and_cents))
break
elif 7 == selected_menu_option:
print('Exiting...')
break
else:
print('Invalid selection. Please try again.') |
# Simple Calculator
def calculate(x,y,operator):
if operator == "*":
result = float(x * y)
print(f"The answer is {result} ")
elif operator == "/":
result = float(x / y)
print(f"The answer is {result} ")
elif operator == "+":
result = float(x + y)
print(f"The answer is {result} ")
elif operator == "-":
result = float(x - y)
print(f"The answer is {result} ")
else:
print("Try Again")
x = int(input("Enter First Number: \n"))
y = int(input("Enter Second Number: \n"))
operator = (input("What do we do with these? \n"))
calculate(x,y,operator)
| def calculate(x, y, operator):
if operator == '*':
result = float(x * y)
print(f'The answer is {result} ')
elif operator == '/':
result = float(x / y)
print(f'The answer is {result} ')
elif operator == '+':
result = float(x + y)
print(f'The answer is {result} ')
elif operator == '-':
result = float(x - y)
print(f'The answer is {result} ')
else:
print('Try Again')
x = int(input('Enter First Number: \n'))
y = int(input('Enter Second Number: \n'))
operator = input('What do we do with these? \n')
calculate(x, y, operator) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.