content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
class Profiler(object): def __init__(self, config, paths): pass def dependencies(self): """Returns list of needed app dependencies,like com.quicinc.trepn, [] if none""" raise NotImplementedError def load(self, device): """Load (and start) the profiler process on the device""" raise NotImplementedError def start_profiling(self, device, **kwargs): """Start the profiling process""" raise NotImplementedError def stop_profiling(self, device, **kwargs): """Stop the profiling process""" raise NotImplementedError def collect_results(self, device): """Collect the data and clean up extra files on the device, save data in location set by 'set_output' """ raise NotImplementedError def unload(self, device): """Stop the profiler, removing configuration files on device""" raise NotImplementedError def set_output(self, output_dir): """Set the output directory before the start_profiling is called""" raise NotImplementedError def aggregate_subject(self): """Aggregate the data at the end of a subject, collect data and save data to location set by 'set output' """ raise NotImplementedError def aggregate_end(self, data_dir, output_file): """Aggregate the data at the end of the experiment. Data located in file structure inside data_dir. Save aggregated data to output_file """ raise NotImplementedError
class Profiler(object): def __init__(self, config, paths): pass def dependencies(self): """Returns list of needed app dependencies,like com.quicinc.trepn, [] if none""" raise NotImplementedError def load(self, device): """Load (and start) the profiler process on the device""" raise NotImplementedError def start_profiling(self, device, **kwargs): """Start the profiling process""" raise NotImplementedError def stop_profiling(self, device, **kwargs): """Stop the profiling process""" raise NotImplementedError def collect_results(self, device): """Collect the data and clean up extra files on the device, save data in location set by 'set_output' """ raise NotImplementedError def unload(self, device): """Stop the profiler, removing configuration files on device""" raise NotImplementedError def set_output(self, output_dir): """Set the output directory before the start_profiling is called""" raise NotImplementedError def aggregate_subject(self): """Aggregate the data at the end of a subject, collect data and save data to location set by 'set output' """ raise NotImplementedError def aggregate_end(self, data_dir, output_file): """Aggregate the data at the end of the experiment. Data located in file structure inside data_dir. Save aggregated data to output_file """ raise NotImplementedError
input = """ % map date to weekday (mon =1, ..., sun = 7); % The tour starts on Monday. weekday(1,1). weekday(D,W) :- D=D1+1, W=W1+1, weekday(D1,W1), W1 < 7. weekday(D,1) :- D=D1+1, weekday(D1,7). % connections with default costs (capitols of the Austrian federal states). conn(brg,ibk,2). conn(ibk,sbg,2). conn(ibk,wie,5). conn(ibk,kla,3). conn(sbg,kla,2). conn(sbg,gra,2). conn(sbg,lin,1). conn(sbg,wie,3). conn(kla,gra,2). conn(lin,stp,1). conn(lin,wie,2). conn(lin,gra,2). conn(gra,wie,2). conn(gra,eis,1). conn(stp,wie,1). conn(eis,wie,1). conn(stp,eis,2). conn(B,A,C) :- conn(A,B,C). city(T) :- conn(T,_,_). % costing: use default cost, if there are no extra costs % cost(A,B,W,C) :- conn(A,B,C), 0 < W, W <= 7, %#int(W), 0 < W, W <= 7, not ecost(A,B,W). ecost(A,B,W) :- ex_cost(A,B,W,C). cost(A,B,W,C) :- ex_cost(A,B,W,C). ex_cost(A,B,W,C) :- ex_cost(B,A,W,C). % Some example of an extra cost. ex_cost(stp,eis,2,10). % Nicer would be, in an unstratified program, % to have no "ex_cost" but only cost, and define % % ecost(A,B,W) :- cost(A,B,W,C), dcost(A,B,C1), C != C1. % ecost(A,B,W) :- ecost(B,A,W). """ output = """ % map date to weekday (mon =1, ..., sun = 7); % The tour starts on Monday. weekday(1,1). weekday(D,W) :- D=D1+1, W=W1+1, weekday(D1,W1), W1 < 7. weekday(D,1) :- D=D1+1, weekday(D1,7). % connections with default costs (capitols of the Austrian federal states). conn(brg,ibk,2). conn(ibk,sbg,2). conn(ibk,wie,5). conn(ibk,kla,3). conn(sbg,kla,2). conn(sbg,gra,2). conn(sbg,lin,1). conn(sbg,wie,3). conn(kla,gra,2). conn(lin,stp,1). conn(lin,wie,2). conn(lin,gra,2). conn(gra,wie,2). conn(gra,eis,1). conn(stp,wie,1). conn(eis,wie,1). conn(stp,eis,2). conn(B,A,C) :- conn(A,B,C). city(T) :- conn(T,_,_). % costing: use default cost, if there are no extra costs % cost(A,B,W,C) :- conn(A,B,C), 0 < W, W <= 7, %#int(W), 0 < W, W <= 7, not ecost(A,B,W). ecost(A,B,W) :- ex_cost(A,B,W,C). cost(A,B,W,C) :- ex_cost(A,B,W,C). ex_cost(A,B,W,C) :- ex_cost(B,A,W,C). % Some example of an extra cost. ex_cost(stp,eis,2,10). % Nicer would be, in an unstratified program, % to have no "ex_cost" but only cost, and define % % ecost(A,B,W) :- cost(A,B,W,C), dcost(A,B,C1), C != C1. % ecost(A,B,W) :- ecost(B,A,W). """
input = '\n\n% map date to weekday (mon =1, ..., sun = 7);\n% The tour starts on Monday. \n\n weekday(1,1).\n weekday(D,W) :- D=D1+1, W=W1+1, weekday(D1,W1), W1 < 7.\n weekday(D,1) :- D=D1+1, weekday(D1,7).\n\n% connections with default costs (capitols of the Austrian federal states).\n\n conn(brg,ibk,2).\n conn(ibk,sbg,2).\n conn(ibk,wie,5).\n conn(ibk,kla,3).\n conn(sbg,kla,2).\n conn(sbg,gra,2).\n conn(sbg,lin,1).\n conn(sbg,wie,3).\n conn(kla,gra,2).\n conn(lin,stp,1).\n conn(lin,wie,2).\n conn(lin,gra,2).\n conn(gra,wie,2).\n conn(gra,eis,1).\n conn(stp,wie,1).\n conn(eis,wie,1).\n conn(stp,eis,2).\n\nconn(B,A,C) :- conn(A,B,C).\n\n city(T) :- conn(T,_,_).\n\n% costing: use default cost, if there are no extra costs \n%\n\n cost(A,B,W,C) :- conn(A,B,C), 0 < W, W <= 7, %#int(W), 0 < W, W <= 7, \n not ecost(A,B,W). \n\n ecost(A,B,W) :- ex_cost(A,B,W,C).\n cost(A,B,W,C) :- ex_cost(A,B,W,C).\n\n ex_cost(A,B,W,C) :- ex_cost(B,A,W,C). \n\n% Some example of an extra cost.\n\n ex_cost(stp,eis,2,10).\n\n% Nicer would be, in an unstratified program, \n% to have no "ex_cost" but only cost, and define\n% \n% ecost(A,B,W) :- cost(A,B,W,C), dcost(A,B,C1), C != C1.\n% ecost(A,B,W) :- ecost(B,A,W). \n\n\n\n\n\n' output = '\n\n% map date to weekday (mon =1, ..., sun = 7);\n% The tour starts on Monday. \n\n weekday(1,1).\n weekday(D,W) :- D=D1+1, W=W1+1, weekday(D1,W1), W1 < 7.\n weekday(D,1) :- D=D1+1, weekday(D1,7).\n\n% connections with default costs (capitols of the Austrian federal states).\n\n conn(brg,ibk,2).\n conn(ibk,sbg,2).\n conn(ibk,wie,5).\n conn(ibk,kla,3).\n conn(sbg,kla,2).\n conn(sbg,gra,2).\n conn(sbg,lin,1).\n conn(sbg,wie,3).\n conn(kla,gra,2).\n conn(lin,stp,1).\n conn(lin,wie,2).\n conn(lin,gra,2).\n conn(gra,wie,2).\n conn(gra,eis,1).\n conn(stp,wie,1).\n conn(eis,wie,1).\n conn(stp,eis,2).\n\nconn(B,A,C) :- conn(A,B,C).\n\n city(T) :- conn(T,_,_).\n\n% costing: use default cost, if there are no extra costs \n%\n\n cost(A,B,W,C) :- conn(A,B,C), 0 < W, W <= 7, %#int(W), 0 < W, W <= 7, \n not ecost(A,B,W). \n\n ecost(A,B,W) :- ex_cost(A,B,W,C).\n cost(A,B,W,C) :- ex_cost(A,B,W,C).\n\n ex_cost(A,B,W,C) :- ex_cost(B,A,W,C). \n\n% Some example of an extra cost.\n\n ex_cost(stp,eis,2,10).\n\n% Nicer would be, in an unstratified program, \n% to have no "ex_cost" but only cost, and define\n% \n% ecost(A,B,W) :- cost(A,B,W,C), dcost(A,B,C1), C != C1.\n% ecost(A,B,W) :- ecost(B,A,W). \n\n\n\n\n\n'
def lend_money(debts, person, amount): value = debts.get(person, 0) quantity = [amount] if value != 0: debts[person] = value + quantity else: debts[person] = quantity print(debts) def amount_owed_by(debts, person): value = debts.get(person, [0]) out = sum(value) return out def total_amount_owed(debts): my_money = 0 for values in debts.values(): for numbers in values: my_money += numbers return my_money
def lend_money(debts, person, amount): value = debts.get(person, 0) quantity = [amount] if value != 0: debts[person] = value + quantity else: debts[person] = quantity print(debts) def amount_owed_by(debts, person): value = debts.get(person, [0]) out = sum(value) return out def total_amount_owed(debts): my_money = 0 for values in debts.values(): for numbers in values: my_money += numbers return my_money
kwh_used = 1000 out = 0 if(kwh_used < 500): out += 500 * 0.45 elif(kwh_used >= 500 and kwh_used < 1500): out += 500 * 0.45 + ((kwh_used - 500) * 0.74) elif(kwh_used >= 1500 and kwh_used < 2500): out += 500 * 0.45 + ((kwh_used - 500) * 0.74) + ((kwh_used - 1500) * 1.25) elif(kwh_used >= 2500): out += 500 * 0.45 + ((kwh_used - 500) * 0.74) + ((kwh_used - 1500) * 1.25) + ((kwh_used - 2500) * 2) out += out * 0.2 print(out)
kwh_used = 1000 out = 0 if kwh_used < 500: out += 500 * 0.45 elif kwh_used >= 500 and kwh_used < 1500: out += 500 * 0.45 + (kwh_used - 500) * 0.74 elif kwh_used >= 1500 and kwh_used < 2500: out += 500 * 0.45 + (kwh_used - 500) * 0.74 + (kwh_used - 1500) * 1.25 elif kwh_used >= 2500: out += 500 * 0.45 + (kwh_used - 500) * 0.74 + (kwh_used - 1500) * 1.25 + (kwh_used - 2500) * 2 out += out * 0.2 print(out)
def solution(A): list_range = len(A) difference_list = [] for p in range(1, list_range): post_sum = sum(A[p:]) behind_sum = sum(A[:p]) difference = behind_sum - post_sum if difference < 0: difference *= -1 difference_list.append(difference) return min(difference_list) print(solution([3, 1, 2, 4, 3]))
def solution(A): list_range = len(A) difference_list = [] for p in range(1, list_range): post_sum = sum(A[p:]) behind_sum = sum(A[:p]) difference = behind_sum - post_sum if difference < 0: difference *= -1 difference_list.append(difference) return min(difference_list) print(solution([3, 1, 2, 4, 3]))
def heapify(heap, root): newRoot = root leftChild = 2*root+1 rightChild = 2*root+2 if leftChild < len(heap) and heap[leftChild] > heap[newRoot]: newRoot = leftChild if rightChild < len(heap) and heap[rightChild] > heap[newRoot]: newRoot = rightChild if root!=newRoot: heap[root],heap[newRoot]=heap[newRoot],heap[root] heapify(heap,newRoot) def heapSort(heap): for i in range(len(heap), -1, -1): heapify(heap, i) answer = [] while(len(heap)>1): answer.insert(len(answer),heap[0]) heap[0],heap[-1]=heap[-1],heap[0] heap.pop() heapify(heap, 0) return answer
def heapify(heap, root): new_root = root left_child = 2 * root + 1 right_child = 2 * root + 2 if leftChild < len(heap) and heap[leftChild] > heap[newRoot]: new_root = leftChild if rightChild < len(heap) and heap[rightChild] > heap[newRoot]: new_root = rightChild if root != newRoot: (heap[root], heap[newRoot]) = (heap[newRoot], heap[root]) heapify(heap, newRoot) def heap_sort(heap): for i in range(len(heap), -1, -1): heapify(heap, i) answer = [] while len(heap) > 1: answer.insert(len(answer), heap[0]) (heap[0], heap[-1]) = (heap[-1], heap[0]) heap.pop() heapify(heap, 0) return answer
EXAMPLES1 = ( ('1122', 3), ('1111', 4), ('1234', 0), ('91212129', 9) ) EXAMPLES2 = ( ('1212', 6), ('1221', 0), ('123425', 4), ('123123', 12), ('12131415', 4) ) INPUT = '31813174349235972159811869755166343882958376474278437681632495222499211488649543755655138842553867246131245462881756862736922925752647341673342756514856663979496747158241792857625471323535183222497949751644488277317173496124473893452425118133645984488759128897146498831373795721661696492622276282881218371273973538163779782435211491196616375135472517935481964439956844536136823757764494967297251545389464472794474447941564778733926532741752757865243946976266426548341889873514383464142659425122786667399143335772174973128383869893325977319651839516694295534146668728822393452626321892357192574444856264721585365164945647254645264693957898373214897848424966266582991272496771159583715456714645585576641458358326521858518319315233857473695712238323787254556597566461188452279853766184333696344395818615215846348586541164194624371353556812548945447432787795489443312941687221314432694115847863129826532628228386894683392352799514942665396273726821936346663485499159141368443782475714679953213388375939519711591262489869326145476958378464652451441434846382474578535468433514121336844727988128998543975147649823215332929623574231738442281161294838499441799996857746549441142859199799125595761724782225452394593514388571187279266291364278184761833324476838939898258225748562345853633364314923186685534864178665214135631494876474186833392929124337161222959459117554238429216916532175247326391321525832362274683763488347654497889261543959591212539851835354335598844669618391876623638137926893582131945361264841733341247646125278489995838369127582438419889922365596554237153412394494932582424222479798382932335239274297663365164912953364777876187522324991837775492621675953397843833247525599771974555545348388871578347332456586949283657613841414576976542343934911424716613479249893113961925713317644349946444271959375981158445151659431844142242547191181944395897963146947935463718145169266129118413523541222444997678726644615185324461293228124456118853885552279849917342474792984425629248492847827653133583215539325866881662159421987315186914769478947389188382383546881622246793781846254253759714573354544997853153798862436887889318646643359555663135476261863' def code1(string): return sum(ord(x) - ord('0') for i, x in enumerate(string) if x == string[(i + 1) % len(string)]) def code2(string): return sum(ord(x) - ord('0') for i, x in enumerate(string) if x == string[(i + len(string) // 2) % len(string)]) def test(code, examples, myinput): for data, result in examples: assert code(data) == result, (data, result, code(data)) print('>', code(myinput)) test(code1, EXAMPLES1, INPUT) test(code2, EXAMPLES2, INPUT)
examples1 = (('1122', 3), ('1111', 4), ('1234', 0), ('91212129', 9)) examples2 = (('1212', 6), ('1221', 0), ('123425', 4), ('123123', 12), ('12131415', 4)) input = '31813174349235972159811869755166343882958376474278437681632495222499211488649543755655138842553867246131245462881756862736922925752647341673342756514856663979496747158241792857625471323535183222497949751644488277317173496124473893452425118133645984488759128897146498831373795721661696492622276282881218371273973538163779782435211491196616375135472517935481964439956844536136823757764494967297251545389464472794474447941564778733926532741752757865243946976266426548341889873514383464142659425122786667399143335772174973128383869893325977319651839516694295534146668728822393452626321892357192574444856264721585365164945647254645264693957898373214897848424966266582991272496771159583715456714645585576641458358326521858518319315233857473695712238323787254556597566461188452279853766184333696344395818615215846348586541164194624371353556812548945447432787795489443312941687221314432694115847863129826532628228386894683392352799514942665396273726821936346663485499159141368443782475714679953213388375939519711591262489869326145476958378464652451441434846382474578535468433514121336844727988128998543975147649823215332929623574231738442281161294838499441799996857746549441142859199799125595761724782225452394593514388571187279266291364278184761833324476838939898258225748562345853633364314923186685534864178665214135631494876474186833392929124337161222959459117554238429216916532175247326391321525832362274683763488347654497889261543959591212539851835354335598844669618391876623638137926893582131945361264841733341247646125278489995838369127582438419889922365596554237153412394494932582424222479798382932335239274297663365164912953364777876187522324991837775492621675953397843833247525599771974555545348388871578347332456586949283657613841414576976542343934911424716613479249893113961925713317644349946444271959375981158445151659431844142242547191181944395897963146947935463718145169266129118413523541222444997678726644615185324461293228124456118853885552279849917342474792984425629248492847827653133583215539325866881662159421987315186914769478947389188382383546881622246793781846254253759714573354544997853153798862436887889318646643359555663135476261863' def code1(string): return sum((ord(x) - ord('0') for (i, x) in enumerate(string) if x == string[(i + 1) % len(string)])) def code2(string): return sum((ord(x) - ord('0') for (i, x) in enumerate(string) if x == string[(i + len(string) // 2) % len(string)])) def test(code, examples, myinput): for (data, result) in examples: assert code(data) == result, (data, result, code(data)) print('>', code(myinput)) test(code1, EXAMPLES1, INPUT) test(code2, EXAMPLES2, INPUT)
""" Provide the class Message and its subclasses. """ class Message(object): message = '' message_args = () def __init__(self, filename, loc): self.filename = filename self.lineno = loc.lineno self.col = getattr(loc, 'col_offset', 0) def __str__(self): return '%s:%s: %s' % (self.filename, self.lineno, self.message % self.message_args) class UnusedImport(Message): message = '%r imported but unused' def __init__(self, filename, loc, name): Message.__init__(self, filename, loc) self.message_args = (name,) class RedefinedWhileUnused(Message): message = 'redefinition of unused %r from line %r' def __init__(self, filename, loc, name, orig_loc): Message.__init__(self, filename, loc) self.message_args = (name, orig_loc.lineno) class RedefinedInListComp(Message): message = 'list comprehension redefines %r from line %r' def __init__(self, filename, loc, name, orig_loc): Message.__init__(self, filename, loc) self.message_args = (name, orig_loc.lineno) class ImportShadowedByLoopVar(Message): message = 'import %r from line %r shadowed by loop variable' def __init__(self, filename, loc, name, orig_loc): Message.__init__(self, filename, loc) self.message_args = (name, orig_loc.lineno) class ImportStarNotPermitted(Message): message = "'from %s import *' only allowed at module level" def __init__(self, filename, loc, modname): Message.__init__(self, filename, loc) self.message_args = (modname,) class ImportStarUsed(Message): message = "'from %s import *' used; unable to detect undefined names" def __init__(self, filename, loc, modname): Message.__init__(self, filename, loc) self.message_args = (modname,) class ImportStarUsage(Message): message = "%r may be undefined, or defined from star imports: %s" def __init__(self, filename, loc, name, from_list): Message.__init__(self, filename, loc) self.message_args = (name, from_list) class UndefinedName(Message): message = 'undefined name %r' def __init__(self, filename, loc, name): Message.__init__(self, filename, loc) self.message_args = (name,) class DoctestSyntaxError(Message): message = 'syntax error in doctest' def __init__(self, filename, loc, position=None): Message.__init__(self, filename, loc) if position: (self.lineno, self.col) = position self.message_args = () class UndefinedExport(Message): message = 'undefined name %r in __all__' def __init__(self, filename, loc, name): Message.__init__(self, filename, loc) self.message_args = (name,) class UndefinedLocal(Message): message = 'local variable %r {0} referenced before assignment' default = 'defined in enclosing scope on line %r' builtin = 'defined as a builtin' def __init__(self, filename, loc, name, orig_loc): Message.__init__(self, filename, loc) if orig_loc is None: self.message = self.message.format(self.builtin) self.message_args = name else: self.message = self.message.format(self.default) self.message_args = (name, orig_loc.lineno) class DuplicateArgument(Message): message = 'duplicate argument %r in function definition' def __init__(self, filename, loc, name): Message.__init__(self, filename, loc) self.message_args = (name,) class MultiValueRepeatedKeyLiteral(Message): message = 'dictionary key %r repeated with different values' def __init__(self, filename, loc, key): Message.__init__(self, filename, loc) self.message_args = (key,) class MultiValueRepeatedKeyVariable(Message): message = 'dictionary key variable %s repeated with different values' def __init__(self, filename, loc, key): Message.__init__(self, filename, loc) self.message_args = (key,) class LateFutureImport(Message): message = 'from __future__ imports must occur at the beginning of the file' def __init__(self, filename, loc, names): Message.__init__(self, filename, loc) self.message_args = () class FutureFeatureNotDefined(Message): """An undefined __future__ feature name was imported.""" message = 'future feature %s is not defined' def __init__(self, filename, loc, name): Message.__init__(self, filename, loc) self.message_args = (name,) class UnusedVariable(Message): """ Indicates that a variable has been explicitly assigned to but not actually used. """ message = 'local variable %r is assigned to but never used' def __init__(self, filename, loc, names): Message.__init__(self, filename, loc) self.message_args = (names,) class ReturnWithArgsInsideGenerator(Message): """ Indicates a return statement with arguments inside a generator. """ message = '\'return\' with argument inside generator' class ReturnOutsideFunction(Message): """ Indicates a return statement outside of a function/method. """ message = '\'return\' outside function' class YieldOutsideFunction(Message): """ Indicates a yield or yield from statement outside of a function/method. """ message = '\'yield\' outside function' # For whatever reason, Python gives different error messages for these two. We # match the Python error message exactly. class ContinueOutsideLoop(Message): """ Indicates a continue statement outside of a while or for loop. """ message = '\'continue\' not properly in loop' class BreakOutsideLoop(Message): """ Indicates a break statement outside of a while or for loop. """ message = '\'break\' outside loop' class ContinueInFinally(Message): """ Indicates a continue statement in a finally block in a while or for loop. """ message = '\'continue\' not supported inside \'finally\' clause' class DefaultExceptNotLast(Message): """ Indicates an except: block as not the last exception handler. """ message = 'default \'except:\' must be last' class TwoStarredExpressions(Message): """ Two or more starred expressions in an assignment (a, *b, *c = d). """ message = 'two starred expressions in assignment' class TooManyExpressionsInStarredAssignment(Message): """ Too many expressions in an assignment with star-unpacking """ message = 'too many expressions in star-unpacking assignment' class AssertTuple(Message): """ Assertion test is a tuple, which are always True. """ message = 'assertion is always true, perhaps remove parentheses?' class ForwardAnnotationSyntaxError(Message): message = 'syntax error in forward annotation %r' def __init__(self, filename, loc, annotation): Message.__init__(self, filename, loc) self.message_args = (annotation,) class CommentAnnotationSyntaxError(Message): message = 'syntax error in type comment %r' def __init__(self, filename, loc, annotation): Message.__init__(self, filename, loc) self.message_args = (annotation,) class RaiseNotImplemented(Message): message = "'raise NotImplemented' should be 'raise NotImplementedError'" class InvalidPrintSyntax(Message): message = 'use of >> is invalid with print function' class IsLiteral(Message): message = 'use ==/!= to compare str, bytes, and int literals'
""" Provide the class Message and its subclasses. """ class Message(object): message = '' message_args = () def __init__(self, filename, loc): self.filename = filename self.lineno = loc.lineno self.col = getattr(loc, 'col_offset', 0) def __str__(self): return '%s:%s: %s' % (self.filename, self.lineno, self.message % self.message_args) class Unusedimport(Message): message = '%r imported but unused' def __init__(self, filename, loc, name): Message.__init__(self, filename, loc) self.message_args = (name,) class Redefinedwhileunused(Message): message = 'redefinition of unused %r from line %r' def __init__(self, filename, loc, name, orig_loc): Message.__init__(self, filename, loc) self.message_args = (name, orig_loc.lineno) class Redefinedinlistcomp(Message): message = 'list comprehension redefines %r from line %r' def __init__(self, filename, loc, name, orig_loc): Message.__init__(self, filename, loc) self.message_args = (name, orig_loc.lineno) class Importshadowedbyloopvar(Message): message = 'import %r from line %r shadowed by loop variable' def __init__(self, filename, loc, name, orig_loc): Message.__init__(self, filename, loc) self.message_args = (name, orig_loc.lineno) class Importstarnotpermitted(Message): message = "'from %s import *' only allowed at module level" def __init__(self, filename, loc, modname): Message.__init__(self, filename, loc) self.message_args = (modname,) class Importstarused(Message): message = "'from %s import *' used; unable to detect undefined names" def __init__(self, filename, loc, modname): Message.__init__(self, filename, loc) self.message_args = (modname,) class Importstarusage(Message): message = '%r may be undefined, or defined from star imports: %s' def __init__(self, filename, loc, name, from_list): Message.__init__(self, filename, loc) self.message_args = (name, from_list) class Undefinedname(Message): message = 'undefined name %r' def __init__(self, filename, loc, name): Message.__init__(self, filename, loc) self.message_args = (name,) class Doctestsyntaxerror(Message): message = 'syntax error in doctest' def __init__(self, filename, loc, position=None): Message.__init__(self, filename, loc) if position: (self.lineno, self.col) = position self.message_args = () class Undefinedexport(Message): message = 'undefined name %r in __all__' def __init__(self, filename, loc, name): Message.__init__(self, filename, loc) self.message_args = (name,) class Undefinedlocal(Message): message = 'local variable %r {0} referenced before assignment' default = 'defined in enclosing scope on line %r' builtin = 'defined as a builtin' def __init__(self, filename, loc, name, orig_loc): Message.__init__(self, filename, loc) if orig_loc is None: self.message = self.message.format(self.builtin) self.message_args = name else: self.message = self.message.format(self.default) self.message_args = (name, orig_loc.lineno) class Duplicateargument(Message): message = 'duplicate argument %r in function definition' def __init__(self, filename, loc, name): Message.__init__(self, filename, loc) self.message_args = (name,) class Multivaluerepeatedkeyliteral(Message): message = 'dictionary key %r repeated with different values' def __init__(self, filename, loc, key): Message.__init__(self, filename, loc) self.message_args = (key,) class Multivaluerepeatedkeyvariable(Message): message = 'dictionary key variable %s repeated with different values' def __init__(self, filename, loc, key): Message.__init__(self, filename, loc) self.message_args = (key,) class Latefutureimport(Message): message = 'from __future__ imports must occur at the beginning of the file' def __init__(self, filename, loc, names): Message.__init__(self, filename, loc) self.message_args = () class Futurefeaturenotdefined(Message): """An undefined __future__ feature name was imported.""" message = 'future feature %s is not defined' def __init__(self, filename, loc, name): Message.__init__(self, filename, loc) self.message_args = (name,) class Unusedvariable(Message): """ Indicates that a variable has been explicitly assigned to but not actually used. """ message = 'local variable %r is assigned to but never used' def __init__(self, filename, loc, names): Message.__init__(self, filename, loc) self.message_args = (names,) class Returnwithargsinsidegenerator(Message): """ Indicates a return statement with arguments inside a generator. """ message = "'return' with argument inside generator" class Returnoutsidefunction(Message): """ Indicates a return statement outside of a function/method. """ message = "'return' outside function" class Yieldoutsidefunction(Message): """ Indicates a yield or yield from statement outside of a function/method. """ message = "'yield' outside function" class Continueoutsideloop(Message): """ Indicates a continue statement outside of a while or for loop. """ message = "'continue' not properly in loop" class Breakoutsideloop(Message): """ Indicates a break statement outside of a while or for loop. """ message = "'break' outside loop" class Continueinfinally(Message): """ Indicates a continue statement in a finally block in a while or for loop. """ message = "'continue' not supported inside 'finally' clause" class Defaultexceptnotlast(Message): """ Indicates an except: block as not the last exception handler. """ message = "default 'except:' must be last" class Twostarredexpressions(Message): """ Two or more starred expressions in an assignment (a, *b, *c = d). """ message = 'two starred expressions in assignment' class Toomanyexpressionsinstarredassignment(Message): """ Too many expressions in an assignment with star-unpacking """ message = 'too many expressions in star-unpacking assignment' class Asserttuple(Message): """ Assertion test is a tuple, which are always True. """ message = 'assertion is always true, perhaps remove parentheses?' class Forwardannotationsyntaxerror(Message): message = 'syntax error in forward annotation %r' def __init__(self, filename, loc, annotation): Message.__init__(self, filename, loc) self.message_args = (annotation,) class Commentannotationsyntaxerror(Message): message = 'syntax error in type comment %r' def __init__(self, filename, loc, annotation): Message.__init__(self, filename, loc) self.message_args = (annotation,) class Raisenotimplemented(Message): message = "'raise NotImplemented' should be 'raise NotImplementedError'" class Invalidprintsyntax(Message): message = 'use of >> is invalid with print function' class Isliteral(Message): message = 'use ==/!= to compare str, bytes, and int literals'
p = np.eye(3)[y][:, None] grad_d = q - p grad_C = grad_d @ U.T grad_b = (C.T @ grad_d ) * Drelu(A@x+b) grad_A = grad_b @ x.T
p = np.eye(3)[y][:, None] grad_d = q - p grad_c = grad_d @ U.T grad_b = C.T @ grad_d * drelu(A @ x + b) grad_a = grad_b @ x.T
#! /usr/bin/env python # encoding: utf-8 # WARNING! Do not edit! https://waf.io/book/index.html#_obtaining_the_waf_file class MandatoryOptions(object): def __init__(self,options): self.options=options def __getattr__(self,name): call=getattr(self.options,name) def require(*args,**kwargs): value=call(*args,**kwargs) if not value: raise RuntimeError("WTF Dude") return value return require
class Mandatoryoptions(object): def __init__(self, options): self.options = options def __getattr__(self, name): call = getattr(self.options, name) def require(*args, **kwargs): value = call(*args, **kwargs) if not value: raise runtime_error('WTF Dude') return value return require
class Queue(): # Queue Initialization def __init__(self): self.MAX = 5 self.queue = [] # OVERFLOW CONDITION def OVERFLOW(self): if len(self.queue) == self.MAX: return True else: return False # UNDERFLOW CONDITION def UNDERFLOW(self): if len(self.queue) == 0: return True else: return False # Insert into queue def insert(self, item): if not self.OVERFLOW(): self.queue.insert(0, item) return True else: return False # Delete from queue def delete(self): if not self.UNDERFLOW(): temp = self.queue.pop() return temp else: return False def display(self): if not self.UNDERFLOW(): # if self.FRONT <= self.BACK: print(" ".join([str(i) for i in self.queue])) else: print("-> UNDERFLOW <-") menu = ''' Enter 1. INSERT 2. DELETE 3. DISPAY 4. EXIT -> ''' if __name__ == "__main__": obj = Queue() exit = False while not exit: switch_var = int(input(menu)) # INSERT if switch_var == 1: temp = int(input("Enter the number : ")) if obj.insert(temp): print(f"{temp} is inserted into queue.") else: print("-> OVERFLOW <-") # DELETE elif switch_var == 2: temp = obj.delete() if temp: print(f"{temp} is deleted from queue.") else: print("-> UNDERFLOW <-") # DISPLAY elif switch_var == 3: obj.display() # EXIT elif switch_var == 4: exit = True # INVALID else: print("Please enter a valid statement.")
class Queue: def __init__(self): self.MAX = 5 self.queue = [] def overflow(self): if len(self.queue) == self.MAX: return True else: return False def underflow(self): if len(self.queue) == 0: return True else: return False def insert(self, item): if not self.OVERFLOW(): self.queue.insert(0, item) return True else: return False def delete(self): if not self.UNDERFLOW(): temp = self.queue.pop() return temp else: return False def display(self): if not self.UNDERFLOW(): print(' '.join([str(i) for i in self.queue])) else: print('-> UNDERFLOW <-') menu = '\nEnter\n\t1. INSERT\n\t2. DELETE\n\t3. DISPAY\n\t4. EXIT\n-> ' if __name__ == '__main__': obj = queue() exit = False while not exit: switch_var = int(input(menu)) if switch_var == 1: temp = int(input('Enter the number : ')) if obj.insert(temp): print(f'{temp} is inserted into queue.') else: print('-> OVERFLOW <-') elif switch_var == 2: temp = obj.delete() if temp: print(f'{temp} is deleted from queue.') else: print('-> UNDERFLOW <-') elif switch_var == 3: obj.display() elif switch_var == 4: exit = True else: print('Please enter a valid statement.')
# input N, X, r = map(int, input().split()) MOD = pow(10, 9) # compute # output print(X * (pow(r, N, MOD) - 1) % MOD)
(n, x, r) = map(int, input().split()) mod = pow(10, 9) print(X * (pow(r, N, MOD) - 1) % MOD)
class Solution(object): def subtractProductAndSum(self, n): """ :type n: int :rtype: int """ prod = 1 n = [int(x) for x in list(str(n))] for i in n: prod *= i return prod - sum(n) if __name__ == '__main__': obj = Solution() n = 10 obj.subtractProductAndSum(n)
class Solution(object): def subtract_product_and_sum(self, n): """ :type n: int :rtype: int """ prod = 1 n = [int(x) for x in list(str(n))] for i in n: prod *= i return prod - sum(n) if __name__ == '__main__': obj = solution() n = 10 obj.subtractProductAndSum(n)
boys = ['John', 'Jack', 'Jeremy'] girls = ['Mary', 'Nancy', 'Joyce'] names = [*boys, *girls]
boys = ['John', 'Jack', 'Jeremy'] girls = ['Mary', 'Nancy', 'Joyce'] names = [*boys, *girls]
''' @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()
""" Geometry and colour info. @author Li Xiao-Tian """ class Point2d(): def __init__(self, x, y): self.x = x; self.y = y; COLOURS = { 'u': '#A9A9A9', 'w': '#F9F9F9', 'r': '#D8251A', 'b': '#0194dd', 'g': '#2EFE2E', 'o': '#F0A226', 'y': '#FFFF00', } class ColourScheme(): ''' Colour of each face of the cube. ''' def __init__(self, d='w', u='y', f='b', r='r', b='g', l='o'): self.d = d self.u = u self.f = f self.r = r self.b = b self.l = l self.x = 'u' def config_colour(self, d, u, f, r, b, l): self.d = d self.u = u self.f = f self.r = r self.b = b self.l = l
""" Geometry and colour info. @author Li Xiao-Tian """ class Point2D: def __init__(self, x, y): self.x = x self.y = y colours = {'u': '#A9A9A9', 'w': '#F9F9F9', 'r': '#D8251A', 'b': '#0194dd', 'g': '#2EFE2E', 'o': '#F0A226', 'y': '#FFFF00'} class Colourscheme: """ Colour of each face of the cube. """ def __init__(self, d='w', u='y', f='b', r='r', b='g', l='o'): self.d = d self.u = u self.f = f self.r = r self.b = b self.l = l self.x = 'u' def config_colour(self, d, u, f, r, b, l): self.d = d self.u = u self.f = f self.r = r self.b = b self.l = l
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()
"""Wrapper class for DNS actions""" class ZoneController(object): def __init__(self, zone): """Initialize zone controller given a zone""" self.zone = zone def create_zone(self, **kwargs): """Create a zone under the specific cloud""" return self.zone.cloud.ctl.dns.create_zone(self.zone, **kwargs) def list_records(self, cached=False): """Wrapper for the DNS cloud controller list_records() functionality """ if cached: return self.zone.cloud.ctl.dns.list_cached_records(self.zone) else: return self.zone.cloud.ctl.dns.list_records(self.zone) def delete_zone(self): """Wrapper for the DNS cloud controller delete_zone() functionality """ return self.zone.cloud.ctl.dns.delete_zone(self.zone) class RecordController(object): def __init__(self, record): """Initialize record controller given a record""" self.record = record def create_record(self, **kwargs): """Wrapper for the DNS cloud controller create_record() functionality """ return self.record.zone.cloud.ctl.dns.create_record( self.record, **kwargs) def delete_record(self): """Wrapper for the delete_record DNSController functionality.""" return self.record.zone.cloud.ctl.dns.delete_record(self.record)
"""Wrapper class for DNS actions""" class Zonecontroller(object): def __init__(self, zone): """Initialize zone controller given a zone""" self.zone = zone def create_zone(self, **kwargs): """Create a zone under the specific cloud""" return self.zone.cloud.ctl.dns.create_zone(self.zone, **kwargs) def list_records(self, cached=False): """Wrapper for the DNS cloud controller list_records() functionality """ if cached: return self.zone.cloud.ctl.dns.list_cached_records(self.zone) else: return self.zone.cloud.ctl.dns.list_records(self.zone) def delete_zone(self): """Wrapper for the DNS cloud controller delete_zone() functionality """ return self.zone.cloud.ctl.dns.delete_zone(self.zone) class Recordcontroller(object): def __init__(self, record): """Initialize record controller given a record""" self.record = record def create_record(self, **kwargs): """Wrapper for the DNS cloud controller create_record() functionality """ return self.record.zone.cloud.ctl.dns.create_record(self.record, **kwargs) def delete_record(self): """Wrapper for the delete_record DNSController functionality.""" return self.record.zone.cloud.ctl.dns.delete_record(self.record)
"""Migration for a given Submitty course database.""" def up(config, database, semester, course): """ Run up migration. :param config: Object holding configuration details about Submitty :type config: migrator.config.Config :param database: Object for interacting with given database for environment :type database: migrator.db.Database :param semester: Semester of the course being migrated :type semester: str :param course: Code of course being migrated :type course: str """ # Create overall comment table database.execute( """ CREATE TABLE IF NOT EXISTS gradeable_data_overall_comment ( goc_id integer NOT NULL, g_id character varying(255) NOT NULL, goc_user_id character varying(255), goc_team_id character varying(255), goc_grader_id character varying(255) NOT NULL, goc_overall_comment character varying NOT NULL, CONSTRAINT goc_user_team_id_check CHECK (goc_user_id IS NOT NULL OR goc_team_id IS NOT NULL) ); """ ) database.execute("ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_pkey") database.execute( """ ALTER TABLE ONLY gradeable_data_overall_comment ADD CONSTRAINT gradeable_data_overall_comment_pkey PRIMARY KEY (goc_id); """ ) database.execute("ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_g_id_fkey") database.execute( """ ALTER TABLE ONLY gradeable_data_overall_comment ADD CONSTRAINT gradeable_data_overall_comment_g_id_fkey FOREIGN KEY (g_id) REFERENCES gradeable(g_id) ON DELETE CASCADE; """ ) database.execute("ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_goc_user_id_fkey") database.execute( """ ALTER TABLE ONLY gradeable_data_overall_comment ADD CONSTRAINT gradeable_data_overall_comment_goc_user_id_fkey FOREIGN KEY (goc_user_id) REFERENCES users(user_id) ON DELETE CASCADE; """ ) database.execute("ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_goc_team_id_fkey") database.execute( """ ALTER TABLE ONLY gradeable_data_overall_comment ADD CONSTRAINT gradeable_data_overall_comment_goc_team_id_fkey FOREIGN KEY (goc_team_id) REFERENCES gradeable_teams(team_id) ON DELETE CASCADE; """ ) database.execute("ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_goc_grader_id") database.execute( """ ALTER TABLE ONLY gradeable_data_overall_comment ADD CONSTRAINT gradeable_data_overall_comment_goc_grader_id FOREIGN KEY (goc_grader_id) REFERENCES users(user_id) ON DELETE CASCADE; """ ) database.execute("ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_user_unique") database.execute("ALTER TABLE ONLY gradeable_data_overall_comment ADD CONSTRAINT gradeable_data_overall_comment_user_unique UNIQUE (g_id, goc_user_id, goc_grader_id);") database.execute("ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_team_unique") database.execute("ALTER TABLE ONLY gradeable_data_overall_comment ADD CONSTRAINT gradeable_data_overall_comment_team_unique UNIQUE (g_id, goc_team_id, goc_grader_id);") database.execute( """ CREATE SEQUENCE IF NOT EXISTS gradeable_data_overall_comment_goc_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; """) database.execute("ALTER SEQUENCE gradeable_data_overall_comment_goc_id_seq OWNED BY gradeable_data_overall_comment.goc_id;") database.execute("ALTER TABLE ONLY gradeable_data_overall_comment ALTER COLUMN goc_id SET DEFAULT nextval('gradeable_data_overall_comment_goc_id_seq'::regclass);") # All old overall comments belong to the instructor instructor_id = database.execute("SELECT user_id FROM users WHERE user_group = 1;").first()[0] rows = database.execute(""" SELECT g_id, gd_user_id, gd_team_id, gd_overall_comment FROM gradeable_data; """ ) for g_id, user_id, team_id, comment in rows: query = ''' INSERT INTO gradeable_data_overall_comment ( g_id, goc_user_id, goc_team_id, goc_grader_id, goc_overall_comment ) VALUES ( :g_id, :user_id, :team_id, :grader_id, :comment ) ON CONFLICT DO NOTHING; ''' params = { 'g_id':g_id, 'user_id':user_id, 'team_id':team_id, 'grader_id':instructor_id, 'comment':comment } database.session.execute(query, params) def down(config, database, semester, course): """ Run down migration (rollback). :param config: Object holding configuration details about Submitty :type config: migrator.config.Config :param database: Object for interacting with given database for environment :type database: migrator.db.Database :param semester: Semester of the course being migrated :type semester: str :param course: Code of course being migrated :type course: str """ pass
"""Migration for a given Submitty course database.""" def up(config, database, semester, course): """ Run up migration. :param config: Object holding configuration details about Submitty :type config: migrator.config.Config :param database: Object for interacting with given database for environment :type database: migrator.db.Database :param semester: Semester of the course being migrated :type semester: str :param course: Code of course being migrated :type course: str """ database.execute('\n CREATE TABLE IF NOT EXISTS gradeable_data_overall_comment (\n goc_id integer NOT NULL,\n g_id character varying(255) NOT NULL,\n goc_user_id character varying(255),\n goc_team_id character varying(255),\n goc_grader_id character varying(255) NOT NULL,\n goc_overall_comment character varying NOT NULL,\n CONSTRAINT goc_user_team_id_check CHECK (goc_user_id IS NOT NULL OR goc_team_id IS NOT NULL)\n );\n ') database.execute('ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_pkey') database.execute('\n ALTER TABLE ONLY gradeable_data_overall_comment\n ADD CONSTRAINT gradeable_data_overall_comment_pkey PRIMARY KEY (goc_id);\n ') database.execute('ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_g_id_fkey') database.execute('\n ALTER TABLE ONLY gradeable_data_overall_comment\n ADD CONSTRAINT gradeable_data_overall_comment_g_id_fkey FOREIGN KEY (g_id) REFERENCES gradeable(g_id) ON DELETE CASCADE;\n ') database.execute('ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_goc_user_id_fkey') database.execute('\n ALTER TABLE ONLY gradeable_data_overall_comment\n ADD CONSTRAINT gradeable_data_overall_comment_goc_user_id_fkey FOREIGN KEY (goc_user_id) REFERENCES users(user_id) ON DELETE CASCADE;\n\n ') database.execute('ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_goc_team_id_fkey') database.execute('\n ALTER TABLE ONLY gradeable_data_overall_comment\n ADD CONSTRAINT gradeable_data_overall_comment_goc_team_id_fkey FOREIGN KEY (goc_team_id) REFERENCES gradeable_teams(team_id) ON DELETE CASCADE;\n\n ') database.execute('ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_goc_grader_id') database.execute('\n ALTER TABLE ONLY gradeable_data_overall_comment\n ADD CONSTRAINT gradeable_data_overall_comment_goc_grader_id FOREIGN KEY (goc_grader_id) REFERENCES users(user_id) ON DELETE CASCADE;\n ') database.execute('ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_user_unique') database.execute('ALTER TABLE ONLY gradeable_data_overall_comment ADD CONSTRAINT gradeable_data_overall_comment_user_unique UNIQUE (g_id, goc_user_id, goc_grader_id);') database.execute('ALTER TABLE gradeable_data_overall_comment DROP CONSTRAINT IF EXISTS gradeable_data_overall_comment_team_unique') database.execute('ALTER TABLE ONLY gradeable_data_overall_comment ADD CONSTRAINT gradeable_data_overall_comment_team_unique UNIQUE (g_id, goc_team_id, goc_grader_id);') database.execute('\n CREATE SEQUENCE IF NOT EXISTS gradeable_data_overall_comment_goc_id_seq\n START WITH 1\n INCREMENT BY 1\n NO MINVALUE\n NO MAXVALUE\n CACHE 1;\n ') database.execute('ALTER SEQUENCE gradeable_data_overall_comment_goc_id_seq OWNED BY gradeable_data_overall_comment.goc_id;') database.execute("ALTER TABLE ONLY gradeable_data_overall_comment ALTER COLUMN goc_id SET DEFAULT nextval('gradeable_data_overall_comment_goc_id_seq'::regclass);") instructor_id = database.execute('SELECT user_id FROM users WHERE user_group = 1;').first()[0] rows = database.execute('\n SELECT\n g_id,\n gd_user_id,\n gd_team_id,\n gd_overall_comment\n FROM\n gradeable_data;\n ') for (g_id, user_id, team_id, comment) in rows: query = '\n INSERT INTO gradeable_data_overall_comment\n (\n g_id,\n goc_user_id,\n goc_team_id,\n goc_grader_id,\n goc_overall_comment\n ) VALUES (\n :g_id, :user_id, :team_id, :grader_id, :comment\n )\n ON CONFLICT\n DO NOTHING;\n ' params = {'g_id': g_id, 'user_id': user_id, 'team_id': team_id, 'grader_id': instructor_id, 'comment': comment} database.session.execute(query, params) def down(config, database, semester, course): """ Run down migration (rollback). :param config: Object holding configuration details about Submitty :type config: migrator.config.Config :param database: Object for interacting with given database for environment :type database: migrator.db.Database :param semester: Semester of the course being migrated :type semester: str :param course: Code of course being migrated :type course: str """ pass
# 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}]
#!/usr/bin/env python # # Copyright 2018 - The Android Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. r"""Setup args. Defines the setup arg parser that holds setup specific args. """ CMD_SETUP = "setup" def GetSetupArgParser(subparser): """Return the setup arg parser. Args: subparser: argparse.ArgumentParser that is attached to main acloud cmd. Returns: argparse.ArgumentParser with setup options defined. """ setup_parser = subparser.add_parser(CMD_SETUP) setup_parser.required = False setup_parser.set_defaults(which=CMD_SETUP) setup_parser.add_argument( "--host", action="store_true", dest="host", required=False, help="Setup host to run local instance of an Android Virtual Device. " "Must explicitly set to kick off host setup. Automatically installs " "host base packages as well") setup_parser.add_argument( "--host-base", action="store_true", dest="host_base", required=False, help="Install base packages on the host.") setup_parser.add_argument( "--gcp-init", action="store_true", dest="gcp_init", required=False, help="Setup Google Cloud project name and enable required GCP APIs." "E.G. Google Cloud Storage/ Internal Android Build/ Compute Engine") setup_parser.add_argument( "--force", action="store_true", dest="force", required=False, help="Force the setup steps even if it's not required.") return setup_parser
"""Setup args. Defines the setup arg parser that holds setup specific args. """ cmd_setup = 'setup' def get_setup_arg_parser(subparser): """Return the setup arg parser. Args: subparser: argparse.ArgumentParser that is attached to main acloud cmd. Returns: argparse.ArgumentParser with setup options defined. """ setup_parser = subparser.add_parser(CMD_SETUP) setup_parser.required = False setup_parser.set_defaults(which=CMD_SETUP) setup_parser.add_argument('--host', action='store_true', dest='host', required=False, help='Setup host to run local instance of an Android Virtual Device. Must explicitly set to kick off host setup. Automatically installs host base packages as well') setup_parser.add_argument('--host-base', action='store_true', dest='host_base', required=False, help='Install base packages on the host.') setup_parser.add_argument('--gcp-init', action='store_true', dest='gcp_init', required=False, help='Setup Google Cloud project name and enable required GCP APIs.E.G. Google Cloud Storage/ Internal Android Build/ Compute Engine') setup_parser.add_argument('--force', action='store_true', dest='force', required=False, help="Force the setup steps even if it's not required.") return setup_parser
# 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)))
class Viewport_Mixin(object): """ Mixin to help move around the image """ def update(self): """ Call update to get fresh data. """ pass def reset(self): """ Reset the viewport """ self._position = (0, 0) def set_position(self, xy): self._position = xy def move_left(self): x, y = self._position self.set_position((x + 1, y)) def crop(self, wh): """ Crop at width and height """ w, h = wh (left, top) = self._position right = left + w bottom = top + h im = self.image.crop(box=(left, top, right, bottom)) im.load() # Force the crop return im @property def is_finished(self): x, y = self._position return x >= self.image.size[0] class Viewport_NoScroll_Mixin(Viewport_Mixin): """ This mixin provides the Viewport interface but does not scroll the image. """ def reset(self): self._position = (0, 0) def set_position(self, xy): pass def move_left(self): pass @property def is_finished(self): return True
class Viewport_Mixin(object): """ Mixin to help move around the image """ def update(self): """ Call update to get fresh data. """ pass def reset(self): """ Reset the viewport """ self._position = (0, 0) def set_position(self, xy): self._position = xy def move_left(self): (x, y) = self._position self.set_position((x + 1, y)) def crop(self, wh): """ Crop at width and height """ (w, h) = wh (left, top) = self._position right = left + w bottom = top + h im = self.image.crop(box=(left, top, right, bottom)) im.load() return im @property def is_finished(self): (x, y) = self._position return x >= self.image.size[0] class Viewport_Noscroll_Mixin(Viewport_Mixin): """ This mixin provides the Viewport interface but does not scroll the image. """ def reset(self): self._position = (0, 0) def set_position(self, xy): pass def move_left(self): pass @property def is_finished(self): return True
# # Copyright 2013-2022 The Foundry Visionmongers Ltd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # """ Fixtures for executeSuiteTests.py """ fixtures = { "identifier": "org.openassetio.test.manager.stubManager", "Test_executeSuite_fixtures": { "test_when_test_function_is_run_then_fixtures_are_those_for_the_test": { "aUniqueValue": 5 } }, "Test_executeSuite_with_case_fixtures": { "non_existant_test": {} } }
""" Fixtures for executeSuiteTests.py """ fixtures = {'identifier': 'org.openassetio.test.manager.stubManager', 'Test_executeSuite_fixtures': {'test_when_test_function_is_run_then_fixtures_are_those_for_the_test': {'aUniqueValue': 5}}, 'Test_executeSuite_with_case_fixtures': {'non_existant_test': {}}}
# -*- coding: utf-8 -*- """Top-level package for Pytropic.""" __author__ = """Will Fitzgerald""" __email__ = 'will.fitzgerald@gmail.com' __version__ = '0.1.0'
"""Top-level package for Pytropic.""" __author__ = 'Will Fitzgerald' __email__ = 'will.fitzgerald@gmail.com' __version__ = '0.1.0'
# 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.'
# -*- coding: utf-8 -*- """ Created on Sat Oct 3 10:06:06 2020 @author: Tarun Jaiswal """ x1=range(10) print(x1) x2=range(2,10) print(x2) x3=range(2,10,3) print(x3) print("X1=",end="") for item in x1: print(item,end=",") print("X2=") for item in x2: print(item,end=",") print("X3=",end="") for item in x3: print(item,end=",")
""" Created on Sat Oct 3 10:06:06 2020 @author: Tarun Jaiswal """ x1 = range(10) print(x1) x2 = range(2, 10) print(x2) x3 = range(2, 10, 3) print(x3) print('X1=', end='') for item in x1: print(item, end=',') print('X2=') for item in x2: print(item, end=',') print('X3=', end='') for item in x3: print(item, end=',')
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
""" Bool : Whether it is True or False True / False if string, list, tuple, dictionary are empty (don't have element) it is False. also 'None' is false, too Contents Source : https://wikidocs.net/17 """
""" Bool : Whether it is True or False True / False if string, list, tuple, dictionary are empty (don't have element) it is False. also 'None' is false, too Contents Source : https://wikidocs.net/17 """
""" Example dataset fetching utility. Used in docs. """ src = 'https://raw.githubusercontent.com/ResidentMario/geoplot-data/master' def get_path(dataset_name): """ Returns the URL path to an example dataset suitable for reading into ``geopandas``. """ if dataset_name == 'usa_cities': return f'{src}/usa-cities.geojson' elif dataset_name == 'contiguous_usa': return f'{src}/contiguous-usa.geojson' elif dataset_name == 'nyc_collision_factors': return f'{src}/nyc-collision-factors.geojson' elif dataset_name == 'nyc_boroughs': return f'{src}/nyc-boroughs.geojson' elif dataset_name == 'ny_census': return f'{src}/ny-census-partial.geojson' elif dataset_name == 'obesity_by_state': return f'{src}/obesity-by-state.tsv' elif dataset_name == 'la_flights': return f'{src}/la-flights.geojson' elif dataset_name == 'dc_roads': return f'{src}/dc-roads.geojson' elif dataset_name == 'nyc_map_pluto_sample': return f'{src}/nyc-map-pluto-sample.geojson' elif dataset_name == 'nyc_collisions_sample': return f'{src}/nyc-collisions-sample.csv' elif dataset_name == 'boston_zip_codes': return f'{src}/boston-zip-codes.geojson' elif dataset_name == 'boston_airbnb_listings': return f'{src}/boston-airbnb-listings.geojson' elif dataset_name == 'napoleon_troop_movements': return f'{src}/napoleon-troop-movements.geojson' elif dataset_name == 'nyc_fatal_collisions': return f'{src}/nyc-fatal-collisions.geojson' elif dataset_name == 'nyc_injurious_collisions': return f'{src}/nyc-injurious-collisions.geojson' elif dataset_name == 'nyc_police_precincts': return f'{src}/nyc-police-precincts.geojson' elif dataset_name == 'nyc_parking_tickets': return f'{src}/nyc-parking-tickets-sample.geojson' elif dataset_name == 'world': return f'{src}/world.geojson' elif dataset_name == 'melbourne': return f'{src}/melbourne.geojson' elif dataset_name == 'melbourne_schools': return f'{src}/melbourne-schools.geojson' elif dataset_name == 'san_francisco': return f'{src}/san-francisco.geojson' elif dataset_name == 'san_francisco_street_trees_sample': return f'{src}/san-francisco-street-trees-sample.geojson' elif dataset_name == 'california_congressional_districts': return f'{src}/california-congressional-districts.geojson' else: raise ValueError( f'The dataset_name value {dataset_name!r} is not in the list of valid names.' )
""" Example dataset fetching utility. Used in docs. """ src = 'https://raw.githubusercontent.com/ResidentMario/geoplot-data/master' def get_path(dataset_name): """ Returns the URL path to an example dataset suitable for reading into ``geopandas``. """ if dataset_name == 'usa_cities': return f'{src}/usa-cities.geojson' elif dataset_name == 'contiguous_usa': return f'{src}/contiguous-usa.geojson' elif dataset_name == 'nyc_collision_factors': return f'{src}/nyc-collision-factors.geojson' elif dataset_name == 'nyc_boroughs': return f'{src}/nyc-boroughs.geojson' elif dataset_name == 'ny_census': return f'{src}/ny-census-partial.geojson' elif dataset_name == 'obesity_by_state': return f'{src}/obesity-by-state.tsv' elif dataset_name == 'la_flights': return f'{src}/la-flights.geojson' elif dataset_name == 'dc_roads': return f'{src}/dc-roads.geojson' elif dataset_name == 'nyc_map_pluto_sample': return f'{src}/nyc-map-pluto-sample.geojson' elif dataset_name == 'nyc_collisions_sample': return f'{src}/nyc-collisions-sample.csv' elif dataset_name == 'boston_zip_codes': return f'{src}/boston-zip-codes.geojson' elif dataset_name == 'boston_airbnb_listings': return f'{src}/boston-airbnb-listings.geojson' elif dataset_name == 'napoleon_troop_movements': return f'{src}/napoleon-troop-movements.geojson' elif dataset_name == 'nyc_fatal_collisions': return f'{src}/nyc-fatal-collisions.geojson' elif dataset_name == 'nyc_injurious_collisions': return f'{src}/nyc-injurious-collisions.geojson' elif dataset_name == 'nyc_police_precincts': return f'{src}/nyc-police-precincts.geojson' elif dataset_name == 'nyc_parking_tickets': return f'{src}/nyc-parking-tickets-sample.geojson' elif dataset_name == 'world': return f'{src}/world.geojson' elif dataset_name == 'melbourne': return f'{src}/melbourne.geojson' elif dataset_name == 'melbourne_schools': return f'{src}/melbourne-schools.geojson' elif dataset_name == 'san_francisco': return f'{src}/san-francisco.geojson' elif dataset_name == 'san_francisco_street_trees_sample': return f'{src}/san-francisco-street-trees-sample.geojson' elif dataset_name == 'california_congressional_districts': return f'{src}/california-congressional-districts.geojson' else: raise value_error(f'The dataset_name value {dataset_name!r} is not in the list of valid names.')
# -*- coding: utf-8 -*- # @Time : 2019/10/15 0015 16:21 # @Author : Erichym # @Email : 951523291@qq.com # @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)
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other # Spack Project Developers. See the top-level COPYRIGHT file for details. # # SPDX-License-Identifier: (Apache-2.0 OR MIT) class RubyErubis(RubyPackage): """Erubis is a fast, secure, and very extensible implementation of eRuby. """ homepage = "http://www.kuwata-lab.com/erubis/" git = "https://github.com/kwatch/erubis.git" version('master', branch='master') version('2.7.0', commit='14d3eab57fbc361312c8f3af350cbf9a5bafce17') def patch(self): filter_file('$Release$', str(self.version), 'erubis.gemspec', string=True)
class Rubyerubis(RubyPackage): """Erubis is a fast, secure, and very extensible implementation of eRuby. """ homepage = 'http://www.kuwata-lab.com/erubis/' git = 'https://github.com/kwatch/erubis.git' version('master', branch='master') version('2.7.0', commit='14d3eab57fbc361312c8f3af350cbf9a5bafce17') def patch(self): filter_file('$Release$', str(self.version), 'erubis.gemspec', string=True)
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 IFingerSetterService(Interface): def setUser(user, status): """Set the user's status to something""" # Advantages of latest version @implementer(IFingerService, IFingerSetterService) class MemoryFingerService(service.Service): def __init__(self, **kwargs): self.users = kwargs def getUser(self, user): return defer.succeed(self.users.get(user, "No such user")) def getUsers(self): return defer.succeed(self.users.keys()) def setUser(self, user, status): self.users[user] = status f = MemoryFingerService(moshez='Happy and well') serviceCollection = service.IServiceCollection(application) internet.TCPServer(1079, IFingerSetterFactory(f), interface='127.0.0.1' ).setServiceParent(serviceCollection)
class Ifingersetterservice(Interface): def set_user(user, status): """Set the user's status to something""" @implementer(IFingerService, IFingerSetterService) class Memoryfingerservice(service.Service): def __init__(self, **kwargs): self.users = kwargs def get_user(self, user): return defer.succeed(self.users.get(user, 'No such user')) def get_users(self): return defer.succeed(self.users.keys()) def set_user(self, user, status): self.users[user] = status f = memory_finger_service(moshez='Happy and well') service_collection = service.IServiceCollection(application) internet.TCPServer(1079, i_finger_setter_factory(f), interface='127.0.0.1').setServiceParent(serviceCollection)
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)
""" Example docstring 1 * A thing. * Another thing. or 1. Item 1. 2. Item 2. 3. Item 3. or - Some. - Thing. - Different. +------------+------------+-----------+ | Header 1 | Header 2 | Header 3 | +============+============+===========+ | body row 1 | column 2 | column 3 | +------------+------------+-----------+ | body row 2 | Cells may span columns.| +------------+------------+-----------+ | body row 3 | Cells may | - Cells | +------------+ span rows. | - contain | | body row 4 | | - blocks. | +------------+------------+-----------+ SIMPLE TABLE: ===== ===== ====== Inputs Output ------------ ------ A B A or B ===== ===== ====== False False False True False True False True True True True True ===== ===== ====== `Docs for this project <http://packages.python.org/an_example_pypi_project/>`_ This is a statement. .. warning:: Never, ever, use this code! .. versionadded:: 0.0.1 It's okay to use this code. """ #import antigravity def foo(a, b): """Does a thing. :param a: 1 :param b: the word 'three' :returns: 1 :rtype: int """ return 1 class bar(object): """ Doesn't do anything """ def __init__(self, baz): """Init example. :param baz: Whatever, man. :returns: None :rtype: None """ pass a = 1
""" Example docstring 1 * A thing. * Another thing. or 1. Item 1. 2. Item 2. 3. Item 3. or - Some. - Thing. - Different. +------------+------------+-----------+ | Header 1 | Header 2 | Header 3 | +============+============+===========+ | body row 1 | column 2 | column 3 | +------------+------------+-----------+ | body row 2 | Cells may span columns.| +------------+------------+-----------+ | body row 3 | Cells may | - Cells | +------------+ span rows. | - contain | | body row 4 | | - blocks. | +------------+------------+-----------+ SIMPLE TABLE: ===== ===== ====== Inputs Output ------------ ------ A B A or B ===== ===== ====== False False False True False True False True True True True True ===== ===== ====== `Docs for this project <http://packages.python.org/an_example_pypi_project/>`_ This is a statement. .. warning:: Never, ever, use this code! .. versionadded:: 0.0.1 It's okay to use this code. """ def foo(a, b): """Does a thing. :param a: 1 :param b: the word 'three' :returns: 1 :rtype: int """ return 1 class Bar(object): """ Doesn't do anything """ def __init__(self, baz): """Init example. :param baz: Whatever, man. :returns: None :rtype: None """ pass a = 1
# # 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')
""" Functions to sort variants """ CHROMOSOMES = ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', 'X', 'Y', 'MT') # Maps chromosomes to integers CHROMOSOME_INTEGERS = {chrom: i+1 for i, chrom in enumerate(CHROMOSOMES)} def sort_variants(variants): """ Sort variants """ variant_chromosomes = [] for variant in variants: chrom_int = CHROMOSOME_INTEGERS.get(variant['chrom']) variant_chromosomes.append((chrom_int, variant['start'], variant)) variant_chromosomes.sort(key=lambda x: (x[0], x[1])) sorted_variants = [variant[2] for variant in variant_chromosomes] return sorted_variants
""" Functions to sort variants """ chromosomes = ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', 'X', 'Y', 'MT') chromosome_integers = {chrom: i + 1 for (i, chrom) in enumerate(CHROMOSOMES)} def sort_variants(variants): """ Sort variants """ variant_chromosomes = [] for variant in variants: chrom_int = CHROMOSOME_INTEGERS.get(variant['chrom']) variant_chromosomes.append((chrom_int, variant['start'], variant)) variant_chromosomes.sort(key=lambda x: (x[0], x[1])) sorted_variants = [variant[2] for variant in variant_chromosomes] return sorted_variants
""" Functions of the `sample_project.calculator.calc` module. """ def check_power_of_2(value: int) -> bool: """ Returns `True` if `value` is power of 2 else `False`. See code explanation in [StackOverflow ](https://stackoverflow.com/questions/57025836). """ return (value != 0) and (not value & (value - 1))
""" Functions of the `sample_project.calculator.calc` module. """ def check_power_of_2(value: int) -> bool: """ Returns `True` if `value` is power of 2 else `False`. See code explanation in [StackOverflow ](https://stackoverflow.com/questions/57025836). """ return value != 0 and (not value & value - 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' ] } } ] ] } ] }
{'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']}}]]}]}
index_template = ( lambda: """from pantam import Pantam pantam = Pantam(debug=True) app = pantam.build() """ ) action_template = lambda class_name: """from pantam import PlainTextResponse class {class_name}: def fetch_all(self, request): \"\"\"Fetch all items\"\"\" return PlainTextResponse("Pantam: {class_name} -> fetch_all()") def fetch_single(self, request): \"\"\"Fetch single item\"\"\" uid = request.path_params["id"] return PlainTextResponse("Pantam: {class_name} -> fetch_single()") def create(self, request): \"\"\"Create an item\"\"\" return PlainTextResponse("Pantam: {class_name} -> create()") def update(self, request): \"\"\"Update an item\"\"\" uid = request.path_params["id"] return PlainTextResponse("Pantam: {class_name} -> update()") def delete(self, request): \"\"\"Delete single item\"\"\" uid = request.path_params["id"] return PlainTextResponse("Pantam: {class_name} -> delete()") """.format( class_name=class_name )
index_template = lambda : 'from pantam import Pantam\n\npantam = Pantam(debug=True)\n\napp = pantam.build()\n' action_template = lambda class_name: 'from pantam import PlainTextResponse\n\nclass {class_name}:\n def fetch_all(self, request):\n """Fetch all items"""\n return PlainTextResponse("Pantam: {class_name} -> fetch_all()")\n\n def fetch_single(self, request):\n """Fetch single item"""\n uid = request.path_params["id"]\n return PlainTextResponse("Pantam: {class_name} -> fetch_single()")\n\n def create(self, request):\n """Create an item"""\n return PlainTextResponse("Pantam: {class_name} -> create()")\n\n def update(self, request):\n """Update an item"""\n uid = request.path_params["id"]\n return PlainTextResponse("Pantam: {class_name} -> update()")\n\n def delete(self, request):\n """Delete single item"""\n uid = request.path_params["id"]\n return PlainTextResponse("Pantam: {class_name} -> delete()")\n'.format(class_name=class_name)
# coding: utf-8 # input N = int(input()) a = list(map(int, input().split())) b = list(map(int, input().split())) # solve(TLE) """ flag = 1 for i in range(N): for j in range(N): if (flag == 1): num = a[i] + b[j] flag = 0 else: num = num ^ (a[i] + b[j]) print(num) """ """ Don't use double for """
n = int(input()) a = list(map(int, input().split())) b = list(map(int, input().split())) '\nflag = 1\nfor i in range(N):\n for j in range(N):\n if (flag == 1):\n num = a[i] + b[j]\n flag = 0\n else:\n num = num ^ (a[i] + b[j])\nprint(num)\n' "\nDon't use double for\n"
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()
def _toolchain_configure_impl(repository_ctx): tool_path = "" if repository_ctx.attr.tool_path: tool_path = repository_ctx.attr.tool_path elif repository_ctx.which("databricks"): tool_path = repository_ctx.which("databricks") config_file = "" if repository_ctx.attr.config_file: config_file = repository_ctx.attr.config_file elif "DATABRICKS_CONFIG_FILE" in repository_ctx.os.environ: config_file = repository_ctx.os.environ["DATABRICKS_CONFIG_FILE"] elif "HOME" in repository_ctx.os.environ: config_file = repository_ctx.os.environ["HOME"] + "/.databrickscfg" else: config_file = "~/.databrickscfg" tool_target = "@rules_databricks//databricks:cli" jq_tool_target = "@jq//file:file" repository_ctx.template( "BUILD.bazel", Label("@rules_databricks//databricks/toolchain:BUILD.bazel.tpl"), { "%{CONFIG_FILE}": "%s" % config_file, "%{JQ_TOOL_TARGET}": "%s" % jq_tool_target, "%{TOOL_PATH}": "%s" % tool_path, "%{TOOL_TARGET}": tool_target, }, False, ) # Repository rule to generate a databricks_toolchain target toolchain_configure = repository_rule( implementation = _toolchain_configure_impl, attrs = { "config_file": attr.string( mandatory = False, doc = """A configured path to the Databricks configuration file. If databricks_config_file is not specified, the value of the DATABRICKS_CONFIG_FILE environment variable will be used. DATABRICKS_CONFIG_FILE is not defined, the default set for the databricks tool (typically, the home directory) will be used.""", ), "tool_path": attr.string( mandatory = False, doc = """The full path to the databricks binary. If not specified, it will be searched for in the path. If not available, running commands that require databricks (e.g., incremental load) will fail.""", ), }, environ = [ "PATH", ], )
def _toolchain_configure_impl(repository_ctx): tool_path = '' if repository_ctx.attr.tool_path: tool_path = repository_ctx.attr.tool_path elif repository_ctx.which('databricks'): tool_path = repository_ctx.which('databricks') config_file = '' if repository_ctx.attr.config_file: config_file = repository_ctx.attr.config_file elif 'DATABRICKS_CONFIG_FILE' in repository_ctx.os.environ: config_file = repository_ctx.os.environ['DATABRICKS_CONFIG_FILE'] elif 'HOME' in repository_ctx.os.environ: config_file = repository_ctx.os.environ['HOME'] + '/.databrickscfg' else: config_file = '~/.databrickscfg' tool_target = '@rules_databricks//databricks:cli' jq_tool_target = '@jq//file:file' repository_ctx.template('BUILD.bazel', label('@rules_databricks//databricks/toolchain:BUILD.bazel.tpl'), {'%{CONFIG_FILE}': '%s' % config_file, '%{JQ_TOOL_TARGET}': '%s' % jq_tool_target, '%{TOOL_PATH}': '%s' % tool_path, '%{TOOL_TARGET}': tool_target}, False) toolchain_configure = repository_rule(implementation=_toolchain_configure_impl, attrs={'config_file': attr.string(mandatory=False, doc='A configured path to the Databricks configuration file.\n If databricks_config_file is not specified, the value\n of the DATABRICKS_CONFIG_FILE environment variable will be used.\n DATABRICKS_CONFIG_FILE is not defined, the default set for the\n databricks tool (typically, the home directory) will be used.'), 'tool_path': attr.string(mandatory=False, doc='The full path to the databricks binary. If not specified, it will\n be searched for in the path. If not available, running commands\n that require databricks (e.g., incremental load) will fail.')}, environ=['PATH'])
# 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))
""" Codemonk link: https://www.hackerearth.com/practice/algorithms/dynamic-programming/introduction-to-dynamic-programming-1/practice-problems/algorithm/once-upon-a-time-in-time-land/ In a mystical TimeLand, a person's health and wealth is measured in terms of time(seconds) left. Suppose a person there has 24x60x60 = 86400 seconds left, then he would live for another 1 day. A person dies when his time left becomes 0. Some time-amount can be borrowed from other person, or time-banks. Some time-amount can also be lend to another person, or can be used to buy stuffs. Our hero Mr X, is in critical condition, has very less time left. Today's the inaugural day of a new time-bank. So they are giving away free time-amount worth 1000 years. Bank released N slips, A[1], A[2], .... A[N]. Each slip has a time-amount(can be +ve as well as -ve). A person can pick any number of slips (even none, or all of them, or some of them) out of the N slips. But bank introduced a restriction, they announced one more number K. Restriction is that, if a person picks a slip A[i], then the next slip that he can choose to pick will be A[i+K+1]. It means there should be a difference of at least K between the indices of slips picked. Now slip(s) should be picked in such a way that their sum results in maximum positive time-amount sum possible with the given restriction. If you predict the maximum positive sum possible, then you win. Mr X has asked for your help. Help him win the lottery, and make it quick! Input - Output: First line of the test file contains single number T, the number of test cases to follow. Each test case consists of two lines. First line contains two numbers N and K, separated by a space. Second line contains the N numbers A[1], A[2] ..... A[N] separated by space. For every test case, output in a single line the maximum positive sum possible, that is output for the case. Sample input: 2 10 1 1 2 -3 -5 4 6 -3 2 -1 2 10 2 1 2 -3 -5 4 6 -3 2 -1 2 Sample Output: 12 10 """ """ We are either going to pick the previous or the current money plus the k+1 previous. The answer is given by the expression dp[i] = max(dp[i-1], dp[i-k-1] + bank[i]). That's a linear solution. Final complexity: O(N) """ t = int(input()) for _ in range(t): n, k = map(int, input().split()) bank = list(map(int, input().split())) dp = [0] * n if n == 0: print(0) elif n == 1: print((max(bank[0], bank[1])), 0) elif k > n: print(max(bank)) else: for j in range(n): if j <= k: if bank[j] < 0: if j == 0: dp[j] = 0 else: dp[j] = dp[j-1] else: if j == 0: dp[j] = bank[j] else: dp[j] = max(bank[j], dp[j-1]) else: dp[j] = max(bank[j] + dp[j-k-1], dp[j-1]) if dp[n-1] > 0: print(dp[n-1]) else: print(0)
""" Codemonk link: https://www.hackerearth.com/practice/algorithms/dynamic-programming/introduction-to-dynamic-programming-1/practice-problems/algorithm/once-upon-a-time-in-time-land/ In a mystical TimeLand, a person's health and wealth is measured in terms of time(seconds) left. Suppose a person there has 24x60x60 = 86400 seconds left, then he would live for another 1 day. A person dies when his time left becomes 0. Some time-amount can be borrowed from other person, or time-banks. Some time-amount can also be lend to another person, or can be used to buy stuffs. Our hero Mr X, is in critical condition, has very less time left. Today's the inaugural day of a new time-bank. So they are giving away free time-amount worth 1000 years. Bank released N slips, A[1], A[2], .... A[N]. Each slip has a time-amount(can be +ve as well as -ve). A person can pick any number of slips (even none, or all of them, or some of them) out of the N slips. But bank introduced a restriction, they announced one more number K. Restriction is that, if a person picks a slip A[i], then the next slip that he can choose to pick will be A[i+K+1]. It means there should be a difference of at least K between the indices of slips picked. Now slip(s) should be picked in such a way that their sum results in maximum positive time-amount sum possible with the given restriction. If you predict the maximum positive sum possible, then you win. Mr X has asked for your help. Help him win the lottery, and make it quick! Input - Output: First line of the test file contains single number T, the number of test cases to follow. Each test case consists of two lines. First line contains two numbers N and K, separated by a space. Second line contains the N numbers A[1], A[2] ..... A[N] separated by space. For every test case, output in a single line the maximum positive sum possible, that is output for the case. Sample input: 2 10 1 1 2 -3 -5 4 6 -3 2 -1 2 10 2 1 2 -3 -5 4 6 -3 2 -1 2 Sample Output: 12 10 """ "\nWe are either going to pick the previous or the current money plus the k+1 previous. The answer is given by the \nexpression dp[i] = max(dp[i-1], dp[i-k-1] + bank[i]). That's a linear solution.\n\nFinal complexity: O(N)\n" t = int(input()) for _ in range(t): (n, k) = map(int, input().split()) bank = list(map(int, input().split())) dp = [0] * n if n == 0: print(0) elif n == 1: print(max(bank[0], bank[1]), 0) elif k > n: print(max(bank)) else: for j in range(n): if j <= k: if bank[j] < 0: if j == 0: dp[j] = 0 else: dp[j] = dp[j - 1] elif j == 0: dp[j] = bank[j] else: dp[j] = max(bank[j], dp[j - 1]) else: dp[j] = max(bank[j] + dp[j - k - 1], dp[j - 1]) if dp[n - 1] > 0: print(dp[n - 1]) else: print(0)
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'
"""fglib -- Factor Graph Library. The factor graph library (fglib) is a Python package to simulate message passing on factor graphs. Modules: inference: Module for inference algorithms. graphs: Module for factor graphs. nodes: Module for nodes of factor graphs. edges: Module for edges of factor graphs. rv: Module for random variables. utils: Module for utilities. """ __all__ = ["inference", "graphs", "nodes", "edges", "rv", "utils"] __version__ = "0.2.4"
"""fglib -- Factor Graph Library. The factor graph library (fglib) is a Python package to simulate message passing on factor graphs. Modules: inference: Module for inference algorithms. graphs: Module for factor graphs. nodes: Module for nodes of factor graphs. edges: Module for edges of factor graphs. rv: Module for random variables. utils: Module for utilities. """ __all__ = ['inference', 'graphs', 'nodes', 'edges', 'rv', 'utils'] __version__ = '0.2.4'
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)
""" entrada distancia=>int=>km salida deuda por pagar """ km=int(input("distancia recorrida ")) if (km<300): print("se cancela 50.000 ") elif(km>=300) and (km<=1000): total=(km-300)*30000+70000 print(" su deuda es de: "+str(total)) elif(km>1000): total=(km-300)*9000+150000 print(" su deuda es de: "+str(total))
""" entrada distancia=>int=>km salida deuda por pagar """ km = int(input('distancia recorrida ')) if km < 300: print('se cancela 50.000 ') elif km >= 300 and km <= 1000: total = (km - 300) * 30000 + 70000 print(' su deuda es de: ' + str(total)) elif km > 1000: total = (km - 300) * 9000 + 150000 print(' su deuda es de: ' + str(total))
""" Starts a game against the computer """ # TODO
""" Starts a game against the computer """
# # 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)
def newman_conway(num): """ Returns a list of the Newman Conway numbers for the given value. Time Complexity: O(n) Space Complexity: O(n) """ if num == 0: raise ValueError if num == 1: return '1' if num == 2: return '1 1' sequence = [0, 1, 1] for i in range(3, num + 1): next_num = sequence[sequence[i - 1]] + sequence[i - sequence[i - 1]] sequence.append(next_num) string_sequence = [str(number) for number in sequence[1:]] string_sequence = ' '.join(string_sequence) return string_sequence
def newman_conway(num): """ Returns a list of the Newman Conway numbers for the given value. Time Complexity: O(n) Space Complexity: O(n) """ if num == 0: raise ValueError if num == 1: return '1' if num == 2: return '1 1' sequence = [0, 1, 1] for i in range(3, num + 1): next_num = sequence[sequence[i - 1]] + sequence[i - sequence[i - 1]] sequence.append(next_num) string_sequence = [str(number) for number in sequence[1:]] string_sequence = ' '.join(string_sequence) return string_sequence
# -*- coding: utf-8 -*- # # Copyright (C) 2019 Edward Lau <elau1004@netscape.net> # Licensed under the MIT License. # __version__ = '0.1.0'
__version__ = '0.1.0'
class Solution(object): def searchMatrix(self, matrix, target): """ :type matrix: List[List[int]] :type target: int :rtype: bool """ if len(matrix) == 0: return False n, m = len(matrix), len(matrix[0]) start, end = 0, n * m - 1 while start + 1 < end: mid = start + (end - start) / 2 x, y = mid // m, mid % m if matrix[x][y] < target: start = mid else: end = mid if m: x, y = start // m, start % m if matrix[x][y] == target: return True x, y = end // m, end % m if matrix[x][y] == target: return True return False
class Solution(object): def search_matrix(self, matrix, target): """ :type matrix: List[List[int]] :type target: int :rtype: bool """ if len(matrix) == 0: return False (n, m) = (len(matrix), len(matrix[0])) (start, end) = (0, n * m - 1) while start + 1 < end: mid = start + (end - start) / 2 (x, y) = (mid // m, mid % m) if matrix[x][y] < target: start = mid else: end = mid if m: (x, y) = (start // m, start % m) if matrix[x][y] == target: return True (x, y) = (end // m, end % m) if matrix[x][y] == target: return True return False
# -*- coding: utf-8 -*- """Custom exceptions.""" # Part of StackMUD (https://github.com/whutch/stackmud) # :copyright: (c) 2020 Will Hutcheson # :license: MIT (https://github.com/whutch/stackmud/blob/master/LICENSE.txt) class AlreadyExists(Exception): """Exception for adding an item to a collection it is already in.""" def __init__(self, key, old, new=None): self.key = key self.old = old self.new = new
"""Custom exceptions.""" class Alreadyexists(Exception): """Exception for adding an item to a collection it is already in.""" def __init__(self, key, old, new=None): self.key = key self.old = old self.new = new
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)
ESCAPE_CODE = "\033[" COLORS = {'black': 30, 'red': 31, 'green':32, 'yellow': 33, 'blue': 34, 'purple': 35, 'cyan': 36, 'white': 37} BRIGHTS = {"bright "+color: value + 60 for color, value, in COLORS.items()} TEXT_COLOR = {'reset': 0, **COLORS, **BRIGHTS} TEXT_STYLE = {'reset': 0, 'no effect': 0, 'bold': 1, 'underline': 2, 'negative1': 3, 'negative2': 5} BACKGROUND_COLOR = {color: value+10 for color, value in TEXT_COLOR.items()} BACKGROUND_COLOR['reset'] = 0 RESET = (ESCAPE_CODE + "0;0;0m") def highlight(text_, color='reset', style='reset', background='reset'): """ Decorate text using colors and other styles Parameters ---------- text_ : str The text to be decorated color : str Code of the text color style : str Code of the text style background : str Code of the background style Returns ------- str Decorated text """ """ Use color and other highlights :param text_: text to be highlighted :param color: text color :param style: text style (reset==no effect |b old | underline | etc.) :param background: background color :return: escape-coded highlighted string, rest-code in the end """ return (ESCAPE_CODE + str(TEXT_STYLE.get(style.lower(), 'no_effect')) + ";" + str(TEXT_COLOR.get(color.lower(), 'red')) + ";" + str(BACKGROUND_COLOR.get(background.lower(), 'black')) + "m" + str(text_) + RESET)
escape_code = '\x1b[' colors = {'black': 30, 'red': 31, 'green': 32, 'yellow': 33, 'blue': 34, 'purple': 35, 'cyan': 36, 'white': 37} brights = {'bright ' + color: value + 60 for (color, value) in COLORS.items()} text_color = {'reset': 0, **COLORS, **BRIGHTS} text_style = {'reset': 0, 'no effect': 0, 'bold': 1, 'underline': 2, 'negative1': 3, 'negative2': 5} background_color = {color: value + 10 for (color, value) in TEXT_COLOR.items()} BACKGROUND_COLOR['reset'] = 0 reset = ESCAPE_CODE + '0;0;0m' def highlight(text_, color='reset', style='reset', background='reset'): """ Decorate text using colors and other styles Parameters ---------- text_ : str The text to be decorated color : str Code of the text color style : str Code of the text style background : str Code of the background style Returns ------- str Decorated text """ '\n Use color and other highlights\n :param text_: text to be highlighted\n :param color: text color\n :param style: text style (reset==no effect |b old | underline | etc.)\n :param background: background color\n :return: escape-coded highlighted string, rest-code in the end\n ' return ESCAPE_CODE + str(TEXT_STYLE.get(style.lower(), 'no_effect')) + ';' + str(TEXT_COLOR.get(color.lower(), 'red')) + ';' + str(BACKGROUND_COLOR.get(background.lower(), 'black')) + 'm' + str(text_) + RESET
# 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
""" Definition of Interval. class Interval(object): def __init__(self, start, end): self.start = start self.end = end """ class Solution: """ @param A: An integer list @param queries: An query list @return: The result list """ def intervalSum(self, A, queries): self.segmentTree = [0 for i in range(4*len(A))] if A : self.buildSegmentTree(0,0,len(A)-1,A) result = [] for query in queries : result.append(self.query(0,0,len(A)-1,query.start,query.end)) return result def buildSegmentTree(self,treeIndex,left,right,A): if left == right : self.segmentTree[treeIndex] = A[left] return mid = (left+right) >> 1 leftIndex = 2*treeIndex+1 rightIndex = 2*treeIndex+2 self.buildSegmentTree(leftIndex,left,mid,A) self.buildSegmentTree(rightIndex,mid+1,right,A) self.segmentTree[treeIndex] = self.segmentTree[leftIndex]+self.segmentTree[rightIndex] def query(self,treeIndex,treeLeft,treeRight,queryLeft,queryRight): if treeLeft == queryLeft and treeRight == queryRight : return self.segmentTree[treeIndex] mid = (treeLeft+treeRight) >> 1 leftIndex = 2*treeIndex+1 rightIndex = 2*treeIndex+2 if queryLeft>mid : return self.query(rightIndex,mid+1,treeRight,queryLeft,queryRight) elif queryRight<mid+1 : return self.query(leftIndex,treeLeft,mid,queryLeft,queryRight) else : return self.query(leftIndex,treeLeft,mid,queryLeft,mid) + self.query(rightIndex,mid+1,treeRight,mid+1,queryRight)
""" Definition of Interval. class Interval(object): def __init__(self, start, end): self.start = start self.end = end """ class Solution: """ @param A: An integer list @param queries: An query list @return: The result list """ def interval_sum(self, A, queries): self.segmentTree = [0 for i in range(4 * len(A))] if A: self.buildSegmentTree(0, 0, len(A) - 1, A) result = [] for query in queries: result.append(self.query(0, 0, len(A) - 1, query.start, query.end)) return result def build_segment_tree(self, treeIndex, left, right, A): if left == right: self.segmentTree[treeIndex] = A[left] return mid = left + right >> 1 left_index = 2 * treeIndex + 1 right_index = 2 * treeIndex + 2 self.buildSegmentTree(leftIndex, left, mid, A) self.buildSegmentTree(rightIndex, mid + 1, right, A) self.segmentTree[treeIndex] = self.segmentTree[leftIndex] + self.segmentTree[rightIndex] def query(self, treeIndex, treeLeft, treeRight, queryLeft, queryRight): if treeLeft == queryLeft and treeRight == queryRight: return self.segmentTree[treeIndex] mid = treeLeft + treeRight >> 1 left_index = 2 * treeIndex + 1 right_index = 2 * treeIndex + 2 if queryLeft > mid: return self.query(rightIndex, mid + 1, treeRight, queryLeft, queryRight) elif queryRight < mid + 1: return self.query(leftIndex, treeLeft, mid, queryLeft, queryRight) else: return self.query(leftIndex, treeLeft, mid, queryLeft, mid) + self.query(rightIndex, mid + 1, treeRight, mid + 1, queryRight)
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 "
class ZebrokNotImplementedError(NotImplementedError): """ Custom exception to be thrown when a derived class fails to implement an abstract method of a base class """ pass
class Zebroknotimplementederror(NotImplementedError): """ Custom exception to be thrown when a derived class fails to implement an abstract method of a base class """ pass
''' 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 """