content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
{
"targets": [
{
"include_dirs": [
"<!(node -e \"require('nan')\")"
],
"cflags_cc": [
"-O2"
],
"libraries": [
],
"target_name": "addon",
"sources": [
"./src/native/main.cpp",
"./src/native/deviceinfo.cpp",
"./src/native/devicecontrol.cpp",
"./src/native/ipforward_entry.cpp",
"./src/native/create_device_file.cpp",
"./src/native/rwevent_process.cpp"
]
}
]
} | {'targets': [{'include_dirs': ['<!(node -e "require(\'nan\')")'], 'cflags_cc': ['-O2'], 'libraries': [], 'target_name': 'addon', 'sources': ['./src/native/main.cpp', './src/native/deviceinfo.cpp', './src/native/devicecontrol.cpp', './src/native/ipforward_entry.cpp', './src/native/create_device_file.cpp', './src/native/rwevent_process.cpp']}]} |
class Rect(object):
def __init__(self, *args):
try:
if len(args) == 4:
self.x, self.y, self.w, self.h = args
elif len(args) == 2:
self.x, self.y = args[0]
self.w, self.h = args[1]
else:
raise Exception()
except:
raise Exception('Invalid call args. Rect can either accept: (x, y, w, h) or ((x, y), (w, h))')
| class Rect(object):
def __init__(self, *args):
try:
if len(args) == 4:
(self.x, self.y, self.w, self.h) = args
elif len(args) == 2:
(self.x, self.y) = args[0]
(self.w, self.h) = args[1]
else:
raise exception()
except:
raise exception('Invalid call args. Rect can either accept: (x, y, w, h) or ((x, y), (w, h))') |
def Solve(board):
board.Draw()
find = Find_Empty(board)
if not find:
return True
else:
row, col = find
for i in range(1, 10):
if Valid(board, i, (row, col)):
board.Get_Board()[row][col] = i
if Solve(board):
return True
board.Get_Board()[row][col] = 0
return False
def Valid(board, num, pos):
# Check row
for i in range(len(board.Get_Board()[0])):
if board.Get_Board()[pos[0]][i] == num and pos[1] != i:
return False
# Check column
for i in range(len(board.Get_Board())):
if board.Get_Board()[i][pos[1]] == num and pos[0] != i:
return False
# Check boardx
boardx_x = pos[1] // 3
boardx_y = pos[0] // 3
for i in range(boardx_y * 3, boardx_y * 3 + 3):
for j in range(boardx_x * 3, boardx_x * 3 + 3):
if board.Get_Board()[i][j] == num and (i, j) != pos:
return False
return True
def Print_Board(board):
for i in range(len(board)):
if i % 3 == 0 and i != 0:
print("- - - - - - - - - - - - - ")
for j in range(len(board[0])):
if j % 3 == 0 and j != 0:
print(" | ", end="")
if j == 8:
print(board[i][j])
else:
print(str(board[i][j]) + " ", end="")
def Find_Empty(board):
for i in range(len(board.Get_Board())):
for j in range(len(board.Get_Board()[0])):
if board.Get_Board()[i][j] == 0:
return [i, j] # row, col
return None
| def solve(board):
board.Draw()
find = find__empty(board)
if not find:
return True
else:
(row, col) = find
for i in range(1, 10):
if valid(board, i, (row, col)):
board.Get_Board()[row][col] = i
if solve(board):
return True
board.Get_Board()[row][col] = 0
return False
def valid(board, num, pos):
for i in range(len(board.Get_Board()[0])):
if board.Get_Board()[pos[0]][i] == num and pos[1] != i:
return False
for i in range(len(board.Get_Board())):
if board.Get_Board()[i][pos[1]] == num and pos[0] != i:
return False
boardx_x = pos[1] // 3
boardx_y = pos[0] // 3
for i in range(boardx_y * 3, boardx_y * 3 + 3):
for j in range(boardx_x * 3, boardx_x * 3 + 3):
if board.Get_Board()[i][j] == num and (i, j) != pos:
return False
return True
def print__board(board):
for i in range(len(board)):
if i % 3 == 0 and i != 0:
print('- - - - - - - - - - - - - ')
for j in range(len(board[0])):
if j % 3 == 0 and j != 0:
print(' | ', end='')
if j == 8:
print(board[i][j])
else:
print(str(board[i][j]) + ' ', end='')
def find__empty(board):
for i in range(len(board.Get_Board())):
for j in range(len(board.Get_Board()[0])):
if board.Get_Board()[i][j] == 0:
return [i, j]
return None |
# parsetab.py
# This file is automatically generated. Do not edit.
_tabversion = '3.2'
_lr_method = 'LALR'
_lr_signature = '|\x03\xc9\x8fL\xea\xa0\xa2`v\xc7\xe5\xf6L\xd3\xd2'
_lr_action_items = {'NUMBER':([3,8,12,15,33,35,39,40,43,50,52,54,55,56,57,58,63,64,65,67,68,69,71,73,74,76,77,78,79,80,81,82,83,84,85,86,96,98,100,121,122,123,124,125,126,127,128,129,130,138,140,141,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[-84,-85,18,26,26,-19,26,26,26,26,18,18,26,-29,-27,26,-23,26,-28,26,26,26,-18,-20,-22,26,-24,-26,26,-21,26,26,26,26,26,26,26,26,26,26,-52,-53,-56,-59,-58,-55,-57,26,-60,26,-25,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,26,]),'LBRACKET':([21,38,60,61,66,97,135,148,],[53,68,96,68,100,100,-80,-81,]),'WHILE':([3,8,15,35,40,50,56,57,63,65,71,73,74,77,78,80,86,138,140,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[-84,-85,28,-19,28,28,-29,-27,-23,-28,-18,-20,-22,-24,-26,-21,28,28,-25,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,]),'PRINT':([3,8,15,35,40,50,56,57,63,65,71,73,74,77,78,80,86,138,140,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[-84,-85,30,-19,30,30,-29,-27,-23,-28,-18,-20,-22,-24,-26,-21,30,30,-25,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,]),'NEW':([3,8,15,35,40,50,56,57,63,65,71,73,74,77,78,80,86,138,140,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[-84,-85,31,-19,31,31,-29,-27,-23,-28,-18,-20,-22,-24,-26,-21,31,31,-25,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,31,]),'TRUE':([3,8,15,33,35,39,40,43,50,55,56,57,58,63,64,65,67,68,69,71,73,74,76,77,78,79,80,81,82,83,84,85,86,96,98,100,121,122,123,124,125,126,127,128,129,130,138,140,141,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[-84,-85,32,32,-19,32,32,32,32,32,-29,-27,32,-23,32,-28,32,32,32,-18,-20,-22,32,-24,-26,32,-21,32,32,32,32,32,32,32,32,32,32,-52,-53,-56,-59,-58,-55,-57,32,-60,32,-25,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,]),'MINUS':([3,8,15,24,26,29,32,33,35,38,39,40,43,45,49,50,55,56,57,58,61,62,63,64,65,66,67,68,69,70,71,73,74,75,76,77,78,79,80,81,82,83,84,85,86,94,96,98,100,101,102,103,105,107,112,113,114,115,116,117,121,122,123,124,125,126,127,128,129,130,133,134,135,136,138,140,141,146,147,148,149,151,152,153,154,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[-84,-85,33,-68,-67,-69,-70,33,-19,-72,33,33,33,-71,84,33,33,-29,-27,33,-72,-66,-23,33,-28,-75,33,33,33,84,-18,-20,-22,84,33,-24,-26,33,-21,33,33,33,33,33,33,84,33,33,33,84,-76,84,-73,-77,84,-64,-63,-61,-62,-65,33,-52,-53,-56,-59,-58,-55,-57,33,-60,-73,84,-80,-74,33,-25,33,84,-74,-81,33,33,33,33,84,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,]),'DIVIDE':([24,26,29,32,38,45,49,61,62,66,70,75,94,101,102,103,105,107,112,113,114,115,116,117,133,134,135,136,146,147,148,154,],[-68,-67,-69,-70,-72,-71,81,-72,-66,-75,81,81,81,81,-76,81,-73,-77,81,-64,-63,81,81,-65,-73,81,-80,-74,81,-74,-81,81,]),'LE':([24,26,29,32,45,61,62,66,94,102,107,113,114,115,116,117,133,135,147,148,],[-68,-67,-69,-70,-71,-72,-66,-75,128,-76,-77,-64,-63,-61,-62,-65,-73,-80,-74,-81,]),'RPAREN':([12,18,19,20,21,24,26,29,32,36,45,49,54,61,62,66,69,75,87,88,90,92,93,95,98,99,102,104,107,108,113,114,115,116,117,132,133,135,145,146,147,148,],[17,-16,51,-13,-15,-68,-67,-69,-70,-37,-71,-39,89,-72,-66,-75,105,107,-14,-17,119,120,-50,131,133,-38,-76,136,-77,137,-64,-63,-61,-62,-65,147,-73,-80,-51,-54,-74,-81,]),'NEWLINE':([0,3,4,9,16,17,24,25,26,27,29,32,34,36,37,41,42,45,46,47,48,49,51,61,62,66,70,72,89,91,97,99,101,102,105,107,109,110,111,112,113,114,115,116,117,118,119,120,131,133,135,136,137,138,143,147,148,149,153,154,156,159,160,166,170,171,173,175,176,178,179,180,],[3,3,3,3,3,-12,-68,3,-67,3,-69,-70,3,-37,3,3,3,-71,3,3,3,-39,-9,-72,-66,-75,-30,3,-11,-34,-78,-38,-31,-76,-35,-77,3,3,-79,-82,-64,-63,-61,-62,-65,3,-10,3,-86,-73,-80,-36,3,3,3,-74,-81,3,3,-83,3,3,-46,-42,-47,-48,-40,-44,-43,-49,-41,-45,]),'NE':([24,26,29,32,45,61,62,66,94,102,107,113,114,115,116,117,133,135,147,148,],[-68,-67,-69,-70,-71,-72,-66,-75,130,-76,-77,-64,-63,-61,-62,-65,-73,-80,-74,-81,]),'LT':([24,26,29,32,45,61,62,66,94,102,107,113,114,115,116,117,133,135,147,148,],[-68,-67,-69,-70,-71,-72,-66,-75,127,-76,-77,-64,-63,-61,-62,-65,-73,-80,-74,-81,]),'COMMA':([18,20,21,24,26,29,32,36,38,45,49,61,62,66,88,102,105,107,111,112,113,114,115,116,117,133,135,136,147,148,154,],[-16,52,-15,-68,-67,-69,-70,64,-72,-71,-39,-72,-66,-75,-17,-76,-73,-77,141,-82,-64,-63,-61,-62,-65,-73,-80,-74,-74,-81,-83,]),'PLUS':([24,26,29,32,38,45,49,61,62,66,70,75,94,101,102,103,105,107,112,113,114,115,116,117,133,134,135,136,146,147,148,154,],[-68,-67,-69,-70,-72,-71,83,-72,-66,-75,83,83,83,83,-76,83,-73,-77,83,-64,-63,-61,-62,-65,-73,83,-80,-74,83,-74,-81,83,]),'IDENTIFIER':([0,2,3,5,7,8,11,12,13,14,15,31,33,35,39,40,43,50,52,54,55,56,57,58,59,63,64,65,67,68,69,71,72,73,74,76,77,78,79,80,81,82,83,84,85,86,96,98,100,106,118,121,122,123,124,125,126,127,128,129,130,138,140,141,142,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[6,-4,-84,6,6,-85,-3,21,22,6,38,60,61,-19,61,38,61,38,21,21,61,-29,-27,61,95,-23,61,-28,61,61,61,-18,-6,-20,-22,61,-24,-26,61,-21,61,61,61,61,61,38,61,61,61,-8,-5,61,-52,-53,-56,-59,-58,-55,-57,61,-60,38,-25,61,-7,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,38,]),'OUT':([3,8,15,35,40,50,56,57,63,65,71,73,74,77,78,80,86,138,140,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[-84,-85,39,-19,39,39,-29,-27,-23,-28,-18,-20,-22,-24,-26,-21,39,39,-25,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,39,]),'GT':([24,26,29,32,45,61,62,66,94,102,107,113,114,115,116,117,133,135,147,148,],[-68,-67,-69,-70,-71,-72,-66,-75,124,-76,-77,-64,-63,-61,-62,-65,-73,-80,-74,-81,]),'RBRACE':([3,8,35,40,56,57,63,65,71,73,74,77,78,80,86,140,151,157,161,162,164,167,168,172,174,177,],[-84,-85,-19,72,-29,-27,-23,-28,-18,-20,-22,-24,-26,-21,118,-25,160,166,170,171,173,175,176,178,179,180,]),'EQUALS':([23,24,26,29,32,36,38,45,48,49,61,62,66,97,99,102,105,107,113,114,115,116,117,133,135,136,147,148,],[55,-68,-67,-69,-70,-37,67,-71,79,-39,-72,-66,-75,-78,-38,-76,-73,-77,-64,-63,-61,-62,-65,-73,-80,-74,-74,-81,]),'ELSE':([3,8,77,],[-84,-85,109,]),'GE':([24,26,29,32,45,61,62,66,94,102,107,113,114,115,116,117,133,135,147,148,],[-68,-67,-69,-70,-71,-72,-66,-75,126,-76,-77,-64,-63,-61,-62,-65,-73,-80,-74,-81,]),'LPAREN':([3,6,8,15,22,28,30,33,35,38,39,40,43,44,50,55,56,57,58,61,63,64,65,67,68,69,71,73,74,76,77,78,79,80,81,82,83,84,85,86,96,98,100,121,122,123,124,125,126,127,128,129,130,138,140,141,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[-84,12,-85,43,54,58,59,43,-19,69,43,43,43,76,43,43,-29,-27,43,98,-23,43,-28,43,43,43,-18,-20,-22,43,-24,-26,43,-21,43,43,43,43,43,43,43,43,43,43,-52,-53,-56,-59,-58,-55,-57,43,-60,43,-25,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,43,]),'TIMES':([24,26,29,32,38,45,49,61,62,66,70,75,94,101,102,103,105,107,112,113,114,115,116,117,133,134,135,136,146,147,148,154,],[-68,-67,-69,-70,-72,-71,82,-72,-66,-75,82,82,82,82,-76,82,-73,-77,82,-64,-63,82,82,-65,-73,82,-80,-74,82,-74,-81,82,]),'EQ':([24,26,29,32,45,61,62,66,94,102,107,113,114,115,116,117,133,135,147,148,],[-68,-67,-69,-70,-71,-72,-66,-75,125,-76,-77,-64,-63,-61,-62,-65,-73,-80,-74,-81,]),'IF':([3,8,15,35,40,50,56,57,63,65,71,73,74,77,78,80,86,138,140,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[-84,-85,44,-19,44,44,-29,-27,-23,-28,-18,-20,-22,-24,-26,-21,44,44,-25,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,44,]),'AND':([24,26,29,32,45,61,62,66,93,102,107,113,114,115,116,117,133,135,146,147,148,],[-68,-67,-69,-70,-71,-72,-66,-75,122,-76,-77,-64,-63,-61,-62,-65,-73,-80,-54,-74,-81,]),'LBRACE':([3,4,8,10,17,51,89,109,119,120,137,139,144,150,],[-84,9,-85,16,-12,-9,-11,138,-10,143,149,153,156,159,]),'FALSE':([3,8,15,33,35,39,40,43,50,55,56,57,58,63,64,65,67,68,69,71,73,74,76,77,78,79,80,81,82,83,84,85,86,96,98,100,121,122,123,124,125,126,127,128,129,130,138,140,141,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[-84,-85,45,45,-19,45,45,45,45,45,-29,-27,45,-23,45,-28,45,45,45,-18,-20,-22,45,-24,-26,45,-21,45,45,45,45,45,45,45,45,45,45,-52,-53,-56,-59,-58,-55,-57,45,-60,45,-25,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,]),'FLOAT':([3,8,15,33,35,39,40,43,50,55,56,57,58,63,64,65,67,68,69,71,73,74,76,77,78,79,80,81,82,83,84,85,86,96,98,100,121,122,123,124,125,126,127,128,129,130,138,140,141,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[-84,-85,24,24,-19,24,24,24,24,24,-29,-27,24,-23,24,-28,24,24,24,-18,-20,-22,24,-24,-26,24,-21,24,24,24,24,24,24,24,24,24,24,-52,-53,-56,-59,-58,-55,-57,24,-60,24,-25,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,]),'HASHTAG':([6,],[13,]),'RBRACKET':([24,26,29,32,45,53,61,62,66,68,102,103,107,113,114,115,116,117,133,134,135,147,148,],[-68,-67,-69,-70,-71,88,-72,-66,-75,102,-76,135,-77,-64,-63,-61,-62,-65,-73,148,-80,-74,-81,]),'$end':([1,2,3,5,8,11,14,72,106,118,142,],[0,-4,-84,-2,-85,-3,-1,-6,-8,-5,-7,]),'OR':([24,26,29,32,45,61,62,66,93,102,107,113,114,115,116,117,133,135,146,147,148,],[-68,-67,-69,-70,-71,-72,-66,-75,123,-76,-77,-64,-63,-61,-62,-65,-73,-80,-54,-74,-81,]),'MOD':([24,26,29,32,38,45,49,61,62,66,70,75,94,101,102,103,105,107,112,113,114,115,116,117,133,134,135,136,146,147,148,154,],[-68,-67,-69,-70,-72,-71,85,-72,-66,-75,85,85,85,85,-76,85,-73,-77,85,-64,-63,85,85,-65,-73,85,-80,-74,85,-74,-81,85,]),}
_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 = {'parameters_list':([15,40,50,55,64,69,86,98,138,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[23,23,23,91,99,104,23,132,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,23,]),'head':([0,5,7,14,],[4,4,4,4,]),'function_call':([15,40,50,86,138,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,27,]),'boolean':([15,33,39,40,43,50,55,58,64,67,68,69,76,79,81,82,83,84,85,86,96,98,100,121,129,138,141,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,29,]),'argument_declaration':([12,52,54,],[20,20,20,]),'out':([15,40,50,86,138,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,]),'condition_list':([58,76,121,],[92,108,145,]),'parralel_assignment':([15,40,50,86,138,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,]),'program':([0,7,],[5,14,]),'argument_list':([12,52,54,],[19,87,90,]),'statement':([15,40,50,86,138,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[35,71,35,71,35,35,71,35,35,35,71,35,35,71,71,35,71,35,71,71,35,71,71,71,]),'parameter_declaration':([15,40,50,55,64,69,86,98,138,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[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,]),'print':([15,40,50,86,138,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,37,]),'newlines':([0,3,4,9,16,25,27,34,37,41,42,46,47,48,72,109,110,118,120,137,138,143,149,153,156,159,],[7,8,10,15,50,56,57,63,65,73,74,77,78,80,106,139,140,142,144,150,152,155,158,163,165,169,]),'body':([15,50,138,149,152,153,155,158,159,163,165,169,],[40,86,151,157,161,162,164,167,168,172,174,177,]),'begin':([0,],[1,]),'value_list':([79,],[111,]),'assignment':([15,40,50,86,138,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,41,]),'comp_symbol':([94,],[129,]),'array_assignment':([15,40,50,86,138,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,42,]),'else_block':([77,],[110,]),'bracket_list':([38,60,61,],[66,97,66,]),'condition':([58,76,121,],[93,93,93,]),'function_definition':([0,5,7,14,],[2,11,2,11,]),'comb_symbol':([93,],[121,]),'if_block':([15,40,50,86,138,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,46,]),'while_block':([15,40,50,86,138,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,47,]),'array_declaration':([15,40,50,86,138,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,48,]),'expression':([15,33,39,40,43,50,55,58,64,67,68,69,76,79,81,82,83,84,85,86,96,98,100,121,129,138,141,149,151,152,153,155,157,158,159,161,162,163,164,165,167,168,169,172,174,177,],[49,62,70,49,75,49,49,94,49,101,103,49,94,112,113,114,115,116,117,49,103,49,134,94,146,49,154,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,49,]),}
_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' -> begin","S'",1,None,None,None),
('begin -> newlines program','begin',2,'p_begin','/home/nix/workspace/JG3/Parser.py',25),
('begin -> program','begin',1,'p_begin','/home/nix/workspace/JG3/Parser.py',26),
('program -> program function_definition','program',2,'p_program','/home/nix/workspace/JG3/Parser.py',33),
('program -> function_definition','program',1,'p_program','/home/nix/workspace/JG3/Parser.py',34),
('function_definition -> head newlines LBRACE newlines body RBRACE','function_definition',6,'p_function_definition','/home/nix/workspace/JG3/Parser.py',42),
('function_definition -> head LBRACE newlines body RBRACE','function_definition',5,'p_function_definition','/home/nix/workspace/JG3/Parser.py',43),
('function_definition -> head newlines LBRACE newlines body RBRACE newlines','function_definition',7,'p_function_definition','/home/nix/workspace/JG3/Parser.py',44),
('function_definition -> head LBRACE newlines body RBRACE newlines','function_definition',6,'p_function_definition','/home/nix/workspace/JG3/Parser.py',45),
('head -> IDENTIFIER LPAREN argument_list RPAREN','head',4,'p_head','/home/nix/workspace/JG3/Parser.py',57),
('head -> IDENTIFIER HASHTAG IDENTIFIER LPAREN argument_list RPAREN','head',6,'p_head','/home/nix/workspace/JG3/Parser.py',58),
('head -> IDENTIFIER HASHTAG IDENTIFIER LPAREN RPAREN','head',5,'p_head','/home/nix/workspace/JG3/Parser.py',59),
('head -> IDENTIFIER LPAREN RPAREN','head',3,'p_head','/home/nix/workspace/JG3/Parser.py',60),
('argument_list -> argument_declaration','argument_list',1,'p_argument_list','/home/nix/workspace/JG3/Parser.py',72),
('argument_list -> argument_declaration COMMA argument_list','argument_list',3,'p_argument_list','/home/nix/workspace/JG3/Parser.py',73),
('argument_declaration -> IDENTIFIER','argument_declaration',1,'p_argument_declaration','/home/nix/workspace/JG3/Parser.py',81),
('argument_declaration -> NUMBER','argument_declaration',1,'p_argument_declaration','/home/nix/workspace/JG3/Parser.py',82),
('argument_declaration -> IDENTIFIER LBRACKET RBRACKET','argument_declaration',3,'p_argument_declaration','/home/nix/workspace/JG3/Parser.py',83),
('body -> body statement','body',2,'p_body','/home/nix/workspace/JG3/Parser.py',93),
('body -> statement','body',1,'p_body','/home/nix/workspace/JG3/Parser.py',94),
('statement -> assignment newlines','statement',2,'p_statement','/home/nix/workspace/JG3/Parser.py',103),
('statement -> array_declaration newlines','statement',2,'p_statement','/home/nix/workspace/JG3/Parser.py',104),
('statement -> array_assignment newlines','statement',2,'p_statement','/home/nix/workspace/JG3/Parser.py',105),
('statement -> parralel_assignment newlines','statement',2,'p_statement','/home/nix/workspace/JG3/Parser.py',106),
('statement -> if_block newlines','statement',2,'p_statement','/home/nix/workspace/JG3/Parser.py',107),
('statement -> if_block newlines else_block newlines','statement',4,'p_statement','/home/nix/workspace/JG3/Parser.py',108),
('statement -> while_block newlines','statement',2,'p_statement','/home/nix/workspace/JG3/Parser.py',109),
('statement -> function_call newlines','statement',2,'p_statement','/home/nix/workspace/JG3/Parser.py',110),
('statement -> print newlines','statement',2,'p_statement','/home/nix/workspace/JG3/Parser.py',111),
('statement -> out newlines','statement',2,'p_statement','/home/nix/workspace/JG3/Parser.py',112),
('out -> OUT expression','out',2,'p_out','/home/nix/workspace/JG3/Parser.py',120),
('assignment -> IDENTIFIER EQUALS expression','assignment',3,'p_assignment','/home/nix/workspace/JG3/Parser.py',125),
('multiple_assignment -> assignment','multiple_assignment',1,'p_multiple_assignment','/home/nix/workspace/JG3/Parser.py',130),
('multiple_assignment -> IDENTIFIER EQUALS multiple_assignment','multiple_assignment',3,'p_multiple_assignment','/home/nix/workspace/JG3/Parser.py',131),
('parralel_assignment -> parameters_list EQUALS parameters_list','parralel_assignment',3,'p_parralel_assignment','/home/nix/workspace/JG3/Parser.py',140),
('function_call -> IDENTIFIER LPAREN RPAREN','function_call',3,'p_function_call','/home/nix/workspace/JG3/Parser.py',145),
('function_call -> IDENTIFIER LPAREN parameters_list RPAREN','function_call',4,'p_function_call','/home/nix/workspace/JG3/Parser.py',146),
('parameters_list -> parameter_declaration','parameters_list',1,'p_parameters_list','/home/nix/workspace/JG3/Parser.py',154),
('parameters_list -> parameter_declaration COMMA parameters_list','parameters_list',3,'p_parameters_list','/home/nix/workspace/JG3/Parser.py',155),
('parameter_declaration -> expression','parameter_declaration',1,'p_parameter_declaration','/home/nix/workspace/JG3/Parser.py',163),
('while_block -> WHILE LPAREN condition_list RPAREN LBRACE newlines body RBRACE','while_block',8,'p_while_block','/home/nix/workspace/JG3/Parser.py',168),
('while_block -> WHILE LPAREN condition_list RPAREN newlines LBRACE newlines body RBRACE','while_block',9,'p_while_block','/home/nix/workspace/JG3/Parser.py',169),
('if_block -> IF LPAREN condition_list RPAREN LBRACE body RBRACE','if_block',7,'p_if_block','/home/nix/workspace/JG3/Parser.py',177),
('if_block -> IF LPAREN condition_list RPAREN newlines LBRACE body RBRACE','if_block',8,'p_if_block','/home/nix/workspace/JG3/Parser.py',178),
('if_block -> IF LPAREN condition_list RPAREN LBRACE newlines body RBRACE','if_block',8,'p_if_block','/home/nix/workspace/JG3/Parser.py',179),
('if_block -> IF LPAREN condition_list RPAREN newlines LBRACE newlines body RBRACE','if_block',9,'p_if_block','/home/nix/workspace/JG3/Parser.py',180),
('else_block -> ELSE LBRACE body RBRACE','else_block',4,'p_else_block','/home/nix/workspace/JG3/Parser.py',192),
('else_block -> ELSE LBRACE newlines body RBRACE','else_block',5,'p_else_block','/home/nix/workspace/JG3/Parser.py',193),
('else_block -> ELSE newlines LBRACE body RBRACE','else_block',5,'p_else_block','/home/nix/workspace/JG3/Parser.py',194),
('else_block -> ELSE newlines LBRACE newlines body RBRACE','else_block',6,'p_else_block','/home/nix/workspace/JG3/Parser.py',195),
('condition_list -> condition','condition_list',1,'p_condition_list','/home/nix/workspace/JG3/Parser.py',205),
('condition_list -> condition comb_symbol condition_list','condition_list',3,'p_condition_list','/home/nix/workspace/JG3/Parser.py',206),
('comb_symbol -> AND','comb_symbol',1,'p_comb_symbol','/home/nix/workspace/JG3/Parser.py',214),
('comb_symbol -> OR','comb_symbol',1,'p_comb_symbol','/home/nix/workspace/JG3/Parser.py',215),
('condition -> expression comp_symbol expression','condition',3,'p_condition','/home/nix/workspace/JG3/Parser.py',220),
('comp_symbol -> LT','comp_symbol',1,'p_comp_symbol','/home/nix/workspace/JG3/Parser.py',225),
('comp_symbol -> GT','comp_symbol',1,'p_comp_symbol','/home/nix/workspace/JG3/Parser.py',226),
('comp_symbol -> LE','comp_symbol',1,'p_comp_symbol','/home/nix/workspace/JG3/Parser.py',227),
('comp_symbol -> GE','comp_symbol',1,'p_comp_symbol','/home/nix/workspace/JG3/Parser.py',228),
('comp_symbol -> EQ','comp_symbol',1,'p_comp_symbol','/home/nix/workspace/JG3/Parser.py',229),
('comp_symbol -> NE','comp_symbol',1,'p_comp_symbol','/home/nix/workspace/JG3/Parser.py',230),
('expression -> expression PLUS expression','expression',3,'p_expression_binop','/home/nix/workspace/JG3/Parser.py',235),
('expression -> expression MINUS expression','expression',3,'p_expression_binop','/home/nix/workspace/JG3/Parser.py',236),
('expression -> expression TIMES expression','expression',3,'p_expression_binop','/home/nix/workspace/JG3/Parser.py',237),
('expression -> expression DIVIDE expression','expression',3,'p_expression_binop','/home/nix/workspace/JG3/Parser.py',238),
('expression -> expression MOD expression','expression',3,'p_expression_binop','/home/nix/workspace/JG3/Parser.py',239),
('expression -> MINUS expression','expression',2,'p_expression_uminus','/home/nix/workspace/JG3/Parser.py',244),
('expression -> NUMBER','expression',1,'p_expression_number','/home/nix/workspace/JG3/Parser.py',249),
('expression -> FLOAT','expression',1,'p_expression_float','/home/nix/workspace/JG3/Parser.py',254),
('expression -> boolean','expression',1,'p_expression_boolean','/home/nix/workspace/JG3/Parser.py',259),
('boolean -> TRUE','boolean',1,'p_boolean','/home/nix/workspace/JG3/Parser.py',264),
('boolean -> FALSE','boolean',1,'p_boolean','/home/nix/workspace/JG3/Parser.py',265),
('expression -> IDENTIFIER','expression',1,'p_expression_name','/home/nix/workspace/JG3/Parser.py',270),
('expression -> IDENTIFIER LPAREN RPAREN','expression',3,'p_exprFunction','/home/nix/workspace/JG3/Parser.py',281),
('expression -> IDENTIFIER LPAREN parameters_list RPAREN','expression',4,'p_exprFunction','/home/nix/workspace/JG3/Parser.py',282),
('expression -> IDENTIFIER bracket_list','expression',2,'p_exprArray','/home/nix/workspace/JG3/Parser.py',290),
('expression -> IDENTIFIER LBRACKET RBRACKET','expression',3,'p_exprArray','/home/nix/workspace/JG3/Parser.py',291),
('expression -> LPAREN expression RPAREN','expression',3,'p_group','/home/nix/workspace/JG3/Parser.py',299),
('array_declaration -> NEW IDENTIFIER bracket_list','array_declaration',3,'p_array_declaration','/home/nix/workspace/JG3/Parser.py',303),
('array_assignment -> array_declaration EQUALS value_list','array_assignment',3,'p_array_assignment','/home/nix/workspace/JG3/Parser.py',308),
('bracket_list -> LBRACKET expression RBRACKET','bracket_list',3,'p_bracket_list','/home/nix/workspace/JG3/Parser.py',313),
('bracket_list -> bracket_list LBRACKET expression RBRACKET','bracket_list',4,'p_bracket_list','/home/nix/workspace/JG3/Parser.py',314),
('value_list -> expression','value_list',1,'p_value_list','/home/nix/workspace/JG3/Parser.py',322),
('value_list -> value_list COMMA expression','value_list',3,'p_value_list','/home/nix/workspace/JG3/Parser.py',323),
('newlines -> NEWLINE','newlines',1,'p_newlines','/home/nix/workspace/JG3/Parser.py',332),
('newlines -> NEWLINE newlines','newlines',2,'p_newlines','/home/nix/workspace/JG3/Parser.py',333),
('print -> PRINT LPAREN IDENTIFIER RPAREN','print',4,'p_print','/home/nix/workspace/JG3/Parser.py',341),
]
| _tabversion = '3.2'
_lr_method = 'LALR'
_lr_signature = '|\x03É\x8fLê\xa0¢`vÇåöLÓÒ'
_lr_action_items = {'NUMBER': ([3, 8, 12, 15, 33, 35, 39, 40, 43, 50, 52, 54, 55, 56, 57, 58, 63, 64, 65, 67, 68, 69, 71, 73, 74, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 96, 98, 100, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 138, 140, 141, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [-84, -85, 18, 26, 26, -19, 26, 26, 26, 26, 18, 18, 26, -29, -27, 26, -23, 26, -28, 26, 26, 26, -18, -20, -22, 26, -24, -26, 26, -21, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, -52, -53, -56, -59, -58, -55, -57, 26, -60, 26, -25, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26]), 'LBRACKET': ([21, 38, 60, 61, 66, 97, 135, 148], [53, 68, 96, 68, 100, 100, -80, -81]), 'WHILE': ([3, 8, 15, 35, 40, 50, 56, 57, 63, 65, 71, 73, 74, 77, 78, 80, 86, 138, 140, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [-84, -85, 28, -19, 28, 28, -29, -27, -23, -28, -18, -20, -22, -24, -26, -21, 28, 28, -25, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28]), 'PRINT': ([3, 8, 15, 35, 40, 50, 56, 57, 63, 65, 71, 73, 74, 77, 78, 80, 86, 138, 140, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [-84, -85, 30, -19, 30, 30, -29, -27, -23, -28, -18, -20, -22, -24, -26, -21, 30, 30, -25, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30]), 'NEW': ([3, 8, 15, 35, 40, 50, 56, 57, 63, 65, 71, 73, 74, 77, 78, 80, 86, 138, 140, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [-84, -85, 31, -19, 31, 31, -29, -27, -23, -28, -18, -20, -22, -24, -26, -21, 31, 31, -25, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31]), 'TRUE': ([3, 8, 15, 33, 35, 39, 40, 43, 50, 55, 56, 57, 58, 63, 64, 65, 67, 68, 69, 71, 73, 74, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 96, 98, 100, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 138, 140, 141, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [-84, -85, 32, 32, -19, 32, 32, 32, 32, 32, -29, -27, 32, -23, 32, -28, 32, 32, 32, -18, -20, -22, 32, -24, -26, 32, -21, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, -52, -53, -56, -59, -58, -55, -57, 32, -60, 32, -25, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32]), 'MINUS': ([3, 8, 15, 24, 26, 29, 32, 33, 35, 38, 39, 40, 43, 45, 49, 50, 55, 56, 57, 58, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 94, 96, 98, 100, 101, 102, 103, 105, 107, 112, 113, 114, 115, 116, 117, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 133, 134, 135, 136, 138, 140, 141, 146, 147, 148, 149, 151, 152, 153, 154, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [-84, -85, 33, -68, -67, -69, -70, 33, -19, -72, 33, 33, 33, -71, 84, 33, 33, -29, -27, 33, -72, -66, -23, 33, -28, -75, 33, 33, 33, 84, -18, -20, -22, 84, 33, -24, -26, 33, -21, 33, 33, 33, 33, 33, 33, 84, 33, 33, 33, 84, -76, 84, -73, -77, 84, -64, -63, -61, -62, -65, 33, -52, -53, -56, -59, -58, -55, -57, 33, -60, -73, 84, -80, -74, 33, -25, 33, 84, -74, -81, 33, 33, 33, 33, 84, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33]), 'DIVIDE': ([24, 26, 29, 32, 38, 45, 49, 61, 62, 66, 70, 75, 94, 101, 102, 103, 105, 107, 112, 113, 114, 115, 116, 117, 133, 134, 135, 136, 146, 147, 148, 154], [-68, -67, -69, -70, -72, -71, 81, -72, -66, -75, 81, 81, 81, 81, -76, 81, -73, -77, 81, -64, -63, 81, 81, -65, -73, 81, -80, -74, 81, -74, -81, 81]), 'LE': ([24, 26, 29, 32, 45, 61, 62, 66, 94, 102, 107, 113, 114, 115, 116, 117, 133, 135, 147, 148], [-68, -67, -69, -70, -71, -72, -66, -75, 128, -76, -77, -64, -63, -61, -62, -65, -73, -80, -74, -81]), 'RPAREN': ([12, 18, 19, 20, 21, 24, 26, 29, 32, 36, 45, 49, 54, 61, 62, 66, 69, 75, 87, 88, 90, 92, 93, 95, 98, 99, 102, 104, 107, 108, 113, 114, 115, 116, 117, 132, 133, 135, 145, 146, 147, 148], [17, -16, 51, -13, -15, -68, -67, -69, -70, -37, -71, -39, 89, -72, -66, -75, 105, 107, -14, -17, 119, 120, -50, 131, 133, -38, -76, 136, -77, 137, -64, -63, -61, -62, -65, 147, -73, -80, -51, -54, -74, -81]), 'NEWLINE': ([0, 3, 4, 9, 16, 17, 24, 25, 26, 27, 29, 32, 34, 36, 37, 41, 42, 45, 46, 47, 48, 49, 51, 61, 62, 66, 70, 72, 89, 91, 97, 99, 101, 102, 105, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 131, 133, 135, 136, 137, 138, 143, 147, 148, 149, 153, 154, 156, 159, 160, 166, 170, 171, 173, 175, 176, 178, 179, 180], [3, 3, 3, 3, 3, -12, -68, 3, -67, 3, -69, -70, 3, -37, 3, 3, 3, -71, 3, 3, 3, -39, -9, -72, -66, -75, -30, 3, -11, -34, -78, -38, -31, -76, -35, -77, 3, 3, -79, -82, -64, -63, -61, -62, -65, 3, -10, 3, -86, -73, -80, -36, 3, 3, 3, -74, -81, 3, 3, -83, 3, 3, -46, -42, -47, -48, -40, -44, -43, -49, -41, -45]), 'NE': ([24, 26, 29, 32, 45, 61, 62, 66, 94, 102, 107, 113, 114, 115, 116, 117, 133, 135, 147, 148], [-68, -67, -69, -70, -71, -72, -66, -75, 130, -76, -77, -64, -63, -61, -62, -65, -73, -80, -74, -81]), 'LT': ([24, 26, 29, 32, 45, 61, 62, 66, 94, 102, 107, 113, 114, 115, 116, 117, 133, 135, 147, 148], [-68, -67, -69, -70, -71, -72, -66, -75, 127, -76, -77, -64, -63, -61, -62, -65, -73, -80, -74, -81]), 'COMMA': ([18, 20, 21, 24, 26, 29, 32, 36, 38, 45, 49, 61, 62, 66, 88, 102, 105, 107, 111, 112, 113, 114, 115, 116, 117, 133, 135, 136, 147, 148, 154], [-16, 52, -15, -68, -67, -69, -70, 64, -72, -71, -39, -72, -66, -75, -17, -76, -73, -77, 141, -82, -64, -63, -61, -62, -65, -73, -80, -74, -74, -81, -83]), 'PLUS': ([24, 26, 29, 32, 38, 45, 49, 61, 62, 66, 70, 75, 94, 101, 102, 103, 105, 107, 112, 113, 114, 115, 116, 117, 133, 134, 135, 136, 146, 147, 148, 154], [-68, -67, -69, -70, -72, -71, 83, -72, -66, -75, 83, 83, 83, 83, -76, 83, -73, -77, 83, -64, -63, -61, -62, -65, -73, 83, -80, -74, 83, -74, -81, 83]), 'IDENTIFIER': ([0, 2, 3, 5, 7, 8, 11, 12, 13, 14, 15, 31, 33, 35, 39, 40, 43, 50, 52, 54, 55, 56, 57, 58, 59, 63, 64, 65, 67, 68, 69, 71, 72, 73, 74, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 96, 98, 100, 106, 118, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 138, 140, 141, 142, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [6, -4, -84, 6, 6, -85, -3, 21, 22, 6, 38, 60, 61, -19, 61, 38, 61, 38, 21, 21, 61, -29, -27, 61, 95, -23, 61, -28, 61, 61, 61, -18, -6, -20, -22, 61, -24, -26, 61, -21, 61, 61, 61, 61, 61, 38, 61, 61, 61, -8, -5, 61, -52, -53, -56, -59, -58, -55, -57, 61, -60, 38, -25, 61, -7, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38]), 'OUT': ([3, 8, 15, 35, 40, 50, 56, 57, 63, 65, 71, 73, 74, 77, 78, 80, 86, 138, 140, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [-84, -85, 39, -19, 39, 39, -29, -27, -23, -28, -18, -20, -22, -24, -26, -21, 39, 39, -25, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39]), 'GT': ([24, 26, 29, 32, 45, 61, 62, 66, 94, 102, 107, 113, 114, 115, 116, 117, 133, 135, 147, 148], [-68, -67, -69, -70, -71, -72, -66, -75, 124, -76, -77, -64, -63, -61, -62, -65, -73, -80, -74, -81]), 'RBRACE': ([3, 8, 35, 40, 56, 57, 63, 65, 71, 73, 74, 77, 78, 80, 86, 140, 151, 157, 161, 162, 164, 167, 168, 172, 174, 177], [-84, -85, -19, 72, -29, -27, -23, -28, -18, -20, -22, -24, -26, -21, 118, -25, 160, 166, 170, 171, 173, 175, 176, 178, 179, 180]), 'EQUALS': ([23, 24, 26, 29, 32, 36, 38, 45, 48, 49, 61, 62, 66, 97, 99, 102, 105, 107, 113, 114, 115, 116, 117, 133, 135, 136, 147, 148], [55, -68, -67, -69, -70, -37, 67, -71, 79, -39, -72, -66, -75, -78, -38, -76, -73, -77, -64, -63, -61, -62, -65, -73, -80, -74, -74, -81]), 'ELSE': ([3, 8, 77], [-84, -85, 109]), 'GE': ([24, 26, 29, 32, 45, 61, 62, 66, 94, 102, 107, 113, 114, 115, 116, 117, 133, 135, 147, 148], [-68, -67, -69, -70, -71, -72, -66, -75, 126, -76, -77, -64, -63, -61, -62, -65, -73, -80, -74, -81]), 'LPAREN': ([3, 6, 8, 15, 22, 28, 30, 33, 35, 38, 39, 40, 43, 44, 50, 55, 56, 57, 58, 61, 63, 64, 65, 67, 68, 69, 71, 73, 74, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 96, 98, 100, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 138, 140, 141, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [-84, 12, -85, 43, 54, 58, 59, 43, -19, 69, 43, 43, 43, 76, 43, 43, -29, -27, 43, 98, -23, 43, -28, 43, 43, 43, -18, -20, -22, 43, -24, -26, 43, -21, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, -52, -53, -56, -59, -58, -55, -57, 43, -60, 43, -25, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43]), 'TIMES': ([24, 26, 29, 32, 38, 45, 49, 61, 62, 66, 70, 75, 94, 101, 102, 103, 105, 107, 112, 113, 114, 115, 116, 117, 133, 134, 135, 136, 146, 147, 148, 154], [-68, -67, -69, -70, -72, -71, 82, -72, -66, -75, 82, 82, 82, 82, -76, 82, -73, -77, 82, -64, -63, 82, 82, -65, -73, 82, -80, -74, 82, -74, -81, 82]), 'EQ': ([24, 26, 29, 32, 45, 61, 62, 66, 94, 102, 107, 113, 114, 115, 116, 117, 133, 135, 147, 148], [-68, -67, -69, -70, -71, -72, -66, -75, 125, -76, -77, -64, -63, -61, -62, -65, -73, -80, -74, -81]), 'IF': ([3, 8, 15, 35, 40, 50, 56, 57, 63, 65, 71, 73, 74, 77, 78, 80, 86, 138, 140, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [-84, -85, 44, -19, 44, 44, -29, -27, -23, -28, -18, -20, -22, -24, -26, -21, 44, 44, -25, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44]), 'AND': ([24, 26, 29, 32, 45, 61, 62, 66, 93, 102, 107, 113, 114, 115, 116, 117, 133, 135, 146, 147, 148], [-68, -67, -69, -70, -71, -72, -66, -75, 122, -76, -77, -64, -63, -61, -62, -65, -73, -80, -54, -74, -81]), 'LBRACE': ([3, 4, 8, 10, 17, 51, 89, 109, 119, 120, 137, 139, 144, 150], [-84, 9, -85, 16, -12, -9, -11, 138, -10, 143, 149, 153, 156, 159]), 'FALSE': ([3, 8, 15, 33, 35, 39, 40, 43, 50, 55, 56, 57, 58, 63, 64, 65, 67, 68, 69, 71, 73, 74, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 96, 98, 100, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 138, 140, 141, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [-84, -85, 45, 45, -19, 45, 45, 45, 45, 45, -29, -27, 45, -23, 45, -28, 45, 45, 45, -18, -20, -22, 45, -24, -26, 45, -21, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, -52, -53, -56, -59, -58, -55, -57, 45, -60, 45, -25, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45]), 'FLOAT': ([3, 8, 15, 33, 35, 39, 40, 43, 50, 55, 56, 57, 58, 63, 64, 65, 67, 68, 69, 71, 73, 74, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 96, 98, 100, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 138, 140, 141, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [-84, -85, 24, 24, -19, 24, 24, 24, 24, 24, -29, -27, 24, -23, 24, -28, 24, 24, 24, -18, -20, -22, 24, -24, -26, 24, -21, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, -52, -53, -56, -59, -58, -55, -57, 24, -60, 24, -25, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24]), 'HASHTAG': ([6], [13]), 'RBRACKET': ([24, 26, 29, 32, 45, 53, 61, 62, 66, 68, 102, 103, 107, 113, 114, 115, 116, 117, 133, 134, 135, 147, 148], [-68, -67, -69, -70, -71, 88, -72, -66, -75, 102, -76, 135, -77, -64, -63, -61, -62, -65, -73, 148, -80, -74, -81]), '$end': ([1, 2, 3, 5, 8, 11, 14, 72, 106, 118, 142], [0, -4, -84, -2, -85, -3, -1, -6, -8, -5, -7]), 'OR': ([24, 26, 29, 32, 45, 61, 62, 66, 93, 102, 107, 113, 114, 115, 116, 117, 133, 135, 146, 147, 148], [-68, -67, -69, -70, -71, -72, -66, -75, 123, -76, -77, -64, -63, -61, -62, -65, -73, -80, -54, -74, -81]), 'MOD': ([24, 26, 29, 32, 38, 45, 49, 61, 62, 66, 70, 75, 94, 101, 102, 103, 105, 107, 112, 113, 114, 115, 116, 117, 133, 134, 135, 136, 146, 147, 148, 154], [-68, -67, -69, -70, -72, -71, 85, -72, -66, -75, 85, 85, 85, 85, -76, 85, -73, -77, 85, -64, -63, 85, 85, -65, -73, 85, -80, -74, 85, -74, -81, 85])}
_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 = {'parameters_list': ([15, 40, 50, 55, 64, 69, 86, 98, 138, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [23, 23, 23, 91, 99, 104, 23, 132, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23]), 'head': ([0, 5, 7, 14], [4, 4, 4, 4]), 'function_call': ([15, 40, 50, 86, 138, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27]), 'boolean': ([15, 33, 39, 40, 43, 50, 55, 58, 64, 67, 68, 69, 76, 79, 81, 82, 83, 84, 85, 86, 96, 98, 100, 121, 129, 138, 141, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29]), 'argument_declaration': ([12, 52, 54], [20, 20, 20]), 'out': ([15, 40, 50, 86, 138, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25]), 'condition_list': ([58, 76, 121], [92, 108, 145]), 'parralel_assignment': ([15, 40, 50, 86, 138, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34]), 'program': ([0, 7], [5, 14]), 'argument_list': ([12, 52, 54], [19, 87, 90]), 'statement': ([15, 40, 50, 86, 138, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [35, 71, 35, 71, 35, 35, 71, 35, 35, 35, 71, 35, 35, 71, 71, 35, 71, 35, 71, 71, 35, 71, 71, 71]), 'parameter_declaration': ([15, 40, 50, 55, 64, 69, 86, 98, 138, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [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]), 'print': ([15, 40, 50, 86, 138, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37]), 'newlines': ([0, 3, 4, 9, 16, 25, 27, 34, 37, 41, 42, 46, 47, 48, 72, 109, 110, 118, 120, 137, 138, 143, 149, 153, 156, 159], [7, 8, 10, 15, 50, 56, 57, 63, 65, 73, 74, 77, 78, 80, 106, 139, 140, 142, 144, 150, 152, 155, 158, 163, 165, 169]), 'body': ([15, 50, 138, 149, 152, 153, 155, 158, 159, 163, 165, 169], [40, 86, 151, 157, 161, 162, 164, 167, 168, 172, 174, 177]), 'begin': ([0], [1]), 'value_list': ([79], [111]), 'assignment': ([15, 40, 50, 86, 138, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41]), 'comp_symbol': ([94], [129]), 'array_assignment': ([15, 40, 50, 86, 138, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42]), 'else_block': ([77], [110]), 'bracket_list': ([38, 60, 61], [66, 97, 66]), 'condition': ([58, 76, 121], [93, 93, 93]), 'function_definition': ([0, 5, 7, 14], [2, 11, 2, 11]), 'comb_symbol': ([93], [121]), 'if_block': ([15, 40, 50, 86, 138, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46]), 'while_block': ([15, 40, 50, 86, 138, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47]), 'array_declaration': ([15, 40, 50, 86, 138, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48]), 'expression': ([15, 33, 39, 40, 43, 50, 55, 58, 64, 67, 68, 69, 76, 79, 81, 82, 83, 84, 85, 86, 96, 98, 100, 121, 129, 138, 141, 149, 151, 152, 153, 155, 157, 158, 159, 161, 162, 163, 164, 165, 167, 168, 169, 172, 174, 177], [49, 62, 70, 49, 75, 49, 49, 94, 49, 101, 103, 49, 94, 112, 113, 114, 115, 116, 117, 49, 103, 49, 134, 94, 146, 49, 154, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49])}
_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' -> begin", "S'", 1, None, None, None), ('begin -> newlines program', 'begin', 2, 'p_begin', '/home/nix/workspace/JG3/Parser.py', 25), ('begin -> program', 'begin', 1, 'p_begin', '/home/nix/workspace/JG3/Parser.py', 26), ('program -> program function_definition', 'program', 2, 'p_program', '/home/nix/workspace/JG3/Parser.py', 33), ('program -> function_definition', 'program', 1, 'p_program', '/home/nix/workspace/JG3/Parser.py', 34), ('function_definition -> head newlines LBRACE newlines body RBRACE', 'function_definition', 6, 'p_function_definition', '/home/nix/workspace/JG3/Parser.py', 42), ('function_definition -> head LBRACE newlines body RBRACE', 'function_definition', 5, 'p_function_definition', '/home/nix/workspace/JG3/Parser.py', 43), ('function_definition -> head newlines LBRACE newlines body RBRACE newlines', 'function_definition', 7, 'p_function_definition', '/home/nix/workspace/JG3/Parser.py', 44), ('function_definition -> head LBRACE newlines body RBRACE newlines', 'function_definition', 6, 'p_function_definition', '/home/nix/workspace/JG3/Parser.py', 45), ('head -> IDENTIFIER LPAREN argument_list RPAREN', 'head', 4, 'p_head', '/home/nix/workspace/JG3/Parser.py', 57), ('head -> IDENTIFIER HASHTAG IDENTIFIER LPAREN argument_list RPAREN', 'head', 6, 'p_head', '/home/nix/workspace/JG3/Parser.py', 58), ('head -> IDENTIFIER HASHTAG IDENTIFIER LPAREN RPAREN', 'head', 5, 'p_head', '/home/nix/workspace/JG3/Parser.py', 59), ('head -> IDENTIFIER LPAREN RPAREN', 'head', 3, 'p_head', '/home/nix/workspace/JG3/Parser.py', 60), ('argument_list -> argument_declaration', 'argument_list', 1, 'p_argument_list', '/home/nix/workspace/JG3/Parser.py', 72), ('argument_list -> argument_declaration COMMA argument_list', 'argument_list', 3, 'p_argument_list', '/home/nix/workspace/JG3/Parser.py', 73), ('argument_declaration -> IDENTIFIER', 'argument_declaration', 1, 'p_argument_declaration', '/home/nix/workspace/JG3/Parser.py', 81), ('argument_declaration -> NUMBER', 'argument_declaration', 1, 'p_argument_declaration', '/home/nix/workspace/JG3/Parser.py', 82), ('argument_declaration -> IDENTIFIER LBRACKET RBRACKET', 'argument_declaration', 3, 'p_argument_declaration', '/home/nix/workspace/JG3/Parser.py', 83), ('body -> body statement', 'body', 2, 'p_body', '/home/nix/workspace/JG3/Parser.py', 93), ('body -> statement', 'body', 1, 'p_body', '/home/nix/workspace/JG3/Parser.py', 94), ('statement -> assignment newlines', 'statement', 2, 'p_statement', '/home/nix/workspace/JG3/Parser.py', 103), ('statement -> array_declaration newlines', 'statement', 2, 'p_statement', '/home/nix/workspace/JG3/Parser.py', 104), ('statement -> array_assignment newlines', 'statement', 2, 'p_statement', '/home/nix/workspace/JG3/Parser.py', 105), ('statement -> parralel_assignment newlines', 'statement', 2, 'p_statement', '/home/nix/workspace/JG3/Parser.py', 106), ('statement -> if_block newlines', 'statement', 2, 'p_statement', '/home/nix/workspace/JG3/Parser.py', 107), ('statement -> if_block newlines else_block newlines', 'statement', 4, 'p_statement', '/home/nix/workspace/JG3/Parser.py', 108), ('statement -> while_block newlines', 'statement', 2, 'p_statement', '/home/nix/workspace/JG3/Parser.py', 109), ('statement -> function_call newlines', 'statement', 2, 'p_statement', '/home/nix/workspace/JG3/Parser.py', 110), ('statement -> print newlines', 'statement', 2, 'p_statement', '/home/nix/workspace/JG3/Parser.py', 111), ('statement -> out newlines', 'statement', 2, 'p_statement', '/home/nix/workspace/JG3/Parser.py', 112), ('out -> OUT expression', 'out', 2, 'p_out', '/home/nix/workspace/JG3/Parser.py', 120), ('assignment -> IDENTIFIER EQUALS expression', 'assignment', 3, 'p_assignment', '/home/nix/workspace/JG3/Parser.py', 125), ('multiple_assignment -> assignment', 'multiple_assignment', 1, 'p_multiple_assignment', '/home/nix/workspace/JG3/Parser.py', 130), ('multiple_assignment -> IDENTIFIER EQUALS multiple_assignment', 'multiple_assignment', 3, 'p_multiple_assignment', '/home/nix/workspace/JG3/Parser.py', 131), ('parralel_assignment -> parameters_list EQUALS parameters_list', 'parralel_assignment', 3, 'p_parralel_assignment', '/home/nix/workspace/JG3/Parser.py', 140), ('function_call -> IDENTIFIER LPAREN RPAREN', 'function_call', 3, 'p_function_call', '/home/nix/workspace/JG3/Parser.py', 145), ('function_call -> IDENTIFIER LPAREN parameters_list RPAREN', 'function_call', 4, 'p_function_call', '/home/nix/workspace/JG3/Parser.py', 146), ('parameters_list -> parameter_declaration', 'parameters_list', 1, 'p_parameters_list', '/home/nix/workspace/JG3/Parser.py', 154), ('parameters_list -> parameter_declaration COMMA parameters_list', 'parameters_list', 3, 'p_parameters_list', '/home/nix/workspace/JG3/Parser.py', 155), ('parameter_declaration -> expression', 'parameter_declaration', 1, 'p_parameter_declaration', '/home/nix/workspace/JG3/Parser.py', 163), ('while_block -> WHILE LPAREN condition_list RPAREN LBRACE newlines body RBRACE', 'while_block', 8, 'p_while_block', '/home/nix/workspace/JG3/Parser.py', 168), ('while_block -> WHILE LPAREN condition_list RPAREN newlines LBRACE newlines body RBRACE', 'while_block', 9, 'p_while_block', '/home/nix/workspace/JG3/Parser.py', 169), ('if_block -> IF LPAREN condition_list RPAREN LBRACE body RBRACE', 'if_block', 7, 'p_if_block', '/home/nix/workspace/JG3/Parser.py', 177), ('if_block -> IF LPAREN condition_list RPAREN newlines LBRACE body RBRACE', 'if_block', 8, 'p_if_block', '/home/nix/workspace/JG3/Parser.py', 178), ('if_block -> IF LPAREN condition_list RPAREN LBRACE newlines body RBRACE', 'if_block', 8, 'p_if_block', '/home/nix/workspace/JG3/Parser.py', 179), ('if_block -> IF LPAREN condition_list RPAREN newlines LBRACE newlines body RBRACE', 'if_block', 9, 'p_if_block', '/home/nix/workspace/JG3/Parser.py', 180), ('else_block -> ELSE LBRACE body RBRACE', 'else_block', 4, 'p_else_block', '/home/nix/workspace/JG3/Parser.py', 192), ('else_block -> ELSE LBRACE newlines body RBRACE', 'else_block', 5, 'p_else_block', '/home/nix/workspace/JG3/Parser.py', 193), ('else_block -> ELSE newlines LBRACE body RBRACE', 'else_block', 5, 'p_else_block', '/home/nix/workspace/JG3/Parser.py', 194), ('else_block -> ELSE newlines LBRACE newlines body RBRACE', 'else_block', 6, 'p_else_block', '/home/nix/workspace/JG3/Parser.py', 195), ('condition_list -> condition', 'condition_list', 1, 'p_condition_list', '/home/nix/workspace/JG3/Parser.py', 205), ('condition_list -> condition comb_symbol condition_list', 'condition_list', 3, 'p_condition_list', '/home/nix/workspace/JG3/Parser.py', 206), ('comb_symbol -> AND', 'comb_symbol', 1, 'p_comb_symbol', '/home/nix/workspace/JG3/Parser.py', 214), ('comb_symbol -> OR', 'comb_symbol', 1, 'p_comb_symbol', '/home/nix/workspace/JG3/Parser.py', 215), ('condition -> expression comp_symbol expression', 'condition', 3, 'p_condition', '/home/nix/workspace/JG3/Parser.py', 220), ('comp_symbol -> LT', 'comp_symbol', 1, 'p_comp_symbol', '/home/nix/workspace/JG3/Parser.py', 225), ('comp_symbol -> GT', 'comp_symbol', 1, 'p_comp_symbol', '/home/nix/workspace/JG3/Parser.py', 226), ('comp_symbol -> LE', 'comp_symbol', 1, 'p_comp_symbol', '/home/nix/workspace/JG3/Parser.py', 227), ('comp_symbol -> GE', 'comp_symbol', 1, 'p_comp_symbol', '/home/nix/workspace/JG3/Parser.py', 228), ('comp_symbol -> EQ', 'comp_symbol', 1, 'p_comp_symbol', '/home/nix/workspace/JG3/Parser.py', 229), ('comp_symbol -> NE', 'comp_symbol', 1, 'p_comp_symbol', '/home/nix/workspace/JG3/Parser.py', 230), ('expression -> expression PLUS expression', 'expression', 3, 'p_expression_binop', '/home/nix/workspace/JG3/Parser.py', 235), ('expression -> expression MINUS expression', 'expression', 3, 'p_expression_binop', '/home/nix/workspace/JG3/Parser.py', 236), ('expression -> expression TIMES expression', 'expression', 3, 'p_expression_binop', '/home/nix/workspace/JG3/Parser.py', 237), ('expression -> expression DIVIDE expression', 'expression', 3, 'p_expression_binop', '/home/nix/workspace/JG3/Parser.py', 238), ('expression -> expression MOD expression', 'expression', 3, 'p_expression_binop', '/home/nix/workspace/JG3/Parser.py', 239), ('expression -> MINUS expression', 'expression', 2, 'p_expression_uminus', '/home/nix/workspace/JG3/Parser.py', 244), ('expression -> NUMBER', 'expression', 1, 'p_expression_number', '/home/nix/workspace/JG3/Parser.py', 249), ('expression -> FLOAT', 'expression', 1, 'p_expression_float', '/home/nix/workspace/JG3/Parser.py', 254), ('expression -> boolean', 'expression', 1, 'p_expression_boolean', '/home/nix/workspace/JG3/Parser.py', 259), ('boolean -> TRUE', 'boolean', 1, 'p_boolean', '/home/nix/workspace/JG3/Parser.py', 264), ('boolean -> FALSE', 'boolean', 1, 'p_boolean', '/home/nix/workspace/JG3/Parser.py', 265), ('expression -> IDENTIFIER', 'expression', 1, 'p_expression_name', '/home/nix/workspace/JG3/Parser.py', 270), ('expression -> IDENTIFIER LPAREN RPAREN', 'expression', 3, 'p_exprFunction', '/home/nix/workspace/JG3/Parser.py', 281), ('expression -> IDENTIFIER LPAREN parameters_list RPAREN', 'expression', 4, 'p_exprFunction', '/home/nix/workspace/JG3/Parser.py', 282), ('expression -> IDENTIFIER bracket_list', 'expression', 2, 'p_exprArray', '/home/nix/workspace/JG3/Parser.py', 290), ('expression -> IDENTIFIER LBRACKET RBRACKET', 'expression', 3, 'p_exprArray', '/home/nix/workspace/JG3/Parser.py', 291), ('expression -> LPAREN expression RPAREN', 'expression', 3, 'p_group', '/home/nix/workspace/JG3/Parser.py', 299), ('array_declaration -> NEW IDENTIFIER bracket_list', 'array_declaration', 3, 'p_array_declaration', '/home/nix/workspace/JG3/Parser.py', 303), ('array_assignment -> array_declaration EQUALS value_list', 'array_assignment', 3, 'p_array_assignment', '/home/nix/workspace/JG3/Parser.py', 308), ('bracket_list -> LBRACKET expression RBRACKET', 'bracket_list', 3, 'p_bracket_list', '/home/nix/workspace/JG3/Parser.py', 313), ('bracket_list -> bracket_list LBRACKET expression RBRACKET', 'bracket_list', 4, 'p_bracket_list', '/home/nix/workspace/JG3/Parser.py', 314), ('value_list -> expression', 'value_list', 1, 'p_value_list', '/home/nix/workspace/JG3/Parser.py', 322), ('value_list -> value_list COMMA expression', 'value_list', 3, 'p_value_list', '/home/nix/workspace/JG3/Parser.py', 323), ('newlines -> NEWLINE', 'newlines', 1, 'p_newlines', '/home/nix/workspace/JG3/Parser.py', 332), ('newlines -> NEWLINE newlines', 'newlines', 2, 'p_newlines', '/home/nix/workspace/JG3/Parser.py', 333), ('print -> PRINT LPAREN IDENTIFIER RPAREN', 'print', 4, 'p_print', '/home/nix/workspace/JG3/Parser.py', 341)] |
def solution(A):
counter = {}
for num in range(1,len(A)+1):
counter[num] = 0
for num in A:
if num in counter:
counter[num] += 1
if counter[num] > 1:
return 0
else:
return 0
return 1
A = [4, 1, 3, 2]
solution(A)
| def solution(A):
counter = {}
for num in range(1, len(A) + 1):
counter[num] = 0
for num in A:
if num in counter:
counter[num] += 1
if counter[num] > 1:
return 0
else:
return 0
return 1
a = [4, 1, 3, 2]
solution(A) |
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'test_db',
'USER':'postgres',
'PASSWORD': 'Cat.iquality@gmail.com',
'HOST': '127.0.0.1',
'PORT': '5432'
}
} | databases = {'default': {'ENGINE': 'django.db.backends.postgresql', 'NAME': 'test_db', 'USER': 'postgres', 'PASSWORD': 'Cat.iquality@gmail.com', 'HOST': '127.0.0.1', 'PORT': '5432'}} |
MAIN_SECTOR = [
'Government',
'Private',
'NGO',
'Entrepreneur',
'Farmer',
'Student',
'Other',
]
SUBSECTOR = [
'Central Government',
'IAS',
'IPS',
'IFoS',
'Other UPSC Services',
'ICAR',
'State-Agriculture',
'State-Forestry',
'State-Revenue',
'State-Police',
'State-Cooperatives',
'State-Corporations',
'State-Other bodies',
'Mantralaya',
'Agriculture Universities',
'Non Agricultural Universities',
'Private College',
'KVK',
'NGO',
'Dealer/Distributor',
'Industrialist',
'LIC',
'IIT',
'NIT',
'IIM',
'Freelancing',
'Consultant',
'Other',
]
SKILLS = [
'Administration',
'Irrigation & Water Management',
'Protected Cultivation',
'Energy',
'Food & Fruit Processing',
'Farm Machinery',
'Watershed Management',
'Information Technology',
'Remote Sensing',
'GIS',
'Internet of Things',
'Drones',
'Robotics',
'Precision Agriculture',
'Environment',
'Dairy',
'Poultry',
'Fishery',
'Insurance',
'Banking',
'Finance',
'Taxes',
'Construction',
'Farming',
'Other'
]
| main_sector = ['Government', 'Private', 'NGO', 'Entrepreneur', 'Farmer', 'Student', 'Other']
subsector = ['Central Government', 'IAS', 'IPS', 'IFoS', 'Other UPSC Services', 'ICAR', 'State-Agriculture', 'State-Forestry', 'State-Revenue', 'State-Police', 'State-Cooperatives', 'State-Corporations', 'State-Other bodies', 'Mantralaya', 'Agriculture Universities', 'Non Agricultural Universities', 'Private College', 'KVK', 'NGO', 'Dealer/Distributor', 'Industrialist', 'LIC', 'IIT', 'NIT', 'IIM', 'Freelancing', 'Consultant', 'Other']
skills = ['Administration', 'Irrigation & Water Management', 'Protected Cultivation', 'Energy', 'Food & Fruit Processing', 'Farm Machinery', 'Watershed Management', 'Information Technology', 'Remote Sensing', 'GIS', 'Internet of Things', 'Drones', 'Robotics', 'Precision Agriculture', 'Environment', 'Dairy', 'Poultry', 'Fishery', 'Insurance', 'Banking', 'Finance', 'Taxes', 'Construction', 'Farming', 'Other'] |
#
# PySNMP MIB module COM21-HCXVOICE-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/COM21-HCXVOICE-MIB
# Produced by pysmi-0.3.4 at Wed May 1 12:26:26 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ValueSizeConstraint, SingleValueConstraint, ConstraintsIntersection, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ValueSizeConstraint", "SingleValueConstraint", "ConstraintsIntersection", "ConstraintsUnion")
com21Hcx, com21 = mibBuilder.importSymbols("COM21-HCX-MIB", "com21Hcx", "com21")
hcxAlmSeverity, hcxEventLogTime = mibBuilder.importSymbols("COM21-HCXALM-MIB", "hcxAlmSeverity", "hcxEventLogTime")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
Counter32, NotificationType, Counter64, ModuleIdentity, IpAddress, MibScalar, MibTable, MibTableRow, MibTableColumn, Bits, ObjectIdentity, MibIdentifier, Integer32, Gauge32, iso, Unsigned32, TimeTicks = mibBuilder.importSymbols("SNMPv2-SMI", "Counter32", "NotificationType", "Counter64", "ModuleIdentity", "IpAddress", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Bits", "ObjectIdentity", "MibIdentifier", "Integer32", "Gauge32", "iso", "Unsigned32", "TimeTicks")
TextualConvention, MacAddress, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "MacAddress", "DisplayString")
com21HcxVoice = ModuleIdentity((1, 3, 6, 1, 4, 1, 1141, 2, 100))
if mibBuilder.loadTexts: com21HcxVoice.setLastUpdated('9701080000Z')
if mibBuilder.loadTexts: com21HcxVoice.setOrganization('Com21, Inc.')
if mibBuilder.loadTexts: com21HcxVoice.setContactInfo(' Network Management Postal: Paul Gordon Com21, Inc. 750 Tasman Drive Milpitas, California 95035 USA Tel: +1 408 953 9100 Fax: +1 408 953 9299 E-mail: pgordon@com21.com')
if mibBuilder.loadTexts: com21HcxVoice.setDescription('This is the Com21 ComController Oc3 MIB module. COM21 Part# 005-0025-00')
com21HcxVoiceGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 1141, 2, 101))
com21HcxVpnRxGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 1141, 2, 102))
com21HcxVpnRxStatsGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 1141, 2, 103))
com21HcxStuVoiceChannelGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 1141, 2, 104))
com21HcxStuVoiceCallStatsGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 1141, 2, 105))
class PrimServiceState(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("is", 1), ("oos", 2))
class Com21RowStatus(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))
namedValues = NamedValues(("active", 1), ("create", 2), ("destroy", 3), ("deactive", 4))
hcxConfiguredVoiceChannels = MibScalar((1, 3, 6, 1, 4, 1, 1141, 2, 101, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxConfiguredVoiceChannels.setStatus('current')
if mibBuilder.loadTexts: hcxConfiguredVoiceChannels.setDescription(' Defines the number of Voice Channels currently configured on the system.')
hcxActiveVoiceChannels = MibScalar((1, 3, 6, 1, 4, 1, 1141, 2, 101, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxActiveVoiceChannels.setStatus('current')
if mibBuilder.loadTexts: hcxActiveVoiceChannels.setDescription(' Defines the number of Voice Channels that are currently active on the system.')
hcxVoiceChannelMode = MibScalar((1, 3, 6, 1, 4, 1, 1141, 2, 101, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("aLaw", 1), ("muLaw", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hcxVoiceChannelMode.setStatus('current')
if mibBuilder.loadTexts: hcxVoiceChannelMode.setDescription(' Defines the type of compression scheme to be used for voice. Default is aLaw.')
hcxVoiceOAMEnable = MibScalar((1, 3, 6, 1, 4, 1, 1141, 2, 101, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hcxVoiceOAMEnable.setStatus('current')
if mibBuilder.loadTexts: hcxVoiceOAMEnable.setDescription(" Defines whether OAM cells should be transmitted on voice VCC's when voice calls are idle. default: disable")
hcxVoiceFEndEchoCancEnable = MibScalar((1, 3, 6, 1, 4, 1, 1141, 2, 101, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hcxVoiceFEndEchoCancEnable.setStatus('current')
if mibBuilder.loadTexts: hcxVoiceFEndEchoCancEnable.setDescription(' Defines whether Far End Echo Cancellation should be enabled or not. Default: disable')
hcxVoiceRTTDelay = MibScalar((1, 3, 6, 1, 4, 1, 1141, 2, 101, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hcxVoiceRTTDelay.setStatus('current')
if mibBuilder.loadTexts: hcxVoiceRTTDelay.setDescription(" Defines the Round Trip Transit Delay in milliseconds. This should be configured if 'hcxVoiceFEndEchoCancEnable' is enabled. Default: 0")
com21HcxVpnRxTable = MibTable((1, 3, 6, 1, 4, 1, 1141, 2, 102, 1), )
if mibBuilder.loadTexts: com21HcxVpnRxTable.setStatus('current')
if mibBuilder.loadTexts: com21HcxVpnRxTable.setDescription('.')
com21HcxVpnRxEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1141, 2, 102, 1, 1), ).setIndexNames((0, "COM21-HCXVOICE-MIB", "hcxVpnRxNum"), (0, "COM21-HCXVOICE-MIB", "hcxVpnRxEntryId"))
if mibBuilder.loadTexts: com21HcxVpnRxEntry.setStatus('current')
if mibBuilder.loadTexts: com21HcxVpnRxEntry.setDescription('.')
hcxVpnRxNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 102, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxVpnRxNum.setStatus('current')
if mibBuilder.loadTexts: hcxVpnRxNum.setDescription(' Defines the Vpn Number. Used as Index.')
hcxVpnRxEntryId = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 102, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxVpnRxEntryId.setStatus('current')
if mibBuilder.loadTexts: hcxVpnRxEntryId.setDescription(' Defines the Rx Group Id. Used as Index.')
hcxVpnRxRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 102, 1, 1, 3), Com21RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hcxVpnRxRowStatus.setStatus('current')
if mibBuilder.loadTexts: hcxVpnRxRowStatus.setDescription(' Used to create an Instance of Rx Group Id for a given VPN. Deactive is not allowed.')
hcxVpnRxMaxActiveCalls = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 102, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hcxVpnRxMaxActiveCalls.setStatus('current')
if mibBuilder.loadTexts: hcxVpnRxMaxActiveCalls.setDescription(' Defines the maximum number of voice calls that should be allowed for this VPN on this Rx Group .')
com21HcxVpnRxStatsTable = MibTable((1, 3, 6, 1, 4, 1, 1141, 2, 103, 1), )
if mibBuilder.loadTexts: com21HcxVpnRxStatsTable.setStatus('current')
if mibBuilder.loadTexts: com21HcxVpnRxStatsTable.setDescription('.')
com21HcxVpnRxStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1141, 2, 103, 1, 1), ).setIndexNames((0, "COM21-HCXVOICE-MIB", "hcxVpnRxStatsNum"), (0, "COM21-HCXVOICE-MIB", "hcxVpnRxStatsEntryId"))
if mibBuilder.loadTexts: com21HcxVpnRxStatsEntry.setStatus('current')
if mibBuilder.loadTexts: com21HcxVpnRxStatsEntry.setDescription('.')
hcxVpnRxStatsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 103, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxVpnRxStatsNum.setStatus('current')
if mibBuilder.loadTexts: hcxVpnRxStatsNum.setDescription(' Defines the VPN value for which the stats are collected. Used as Index.')
hcxVpnRxStatsEntryId = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 103, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxVpnRxStatsEntryId.setStatus('current')
if mibBuilder.loadTexts: hcxVpnRxStatsEntryId.setDescription(' Defines the Rx Group Number for which the stats are collected. Used as Index.')
hcxVpnRxStatsCurrCallsAllwd = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 103, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxVpnRxStatsCurrCallsAllwd.setStatus('current')
if mibBuilder.loadTexts: hcxVpnRxStatsCurrCallsAllwd.setDescription(' Defines the number of calls allowed in the given 15-min period for a ComPort on this Rx Group and on this VPN.')
hcxVpnRxStatsCurrCallsBlkd = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 103, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxVpnRxStatsCurrCallsBlkd.setStatus('current')
if mibBuilder.loadTexts: hcxVpnRxStatsCurrCallsBlkd.setDescription(' Defines the number of calls blocked in the given 15-min period for a ComPort on this Rx Group and on this VPN.')
hcxVpnRxStatsPrevCallsAllwd = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 103, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxVpnRxStatsPrevCallsAllwd.setStatus('current')
if mibBuilder.loadTexts: hcxVpnRxStatsPrevCallsAllwd.setDescription(' Defines the number of calls allowed in the previous 15-min period for a ComPort on this Rx Group and on this VPN.')
hcxVpnRxStatsPrevCallsBlkd = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 103, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxVpnRxStatsPrevCallsBlkd.setStatus('current')
if mibBuilder.loadTexts: hcxVpnRxStatsPrevCallsBlkd.setDescription(' Defines the number of calls blocked in the previous 15-min period for a ComPort on this Rx Group and on this VPN.')
hcxVpnRxStatsClear = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 103, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("nil", 1), ("clear", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hcxVpnRxStatsClear.setStatus('current')
if mibBuilder.loadTexts: hcxVpnRxStatsClear.setDescription(' This attribute is used to clear all call statistics counters in this group. This operation is only possible if the hcxStatsControl attribute is set to wrapCurr.')
com21HcxStuVoiceChannelTable = MibTable((1, 3, 6, 1, 4, 1, 1141, 2, 104, 1), )
if mibBuilder.loadTexts: com21HcxStuVoiceChannelTable.setStatus('current')
if mibBuilder.loadTexts: com21HcxStuVoiceChannelTable.setDescription('.')
com21HcxStuVoiceChannelEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1141, 2, 104, 1, 1), ).setIndexNames((0, "COM21-HCXVOICE-MIB", "hcxStuVoiceChannelMacAddr"), (0, "COM21-HCXVOICE-MIB", "hcxStuVoiceChannelNum"))
if mibBuilder.loadTexts: com21HcxStuVoiceChannelEntry.setStatus('current')
if mibBuilder.loadTexts: com21HcxStuVoiceChannelEntry.setDescription('.')
hcxStuVoiceChannelMacAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 104, 1, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxStuVoiceChannelMacAddr.setStatus('current')
if mibBuilder.loadTexts: hcxStuVoiceChannelMacAddr.setDescription(' Contains IEEE 802 medium access control address of the ComPort device.')
hcxStuVoiceChannelNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 104, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxStuVoiceChannelNum.setStatus('current')
if mibBuilder.loadTexts: hcxStuVoiceChannelNum.setDescription(' Defines the voice channel on the Comport device used for Voice.')
hcxStuVoiceChannelVpi = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 104, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 64))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hcxStuVoiceChannelVpi.setStatus('current')
if mibBuilder.loadTexts: hcxStuVoiceChannelVpi.setDescription(" Defines the VPI to use to connect the Comport's voice channel to the external device on the OC3 wan port. The 'hcxStuVoiceChannelVpi', 'hcxStuVoiceChannelVci' combination should form a unique VCC for each entry in 'com21HcxStuVoiceChannelTable'. Default is 0")
hcxStuVoiceChannelVci = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 104, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hcxStuVoiceChannelVci.setStatus('current')
if mibBuilder.loadTexts: hcxStuVoiceChannelVci.setDescription(" Defines the VCI to use to connect the Comport's voice channel to the external device on the OC3 wan port. The 'hcxStuVoiceChannelVpi', 'hcxStuVoiceChannelVci' combination should form a unique VCC for each entry in 'com21HcxStuVoiceChannelTable'. Default is 0")
hcxStuVoiceChannelPriStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 104, 1, 1, 5), Com21RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hcxStuVoiceChannelPriStatus.setStatus('current')
if mibBuilder.loadTexts: hcxStuVoiceChannelPriStatus.setDescription(' Used to control Create, Activate/Deactivate, or Destroy a row. Activation/Deactivation of the row is not allowed if all writeable attributes do not have valid values. ')
hcxStuVoiceChannelState = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 104, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("voiceChanIdle", 1), ("voiceChanActive", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxStuVoiceChannelState.setStatus('current')
if mibBuilder.loadTexts: hcxStuVoiceChannelState.setDescription(' Defines the current state of the port. voicePortActive indicates that the call is in progress ')
hcxStuVoiceChannelExtLpBk = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 104, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hcxStuVoiceChannelExtLpBk.setStatus('current')
if mibBuilder.loadTexts: hcxStuVoiceChannelExtLpBk.setDescription(' If this attribute is enabled, the Oc3 Port will loopback all cells received on this VCC. The attribute cannot be enabled if voiceChannel is active, and if this attribute is enabled, voiceChannel will not be allowed to go active. default: disable.')
com21HcxStuVoiceCallStatsTable = MibTable((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1), )
if mibBuilder.loadTexts: com21HcxStuVoiceCallStatsTable.setStatus('current')
if mibBuilder.loadTexts: com21HcxStuVoiceCallStatsTable.setDescription('.')
com21HcxStuVoiceCallStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1), ).setIndexNames((0, "COM21-HCXVOICE-MIB", "hcxStuVoiceCallStatsMacAddr"), (0, "COM21-HCXVOICE-MIB", "hcxStuVoiceCallStatsNum"))
if mibBuilder.loadTexts: com21HcxStuVoiceCallStatsEntry.setStatus('current')
if mibBuilder.loadTexts: com21HcxStuVoiceCallStatsEntry.setDescription('.')
hcxStuVoiceCallStatsMacAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxStuVoiceCallStatsMacAddr.setStatus('current')
if mibBuilder.loadTexts: hcxStuVoiceCallStatsMacAddr.setDescription(' Contains IEEE 802 medium access control address of the ComPort device.')
hcxStuVoiceCallStatsNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxStuVoiceCallStatsNum.setStatus('current')
if mibBuilder.loadTexts: hcxStuVoiceCallStatsNum.setDescription(' Defines the voice channel on the Comport device used for Voice.')
hcxStuVoiceCallCurrInCallsAllwd = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 3), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxStuVoiceCallCurrInCallsAllwd.setStatus('current')
if mibBuilder.loadTexts: hcxStuVoiceCallCurrInCallsAllwd.setDescription(' Defines the number of Incoming calls allowed in the given 15-min time period. Incoming calls are calls being placed to this voice channel.')
hcxStuVoiceCallCurrOutCallsAllwd = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 4), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxStuVoiceCallCurrOutCallsAllwd.setStatus('current')
if mibBuilder.loadTexts: hcxStuVoiceCallCurrOutCallsAllwd.setDescription(' Defines the number of Outgoing calls allowed in the given 15-min time period. Outgoing calls are calls being placed by this voice channel.')
hcxStuVoiceCallCurrInCallsBlkd = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 5), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxStuVoiceCallCurrInCallsBlkd.setStatus('current')
if mibBuilder.loadTexts: hcxStuVoiceCallCurrInCallsBlkd.setDescription(' Defines the number of Incoming calls blocked in the given 15-min time period. Incoming calls are calls being placed to this voice channel.')
hcxStuVoiceCallCurrOutCallsBlkd = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 6), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxStuVoiceCallCurrOutCallsBlkd.setStatus('current')
if mibBuilder.loadTexts: hcxStuVoiceCallCurrOutCallsBlkd.setDescription(' Defines the number of Outgoing calls blocked in the given 15-min time period. Outgoing calls are calls being placed by this voice channel.')
hcxStuVoiceCallPrevInCallsAllwd = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 7), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxStuVoiceCallPrevInCallsAllwd.setStatus('current')
if mibBuilder.loadTexts: hcxStuVoiceCallPrevInCallsAllwd.setDescription(' Defines the number of Incoming calls allowed in the previous 15-min time period. Incoming calls are calls being placed to this voice channel.')
hcxStuVoiceCallPrevOutCallsAllwd = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 8), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxStuVoiceCallPrevOutCallsAllwd.setStatus('current')
if mibBuilder.loadTexts: hcxStuVoiceCallPrevOutCallsAllwd.setDescription(' Defines the number of Outgoing calls blocked in the previous 15-min time period. Outgoing calls are calls being placed by this voice channel.')
hcxStuVoiceCallPrevInCallsBlkd = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 9), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxStuVoiceCallPrevInCallsBlkd.setStatus('current')
if mibBuilder.loadTexts: hcxStuVoiceCallPrevInCallsBlkd.setDescription(' Defines the number of Incoming calls blocked in the previous 15-min time period. Incoming calls are calls being placed to this voice channel.')
hcxStuVoiceCallPrevOutCallsBlkd = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 10), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hcxStuVoiceCallPrevOutCallsBlkd.setStatus('current')
if mibBuilder.loadTexts: hcxStuVoiceCallPrevOutCallsBlkd.setDescription(' Defines the number of Outgoing calls blocked in the previous 15-min time period. Outgoing calls are calls being placed by this voice channel.')
hcxStuVoiceCallStatsClear = MibTableColumn((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("nil", 1), ("clear", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hcxStuVoiceCallStatsClear.setStatus('current')
if mibBuilder.loadTexts: hcxStuVoiceCallStatsClear.setDescription(' This attribute is used to clear all the voice channel statistics counters in this group. This operation is only possible if the hcxStatsControl attribute is set to wrapCurr.')
mibBuilder.exportSymbols("COM21-HCXVOICE-MIB", hcxVpnRxRowStatus=hcxVpnRxRowStatus, com21HcxVoice=com21HcxVoice, com21HcxVoiceGroup=com21HcxVoiceGroup, com21HcxStuVoiceCallStatsGroup=com21HcxStuVoiceCallStatsGroup, hcxConfiguredVoiceChannels=hcxConfiguredVoiceChannels, hcxVpnRxStatsCurrCallsAllwd=hcxVpnRxStatsCurrCallsAllwd, hcxStuVoiceChannelVci=hcxStuVoiceChannelVci, hcxVpnRxStatsNum=hcxVpnRxStatsNum, hcxVpnRxStatsPrevCallsAllwd=hcxVpnRxStatsPrevCallsAllwd, hcxActiveVoiceChannels=hcxActiveVoiceChannels, hcxStuVoiceChannelPriStatus=hcxStuVoiceChannelPriStatus, hcxStuVoiceCallStatsNum=hcxStuVoiceCallStatsNum, PrimServiceState=PrimServiceState, hcxStuVoiceCallCurrInCallsAllwd=hcxStuVoiceCallCurrInCallsAllwd, Com21RowStatus=Com21RowStatus, hcxVoiceOAMEnable=hcxVoiceOAMEnable, hcxVpnRxNum=hcxVpnRxNum, hcxStuVoiceChannelMacAddr=hcxStuVoiceChannelMacAddr, com21HcxStuVoiceChannelTable=com21HcxStuVoiceChannelTable, hcxStuVoiceChannelExtLpBk=hcxStuVoiceChannelExtLpBk, com21HcxStuVoiceChannelEntry=com21HcxStuVoiceChannelEntry, hcxStuVoiceCallPrevOutCallsBlkd=hcxStuVoiceCallPrevOutCallsBlkd, hcxVpnRxStatsCurrCallsBlkd=hcxVpnRxStatsCurrCallsBlkd, hcxStuVoiceChannelNum=hcxStuVoiceChannelNum, com21HcxVpnRxGroup=com21HcxVpnRxGroup, com21HcxVpnRxStatsGroup=com21HcxVpnRxStatsGroup, hcxStuVoiceChannelVpi=hcxStuVoiceChannelVpi, PYSNMP_MODULE_ID=com21HcxVoice, com21HcxVpnRxStatsEntry=com21HcxVpnRxStatsEntry, hcxStuVoiceCallPrevInCallsAllwd=hcxStuVoiceCallPrevInCallsAllwd, hcxStuVoiceCallStatsMacAddr=hcxStuVoiceCallStatsMacAddr, hcxStuVoiceChannelState=hcxStuVoiceChannelState, hcxVpnRxStatsPrevCallsBlkd=hcxVpnRxStatsPrevCallsBlkd, hcxStuVoiceCallCurrOutCallsBlkd=hcxStuVoiceCallCurrOutCallsBlkd, hcxVpnRxStatsEntryId=hcxVpnRxStatsEntryId, hcxStuVoiceCallCurrInCallsBlkd=hcxStuVoiceCallCurrInCallsBlkd, hcxVoiceChannelMode=hcxVoiceChannelMode, hcxVoiceRTTDelay=hcxVoiceRTTDelay, com21HcxStuVoiceCallStatsTable=com21HcxStuVoiceCallStatsTable, hcxVpnRxMaxActiveCalls=hcxVpnRxMaxActiveCalls, hcxStuVoiceCallPrevInCallsBlkd=hcxStuVoiceCallPrevInCallsBlkd, hcxStuVoiceCallCurrOutCallsAllwd=hcxStuVoiceCallCurrOutCallsAllwd, hcxVoiceFEndEchoCancEnable=hcxVoiceFEndEchoCancEnable, com21HcxVpnRxStatsTable=com21HcxVpnRxStatsTable, hcxStuVoiceCallPrevOutCallsAllwd=hcxStuVoiceCallPrevOutCallsAllwd, com21HcxVpnRxTable=com21HcxVpnRxTable, com21HcxStuVoiceChannelGroup=com21HcxStuVoiceChannelGroup, hcxVpnRxEntryId=hcxVpnRxEntryId, hcxVpnRxStatsClear=hcxVpnRxStatsClear, com21HcxStuVoiceCallStatsEntry=com21HcxStuVoiceCallStatsEntry, hcxStuVoiceCallStatsClear=hcxStuVoiceCallStatsClear, com21HcxVpnRxEntry=com21HcxVpnRxEntry)
| (octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, value_size_constraint, single_value_constraint, constraints_intersection, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ValueSizeConstraint', 'SingleValueConstraint', 'ConstraintsIntersection', 'ConstraintsUnion')
(com21_hcx, com21) = mibBuilder.importSymbols('COM21-HCX-MIB', 'com21Hcx', 'com21')
(hcx_alm_severity, hcx_event_log_time) = mibBuilder.importSymbols('COM21-HCXALM-MIB', 'hcxAlmSeverity', 'hcxEventLogTime')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(counter32, notification_type, counter64, module_identity, ip_address, mib_scalar, mib_table, mib_table_row, mib_table_column, bits, object_identity, mib_identifier, integer32, gauge32, iso, unsigned32, time_ticks) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter32', 'NotificationType', 'Counter64', 'ModuleIdentity', 'IpAddress', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Bits', 'ObjectIdentity', 'MibIdentifier', 'Integer32', 'Gauge32', 'iso', 'Unsigned32', 'TimeTicks')
(textual_convention, mac_address, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'MacAddress', 'DisplayString')
com21_hcx_voice = module_identity((1, 3, 6, 1, 4, 1, 1141, 2, 100))
if mibBuilder.loadTexts:
com21HcxVoice.setLastUpdated('9701080000Z')
if mibBuilder.loadTexts:
com21HcxVoice.setOrganization('Com21, Inc.')
if mibBuilder.loadTexts:
com21HcxVoice.setContactInfo(' Network Management Postal: Paul Gordon Com21, Inc. 750 Tasman Drive Milpitas, California 95035 USA Tel: +1 408 953 9100 Fax: +1 408 953 9299 E-mail: pgordon@com21.com')
if mibBuilder.loadTexts:
com21HcxVoice.setDescription('This is the Com21 ComController Oc3 MIB module. COM21 Part# 005-0025-00')
com21_hcx_voice_group = mib_identifier((1, 3, 6, 1, 4, 1, 1141, 2, 101))
com21_hcx_vpn_rx_group = mib_identifier((1, 3, 6, 1, 4, 1, 1141, 2, 102))
com21_hcx_vpn_rx_stats_group = mib_identifier((1, 3, 6, 1, 4, 1, 1141, 2, 103))
com21_hcx_stu_voice_channel_group = mib_identifier((1, 3, 6, 1, 4, 1, 1141, 2, 104))
com21_hcx_stu_voice_call_stats_group = mib_identifier((1, 3, 6, 1, 4, 1, 1141, 2, 105))
class Primservicestate(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('is', 1), ('oos', 2))
class Com21Rowstatus(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4))
named_values = named_values(('active', 1), ('create', 2), ('destroy', 3), ('deactive', 4))
hcx_configured_voice_channels = mib_scalar((1, 3, 6, 1, 4, 1, 1141, 2, 101, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxConfiguredVoiceChannels.setStatus('current')
if mibBuilder.loadTexts:
hcxConfiguredVoiceChannels.setDescription(' Defines the number of Voice Channels currently configured on the system.')
hcx_active_voice_channels = mib_scalar((1, 3, 6, 1, 4, 1, 1141, 2, 101, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxActiveVoiceChannels.setStatus('current')
if mibBuilder.loadTexts:
hcxActiveVoiceChannels.setDescription(' Defines the number of Voice Channels that are currently active on the system.')
hcx_voice_channel_mode = mib_scalar((1, 3, 6, 1, 4, 1, 1141, 2, 101, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('aLaw', 1), ('muLaw', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hcxVoiceChannelMode.setStatus('current')
if mibBuilder.loadTexts:
hcxVoiceChannelMode.setDescription(' Defines the type of compression scheme to be used for voice. Default is aLaw.')
hcx_voice_oam_enable = mib_scalar((1, 3, 6, 1, 4, 1, 1141, 2, 101, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disable', 1), ('enable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hcxVoiceOAMEnable.setStatus('current')
if mibBuilder.loadTexts:
hcxVoiceOAMEnable.setDescription(" Defines whether OAM cells should be transmitted on voice VCC's when voice calls are idle. default: disable")
hcx_voice_f_end_echo_canc_enable = mib_scalar((1, 3, 6, 1, 4, 1, 1141, 2, 101, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disable', 1), ('enable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hcxVoiceFEndEchoCancEnable.setStatus('current')
if mibBuilder.loadTexts:
hcxVoiceFEndEchoCancEnable.setDescription(' Defines whether Far End Echo Cancellation should be enabled or not. Default: disable')
hcx_voice_rtt_delay = mib_scalar((1, 3, 6, 1, 4, 1, 1141, 2, 101, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hcxVoiceRTTDelay.setStatus('current')
if mibBuilder.loadTexts:
hcxVoiceRTTDelay.setDescription(" Defines the Round Trip Transit Delay in milliseconds. This should be configured if 'hcxVoiceFEndEchoCancEnable' is enabled. Default: 0")
com21_hcx_vpn_rx_table = mib_table((1, 3, 6, 1, 4, 1, 1141, 2, 102, 1))
if mibBuilder.loadTexts:
com21HcxVpnRxTable.setStatus('current')
if mibBuilder.loadTexts:
com21HcxVpnRxTable.setDescription('.')
com21_hcx_vpn_rx_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1141, 2, 102, 1, 1)).setIndexNames((0, 'COM21-HCXVOICE-MIB', 'hcxVpnRxNum'), (0, 'COM21-HCXVOICE-MIB', 'hcxVpnRxEntryId'))
if mibBuilder.loadTexts:
com21HcxVpnRxEntry.setStatus('current')
if mibBuilder.loadTexts:
com21HcxVpnRxEntry.setDescription('.')
hcx_vpn_rx_num = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 102, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxVpnRxNum.setStatus('current')
if mibBuilder.loadTexts:
hcxVpnRxNum.setDescription(' Defines the Vpn Number. Used as Index.')
hcx_vpn_rx_entry_id = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 102, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxVpnRxEntryId.setStatus('current')
if mibBuilder.loadTexts:
hcxVpnRxEntryId.setDescription(' Defines the Rx Group Id. Used as Index.')
hcx_vpn_rx_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 102, 1, 1, 3), com21_row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hcxVpnRxRowStatus.setStatus('current')
if mibBuilder.loadTexts:
hcxVpnRxRowStatus.setDescription(' Used to create an Instance of Rx Group Id for a given VPN. Deactive is not allowed.')
hcx_vpn_rx_max_active_calls = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 102, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hcxVpnRxMaxActiveCalls.setStatus('current')
if mibBuilder.loadTexts:
hcxVpnRxMaxActiveCalls.setDescription(' Defines the maximum number of voice calls that should be allowed for this VPN on this Rx Group .')
com21_hcx_vpn_rx_stats_table = mib_table((1, 3, 6, 1, 4, 1, 1141, 2, 103, 1))
if mibBuilder.loadTexts:
com21HcxVpnRxStatsTable.setStatus('current')
if mibBuilder.loadTexts:
com21HcxVpnRxStatsTable.setDescription('.')
com21_hcx_vpn_rx_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1141, 2, 103, 1, 1)).setIndexNames((0, 'COM21-HCXVOICE-MIB', 'hcxVpnRxStatsNum'), (0, 'COM21-HCXVOICE-MIB', 'hcxVpnRxStatsEntryId'))
if mibBuilder.loadTexts:
com21HcxVpnRxStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
com21HcxVpnRxStatsEntry.setDescription('.')
hcx_vpn_rx_stats_num = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 103, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxVpnRxStatsNum.setStatus('current')
if mibBuilder.loadTexts:
hcxVpnRxStatsNum.setDescription(' Defines the VPN value for which the stats are collected. Used as Index.')
hcx_vpn_rx_stats_entry_id = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 103, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxVpnRxStatsEntryId.setStatus('current')
if mibBuilder.loadTexts:
hcxVpnRxStatsEntryId.setDescription(' Defines the Rx Group Number for which the stats are collected. Used as Index.')
hcx_vpn_rx_stats_curr_calls_allwd = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 103, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxVpnRxStatsCurrCallsAllwd.setStatus('current')
if mibBuilder.loadTexts:
hcxVpnRxStatsCurrCallsAllwd.setDescription(' Defines the number of calls allowed in the given 15-min period for a ComPort on this Rx Group and on this VPN.')
hcx_vpn_rx_stats_curr_calls_blkd = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 103, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxVpnRxStatsCurrCallsBlkd.setStatus('current')
if mibBuilder.loadTexts:
hcxVpnRxStatsCurrCallsBlkd.setDescription(' Defines the number of calls blocked in the given 15-min period for a ComPort on this Rx Group and on this VPN.')
hcx_vpn_rx_stats_prev_calls_allwd = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 103, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxVpnRxStatsPrevCallsAllwd.setStatus('current')
if mibBuilder.loadTexts:
hcxVpnRxStatsPrevCallsAllwd.setDescription(' Defines the number of calls allowed in the previous 15-min period for a ComPort on this Rx Group and on this VPN.')
hcx_vpn_rx_stats_prev_calls_blkd = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 103, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxVpnRxStatsPrevCallsBlkd.setStatus('current')
if mibBuilder.loadTexts:
hcxVpnRxStatsPrevCallsBlkd.setDescription(' Defines the number of calls blocked in the previous 15-min period for a ComPort on this Rx Group and on this VPN.')
hcx_vpn_rx_stats_clear = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 103, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('nil', 1), ('clear', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hcxVpnRxStatsClear.setStatus('current')
if mibBuilder.loadTexts:
hcxVpnRxStatsClear.setDescription(' This attribute is used to clear all call statistics counters in this group. This operation is only possible if the hcxStatsControl attribute is set to wrapCurr.')
com21_hcx_stu_voice_channel_table = mib_table((1, 3, 6, 1, 4, 1, 1141, 2, 104, 1))
if mibBuilder.loadTexts:
com21HcxStuVoiceChannelTable.setStatus('current')
if mibBuilder.loadTexts:
com21HcxStuVoiceChannelTable.setDescription('.')
com21_hcx_stu_voice_channel_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1141, 2, 104, 1, 1)).setIndexNames((0, 'COM21-HCXVOICE-MIB', 'hcxStuVoiceChannelMacAddr'), (0, 'COM21-HCXVOICE-MIB', 'hcxStuVoiceChannelNum'))
if mibBuilder.loadTexts:
com21HcxStuVoiceChannelEntry.setStatus('current')
if mibBuilder.loadTexts:
com21HcxStuVoiceChannelEntry.setDescription('.')
hcx_stu_voice_channel_mac_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 104, 1, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxStuVoiceChannelMacAddr.setStatus('current')
if mibBuilder.loadTexts:
hcxStuVoiceChannelMacAddr.setDescription(' Contains IEEE 802 medium access control address of the ComPort device.')
hcx_stu_voice_channel_num = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 104, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxStuVoiceChannelNum.setStatus('current')
if mibBuilder.loadTexts:
hcxStuVoiceChannelNum.setDescription(' Defines the voice channel on the Comport device used for Voice.')
hcx_stu_voice_channel_vpi = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 104, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 64))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hcxStuVoiceChannelVpi.setStatus('current')
if mibBuilder.loadTexts:
hcxStuVoiceChannelVpi.setDescription(" Defines the VPI to use to connect the Comport's voice channel to the external device on the OC3 wan port. The 'hcxStuVoiceChannelVpi', 'hcxStuVoiceChannelVci' combination should form a unique VCC for each entry in 'com21HcxStuVoiceChannelTable'. Default is 0")
hcx_stu_voice_channel_vci = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 104, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hcxStuVoiceChannelVci.setStatus('current')
if mibBuilder.loadTexts:
hcxStuVoiceChannelVci.setDescription(" Defines the VCI to use to connect the Comport's voice channel to the external device on the OC3 wan port. The 'hcxStuVoiceChannelVpi', 'hcxStuVoiceChannelVci' combination should form a unique VCC for each entry in 'com21HcxStuVoiceChannelTable'. Default is 0")
hcx_stu_voice_channel_pri_status = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 104, 1, 1, 5), com21_row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hcxStuVoiceChannelPriStatus.setStatus('current')
if mibBuilder.loadTexts:
hcxStuVoiceChannelPriStatus.setDescription(' Used to control Create, Activate/Deactivate, or Destroy a row. Activation/Deactivation of the row is not allowed if all writeable attributes do not have valid values. ')
hcx_stu_voice_channel_state = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 104, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('voiceChanIdle', 1), ('voiceChanActive', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxStuVoiceChannelState.setStatus('current')
if mibBuilder.loadTexts:
hcxStuVoiceChannelState.setDescription(' Defines the current state of the port. voicePortActive indicates that the call is in progress ')
hcx_stu_voice_channel_ext_lp_bk = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 104, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disable', 1), ('enable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hcxStuVoiceChannelExtLpBk.setStatus('current')
if mibBuilder.loadTexts:
hcxStuVoiceChannelExtLpBk.setDescription(' If this attribute is enabled, the Oc3 Port will loopback all cells received on this VCC. The attribute cannot be enabled if voiceChannel is active, and if this attribute is enabled, voiceChannel will not be allowed to go active. default: disable.')
com21_hcx_stu_voice_call_stats_table = mib_table((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1))
if mibBuilder.loadTexts:
com21HcxStuVoiceCallStatsTable.setStatus('current')
if mibBuilder.loadTexts:
com21HcxStuVoiceCallStatsTable.setDescription('.')
com21_hcx_stu_voice_call_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1)).setIndexNames((0, 'COM21-HCXVOICE-MIB', 'hcxStuVoiceCallStatsMacAddr'), (0, 'COM21-HCXVOICE-MIB', 'hcxStuVoiceCallStatsNum'))
if mibBuilder.loadTexts:
com21HcxStuVoiceCallStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
com21HcxStuVoiceCallStatsEntry.setDescription('.')
hcx_stu_voice_call_stats_mac_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxStuVoiceCallStatsMacAddr.setStatus('current')
if mibBuilder.loadTexts:
hcxStuVoiceCallStatsMacAddr.setDescription(' Contains IEEE 802 medium access control address of the ComPort device.')
hcx_stu_voice_call_stats_num = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxStuVoiceCallStatsNum.setStatus('current')
if mibBuilder.loadTexts:
hcxStuVoiceCallStatsNum.setDescription(' Defines the voice channel on the Comport device used for Voice.')
hcx_stu_voice_call_curr_in_calls_allwd = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 3), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxStuVoiceCallCurrInCallsAllwd.setStatus('current')
if mibBuilder.loadTexts:
hcxStuVoiceCallCurrInCallsAllwd.setDescription(' Defines the number of Incoming calls allowed in the given 15-min time period. Incoming calls are calls being placed to this voice channel.')
hcx_stu_voice_call_curr_out_calls_allwd = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 4), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxStuVoiceCallCurrOutCallsAllwd.setStatus('current')
if mibBuilder.loadTexts:
hcxStuVoiceCallCurrOutCallsAllwd.setDescription(' Defines the number of Outgoing calls allowed in the given 15-min time period. Outgoing calls are calls being placed by this voice channel.')
hcx_stu_voice_call_curr_in_calls_blkd = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 5), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxStuVoiceCallCurrInCallsBlkd.setStatus('current')
if mibBuilder.loadTexts:
hcxStuVoiceCallCurrInCallsBlkd.setDescription(' Defines the number of Incoming calls blocked in the given 15-min time period. Incoming calls are calls being placed to this voice channel.')
hcx_stu_voice_call_curr_out_calls_blkd = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 6), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxStuVoiceCallCurrOutCallsBlkd.setStatus('current')
if mibBuilder.loadTexts:
hcxStuVoiceCallCurrOutCallsBlkd.setDescription(' Defines the number of Outgoing calls blocked in the given 15-min time period. Outgoing calls are calls being placed by this voice channel.')
hcx_stu_voice_call_prev_in_calls_allwd = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 7), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxStuVoiceCallPrevInCallsAllwd.setStatus('current')
if mibBuilder.loadTexts:
hcxStuVoiceCallPrevInCallsAllwd.setDescription(' Defines the number of Incoming calls allowed in the previous 15-min time period. Incoming calls are calls being placed to this voice channel.')
hcx_stu_voice_call_prev_out_calls_allwd = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 8), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxStuVoiceCallPrevOutCallsAllwd.setStatus('current')
if mibBuilder.loadTexts:
hcxStuVoiceCallPrevOutCallsAllwd.setDescription(' Defines the number of Outgoing calls blocked in the previous 15-min time period. Outgoing calls are calls being placed by this voice channel.')
hcx_stu_voice_call_prev_in_calls_blkd = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 9), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxStuVoiceCallPrevInCallsBlkd.setStatus('current')
if mibBuilder.loadTexts:
hcxStuVoiceCallPrevInCallsBlkd.setDescription(' Defines the number of Incoming calls blocked in the previous 15-min time period. Incoming calls are calls being placed to this voice channel.')
hcx_stu_voice_call_prev_out_calls_blkd = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 10), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hcxStuVoiceCallPrevOutCallsBlkd.setStatus('current')
if mibBuilder.loadTexts:
hcxStuVoiceCallPrevOutCallsBlkd.setDescription(' Defines the number of Outgoing calls blocked in the previous 15-min time period. Outgoing calls are calls being placed by this voice channel.')
hcx_stu_voice_call_stats_clear = mib_table_column((1, 3, 6, 1, 4, 1, 1141, 2, 105, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('nil', 1), ('clear', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hcxStuVoiceCallStatsClear.setStatus('current')
if mibBuilder.loadTexts:
hcxStuVoiceCallStatsClear.setDescription(' This attribute is used to clear all the voice channel statistics counters in this group. This operation is only possible if the hcxStatsControl attribute is set to wrapCurr.')
mibBuilder.exportSymbols('COM21-HCXVOICE-MIB', hcxVpnRxRowStatus=hcxVpnRxRowStatus, com21HcxVoice=com21HcxVoice, com21HcxVoiceGroup=com21HcxVoiceGroup, com21HcxStuVoiceCallStatsGroup=com21HcxStuVoiceCallStatsGroup, hcxConfiguredVoiceChannels=hcxConfiguredVoiceChannels, hcxVpnRxStatsCurrCallsAllwd=hcxVpnRxStatsCurrCallsAllwd, hcxStuVoiceChannelVci=hcxStuVoiceChannelVci, hcxVpnRxStatsNum=hcxVpnRxStatsNum, hcxVpnRxStatsPrevCallsAllwd=hcxVpnRxStatsPrevCallsAllwd, hcxActiveVoiceChannels=hcxActiveVoiceChannels, hcxStuVoiceChannelPriStatus=hcxStuVoiceChannelPriStatus, hcxStuVoiceCallStatsNum=hcxStuVoiceCallStatsNum, PrimServiceState=PrimServiceState, hcxStuVoiceCallCurrInCallsAllwd=hcxStuVoiceCallCurrInCallsAllwd, Com21RowStatus=Com21RowStatus, hcxVoiceOAMEnable=hcxVoiceOAMEnable, hcxVpnRxNum=hcxVpnRxNum, hcxStuVoiceChannelMacAddr=hcxStuVoiceChannelMacAddr, com21HcxStuVoiceChannelTable=com21HcxStuVoiceChannelTable, hcxStuVoiceChannelExtLpBk=hcxStuVoiceChannelExtLpBk, com21HcxStuVoiceChannelEntry=com21HcxStuVoiceChannelEntry, hcxStuVoiceCallPrevOutCallsBlkd=hcxStuVoiceCallPrevOutCallsBlkd, hcxVpnRxStatsCurrCallsBlkd=hcxVpnRxStatsCurrCallsBlkd, hcxStuVoiceChannelNum=hcxStuVoiceChannelNum, com21HcxVpnRxGroup=com21HcxVpnRxGroup, com21HcxVpnRxStatsGroup=com21HcxVpnRxStatsGroup, hcxStuVoiceChannelVpi=hcxStuVoiceChannelVpi, PYSNMP_MODULE_ID=com21HcxVoice, com21HcxVpnRxStatsEntry=com21HcxVpnRxStatsEntry, hcxStuVoiceCallPrevInCallsAllwd=hcxStuVoiceCallPrevInCallsAllwd, hcxStuVoiceCallStatsMacAddr=hcxStuVoiceCallStatsMacAddr, hcxStuVoiceChannelState=hcxStuVoiceChannelState, hcxVpnRxStatsPrevCallsBlkd=hcxVpnRxStatsPrevCallsBlkd, hcxStuVoiceCallCurrOutCallsBlkd=hcxStuVoiceCallCurrOutCallsBlkd, hcxVpnRxStatsEntryId=hcxVpnRxStatsEntryId, hcxStuVoiceCallCurrInCallsBlkd=hcxStuVoiceCallCurrInCallsBlkd, hcxVoiceChannelMode=hcxVoiceChannelMode, hcxVoiceRTTDelay=hcxVoiceRTTDelay, com21HcxStuVoiceCallStatsTable=com21HcxStuVoiceCallStatsTable, hcxVpnRxMaxActiveCalls=hcxVpnRxMaxActiveCalls, hcxStuVoiceCallPrevInCallsBlkd=hcxStuVoiceCallPrevInCallsBlkd, hcxStuVoiceCallCurrOutCallsAllwd=hcxStuVoiceCallCurrOutCallsAllwd, hcxVoiceFEndEchoCancEnable=hcxVoiceFEndEchoCancEnable, com21HcxVpnRxStatsTable=com21HcxVpnRxStatsTable, hcxStuVoiceCallPrevOutCallsAllwd=hcxStuVoiceCallPrevOutCallsAllwd, com21HcxVpnRxTable=com21HcxVpnRxTable, com21HcxStuVoiceChannelGroup=com21HcxStuVoiceChannelGroup, hcxVpnRxEntryId=hcxVpnRxEntryId, hcxVpnRxStatsClear=hcxVpnRxStatsClear, com21HcxStuVoiceCallStatsEntry=com21HcxStuVoiceCallStatsEntry, hcxStuVoiceCallStatsClear=hcxStuVoiceCallStatsClear, com21HcxVpnRxEntry=com21HcxVpnRxEntry) |
GET = 'GET'
POST = 'POST'
PUT = 'PUT'
DELETE = 'DELETE'
| get = 'GET'
post = 'POST'
put = 'PUT'
delete = 'DELETE' |
SETTING_FILENAME = 'filename'
SETTING_RECENT_FILES = 'recentFiles'
SETTING_WIN_SIZE = 'window/size'
SETTING_WIN_POSE = 'window/position'
SETTING_WIN_GEOMETRY = 'window/geometry'
SETTING_LINE_COLOR = 'line/color'
SETTING_FILL_COLOR = 'fill/color'
SETTING_ADVANCE_MODE = 'advanced'
SETTING_WIN_STATE = 'window/state'
SETTING_SAVE_DIR = 'savedir'
SETTING_LAST_OPEN_DIR = 'lastOpenDir'
SETTING_TASK_MODE = 'task_mode'
SETTING_LABEL_FONT_SIZE = 'det/label_font_size'
COLORMAP = {0: [0, 0, 0], 1: [120, 120, 120], 2: [180, 120, 120], 3: [6, 230, 230], 4: [80, 50, 50], 5: [4, 200, 3],
6: [120, 120, 80], 7: [140, 140, 140], 8: [204, 5, 255], 9: [230, 230, 230], 10: [4, 250, 7],
11: [224, 5, 255], 12: [235, 255, 7], 13: [150, 5, 61], 14: [120, 120, 70], 15: [8, 255, 51],
16: [255, 6, 82], 17: [143, 255, 140], 18: [204, 255, 4], 19: [255, 51, 7], 20: [204, 70, 3],
21: [0, 102, 200], 22: [61, 230, 250], 23: [255, 6, 51], 24: [11, 102, 255], 25: [255, 7, 71],
26: [255, 9, 224], 27: [9, 7, 230], 28: [220, 220, 220], 29: [255, 9, 92], 30: [112, 9, 255],
31: [8, 255, 214], 32: [7, 255, 224], 33: [255, 184, 6], 34: [10, 255, 71], 35: [255, 41, 10],
36: [7, 255, 255], 37: [224, 255, 8], 38: [102, 8, 255], 39: [255, 61, 6], 40: [255, 194, 7],
41: [255, 122, 8], 42: [0, 255, 20], 43: [255, 8, 41], 44: [255, 5, 153], 45: [6, 51, 255],
46: [235, 12, 255], 47: [160, 150, 20], 48: [0, 163, 255], 49: [140, 140, 140], 50: [250, 10, 15],
51: [20, 255, 0], 52: [31, 255, 0], 53: [255, 31, 0], 54: [255, 224, 0], 55: [153, 255, 0],
56: [0, 0, 255], 57: [255, 71, 0], 58: [0, 235, 255], 59: [0, 173, 255], 60: [31, 0, 255],
61: [11, 200, 200], 62: [255, 82, 0], 63: [0, 255, 245], 64: [0, 61, 255], 65: [0, 255, 112],
66: [0, 255, 133], 67: [255, 0, 0], 68: [255, 163, 0], 69: [255, 102, 0], 70: [194, 255, 0],
71: [0, 143, 255], 72: [51, 255, 0], 73: [0, 82, 255], 74: [0, 255, 41], 75: [0, 255, 173],
76: [10, 0, 255], 77: [173, 255, 0], 78: [0, 255, 153], 79: [255, 92, 0], 80: [255, 0, 255],
81: [255, 0, 245], 82: [255, 0, 102], 83: [255, 173, 0], 84: [255, 0, 20], 85: [255, 184, 184],
86: [0, 31, 255], 87: [0, 255, 61], 88: [0, 71, 255], 89: [255, 0, 204], 90: [0, 255, 194],
91: [0, 255, 82], 92: [0, 10, 255], 93: [0, 112, 255], 94: [51, 0, 255], 95: [0, 194, 255],
96: [0, 122, 255], 97: [0, 255, 163], 98: [255, 153, 0], 99: [0, 255, 10], 100: [255, 112, 0],
101: [143, 255, 0], 102: [82, 0, 255], 103: [163, 255, 0], 104: [255, 235, 0], 105: [8, 184, 170],
106: [133, 0, 255], 107: [0, 255, 92], 108: [184, 0, 255], 109: [255, 0, 31], 110: [0, 184, 255],
111: [0, 214, 255], 112: [255, 0, 112], 113: [92, 255, 0], 114: [0, 224, 255], 115: [112, 224, 255],
116: [70, 184, 160], 117: [163, 0, 255], 118: [153, 0, 255], 119: [71, 255, 0], 120: [255, 0, 163],
121: [255, 204, 0], 122: [255, 0, 143], 123: [0, 255, 235], 124: [133, 255, 0], 125: [255, 0, 235],
126: [245, 0, 255], 127: [255, 0, 122], 128: [255, 245, 0], 129: [10, 190, 212], 130: [214, 255, 0],
131: [0, 204, 255], 132: [20, 0, 255], 133: [255, 255, 0], 134: [0, 153, 255], 135: [0, 41, 255],
136: [0, 255, 204], 137: [41, 0, 255], 138: [41, 255, 0], 139: [173, 0, 255], 140: [0, 245, 255],
141: [71, 0, 255], 142: [122, 0, 255], 143: [0, 255, 184], 144: [0, 92, 255], 145: [184, 255, 0],
146: [0, 133, 255], 147: [255, 214, 0], 148: [25, 194, 194], 149: [102, 255, 0], 150: [92, 0, 255],
255: [255, 255, 255]} | setting_filename = 'filename'
setting_recent_files = 'recentFiles'
setting_win_size = 'window/size'
setting_win_pose = 'window/position'
setting_win_geometry = 'window/geometry'
setting_line_color = 'line/color'
setting_fill_color = 'fill/color'
setting_advance_mode = 'advanced'
setting_win_state = 'window/state'
setting_save_dir = 'savedir'
setting_last_open_dir = 'lastOpenDir'
setting_task_mode = 'task_mode'
setting_label_font_size = 'det/label_font_size'
colormap = {0: [0, 0, 0], 1: [120, 120, 120], 2: [180, 120, 120], 3: [6, 230, 230], 4: [80, 50, 50], 5: [4, 200, 3], 6: [120, 120, 80], 7: [140, 140, 140], 8: [204, 5, 255], 9: [230, 230, 230], 10: [4, 250, 7], 11: [224, 5, 255], 12: [235, 255, 7], 13: [150, 5, 61], 14: [120, 120, 70], 15: [8, 255, 51], 16: [255, 6, 82], 17: [143, 255, 140], 18: [204, 255, 4], 19: [255, 51, 7], 20: [204, 70, 3], 21: [0, 102, 200], 22: [61, 230, 250], 23: [255, 6, 51], 24: [11, 102, 255], 25: [255, 7, 71], 26: [255, 9, 224], 27: [9, 7, 230], 28: [220, 220, 220], 29: [255, 9, 92], 30: [112, 9, 255], 31: [8, 255, 214], 32: [7, 255, 224], 33: [255, 184, 6], 34: [10, 255, 71], 35: [255, 41, 10], 36: [7, 255, 255], 37: [224, 255, 8], 38: [102, 8, 255], 39: [255, 61, 6], 40: [255, 194, 7], 41: [255, 122, 8], 42: [0, 255, 20], 43: [255, 8, 41], 44: [255, 5, 153], 45: [6, 51, 255], 46: [235, 12, 255], 47: [160, 150, 20], 48: [0, 163, 255], 49: [140, 140, 140], 50: [250, 10, 15], 51: [20, 255, 0], 52: [31, 255, 0], 53: [255, 31, 0], 54: [255, 224, 0], 55: [153, 255, 0], 56: [0, 0, 255], 57: [255, 71, 0], 58: [0, 235, 255], 59: [0, 173, 255], 60: [31, 0, 255], 61: [11, 200, 200], 62: [255, 82, 0], 63: [0, 255, 245], 64: [0, 61, 255], 65: [0, 255, 112], 66: [0, 255, 133], 67: [255, 0, 0], 68: [255, 163, 0], 69: [255, 102, 0], 70: [194, 255, 0], 71: [0, 143, 255], 72: [51, 255, 0], 73: [0, 82, 255], 74: [0, 255, 41], 75: [0, 255, 173], 76: [10, 0, 255], 77: [173, 255, 0], 78: [0, 255, 153], 79: [255, 92, 0], 80: [255, 0, 255], 81: [255, 0, 245], 82: [255, 0, 102], 83: [255, 173, 0], 84: [255, 0, 20], 85: [255, 184, 184], 86: [0, 31, 255], 87: [0, 255, 61], 88: [0, 71, 255], 89: [255, 0, 204], 90: [0, 255, 194], 91: [0, 255, 82], 92: [0, 10, 255], 93: [0, 112, 255], 94: [51, 0, 255], 95: [0, 194, 255], 96: [0, 122, 255], 97: [0, 255, 163], 98: [255, 153, 0], 99: [0, 255, 10], 100: [255, 112, 0], 101: [143, 255, 0], 102: [82, 0, 255], 103: [163, 255, 0], 104: [255, 235, 0], 105: [8, 184, 170], 106: [133, 0, 255], 107: [0, 255, 92], 108: [184, 0, 255], 109: [255, 0, 31], 110: [0, 184, 255], 111: [0, 214, 255], 112: [255, 0, 112], 113: [92, 255, 0], 114: [0, 224, 255], 115: [112, 224, 255], 116: [70, 184, 160], 117: [163, 0, 255], 118: [153, 0, 255], 119: [71, 255, 0], 120: [255, 0, 163], 121: [255, 204, 0], 122: [255, 0, 143], 123: [0, 255, 235], 124: [133, 255, 0], 125: [255, 0, 235], 126: [245, 0, 255], 127: [255, 0, 122], 128: [255, 245, 0], 129: [10, 190, 212], 130: [214, 255, 0], 131: [0, 204, 255], 132: [20, 0, 255], 133: [255, 255, 0], 134: [0, 153, 255], 135: [0, 41, 255], 136: [0, 255, 204], 137: [41, 0, 255], 138: [41, 255, 0], 139: [173, 0, 255], 140: [0, 245, 255], 141: [71, 0, 255], 142: [122, 0, 255], 143: [0, 255, 184], 144: [0, 92, 255], 145: [184, 255, 0], 146: [0, 133, 255], 147: [255, 214, 0], 148: [25, 194, 194], 149: [102, 255, 0], 150: [92, 0, 255], 255: [255, 255, 255]} |
# Source and destination file names.
test_source = "data/math.txt"
test_destination = "math_output_latex.html"
# Keyword parameters passed to publish_file.
reader_name = "standalone"
parser_name = "rst"
writer_name = "html"
# Settings
settings_overrides['math_output'] = 'latex'
# local copy of default stylesheet:
settings_overrides['stylesheet_path'] = (
'functional/input/data/html4css1.css')
| test_source = 'data/math.txt'
test_destination = 'math_output_latex.html'
reader_name = 'standalone'
parser_name = 'rst'
writer_name = 'html'
settings_overrides['math_output'] = 'latex'
settings_overrides['stylesheet_path'] = 'functional/input/data/html4css1.css' |
A,B,C= input().split()
if (A==B) and (B==C):
print('Yes')
else:
print('No')
| (a, b, c) = input().split()
if A == B and B == C:
print('Yes')
else:
print('No') |
def escreva(msg):
print('^' * (len(msg) + 4))
print(f' {msg}')
print('^' * (len(msg) + 4))
escreva('oii') | def escreva(msg):
print('^' * (len(msg) + 4))
print(f' {msg}')
print('^' * (len(msg) + 4))
escreva('oii') |
# x and y store the position of the ellipse
x = 0
y = 0
# the x and y speed of the ellipse
x_speed = 5
y_speed = 5
# the dimensions of the ellipse
ellipse_width = 100
ellipse_height = 50
# setup gets called once
def setup():
# the global keyword must be used as x and y are getting changed and they are global vars
global x, y
size(1280, 720)
x = width/2
y = height/2
# draw gets called once per frame
def draw():
global x, y
background(0)
noStroke()
# draw the ellipse at the x and y position with the specified dimensions
ellipse(x, y, ellipse_width, ellipse_height)
# check if the ellipse has collided with the boundaries
check_edges()
# update the ellipse position
x += x_speed
y += y_speed
# this function checks if the ellipse collides with the edges of the screen and reverses the ellipse's direction
def check_edges():
global x_speed, y_speed
if x + ellipse_width/2 > width or x - ellipse_width/2 < 0:
x_speed = x_speed * -1
fill(random(255), random(255), random(255))
if y + ellipse_height/2 > height or y - ellipse_height/2 < 0:
y_speed = y_speed * -1
fill(random(255), random(255), random(255))
| x = 0
y = 0
x_speed = 5
y_speed = 5
ellipse_width = 100
ellipse_height = 50
def setup():
global x, y
size(1280, 720)
x = width / 2
y = height / 2
def draw():
global x, y
background(0)
no_stroke()
ellipse(x, y, ellipse_width, ellipse_height)
check_edges()
x += x_speed
y += y_speed
def check_edges():
global x_speed, y_speed
if x + ellipse_width / 2 > width or x - ellipse_width / 2 < 0:
x_speed = x_speed * -1
fill(random(255), random(255), random(255))
if y + ellipse_height / 2 > height or y - ellipse_height / 2 < 0:
y_speed = y_speed * -1
fill(random(255), random(255), random(255)) |
print('Ingrese:')
cadena=input()
cadena=cadena.split(' ')
terminales=['void','int','float','a','{','}','(',')','return','instrucciones']
no_terminales=['S','TipoDato','Identificador','Letra','RestoLetra','Retorno','$']
tabla = {"S":{"void":["void","Identificador","(",")","{","instrucciones","}"],
"int":["TipoDato","Identificador","(",")","{","instrucciones","Retorno","}"],
"float":["TipoDato","Identificador","(",")","{","instrucciones","Retorno","}"]},
"TipoDato":{"int":["int"],"float":["float"]},
"Identificador":{"a":["Letra","RestoLetra"]},
"Letra":{"a":["a"]},
"RestoLetra":{"a":["Letra","RestoLetra"],"(":[]},
"Retorno":{"return":["return"]}
}
reglas=['S','$']
while reglas[0]!='$':
regla=reglas[0]
lexema=cadena[0]
if regla in terminales:
if lexema == regla:
reglas.pop(0)
cadena.pop(0)
else:
print('ERROR')
break
else:
try:
resultado_consulta=tabla[regla][lexema]
except:
resultado_consulta=None
if resultado_consulta != None:
reglas.pop(0)
if len(resultado_consulta)>0:
for rule in reversed(resultado_consulta):
reglas.insert(0,rule)
else:
print('ERROR')
break
print(reglas) | print('Ingrese:')
cadena = input()
cadena = cadena.split(' ')
terminales = ['void', 'int', 'float', 'a', '{', '}', '(', ')', 'return', 'instrucciones']
no_terminales = ['S', 'TipoDato', 'Identificador', 'Letra', 'RestoLetra', 'Retorno', '$']
tabla = {'S': {'void': ['void', 'Identificador', '(', ')', '{', 'instrucciones', '}'], 'int': ['TipoDato', 'Identificador', '(', ')', '{', 'instrucciones', 'Retorno', '}'], 'float': ['TipoDato', 'Identificador', '(', ')', '{', 'instrucciones', 'Retorno', '}']}, 'TipoDato': {'int': ['int'], 'float': ['float']}, 'Identificador': {'a': ['Letra', 'RestoLetra']}, 'Letra': {'a': ['a']}, 'RestoLetra': {'a': ['Letra', 'RestoLetra'], '(': []}, 'Retorno': {'return': ['return']}}
reglas = ['S', '$']
while reglas[0] != '$':
regla = reglas[0]
lexema = cadena[0]
if regla in terminales:
if lexema == regla:
reglas.pop(0)
cadena.pop(0)
else:
print('ERROR')
break
else:
try:
resultado_consulta = tabla[regla][lexema]
except:
resultado_consulta = None
if resultado_consulta != None:
reglas.pop(0)
if len(resultado_consulta) > 0:
for rule in reversed(resultado_consulta):
reglas.insert(0, rule)
else:
print('ERROR')
break
print(reglas) |
def saddle_points(m):
if len(m) == 0:
return set()
if any(len(m[0]) != len(m[i]) for i in range(1, len(m))):
raise ValueError('irregular matrix')
rowMaxs = [sorted(r, reverse=True)[0] for r in m]
colMins = [sorted(c)[0] for c in
[[m[r][c] for r in
range(len(m))] for c in
range(len(m[0]))]]
return set([(x, y) for x in
range(len(m)) for y, v in
enumerate(m[x])
if rowMaxs[x] == v and colMins[y] == v])
| def saddle_points(m):
if len(m) == 0:
return set()
if any((len(m[0]) != len(m[i]) for i in range(1, len(m)))):
raise value_error('irregular matrix')
row_maxs = [sorted(r, reverse=True)[0] for r in m]
col_mins = [sorted(c)[0] for c in [[m[r][c] for r in range(len(m))] for c in range(len(m[0]))]]
return set([(x, y) for x in range(len(m)) for (y, v) in enumerate(m[x]) if rowMaxs[x] == v and colMins[y] == v]) |
# for @security_policy @playready @security_level
SECURITY_LEVEL = (150, 2000, 3000)
LEVEL_150 = SECURITY_LEVEL[0] # 'LEVEL_150',
LEVEL_2000 = SECURITY_LEVEL[1] # 'LEVEL_2000'
LEVEL_3000 = SECURITY_LEVEL[2] # 'LEVEL_3000'
def check(playready_security_level) -> bool:
return playready_security_level in SECURITY_LEVEL
| security_level = (150, 2000, 3000)
level_150 = SECURITY_LEVEL[0]
level_2000 = SECURITY_LEVEL[1]
level_3000 = SECURITY_LEVEL[2]
def check(playready_security_level) -> bool:
return playready_security_level in SECURITY_LEVEL |
#!/usr/bin/python3
STATE = {
'running' : True,
'paused' : False,
'text' : False,
'explore' : True
}
TEXT = {
'file' : 'text_settings.txt',
'type' : 'dict',
'data' : {
'int' : {
'type' : 'int',
'data' : {
'' : 0
}},
'float' : {
'type' : 'float',
'data' : {
'spd' : 0.06,
'dly' : 0.0
}},
'list' : {
'type' : 'list',
'data' : {
'type' : 'int',
'data' : {
'player_clr' : [255, 255, 255, ' '],
'text_clr' : [128, 128, 128, ' '],
'background' : [0, 0, 0, ' ']
}}}
}
}
TIME = {
'file' : 'time.txt',
'type' : 'float',
'data' : {
'target_fps' : 20.0,
'fps' : 0.0,
'tick' : 0.0,
'elapsed_time' : 0.0
}
}
SAVE = {
'file' : 'saves.txt',
'type' : 'str',
'data' : {#
'current_save_slot' : '',
'1' : '',
'2' : '',
'3' : '',
'4' : '',
'5' : '',
'6' : '',
'7' : '',
'8' : '',
'9' : ''
}
}
DISPLAY = {
'file' : 'display.txt',
'type' : 'int',
'data' : {
'brightness' : 3,
'width' : 80,
'height' : 24,
'x' : 16,
'y' : 16
}
}
SPRITES = []
screen_buffer = {}
SAVE_DATA = [SAVE, TEXT, DISPLAY]
| state = {'running': True, 'paused': False, 'text': False, 'explore': True}
text = {'file': 'text_settings.txt', 'type': 'dict', 'data': {'int': {'type': 'int', 'data': {'': 0}}, 'float': {'type': 'float', 'data': {'spd': 0.06, 'dly': 0.0}}, 'list': {'type': 'list', 'data': {'type': 'int', 'data': {'player_clr': [255, 255, 255, ' '], 'text_clr': [128, 128, 128, ' '], 'background': [0, 0, 0, ' ']}}}}}
time = {'file': 'time.txt', 'type': 'float', 'data': {'target_fps': 20.0, 'fps': 0.0, 'tick': 0.0, 'elapsed_time': 0.0}}
save = {'file': 'saves.txt', 'type': 'str', 'data': {'current_save_slot': '', '1': '', '2': '', '3': '', '4': '', '5': '', '6': '', '7': '', '8': '', '9': ''}}
display = {'file': 'display.txt', 'type': 'int', 'data': {'brightness': 3, 'width': 80, 'height': 24, 'x': 16, 'y': 16}}
sprites = []
screen_buffer = {}
save_data = [SAVE, TEXT, DISPLAY] |
# This sample tests for/else loops for cases where variables
# are potentially unbound.
# For with no break and no else.
def func1():
for x in []:
a = 0
# This should generate a "potentially unbound" error.
print(a)
# This should generate a "potentially unbound" error.
print(x)
# For with no break and else.
def func2():
for x in []:
a = 0
else:
b = 0
# This should generate a "potentially unbound" error.
print(a)
print(b)
# This should generate a "potentially unbound" error.
print(x)
# For with break and else.
def func3():
for x in []:
a = 0
break
else:
b = 0
# This should generate a "potentially unbound" error.
print(a)
# This should generate a "potentially unbound" error.
print(b)
# This should generate a "potentially unbound" error.
print(x)
| def func1():
for x in []:
a = 0
print(a)
print(x)
def func2():
for x in []:
a = 0
else:
b = 0
print(a)
print(b)
print(x)
def func3():
for x in []:
a = 0
break
else:
b = 0
print(a)
print(b)
print(x) |
class ConstraintError(Exception):
pass
class ValidationError(Exception):
pass
| class Constrainterror(Exception):
pass
class Validationerror(Exception):
pass |
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def search(self, node):
if not node:
return None
if not node.left and not node.right:
return node
ret = self.search(node.left)
if node.left:
node.left.right = node
node.left.left = node.right
node.left = None
node.right = None
return ret
def upsideDownBinaryTree(self, root: Optional[TreeNode]) -> Optional[TreeNode]:
return self.search(root)
| class Solution:
def search(self, node):
if not node:
return None
if not node.left and (not node.right):
return node
ret = self.search(node.left)
if node.left:
node.left.right = node
node.left.left = node.right
node.left = None
node.right = None
return ret
def upside_down_binary_tree(self, root: Optional[TreeNode]) -> Optional[TreeNode]:
return self.search(root) |
EXTRACTORS = {
"dlib-hog-face5": {"type": "dlib", "detector": "hog", "keypoints": "face5",},
"dlib-hog-face68": {"type": "dlib", "detector": "hog", "keypoints": "face68",},
"dlib-cnn-face5": {"type": "dlib", "detector": "cnn", "keypoints": "face5",},
"dlib-cnn-face68": {"type": "dlib", "detector": "cnn", "keypoints": "face68",},
"openpose-face68": {"type": "openpose", "keypoints": "face68",},
"openpose-face3": {"type": "openpose", "keypoints": "face3",},
"openpose-face5": {"type": "openpose", "keypoints": "face5",},
}
| extractors = {'dlib-hog-face5': {'type': 'dlib', 'detector': 'hog', 'keypoints': 'face5'}, 'dlib-hog-face68': {'type': 'dlib', 'detector': 'hog', 'keypoints': 'face68'}, 'dlib-cnn-face5': {'type': 'dlib', 'detector': 'cnn', 'keypoints': 'face5'}, 'dlib-cnn-face68': {'type': 'dlib', 'detector': 'cnn', 'keypoints': 'face68'}, 'openpose-face68': {'type': 'openpose', 'keypoints': 'face68'}, 'openpose-face3': {'type': 'openpose', 'keypoints': 'face3'}, 'openpose-face5': {'type': 'openpose', 'keypoints': 'face5'}} |
algorithm='ddpg'
env_class='Gym'
model_class='LowDim2x'
environment = {
'name': 'BipedalWalker-v2'
}
model = {
'state_size': 24,
'action_size': 4
}
agent = {
'action_size': 4,
'evaluation_only': True
}
train = {
'n_episodes': 10000,
'max_t': 2000,
'solve_score': 300.0
}
| algorithm = 'ddpg'
env_class = 'Gym'
model_class = 'LowDim2x'
environment = {'name': 'BipedalWalker-v2'}
model = {'state_size': 24, 'action_size': 4}
agent = {'action_size': 4, 'evaluation_only': True}
train = {'n_episodes': 10000, 'max_t': 2000, 'solve_score': 300.0} |
# Category description for the widget registry
NAME = "Wofry ESRF Extension"
DESCRIPTION = "Widgets for Wofry"
BACKGROUND = "#ada8a8"
ICON = "icons/esrf2.png"
PRIORITY = 14
| name = 'Wofry ESRF Extension'
description = 'Widgets for Wofry'
background = '#ada8a8'
icon = 'icons/esrf2.png'
priority = 14 |
# Enter your code here. Read input from STDIN. Print output to STDOUT
def isprime(x):
if x == 1: return False
elif x == 2: return True
else:
if x % 2 == 0:
return False
else:
bound = int(x**0.5)
for counter in range(3, bound+1, 2):
if x % counter == 0:
return False
return True
size = int(input())
for _ in range(size):
num = int(input())
condition = isprime(num)
if condition:
print("Prime")
else:
print("Not prime")
| def isprime(x):
if x == 1:
return False
elif x == 2:
return True
elif x % 2 == 0:
return False
else:
bound = int(x ** 0.5)
for counter in range(3, bound + 1, 2):
if x % counter == 0:
return False
return True
size = int(input())
for _ in range(size):
num = int(input())
condition = isprime(num)
if condition:
print('Prime')
else:
print('Not prime') |
# Let's use christmas date as an example
# Who doesn't like christmas? :)
# 2021-12-25
YYYY_MM_DD = "%Y-%m-%d"
# 25-12-2021
DD_MM_YYYY = "%d-%m-%Y"
# 12-25-2021
MM_DD_YYYY = "%m-%d-%Y"
# 12-2021
MM_YYYY = "%m-%Y"
# 2021-12
YYYY_MM = "%Y-%m"
# December 25, 2021
MONTH_SPACE_DD_COMA_SPACE_YYYY = "%B %d, %Y"
| yyyy_mm_dd = '%Y-%m-%d'
dd_mm_yyyy = '%d-%m-%Y'
mm_dd_yyyy = '%m-%d-%Y'
mm_yyyy = '%m-%Y'
yyyy_mm = '%Y-%m'
month_space_dd_coma_space_yyyy = '%B %d, %Y' |
NAME = 'drf-querystringfilter'
VERSION = __version__ = "2.1.0"
__author__ = 'sax'
| name = 'drf-querystringfilter'
version = __version__ = '2.1.0'
__author__ = 'sax' |
def main():
while True:
num = int(input())
print(num ** 2, flush = True)
if num < 0:
return
if __name__ == '__main__':
main()
| def main():
while True:
num = int(input())
print(num ** 2, flush=True)
if num < 0:
return
if __name__ == '__main__':
main() |
class Motor:
def __init__(self, cilindros, tipo='gasolina') -> None:
self.cilindros = cilindros
self.tipo = tipo
self.__temperatura = 0
def inyecta_gasolina(self, cantidad):
pass
| class Motor:
def __init__(self, cilindros, tipo='gasolina') -> None:
self.cilindros = cilindros
self.tipo = tipo
self.__temperatura = 0
def inyecta_gasolina(self, cantidad):
pass |
#encoding:utf-8
subreddit = 'gtaonline'
t_channel = '@redditgtaonline'
def send_post(submission, r2t):
return r2t.send_simple(submission)
| subreddit = 'gtaonline'
t_channel = '@redditgtaonline'
def send_post(submission, r2t):
return r2t.send_simple(submission) |
filename = 'programming.txt'
with open(filename, 'a') as file_object:
file_object.write("I also love finding meaning in large datasets.\n")
file_object.write("I love creating apps that can run in a browser.\n") | filename = 'programming.txt'
with open(filename, 'a') as file_object:
file_object.write('I also love finding meaning in large datasets.\n')
file_object.write('I love creating apps that can run in a browser.\n') |
class Model(object):
def predict(self, X, feature_names):
print(X)
return X
| class Model(object):
def predict(self, X, feature_names):
print(X)
return X |
def dErrors(X, y, y_hat):
DErrorsDx1 = [X[i][0]*(y[i]-y_hat[i]) for i in range(len(y))]
DErrorsDx2 = [X[i][1]*(y[i]-y_hat[i]) for i in range(len(y))]
DErrorsDb = [y[i]-y_hat[i] for i in range(len(y))]
return DErrorsDx1, DErrorsDx2, DErrorsDb
def gradientDescentStep(X, y, W, b, learn_rate = 0.01):
y_hat = prediction(X,W,b)
errors = error_vector(y, y_hat)
derivErrors = dErrors(X, y, y_hat)
W[0] += sum(derivErrors[0])*learn_rate
W[1] += sum(derivErrors[1])*learn_rate
b += sum(derivErrors[2])*learn_rate
return W, b, sum(errors) | def d_errors(X, y, y_hat):
d_errors_dx1 = [X[i][0] * (y[i] - y_hat[i]) for i in range(len(y))]
d_errors_dx2 = [X[i][1] * (y[i] - y_hat[i]) for i in range(len(y))]
d_errors_db = [y[i] - y_hat[i] for i in range(len(y))]
return (DErrorsDx1, DErrorsDx2, DErrorsDb)
def gradient_descent_step(X, y, W, b, learn_rate=0.01):
y_hat = prediction(X, W, b)
errors = error_vector(y, y_hat)
deriv_errors = d_errors(X, y, y_hat)
W[0] += sum(derivErrors[0]) * learn_rate
W[1] += sum(derivErrors[1]) * learn_rate
b += sum(derivErrors[2]) * learn_rate
return (W, b, sum(errors)) |
class Video:
def __init__(self, id: str, date: str, title: str):
self.id = id
self.date = date
self.title = title
def __members(self):
return (
self.id,
self.date,
self.title,
)
def __eq__(self, other) -> bool:
if type(other) is type(self):
return self.__members() == other.__members()
return False
def __hash__(self) -> int:
return hash(self.__members())
def __repr__(self) -> str:
return str(self.__members())
| class Video:
def __init__(self, id: str, date: str, title: str):
self.id = id
self.date = date
self.title = title
def __members(self):
return (self.id, self.date, self.title)
def __eq__(self, other) -> bool:
if type(other) is type(self):
return self.__members() == other.__members()
return False
def __hash__(self) -> int:
return hash(self.__members())
def __repr__(self) -> str:
return str(self.__members()) |
class LogLevels:
def __init__(self):
self.__Load_Dict()
def __Load_Dict(self):
lines = []
with open("LogLevels.csv", 'r') as log_level_file:
for each_line in log_level_file:
each_line = each_line.replace('\n', '')
lines.append(each_line)
self.dictionary = {}
for each_line in lines:
cells = each_line.split(';')
log_id = int(cells[0])
log_string = cells[1]
self.dictionary[log_id] = log_string
| class Loglevels:
def __init__(self):
self.__Load_Dict()
def ___load__dict(self):
lines = []
with open('LogLevels.csv', 'r') as log_level_file:
for each_line in log_level_file:
each_line = each_line.replace('\n', '')
lines.append(each_line)
self.dictionary = {}
for each_line in lines:
cells = each_line.split(';')
log_id = int(cells[0])
log_string = cells[1]
self.dictionary[log_id] = log_string |
while True:
line = input()
if line == "Stop":
break
print(line)
| while True:
line = input()
if line == 'Stop':
break
print(line) |
#
# Karl Keusgen
# 2020-09-23
#
UseJsonConfig = False
| use_json_config = False |
# Definition for a binary tree node.
class TreeNode:
def __init__(self, val=0, left=None, right=None):
self.val = val
self.left = left
self.right = right
class Solution:
def sumOfLeftLeaves(self, root: Optional[TreeNode]) -> int:
def s(node, isLeft=True):
if not node:
return 0
if not node.left and not node.right and isLeft:
return node.val
return s(node.left) + s(node.right, False)
return s(root, False) | class Treenode:
def __init__(self, val=0, left=None, right=None):
self.val = val
self.left = left
self.right = right
class Solution:
def sum_of_left_leaves(self, root: Optional[TreeNode]) -> int:
def s(node, isLeft=True):
if not node:
return 0
if not node.left and (not node.right) and isLeft:
return node.val
return s(node.left) + s(node.right, False)
return s(root, False) |
def main():
for tc in range(int(input())):
N, ans = int(input()), -1
for a in range(1,N//2):
b = (N*(2*a-N))//(2*(a-N))
c = N-a-b
if a+b+c==N and a*a+b*b==c*c:
ans = max(ans,a*b*c)
print(ans)
if __name__=="__main__":
main()
| def main():
for tc in range(int(input())):
(n, ans) = (int(input()), -1)
for a in range(1, N // 2):
b = N * (2 * a - N) // (2 * (a - N))
c = N - a - b
if a + b + c == N and a * a + b * b == c * c:
ans = max(ans, a * b * c)
print(ans)
if __name__ == '__main__':
main() |
# %% [8. String to Integer (atoi)](https://leetcode.com/problems/string-to-integer-atoi/)
class Solution:
def myAtoi(self, s: str) -> int:
try:
s = re.match(r"\+?-?[0-9]+", s.strip()).group()
return min(2147483647, max(-2147483648, int(s)))
except:
return 0
| class Solution:
def my_atoi(self, s: str) -> int:
try:
s = re.match('\\+?-?[0-9]+', s.strip()).group()
return min(2147483647, max(-2147483648, int(s)))
except:
return 0 |
# Succesfull
HTTP_200_OK: int = 200
# Client Error
HTTP_400_BAD_REQUEST: int = 400
HTTP_401_UNAUTHORIZED: int = 401
HTTP_403_FORBIDDEN: int = 403
HTTP_404_NOT_FOUND: int = 404
HTTP_405_METHOD_NOT_ALLOWED: int = 405
HTTP_409_CONFLICT: int = 409
HTTP_428_PRECONDITION_REQUIRED: int = 428
# Server Error
HTTP_500_INTERNAL_SERVER_ERROR: int = 500
HTTP_501_NOT_IMPLEMENTED: int = 501
HTTP_502_BAD_GATEWAY: int = 502
HTTP_503_SERVICE_UNAVAILIBLE: int = 503
| http_200_ok: int = 200
http_400_bad_request: int = 400
http_401_unauthorized: int = 401
http_403_forbidden: int = 403
http_404_not_found: int = 404
http_405_method_not_allowed: int = 405
http_409_conflict: int = 409
http_428_precondition_required: int = 428
http_500_internal_server_error: int = 500
http_501_not_implemented: int = 501
http_502_bad_gateway: int = 502
http_503_service_unavailible: int = 503 |
c, link = emk.module("c", "link")
link.depdirs += [
"$:proj:$"
]
| (c, link) = emk.module('c', 'link')
link.depdirs += ['$:proj:$'] |
adjoining = [(1, 0), (-1, 0), (0, 1), (0, -1)]
def compute_max_square(tiles):
def is_square(x, y, m):
for dx in range(m):
for dy in range(m):
uid = (x + dx, y + dy)
if uid not in tiles:
return False
return True
max_square = 0
for (x, y) in tiles:
while is_square(x, y, max_square + 1):
max_square += 1
return max_square
def compute_zones(tiles):
tiles = set(tiles)
clusters = []
while True:
if len(tiles) == 0:
break
cluster = {tiles.pop()}
boundary = cluster.copy()
while True:
new_c = set()
for tile in boundary:
x, y = tile
for dx, dy in adjoining:
if (x + dx, y + dy) in tiles:
new_c.add((x + dx, y + dy))
if new_c:
cluster |= new_c
boundary = new_c
tiles -= new_c
else:
break
clusters.append(cluster)
clusters.sort(key=len, reverse=True)
return clusters
def compute_cluster(tiles):
cluster_tiles = set()
for (x, y) in tiles:
for dx, dy in adjoining:
if (x + dx, y + dy) not in tiles:
break
else:
cluster_tiles.add((x, y))
if len(cluster_tiles) == 0:
return 0
zones = compute_zones(cluster_tiles)
return max([len(c) for c in zones])
def compute_clusters(tiles):
if isinstance(list(tiles)[0], str):
tiles = set([tuple([int(i) for i in t.split('_')]) for t in tiles])
tiles_d = {}
for (x, y) in tiles:
if x not in tiles_d:
tiles_d[x] = set()
tiles_d[x].add(y)
cluster_tiles = set()
for (x, y) in tiles:
for dx, dy in adjoining:
if x + dx not in tiles_d:
break
if y + dy not in tiles_d[x + dx]:
break
else:
cluster_tiles.add((x, y))
return compute_zones(cluster_tiles)
def compute_max_cluster(tiles):
zones = compute_clusters(tiles)
return zones[0]
def expand_cluster(cluster, limit):
expansion = set(cluster)
frontier = set(cluster)
for n in range(limit):
new_frontier = set()
for x, y in frontier:
for dx, dy in adjoining:
if (x + dx, y + dy) not in expansion:
new_frontier.add((x + dx, y + dy))
expansion.add((x + dx, y + dy))
frontier = new_frontier
return expansion
| adjoining = [(1, 0), (-1, 0), (0, 1), (0, -1)]
def compute_max_square(tiles):
def is_square(x, y, m):
for dx in range(m):
for dy in range(m):
uid = (x + dx, y + dy)
if uid not in tiles:
return False
return True
max_square = 0
for (x, y) in tiles:
while is_square(x, y, max_square + 1):
max_square += 1
return max_square
def compute_zones(tiles):
tiles = set(tiles)
clusters = []
while True:
if len(tiles) == 0:
break
cluster = {tiles.pop()}
boundary = cluster.copy()
while True:
new_c = set()
for tile in boundary:
(x, y) = tile
for (dx, dy) in adjoining:
if (x + dx, y + dy) in tiles:
new_c.add((x + dx, y + dy))
if new_c:
cluster |= new_c
boundary = new_c
tiles -= new_c
else:
break
clusters.append(cluster)
clusters.sort(key=len, reverse=True)
return clusters
def compute_cluster(tiles):
cluster_tiles = set()
for (x, y) in tiles:
for (dx, dy) in adjoining:
if (x + dx, y + dy) not in tiles:
break
else:
cluster_tiles.add((x, y))
if len(cluster_tiles) == 0:
return 0
zones = compute_zones(cluster_tiles)
return max([len(c) for c in zones])
def compute_clusters(tiles):
if isinstance(list(tiles)[0], str):
tiles = set([tuple([int(i) for i in t.split('_')]) for t in tiles])
tiles_d = {}
for (x, y) in tiles:
if x not in tiles_d:
tiles_d[x] = set()
tiles_d[x].add(y)
cluster_tiles = set()
for (x, y) in tiles:
for (dx, dy) in adjoining:
if x + dx not in tiles_d:
break
if y + dy not in tiles_d[x + dx]:
break
else:
cluster_tiles.add((x, y))
return compute_zones(cluster_tiles)
def compute_max_cluster(tiles):
zones = compute_clusters(tiles)
return zones[0]
def expand_cluster(cluster, limit):
expansion = set(cluster)
frontier = set(cluster)
for n in range(limit):
new_frontier = set()
for (x, y) in frontier:
for (dx, dy) in adjoining:
if (x + dx, y + dy) not in expansion:
new_frontier.add((x + dx, y + dy))
expansion.add((x + dx, y + dy))
frontier = new_frontier
return expansion |
apis = {
'PhishTank': [
{
'name': 'PT_01',
'url': 'http://checkurl.phishtank.com/checkurl/',
'api_key': ''
}
],
'GoogleSafeBrowsing': [
{
'name': 'GSB_01',
'url': 'https://safebrowsing.googleapis.com/v4/threatMatches:find',
'api_key': '',
'client': {
'clientId': 'URL Checker',
'clientVersion': '1.0'
}
}
],
'URLScan': [
{
'name': 'US_01',
'url': 'https://urlscan.io/api/v1/scan/',
'api_key': ''
}
],
'OXT': [
{
'name': 'OXT_01',
'url': 'https://otx.alienvault.com/api/v1/',
'api_key': ''
}
],
# https://developer.greynoise.io/docs/authentication
'GreyNoise': [
{
'name': 'GN_01',
'url': 'https://api.greynoise.io/v2/noise/context/',
'api_key': ''
}
],
# https://docs.securitytrails.com/docs
'SecurityTrials': [
{
'name': 'ST_01',
'url': 'https://api.securitytrails.com/v1/domain/',
'api_key': ''
}
],
# https://www.mcafee.com/enterprise/en-us/solutions/mvision/developer-portal.html
'McAfeeMVision': [
{
'name': 'MAMV_01',
'url': 'https://api.securitytrails.com/v1/domain/',
'api_key': ''
}
],
# https://botscout.com/api.htm
'BotScout': [
{
'name': 'BS_01',
'url': 'http://botscout.com/test/',
'api_key': ''
}
],
# https://threatintelligenceplatform.com/threat-intelligence-api-docs/domain-malware-check-api
'ThreatIntelligencePlatform': [
{
'name': 'TIP_01',
'url': 'https://api.threatintelligenceplatform.com/v1/',
'api_key': ''
}
],
'RiskIQ': [
{
'name': 'RIQ_01',
'url': 'https://otx.alienvault.com/api/v1/',
'user': '',
'api_key': ''
}
],
# https://www.brightcloud.com/web-service/api-documentation
'BrightCloud': [
{
'name': 'BC_01',
'url': 'https://otx.alienvault.com/api/v1/',
'user': '',
'api_key': ''
}
],
# https://docs.abuseipdb.com/
'AbouseIPDB': [
{
'name': 'AIP_01',
'url': 'https://docs.abuseipdb.com/',
'api_key': ''
}
],
# https://www.hybrid-analysis.com/docs/api/v2#/Quick%20Scan/post_quick_scan_url
'HybridAnalysis': [
{
'name': 'HA_01',
'url': 'https://docs.abuseipdb.com/',
'api_key': ''
}
],
##
#
'AWIS': [
{
'name': 'RIQ_01',
'url': 'https://otx.alienvault.com/api/v1/',
'user': '',
'api_key': ''
}
]
}
| apis = {'PhishTank': [{'name': 'PT_01', 'url': 'http://checkurl.phishtank.com/checkurl/', 'api_key': ''}], 'GoogleSafeBrowsing': [{'name': 'GSB_01', 'url': 'https://safebrowsing.googleapis.com/v4/threatMatches:find', 'api_key': '', 'client': {'clientId': 'URL Checker', 'clientVersion': '1.0'}}], 'URLScan': [{'name': 'US_01', 'url': 'https://urlscan.io/api/v1/scan/', 'api_key': ''}], 'OXT': [{'name': 'OXT_01', 'url': 'https://otx.alienvault.com/api/v1/', 'api_key': ''}], 'GreyNoise': [{'name': 'GN_01', 'url': 'https://api.greynoise.io/v2/noise/context/', 'api_key': ''}], 'SecurityTrials': [{'name': 'ST_01', 'url': 'https://api.securitytrails.com/v1/domain/', 'api_key': ''}], 'McAfeeMVision': [{'name': 'MAMV_01', 'url': 'https://api.securitytrails.com/v1/domain/', 'api_key': ''}], 'BotScout': [{'name': 'BS_01', 'url': 'http://botscout.com/test/', 'api_key': ''}], 'ThreatIntelligencePlatform': [{'name': 'TIP_01', 'url': 'https://api.threatintelligenceplatform.com/v1/', 'api_key': ''}], 'RiskIQ': [{'name': 'RIQ_01', 'url': 'https://otx.alienvault.com/api/v1/', 'user': '', 'api_key': ''}], 'BrightCloud': [{'name': 'BC_01', 'url': 'https://otx.alienvault.com/api/v1/', 'user': '', 'api_key': ''}], 'AbouseIPDB': [{'name': 'AIP_01', 'url': 'https://docs.abuseipdb.com/', 'api_key': ''}], 'HybridAnalysis': [{'name': 'HA_01', 'url': 'https://docs.abuseipdb.com/', 'api_key': ''}], 'AWIS': [{'name': 'RIQ_01', 'url': 'https://otx.alienvault.com/api/v1/', 'user': '', 'api_key': ''}]} |
class WorkflowStatus:
ACTIVE = 'ACTIVE'
COMPLETED = 'COMPLETED'
FAILED = 'FAILED'
CANCELED = 'CANCELED'
TERMINATED = 'TERMINATED'
CONTINUED_AS_NEW = 'CONTINUED_AS_NEW'
TIMED_OUT = 'TIMED_OUT'
class RegistrationStatus:
REGISTERED = 'REGISTERED'
DEPRECATED = 'DEPRECATED'
| class Workflowstatus:
active = 'ACTIVE'
completed = 'COMPLETED'
failed = 'FAILED'
canceled = 'CANCELED'
terminated = 'TERMINATED'
continued_as_new = 'CONTINUED_AS_NEW'
timed_out = 'TIMED_OUT'
class Registrationstatus:
registered = 'REGISTERED'
deprecated = 'DEPRECATED' |
class Enemy:
hp = 200
def __init__(self, attack_low, attack_high):
self.attack_high = attack_high
self.attack_low = attack_low
def getAttackLow(self):
print("Low Attack", self.attack_low)
return self.attack_low
def getAttackHigh(self):
print("High Attack", self.attack_high)
return self.attack_high
def getHealth(self):
print("Enemy Heath", self.hp)
return self.hp
| class Enemy:
hp = 200
def __init__(self, attack_low, attack_high):
self.attack_high = attack_high
self.attack_low = attack_low
def get_attack_low(self):
print('Low Attack', self.attack_low)
return self.attack_low
def get_attack_high(self):
print('High Attack', self.attack_high)
return self.attack_high
def get_health(self):
print('Enemy Heath', self.hp)
return self.hp |
def get_next_value(v):
v *= 252533
return v % 33554393
x = 1
y = 1
val = 20151125
while True:
if y == 1:
y = x + 1
x = 1
else:
x += 1
y -= 1
# print(x, y)
val = get_next_value(val)
if x == 3083 and y == 2978:
print(val)
break
| def get_next_value(v):
v *= 252533
return v % 33554393
x = 1
y = 1
val = 20151125
while True:
if y == 1:
y = x + 1
x = 1
else:
x += 1
y -= 1
val = get_next_value(val)
if x == 3083 and y == 2978:
print(val)
break |
class command_base :
def __init__(self):
self.talk = False
self.talkNum = 0 | class Command_Base:
def __init__(self):
self.talk = False
self.talkNum = 0 |
class Solution:
def maxScoreSightseeingPair(self, A: List[int]) -> int:
maxAi, result = 0, 0
# max Ai keeps track of best encountered till now A[i]+i.
# result keeps finding better results across all j's.
for j in range(len(A)):
result = max(maxAi+A[j]-j, result)
maxAi = max(maxAi, A[j]+j)
return result
# Slightly better solution.
# def maxScoreSightseeingPair(self, A: List[int]) -> int:
# maxScore = -float('inf')
# ele1 = 0
# ele2 = ele1+1
# l = len(A)
# for ele2 in range(1, l):
# currScore = self.findScore(A, ele1, ele2)
# maxScore = max(maxScore, currScore)
# newEle1 = ele1+1
# tempScore = currScore
# while newEle1 < ele2:
# newScore = self.findScore(A, newEle1, ele2)
# if newScore > tempScore:
# tempScore = newScore
# maxScore = max(tempScore, maxScore)
# ele1 = newEle1
# newEle1 += 1
# return maxScore
# Brute Force solution O(n^2)
# def maxScoreSightseeingPair(self, A: List[int]) -> int:
# maxScore = -float('inf')
# for i in range(len(A)-1):
# for j in range(i+1, len(A)):
# maxScore = max(maxScore, self.findScore(A, i, j))
# return maxScore
# def findScore(self, A, i, j):
# return A[i] + A[j] + i - j
| class Solution:
def max_score_sightseeing_pair(self, A: List[int]) -> int:
(max_ai, result) = (0, 0)
for j in range(len(A)):
result = max(maxAi + A[j] - j, result)
max_ai = max(maxAi, A[j] + j)
return result |
#!/usr/bin/env python
imagedir = parent + "/oiio-images"
command = rw_command (imagedir, "oiio.ico")
| imagedir = parent + '/oiio-images'
command = rw_command(imagedir, 'oiio.ico') |
triangle = '''75
95 64
17 47 82
18 35 87 10
20 04 82 47 65
19 01 23 75 03 34
88 02 77 73 07 63 67
99 65 04 28 06 16 70 92
41 41 26 56 83 40 80 70 33
41 48 72 33 47 32 37 16 94 29
53 71 44 65 25 43 91 52 97 51 14
70 11 33 28 77 73 17 78 39 68 17 57
91 71 52 38 17 14 91 43 58 50 27 29 48
63 66 04 68 89 53 67 30 73 16 69 87 40 31
04 62 98 27 23 09 70 98 73 93 38 53 60 04 23'''
triangle = triangle.replace("\n", " ").split(" ")
triangle = [int(t) for t in triangle]
i = 14
below_max = []
while i >= 0 :
current_max = []
row_start = (i * (i + 1) // 2)
if i == 14:
for j in range(row_start, row_start + 15):
below_max.append(triangle[j])
else:
# Iterate current row elements
for j in range(i + 1):
current_max.append(triangle[row_start + j] + max(below_max[j], below_max[j + 1]))
below_max = current_max
i -= 1
print(below_max) | triangle = '75\n95 64\n17 47 82\n18 35 87 10\n20 04 82 47 65\n19 01 23 75 03 34\n88 02 77 73 07 63 67\n99 65 04 28 06 16 70 92\n41 41 26 56 83 40 80 70 33\n41 48 72 33 47 32 37 16 94 29\n53 71 44 65 25 43 91 52 97 51 14\n70 11 33 28 77 73 17 78 39 68 17 57\n91 71 52 38 17 14 91 43 58 50 27 29 48\n63 66 04 68 89 53 67 30 73 16 69 87 40 31\n04 62 98 27 23 09 70 98 73 93 38 53 60 04 23'
triangle = triangle.replace('\n', ' ').split(' ')
triangle = [int(t) for t in triangle]
i = 14
below_max = []
while i >= 0:
current_max = []
row_start = i * (i + 1) // 2
if i == 14:
for j in range(row_start, row_start + 15):
below_max.append(triangle[j])
else:
for j in range(i + 1):
current_max.append(triangle[row_start + j] + max(below_max[j], below_max[j + 1]))
below_max = current_max
i -= 1
print(below_max) |
# possible cell states, bitwise-flags
CELL_MINE = 1
CELL_REVEALED = 2
CELL_FLAGGED = 4
CELL_HIDDEN = 8
CELL_EMPTY = 16
# Colours for numbered cells.
COLORS = {
1: 'blue',
2: 'green',
3: 'red',
4: 'dark-blue',
5: 'brown',
6: 'purple',
7: 'dark-green',
8: 'orange'
}
# [height, width, mines]
DIFFICULTIES = {
'beginner': [9, 9, 10],
'intermediate': [16, 16, 40],
'advanced': [16, 30, 99]
} | cell_mine = 1
cell_revealed = 2
cell_flagged = 4
cell_hidden = 8
cell_empty = 16
colors = {1: 'blue', 2: 'green', 3: 'red', 4: 'dark-blue', 5: 'brown', 6: 'purple', 7: 'dark-green', 8: 'orange'}
difficulties = {'beginner': [9, 9, 10], 'intermediate': [16, 16, 40], 'advanced': [16, 30, 99]} |
n1 = "123"
print(n1.isdigit()) # -- ID1
n2 = "345 2"
print(n2.isdigit()) # -- ID2
n3 = "345 2b"
print(n3.isdigit()) # -- ID3
n4 = "\u0035"
print(n4.isdigit()) # -- ID4
n5 = "\u00BC"
print(n5)
print(n5.isdigit()) # -- ID5
n6 = "\u00B2343"
print(n6)
print(n6.isdigit()) # -- ID6
n7 = "8.9"
print(n7.isdigit()) # -- ID7
n8 = "123-456-975"
print(n8.isdigit()) # -- ID8 | n1 = '123'
print(n1.isdigit())
n2 = '345 2'
print(n2.isdigit())
n3 = '345 2b'
print(n3.isdigit())
n4 = '5'
print(n4.isdigit())
n5 = '¼'
print(n5)
print(n5.isdigit())
n6 = '²343'
print(n6)
print(n6.isdigit())
n7 = '8.9'
print(n7.isdigit())
n8 = '123-456-975'
print(n8.isdigit()) |
expected_output = {
"ospf3-database-information": {
"ospf3-area-header": {"ospf-area": "0.0.0.0"},
"ospf3-database": [
{
"lsa-type": "Router",
"lsa-id": "0.0.0.0",
"advertising-router": "10.16.2.2",
"sequence-number": "0x80000002",
"age": "491",
"checksum": "0x549c",
"lsa-length": "40",
"ospf3-router-lsa": {
"bits": "0x0",
"ospf3-options": "0x33",
"ospf3-link": [
{
"link-type-name": "PointToPoint",
"link-type-value": "1",
"link-metric": "1",
"link-intf-id": "1",
"nbr-intf-id": "1",
"nbr-rtr-id": "10.4.1.1",
}
],
"ospf3-lsa-topology": {
"ospf-topology-id": "0",
"ospf-topology-name": "default",
"ospf3-lsa-topology-link": [
{
"link-type-name": "PointToPoint",
"ospf-lsa-topology-link-node-id": "10.4.1.1",
"ospf-lsa-topology-link-metric": "1",
"ospf-lsa-topology-link-state": "Bidirectional",
}
],
},
},
"ospf-database-extensive": {
"aging-timer": {"#text": "00:51:48"},
"expiration-time": {"#text": "00:51:49"},
"installation-time": {"#text": "00:08:08"},
"send-time": {"#text": "00:08:06"},
"lsa-changed-time": {"#text": "00:08:37"},
"lsa-change-count": "1",
},
},
{
"lsa-type": "IntraArPfx",
"lsa-id": "0.0.0.1",
"advertising-router": "10.16.2.2",
"sequence-number": "0x80000003",
"age": "491",
"checksum": "0x991d",
"lsa-length": "64",
"ospf3-intra-area-prefix-lsa": {
"reference-lsa-type": "Router",
"reference-lsa-id": "0.0.0.0",
"reference-lsa-router-id": "10.16.2.2",
"prefix-count": "2",
"ospf3-prefix": ["2001:20::/64", "2001::2/128"],
"ospf3-prefix-options": ["0x0", "0x2"],
"ospf3-prefix-metric": ["1", "0"],
},
"ospf-database-extensive": {
"aging-timer": {"#text": "00:51:48"},
"expiration-time": {"#text": "00:51:49"},
"installation-time": {"#text": "00:08:08"},
"send-time": {"#text": "00:08:06"},
"lsa-changed-time": {"#text": "00:08:39"},
"lsa-change-count": "1",
},
},
{
"lsa-type": "Link",
"lsa-id": "0.0.0.1",
"advertising-router": "10.16.2.2",
"sequence-number": "0x80000001",
"age": "520",
"checksum": "0x7045",
"lsa-length": "56",
"ospf3-link-lsa": {
"linklocal-address": "fe80::250:56ff:fe8d:3f55",
"ospf3-options": "0x33",
"router-priority": "128",
"prefix-count": "1",
"ospf3-prefix": "2001:20::/64",
"ospf3-prefix-options": "0x0",
},
"ospf-database-extensive": {
"aging-timer": {"#text": "00:51:19"},
"expiration-time": {"#text": "00:51:20"},
"installation-time": {"#text": "00:08:37"},
"lsa-changed-time": {"#text": "00:08:37"},
"lsa-change-count": "1",
},
},
],
"ospf3-intf-header": [{"ospf-intf": "ge-0/0/0.0", "ospf-area": "0.0.0.0"}],
}
}
| expected_output = {'ospf3-database-information': {'ospf3-area-header': {'ospf-area': '0.0.0.0'}, 'ospf3-database': [{'lsa-type': 'Router', 'lsa-id': '0.0.0.0', 'advertising-router': '10.16.2.2', 'sequence-number': '0x80000002', 'age': '491', 'checksum': '0x549c', 'lsa-length': '40', 'ospf3-router-lsa': {'bits': '0x0', 'ospf3-options': '0x33', 'ospf3-link': [{'link-type-name': 'PointToPoint', 'link-type-value': '1', 'link-metric': '1', 'link-intf-id': '1', 'nbr-intf-id': '1', 'nbr-rtr-id': '10.4.1.1'}], 'ospf3-lsa-topology': {'ospf-topology-id': '0', 'ospf-topology-name': 'default', 'ospf3-lsa-topology-link': [{'link-type-name': 'PointToPoint', 'ospf-lsa-topology-link-node-id': '10.4.1.1', 'ospf-lsa-topology-link-metric': '1', 'ospf-lsa-topology-link-state': 'Bidirectional'}]}}, 'ospf-database-extensive': {'aging-timer': {'#text': '00:51:48'}, 'expiration-time': {'#text': '00:51:49'}, 'installation-time': {'#text': '00:08:08'}, 'send-time': {'#text': '00:08:06'}, 'lsa-changed-time': {'#text': '00:08:37'}, 'lsa-change-count': '1'}}, {'lsa-type': 'IntraArPfx', 'lsa-id': '0.0.0.1', 'advertising-router': '10.16.2.2', 'sequence-number': '0x80000003', 'age': '491', 'checksum': '0x991d', 'lsa-length': '64', 'ospf3-intra-area-prefix-lsa': {'reference-lsa-type': 'Router', 'reference-lsa-id': '0.0.0.0', 'reference-lsa-router-id': '10.16.2.2', 'prefix-count': '2', 'ospf3-prefix': ['2001:20::/64', '2001::2/128'], 'ospf3-prefix-options': ['0x0', '0x2'], 'ospf3-prefix-metric': ['1', '0']}, 'ospf-database-extensive': {'aging-timer': {'#text': '00:51:48'}, 'expiration-time': {'#text': '00:51:49'}, 'installation-time': {'#text': '00:08:08'}, 'send-time': {'#text': '00:08:06'}, 'lsa-changed-time': {'#text': '00:08:39'}, 'lsa-change-count': '1'}}, {'lsa-type': 'Link', 'lsa-id': '0.0.0.1', 'advertising-router': '10.16.2.2', 'sequence-number': '0x80000001', 'age': '520', 'checksum': '0x7045', 'lsa-length': '56', 'ospf3-link-lsa': {'linklocal-address': 'fe80::250:56ff:fe8d:3f55', 'ospf3-options': '0x33', 'router-priority': '128', 'prefix-count': '1', 'ospf3-prefix': '2001:20::/64', 'ospf3-prefix-options': '0x0'}, 'ospf-database-extensive': {'aging-timer': {'#text': '00:51:19'}, 'expiration-time': {'#text': '00:51:20'}, 'installation-time': {'#text': '00:08:37'}, 'lsa-changed-time': {'#text': '00:08:37'}, 'lsa-change-count': '1'}}], 'ospf3-intf-header': [{'ospf-intf': 'ge-0/0/0.0', 'ospf-area': '0.0.0.0'}]}} |
names = ["Helder", "Fabia", "Linda", "Leonie", "Carina", "Ivan", "Lexy"]
# print(names[0])
# print(names[1])
# print(names[2])
# print(names[3])
# print(names[4])
# print(names[5])
# print(names[6])
#print all elements with position on the left
#ex:
# 0: Helder
# 1: Fabia ...
counter = 0
while counter < len(names):
#print(str(counter) + ": " + names[counter])
print("{}: {}".format(counter + 1, names[counter]))
counter += 1 # counter = counter + 1
| names = ['Helder', 'Fabia', 'Linda', 'Leonie', 'Carina', 'Ivan', 'Lexy']
counter = 0
while counter < len(names):
print('{}: {}'.format(counter + 1, names[counter]))
counter += 1 |
def stopTracking():
i01.headTracking.stopTracking()
i01.eyesTracking.stopTracking()
| def stop_tracking():
i01.headTracking.stopTracking()
i01.eyesTracking.stopTracking() |
def isInt(x):
return type(x) in (float, int) and int(x) == x
class CommChannel:
def __init__(self):
self.outbox = []
self.inbox = []
def put(self, update):
if len(update) > 0:
self.outbox.append(update)
def get(self):
inbox = self.inbox
self.inbox = []
return inbox
def send(self):
outbox = self.outbox
self.outbox = []
return outbox
def recv(self, updates):
self.inbox += updates
| def is_int(x):
return type(x) in (float, int) and int(x) == x
class Commchannel:
def __init__(self):
self.outbox = []
self.inbox = []
def put(self, update):
if len(update) > 0:
self.outbox.append(update)
def get(self):
inbox = self.inbox
self.inbox = []
return inbox
def send(self):
outbox = self.outbox
self.outbox = []
return outbox
def recv(self, updates):
self.inbox += updates |
class Solution :
def canPair(self, nums, k) :
n = len(nums)
if n % 2 != 0 :
return False
# Initialization of dictionary
count = [0] * k
# Filling the map
for i in range(n) :
count[nums[i]%k] += 1
#print(count)
if (count[0] % 2 != 0) or ((k%2 == 0) and (count[k // 2] % 2 != 0)) :
return False
limit = k // 2
limit += 1 if k%2==1 else 0
for i in range(1, limit) :
if (count[i] != count[k-i]) :
return False
return True
if __name__ == '__main__':
T=int(input())
for i in range(T):
n, k = input().split()
n = int(n)
k = int(k)
nums = list(map(int, input().split()))
ob = Solution()
ans = ob.canPair(nums, k)
if(ans):
print("True")
else:
print("False")
| class Solution:
def can_pair(self, nums, k):
n = len(nums)
if n % 2 != 0:
return False
count = [0] * k
for i in range(n):
count[nums[i] % k] += 1
if count[0] % 2 != 0 or (k % 2 == 0 and count[k // 2] % 2 != 0):
return False
limit = k // 2
limit += 1 if k % 2 == 1 else 0
for i in range(1, limit):
if count[i] != count[k - i]:
return False
return True
if __name__ == '__main__':
t = int(input())
for i in range(T):
(n, k) = input().split()
n = int(n)
k = int(k)
nums = list(map(int, input().split()))
ob = solution()
ans = ob.canPair(nums, k)
if ans:
print('True')
else:
print('False') |
class SingleReply:
def __init__(self, inviteeId, status):
self.inviteeId = inviteeId
self.status = status
class PartyReplyInfoBase:
def __init__(self, partyId, partyReplies):
self.partyId = partyId
self.replies = []
for oneReply in partyReplies:
self.replies.append(SingleReply(*oneReply))
def __str__(self):
string = 'partyId=%d ' % self.partyId
for reply in self.replies:
string += '(%d:%d) ' % (reply.inviteeId, reply.status)
return string
| class Singlereply:
def __init__(self, inviteeId, status):
self.inviteeId = inviteeId
self.status = status
class Partyreplyinfobase:
def __init__(self, partyId, partyReplies):
self.partyId = partyId
self.replies = []
for one_reply in partyReplies:
self.replies.append(single_reply(*oneReply))
def __str__(self):
string = 'partyId=%d ' % self.partyId
for reply in self.replies:
string += '(%d:%d) ' % (reply.inviteeId, reply.status)
return string |
class Solution:
# @param A : list of integers
# @return an integer
def findMinXor(self, nums):
nums.sort()
x = nums[0]
minimumXOR = 10**9
for i in range(1, len(nums)):
y = nums[i]
minimumXOR = min(minimumXOR, x^y)
x = y
return minimumXOR
| class Solution:
def find_min_xor(self, nums):
nums.sort()
x = nums[0]
minimum_xor = 10 ** 9
for i in range(1, len(nums)):
y = nums[i]
minimum_xor = min(minimumXOR, x ^ y)
x = y
return minimumXOR |
class UrlResources(object):
def __init__(self, domain, sandbox, version):
super(UrlResources, self).__init__()
self.domain = domain
self.sandbox = sandbox
self.version = version
def get_resource_url(self):
return self.get_resource_path().format(version=self.version)
def get_full_resource_url(self, **kwargs):
raise NotImplementedError
def get_resource_path(self):
raise NotImplementedError
class RestUrlResources(UrlResources):
RESOURCE_PATH = "/services/data/v{version}"
def __init__(self, domain, sandbox, version):
super(RestUrlResources, self).__init__(domain, sandbox, version)
def get_resource_path(self):
return RestUrlResources.RESOURCE_PATH
def get_full_resource_url(self, instance_url, resource_name):
return '{0}{1}{2}'.format(
instance_url,
RestUrlResources.RESOURCE_PATH.format(version=self.version),
resource_name)
def get_resource_sobject_url(self,
instance_url,
resource_name,
sobject_name):
return '{0}{1}'.format(
self.get_full_resource_url(instance_url, resource_name),
sobject_name)
class SoapUrlResources(UrlResources):
RESOURCE_PATH = "/services/Soap/u/{version}"
def __init__(self, domain, sandbox, version):
super(SoapUrlResources, self).__init__(domain, sandbox, version)
def get_resource_path(self):
return SoapUrlResources.RESOURCE_PATH
def get_full_resource_url(self, instance_url):
return '{0}{1}'.format(
instance_url,
SoapUrlResources.RESOURCE_PATH.format(version=self.version))
class ResourcesName(object):
__RESOURCES_NAME = {
'query': '/query/',
'queryAll': '/queryAll/',
'sobject': '/sobjects/',
'search': '/search/',
}
@staticmethod
def get_resource_name(name):
if name in ResourcesName.__RESOURCES_NAME:
return ResourcesName.__RESOURCES_NAME[name]
else:
raise ValueError('Not a valid name %s' % name)
| class Urlresources(object):
def __init__(self, domain, sandbox, version):
super(UrlResources, self).__init__()
self.domain = domain
self.sandbox = sandbox
self.version = version
def get_resource_url(self):
return self.get_resource_path().format(version=self.version)
def get_full_resource_url(self, **kwargs):
raise NotImplementedError
def get_resource_path(self):
raise NotImplementedError
class Resturlresources(UrlResources):
resource_path = '/services/data/v{version}'
def __init__(self, domain, sandbox, version):
super(RestUrlResources, self).__init__(domain, sandbox, version)
def get_resource_path(self):
return RestUrlResources.RESOURCE_PATH
def get_full_resource_url(self, instance_url, resource_name):
return '{0}{1}{2}'.format(instance_url, RestUrlResources.RESOURCE_PATH.format(version=self.version), resource_name)
def get_resource_sobject_url(self, instance_url, resource_name, sobject_name):
return '{0}{1}'.format(self.get_full_resource_url(instance_url, resource_name), sobject_name)
class Soapurlresources(UrlResources):
resource_path = '/services/Soap/u/{version}'
def __init__(self, domain, sandbox, version):
super(SoapUrlResources, self).__init__(domain, sandbox, version)
def get_resource_path(self):
return SoapUrlResources.RESOURCE_PATH
def get_full_resource_url(self, instance_url):
return '{0}{1}'.format(instance_url, SoapUrlResources.RESOURCE_PATH.format(version=self.version))
class Resourcesname(object):
__resources_name = {'query': '/query/', 'queryAll': '/queryAll/', 'sobject': '/sobjects/', 'search': '/search/'}
@staticmethod
def get_resource_name(name):
if name in ResourcesName.__RESOURCES_NAME:
return ResourcesName.__RESOURCES_NAME[name]
else:
raise value_error('Not a valid name %s' % name) |
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def isSameTree(self, p: Optional[TreeNode], q: Optional[TreeNode]) -> bool:
def preorderTraversal(root1, root2):
if not root1 and not root2:
return True
elif not root1 or not root2 or root1.val != root2.val:
return False
else:
isSame1 = preorderTraversal(root1.left, root2.left)
isSame2 = preorderTraversal(root1.right, root2.right)
return isSame1 and isSame2
return preorderTraversal(p, q) | class Solution:
def is_same_tree(self, p: Optional[TreeNode], q: Optional[TreeNode]) -> bool:
def preorder_traversal(root1, root2):
if not root1 and (not root2):
return True
elif not root1 or not root2 or root1.val != root2.val:
return False
else:
is_same1 = preorder_traversal(root1.left, root2.left)
is_same2 = preorder_traversal(root1.right, root2.right)
return isSame1 and isSame2
return preorder_traversal(p, q) |
pkgname = "xinput"
pkgver = "1.6.3"
pkgrel = 0
build_style = "gnu_configure"
hostmakedepends = ["pkgconf"]
makedepends = [
"libxext-devel", "libxi-devel", "libxrandr-devel", "libxinerama-devel"
]
pkgdesc = "X input device configuration utility"
maintainer = "q66 <q66@chimera-linux.org>"
license = "MIT"
url = "https://xorg.freedesktop.org"
source = f"$(XORG_SITE)/app/{pkgname}-{pkgver}.tar.bz2"
sha256 = "35a281dd3b9b22ea85e39869bb7670ba78955d5fec17c6ef7165d61e5aeb66ed"
def post_install(self):
self.install_license("COPYING")
| pkgname = 'xinput'
pkgver = '1.6.3'
pkgrel = 0
build_style = 'gnu_configure'
hostmakedepends = ['pkgconf']
makedepends = ['libxext-devel', 'libxi-devel', 'libxrandr-devel', 'libxinerama-devel']
pkgdesc = 'X input device configuration utility'
maintainer = 'q66 <q66@chimera-linux.org>'
license = 'MIT'
url = 'https://xorg.freedesktop.org'
source = f'$(XORG_SITE)/app/{pkgname}-{pkgver}.tar.bz2'
sha256 = '35a281dd3b9b22ea85e39869bb7670ba78955d5fec17c6ef7165d61e5aeb66ed'
def post_install(self):
self.install_license('COPYING') |
class Solution:
def twoSum(self, nums: List[int], target: int) -> List[int]:
for i in range(len(nums)):
n=target-nums[i]
rest_of_nums=nums[i+1:]
if n in rest_of_nums:
return[i,(rest_of_nums.index(n))+i+1]
| class Solution:
def two_sum(self, nums: List[int], target: int) -> List[int]:
for i in range(len(nums)):
n = target - nums[i]
rest_of_nums = nums[i + 1:]
if n in rest_of_nums:
return [i, rest_of_nums.index(n) + i + 1] |
class Request:
# trip: Trip
# rider: User
# pickup: Location
id: str
def __init__(self, rider, trip, pickup):
self.rider = rider
self.trip = trip
self.pickup = pickup
def accept(self):
self.trip.riders.append((self.rider, self.pickup))
def un_accept(self):
if (self.rider, self.pickup) in self.trip.riders:
self.trip.riders.remove((self.rider, self.pickup))
| class Request:
id: str
def __init__(self, rider, trip, pickup):
self.rider = rider
self.trip = trip
self.pickup = pickup
def accept(self):
self.trip.riders.append((self.rider, self.pickup))
def un_accept(self):
if (self.rider, self.pickup) in self.trip.riders:
self.trip.riders.remove((self.rider, self.pickup)) |
radioData = [
"HLC\Adaptive\9558L_L1024A10_73",
"HLC\Adaptive\9558L_L1024A10_73",
"HLC\Adaptive\9558L_L1024A10_73",
"HLC\Adaptive\9558L_L1024A10_73",
"HLC\Adaptive\9558L_L1024A10_73",
"HLC\Adaptive\9558L_L1024A10_73",
"HLC\Adaptive\9558L_L1024A10_73",
"HLC\Adaptive\9558L_L1024A10_73",
"HLC\Adaptive\9558L_L1024A30_230",
"HLC\Adaptive\9558L_L1024A30_230",
"HLC\Adaptive\9558L_L1024A30_230",
"HLC\Adaptive\9558L_L1024A30_230",
"HLC\Adaptive\9558L_L1024A30_230",
"HLC\Adaptive\9558L_L1024A30_230",
"HLC\Adaptive\9558L_L1024A30_230",
"HLC\Adaptive\9558L_L1024A30_230",
"HLC\Adaptive\9558L_L1024A5_35",
"HLC\Adaptive\9558L_L1024A5_35",
"HLC\Adaptive\9558L_L1024A5_35",
"HLC\Adaptive\9558L_L1024A5_35",
"HLC\Adaptive\9558L_L1024A5_35",
"HLC\Adaptive\9558L_L1024A5_35",
"HLC\Adaptive\9558L_L1024A5_35",
"HLC\Adaptive\9558L_L1024A5_35",
"HLC\Adaptive\WVCE07_L_1024A25S_188",
"HLC\Adaptive\WVCE07_L_1024A25S_188",
"HLC\Adaptive\WVCE07_L_1024A25S_188",
"HLC\Adaptive\WVCE07_L_1024A25S_188",
"HLC\Adaptive\WVCE07_L_1024A25S_188",
"HLC\Adaptive\WVCE07_L_1024A25S_188",
"HLC\Adaptive\WVCE07_L_1024A25S_188",
"HLC\Adaptive\WVCE07_L_1024A25S_188",
"HLC\Adaptive\WVCE08_L_1024A10S_73",
"HLC\Adaptive\WVCE08_L_1024A10S_73",
"HLC\Adaptive\WVCE08_L_1024A10S_73",
"HLC\Adaptive\WVCE08_L_1024A10S_73",
"HLC\Adaptive\WVCE08_L_1024A10S_73",
"HLC\Adaptive\WVCE08_L_1024A10S_73",
"HLC\Adaptive\WVCE08_L_1024A10S_73",
"HLC\Adaptive\WVCE08_L_1024A10S_73",
"HLC\Adaptive\WVCE08_L_1024A10S_73_7",
"HLC\Adaptive\WVCE08_L_1024A10S_73_7",
"HLC\Adaptive\WVCE08_L_1024A10S_73_7",
"HLC\Adaptive\WVCE08_L_1024A10S_73_7",
"HLC\Adaptive\WVCE08_L_1024A10S_73_7",
"HLC\Adaptive\WVCE08_L_1024A10S_73_7",
"HLC\Adaptive\WVCE08_L_1024A10S_73_7",
"HLC\Adaptive\WVCE08_L_1024A10S_73_7",
"HLC\Adaptive\WVCE08_L_1024A30L_230",
"HLC\Adaptive\WVCE08_L_1024A30L_230",
"HLC\Adaptive\WVCE08_L_1024A30L_230",
"HLC\Adaptive\WVCE08_L_1024A30L_230",
"HLC\Adaptive\WVCE08_L_1024A30L_230",
"HLC\Adaptive\WVCE08_L_1024A30L_230",
"HLC\Adaptive\WVCE08_L_1024A30L_230",
"HLC\Adaptive\WVCE08_L_1024A30L_230",
"HLC\Adaptive\WVCE08_L_1024A30L_230_7",
"HLC\Adaptive\WVCE08_L_1024A30L_230_7",
"HLC\Adaptive\WVCE08_L_1024A30L_230_7",
"HLC\Adaptive\WVCE08_L_1024A30L_230_7",
"HLC\Adaptive\WVCE08_L_1024A30L_230_7",
"HLC\Adaptive\WVCE08_L_1024A30L_230_7",
"HLC\Adaptive\WVCE08_L_1024A30L_230_7",
"HLC\Adaptive\WVCE08_L_1024A30L_230_7",
"HLC\Adaptive\WVCE08_L_1024A30L_230_7ACCP",
"HLC\Adaptive\WVCE08_L_1024A30L_230_7ACCP",
"HLC\Adaptive\WVCE08_L_1024A30L_230_7ACCP",
"HLC\Adaptive\WVCE08_L_1024A30L_230_7ACCP",
"HLC\Adaptive\WVCE08_L_1024A30L_230_7ACCP",
"HLC\Adaptive\WVCE08_L_1024A30L_230_7ACCP",
"HLC\Adaptive\WVCE08_L_1024A30L_230_7ACCP",
"HLC\Adaptive\WVCE08_L_1024A30L_230_7ACCP",
"HLC\Adaptive\WVCE08_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE08_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE08_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE08_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE08_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE08_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE08_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE08_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE08_L_1024A30S_230",
"HLC\Adaptive\WVCE08_L_1024A30S_230",
"HLC\Adaptive\WVCE08_L_1024A30S_230",
"HLC\Adaptive\WVCE08_L_1024A30S_230",
"HLC\Adaptive\WVCE08_L_1024A30S_230",
"HLC\Adaptive\WVCE08_L_1024A30S_230",
"HLC\Adaptive\WVCE08_L_1024A30S_230",
"HLC\Adaptive\WVCE08_L_1024A30S_230",
"HLC\Adaptive\WVCE08_L_1024A30S_230_7",
"HLC\Adaptive\WVCE08_L_1024A30S_230_7",
"HLC\Adaptive\WVCE08_L_1024A30S_230_7",
"HLC\Adaptive\WVCE08_L_1024A30S_230_7",
"HLC\Adaptive\WVCE08_L_1024A30S_230_7",
"HLC\Adaptive\WVCE08_L_1024A30S_230_7",
"HLC\Adaptive\WVCE08_L_1024A30S_230_7",
"HLC\Adaptive\WVCE08_L_1024A30S_230_7",
"HLC\Adaptive\WVCE08_L_1024A30S_230_7ACCP",
"HLC\Adaptive\WVCE08_L_1024A30S_230_7ACCP",
"HLC\Adaptive\WVCE08_L_1024A30S_230_7ACCP",
"HLC\Adaptive\WVCE08_L_1024A30S_230_7ACCP",
"HLC\Adaptive\WVCE08_L_1024A30S_230_7ACCP",
"HLC\Adaptive\WVCE08_L_1024A30S_230_7ACCP",
"HLC\Adaptive\WVCE08_L_1024A30S_230_7ACCP",
"HLC\Adaptive\WVCE08_L_1024A30S_230_7ACCP",
"HLC\Adaptive\WVCE08_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE08_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE08_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE08_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE08_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE08_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE08_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE08_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE08_L_1024A5S_35",
"HLC\Adaptive\WVCE08_L_1024A5S_35",
"HLC\Adaptive\WVCE08_L_1024A5S_35",
"HLC\Adaptive\WVCE08_L_1024A5S_35",
"HLC\Adaptive\WVCE08_L_1024A5S_35",
"HLC\Adaptive\WVCE08_L_1024A5S_35",
"HLC\Adaptive\WVCE08_L_1024A5S_35",
"HLC\Adaptive\WVCE08_L_1024A5S_35",
"HLC\Adaptive\WVCE08_L_1024A5S_35_7",
"HLC\Adaptive\WVCE08_L_1024A5S_35_7",
"HLC\Adaptive\WVCE08_L_1024A5S_35_7",
"HLC\Adaptive\WVCE08_L_1024A5S_35_7",
"HLC\Adaptive\WVCE08_L_1024A5S_35_7",
"HLC\Adaptive\WVCE08_L_1024A5S_35_7",
"HLC\Adaptive\WVCE08_L_1024A5S_35_7",
"HLC\Adaptive\WVCE08_L_1024A5S_35_7",
"HLC\Adaptive\WVCE10_L_1024A5S_35",
"HLC\Adaptive\WVCE10_L_1024A5S_35",
"HLC\Adaptive\WVCE10_L_1024A5S_35",
"HLC\Adaptive\WVCE10_L_1024A5S_35",
"HLC\Adaptive\WVCE10_L_1024A5S_35",
"HLC\Adaptive\WVCE10_L_1024A5S_35",
"HLC\Adaptive\WVCE10_L_1024A5S_35",
"HLC\Adaptive\WVCE10_L_1024A5S_35",
"HLC\Adaptive\WVCE11_L_1024A10S_73",
"HLC\Adaptive\WVCE11_L_1024A10S_73",
"HLC\Adaptive\WVCE11_L_1024A10S_73",
"HLC\Adaptive\WVCE11_L_1024A10S_73",
"HLC\Adaptive\WVCE11_L_1024A10S_73",
"HLC\Adaptive\WVCE11_L_1024A10S_73",
"HLC\Adaptive\WVCE11_L_1024A10S_73",
"HLC\Adaptive\WVCE11_L_1024A10S_73",
"HLC\Adaptive\WVCE11_L_1024A30L_230",
"HLC\Adaptive\WVCE11_L_1024A30L_230",
"HLC\Adaptive\WVCE11_L_1024A30L_230",
"HLC\Adaptive\WVCE11_L_1024A30L_230",
"HLC\Adaptive\WVCE11_L_1024A30L_230",
"HLC\Adaptive\WVCE11_L_1024A30L_230",
"HLC\Adaptive\WVCE11_L_1024A30L_230",
"HLC\Adaptive\WVCE11_L_1024A30L_230",
"HLC\Adaptive\WVCE11_L_1024A30S_230",
"HLC\Adaptive\WVCE11_L_1024A30S_230",
"HLC\Adaptive\WVCE11_L_1024A30S_230",
"HLC\Adaptive\WVCE11_L_1024A30S_230",
"HLC\Adaptive\WVCE11_L_1024A30S_230",
"HLC\Adaptive\WVCE11_L_1024A30S_230",
"HLC\Adaptive\WVCE11_L_1024A30S_230",
"HLC\Adaptive\WVCE11_L_1024A30S_230",
"HLC\Adaptive\WVCE11_L_1024A40S_298",
"HLC\Adaptive\WVCE11_L_1024A40S_298",
"HLC\Adaptive\WVCE11_L_1024A40S_298",
"HLC\Adaptive\WVCE11_L_1024A40S_298",
"HLC\Adaptive\WVCE11_L_1024A40S_298",
"HLC\Adaptive\WVCE11_L_1024A40S_298",
"HLC\Adaptive\WVCE11_L_1024A40S_298",
"HLC\Adaptive\WVCE11_L_1024A40S_298",
"HLC\Adaptive\WVCE11_L_1024A40S_298_ACCP",
"HLC\Adaptive\WVCE11_L_1024A40S_298_ACCP",
"HLC\Adaptive\WVCE11_L_1024A40S_298_ACCP",
"HLC\Adaptive\WVCE11_L_1024A40S_298_ACCP",
"HLC\Adaptive\WVCE11_L_1024A40S_298_ACCP",
"HLC\Adaptive\WVCE11_L_1024A40S_298_ACCP",
"HLC\Adaptive\WVCE11_L_1024A40S_298_ACCP",
"HLC\Adaptive\WVCE11_L_1024A40S_298_ACCP",
"HLC\Adaptive\WVCE11_L_1024A5S_35",
"HLC\Adaptive\WVCE11_L_1024A5S_35",
"HLC\Adaptive\WVCE11_L_1024A5S_35",
"HLC\Adaptive\WVCE11_L_1024A5S_35",
"HLC\Adaptive\WVCE11_L_1024A5S_35",
"HLC\Adaptive\WVCE11_L_1024A5S_35",
"HLC\Adaptive\WVCE11_L_1024A5S_35",
"HLC\Adaptive\WVCE11_L_1024A5S_35",
"HLC\Adaptive\WVCE11_L_1024A60S_441",
"HLC\Adaptive\WVCE11_L_1024A60S_441",
"HLC\Adaptive\WVCE11_L_1024A60S_441",
"HLC\Adaptive\WVCE11_L_1024A60S_441",
"HLC\Adaptive\WVCE11_L_1024A60S_441",
"HLC\Adaptive\WVCE11_L_1024A60S_441",
"HLC\Adaptive\WVCE11_L_1024A60S_441",
"HLC\Adaptive\WVCE11_L_1024A60S_441",
"HLC\Adaptive\WVCE11_L_2048A60S_497",
"HLC\Adaptive\WVCE11_L_2048A60S_497",
"HLC\Adaptive\WVCE11_L_2048A60S_497",
"HLC\Adaptive\WVCE11_L_2048A60S_497",
"HLC\Adaptive\WVCE11_L_2048A60S_497",
"HLC\Adaptive\WVCE11_L_2048A60S_497",
"HLC\Adaptive\WVCE11_L_2048A60S_497",
"HLC\Adaptive\WVCE11_L_2048A60S_497",
"HLC\Adaptive\WVCE11_L_2048A60S_497",
"HLC\Adaptive\WVCE11_L_4096A30H_255",
"HLC\Adaptive\WVCE11_L_4096A30H_255",
"HLC\Adaptive\WVCE11_L_4096A30H_255",
"HLC\Adaptive\WVCE11_L_4096A30H_255",
"HLC\Adaptive\WVCE11_L_4096A30H_255",
"HLC\Adaptive\WVCE11_L_4096A30H_255",
"HLC\Adaptive\WVCE11_L_4096A30H_255",
"HLC\Adaptive\WVCE11_L_4096A30H_255",
"HLC\Adaptive\WVCE11_L_4096A30H_255",
"HLC\Adaptive\WVCE11_L_4096A30H_255",
"HLC\Adaptive\WVCE11_L_4096A40H_330",
"HLC\Adaptive\WVCE11_L_4096A40H_330",
"HLC\Adaptive\WVCE11_L_4096A40H_330",
"HLC\Adaptive\WVCE11_L_4096A40H_330",
"HLC\Adaptive\WVCE11_L_4096A40H_330",
"HLC\Adaptive\WVCE11_L_4096A40H_330",
"HLC\Adaptive\WVCE11_L_4096A40H_330",
"HLC\Adaptive\WVCE11_L_4096A40H_330",
"HLC\Adaptive\WVCE11_L_4096A40H_330",
"HLC\Adaptive\WVCE11_L_4096A40H_330",
"HLC\Adaptive\WVCE11_L_4096A40H_330_ACCP",
"HLC\Adaptive\WVCE11_L_4096A40H_330_ACCP",
"HLC\Adaptive\WVCE11_L_4096A40H_330_ACCP",
"HLC\Adaptive\WVCE11_L_4096A40H_330_ACCP",
"HLC\Adaptive\WVCE11_L_4096A40H_330_ACCP",
"HLC\Adaptive\WVCE11_L_4096A40H_330_ACCP",
"HLC\Adaptive\WVCE11_L_4096A40H_330_ACCP",
"HLC\Adaptive\WVCE11_L_4096A40H_330_ACCP",
"HLC\Adaptive\WVCE11_L_4096A40H_330_ACCP",
"HLC\Adaptive\WVCE11_L_4096A40H_330_ACCP",
"HLC\Adaptive\WVCE44_L_1024A10S_73_N",
"HLC\Adaptive\WVCE44_L_1024A10S_73_N",
"HLC\Adaptive\WVCE44_L_1024A10S_73_N",
"HLC\Adaptive\WVCE44_L_1024A10S_73_N",
"HLC\Adaptive\WVCE44_L_1024A10S_73_N",
"HLC\Adaptive\WVCE44_L_1024A10S_73_N",
"HLC\Adaptive\WVCE44_L_1024A10S_73_N",
"HLC\Adaptive\WVCE44_L_1024A10S_73_N",
"HLC\Adaptive\WVCE44_L_1024A30L_230_N",
"HLC\Adaptive\WVCE44_L_1024A30L_230_N",
"HLC\Adaptive\WVCE44_L_1024A30L_230_N",
"HLC\Adaptive\WVCE44_L_1024A30L_230_N",
"HLC\Adaptive\WVCE44_L_1024A30L_230_N",
"HLC\Adaptive\WVCE44_L_1024A30L_230_N",
"HLC\Adaptive\WVCE44_L_1024A30L_230_N",
"HLC\Adaptive\WVCE44_L_1024A30L_230_N",
"HLC\Adaptive\WVCE44_L_1024A30S_230_N",
"HLC\Adaptive\WVCE44_L_1024A30S_230_N",
"HLC\Adaptive\WVCE44_L_1024A30S_230_N",
"HLC\Adaptive\WVCE44_L_1024A30S_230_N",
"HLC\Adaptive\WVCE44_L_1024A30S_230_N",
"HLC\Adaptive\WVCE44_L_1024A30S_230_N",
"HLC\Adaptive\WVCE44_L_1024A30S_230_N",
"HLC\Adaptive\WVCE44_L_1024A30S_230_N",
"HLC\Adaptive\WVCE44_L_1024A40S_298_N",
"HLC\Adaptive\WVCE44_L_1024A40S_298_N",
"HLC\Adaptive\WVCE44_L_1024A40S_298_N",
"HLC\Adaptive\WVCE44_L_1024A40S_298_N",
"HLC\Adaptive\WVCE44_L_1024A40S_298_N",
"HLC\Adaptive\WVCE44_L_1024A40S_298_N",
"HLC\Adaptive\WVCE44_L_1024A40S_298_N",
"HLC\Adaptive\WVCE44_L_1024A40S_298_N",
"HLC\Adaptive\WVCE44_L_1024A5S_35_N",
"HLC\Adaptive\WVCE44_L_1024A5S_35_N",
"HLC\Adaptive\WVCE44_L_1024A5S_35_N",
"HLC\Adaptive\WVCE44_L_1024A5S_35_N",
"HLC\Adaptive\WVCE44_L_1024A5S_35_N",
"HLC\Adaptive\WVCE44_L_1024A5S_35_N",
"HLC\Adaptive\WVCE44_L_1024A5S_35_N",
"HLC\Adaptive\WVCE44_L_1024A5S_35_N",
"HLC\Adaptive\WVCE61_L_1024A10S_73",
"HLC\Adaptive\WVCE61_L_1024A10S_73",
"HLC\Adaptive\WVCE61_L_1024A10S_73",
"HLC\Adaptive\WVCE61_L_1024A10S_73",
"HLC\Adaptive\WVCE61_L_1024A10S_73",
"HLC\Adaptive\WVCE61_L_1024A10S_73",
"HLC\Adaptive\WVCE61_L_1024A10S_73",
"HLC\Adaptive\WVCE61_L_1024A10S_73",
"HLC\Adaptive\WVCE61_L_1024A30L_230",
"HLC\Adaptive\WVCE61_L_1024A30L_230",
"HLC\Adaptive\WVCE61_L_1024A30L_230",
"HLC\Adaptive\WVCE61_L_1024A30L_230",
"HLC\Adaptive\WVCE61_L_1024A30L_230",
"HLC\Adaptive\WVCE61_L_1024A30L_230",
"HLC\Adaptive\WVCE61_L_1024A30L_230",
"HLC\Adaptive\WVCE61_L_1024A30L_230",
"HLC\Adaptive\WVCE61_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE61_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE61_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE61_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE61_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE61_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE61_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE61_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE61_L_1024A30S_230",
"HLC\Adaptive\WVCE61_L_1024A30S_230",
"HLC\Adaptive\WVCE61_L_1024A30S_230",
"HLC\Adaptive\WVCE61_L_1024A30S_230",
"HLC\Adaptive\WVCE61_L_1024A30S_230",
"HLC\Adaptive\WVCE61_L_1024A30S_230",
"HLC\Adaptive\WVCE61_L_1024A30S_230",
"HLC\Adaptive\WVCE61_L_1024A30S_230",
"HLC\Adaptive\WVCE61_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE61_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE61_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE61_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE61_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE61_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE61_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE61_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE61_L_1024A5S_35",
"HLC\Adaptive\WVCE61_L_1024A5S_35",
"HLC\Adaptive\WVCE61_L_1024A5S_35",
"HLC\Adaptive\WVCE61_L_1024A5S_35",
"HLC\Adaptive\WVCE61_L_1024A5S_35",
"HLC\Adaptive\WVCE61_L_1024A5S_35",
"HLC\Adaptive\WVCE61_L_1024A5S_35",
"HLC\Adaptive\WVCE61_L_1024A5S_35",
"HLC\Adaptive\WVCE61_L_1024A60S_441",
"HLC\Adaptive\WVCE61_L_1024A60S_441",
"HLC\Adaptive\WVCE61_L_1024A60S_441",
"HLC\Adaptive\WVCE61_L_1024A60S_441",
"HLC\Adaptive\WVCE61_L_1024A60S_441",
"HLC\Adaptive\WVCE61_L_1024A60S_441",
"HLC\Adaptive\WVCE61_L_1024A60S_441",
"HLC\Adaptive\WVCE61_L_1024A60S_441",
"HLC\Adaptive\WVCE61_L_1024A60S_441_ACCP",
"HLC\Adaptive\WVCE61_L_1024A60S_441_ACCP",
"HLC\Adaptive\WVCE61_L_1024A60S_441_ACCP",
"HLC\Adaptive\WVCE61_L_1024A60S_441_ACCP",
"HLC\Adaptive\WVCE61_L_1024A60S_441_ACCP",
"HLC\Adaptive\WVCE61_L_1024A60S_441_ACCP",
"HLC\Adaptive\WVCE61_L_1024A60S_441_ACCP",
"HLC\Adaptive\WVCE61_L_1024A60S_441_ACCP",
"HLC\Adaptive\WVCE61_L_2048A60S_497",
"HLC\Adaptive\WVCE61_L_2048A60S_497",
"HLC\Adaptive\WVCE61_L_2048A60S_497",
"HLC\Adaptive\WVCE61_L_2048A60S_497",
"HLC\Adaptive\WVCE61_L_2048A60S_497",
"HLC\Adaptive\WVCE61_L_2048A60S_497",
"HLC\Adaptive\WVCE61_L_2048A60S_497",
"HLC\Adaptive\WVCE61_L_2048A60S_497",
"HLC\Adaptive\WVCE61_L_2048A60S_497",
"HLC\Adaptive\WVCE61_L_2048A60S_497_ACCP",
"HLC\Adaptive\WVCE61_L_2048A60S_497_ACCP",
"HLC\Adaptive\WVCE61_L_2048A60S_497_ACCP",
"HLC\Adaptive\WVCE61_L_2048A60S_497_ACCP",
"HLC\Adaptive\WVCE61_L_2048A60S_497_ACCP",
"HLC\Adaptive\WVCE61_L_2048A60S_497_ACCP",
"HLC\Adaptive\WVCE61_L_2048A60S_497_ACCP",
"HLC\Adaptive\WVCE61_L_2048A60S_497_ACCP",
"HLC\Adaptive\WVCE61_L_2048A60S_497_ACCP",
"HLC\Adaptive\WVCE61_L_4096A30H_255",
"HLC\Adaptive\WVCE61_L_4096A30H_255",
"HLC\Adaptive\WVCE61_L_4096A30H_255",
"HLC\Adaptive\WVCE61_L_4096A30H_255",
"HLC\Adaptive\WVCE61_L_4096A30H_255",
"HLC\Adaptive\WVCE61_L_4096A30H_255",
"HLC\Adaptive\WVCE61_L_4096A30H_255",
"HLC\Adaptive\WVCE61_L_4096A30H_255",
"HLC\Adaptive\WVCE61_L_4096A30H_255",
"HLC\Adaptive\WVCE61_L_4096A30H_255",
"HLC\Adaptive\WVCE61_L_4096A30H_255_ACCP",
"HLC\Adaptive\WVCE61_L_4096A30H_255_ACCP",
"HLC\Adaptive\WVCE61_L_4096A30H_255_ACCP",
"HLC\Adaptive\WVCE61_L_4096A30H_255_ACCP",
"HLC\Adaptive\WVCE61_L_4096A30H_255_ACCP",
"HLC\Adaptive\WVCE61_L_4096A30H_255_ACCP",
"HLC\Adaptive\WVCE61_L_4096A30H_255_ACCP",
"HLC\Adaptive\WVCE61_L_4096A30H_255_ACCP",
"HLC\Adaptive\WVCE61_L_4096A30H_255_ACCP",
"HLC\Adaptive\WVCE61_L_4096A30H_255_ACCP",
"HLC\Adaptive\WVCE67_L_1024A10S_73",
"HLC\Adaptive\WVCE67_L_1024A10S_73",
"HLC\Adaptive\WVCE67_L_1024A10S_73",
"HLC\Adaptive\WVCE67_L_1024A10S_73",
"HLC\Adaptive\WVCE67_L_1024A10S_73",
"HLC\Adaptive\WVCE67_L_1024A10S_73",
"HLC\Adaptive\WVCE67_L_1024A10S_73",
"HLC\Adaptive\WVCE67_L_1024A10S_73",
"HLC\Adaptive\WVCE67_L_1024A30L_230",
"HLC\Adaptive\WVCE67_L_1024A30L_230",
"HLC\Adaptive\WVCE67_L_1024A30L_230",
"HLC\Adaptive\WVCE67_L_1024A30L_230",
"HLC\Adaptive\WVCE67_L_1024A30L_230",
"HLC\Adaptive\WVCE67_L_1024A30L_230",
"HLC\Adaptive\WVCE67_L_1024A30L_230",
"HLC\Adaptive\WVCE67_L_1024A30L_230",
"HLC\Adaptive\WVCE67_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE67_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE67_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE67_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE67_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE67_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE67_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE67_L_1024A30L_230_ACCP",
"HLC\Adaptive\WVCE67_L_1024A30S_230",
"HLC\Adaptive\WVCE67_L_1024A30S_230",
"HLC\Adaptive\WVCE67_L_1024A30S_230",
"HLC\Adaptive\WVCE67_L_1024A30S_230",
"HLC\Adaptive\WVCE67_L_1024A30S_230",
"HLC\Adaptive\WVCE67_L_1024A30S_230",
"HLC\Adaptive\WVCE67_L_1024A30S_230",
"HLC\Adaptive\WVCE67_L_1024A30S_230",
"HLC\Adaptive\WVCE67_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE67_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE67_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE67_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE67_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE67_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE67_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE67_L_1024A30S_230_ACCP",
"HLC\Adaptive\WVCE67_L_1024A5S_35",
"HLC\Adaptive\WVCE67_L_1024A5S_35",
"HLC\Adaptive\WVCE67_L_1024A5S_35",
"HLC\Adaptive\WVCE67_L_1024A5S_35",
"HLC\Adaptive\WVCE67_L_1024A5S_35",
"HLC\Adaptive\WVCE67_L_1024A5S_35",
"HLC\Adaptive\WVCE67_L_1024A5S_35",
"HLC\Adaptive\WVCE67_L_1024A5S_35",
"HLC\Adaptive\WVCE67_L_4096A30H_255",
"HLC\Adaptive\WVCE67_L_4096A30H_255",
"HLC\Adaptive\WVCE67_L_4096A30H_255",
"HLC\Adaptive\WVCE67_L_4096A30H_255",
"HLC\Adaptive\WVCE67_L_4096A30H_255",
"HLC\Adaptive\WVCE67_L_4096A30H_255",
"HLC\Adaptive\WVCE67_L_4096A30H_255",
"HLC\Adaptive\WVCE67_L_4096A30H_255",
"HLC\Adaptive\WVCE67_L_4096A30H_255",
"HLC\Adaptive\WVCE67_L_4096A30H_255",
"HLC\Adaptive\WVCE67_L_4096A30H_255_ACCP",
"HLC\Adaptive\WVCE67_L_4096A30H_255_ACCP",
"HLC\Adaptive\WVCE67_L_4096A30H_255_ACCP",
"HLC\Adaptive\WVCE67_L_4096A30H_255_ACCP",
"HLC\Adaptive\WVCE67_L_4096A30H_255_ACCP",
"HLC\Adaptive\WVCE67_L_4096A30H_255_ACCP",
"HLC\Adaptive\WVCE67_L_4096A30H_255_ACCP",
"HLC\Adaptive\WVCE67_L_4096A30H_255_ACCP",
"HLC\Adaptive\WVCE67_L_4096A30H_255_ACCP",
"HLC\Adaptive\WVCE67_L_4096A30H_255_ACCP",
"HLC\Fixed\9558L_L1024F10_73",
"HLC\Fixed\9558L_L1024F30_230",
"HLC\Fixed\9558L_L1024F5_35",
"HLC\Fixed\9558L_L128F10_52",
"HLC\Fixed\9558L_L128F30_163",
"HLC\Fixed\9558L_L128F5_25",
"HLC\Fixed\9558L_L16F10_30",
"HLC\Fixed\9558L_L16F30_91",
"HLC\Fixed\9558L_L16F5_14",
"HLC\Fixed\9558L_L256F10_60",
"HLC\Fixed\9558L_L256F30_185",
"HLC\Fixed\9558L_L256F30_186",
"HLC\Fixed\9558L_L256F5_29",
"HLC\Fixed\9558L_L32F10_37",
"HLC\Fixed\9558L_L32F30_115",
"HLC\Fixed\9558L_L32F5_18",
"HLC\Fixed\9558L_L4F10_14",
"HLC\Fixed\9558L_L4F30_44",
"HLC\Fixed\9558L_L4F5_6",
"HLC\Fixed\9558L_L512F10_67",
"HLC\Fixed\9558L_L512F30_208",
"HLC\Fixed\9558L_L512F5_32",
"HLC\Fixed\9558L_L64F10_45",
"HLC\Fixed\9558L_L64F30_138",
"HLC\Fixed\9558L_L64F5_22",
"HLC\Fixed\WVCE07_L_1024F25S_188",
"HLC\Fixed\WVCE07_L_128F25S_133",
"HLC\Fixed\WVCE07_L_16F25S_75",
"HLC\Fixed\WVCE07_L_256F25S_152",
"HLC\Fixed\WVCE07_L_32F25S_94",
"HLC\Fixed\WVCE07_L_4F25S_36",
"HLC\Fixed\WVCE07_L_512F25S_170",
"HLC\Fixed\WVCE07_L_64F25S_113",
"HLC\Fixed\WVCE08_L_1024F10S_73",
"HLC\Fixed\WVCE08_L_1024F10S_73_7",
"HLC\Fixed\WVCE08_L_1024F30L_230",
"HLC\Fixed\WVCE08_L_1024F30L_230_7",
"HLC\Fixed\WVCE08_L_1024F30L_230_7ACCP",
"HLC\Fixed\WVCE08_L_1024F30L_230_ACCP",
"HLC\Fixed\WVCE08_L_1024F30S_230",
"HLC\Fixed\WVCE08_L_1024F30S_230_7",
"HLC\Fixed\WVCE08_L_1024F30S_230_7ACCP",
"HLC\Fixed\WVCE08_L_1024F30S_230_ACCP",
"HLC\Fixed\WVCE08_L_1024F5S_35",
"HLC\Fixed\WVCE08_L_1024F5S_35_7",
"HLC\Fixed\WVCE08_L_128F10S_52",
"HLC\Fixed\WVCE08_L_128F10S_52_7",
"HLC\Fixed\WVCE08_L_128F30L_163",
"HLC\Fixed\WVCE08_L_128F30L_163_7",
"HLC\Fixed\WVCE08_L_128F30L_163_7ACCP",
"HLC\Fixed\WVCE08_L_128F30L_163_ACCP",
"HLC\Fixed\WVCE08_L_128F30S_163",
"HLC\Fixed\WVCE08_L_128F30S_163_7",
"HLC\Fixed\WVCE08_L_128F30S_163_7ACCP",
"HLC\Fixed\WVCE08_L_128F30S_163_ACCP",
"HLC\Fixed\WVCE08_L_128F5S_25",
"HLC\Fixed\WVCE08_L_128F5S_25_7",
"HLC\Fixed\WVCE08_L_16F10S_30",
"HLC\Fixed\WVCE08_L_16F10S_30_7",
"HLC\Fixed\WVCE08_L_16F30L_91",
"HLC\Fixed\WVCE08_L_16F30L_91_7",
"HLC\Fixed\WVCE08_L_16F30L_91_7ACCP",
"HLC\Fixed\WVCE08_L_16F30L_91_ACCP",
"HLC\Fixed\WVCE08_L_16F30S_91",
"HLC\Fixed\WVCE08_L_16F30S_91_7",
"HLC\Fixed\WVCE08_L_16F30S_91_7ACCP",
"HLC\Fixed\WVCE08_L_16F30S_91_ACCP",
"HLC\Fixed\WVCE08_L_16F5S_14",
"HLC\Fixed\WVCE08_L_16F5S_14_7",
"HLC\Fixed\WVCE08_L_256F10S_60",
"HLC\Fixed\WVCE08_L_256F10S_60_7",
"HLC\Fixed\WVCE08_L_256F30L_186",
"HLC\Fixed\WVCE08_L_256F30L_186_7",
"HLC\Fixed\WVCE08_L_256F30L_186_7ACCP",
"HLC\Fixed\WVCE08_L_256F30L_186_ACCP",
"HLC\Fixed\WVCE08_L_256F30S_185",
"HLC\Fixed\WVCE08_L_256F30S_185_7",
"HLC\Fixed\WVCE08_L_256F30S_185_7ACCP",
"HLC\Fixed\WVCE08_L_256F30S_185_ACCP",
"HLC\Fixed\WVCE08_L_256F5S_29",
"HLC\Fixed\WVCE08_L_256F5S_29_7",
"HLC\Fixed\WVCE08_L_32F10S_37",
"HLC\Fixed\WVCE08_L_32F10S_37_7",
"HLC\Fixed\WVCE08_L_32F30L_115",
"HLC\Fixed\WVCE08_L_32F30L_115_7",
"HLC\Fixed\WVCE08_L_32F30L_115_7ACCP",
"HLC\Fixed\WVCE08_L_32F30L_115_ACCP",
"HLC\Fixed\WVCE08_L_32F30S_115",
"HLC\Fixed\WVCE08_L_32F30S_115_7",
"HLC\Fixed\WVCE08_L_32F30S_115_7ACCP",
"HLC\Fixed\WVCE08_L_32F30S_115_ACCP",
"HLC\Fixed\WVCE08_L_32F5S_18",
"HLC\Fixed\WVCE08_L_32F5S_18_7",
"HLC\Fixed\WVCE08_L_4F10S_14",
"HLC\Fixed\WVCE08_L_4F10S_14_7",
"HLC\Fixed\WVCE08_L_4F30L_44",
"HLC\Fixed\WVCE08_L_4F30L_44_7",
"HLC\Fixed\WVCE08_L_4F30L_44_7ACCP",
"HLC\Fixed\WVCE08_L_4F30L_44_ACCP",
"HLC\Fixed\WVCE08_L_4F30S_44",
"HLC\Fixed\WVCE08_L_4F30S_44_7",
"HLC\Fixed\WVCE08_L_4F30S_44_7ACCP",
"HLC\Fixed\WVCE08_L_4F30S_44_ACCP",
"HLC\Fixed\WVCE08_L_4F5S_6",
"HLC\Fixed\WVCE08_L_4F5S_6_7",
"HLC\Fixed\WVCE08_L_512F10S_67",
"HLC\Fixed\WVCE08_L_512F10S_67_7",
"HLC\Fixed\WVCE08_L_512F30L_208",
"HLC\Fixed\WVCE08_L_512F30L_208_7",
"HLC\Fixed\WVCE08_L_512F30L_208_7ACCP",
"HLC\Fixed\WVCE08_L_512F30L_208_ACCP",
"HLC\Fixed\WVCE08_L_512F30S_208",
"HLC\Fixed\WVCE08_L_512F30S_208_7",
"HLC\Fixed\WVCE08_L_512F30S_208_7ACCP",
"HLC\Fixed\WVCE08_L_512F30S_208_ACCP",
"HLC\Fixed\WVCE08_L_512F5S_32",
"HLC\Fixed\WVCE08_L_512F5S_32_7",
"HLC\Fixed\WVCE08_L_64F10S_45",
"HLC\Fixed\WVCE08_L_64F10S_45_7",
"HLC\Fixed\WVCE08_L_64F30L_138",
"HLC\Fixed\WVCE08_L_64F30L_138_7",
"HLC\Fixed\WVCE08_L_64F30L_138_7ACCP",
"HLC\Fixed\WVCE08_L_64F30L_138_ACCP",
"HLC\Fixed\WVCE08_L_64F30S_138",
"HLC\Fixed\WVCE08_L_64F30S_138_7",
"HLC\Fixed\WVCE08_L_64F30S_138_7ACCP",
"HLC\Fixed\WVCE08_L_64F30S_138_ACCP",
"HLC\Fixed\WVCE08_L_64F5S_22",
"HLC\Fixed\WVCE08_L_64F5S_22_7",
"HLC\Fixed\WVCE10_L_1024F5S_35",
"HLC\Fixed\WVCE10_L_128F5S_25",
"HLC\Fixed\WVCE10_L_16F5S_14",
"HLC\Fixed\WVCE10_L_256F5S_29",
"HLC\Fixed\WVCE10_L_32F5S_18",
"HLC\Fixed\WVCE10_L_4F5S_6",
"HLC\Fixed\WVCE10_L_512F5S_32",
"HLC\Fixed\WVCE10_L_64F5S_22",
"HLC\Fixed\WVCE11_L_1024F10S_73",
"HLC\Fixed\WVCE11_L_1024F30H_209",
"HLC\Fixed\WVCE11_L_1024F30L_230",
"HLC\Fixed\WVCE11_L_1024F30S_230",
"HLC\Fixed\WVCE11_L_1024F40H_272",
"HLC\Fixed\WVCE11_L_1024F40H_272_ACCP",
"HLC\Fixed\WVCE11_L_1024F40S_298",
"HLC\Fixed\WVCE11_L_1024F40S_298_ACCP",
"HLC\Fixed\WVCE11_L_1024F5S_35",
"HLC\Fixed\WVCE11_L_1024F60S_441",
"HLC\Fixed\WVCE11_L_128F10S_52",
"HLC\Fixed\WVCE11_L_128F30H_139",
"HLC\Fixed\WVCE11_L_128F30L_163",
"HLC\Fixed\WVCE11_L_128F30S_163",
"HLC\Fixed\WVCE11_L_128F40H_182",
"HLC\Fixed\WVCE11_L_128F40H_182_ACCP",
"HLC\Fixed\WVCE11_L_128F40S_210",
"HLC\Fixed\WVCE11_L_128F40S_210_ACCP",
"HLC\Fixed\WVCE11_L_128F5S_25",
"HLC\Fixed\WVCE11_L_128F60S_309",
"HLC\Fixed\WVCE11_L_16F10S_30",
"HLC\Fixed\WVCE11_L_16F30H_77",
"HLC\Fixed\WVCE11_L_16F30L_91",
"HLC\Fixed\WVCE11_L_16F30S_91",
"HLC\Fixed\WVCE11_L_16F40H_98",
"HLC\Fixed\WVCE11_L_16F40H_98_ACCP",
"HLC\Fixed\WVCE11_L_16F40S_116",
"HLC\Fixed\WVCE11_L_16F40S_116_ACCP",
"HLC\Fixed\WVCE11_L_16F5S_14",
"HLC\Fixed\WVCE11_L_16F60S_162",
"HLC\Fixed\WVCE11_L_2048F30H_231",
"HLC\Fixed\WVCE11_L_2048F40H_299",
"HLC\Fixed\WVCE11_L_2048F40H_299_ACCP",
"HLC\Fixed\WVCE11_L_2048F60S_497",
"HLC\Fixed\WVCE11_L_256F10S_60",
"HLC\Fixed\WVCE11_L_256F30H_164",
"HLC\Fixed\WVCE11_L_256F30L_186",
"HLC\Fixed\WVCE11_L_256F30S_185",
"HLC\Fixed\WVCE11_L_256F40H_211",
"HLC\Fixed\WVCE11_L_256F40H_211_ACCP",
"HLC\Fixed\WVCE11_L_256F40S_241",
"HLC\Fixed\WVCE11_L_256F40S_241_ACCP",
"HLC\Fixed\WVCE11_L_256F5S_29",
"HLC\Fixed\WVCE11_L_256F60S_354",
"HLC\Fixed\WVCE11_L_32F10S_37",
"HLC\Fixed\WVCE11_L_32F30H_97",
"HLC\Fixed\WVCE11_L_32F30L_115",
"HLC\Fixed\WVCE11_L_32F30S_115",
"HLC\Fixed\WVCE11_L_32F40H_123",
"HLC\Fixed\WVCE11_L_32F40H_123_ACCP",
"HLC\Fixed\WVCE11_L_32F40S_146",
"HLC\Fixed\WVCE11_L_32F40S_146_ACCP",
"HLC\Fixed\WVCE11_L_32F5S_18",
"HLC\Fixed\WVCE11_L_32F60S_201",
"HLC\Fixed\WVCE11_L_4096F30H_255",
"HLC\Fixed\WVCE11_L_4096F40H_330",
"HLC\Fixed\WVCE11_L_4096F40H_330_ACCP",
"HLC\Fixed\WVCE11_L_4096F60H_512",
"HLC\Fixed\WVCE11_L_4F10S_14",
"HLC\Fixed\WVCE11_L_4F30H_34",
"HLC\Fixed\WVCE11_L_4F30L_44",
"HLC\Fixed\WVCE11_L_4F30S_44",
"HLC\Fixed\WVCE11_L_4F40H_43",
"HLC\Fixed\WVCE11_L_4F40H_43_ACCP",
"HLC\Fixed\WVCE11_L_4F40S_56",
"HLC\Fixed\WVCE11_L_4F40S_56_ACCP",
"HLC\Fixed\WVCE11_L_4F5S_6",
"HLC\Fixed\WVCE11_L_4F60S_81",
"HLC\Fixed\WVCE11_L_512F10S_67",
"HLC\Fixed\WVCE11_L_512F30H_187",
"HLC\Fixed\WVCE11_L_512F30L_208",
"HLC\Fixed\WVCE11_L_512F30S_208",
"HLC\Fixed\WVCE11_L_512F40H_242",
"HLC\Fixed\WVCE11_L_512F40H_242_ACCP",
"HLC\Fixed\WVCE11_L_512F40S_271",
"HLC\Fixed\WVCE11_L_512F40S_271_ACCP",
"HLC\Fixed\WVCE11_L_512F5S_32",
"HLC\Fixed\WVCE11_L_512F60S_401",
"HLC\Fixed\WVCE11_L_64F10S_45",
"HLC\Fixed\WVCE11_L_64F30H_116",
"HLC\Fixed\WVCE11_L_64F30L_138",
"HLC\Fixed\WVCE11_L_64F30S_138",
"HLC\Fixed\WVCE11_L_64F40H_163",
"HLC\Fixed\WVCE11_L_64F40H_163_ACCP",
"HLC\Fixed\WVCE11_L_64F40S_181",
"HLC\Fixed\WVCE11_L_64F40S_181_ACCP",
"HLC\Fixed\WVCE11_L_64F5S_22",
"HLC\Fixed\WVCE11_L_64F60S_260",
"HLC\Fixed\WVCE44_L_1024F10S_73_N",
"HLC\Fixed\WVCE44_L_1024F30L_230_N",
"HLC\Fixed\WVCE44_L_1024F30S_230_N",
"HLC\Fixed\WVCE44_L_1024F40S_298_N",
"HLC\Fixed\WVCE44_L_1024F5S_35_N",
"HLC\Fixed\WVCE44_L_128F10S_52_N",
"HLC\Fixed\WVCE44_L_128F30L_163_N",
"HLC\Fixed\WVCE44_L_128F30S_163_N",
"HLC\Fixed\WVCE44_L_128F40S_210_N",
"HLC\Fixed\WVCE44_L_128F5S_25_N",
"HLC\Fixed\WVCE44_L_16F10S_30_N",
"HLC\Fixed\WVCE44_L_16F30L_91_N",
"HLC\Fixed\WVCE44_L_16F30S_91_N",
"HLC\Fixed\WVCE44_L_16F40S_116_N",
"HLC\Fixed\WVCE44_L_16F5S_14_N",
"HLC\Fixed\WVCE44_L_256F10S_60_N",
"HLC\Fixed\WVCE44_L_256F30L_186_N",
"HLC\Fixed\WVCE44_L_256F30S_185_N",
"HLC\Fixed\WVCE44_L_256F40S_241_N",
"HLC\Fixed\WVCE44_L_256F5S_29_N",
"HLC\Fixed\WVCE44_L_32F10S_37_N",
"HLC\Fixed\WVCE44_L_32F30L_115_N",
"HLC\Fixed\WVCE44_L_32F30S_115_N",
"HLC\Fixed\WVCE44_L_32F40S_146_N",
"HLC\Fixed\WVCE44_L_32F5S_18_N",
"HLC\Fixed\WVCE44_L_4F10S_14_N",
"HLC\Fixed\WVCE44_L_4F30L_44_N",
"HLC\Fixed\WVCE44_L_4F30S_44_N",
"HLC\Fixed\WVCE44_L_4F40S_56_N",
"HLC\Fixed\WVCE44_L_4F5S_6_N",
"HLC\Fixed\WVCE44_L_512F10S_67_N",
"HLC\Fixed\WVCE44_L_512F30L_208_N",
"HLC\Fixed\WVCE44_L_512F30S_208_N",
"HLC\Fixed\WVCE44_L_512F40S_271_N",
"HLC\Fixed\WVCE44_L_512F5S_32_N",
"HLC\Fixed\WVCE44_L_64F10S_45_N",
"HLC\Fixed\WVCE44_L_64F30L_138_N",
"HLC\Fixed\WVCE44_L_64F30S_138_N",
"HLC\Fixed\WVCE44_L_64F40S_181_N",
"HLC\Fixed\WVCE44_L_64F5S_22_N",
"HLC\Fixed\WVCE61_L_1024F10S_73",
"HLC\Fixed\WVCE61_L_1024F30H_209",
"HLC\Fixed\WVCE61_L_1024F30H_209_ACCP",
"HLC\Fixed\WVCE61_L_1024F30L_230",
"HLC\Fixed\WVCE61_L_1024F30L_230_ACCP",
"HLC\Fixed\WVCE61_L_1024F30S_230",
"HLC\Fixed\WVCE61_L_1024F30S_230_ACCP",
"HLC\Fixed\WVCE61_L_1024F5S_35",
"HLC\Fixed\WVCE61_L_1024F60S_441",
"HLC\Fixed\WVCE61_L_1024F60S_441_ACCP",
"HLC\Fixed\WVCE61_L_128F10S_52",
"HLC\Fixed\WVCE61_L_128F30H_139",
"HLC\Fixed\WVCE61_L_128F30H_139_ACCP",
"HLC\Fixed\WVCE61_L_128F30L_163",
"HLC\Fixed\WVCE61_L_128F30L_163_ACCP",
"HLC\Fixed\WVCE61_L_128F30S_163",
"HLC\Fixed\WVCE61_L_128F30S_163_ACCP",
"HLC\Fixed\WVCE61_L_128F5S_25",
"HLC\Fixed\WVCE61_L_128F60S_309",
"HLC\Fixed\WVCE61_L_128F60S_309_ACCP",
"HLC\Fixed\WVCE61_L_16F10S_30",
"HLC\Fixed\WVCE61_L_16F30H_77",
"HLC\Fixed\WVCE61_L_16F30H_77_ACCP",
"HLC\Fixed\WVCE61_L_16F30L_91",
"HLC\Fixed\WVCE61_L_16F30L_91_ACCP",
"HLC\Fixed\WVCE61_L_16F30S_91",
"HLC\Fixed\WVCE61_L_16F30S_91_ACCP",
"HLC\Fixed\WVCE61_L_16F5S_14",
"HLC\Fixed\WVCE61_L_16F60S_162",
"HLC\Fixed\WVCE61_L_16F60S_162_ACCP",
"HLC\Fixed\WVCE61_L_2048F30H_231",
"HLC\Fixed\WVCE61_L_2048F30H_231_ACCP",
"HLC\Fixed\WVCE61_L_2048F60S_497",
"HLC\Fixed\WVCE61_L_2048F60S_497_ACCP",
"HLC\Fixed\WVCE61_L_256F10S_60",
"HLC\Fixed\WVCE61_L_256F30H_164",
"HLC\Fixed\WVCE61_L_256F30H_164_ACCP",
"HLC\Fixed\WVCE61_L_256F30L_186",
"HLC\Fixed\WVCE61_L_256F30L_186_ACCP",
"HLC\Fixed\WVCE61_L_256F30S_185",
"HLC\Fixed\WVCE61_L_256F30S_185_ACCP",
"HLC\Fixed\WVCE61_L_256F5S_29",
"HLC\Fixed\WVCE61_L_256F60S_354",
"HLC\Fixed\WVCE61_L_256F60S_354_ACCP",
"HLC\Fixed\WVCE61_L_32F10S_37",
"HLC\Fixed\WVCE61_L_32F30H_97",
"HLC\Fixed\WVCE61_L_32F30H_97_ACCP",
"HLC\Fixed\WVCE61_L_32F30L_115",
"HLC\Fixed\WVCE61_L_32F30L_115_ACCP",
"HLC\Fixed\WVCE61_L_32F30S_115",
"HLC\Fixed\WVCE61_L_32F30S_115_ACCP",
"HLC\Fixed\WVCE61_L_32F5S_18",
"HLC\Fixed\WVCE61_L_32F60S_201",
"HLC\Fixed\WVCE61_L_32F60S_201_ACCP",
"HLC\Fixed\WVCE61_L_4096F30H_255",
"HLC\Fixed\WVCE61_L_4096F30H_255_ACCP",
"HLC\Fixed\WVCE61_L_4096F60H_512",
"HLC\Fixed\WVCE61_L_4096F60H_512_ACCP",
"HLC\Fixed\WVCE61_L_4F10S_14",
"HLC\Fixed\WVCE61_L_4F30H_34",
"HLC\Fixed\WVCE61_L_4F30H_34_ACCP",
"HLC\Fixed\WVCE61_L_4F30L_44",
"HLC\Fixed\WVCE61_L_4F30L_44_ACCP",
"HLC\Fixed\WVCE61_L_4F30S_44",
"HLC\Fixed\WVCE61_L_4F30S_44_ACCP",
"HLC\Fixed\WVCE61_L_4F5S_6",
"HLC\Fixed\WVCE61_L_4F60S_81",
"HLC\Fixed\WVCE61_L_4F60S_81_ACCP",
"HLC\Fixed\WVCE61_L_512F10S_67",
"HLC\Fixed\WVCE61_L_512F30H_187",
"HLC\Fixed\WVCE61_L_512F30H_187_ACCP",
"HLC\Fixed\WVCE61_L_512F30L_208",
"HLC\Fixed\WVCE61_L_512F30L_208_ACCP",
"HLC\Fixed\WVCE61_L_512F30S_208",
"HLC\Fixed\WVCE61_L_512F30S_208_ACCP",
"HLC\Fixed\WVCE61_L_512F5S_32",
"HLC\Fixed\WVCE61_L_512F60S_401",
"HLC\Fixed\WVCE61_L_512F60S_401_ACCP",
"HLC\Fixed\WVCE61_L_64F10S_45",
"HLC\Fixed\WVCE61_L_64F30H_116",
"HLC\Fixed\WVCE61_L_64F30H_116_ACCP",
"HLC\Fixed\WVCE61_L_64F30L_138",
"HLC\Fixed\WVCE61_L_64F30L_138_ACCP",
"HLC\Fixed\WVCE61_L_64F30S_138",
"HLC\Fixed\WVCE61_L_64F30S_138_ACCP",
"HLC\Fixed\WVCE61_L_64F5S_22",
"HLC\Fixed\WVCE61_L_64F60S_260",
"HLC\Fixed\WVCE61_L_64F60S_260_ACCP",
"HLC\Fixed\WVCE67_L_1024F10S_73",
"HLC\Fixed\WVCE67_L_1024F30H_209",
"HLC\Fixed\WVCE67_L_1024F30H_209_ACCP",
"HLC\Fixed\WVCE67_L_1024F30L_230",
"HLC\Fixed\WVCE67_L_1024F30L_230_ACCP",
"HLC\Fixed\WVCE67_L_1024F30S_230",
"HLC\Fixed\WVCE67_L_1024F30S_230_ACCP",
"HLC\Fixed\WVCE67_L_1024F5S_35",
"HLC\Fixed\WVCE67_L_128F10S_52",
"HLC\Fixed\WVCE67_L_128F30H_139",
"HLC\Fixed\WVCE67_L_128F30H_139_ACCP",
"HLC\Fixed\WVCE67_L_128F30L_163",
"HLC\Fixed\WVCE67_L_128F30L_163_ACCP",
"HLC\Fixed\WVCE67_L_128F30S_163",
"HLC\Fixed\WVCE67_L_128F30S_163_ACCP",
"HLC\Fixed\WVCE67_L_128F5S_25",
"HLC\Fixed\WVCE67_L_16F10S_30",
"HLC\Fixed\WVCE67_L_16F30H_77",
"HLC\Fixed\WVCE67_L_16F30H_77_ACCP",
"HLC\Fixed\WVCE67_L_16F30L_91",
"HLC\Fixed\WVCE67_L_16F30L_91_ACCP",
"HLC\Fixed\WVCE67_L_16F30S_91",
"HLC\Fixed\WVCE67_L_16F30S_91_ACCP",
"HLC\Fixed\WVCE67_L_16F5S_14",
"HLC\Fixed\WVCE67_L_2048F30H_231",
"HLC\Fixed\WVCE67_L_2048F30H_231_ACCP",
"HLC\Fixed\WVCE67_L_256F10S_60",
"HLC\Fixed\WVCE67_L_256F30H_164",
"HLC\Fixed\WVCE67_L_256F30H_164_ACCP",
"HLC\Fixed\WVCE67_L_256F30L_186",
"HLC\Fixed\WVCE67_L_256F30L_186_ACCP",
"HLC\Fixed\WVCE67_L_256F30S_185",
"HLC\Fixed\WVCE67_L_256F30S_185_ACCP",
"HLC\Fixed\WVCE67_L_256F5S_29",
"HLC\Fixed\WVCE67_L_32F10S_37",
"HLC\Fixed\WVCE67_L_32F30H_97",
"HLC\Fixed\WVCE67_L_32F30H_97_ACCP",
"HLC\Fixed\WVCE67_L_32F30L_115",
"HLC\Fixed\WVCE67_L_32F30L_115_ACCP",
"HLC\Fixed\WVCE67_L_32F30S_115",
"HLC\Fixed\WVCE67_L_32F30S_115_ACCP",
"HLC\Fixed\WVCE67_L_32F5S_18",
"HLC\Fixed\WVCE67_L_4096F30H_255",
"HLC\Fixed\WVCE67_L_4096F30H_255_ACCP",
"HLC\Fixed\WVCE67_L_4F10S_14",
"HLC\Fixed\WVCE67_L_4F30H_34",
"HLC\Fixed\WVCE67_L_4F30H_34_ACCP",
"HLC\Fixed\WVCE67_L_4F30L_44",
"HLC\Fixed\WVCE67_L_4F30L_44_ACCP",
"HLC\Fixed\WVCE67_L_4F30S_44",
"HLC\Fixed\WVCE67_L_4F30S_44_ACCP",
"HLC\Fixed\WVCE67_L_4F5S_6",
"HLC\Fixed\WVCE67_L_512F10S_67",
"HLC\Fixed\WVCE67_L_512F30H_187",
"HLC\Fixed\WVCE67_L_512F30H_187_ACCP",
"HLC\Fixed\WVCE67_L_512F30L_208",
"HLC\Fixed\WVCE67_L_512F30L_208_ACCP",
"HLC\Fixed\WVCE67_L_512F30S_208",
"HLC\Fixed\WVCE67_L_512F30S_208_ACCP",
"HLC\Fixed\WVCE67_L_512F5S_32",
"HLC\Fixed\WVCE67_L_64F10S_45",
"HLC\Fixed\WVCE67_L_64F30H_116",
"HLC\Fixed\WVCE67_L_64F30H_116_ACCP",
"HLC\Fixed\WVCE67_L_64F30L_138",
"HLC\Fixed\WVCE67_L_64F30L_138_ACCP",
"HLC\Fixed\WVCE67_L_64F30S_138",
"HLC\Fixed\WVCE67_L_64F30S_138_ACCP",
"HLC\Fixed\WVCE67_L_64F5S_22",
"HQAM\Adaptive\HC001QA",
"HQAM\Adaptive\HC001QA",
"HQAM\Adaptive\HC001QA",
"HQAM\Adaptive\HC001QA",
"HQAM\Adaptive\HC001QA",
"HQAM\Adaptive\HC001QA",
"HQAM\Adaptive\HC001QA",
"HQAM\Adaptive\HC001QA",
"HQAM\Adaptive\HC002QA",
"HQAM\Adaptive\HC002QA",
"HQAM\Adaptive\HC002QA",
"HQAM\Adaptive\HC002QA",
"HQAM\Adaptive\HC002QA",
"HQAM\Adaptive\HC002QA",
"HQAM\Adaptive\HC002QA",
"HQAM\Adaptive\HC002QA",
"HQAM\Adaptive\HC002QA",
"HQAM\Adaptive\HC003QA",
"HQAM\Adaptive\HC003QA",
"HQAM\Adaptive\HC003QA",
"HQAM\Adaptive\HC003QA",
"HQAM\Adaptive\HC003QA",
"HQAM\Adaptive\HC003QA",
"HQAM\Adaptive\HC003QA",
"HQAM\Adaptive\HC003QA",
"HQAM\Adaptive\HC003QA",
"HQAM\Adaptive\HC004QA",
"HQAM\Adaptive\HC004QA",
"HQAM\Adaptive\HC004QA",
"HQAM\Adaptive\HC004QA",
"HQAM\Adaptive\HC004QA",
"HQAM\Adaptive\HC004QA",
"HQAM\Adaptive\HC004QA",
"HQAM\Adaptive\HC004QA",
"HQAM\Adaptive\HC005QA",
"HQAM\Adaptive\HC005QA",
"HQAM\Adaptive\HC005QA",
"HQAM\Adaptive\HC005QA",
"HQAM\Adaptive\HC005QA",
"HQAM\Adaptive\HC005QA",
"HQAM\Adaptive\HC005QA",
"HQAM\Adaptive\HC005QA",
"HQAM\Adaptive\HC005QA",
"HQAM\Adaptive\HC006QA",
"HQAM\Adaptive\HC006QA",
"HQAM\Adaptive\HC006QA",
"HQAM\Adaptive\HC006QA",
"HQAM\Adaptive\HC006QA",
"HQAM\Adaptive\HC006QA",
"HQAM\Adaptive\HC006QA",
"HQAM\Adaptive\HC006QA",
"HQAM\Adaptive\HC007QA",
"HQAM\Adaptive\HC007QA",
"HQAM\Adaptive\HC007QA",
"HQAM\Adaptive\HC007QA",
"HQAM\Adaptive\HC007QA",
"HQAM\Adaptive\HC007QA",
"HQAM\Adaptive\HC007QA",
"HQAM\Adaptive\HC007QA",
"HQAM\Adaptive\HC007QA",
"HQAM\Adaptive\HC008QA",
"HQAM\Adaptive\HC008QA",
"HQAM\Adaptive\HC008QA",
"HQAM\Adaptive\HC008QA",
"HQAM\Adaptive\HC008QA",
"HQAM\Adaptive\HC008QA",
"HQAM\Adaptive\HC008QA",
"HQAM\Adaptive\HC008QA",
"HQAM\Adaptive\HC009QA",
"HQAM\Adaptive\HC009QA",
"HQAM\Adaptive\HC009QA",
"HQAM\Adaptive\HC009QA",
"HQAM\Adaptive\HC009QA",
"HQAM\Adaptive\HC009QA",
"HQAM\Adaptive\HC009QA",
"HQAM\Adaptive\HC009QA",
"HQAM\Adaptive\HC009QA",
"HQAM\Adaptive\HC010QA",
"HQAM\Adaptive\HC010QA",
"HQAM\Adaptive\HC010QA",
"HQAM\Adaptive\HC010QA",
"HQAM\Adaptive\HC010QA",
"HQAM\Adaptive\HC010QA",
"HQAM\Adaptive\HC010QA",
"HQAM\Adaptive\HC010QA",
"HQAM\Adaptive\HC011QA",
"HQAM\Adaptive\HC011QA",
"HQAM\Adaptive\HC011QA",
"HQAM\Adaptive\HC011QA",
"HQAM\Adaptive\HC011QA",
"HQAM\Adaptive\HC011QA",
"HQAM\Adaptive\HC011QA",
"HQAM\Adaptive\HC011QA",
"HQAM\Adaptive\HC011QA",
"HQAM\Adaptive\HC012QA",
"HQAM\Adaptive\HC012QA",
"HQAM\Adaptive\HC012QA",
"HQAM\Adaptive\HC012QA",
"HQAM\Adaptive\HC012QA",
"HQAM\Adaptive\HC012QA",
"HQAM\Adaptive\HC012QA",
"HQAM\Adaptive\HC012QA",
"HQAM\Adaptive\HC012QA",
"HQAM\Adaptive\HC013QA",
"HQAM\Adaptive\HC013QA",
"HQAM\Adaptive\HC013QA",
"HQAM\Adaptive\HC013QA",
"HQAM\Adaptive\HC013QA",
"HQAM\Adaptive\HC013QA",
"HQAM\Adaptive\HC013QA",
"HQAM\Adaptive\HC013QA",
"HQAM\Adaptive\HC013QA",
"HQAM\Adaptive\HC014QA",
"HQAM\Adaptive\HC014QA",
"HQAM\Adaptive\HC014QA",
"HQAM\Adaptive\HC014QA",
"HQAM\Adaptive\HC014QA",
"HQAM\Adaptive\HC014QA",
"HQAM\Adaptive\HC014QA",
"HQAM\Adaptive\HC014QA",
"HQAM\Adaptive\HC015QA",
"HQAM\Adaptive\HC015QA",
"HQAM\Adaptive\HC015QA",
"HQAM\Adaptive\HC015QA",
"HQAM\Adaptive\HC015QA",
"HQAM\Adaptive\HC015QA",
"HQAM\Adaptive\HC015QA",
"HQAM\Adaptive\HC015QA",
"HQAM\Adaptive\HC015QA",
"HQAM\Adaptive\HC016QA",
"HQAM\Adaptive\HC016QA",
"HQAM\Adaptive\HC016QA",
"HQAM\Adaptive\HC016QA",
"HQAM\Adaptive\HC016QA",
"HQAM\Adaptive\HC016QA",
"HQAM\Adaptive\HC016QA",
"HQAM\Adaptive\HC016QA",
"HQAM\Adaptive\HC016QA",
"HQAM\Adaptive\HC017QA",
"HQAM\Adaptive\HC017QA",
"HQAM\Adaptive\HC017QA",
"HQAM\Adaptive\HC017QA",
"HQAM\Adaptive\HC017QA",
"HQAM\Adaptive\HC017QA",
"HQAM\Adaptive\HC017QA",
"HQAM\Adaptive\HC017QA",
"HQAM\Adaptive\HC017QA",
"HQAM\Adaptive\HC018QA",
"HQAM\Adaptive\HC018QA",
"HQAM\Adaptive\HC018QA",
"HQAM\Adaptive\HC018QA",
"HQAM\Adaptive\HC018QA",
"HQAM\Adaptive\HC018QA",
"HQAM\Adaptive\HC018QA",
"HQAM\Adaptive\HC018QA",
"HQAM\Adaptive\HC019QA",
"HQAM\Adaptive\HC019QA",
"HQAM\Adaptive\HC019QA",
"HQAM\Adaptive\HC019QA",
"HQAM\Adaptive\HC019QA",
"HQAM\Adaptive\HC019QA",
"HQAM\Adaptive\HC019QA",
"HQAM\Adaptive\HC019QA",
"HQAM\Adaptive\HC019QA",
"HQAM\Adaptive\HC020QA",
"HQAM\Adaptive\HC020QA",
"HQAM\Adaptive\HC020QA",
"HQAM\Adaptive\HC020QA",
"HQAM\Adaptive\HC020QA",
"HQAM\Adaptive\HC020QA",
"HQAM\Adaptive\HC020QA",
"HQAM\Adaptive\HC020QA",
"HQAM\Adaptive\HC020QA",
"HQAM\Adaptive\HC021QA",
"HQAM\Adaptive\HC021QA",
"HQAM\Adaptive\HC021QA",
"HQAM\Adaptive\HC021QA",
"HQAM\Adaptive\HC021QA",
"HQAM\Adaptive\HC021QA",
"HQAM\Adaptive\HC021QA",
"HQAM\Adaptive\HC021QA",
"HQAM\Adaptive\HC021QA",
"HQAM\Adaptive\HC022QA",
"HQAM\Adaptive\HC022QA",
"HQAM\Adaptive\HC022QA",
"HQAM\Adaptive\HC022QA",
"HQAM\Adaptive\HC022QA",
"HQAM\Adaptive\HC022QA",
"HQAM\Adaptive\HC022QA",
"HQAM\Adaptive\HC022QA",
"HQAM\Adaptive\HC023QA",
"HQAM\Adaptive\HC023QA",
"HQAM\Adaptive\HC023QA",
"HQAM\Adaptive\HC023QA",
"HQAM\Adaptive\HC023QA",
"HQAM\Adaptive\HC023QA",
"HQAM\Adaptive\HC023QA",
"HQAM\Adaptive\HC023QA",
"HQAM\Adaptive\HC023QA",
"HQAM\Adaptive\HC024QA",
"HQAM\Adaptive\HC024QA",
"HQAM\Adaptive\HC024QA",
"HQAM\Adaptive\HC024QA",
"HQAM\Adaptive\HC024QA",
"HQAM\Adaptive\HC024QA",
"HQAM\Adaptive\HC024QA",
"HQAM\Adaptive\HC024QA",
"HQAM\Adaptive\HC024QA",
"HQAM\Adaptive\HC025QA",
"HQAM\Adaptive\HC025QA",
"HQAM\Adaptive\HC025QA",
"HQAM\Adaptive\HC025QA",
"HQAM\Adaptive\HC025QA",
"HQAM\Adaptive\HC025QA",
"HQAM\Adaptive\HC025QA",
"HQAM\Adaptive\HC025QA",
"HQAM\Adaptive\HC025QA",
"HQAM\Adaptive\HC026QA",
"HQAM\Adaptive\HC026QA",
"HQAM\Adaptive\HC026QA",
"HQAM\Adaptive\HC026QA",
"HQAM\Adaptive\HC026QA",
"HQAM\Adaptive\HC026QA",
"HQAM\Adaptive\HC026QA",
"HQAM\Adaptive\HC026QA",
"HQAM\Adaptive\HC027QA",
"HQAM\Adaptive\HC027QA",
"HQAM\Adaptive\HC027QA",
"HQAM\Adaptive\HC027QA",
"HQAM\Adaptive\HC027QA",
"HQAM\Adaptive\HC027QA",
"HQAM\Adaptive\HC027QA",
"HQAM\Adaptive\HC027QA",
"HQAM\Adaptive\HC028QA",
"HQAM\Adaptive\HC028QA",
"HQAM\Adaptive\HC028QA",
"HQAM\Adaptive\HC028QA",
"HQAM\Adaptive\HC028QA",
"HQAM\Adaptive\HC028QA",
"HQAM\Adaptive\HC028QA",
"HQAM\Adaptive\HC028QA",
"HQAM\Adaptive\HC029QA",
"HQAM\Adaptive\HC029QA",
"HQAM\Adaptive\HC029QA",
"HQAM\Adaptive\HC029QA",
"HQAM\Adaptive\HC029QA",
"HQAM\Adaptive\HC029QA",
"HQAM\Adaptive\HC029QA",
"HQAM\Adaptive\HC029QA",
"HQAM\Adaptive\HC030QA",
"HQAM\Adaptive\HC030QA",
"HQAM\Adaptive\HC030QA",
"HQAM\Adaptive\HC030QA",
"HQAM\Adaptive\HC030QA",
"HQAM\Adaptive\HC030QA",
"HQAM\Adaptive\HC030QA",
"HQAM\Adaptive\HC030QA",
"HQAM\Adaptive\HC031QA",
"HQAM\Adaptive\HC031QA",
"HQAM\Adaptive\HC031QA",
"HQAM\Adaptive\HC031QA",
"HQAM\Adaptive\HC031QA",
"HQAM\Adaptive\HC031QA",
"HQAM\Adaptive\HC031QA",
"HQAM\Adaptive\HC031QA",
"HQAM\Adaptive\HC031QA",
"HQAM\Adaptive\HC032QA",
"HQAM\Adaptive\HC032QA",
"HQAM\Adaptive\HC032QA",
"HQAM\Adaptive\HC032QA",
"HQAM\Adaptive\HC032QA",
"HQAM\Adaptive\HC032QA",
"HQAM\Adaptive\HC032QA",
"HQAM\Adaptive\HC032QA",
"HQAM\Adaptive\HC033QA",
"HQAM\Adaptive\HC033QA",
"HQAM\Adaptive\HC033QA",
"HQAM\Adaptive\HC033QA",
"HQAM\Adaptive\HC033QA",
"HQAM\Adaptive\HC033QA",
"HQAM\Adaptive\HC033QA",
"HQAM\Adaptive\HC033QA",
"HQAM\Adaptive\HC033QA",
"HQAM\Adaptive\HC034QA",
"HQAM\Adaptive\HC034QA",
"HQAM\Adaptive\HC034QA",
"HQAM\Adaptive\HC034QA",
"HQAM\Adaptive\HC034QA",
"HQAM\Adaptive\HC034QA",
"HQAM\Adaptive\HC034QA",
"HQAM\Adaptive\HC034QA",
"HQAM\Adaptive\HC035QA",
"HQAM\Adaptive\HC035QA",
"HQAM\Adaptive\HC035QA",
"HQAM\Adaptive\HC035QA",
"HQAM\Adaptive\HC035QA",
"HQAM\Adaptive\HC035QA",
"HQAM\Adaptive\HC035QA",
"HQAM\Adaptive\HC035QA",
"HQAM\Adaptive\HC035QA",
"HQAM\Adaptive\HC036QA",
"HQAM\Adaptive\HC036QA",
"HQAM\Adaptive\HC036QA",
"HQAM\Adaptive\HC036QA",
"HQAM\Adaptive\HC036QA",
"HQAM\Adaptive\HC036QA",
"HQAM\Adaptive\HC036QA",
"HQAM\Adaptive\HC036QA",
"HQAM\Adaptive\HC036QA",
"HQAM\Adaptive\HC037QA",
"HQAM\Adaptive\HC037QA",
"HQAM\Adaptive\HC037QA",
"HQAM\Adaptive\HC037QA",
"HQAM\Adaptive\HC037QA",
"HQAM\Adaptive\HC037QA",
"HQAM\Adaptive\HC037QA",
"HQAM\Adaptive\HC037QA",
"HQAM\Adaptive\HC037QA",
"HQAM\Fixed\HC001QF",
"HQAM\Fixed\HC002QF",
"HQAM\Fixed\HC003QF",
"HQAM\Fixed\HC004QF",
"HQAM\Fixed\HC005QF",
"HQAM\Fixed\HC006QF",
"HQAM\Fixed\HC007QF",
"HQAM\Fixed\HC008QF",
"HQAM\Fixed\HC009QF",
"HQAM\Fixed\HC010QF",
"HQAM\Fixed\HC011QF",
"HQAM\Fixed\HC012QF",
"HQAM\Fixed\HC013QF",
"HQAM\Fixed\HC014QF",
"HQAM\Fixed\HC015QF",
"HQAM\Fixed\HC016QF",
"HQAM\Fixed\HC017QF",
"HQAM\Fixed\HC018QF",
"HQAM\Fixed\HC019QF",
"HQAM\Fixed\HC020QF",
"HQAM\Fixed\HC021QF",
"HQAM\Fixed\HC022QF",
"HQAM\Fixed\HC023QF",
"HQAM\Fixed\HC024QF",
"HQAM\Fixed\HC025QF",
"HQAM\Fixed\HC026QF",
"HQAM\Fixed\HC027QF",
"HQAM\Fixed\HC028QF",
"HQAM\Fixed\HC029QF",
"HQAM\Fixed\HC030QF",
"HQAM\Fixed\HC031QF",
"HQAM\Fixed\HC032QF",
"HQAM\Fixed\HC033QF",
"HQAM\Fixed\HC034QF",
"HQAM\Fixed\HC035QF",
"HQAM\Fixed\HC036QF",
"HQAM\Fixed\HC037QF",
"HQAM\Fixed\HC038QF",
"HQAM\Fixed\HC039QF",
"HQAM\Fixed\HC040QF",
"HQAM\Fixed\HC041QF",
"HQAM\Fixed\HC042QF",
"HQAM\Fixed\HC043QF",
"HQAM\Fixed\HC044QF",
"HQAM\Fixed\HC045QF",
"HQAM\Fixed\HC046QF",
"HQAM\Fixed\HC047QF",
"HQAM\Fixed\HC048QF",
"HQAM\Fixed\HC049QF",
"HQAM\Fixed\HC050QF",
"HQAM\Fixed\HC051QF",
"HQAM\Fixed\HC052QF",
"HQAM\Fixed\HC053QF",
"HQAM\Fixed\HC054QF",
"HQAM\Fixed\HC055QF",
"HQAM\Fixed\HC056QF",
"HQAM\Fixed\HC057QF",
"HQAM\Fixed\HC058QF",
"HQAM\Fixed\HC059QF",
"HQAM\Fixed\HC060QF",
"HQAM\Fixed\HC061QF",
"HQAM\Fixed\HC062QF",
"HQAM\Fixed\HC063QF",
"HQAM\Fixed\HC064QF",
"HQAM\Fixed\HC065QF",
"HQAM\Fixed\HC066QF",
"HQAM\Fixed\HC067QF",
"HQAM\Fixed\HC068QF",
"HQAM\Fixed\HC069QF",
"HQAM\Fixed\HC070QF",
"HQAM\Fixed\HC071QF",
"HQAM\Fixed\HC072QF",
"HQAM\Fixed\HC073QF",
"HQAM\Fixed\HC074QF",
"HQAM\Fixed\HC075QF",
"HQAM\Fixed\HC076QF",
"HQAM\Fixed\HC077QF",
"HQAM\Fixed\HC078QF",
"HQAM\Fixed\HC079QF",
"HQAM\Fixed\HC080QF",
"HQAM\Fixed\HC081QF",
"HQAM\Fixed\HC082QF",
"HQAM\Fixed\HC083QF",
"HQAM\Fixed\HC084QF",
"HQAM\Fixed\HC085QF",
"HQAM\Fixed\HC086QF",
"HQAM\Fixed\HC087QF",
"HQAM\Fixed\HC088QF",
"HQAM\Fixed\HC089QF",
"HQAM\Fixed\HC090QF",
"HQAM\Fixed\HC091QF",
"HQAM\Fixed\HC092QF",
"HQAM\Fixed\HC093QF",
"HQAM\Fixed\HC094QF",
"HQAM\Fixed\HC095QF",
"HQAM\Fixed\HC096QF",
"HQAM\Fixed\HC097QF",
"HQAM\Fixed\HC098QF",
"HQAM\Fixed\HC099QF",
"HQAM\Fixed\HC100QF",
"HQAM\Fixed\HC101QF",
"HQAM\Fixed\HC102QF",
"HQAM\Fixed\HC103QF",
"HQAM\Fixed\HC104QF",
"HQAM\Fixed\HC105QF",
"HQAM\Fixed\HC106QF",
"HQAM\Fixed\HC107QF",
"HQAM\Fixed\HC108QF",
"HQAM\Fixed\HC109QF",
"HQAM\Fixed\HC110QF",
"HQAM\Fixed\HC111QF",
"HQAM\Fixed\HC112QF",
"HQAM\Fixed\HC113QF",
"HQAM\Fixed\HC114QF",
"HQAM\Fixed\HC115QF",
"HQAM\Fixed\HC116QF",
"HQAM\Fixed\HC117QF",
"HQAM\Fixed\HC118QF",
"HQAM\Fixed\HC119QF",
"HQAM\Fixed\HC120QF",
"HQAM\Fixed\HC121QF",
"HQAM\Fixed\HC122QF",
"HQAM\Fixed\HC123QF",
"HQAM\Fixed\HC124QF",
"HQAM\Fixed\HC125QF",
"HQAM\Fixed\HC126QF",
"HQAM\Fixed\HC127QF",
"HQAM\Fixed\HC128QF",
"HQAM\Fixed\HC129QF",
"HQAM\Fixed\HC130QF",
"HQAM\Fixed\HC131QF",
"HQAM\Fixed\HC132QF",
"HQAM\Fixed\HC133QF",
"HQAM\Fixed\HC134QF",
"HQAM\Fixed\HC135QF",
"HQAM\Fixed\HC136QF",
"HQAM\Fixed\HC137QF",
"HQAM\Fixed\HC138QF",
"HQAM\Fixed\HC139QF",
"HQAM\Fixed\HC140QF",
"HQAM\Fixed\HC141QF",
"HQAM\Fixed\HC142QF",
"HQAM\Fixed\HC143QF",
"HQAM\Fixed\HC144QF",
"HQAM\Fixed\HC145QF",
"HQAM\Fixed\HC146QF",
"HQAM\Fixed\HC147QF",
"HQAM\Fixed\HC148QF",
"HQAM\Fixed\HC149QF",
"HQAM\Fixed\HC150QF",
"HQAM\Fixed\HC151QF",
"HQAM\Fixed\HC152QF",
"HQAM\Fixed\HC153QF",
"HQAM\Fixed\HC154QF",
"HQAM\Fixed\HC155QF",
"HQAM\Fixed\HC156QF",
"HQAM\Fixed\HC157QF",
"HQAM\Fixed\HC158QF",
"HQAM\Fixed\HC159QF",
"HQAM\Fixed\HC160QF",
"HQAM\Fixed\HC161QF",
"HQAM\Fixed\HC162QF",
"HQAM\Fixed\HC163QF",
"HQAM\Fixed\HC164QF",
"HQAM\Fixed\HC165QF",
"HQAM\Fixed\HC166QF",
"HQAM\Fixed\HC167QF",
"HQAM\Fixed\HC168QF",
"HQAM\Fixed\HC169QF",
"HQAM\Fixed\HC170QF",
"HQAM\Fixed\HC171QF",
"HQAM\Fixed\HC172QF",
"HQAM\Fixed\HC173QF",
"HQAM\Fixed\HC174QF",
"HQAM\Fixed\HC175QF",
"9400 AWY\Fixed\R9A001FT",
"9400 AWY\Fixed\R9A002FT",
"9400 AWY\Fixed\R9A003FT",
"9400 AWY\Fixed\R9A004FT",
"9400 AWY\Fixed\R9A005FT",
"9400 AWY\Fixed\R9A006FT",
"9400 AWY\Fixed\R9A007FT",
"9400 AWY\Fixed\R9A008FT",
"9400 AWY\Fixed\R9A009FT",
"9400 AWY\Fixed\R9A010FT",
"9400 AWY\Fixed\R9A011FT",
"9400 AWY\Fixed\R9A012FT",
"9400 AWY\Fixed\R9A013FT",
"9400 AWY\Fixed\R9A014FT",
"9400 AWY\Fixed\R9A015FT",
"9400 AWY\Fixed\R9A016FT",
"9400 AWY\Fixed\R9A017FT",
"9400 AWY\Fixed\R9A018FT",
"9400 AWY\Fixed\R9A019FT",
"9400 AWY\Fixed\R9A020FT",
"9400 AWY\Fixed\R9A021FT",
"9400 AWY\Fixed\R9A022FT",
"9400 AWY\Fixed\R9A023FT",
"9400 AWY\Fixed\R9A024FT",
"9400 AWY\Fixed\R9A025FT",
"9400 AWY\Fixed\R9A026FT",
"9400 AWY\Fixed\R9A027FT",
"9400 AWY\Fixed\R9A028FT",
"9500 MXC\Fixed\R9M001FT",
"9500 MXC\Fixed\R9M002FT",
"9500 MXC\Fixed\R9M003FT",
"9500 MXC\Fixed\R9M004FT",
"9500 MXC\Fixed\R9M005FT",
"9500 MXC\Fixed\R9M006FT",
"9500 MXC\Fixed\R9M007FT",
"9500 MXC\Fixed\R9M008FT",
"9500 MXC\Fixed\R9M009FT",
"9500 MXC\Fixed\R9M010FT",
"9500 MXC\Fixed\R9M011FT",
"9500 MXC\Fixed\R9M012FT",
"9500 MXC\Fixed\R9M013FT",
"9500 MXC\Fixed\R9M014FT",
"9500 MXC\Fixed\R9M015FT",
"9500 MXC\Fixed\R9M016FT",
"9500 MXC\Fixed\R9M017FT",
"9500 MXC\Fixed\R9M018FT",
"9500 MXC\Fixed\R9M019FT",
"9500 MXC\Fixed\R9M020FT",
"9500 MXC\Fixed\R9M021FT",
"9500 MXC\Fixed\R9M022FT",
"9500 MXC\Fixed\R9M023FT",
"9500 MXC\Fixed\R9M024FT",
"9500 MXC\Fixed\R9M025FT",
"9500 MXC\Fixed\R9M026FT",
"9500 MXC\Fixed\R9M027FT",
"9500 MXC\Fixed\R9M028FT",
"9500 MXC\Fixed\R9M029FT",
"9500 MXC\Fixed\R9M030FT",
"9500 MXC\Fixed\R9M031FT",
"9500 MXC\Fixed\R9M032FT",
"9500 MXC\Fixed\R9M033FT",
"9500 MXC\Fixed\R9M034FT",
"9500 MXC\Fixed\R9M035FT",
"9500 MXC\Fixed\R9M036FT",
"9500 MXC\Fixed\R9M037FT",
"9500 MXC\Fixed\R9M038FT",
"9500 MXC\Fixed\R9M039FT",
"9500 MXC\Fixed\R9M040FT",
"9500 MXC\Fixed\R9M041FT",
"9500 MXC\Fixed\R9M042FT",
"9500 MXC\Fixed\R9M043FT",
"9500 MXC\Fixed\R9M044FT",
"9500 MXC\Fixed\R9M045FT",
"9500 MXC\Fixed\R9M046FT",
"9500 MXC\Fixed\R9M047FT",
"9500 MXC\Fixed\R9M048FT",
"9500 MXC\Fixed\R9M049FT",
"9500 MXC\Fixed\R9M050FT",
"9500 MXC\Fixed\R9M051FT",
"9500 MXC\Fixed\R9M052FT",
"9500 MXC\Fixed\R9M053FT",
"9500 MXC\Fixed\R9M054FT",
"9500 MXC\Fixed\R9M055FT",
"9500 MXC\Fixed\R9M056FT",
"9500 MXC\Fixed\R9M057FT",
"9500 MXC\Fixed\R9M058FT",
"9500 MXC\Fixed\R9M059FT",
"9500 MXC\Fixed\R9M060FT",
"9500 MXC\Fixed\R9M061FT",
"9500 MXC\Fixed\R9M062FT",
"9500 MXC\Fixed\R9M063FT",
"9500 MXC\Fixed\R9M064FT",
"9500 MXC\Fixed\R9M065FT",
"9500 MXC\Fixed\R9M066FT",
"9500 MXC\Fixed\R9M067FT",
"9500 MXC\Fixed\R9M068FT",
"9500 MXC\Fixed\R9M069FT",
"9500 MXC\Fixed\R9M070FT",
"9500 MXC\Fixed\R9M071FT",
"9500 MXC\Fixed\R9M072FT",
"9500 MXC\Fixed\R9M073FT",
"9500 MXC\Fixed\R9M074FT",
"9500 MXC\Fixed\R9M075FT",
"9500 MXC\Fixed\R9M076FT",
"9500 MXC\Fixed\R9M077FT",
"9500 MXC\Fixed\R9M078FT",
"9500 MXC\Fixed\R9M079FT",
"9500 MXC\Fixed\R9M080FT",
"9500 MXC\Fixed\R9M081FT",
"9500 MXC\Fixed\R9M082FT",
"9500 MXC\Fixed\R9M083FT",
"9500 MXC\Fixed\R9M084FT",
"9500 MXC\Fixed\R9M085FT",
"9500 MXC\Fixed\R9M086FT",
"9500 MXC\Fixed\R9M087FT",
"9500 MXC\Fixed\R9M088FT",
"9500 MXC\Fixed\R9M089FT",
"9500 MXC\Fixed\R9M090FT",
"9500 MXC\Fixed\R9M091FT",
"9500 MXC\Fixed\R9M092FT",
"9500 MXC\Fixed\R9M093FT",
"9500 MXC\Fixed\R9M094FT",
"9500 MXC\Fixed\R9M095FT",
"9500 MXC\Fixed\R9M096FT",
"9500 MXC\Fixed\R9M097FT",
"9500 MXC\Fixed\R9M098FT",
"9500 MXC\Fixed\R9M099FT",
"9500 MXC\Fixed\R9M100FT",
"9500 MXC\Fixed\R9M101FT",
"9500 MXC\Fixed\R9M102FT",
"9500 MXC\Fixed\R9M103FT",
"9500 MXC\Fixed\R9M104FT",
"9500 MXC\Fixed\R9M105FT",
"9500 MXC\Fixed\R9M106FT",
"9500 MXC\Fixed\R9M107FT",
"9500 MXC\Fixed\R9M108FT",
"9500 MXC\Fixed\R9M109FT",
"9500 MXC\Fixed\R9M110FT",
"9500 MXC\Fixed\R9M111FT",
"9500 MXC\Fixed\R9M112FT",
"9500 MXC\Fixed\R9M113FT",
"9500 MXC\Fixed\R9M114FT",
"9500 MXC\Fixed\R9M115FT",
"9500 MXC\Fixed\R9M116FT",
"9500 MXC\Fixed\R9M117FT",
"9500 MXC\Fixed\R9M118FT",
"9500 MXC\Fixed\R9M119FT",
"9500 MXC\Fixed\R9M120FT",
"9500 MXC\Fixed\R9M121FT",
"9500 MXC\Fixed\R9M122FT",
"9500 MXC\Fixed\R9M123FT",
"9500 MXC\Fixed\R9M124FT",
"9500 MXC\Fixed\R9M125FT",
"9500 MXC\Fixed\R9M126FT",
"9500 MXC\Fixed\R9M127FT",
"9500 MXC\Fixed\R9M128FT",
"9500 MXC\Fixed\R9M129FT",
"9500 MXC\Fixed\R9M130FT",
"9500 MXC\Fixed\R9M131FT",
"9500 MXC\Fixed\R9M132FT",
"9500 MXC\Fixed\R9M133FT",
"9500 MXC\Fixed\R9M134FT",
"9500 MXC\Fixed\R9M135FT",
"9500 MXC\Fixed\R9M136FT",
"9500 MXC\Fixed\R9M137FT",
"9500 MXC\Fixed\R9M138FT",
"9500 MXC\Fixed\R9M139FT",
"9500 MXC\Fixed\R9M140FT",
"9500 MXC\Fixed\R9M141FT",
"9500 MXC\Fixed\R9M142FT",
"9500 MXC\Fixed\R9M143FT",
"9500 MXC\Fixed\R9M144FT",
"9500 MXC\Fixed\R9M145FT",
"9500 MXC\Fixed\R9M146FT",
"9500 MXC\Fixed\R9M147FT",
"9500 MXC\Fixed\R9M148FT",
"9500 MXC\Fixed\R9M149FT",
"9500 MXC\Fixed\R9M150FT",
"9500 MXC\Fixed\R9M151FT",
"9500 MXC\Fixed\R9M152FT",
"9500 MXC\Fixed\R9M153FT",
"9500 MXC\Fixed\R9M154FT",
"9500 MXC\Fixed\R9M155FT",
"9500 MXC\Fixed\R9M156FT",
"9500 MXC\Fixed\R9M157FT",
"9500 MXC\Fixed\R9M158FT",
"9600 USY\Fixed\R9U001FT",
"9600 USY\Fixed\R9U002FT",
"9600 USY\Fixed\R9U003FT",
"9600 USY\Fixed\R9U004FT",
"9600 USY\Fixed\R9U005FT",
"9600 USY\Fixed\R9U006FT",
"9600 USY\Fixed\R9U007FT",
"9600 USY\Fixed\R9U008FT",
"9600 USY\Fixed\R9U009FT",
"9600 USY\Fixed\R9U010FT",
"9600 USY\Fixed\R9U011FT",
"9600 USY\Fixed\R9U012FT",
"9600 USY\Fixed\R9U013FT",
"9600 USY\Fixed\R9U014FT",
"9600 USY\Fixed\R9U015FT",
"9600 USY\Fixed\R9U016FT",
"9600 USY\Fixed\R9U017FT",
"9600 USY\Fixed\R9U018FT",
"DVR-4000\Fixed\RD4001FT",
"DVR-4000\Fixed\RD4002FT",
"DVR-4000\Fixed\RD4003FT",
"DVR-4000\Fixed\RD4004FT",
"DVR-4000\Fixed\RD4005FT",
"DVR-4000\Fixed\RD4006FT",
"DVR-4000\Fixed\RD4007FT",
"DVR-4000\Fixed\RD4008FT",
"DVR-4000\Fixed\RD4009FT",
"DVR-4000\Fixed\RD4010FT",
"DVR-4000\Fixed\RD4011FT",
"DVR-4000\Fixed\RD4012FT",
"DVR-4000\Fixed\RD4013FT",
"DVR-4000\Fixed\RD4014FT",
"DVR-4000\Fixed\RD4015FT",
"DVR-4000\Fixed\RD4016FT",
"DVR-4000\Fixed\RD4017FT",
"DVR-4000\Fixed\RD4018FT",
"DVR-4000\Fixed\RD4019FT",
"DVR-4000\Fixed\RD4020FT",
"DVR-4000\Fixed\RD4021FT",
"DVR-4000\Fixed\RD4022FT",
"MDR 6 8 11\Fixed\M9001FT",
"MDR 6 8 11\Fixed\M9002FT",
"MDR 6 8 11\Fixed\M9003FT",
"MDR 6 8 11\Fixed\M9004FT",
"MDR 6 8 11\Fixed\M9005FT",
"MDR 6 8 11\Fixed\M9006FT",
"MDR-1000\Fixed\M11001FT",
"MDR-1000\Fixed\M11002FT",
"MDR-1000\Fixed\M11003FT",
"MDR-1000\Fixed\M11004FT",
"MDR-1000\Fixed\M11005FT",
"MDR-1000\Fixed\M11006FT",
"MDR-1000\Fixed\M11007FT",
"MDR-1000\Fixed\M11008FT",
"MDR-1000\Fixed\M11009FT",
"MDR-1000\Fixed\M11010FT",
"MDR-1000\Fixed\M11011FT",
"MDR-1000\Fixed\M11012FT",
"MDR-1000\Fixed\M11013FT",
"MDR-1000\Fixed\M11014FT",
"MDR-1000\Fixed\M11015FT",
"MDR-1000\Fixed\M11016FT",
"MDR-1000\Fixed\M11017FT",
"MDR-1000\Fixed\M11018FT",
"MDR-1000\Fixed\M11019FT",
"MDR-2000\Fixed\M8001FT",
"MDR-2000\Fixed\M8002FT",
"MDR-2000\Fixed\M8003FT",
"MDR-3X18\Fixed\RM3001FT",
"MDR-3X18\Fixed\RM3002FT",
"MDR-3X18\Fixed\RM3003FT",
"MDR-3X18\Fixed\RM3004FT",
"MDR-3X18\Fixed\RM3005FT",
"MDR-3X18\Fixed\RM3006FT",
"MDR-3X18\Fixed\RM3007FT",
"MDR-3X18\Fixed\RM3008FT",
"MDR-3X18\Fixed\RM3009FT",
"MDR-3X18\Fixed\RM3010FT",
"MDR-3X18\Fixed\RM3011FT",
"MDR-3X18\Fixed\RM3012FT",
"MDR-4000\Fixed\M4001FT",
"MDR-4000\Fixed\M4002FT",
"MDR-4000\Fixed\M4003FT",
"MDR-4000\Fixed\M4004FT",
"MDR-4000\Fixed\M4005FT",
"MDR-4000\Fixed\M4006FT",
"MDR-4000\Fixed\M4007FT",
"MDR-4000\Fixed\M4008FT",
"MDR-4000\Fixed\M4009FT",
"MDR-4000\Fixed\M4010FT",
"MDR-4000\Fixed\M4011FT",
"MDR-4000\Fixed\M4012FT",
"MDR-4000\Fixed\M4013FT",
"MDR-4000\Fixed\M4014FT",
"MDR-4000\Fixed\M4015FT",
"MDR-4000\Fixed\M4016FT",
"MDR-4000\Fixed\M4017FT",
"MDR-4000\Fixed\M4018FT",
"MDR-4000\Fixed\M4019FT",
"MDR-4000\Fixed\M4020FT",
"MDR-4000\Fixed\M4021FT",
"MDR-4000\Fixed\M4022FT",
"MDR-4000\Fixed\M4023FT",
"MDR-4000\Fixed\M4024FT",
"MDR-4000\Fixed\M4025FT",
"MDR-4000\Fixed\M4026FT",
"MDR-4000\Fixed\M4027FT",
"MDR-4000\Fixed\M4028FT",
"MDR-4000\Fixed\M4029FT",
"MDR-4000\Fixed\M4030FT",
"MDR-4000\Fixed\M4031FT",
"MDR-4000\Fixed\M4032FT",
"MDR-4000\Fixed\M4033FT",
"MDR-4000\Fixed\M4034FT",
"MDR-4000\Fixed\M4035FT",
"MDR-4000\Fixed\M4036FT",
"MDR-4000\Fixed\M4037FT",
"MDR-4000\Fixed\M4038FT",
"MDR-4000\Fixed\M4039FT",
"MDR-4000\Fixed\M4040FT",
"MDR-4000\Fixed\M4041FT",
"MDR-4000\Fixed\M4042FT",
"MDR-4000\Fixed\M4043FT",
"MDR-4000e\Fixed\M4E001FT",
"MDR-4000e\Fixed\M4E002FT",
"MDR-4000e\Fixed\M4E003FT",
"MDR-4000e\Fixed\M4E004FT",
"MDR-4000e\Fixed\M4E005FT",
"MDR-4000e\Fixed\M4E006FT",
"MDR-4000e\Fixed\M4E007FT",
"MDR-4000e\Fixed\M4E008FT",
"MDR-4000e\Fixed\M4E009FT",
"MDR-4000e\Fixed\M4E010FT",
"MDR-4000e\Fixed\M4E011FT",
"MDR-4000e\Fixed\M4E012FT",
"MDR-4000e\Fixed\M4E013FT",
"MDR-4000e\Fixed\M4E014FT",
"MDR-4000e\Fixed\M4E015FT",
"MDR-4000e\Fixed\M4E016FT",
"MDR-4000e\Fixed\M4E017FT",
"MDR-4000e\Fixed\M4E018FT",
"MDR-4000e\Fixed\M4E019FT",
"MDR-4000e\Fixed\M4E020FT",
"MDR-4000e\Fixed\M4E021FT",
"MDR-4000e\Fixed\M4E022FT",
"MDR-4000e\Fixed\M4E023FT",
"MDR-4000e\Fixed\M4E024FT",
"MDR-4000e\Fixed\M4E025FT",
"MDR-4000e\Fixed\M4E026FT",
"MDR-4000e\Fixed\M4E027FT",
"MDR-4000e\Fixed\M4E028FT",
"MDR-4000e\Fixed\M4E029FT",
"MDR-4000e\Fixed\M4E030FT",
"MDR-4000e\Fixed\M4E031FT",
"MDR-4000e\Fixed\M4E032FT",
"MDR-4000e\Fixed\M4E033FT",
"MDR-4000e\Fixed\M4E034FT",
"MDR-4000e\Fixed\M4E035FT",
"MDR-4000e\Fixed\M4E036FT",
"MDR-4000e\Fixed\M4E037FT",
"MDR-4000e\Fixed\M4E038FT",
"MDR-4000e\Fixed\M4E039FT",
"MDR-4000e\Fixed\M4E040FT",
"MDR-4000e\Fixed\M4E041FT",
"MDR-4000e\Fixed\M4E042FT",
"MDR-4000e\Fixed\M4E043FT",
"MDR-4000e\Fixed\M4E044FT",
"MDR-4000e\Fixed\M4E045FT",
"MDR-4000e\Fixed\M4E046FT",
"MDR-4000e\Fixed\M4E047FT",
"MDR-4000e\Fixed\M4E048FT",
"MDR-4000e\Fixed\M4E049FT",
"MDR-4000s\Fixed\M4S001FT",
"MDR-4000s\Fixed\M4S002FT",
"MDR-4000s\Fixed\M4S003FT",
"MDR-4000s\Fixed\M4S004FT",
"MDR-4000s\Fixed\M4S005FT",
"MDR-4000s\Fixed\M4S006FT",
"MDR-4000s\Fixed\M4S007FT",
"MDR-4000s\Fixed\M4S008FT",
"MDR-4000s\Fixed\M4S009FT",
"MDR-4000s\Fixed\M4S010FT",
"MDR-4000s\Fixed\M4S011FT",
"MDR-4000s\Fixed\M4S012FT",
"MDR-4000s\Fixed\M4S013FT",
"MDR-4000s\Fixed\M4S014FT",
"MDR-4000s\Fixed\M4S015FT",
"MDR-4000s\Fixed\M4S016FT",
"MDR-4000s\Fixed\M4S017FT",
"MDR-4000s\Fixed\M4S018FT",
"MDR-4000s\Fixed\M4S019FT",
"MDR-4000s\Fixed\M4S020FT",
"MDR-4000s\Fixed\M4S021FT",
"MDR-4000s\Fixed\M4S022FT",
"MDR-4000s\Fixed\M4S023FT",
"MDR-4000s\Fixed\M4S024FT",
"MDR-4000s\Fixed\M4S025FT",
"MDR-4000s\Fixed\M4S026FT",
"MDR-4000s\Fixed\M4S027FT",
"MDR-4000s\Fixed\M4S028FT",
"MDR-4000s\Fixed\M4S029FT",
"MDR-4000s\Fixed\M4S030FT",
"MDR-4000s\Fixed\M4S031FT",
"MDR-4000s\Fixed\M4S032FT",
"MDR-4000s\Fixed\M4S033FT",
"MDR-5000\Fixed\M5001FT",
"MDR-5000\Fixed\M5002FT",
"MDR-5000\Fixed\M5003FT",
"MDR-5000\Fixed\M5004FT",
"MDR-5000\Fixed\M5005FT",
"MDR-5000\Fixed\M5006FT",
"MDR-5000\Fixed\M5007FT",
"MDR-5000\Fixed\M5008FT",
"MDR-5000\Fixed\M5009FT",
"MDR-5000\Fixed\M5010FT",
"MDR-5000\Fixed\M5011FT",
"MDR-5000\Fixed\M5012FT",
"MDR-5000\Fixed\M5013FT",
"MDR-5000\Fixed\M5014FT",
"MDR-5000\Fixed\M5015FT",
"MDR-5000\Fixed\M5016FT",
"MDR-5000\Fixed\M5017FT",
"MDR-5000\Fixed\M5018FT",
"MDR-5000\Fixed\M5019FT",
"MDR-5000\Fixed\M5020FT",
"MDR-5000\Fixed\M5021FT",
"MDR-6000\Fixed\M6001FT",
"MDR-6000\Fixed\M6002FT",
"MDR-6000\Fixed\M6003FT",
"MDR-6000\Fixed\M6004FT",
"MDR-6000\Fixed\M6005FT",
"MDR-6000\Fixed\M6006FT",
"MDR-6000\Fixed\M6007FT",
"MDR-6000\Fixed\M6008FT",
"MDR-6000\Fixed\M6009FT",
"MDR-6000\Fixed\M6010FT",
"MDR-6000\Fixed\M6011FT",
"MDR-6000\Fixed\M6012FT",
"MDR-6000\Fixed\M6013FT",
"MDR-6000\Fixed\M6014FT",
"MDR-6000\Fixed\M6015FT",
"MDR-6000\Fixed\M6016FT",
"MDR-6000\Fixed\M6017FT",
"MDR-6000\Fixed\M6018FT",
"MDR-6000\Fixed\M6019FT",
"MDR-6000\Fixed\M6020FT",
"MDR-6000\Fixed\M6021FT",
"MDR-6000\Fixed\M6022FT",
"MDR-6000\Fixed\M6023FT",
"MDR-6000\Fixed\M6024FT",
"MDR-6000\Fixed\M6025FT",
"MDR-6000\Fixed\M6026FT",
"MDR-6000\Fixed\M6027FT",
"MDR-6000\Fixed\M6028FT",
"MDR-6000\Fixed\M6029FT",
"MDR-6000\Fixed\M6030FT",
"MDR-6000\Fixed\M6031FT",
"MDR-6000\Fixed\M6032FT",
"MDR-6000\Fixed\M6033FT",
"MDR-6000\Fixed\M6034FT",
"MDR-6000\Fixed\M6035FT",
"MDR-6000\Fixed\M6036FT",
"MDR-6000\Fixed\M6037FT",
"MDR-6000\Fixed\M6038FT",
"MDR-6000\Fixed\M6039FT",
"MDR-6000\Fixed\M6040FT",
"MDR-6000\Fixed\M6041FT",
"MDR-6000\Fixed\M6042FT",
"MDR-6000\Fixed\M6043FT",
"MDR-6000\Fixed\M6044FT",
"MDR-6000\Fixed\M6045FT",
"MDR-6000\Fixed\M6046FT",
"MDR-6000\Fixed\M6047FT",
"MDR-6000\Fixed\M6048FT",
"MDR-6000\Fixed\M6049FT",
"MDR-6000\Fixed\M6050FT",
"MDR-6000\Fixed\M6051FT",
"MDR-6000\Fixed\M6052FT",
"MDR-6000\Fixed\M6053FT",
"MDR-6000\Fixed\M6054FT",
"MDR-6000\Fixed\M6055FT",
"MDR-6000\Fixed\M6056FT",
"MDR-6000\Fixed\M6057FT",
"MDR-6000\Fixed\M6058FT",
"MDR-6000\Fixed\M6059FT",
"MDR-6000\Fixed\M6060FT",
"MDR-6000\Fixed\M6061FT",
"MDR-6000\Fixed\M6062FT",
"MDR-6000\Fixed\M6063FT",
"MDR-6000\Fixed\M6064FT",
"MDR-6000\Fixed\M6065FT",
"MDR-6000\Fixed\M6066FT",
"MDR-6000\Fixed\M6067FT",
"MDR-6000\Fixed\M6068FT",
"MDR-6000\Fixed\M6069FT",
"MDR-6000\Fixed\M6070FT",
"MDR-6000\Fixed\M6071FT",
"MDR-6000\Fixed\M6072FT",
"MDR-6000\Fixed\M6073FT",
"MDR-6000\Fixed\M6074FT",
"MDR-6000\Fixed\M6075FT",
"MDR-6000\Fixed\M6076FT",
"MDR-6000\Fixed\M6077FT",
"MDR-6000\Fixed\M6078FT",
"MDR-6000\Fixed\M6079FT",
"MDR-6000\Fixed\M6080FT",
"MDR-6000\Fixed\M6081FT",
"MDR-6000\Fixed\M6082FT",
"MDR-6000\Fixed\M6083FT",
"MDR-6000\Fixed\M6084FT",
"MDR-6000\Fixed\M6085FT",
"MDR-6000\Fixed\M6086FT",
"MDR-6000\Fixed\M6087FT",
"MDR-6000\Fixed\M6088FT",
"MDR-6000\Fixed\M6089FT",
"MDR-6000\Fixed\M6090FT",
"MDR-6000\Fixed\M6091FT",
"MDR-6000\Fixed\M6092FT",
"MDR-6000\Fixed\M6093FT",
"MDR-6000\Fixed\M6094FT",
"MDR-6000\Fixed\M6095FT",
"MDR-6000\Fixed\M6096FT",
"MDR-6000\Fixed\M6097FT",
"MDR-6000\Fixed\M6098FT",
"MDR-6000\Fixed\M6099FT",
"MDR-6000\Fixed\M6100FT",
"MDR-6000\Fixed\M6101FT",
"MDR-6000\Fixed\M6102FT",
"MDR-6000\Fixed\M6103FT",
"MDR-6000\Fixed\M6104FT",
"MDR-6000\Fixed\M6105FT",
"MDR-6000\Fixed\M6106FT",
"MDR-6000\Fixed\M6107FT",
"MDR-6000\Fixed\M6108FT",
"MDR-6000\Fixed\M6109FT",
"MDR-6000\Fixed\M6110FT",
"MDR-6000\Fixed\M6111FT",
"MDR-6000\Fixed\M6112FT",
"MDR-6000\Fixed\M6113FT",
"MDR-6000\Fixed\M6114FT",
"MDR-6000\Fixed\M6115FT",
"MDR-6000\Fixed\M6116FT",
"MDR-6000\Fixed\M6117FT",
"MDR-6000\Fixed\M6118FT",
"MDR-6000\Fixed\M6119FT",
"MDR-6000\Fixed\M6120FT",
"MDR-7000\Fixed\M7001FT",
"MDR-7000\Fixed\M7002FT",
"MDR-7000\Fixed\M7003FT",
"MDR-7000\Fixed\M7004FT",
"MDR-7000\Fixed\M7005FT",
"MDR-7000\Fixed\M7006FT",
"MDR-7000\Fixed\M7007FT",
"MDR-7000\Fixed\M7008FT",
"MDR-7000\Fixed\M7009FT",
"MDR-7000\Fixed\M7010FT",
"MDR-7000\Fixed\M7011FT",
"MDR-7000\Fixed\M7012FT",
"MDR-7000\Fixed\M7013FT",
"MDR-7000\Fixed\M7014FT",
"MDR-7000\Fixed\M7015FT",
"MDR-7000\Fixed\M7016FT",
"MDR-7000\Fixed\M7017FT",
"MDR-7000\Fixed\M7018FT",
"MDR-7000\Fixed\M7019FT",
"MDR-7000\Fixed\M7020FT",
"MDR-8000\Fixed\M8K001FT",
"MDR-8000\Fixed\M8K002FT",
"MDR-8000\Fixed\M8K003FT",
"MDR-8000\Fixed\M8K004FT",
"MDR-8000\Fixed\M8K005FT",
"MDR-8000\Fixed\M8K006FT",
"MDR-8000\Fixed\M8K007FT",
"MDR-8000\Fixed\M8K008FT",
"MDR-8000\Fixed\M8K009FT",
"MDR-8000\Fixed\M8K010FT",
"MDR-8000\Fixed\M8K011FT",
"MDR-8000\Fixed\M8K012FT",
"MDR-8000\Fixed\M8K013FT",
"MDR-8000\Fixed\M8K014FT",
"MDR-8000\Fixed\M8K015FT",
"MDR-8000\Fixed\M8K016FT",
"MDR-8000\Fixed\M8K017FT",
"MDR-8000\Fixed\M8K018FT",
"MDR-8000\Fixed\M8K019FT",
"MDR-8000\Fixed\M8K020FT",
"MDR-8000\Fixed\M8K021FT",
"MDR-8000\Fixed\M8K022FT",
"MDR-8000\Fixed\M8K023FT",
"MDR-8000\Fixed\M8K024FT",
"MDR-8000\Fixed\M8K025FT",
"MDR-8000\Fixed\M8K026FT",
"MDR-8000\Fixed\M8K027FT",
"MDR-8000\Fixed\M8K028FT",
"MDR-8000\Fixed\M8K029FT",
"MDR-8000\Fixed\M8K030FT",
"MDR-8000\Fixed\M8K031FT",
"MDR-8000\Fixed\M8K032FT",
"MDR-8000\Fixed\M8K033FT",
"MDR-8000\Fixed\M8K034FT",
"MDR-8000\Fixed\M8K035FT",
"MDR-8000\Fixed\M8K036FT",
"MDR-8000\Fixed\M8K037FT",
"MDR-8000\Fixed\M8K038FT",
"MDR-8000\Fixed\M8K039FT",
"MDR-8000\Fixed\M8K040FT",
"MDR-8000\Fixed\M8K041FT",
"MDR-8000\Fixed\M8K042FT",
"MDR-8000\Fixed\M8K043FT",
"MDR-8000\Fixed\M8K044FT",
"MDR-8000\Fixed\M8K045FT",
"MDR-8000\Fixed\M8K046FT",
"MDR-8000\Fixed\M8K047FT",
"MDR-8000\Fixed\M8K048FT",
"MDR-8000\Fixed\M8K049FT",
"MDR-8000\Fixed\M8K050FT",
"MDR-8000\Fixed\M8K051FT",
"MDR-8000\Fixed\M8K052FT",
"MDR-8000\Fixed\M8K053FT",
"MDR-8000\Fixed\M8K054FT",
"MDR-8000\Fixed\M8K055FT",
"MDR-8000\Fixed\M8K056FT",
"MDR-8000\Fixed\M8K057FT",
"MDR-8000\Fixed\M8K058FT",
"MDR-8000\Fixed\M8K059FT",
"MDR-8000\Fixed\M8K060FT",
"MDR-8000\Fixed\M8K061FT",
"MDR-8000\Fixed\M8K062FT",
"MDR-8000\Fixed\M8K063FT",
"MDR-8000\Fixed\M8K064FT",
"MDR-8000\Fixed\M8K065FT",
"MDR-8000\Fixed\M8K066FT",
"MDR-8000\Fixed\M8K067FT",
"MDR-8000\Fixed\M8K068FT",
"MDR-8000\Fixed\M8K069FT",
"MDR-8000\Fixed\M8K070FT",
"MDR-8000\Fixed\M8K071FT",
"MDR-8000\Fixed\M8K072FT",
"MDR-8000\Fixed\M8K073FT",
"MDR-8000\Fixed\M8K074FT",
"MDR-8000\Fixed\M8K075FT",
"MDR-8000\Fixed\M8K076FT",
"MDR-8000\Fixed\M8K077FT",
"MDR-8000\Fixed\M8K078FT",
"MDR-8000\Fixed\M8K079FT",
"MDR-8000\Fixed\M8K080FT",
"MDR-8000\Fixed\M8K081FT",
"MDR-8000\Fixed\M8K082FT",
"MDR-8000\Fixed\M8K083FT",
"MDR-8000\Fixed\M8K084FT",
"MDR-8000\Fixed\M8K085FT",
"MDR-8000\Fixed\M8K086FT",
"MDR-8000\Fixed\M8K087FT",
"MDR-8000\Fixed\M8K088FT",
"MDR-8000\Fixed\M8K089FT",
"MDR-8000\Fixed\M8K090FT",
"MDR-8000\Fixed\M8K091FT",
"MDR-8000\Fixed\M8K092FT",
"MDR-8000\Fixed\M8K093FT",
"MDR-8000\Fixed\M8K094FT",
"MDR-8000\Fixed\M8K095FT",
"MDR-8000\Fixed\M8K096FT",
"MDR-8000\Fixed\M8K097FT",
"MDR-8000\Fixed\M8K098FT",
"MDR-8000\Fixed\M8K099FT",
"MDR-8000\Fixed\M8K100FT",
"MDR-8000\Fixed\M8K101FT",
"MDR-8000\Fixed\M8K102FT",
"MDR-8000\Fixed\M8K103FT",
"MDR-8000\Fixed\M8K104FT",
"MDR-8000\Fixed\M8K105FT",
"MDR-8000\Fixed\M8K106FT",
"MDR-8000\Fixed\M8K107FT",
"MDR-8000\Fixed\M8K108FT",
"MDR-8000\Fixed\M8K109FT",
"MDR-8000\Fixed\M8K110FT",
"MDR-8000\Fixed\M8K111FT",
"MDR-8000\Fixed\M8K112FT",
"MDR-8000\Fixed\M8K113FT",
"MDR-8000\Fixed\M8K114FT",
"MDR-8000\Fixed\M8K115FT",
"MDR-8000\Fixed\M8K116FT",
"MDR-8000\Fixed\M8K117FT",
"MDR-8000\Fixed\M8K118FT",
"MDR-8000\Fixed\M8K119FT",
"MDR-8000\Fixed\M8K120FT",
"MDR-8000\Fixed\M8K121FT",
"MDR-8000\Fixed\M8K122FT",
"MDR-8000\Fixed\M8K123FT",
"MDR-8000\Fixed\M8K124FT",
"MDR-8000\Fixed\M8K125FT",
"MDR-8000\Fixed\M8K126FT",
"MDR-8000\Fixed\M8K127FT",
"MDR-8000\Fixed\M8K128FT",
"MDR-8000\Fixed\M8K129FT",
"MDR-8000\Fixed\M8K130FT",
"MDR-8000\Fixed\M8K131FT",
"MDR-8000\Fixed\M8K132FT",
"MDR-8000\Fixed\M8K133FT",
"MDR-8000\Fixed\M8K134FT",
"MDR-8000\Fixed\M8K135FT",
"MDR-8000\Fixed\M8K136FT",
"MDR-8000\Fixed\M8K137FT",
"MDR-8000\Fixed\M8K138FT",
"MDR-8000\Fixed\M8K139FT",
"MDR-8000\Fixed\M8K140FT",
"MDR-8000\Fixed\M8K141FT",
"MDR-8000\Fixed\M8K142FT",
"MDR-8000\Fixed\M8K143FT",
"MDR-8000\Fixed\M8K144FT",
"MDR-8000\Fixed\M8K145FT",
"MDR-8000\Fixed\M8K146FT",
"MDR-8000\Fixed\M8K147FT",
"MDR-8000\Fixed\M8K148FT",
"MDR-8000\Fixed\M8K149FT",
"MDR-8000\Fixed\M8K150FT",
"MDR-8000\Fixed\M8K151FT",
"MDR-8000\Fixed\M8K152FT",
"MDR-8000\Fixed\M8K153FT",
"MDR-8000\Fixed\M8K154FT",
"MDR-8000\Fixed\M8K155FT",
"MDR-8000\Fixed\M8K156FT",
"MDR-8000\Fixed\M8K157FT",
"MDR-8000\Fixed\M8K158FT",
"MDR-8000\Fixed\M8K159FT",
"MDR-8000\Fixed\M8K160FT",
"MDR-8000\Fixed\M8K161FT",
"MDR-8000\Fixed\M8K162FT",
"MDR-8000\Fixed\M8K163FT",
"MDR-8000\Fixed\M8K164FT",
"MDR-8000\Fixed\M8K165FT",
"MDR-8000\Fixed\M8K166FT",
"MDR-8000\Fixed\M8K167FT",
"MDR-8000\Fixed\M8K168FT",
"MDR-8000\Fixed\M8K169FT",
"MDR-8000\Fixed\M8K170FT",
"MDR-8000\Fixed\M8K171FT",
"MDR-8000\Fixed\M8K172FT",
"MDR-8000\Fixed\M8K173FT",
"MDR-8000\Fixed\M8K174FT",
"MDR-8000\Fixed\M8K175FT",
"MDR-8000\Fixed\M8K176FT",
"MDR-8000\Fixed\M8K177FT",
"MDR-8000\Fixed\M8K178FT",
"MDR-8000\Fixed\M8K179FT",
"MDR-8000\Fixed\M8K180FT",
"MDR-8000\Fixed\M8K181FT",
"MDR-8000\Fixed\M8K182FT",
"MDR-8000\Fixed\M8K183FT",
"MDR-8000\Fixed\M8K184FT",
"MDR-8000\Fixed\M8K185FT",
"MDR-8000\Fixed\M8K186FT",
"MDR-8000\Fixed\M8K187FT",
"MDR-8000\Fixed\M8K188FT",
"MDR-8000\Fixed\M8K189FT",
"MDR-8000\Fixed\M8K190FT",
"MDR-8000\Fixed\M8K191FT",
"MDR-8000\Fixed\M8K192FT",
"MDR-8000\Fixed\M8K193FT",
"MDR-8000\Fixed\M8K194FT",
"MDR-8000\Fixed\M8K195FT",
"MDR-8000\Fixed\M8K196FT",
"MDR-8000\Fixed\M8K197FT",
"MDR-8000\Fixed\M8K198FT",
"MDR-8000\Fixed\M8K199FT",
"MDR-8000\Fixed\M8K200FT",
"MDR-8000\Fixed\M8K201FT",
"MDR-8000\Fixed\M8K202FT",
"MDR-8000\Fixed\M8K203FT",
"MDR-8000\Fixed\M8K204FT",
"MDR-8000\Fixed\M8K205FT",
"MDR-8000\Fixed\M8K206FT",
"MDR-8000\Fixed\M8K207FT",
"MDR-8000\Fixed\M8K208FT",
"MDR-8000\Fixed\M8K209FT",
"MDR-8000\Fixed\M8K210FT",
"MDR-8000\Fixed\M8K211FT",
"MDR-8000\Fixed\M8K212FT",
"MDR-8000\Fixed\M8K213FT",
"MDR-8000\Fixed\M8K214FT",
"MDR-8000\Fixed\M8K215FT",
"MDR-8000\Fixed\M8K216FT",
"MDR-8000\Fixed\M8K217FT",
"MDR-8000\Fixed\M8K218FT",
"MDR-8000\Fixed\M8K219FT",
"MDR-8000\Fixed\M8K220FT",
"MDR-8000\Fixed\M8K221FT",
"MDR-8000\Fixed\M8K222FT",
"MDR-8000\Fixed\M8K223FT",
"MDR-8000\Fixed\M8K224FT",
"MDR-8000\Fixed\M8K225FT",
"MDR-8000\Fixed\M8K226FT",
"MDR-8000\Fixed\M8K227FT",
"MDR-8000\Fixed\M8K228FT",
"MDR-8000\Fixed\M8K229FT",
"MDR-8000\Fixed\M8K230FT",
"MDR-8000\Fixed\M8K231FT",
"MDR-8000\Fixed\M8K232FT",
"MDR-8000\Fixed\M8K233FT",
"MDR-8000\Fixed\M8K234FT",
"MDR-8000\Fixed\M8K235FT",
"MDR-8000\Fixed\M8K236FT",
"MDR-8000\Fixed\M8K237FT",
"MDR-8000\Fixed\M8K238FT",
"MDR-8000\Fixed\M8K239FT",
"MDR-8000\Fixed\M8K240FT",
"MDR-8000\Fixed\M8K241FT",
"MDR-8000\Fixed\M8K242FT",
"MDR-8000\Fixed\M8K243FT",
"MDR-8000\Fixed\M8K244FT",
"MDR-8000\Fixed\M8K245FT",
"MDR-8000\Fixed\M8K246FT",
"MDR-8000\Fixed\M8K247FT",
"MDR-8000\Fixed\M8K248FT",
"MDR-8000\Fixed\M8K249FT",
"MDR-8000\Fixed\M8K250FT",
"MDR-8000\Fixed\M8K251FT",
"MDR-8000\Fixed\M8K252FT",
"MDR-8000\Fixed\M8K253FT",
"MDR-8000\Fixed\M8K254FT",
"MDR-8000\Fixed\M8K255FT",
"MDR-8000\Fixed\M8K256FT",
"MDR-8000\Fixed\M8K257FT",
"MDR-8000\Fixed\M8K258FT",
"MDR-8000\Fixed\M8K259FT",
"MDR-8000\Fixed\M8K260FT",
"MDR-8000\Fixed\M8K261FT",
"MDR-8000\Fixed\M8K262FT",
"MDR-8000\Fixed\M8K263FT",
"MDR-8000\Fixed\M8K264FT",
"MDR-8000\Fixed\M8K265FT",
"MDR-8000\Fixed\M8K266FT",
"MDR-8000\Fixed\M8K267FT",
"MDR-8000\Fixed\M8K268FT",
"MDR-8000\Fixed\M8K269FT",
"MDR-8000\Fixed\M8K270FT",
"MDR-8000\Fixed\M8K271FT",
"MDR-8000\Fixed\M8K272FT",
"MDR-8000\Fixed\M8K273FT",
"MDR-8000\Fixed\M8K274FT",
"MDR-8000\Fixed\M8K275FT",
"MDR-8000\Fixed\M8K276FT",
"MDR-8000\Fixed\M8K277FT",
"MDR-8000\Fixed\M8K278FT",
"MDR-8000\Fixed\M8K279FT",
"MDR-8000\Fixed\M8K280FT",
"MDR-8000\Fixed\M8K281FT",
"MDR-8000\Fixed\M8K282FT",
"MDR-8000\Fixed\M8K283FT",
"MDR-8000\Fixed\M8K284FT",
"MDR-8000\Fixed\M8K285FT",
"MDR-8000\Fixed\M8K286FT",
"MDR-8000\Fixed\M8K287FT",
"MDR-8000\Fixed\M8K288FT",
"MDR-8000\Fixed\M8K289FT",
"MDR-8000\Fixed\M8K290FT",
"MDR-8000\Fixed\M8K291FT",
"MDR-8000\Fixed\M8K292FT",
"MDR-8000\Fixed\M8K293FT",
"MDR-8000\Fixed\M8K294FT",
"MDR-8000\Fixed\M8K295FT",
"MDR-8000\Fixed\M8K296FT",
"MDR-8000\Fixed\M8K297FT",
"MDR-8000\Fixed\M8K298FT",
"MDR-8000\Fixed\M8K299FT",
"MDR-8000\Fixed\M8K300FT",
"MDR-8000\Fixed\M8K301FT",
"MDR-8000\Fixed\M8K302FT",
"MDR-8000\Fixed\M8K303FT",
"MDR-8000\Fixed\M8K304FT",
"MDR-8000\Fixed\M8K305FT",
"MDR-8000\Fixed\M8K306FT",
"MDR-8000\Fixed\M8K307FT",
"MDR-8000\Fixed\M8K308FT",
"MPT-HC XP\Adaptive\HC001CAA",
"MPT-HC XP\Adaptive\HC001CAA",
"MPT-HC XP\Adaptive\HC001CAA",
"MPT-HC XP\Adaptive\HC001CAA",
"MPT-HC XP\Adaptive\HC001CAA",
"MPT-HC XP\Adaptive\HC001CAA",
"MPT-HC XP\Adaptive\HC002CAA",
"MPT-HC XP\Adaptive\HC002CAA",
"MPT-HC XP\Adaptive\HC002CAA",
"MPT-HC XP\Adaptive\HC002CAA",
"MPT-HC XP\Adaptive\HC002CAA",
"MPT-HC XP\Adaptive\HC002CAA",
"MPT-HC XP\Adaptive\HC002CAA",
"MPT-HC XP\Adaptive\HC003CAA",
"MPT-HC XP\Adaptive\HC003CAA",
"MPT-HC XP\Adaptive\HC003CAA",
"MPT-HC XP\Adaptive\HC003CAA",
"MPT-HC XP\Adaptive\HC003CAA",
"MPT-HC XP\Adaptive\HC003CAA",
"MPT-HC XP\Adaptive\HC003CAA",
"MPT-HC XP\Adaptive\HC004CAA",
"MPT-HC XP\Adaptive\HC004CAA",
"MPT-HC XP\Adaptive\HC004CAA",
"MPT-HC XP\Adaptive\HC004CAA",
"MPT-HC XP\Adaptive\HC004CAA",
"MPT-HC XP\Adaptive\HC004CAA",
"MPT-HC XP\Adaptive\HC005CAA",
"MPT-HC XP\Adaptive\HC005CAA",
"MPT-HC XP\Adaptive\HC005CAA",
"MPT-HC XP\Adaptive\HC005CAA",
"MPT-HC XP\Adaptive\HC005CAA",
"MPT-HC XP\Adaptive\HC005CAA",
"MPT-HC XP\Adaptive\HC006CAA",
"MPT-HC XP\Adaptive\HC006CAA",
"MPT-HC XP\Adaptive\HC006CAA",
"MPT-HC XP\Adaptive\HC006CAA",
"MPT-HC XP\Adaptive\HC006CAA",
"MPT-HC XP\Adaptive\HC006CAA",
"MPT-HC XP\Adaptive\HC006CAA",
"MPT-HC XP\Adaptive\HC007CAA",
"MPT-HC XP\Adaptive\HC007CAA",
"MPT-HC XP\Adaptive\HC007CAA",
"MPT-HC XP\Adaptive\HC007CAA",
"MPT-HC XP\Adaptive\HC007CAA",
"MPT-HC XP\Adaptive\HC007CAA",
"MPT-HC XP\Adaptive\HC007CAA",
"MPT-HC XP\Adaptive\HC008CAA",
"MPT-HC XP\Adaptive\HC008CAA",
"MPT-HC XP\Adaptive\HC008CAA",
"MPT-HC XP\Adaptive\HC008CAA",
"MPT-HC XP\Adaptive\HC008CAA",
"MPT-HC XP\Adaptive\HC008CAA",
"MPT-HC XP\Adaptive\HC008CAA",
"MPT-HC XP\Adaptive\HC009CAA",
"MPT-HC XP\Adaptive\HC009CAA",
"MPT-HC XP\Adaptive\HC009CAA",
"MPT-HC XP\Adaptive\HC009CAA",
"MPT-HC XP\Adaptive\HC009CAA",
"MPT-HC XP\Adaptive\HC009CAA",
"MPT-HC XP\Adaptive\HC009CAA",
"MPT-HC XP\Adaptive\HC010CAA",
"MPT-HC XP\Adaptive\HC010CAA",
"MPT-HC XP\Adaptive\HC010CAA",
"MPT-HC XP\Adaptive\HC010CAA",
"MPT-HC XP\Adaptive\HC010CAA",
"MPT-HC XP\Adaptive\HC010CAA",
"MPT-HC XP\Adaptive\HC010CAA",
"MPT-HC XP\Adaptive\HC011CAA",
"MPT-HC XP\Adaptive\HC011CAA",
"MPT-HC XP\Adaptive\HC011CAA",
"MPT-HC XP\Adaptive\HC011CAA",
"MPT-HC XP\Adaptive\HC011CAA",
"MPT-HC XP\Adaptive\HC011CAA",
"MPT-HC XP\Adaptive\HC011CAA",
"MPT-HC XP\Adaptive\HC012CAA",
"MPT-HC XP\Adaptive\HC012CAA",
"MPT-HC XP\Adaptive\HC012CAA",
"MPT-HC XP\Adaptive\HC012CAA",
"MPT-HC XP\Adaptive\HC012CAA",
"MPT-HC XP\Adaptive\HC012CAA",
"MPT-HC XP\Adaptive\HC012CAA",
"MPT-HC XP\Adaptive\HC013CAA",
"MPT-HC XP\Adaptive\HC013CAA",
"MPT-HC XP\Adaptive\HC013CAA",
"MPT-HC XP\Adaptive\HC013CAA",
"MPT-HC XP\Adaptive\HC013CAA",
"MPT-HC XP\Adaptive\HC013CAA",
"MPT-HC XP\Adaptive\HC013CAA",
"MPT-HC XP\Adaptive\HC014CAA",
"MPT-HC XP\Adaptive\HC014CAA",
"MPT-HC XP\Adaptive\HC014CAA",
"MPT-HC XP\Adaptive\HC014CAA",
"MPT-HC XP\Adaptive\HC014CAA",
"MPT-HC XP\Adaptive\HC014CAA",
"MPT-HC XP\Adaptive\HC014CAA",
"MPT-HC XP\Adaptive\HC015CAA",
"MPT-HC XP\Adaptive\HC015CAA",
"MPT-HC XP\Adaptive\HC015CAA",
"MPT-HC XP\Adaptive\HC016CAA",
"MPT-HC XP\Adaptive\HC016CAA",
"MPT-HC XP\Adaptive\HC016CAA",
"MPT-HC XP\Adaptive\HC016CAA",
"MPT-HC XP\Adaptive\HC016CAA",
"MPT-HC XP\Adaptive\HC016CAA",
"MPT-HC XP\Adaptive\HC017CAA",
"MPT-HC XP\Adaptive\HC017CAA",
"MPT-HC XP\Adaptive\HC017CAA",
"MPT-HC XP\Adaptive\HC017CAA",
"MPT-HC XP\Adaptive\HC017CAA",
"MPT-HC XP\Adaptive\HC017CAA",
"MPT-HC XP\Adaptive\HC018CAA",
"MPT-HC XP\Adaptive\HC018CAA",
"MPT-HC XP\Adaptive\HC018CAA",
"MPT-HC XP\Adaptive\HC018CAA",
"MPT-HC XP\Adaptive\HC018CAA",
"MPT-HC XP\Adaptive\HC018CAA",
"MPT-HC XP\Adaptive\HC019CAA",
"MPT-HC XP\Adaptive\HC019CAA",
"MPT-HC XP\Adaptive\HC019CAA",
"MPT-HC XP\Adaptive\HC019CAA",
"MPT-HC XP\Adaptive\HC019CAA",
"MPT-HC XP\Adaptive\HC019CAA",
"MPT-HC XP\Adaptive\HC019CAA",
"MPT-HC XP\Adaptive\HC020CAA",
"MPT-HC XP\Adaptive\HC020CAA",
"MPT-HC XP\Adaptive\HC020CAA",
"MPT-HC XP\Adaptive\HC020CAA",
"MPT-HC XP\Adaptive\HC020CAA",
"MPT-HC XP\Adaptive\HC020CAA",
"MPT-HC XP\Adaptive\HC020CAA",
"MPT-HC XP\Adaptive\HC021CAA",
"MPT-HC XP\Adaptive\HC021CAA",
"MPT-HC XP\Adaptive\HC021CAA",
"MPT-HC XP\Adaptive\HC021CAA",
"MPT-HC XP\Adaptive\HC021CAA",
"MPT-HC XP\Adaptive\HC021CAA",
"MPT-HC XP\Adaptive\HC021CAA",
"MPT-HC XP\Adaptive\HC022CAA",
"MPT-HC XP\Adaptive\HC022CAA",
"MPT-HC XP\Adaptive\HC022CAA",
"MPT-HC XP\Adaptive\HC022CAA",
"MPT-HC XP\Adaptive\HC022CAA",
"MPT-HC XP\Adaptive\HC022CAA",
"MPT-HC XP\Adaptive\HC022CAA",
"MPT-HC XP\Adaptive\HC023CAA",
"MPT-HC XP\Adaptive\HC023CAA",
"MPT-HC XP\Adaptive\HC023CAA",
"MPT-HC XP\Adaptive\HC023CAA",
"MPT-HC XP\Adaptive\HC023CAA",
"MPT-HC XP\Adaptive\HC023CAA",
"MPT-HC XP\Adaptive\HC023CAA",
"MPT-HC XP\Adaptive\HC024CAA",
"MPT-HC XP\Adaptive\HC024CAA",
"MPT-HC XP\Adaptive\HC024CAA",
"MPT-HC XP\Adaptive\HC024CAA",
"MPT-HC XP\Adaptive\HC024CAA",
"MPT-HC XP\Adaptive\HC024CAA",
"MPT-HC XP\Adaptive\HC024CAA",
"MPT-HC XP\Adaptive\HC025CAA",
"MPT-HC XP\Adaptive\HC025CAA",
"MPT-HC XP\Adaptive\HC025CAA",
"MPT-HC XP\Adaptive\HC025CAA",
"MPT-HC XP\Adaptive\HC025CAA",
"MPT-HC XP\Adaptive\HC025CAA",
"MPT-HC XP\Adaptive\HC025CAA",
"MPT-HC XP\Adaptive\HC026CAA",
"MPT-HC XP\Adaptive\HC026CAA",
"MPT-HC XP\Adaptive\HC026CAA",
"MPT-HC XP\Adaptive\HC026CAA",
"MPT-HC XP\Adaptive\HC026CAA",
"MPT-HC XP\Adaptive\HC026CAA",
"MPT-HC XP\Adaptive\HC026CAA",
"MPT-HC XP\Adaptive\HC027CAA",
"MPT-HC XP\Adaptive\HC027CAA",
"MPT-HC XP\Adaptive\HC027CAA",
"MPT-HC XP\Adaptive\HC027CAA",
"MPT-HC XP\Adaptive\HC028CAA",
"MPT-HC XP\Adaptive\HC028CAA",
"MPT-HC XP\Adaptive\HC028CAA",
"MPT-HC XP\Adaptive\HC028CAA",
"MPT-HC XP\Adaptive\HC028CAA",
"MPT-HC XP\Adaptive\HC028CAA",
"MPT-HC XP\Adaptive\HC029CAA",
"MPT-HC XP\Adaptive\HC029CAA",
"MPT-HC XP\Adaptive\HC029CAA",
"MPT-HC XP\Adaptive\HC029CAA",
"MPT-HC XP\Adaptive\HC029CAA",
"MPT-HC XP\Adaptive\HC029CAA",
"MPT-HC XP\Adaptive\HC030CAA",
"MPT-HC XP\Adaptive\HC030CAA",
"MPT-HC XP\Adaptive\HC030CAA",
"MPT-HC XP\Adaptive\HC030CAA",
"MPT-HC XP\Adaptive\HC030CAA",
"MPT-HC XP\Adaptive\HC030CAA",
"MPT-HC XP\Fixed\HC001CFA",
"MPT-HC XP\Fixed\HC002CFA",
"MPT-HC XP\Fixed\HC003CFA",
"MPT-HC XP\Fixed\HC004CFA",
"MPT-HC XP\Fixed\HC005CFA",
"MPT-HC XP\Fixed\HC006CFA",
"MPT-HC XP\Fixed\HC007CFA",
"MPT-HC XP\Fixed\HC008CFA",
"MPT-HC XP\Fixed\HC009CFA",
"MPT-HC XP\Fixed\HC010CFA",
"MPT-HC XP\Fixed\HC011CFA",
"MPT-HC XP\Fixed\HC012CFA",
"MPT-HC XP\Fixed\HC013CFA",
"MPT-HC XP\Fixed\HC014CFA",
"MPT-HC XP\Fixed\HC015CFA",
"MPT-HC XP\Fixed\HC016CFA",
"MPT-HC XP\Fixed\HC017CFA",
"MPT-HC XP\Fixed\HC018CFA",
"MPT-HC XP\Fixed\HC019CFA",
"MPT-HC XP\Fixed\HC020CFA",
"MPT-HC XP\Fixed\HC021CFA",
"MPT-HC XP\Fixed\HC022CFA",
"MPT-HC XP\Fixed\HC023CFA",
"MPT-HC XP\Fixed\HC024CFA",
"MPT-HC XP\Fixed\HC025CFA",
"MPT-HC XP\Fixed\HC026CFA",
"MPT-HC XP\Fixed\HC027CFA",
"MPT-HC XP\Fixed\HC028CFA",
"MPT-HC XP\Fixed\HC029CFA",
"MPT-HC XP\Fixed\HC030CFA",
"MPT-HC XP\Fixed\HC031CFA",
"MPT-HC XP\Fixed\HC032CFA",
"MPT-HC XP\Fixed\HC033CFA",
"MPT-HC XP\Fixed\HC034CFA",
"MPT-HC XP\Fixed\HC035CFA",
"MPT-HC XP\Fixed\HC036CFA",
"MPT-HC XP\Fixed\HC037CFA",
"MPT-HC XP\Fixed\HC038CFA",
"MPT-HC XP\Fixed\HC039CFA",
"MPT-HC XP\Fixed\HC040CFA",
"MPT-HC XP\Fixed\HC041CFA",
"MPT-HC XP\Fixed\HC042CFA",
"MPT-HC XP\Fixed\HC043CFA",
"MPT-HC XP\Fixed\HC044CFA",
"MPT-HC XP\Fixed\HC045CFA",
"MPT-HC XP\Fixed\HC046CFA",
"MPT-HC XP\Fixed\HC047CFA",
"MPT-HC XP\Fixed\HC048CFA",
"MPT-HC XP\Fixed\HC049CFA",
"MPT-HC XP\Fixed\HC050CFA",
"MPT-HC XP\Fixed\HC051CFA",
"MPT-HC XP\Fixed\HC052CFA",
"MPT-HC XP\Fixed\HC053CFA",
"MPT-HC XP\Fixed\HC054CFA",
"MPT-HC XP\Fixed\HC055CFA",
"MPT-HC XP\Fixed\HC056CFA",
"MPT-HC XP\Fixed\HC057CFA",
"MPT-HC XP\Fixed\HC058CFA",
"MPT-HC XP\Fixed\HC059CFA",
"MPT-HC XP\Fixed\HC060CFA",
"MPT-HC XP\Fixed\HC061CFA",
"MPT-HC XP\Fixed\HC062CFA",
"MPT-HC XP\Fixed\HC063CFA",
"MPT-HC XP\Fixed\HC064CFA",
"MPT-HC XP\Fixed\HC065CFA",
"MPT-HC XP\Fixed\HC066CFA",
"MPT-HC XP\Fixed\HC067CFA",
"MPT-HC XP\Fixed\HC068CFA",
"MPT-HC XP\Fixed\HC069CFA",
"MPT-HC XP\Fixed\HC070CFA",
"MPT-HC XP\Fixed\HC071CFA",
"MPT-HC XP\Fixed\HC072CFA",
"MPT-HC XP\Fixed\HC073CFA",
"MPT-HC XP\Fixed\HC074CFA",
"MPT-HC XP\Fixed\HC075CFA",
"MPT-HC XP\Fixed\HC076CFA",
"MPT-HC XP\Fixed\HC077CFA",
"MPT-HC XP\Fixed\HC078CFA",
"MPT-HC XP\Fixed\HC079CFA",
"MPT-HC XP\Fixed\HC080CFA",
"MPT-HC XP\Fixed\HC081CFA",
"MPT-HC XP\Fixed\HC082CFA",
"MPT-HC XP\Fixed\HC083CFA",
"MPT-HC XP\Fixed\HC084CFA",
"MPT-HC XP\Fixed\HC085CFA",
"MPT-HC XP\Fixed\HC086CFA",
"MPT-HC XP\Fixed\HC087CFA",
"MPT-HC XP\Fixed\HC088CFA",
"MPT-HC XP\Fixed\HC089CFA",
"MPT-HC XP\Fixed\HC090CFA",
"MPT-HC XP\Fixed\HC091CFA",
"MPT-HC XP\Fixed\HC092CFA",
"MPT-HC XP\Fixed\HC093CFA",
"MPT-HC XP\Fixed\HC094CFA",
"MPT-HC XP\Fixed\HC095CFA",
"MPT-HC XP\Fixed\HC096CFA",
"MPT-HC XP\Fixed\HC097CFA",
"MPT-HC XP\Fixed\HC098CFA",
"MPT-HC XP\Fixed\HC099CFA",
"MPT-HC XP\Fixed\HC100CFA",
"MPT-HC XP\Fixed\HC101CFA",
"MPT-HC XP\Fixed\HC102CFA",
"MPT-HC XP\Fixed\HC103CFA",
"MPT-HC XP\Fixed\HC104CFA",
"MPT-HC XP\Fixed\HC105CFA",
"MPT-HC XP\Fixed\HC106CFA",
"MPT-HC XP\Fixed\HC107CFA",
"MPT-HC XP\Fixed\HC108CFA",
"MPT-HC XP\Fixed\HC109CFA",
"MPT-HC XP\Fixed\HC110CFA",
"MPT-HC XP\Fixed\HC111CFA",
"MPT-HC XP\Fixed\HC112CFA",
"MPT-HC XP\Fixed\HC113CFA",
"MPT-HC XP\Fixed\HC114CFA",
"MPT-HC XP\Fixed\HC115CFA",
"MPT-HC XP\Fixed\HC116CFA",
"MPT-HC XP\Fixed\HC117CFA",
"MPT-HC XP\Fixed\HC118CFA",
"MPT-HC XP\Fixed\HC119CFA",
"MPT-HC XP\Fixed\HC120CFA",
"MPT-HC XP\Fixed\HC121CFA",
"MPT-HC XP\Fixed\HC122CFA",
"MPT-HC XP\Fixed\HC123CFA",
"MPT-HC XP\Fixed\HC124CFA",
"MPT-HC XP\Fixed\HC125CFA",
"MPT-HC XP\Fixed\HC126CFA",
"MPT-HC XP\Fixed\HC127CFA",
"MPT-HC XP\Fixed\HC128CFA",
"MPT-HC XP\Fixed\HC129CFA",
"MPT-HC XP\Fixed\HC130CFA",
"MPT-HC XP\Fixed\HC131CFA",
"MPT-HC XP\Fixed\HC132CFA",
"MPT-HC XP\Fixed\HC133CFA",
"MPT-HC XP\Fixed\HC134CFA",
"MPT-HC XP\Fixed\HC135CFA",
"MPT-HC XP\Fixed\HC136CFA",
"MPT-HC XP\Fixed\HC137CFA",
"MPT-HC XP\Fixed\HC138CFA",
"MPT-HC XP\Fixed\HC139CFA",
"MPT-HC XP\Fixed\HC140CFA",
"MPT-HC XP\Fixed\HC141CFA",
"MPT-HC XP\Fixed\HC142CFA",
"MPT-HC XP\Fixed\HC143CFA",
"MPT-HC XP\Fixed\HC144CFA",
"MPT-HC XP\Fixed\HC145CFA",
"MPT-HC XP\Fixed\HC146CFA",
"MPT-HC XP\Fixed\HC147CFA",
"MPT-HC XP\Fixed\HC148CFA",
"MPT-HC XP\Fixed\HC149CFA",
"MPT-HC XP\Fixed\HC150CFA",
"MPT-HC XP\Fixed\HC151CFA",
"MPT-HC XP\Fixed\HC152CFA",
"MPT-HC XP\Fixed\HC153CFA",
"MPT-HC XP\Fixed\HC154CFA",
"MPT-HC XP\Fixed\HC155CFA",
"MPT-HC XP\Fixed\HC156CFA",
"MPT-HC XP\Fixed\HC157CFA",
"MPT-HC XP\Fixed\HC158CFA",
"MPT-HC XP\Fixed\HC159CFA",
"MPT-HC XP\Fixed\HC160CFA",
"MPT-HC XP\Fixed\HC161CFA",
"MPT-HL\Adaptive\HL001HAA",
"MPT-HL\Adaptive\HL001HAA",
"MPT-HL\Adaptive\HL001HAA",
"MPT-HL\Adaptive\HL001HAA",
"MPT-HL\Adaptive\HL001HAA",
"MPT-HL\Adaptive\HL002HAA",
"MPT-HL\Adaptive\HL002HAA",
"MPT-HL\Adaptive\HL002HAA",
"MPT-HL\Adaptive\HL002HAA",
"MPT-HL\Adaptive\HL002HAA",
"MPT-HL\Adaptive\HL003HAA",
"MPT-HL\Adaptive\HL003HAA",
"MPT-HL\Adaptive\HL003HAA",
"MPT-HL\Adaptive\HL003HAA",
"MPT-HL\Adaptive\HL003HAA",
"MPT-HL\Adaptive\HL004HAA",
"MPT-HL\Adaptive\HL004HAA",
"MPT-HL\Adaptive\HL004HAA",
"MPT-HL\Adaptive\HL004HAA",
"MPT-HL\Adaptive\HL004HAA",
"MPT-HL\Adaptive\HL005HAA",
"MPT-HL\Adaptive\HL005HAA",
"MPT-HL\Adaptive\HL005HAA",
"MPT-HL\Adaptive\HL005HAA",
"MPT-HL\Adaptive\HL005HAA",
"MPT-HL\Adaptive\HL006HAA",
"MPT-HL\Adaptive\HL006HAA",
"MPT-HL\Adaptive\HL006HAA",
"MPT-HL\Adaptive\HL006HAA",
"MPT-HL\Adaptive\HL006HAA",
"MPT-HL\Adaptive\HL007HAA",
"MPT-HL\Adaptive\HL007HAA",
"MPT-HL\Adaptive\HL007HAA",
"MPT-HL\Adaptive\HL007HAA",
"MPT-HL\Adaptive\HL007HAA",
"MPT-HL\Fixed\HL001HFA",
"MPT-HL\Fixed\HL002HFA",
"MPT-HL\Fixed\HL003HFA",
"MPT-HL\Fixed\HL004HFA",
"MPT-HL\Fixed\HL005HFA",
"MPT-HL\Fixed\HL006HFA",
"MPT-HL\Fixed\HL007HFA",
"MPT-HL\Fixed\HL008HFA",
"MPT-HL\Fixed\HL009HFA",
"MPT-HL\Fixed\HL010HFA",
"MPT-HL\Fixed\HL011HFA",
"MPT-HL\Fixed\HL012HFA",
"MPT-HL\Fixed\HL013HFA",
"MPT-HL\Fixed\HL014HFA",
"MPT-HL\Fixed\HL015HFA",
"MPT-HL\Fixed\HL016HFA",
"MPT-HL\Fixed\HL017HFA",
"MPT-HL\Fixed\HL018HFA",
"MPT-HL\Fixed\HL019HFA",
"MPT-HL\Fixed\HL020HFA",
"MPT-HL\Fixed\HL021HFA",
"MPT-HL\Fixed\HL022HFA",
"MPT-HL\Fixed\HL023HFA",
"MPT-HL\Fixed\HL024HFA",
"MPT-HL\Fixed\HL025HFA",
"MPT-HL\Fixed\HL026HFA",
"MPT-HL\Fixed\HL027HFA",
"MPT-HL\Fixed\HL028HFA",
"MPT-HL\Fixed\HL029HFA",
"MPT-HL\Fixed\HL030HFA",
"MPT-HL\Fixed\HL031HFA",
"MPT-HL\Fixed\HL032HFA",
"MPT-HL\Fixed\HL033HFA",
"MPT-HL\Fixed\HL034HFA",
"MPT-HL\Fixed\HL035HFA",
"MPT-HL\Fixed\HL036HFA",
"MPT-HL\Fixed\HL037HFA",
"MPT-HL\Fixed\HL038HFA",
"MPT-HL\Fixed\HL039HFA",
"ODU 300\PL5 High Gain\Fixed\HC001OFT",
"ODU 300\PL5 High Gain\Fixed\HC002OFT",
"ODU 300\PL5 High Gain\Fixed\HC003OFT",
"ODU 300\PL5 High Gain\Fixed\HC004OFT",
"ODU 300\PL5 High Gain\Fixed\HC005OFT",
"ODU 300\PL5 High Gain\Fixed\HC006OFT",
"ODU 300\PL5 High Gain\Fixed\HC007OFT",
"ODU 300\PL5 High Gain\Fixed\HC008OFT",
"ODU 300\PL5 High Gain\Fixed\HC009OFT",
"ODU 300\PL5 High Gain\Fixed\HC010OFT",
"ODU 300\PL5 High Gain\Fixed\HC011OFT",
"ODU 300\PL5 High Gain\Fixed\HC012OFT",
"ODU 300\PL5 High Gain\Fixed\HC013OFT",
"ODU 300\PL5 High Gain\Fixed\HC014OFT",
"ODU 300\PL5 High Gain\Fixed\HC015OFT",
"ODU 300\PL5 High Gain\Fixed\HC016OFT",
"ODU 300\PL5 High Gain\Fixed\HC017OFT",
"ODU 300\PL5 High Gain\Fixed\HC018OFT",
"ODU 300\PL5 Standard\Adaptive\HC001OAT",
"ODU 300\PL5 Standard\Adaptive\HC001OAT",
"ODU 300\PL5 Standard\Adaptive\HC001OAT",
"ODU 300\PL5 Standard\Adaptive\HC002OAT",
"ODU 300\PL5 Standard\Adaptive\HC002OAT",
"ODU 300\PL5 Standard\Adaptive\HC002OAT",
"ODU 300\PL5 Standard\Adaptive\HC002OAT",
"ODU 300\PL5 Standard\Adaptive\HC002OAT",
"ODU 300\PL5 Standard\Adaptive\HC003OAT",
"ODU 300\PL5 Standard\Adaptive\HC003OAT",
"ODU 300\PL5 Standard\Adaptive\HC003OAT",
"ODU 300\PL5 Standard\Adaptive\HC004OAT",
"ODU 300\PL5 Standard\Adaptive\HC004OAT",
"ODU 300\PL5 Standard\Adaptive\HC004OAT",
"ODU 300\PL5 Standard\Adaptive\HC004OAT",
"ODU 300\PL5 Standard\Adaptive\HC004OAT",
"ODU 300\PL5 Standard\Adaptive\HC005OAT",
"ODU 300\PL5 Standard\Adaptive\HC005OAT",
"ODU 300\PL5 Standard\Adaptive\HC005OAT",
"ODU 300\PL5 Standard\Adaptive\HC006OAT",
"ODU 300\PL5 Standard\Adaptive\HC006OAT",
"ODU 300\PL5 Standard\Adaptive\HC006OAT",
"ODU 300\PL5 Standard\Adaptive\HC006OAT",
"ODU 300\PL5 Standard\Adaptive\HC006OAT",
"ODU 300\PL5 Standard\Adaptive\HC007OAT",
"ODU 300\PL5 Standard\Adaptive\HC007OAT",
"ODU 300\PL5 Standard\Adaptive\HC007OAT",
"ODU 300\PL5 Standard\Adaptive\HC008OAT",
"ODU 300\PL5 Standard\Adaptive\HC008OAT",
"ODU 300\PL5 Standard\Adaptive\HC008OAT",
"ODU 300\PL5 Standard\Adaptive\HC008OAT",
"ODU 300\PL5 Standard\Adaptive\HC008OAT",
"ODU 300\PL5 Standard\Adaptive\HC009OAT",
"ODU 300\PL5 Standard\Adaptive\HC009OAT",
"ODU 300\PL5 Standard\Adaptive\HC009OAT",
"ODU 300\PL5 Standard\Adaptive\HC010OAT",
"ODU 300\PL5 Standard\Adaptive\HC010OAT",
"ODU 300\PL5 Standard\Adaptive\HC010OAT",
"ODU 300\PL5 Standard\Adaptive\HC010OAT",
"ODU 300\PL5 Standard\Adaptive\HC010OAT",
"ODU 300\PL5 Standard\Fixed\HC001OFT",
"ODU 300\PL5 Standard\Fixed\HC002OFT",
"ODU 300\PL5 Standard\Fixed\HC003OFT",
"ODU 300\PL5 Standard\Fixed\HC004OFT",
"ODU 300\PL5 Standard\Fixed\HC005OFT",
"ODU 300\PL5 Standard\Fixed\HC006OFT",
"ODU 300\PL5 Standard\Fixed\HC007OFT",
"ODU 300\PL5 Standard\Fixed\HC008OFT",
"ODU 300\PL5 Standard\Fixed\HC009OFT",
"ODU 300\PL5 Standard\Fixed\HC010OFT",
"ODU 300\PL5 Standard\Fixed\HC011OFT",
"ODU 300\PL5 Standard\Fixed\HC012OFT",
"ODU 300\PL5 Standard\Fixed\HC013OFT",
"ODU 300\PL5 Standard\Fixed\HC014OFT",
"ODU 300\PL5 Standard\Fixed\HC015OFT",
"ODU 300\PL5 Standard\Fixed\HC016OFT",
"ODU 300\PL5 Standard\Fixed\HC017OFT",
"ODU 300\PL5 Standard\Fixed\HC018OFT",
"ODU 300\PL5 Standard\Fixed\HC019OFT",
"ODU 300\PL5 Standard\Fixed\HC020OFT",
"ODU 300\PL5 Standard\Fixed\HC021OFT",
"ODU 300\PL5 Standard\Fixed\HC022OFT",
"ODU 300\PL5 Standard\Fixed\HC023OFT",
"ODU 300\PL5 Standard\Fixed\HC024OFT",
"ODU 300\PL5 Standard\Fixed\HC025OFT",
"ODU 300\PL5 Standard\Fixed\HC026OFT",
"ODU 300\PL5 Standard\Fixed\HC027OFT",
"ODU 300\PL5 Standard\Fixed\HC028OFT",
"ODU 300\PL5 Standard\Fixed\HC029OFT",
"ODU 300\PL5 Standard\Fixed\HC030OFT",
"ODU 300\PL5 Standard\Fixed\HC031OFT",
"ODU 300\PL5 Standard\Fixed\HC032OFT",
"UBT-m\Adaptive\WVCE80_U_128A2000S_9318",
"UBT-m\Adaptive\WVCE80_U_128A2000S_9318",
"UBT-m\Adaptive\WVCE80_U_128A2000S_9318",
"UBT-m\Adaptive\WVCE80_U_128A2000S_9318",
"UBT-m\Adaptive\WVCE80_U_128A2000S_9318",
"UBT-m\Adaptive\WVCE80_U_128A2000S_9318",
"UBT-m\Adaptive\WVCE80_U_128A2000S_9318",
"UBT-m\Adaptive\WVCE80_U_128A2000S_9318",
"UBT-m\Adaptive\WVCE80_U_256A1000S_6452",
"UBT-m\Adaptive\WVCE80_U_256A1000S_6452",
"UBT-m\Adaptive\WVCE80_U_256A1000S_6452",
"UBT-m\Adaptive\WVCE80_U_256A1000S_6452",
"UBT-m\Adaptive\WVCE80_U_256A1000S_6452",
"UBT-m\Adaptive\WVCE80_U_256A1000S_6452",
"UBT-m\Adaptive\WVCE80_U_256A1000S_6452",
"UBT-m\Adaptive\WVCE80_U_256A1000S_6452",
"UBT-m\Adaptive\WVCE80_U_256A1000S_6452",
"UBT-m\Adaptive\WVCE80_U_256A1250S_7620",
"UBT-m\Adaptive\WVCE80_U_256A1250S_7620",
"UBT-m\Adaptive\WVCE80_U_256A1250S_7620",
"UBT-m\Adaptive\WVCE80_U_256A1250S_7620",
"UBT-m\Adaptive\WVCE80_U_256A1250S_7620",
"UBT-m\Adaptive\WVCE80_U_256A1250S_7620",
"UBT-m\Adaptive\WVCE80_U_256A1250S_7620",
"UBT-m\Adaptive\WVCE80_U_256A1250S_7620",
"UBT-m\Adaptive\WVCE80_U_256A1250S_7620",
"UBT-m\Adaptive\WVCE80_U_256A1500S_8729",
"UBT-m\Adaptive\WVCE80_U_256A1500S_8729",
"UBT-m\Adaptive\WVCE80_U_256A1500S_8729",
"UBT-m\Adaptive\WVCE80_U_256A1500S_8729",
"UBT-m\Adaptive\WVCE80_U_256A1500S_8729",
"UBT-m\Adaptive\WVCE80_U_256A1500S_8729",
"UBT-m\Adaptive\WVCE80_U_256A1500S_8729",
"UBT-m\Adaptive\WVCE80_U_256A1500S_8729",
"UBT-m\Adaptive\WVCE80_U_256A1500S_8729",
"UBT-m\Adaptive\WVCE80_U_256A750S_4849",
"UBT-m\Adaptive\WVCE80_U_256A750S_4849",
"UBT-m\Adaptive\WVCE80_U_256A750S_4849",
"UBT-m\Adaptive\WVCE80_U_256A750S_4849",
"UBT-m\Adaptive\WVCE80_U_256A750S_4849",
"UBT-m\Adaptive\WVCE80_U_256A750S_4849",
"UBT-m\Adaptive\WVCE80_U_256A750S_4849",
"UBT-m\Adaptive\WVCE80_U_256A750S_4849",
"UBT-m\Adaptive\WVCE80_U_256A750S_4849",
"UBT-m\Adaptive\WVCE80_U_32A62S_217",
"UBT-m\Adaptive\WVCE80_U_32A62S_217",
"UBT-m\Adaptive\WVCE80_U_32A62S_217",
"UBT-m\Adaptive\WVCE80_U_512A250S_1624",
"UBT-m\Adaptive\WVCE80_U_512A250S_1624",
"UBT-m\Adaptive\WVCE80_U_512A250S_1624",
"UBT-m\Adaptive\WVCE80_U_512A250S_1624",
"UBT-m\Adaptive\WVCE80_U_512A250S_1624",
"UBT-m\Adaptive\WVCE80_U_512A250S_1624",
"UBT-m\Adaptive\WVCE80_U_512A250S_1624",
"UBT-m\Adaptive\WVCE80_U_512A250S_1624",
"UBT-m\Adaptive\WVCE80_U_512A250S_1624",
"UBT-m\Adaptive\WVCE80_U_512A250S_1677",
"UBT-m\Adaptive\WVCE80_U_512A250S_1677",
"UBT-m\Adaptive\WVCE80_U_512A250S_1677",
"UBT-m\Adaptive\WVCE80_U_512A250S_1677",
"UBT-m\Adaptive\WVCE80_U_512A250S_1677",
"UBT-m\Adaptive\WVCE80_U_512A250S_1677",
"UBT-m\Adaptive\WVCE80_U_512A250S_1677",
"UBT-m\Adaptive\WVCE80_U_512A250S_1677",
"UBT-m\Adaptive\WVCE80_U_512A250S_1677",
"UBT-m\Adaptive\WVCE80_U_512A500S_3450",
"UBT-m\Adaptive\WVCE80_U_512A500S_3450",
"UBT-m\Adaptive\WVCE80_U_512A500S_3450",
"UBT-m\Adaptive\WVCE80_U_512A500S_3450",
"UBT-m\Adaptive\WVCE80_U_512A500S_3450",
"UBT-m\Adaptive\WVCE80_U_512A500S_3450",
"UBT-m\Adaptive\WVCE80_U_512A500S_3450",
"UBT-m\Adaptive\WVCE80_U_512A500S_3450",
"UBT-m\Adaptive\WVCE80_U_512A500S_3450",
"UBT-m\Adaptive\WVCE80_U_512A500S_3450",
"UBT-m\Adaptive\WVCE80_U_64A125S_542",
"UBT-m\Adaptive\WVCE80_U_64A125S_542",
"UBT-m\Adaptive\WVCE80_U_64A125S_542",
"UBT-m\Adaptive\WVCE80_U_64A125S_542",
"UBT-m\Adaptive\WVCE80_U_64A125S_542",
"UBT-m\Fixed\WVCE80_U_128F1000S_5645",
"UBT-m\Fixed\WVCE80_U_128F1250S_6667",
"UBT-m\Fixed\WVCE80_U_128F1500S_7638",
"UBT-m\Fixed\WVCE80_U_128F2000S_9318",
"UBT-m\Fixed\WVCE80_U_128F250S_1263",
"UBT-m\Fixed\WVCE80_U_128F250S_1304",
"UBT-m\Fixed\WVCE80_U_128F500S_2683",
"UBT-m\Fixed\WVCE80_U_128F750S_4243",
"UBT-m\Fixed\WVCE80_U_16F1000S_3225",
"UBT-m\Fixed\WVCE80_U_16F1250S_3809",
"UBT-m\Fixed\WVCE80_U_16F125S_361",
"UBT-m\Fixed\WVCE80_U_16F1500S_4364",
"UBT-m\Fixed\WVCE80_U_16F2000S_5632",
"UBT-m\Fixed\WVCE80_U_16F250S_721",
"UBT-m\Fixed\WVCE80_U_16F250S_745",
"UBT-m\Fixed\WVCE80_U_16F500S_1533",
"UBT-m\Fixed\WVCE80_U_16F62S_173",
"UBT-m\Fixed\WVCE80_U_16F750S_2424",
"UBT-m\Fixed\WVCE80_U_256F1000S_6452",
"UBT-m\Fixed\WVCE80_U_256F1250S_7620",
"UBT-m\Fixed\WVCE80_U_256F1500S_8729",
"UBT-m\Fixed\WVCE80_U_256F250S_1443",
"UBT-m\Fixed\WVCE80_U_256F250S_1490",
"UBT-m\Fixed\WVCE80_U_256F500S_3067",
"UBT-m\Fixed\WVCE80_U_256F750S_4849",
"UBT-m\Fixed\WVCE80_U_32F1000S_4032",
"UBT-m\Fixed\WVCE80_U_32F1250S_4762",
"UBT-m\Fixed\WVCE80_U_32F125S_451",
"UBT-m\Fixed\WVCE80_U_32F1500S_5455",
"UBT-m\Fixed\WVCE80_U_32F2000S_7040",
"UBT-m\Fixed\WVCE80_U_32F250S_902",
"UBT-m\Fixed\WVCE80_U_32F250S_931",
"UBT-m\Fixed\WVCE80_U_32F500S_1916",
"UBT-m\Fixed\WVCE80_U_32F62S_217",
"UBT-m\Fixed\WVCE80_U_32F750S_3031",
"UBT-m\Fixed\WVCE80_U_512F250S_1624",
"UBT-m\Fixed\WVCE80_U_512F250S_1677",
"UBT-m\Fixed\WVCE80_U_512F500S_3450",
"UBT-m\Fixed\WVCE80_U_64F1000S_4839",
"UBT-m\Fixed\WVCE80_U_64F1250S_5714",
"UBT-m\Fixed\WVCE80_U_64F125S_542",
"UBT-m\Fixed\WVCE80_U_64F1500S_6546",
"UBT-m\Fixed\WVCE80_U_64F2000S_8449",
"UBT-m\Fixed\WVCE80_U_64F250S_1082",
"UBT-m\Fixed\WVCE80_U_64F250S_1117",
"UBT-m\Fixed\WVCE80_U_64F500S_2300",
"UBT-m\Fixed\WVCE80_U_64F750S_3637",
"UBT-m\Fixed\WVCE80_U_BF1000S_805",
"UBT-m\Fixed\WVCE80_U_BF1250S_951",
"UBT-m\Fixed\WVCE80_U_BF125S_90",
"UBT-m\Fixed\WVCE80_U_BF1500S_1090",
"UBT-m\Fixed\WVCE80_U_BF2000S_1407",
"UBT-m\Fixed\WVCE80_U_BF250S_179",
"UBT-m\Fixed\WVCE80_U_BF250S_185",
"UBT-m\Fixed\WVCE80_U_BF500S_382",
"UBT-m\Fixed\WVCE80_U_BF750S_605",
"UBT-m\Fixed\WVCE80_U_QF1000S_1612",
"UBT-m\Fixed\WVCE80_U_QF1250S_1904",
"UBT-m\Fixed\WVCE80_U_QF125S_180",
"UBT-m\Fixed\WVCE80_U_QF1500S_2181",
"UBT-m\Fixed\WVCE80_U_QF2000S_2815",
"UBT-m\Fixed\WVCE80_U_QF250S_360",
"UBT-m\Fixed\WVCE80_U_QF250S_372",
"UBT-m\Fixed\WVCE80_U_QF500S_766",
"UBT-m\Fixed\WVCE80_U_QF62S_86",
"UBT-m\Fixed\WVCE80_U_QF750S_1211",
"UBT-S_T\Adaptive\WVCE07_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE07_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE07_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE07_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE07_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE07_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE07_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE07_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE07_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE08_U_2048A10S_82_N",
"UBT-S_T\Adaptive\WVCE08_U_2048A10S_82_N",
"UBT-S_T\Adaptive\WVCE08_U_2048A10S_82_N",
"UBT-S_T\Adaptive\WVCE08_U_2048A10S_82_N",
"UBT-S_T\Adaptive\WVCE08_U_2048A10S_82_N",
"UBT-S_T\Adaptive\WVCE08_U_2048A10S_82_N",
"UBT-S_T\Adaptive\WVCE08_U_2048A10S_82_N",
"UBT-S_T\Adaptive\WVCE08_U_2048A10S_82_N",
"UBT-S_T\Adaptive\WVCE08_U_2048A10S_82_N",
"UBT-S_T\Adaptive\WVCE08_U_2048A10S_82_N7",
"UBT-S_T\Adaptive\WVCE08_U_2048A10S_82_N7",
"UBT-S_T\Adaptive\WVCE08_U_2048A10S_82_N7",
"UBT-S_T\Adaptive\WVCE08_U_2048A10S_82_N7",
"UBT-S_T\Adaptive\WVCE08_U_2048A10S_82_N7",
"UBT-S_T\Adaptive\WVCE08_U_2048A10S_82_N7",
"UBT-S_T\Adaptive\WVCE08_U_2048A10S_82_N7",
"UBT-S_T\Adaptive\WVCE08_U_2048A10S_82_N7",
"UBT-S_T\Adaptive\WVCE08_U_2048A10S_82_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A30S_283_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A40S_371_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A40S_371_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A40S_371_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A40S_371_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A40S_371_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A40S_371_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A40S_371_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A40S_371_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A40S_371_N7",
"UBT-S_T\Adaptive\WVCE08_U_4096A40S_371_N7",
"UBT-S_T\Adaptive\WVCE11_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE11_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE11_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE11_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE11_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE11_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE11_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE11_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE11_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE11_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE11_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE11_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE11_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE11_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE11_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE11_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE11_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE11_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE11_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE11_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE11_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE11_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE11_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE11_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE11_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE11_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE11_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE11_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE11_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE11_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE11_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE11_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE11_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE11_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE11_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE11_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE11_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE11_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE11_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE11_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE11_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE11_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE11_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE11_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE11_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE11_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE11_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE11_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE11_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE13_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE13_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE13_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE13_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE13_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE13_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE13_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE13_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE13_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE13_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE13_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE13_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE13_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE13_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE13_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE13_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE13_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE13_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE13_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE13_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE13_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE13_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE13_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE13_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE13_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE13_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE13_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE13_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE13_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE13_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE13_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE13_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE13_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE13_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE13_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE13_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE13_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE13_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE13_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE13_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE13_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE13_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE13_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE13_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE13_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE13_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE13_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE13_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE13_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE15_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE15_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE15_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE15_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE15_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE15_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE15_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE15_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE15_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE15_U_2048A20S_164",
"UBT-S_T\Adaptive\WVCE15_U_2048A20S_164",
"UBT-S_T\Adaptive\WVCE15_U_2048A20S_164",
"UBT-S_T\Adaptive\WVCE15_U_2048A20S_164",
"UBT-S_T\Adaptive\WVCE15_U_2048A20S_164",
"UBT-S_T\Adaptive\WVCE15_U_2048A20S_164",
"UBT-S_T\Adaptive\WVCE15_U_2048A20S_164",
"UBT-S_T\Adaptive\WVCE15_U_2048A20S_164",
"UBT-S_T\Adaptive\WVCE15_U_2048A20S_164",
"UBT-S_T\Adaptive\WVCE15_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE15_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE15_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE15_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE15_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE15_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE15_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE15_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE15_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE15_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE15_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE15_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE15_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE15_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE15_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE15_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE15_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE15_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE15_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE15_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE15_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE15_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE15_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE15_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE15_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE15_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE15_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE15_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE15_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE15_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE18_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE18_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE18_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE18_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE18_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE18_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE18_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE18_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE18_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE18_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE18_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE18_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE18_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE18_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE18_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE18_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE18_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE18_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE18_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE18_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE18_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE18_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE18_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE18_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE18_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE18_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE18_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE18_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE18_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE18_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE18_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE18_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE18_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE18_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE18_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE18_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE18_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE18_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE18_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE18_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE18_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE18_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE18_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE18_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE18_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE18_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE18_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE18_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE18_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE18_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE18_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE18_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE18_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE18_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE18_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE18_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE18_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE18_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE18_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE23_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE23_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE23_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE23_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE23_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE23_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE23_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE23_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE23_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE23_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE23_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE23_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE23_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE23_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE23_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE23_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE23_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE23_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE23_U_4096A20S_179",
"UBT-S_T\Adaptive\WVCE23_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE23_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE23_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE23_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE23_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE23_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE23_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE23_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE23_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE23_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE23_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE23_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE23_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE23_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE23_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE23_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE23_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE23_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE23_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE23_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE23_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE23_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE23_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE23_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE23_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE23_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE23_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE23_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE23_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE23_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE24_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE24_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE24_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE24_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE24_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE24_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE24_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE24_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE24_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE24_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE24_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE24_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE24_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE24_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE24_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE24_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE24_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE24_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE24_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE24_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE28_U_1024A10S_75",
"UBT-S_T\Adaptive\WVCE28_U_1024A10S_75",
"UBT-S_T\Adaptive\WVCE28_U_1024A10S_75",
"UBT-S_T\Adaptive\WVCE28_U_1024A10S_75",
"UBT-S_T\Adaptive\WVCE28_U_1024A10S_75",
"UBT-S_T\Adaptive\WVCE28_U_1024A10S_75",
"UBT-S_T\Adaptive\WVCE28_U_1024A10S_75",
"UBT-S_T\Adaptive\WVCE28_U_1024A10S_75",
"UBT-S_T\Adaptive\WVCE28_U_2048A80S_657",
"UBT-S_T\Adaptive\WVCE28_U_2048A80S_657",
"UBT-S_T\Adaptive\WVCE28_U_2048A80S_657",
"UBT-S_T\Adaptive\WVCE28_U_2048A80S_657",
"UBT-S_T\Adaptive\WVCE28_U_2048A80S_657",
"UBT-S_T\Adaptive\WVCE28_U_2048A80S_657",
"UBT-S_T\Adaptive\WVCE28_U_2048A80S_657",
"UBT-S_T\Adaptive\WVCE28_U_2048A80S_657",
"UBT-S_T\Adaptive\WVCE28_U_2048A80S_657",
"UBT-S_T\Adaptive\WVCE28_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE28_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE28_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE28_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE28_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE28_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE28_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE28_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE28_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE28_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE28_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE28_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE28_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE28_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE28_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE28_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE28_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE28_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE28_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE28_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE28_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE28_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE28_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE28_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE28_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE28_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE28_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE28_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE28_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE28_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE28_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE28_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE28_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE28_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE28_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE28_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE28_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE28_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE28_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE28_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE38_U_1024A10S_75",
"UBT-S_T\Adaptive\WVCE38_U_1024A10S_75",
"UBT-S_T\Adaptive\WVCE38_U_1024A10S_75",
"UBT-S_T\Adaptive\WVCE38_U_1024A10S_75",
"UBT-S_T\Adaptive\WVCE38_U_1024A10S_75",
"UBT-S_T\Adaptive\WVCE38_U_1024A10S_75",
"UBT-S_T\Adaptive\WVCE38_U_1024A10S_75",
"UBT-S_T\Adaptive\WVCE38_U_1024A10S_75",
"UBT-S_T\Adaptive\WVCE38_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE38_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE38_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE38_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE38_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE38_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE38_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE38_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE38_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE38_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE38_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE38_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE38_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE38_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE38_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE38_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE38_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE38_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE38_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE38_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE38_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE38_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE38_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE38_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE38_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE38_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE38_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE38_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE38_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE38_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE42_U_2048A100S_868",
"UBT-S_T\Adaptive\WVCE42_U_2048A100S_868",
"UBT-S_T\Adaptive\WVCE42_U_2048A100S_868",
"UBT-S_T\Adaptive\WVCE42_U_2048A100S_868",
"UBT-S_T\Adaptive\WVCE42_U_2048A100S_868",
"UBT-S_T\Adaptive\WVCE42_U_2048A100S_868",
"UBT-S_T\Adaptive\WVCE42_U_2048A100S_868",
"UBT-S_T\Adaptive\WVCE42_U_2048A100S_868",
"UBT-S_T\Adaptive\WVCE42_U_2048A100S_868",
"UBT-S_T\Adaptive\WVCE42_U_2048A30S_261",
"UBT-S_T\Adaptive\WVCE42_U_2048A30S_261",
"UBT-S_T\Adaptive\WVCE42_U_2048A30S_261",
"UBT-S_T\Adaptive\WVCE42_U_2048A30S_261",
"UBT-S_T\Adaptive\WVCE42_U_2048A30S_261",
"UBT-S_T\Adaptive\WVCE42_U_2048A30S_261",
"UBT-S_T\Adaptive\WVCE42_U_2048A30S_261",
"UBT-S_T\Adaptive\WVCE42_U_2048A30S_261",
"UBT-S_T\Adaptive\WVCE42_U_2048A30S_261",
"UBT-S_T\Adaptive\WVCE42_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE42_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE42_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE42_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE42_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE42_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE42_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE42_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE42_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE42_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE42_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE42_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE42_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE42_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE42_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE42_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE42_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE42_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE42_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE42_U_4096A50S_464",
"UBT-S_T\Adaptive\WVCE42_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE42_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE42_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE42_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE42_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE42_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE42_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE42_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE42_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE42_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE58_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE58_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE58_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE58_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE58_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE58_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE58_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE58_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE58_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE58_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE58_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE58_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE58_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE58_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE58_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE58_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE58_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE58_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE58_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE61_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE61_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE61_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE61_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE61_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE61_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE61_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE61_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE61_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE61_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE61_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE61_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE61_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE61_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE61_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE61_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE61_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE61_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE61_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE61_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE61_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE61_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE61_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE61_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE61_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE61_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE61_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE61_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE61_U_4096A40S_371",
"UBT-S_T\Adaptive\WVCE61_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE61_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE61_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE61_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE61_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE61_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE61_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE61_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE61_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE61_U_4096A60S_508",
"UBT-S_T\Adaptive\WVCE61_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE61_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE61_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE61_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE61_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE61_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE61_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE61_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE61_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE61_U_4096A80S_717",
"UBT-S_T\Adaptive\WVCE67_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE67_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE67_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE67_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE67_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE67_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE67_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE67_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE67_U_2048A10S_82",
"UBT-S_T\Adaptive\WVCE67_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE67_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE67_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE67_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE67_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE67_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE67_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE67_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE67_U_4096A30S_283",
"UBT-S_T\Adaptive\WVCE67_U_4096A30S_283",
"UBT-S_T\Fixed\WVCE07_U_1024F10S_75",
"UBT-S_T\Fixed\WVCE07_U_128F10S_54",
"UBT-S_T\Fixed\WVCE07_U_16F10S_29",
"UBT-S_T\Fixed\WVCE07_U_2048F10S_82",
"UBT-S_T\Fixed\WVCE07_U_256F10S_62",
"UBT-S_T\Fixed\WVCE07_U_32F10S_37",
"UBT-S_T\Fixed\WVCE07_U_512F10S_67",
"UBT-S_T\Fixed\WVCE07_U_64F10S_46",
"UBT-S_T\Fixed\WVCE07_U_QF10S_14",
"UBT-S_T\Fixed\WVCE08_U_1024F10S_75_N",
"UBT-S_T\Fixed\WVCE08_U_1024F10S_75_N7",
"UBT-S_T\Fixed\WVCE08_U_1024F30S_236_N",
"UBT-S_T\Fixed\WVCE08_U_1024F30S_236_N7",
"UBT-S_T\Fixed\WVCE08_U_1024F40S_309_N7",
"UBT-S_T\Fixed\WVCE08_U_128F10S_54_N",
"UBT-S_T\Fixed\WVCE08_U_128F10S_54_N7",
"UBT-S_T\Fixed\WVCE08_U_128F30S_168_N",
"UBT-S_T\Fixed\WVCE08_U_128F30S_168_N7",
"UBT-S_T\Fixed\WVCE08_U_128F40S_229_N7",
"UBT-S_T\Fixed\WVCE08_U_16F10S_29_N",
"UBT-S_T\Fixed\WVCE08_U_16F10S_29_N7",
"UBT-S_T\Fixed\WVCE08_U_16F30S_91_N",
"UBT-S_T\Fixed\WVCE08_U_16F30S_91_N7",
"UBT-S_T\Fixed\WVCE08_U_16F40S_123_N7",
"UBT-S_T\Fixed\WVCE08_U_2048F10S_82_N",
"UBT-S_T\Fixed\WVCE08_U_2048F10S_82_N7",
"UBT-S_T\Fixed\WVCE08_U_2048F30S_261_N",
"UBT-S_T\Fixed\WVCE08_U_2048F30S_261_N7",
"UBT-S_T\Fixed\WVCE08_U_2048F40S_343_N7",
"UBT-S_T\Fixed\WVCE08_U_256F10S_62_N",
"UBT-S_T\Fixed\WVCE08_U_256F10S_62_N7",
"UBT-S_T\Fixed\WVCE08_U_256F30S_189_N",
"UBT-S_T\Fixed\WVCE08_U_256F30S_189_N7",
"UBT-S_T\Fixed\WVCE08_U_256F40S_256_N7",
"UBT-S_T\Fixed\WVCE08_U_32F10S_37_N",
"UBT-S_T\Fixed\WVCE08_U_32F10S_37_N7",
"UBT-S_T\Fixed\WVCE08_U_32F30S_114_N",
"UBT-S_T\Fixed\WVCE08_U_32F30S_114_N7",
"UBT-S_T\Fixed\WVCE08_U_32F40S_154_N7",
"UBT-S_T\Fixed\WVCE08_U_512F10S_67_N",
"UBT-S_T\Fixed\WVCE08_U_512F10S_67_N7",
"UBT-S_T\Fixed\WVCE08_U_512F30S_212_N",
"UBT-S_T\Fixed\WVCE08_U_512F30S_212_N7",
"UBT-S_T\Fixed\WVCE08_U_512F40S_284_N7",
"UBT-S_T\Fixed\WVCE08_U_64F10S_46_N",
"UBT-S_T\Fixed\WVCE08_U_64F10S_46_N7",
"UBT-S_T\Fixed\WVCE08_U_64F30S_142_N",
"UBT-S_T\Fixed\WVCE08_U_64F30S_142_N7",
"UBT-S_T\Fixed\WVCE08_U_64F40S_194_N7",
"UBT-S_T\Fixed\WVCE08_U_QF10S_14_N",
"UBT-S_T\Fixed\WVCE08_U_QF10S_14_N7",
"UBT-S_T\Fixed\WVCE08_U_QF30S_45_N",
"UBT-S_T\Fixed\WVCE08_U_QF30S_45_N7",
"UBT-S_T\Fixed\WVCE08_U_QF40S_61_N7",
"UBT-S_T\Fixed\WVCE11_U_1024F10S_75",
"UBT-S_T\Fixed\WVCE11_U_1024F20S_150",
"UBT-S_T\Fixed\WVCE11_U_1024F30S_236",
"UBT-S_T\Fixed\WVCE11_U_1024F40S_309",
"UBT-S_T\Fixed\WVCE11_U_1024F80S_599",
"UBT-S_T\Fixed\WVCE11_U_128F10S_54",
"UBT-S_T\Fixed\WVCE11_U_128F20S_109",
"UBT-S_T\Fixed\WVCE11_U_128F30S_168",
"UBT-S_T\Fixed\WVCE11_U_128F40S_229",
"UBT-S_T\Fixed\WVCE11_U_128F80S_435",
"UBT-S_T\Fixed\WVCE11_U_16F10S_29",
"UBT-S_T\Fixed\WVCE11_U_16F20S_58",
"UBT-S_T\Fixed\WVCE11_U_16F30S_91",
"UBT-S_T\Fixed\WVCE11_U_16F40S_123",
"UBT-S_T\Fixed\WVCE11_U_16F80S_234",
"UBT-S_T\Fixed\WVCE11_U_2048F10S_82",
"UBT-S_T\Fixed\WVCE11_U_2048F20S_164",
"UBT-S_T\Fixed\WVCE11_U_2048F30S_261",
"UBT-S_T\Fixed\WVCE11_U_2048F40S_343",
"UBT-S_T\Fixed\WVCE11_U_2048F80S_657",
"UBT-S_T\Fixed\WVCE11_U_256F10S_62",
"UBT-S_T\Fixed\WVCE11_U_256F20S_124",
"UBT-S_T\Fixed\WVCE11_U_256F30S_189",
"UBT-S_T\Fixed\WVCE11_U_256F40S_256",
"UBT-S_T\Fixed\WVCE11_U_256F80S_499",
"UBT-S_T\Fixed\WVCE11_U_32F10S_37",
"UBT-S_T\Fixed\WVCE11_U_32F20S_73",
"UBT-S_T\Fixed\WVCE11_U_32F30S_114",
"UBT-S_T\Fixed\WVCE11_U_32F40S_154",
"UBT-S_T\Fixed\WVCE11_U_32F80S_293",
"UBT-S_T\Fixed\WVCE11_U_512F10S_67",
"UBT-S_T\Fixed\WVCE11_U_512F20S_135",
"UBT-S_T\Fixed\WVCE11_U_512F30S_212",
"UBT-S_T\Fixed\WVCE11_U_512F40S_284",
"UBT-S_T\Fixed\WVCE11_U_512F80S_540",
"UBT-S_T\Fixed\WVCE11_U_64F10S_46",
"UBT-S_T\Fixed\WVCE11_U_64F20S_92",
"UBT-S_T\Fixed\WVCE11_U_64F30S_142",
"UBT-S_T\Fixed\WVCE11_U_64F40S_194",
"UBT-S_T\Fixed\WVCE11_U_64F80S_367",
"UBT-S_T\Fixed\WVCE11_U_QF10S_14",
"UBT-S_T\Fixed\WVCE11_U_QF20S_29",
"UBT-S_T\Fixed\WVCE11_U_QF30S_45",
"UBT-S_T\Fixed\WVCE11_U_QF40S_61",
"UBT-S_T\Fixed\WVCE11_U_QF80S_117",
"UBT-S_T\Fixed\WVCE13_U_1024F10S_75",
"UBT-S_T\Fixed\WVCE13_U_1024F20S_150",
"UBT-S_T\Fixed\WVCE13_U_1024F30S_236",
"UBT-S_T\Fixed\WVCE13_U_1024F40S_309",
"UBT-S_T\Fixed\WVCE13_U_1024F50S_391",
"UBT-S_T\Fixed\WVCE13_U_128F10S_54",
"UBT-S_T\Fixed\WVCE13_U_128F20S_109",
"UBT-S_T\Fixed\WVCE13_U_128F30S_168",
"UBT-S_T\Fixed\WVCE13_U_128F40S_229",
"UBT-S_T\Fixed\WVCE13_U_128F50S_281",
"UBT-S_T\Fixed\WVCE13_U_16F10S_29",
"UBT-S_T\Fixed\WVCE13_U_16F20S_58",
"UBT-S_T\Fixed\WVCE13_U_16F30S_91",
"UBT-S_T\Fixed\WVCE13_U_16F40S_123",
"UBT-S_T\Fixed\WVCE13_U_16F50S_152",
"UBT-S_T\Fixed\WVCE13_U_2048F10S_82",
"UBT-S_T\Fixed\WVCE13_U_2048F20S_164",
"UBT-S_T\Fixed\WVCE13_U_2048F30S_261",
"UBT-S_T\Fixed\WVCE13_U_2048F40S_343",
"UBT-S_T\Fixed\WVCE13_U_2048F50S_434",
"UBT-S_T\Fixed\WVCE13_U_256F10S_62",
"UBT-S_T\Fixed\WVCE13_U_256F20S_124",
"UBT-S_T\Fixed\WVCE13_U_256F30S_189",
"UBT-S_T\Fixed\WVCE13_U_256F40S_256",
"UBT-S_T\Fixed\WVCE13_U_256F50S_321",
"UBT-S_T\Fixed\WVCE13_U_32F10S_37",
"UBT-S_T\Fixed\WVCE13_U_32F20S_73",
"UBT-S_T\Fixed\WVCE13_U_32F30S_114",
"UBT-S_T\Fixed\WVCE13_U_32F40S_154",
"UBT-S_T\Fixed\WVCE13_U_32F50S_190",
"UBT-S_T\Fixed\WVCE13_U_512F10S_67",
"UBT-S_T\Fixed\WVCE13_U_512F20S_135",
"UBT-S_T\Fixed\WVCE13_U_512F30S_212",
"UBT-S_T\Fixed\WVCE13_U_512F40S_284",
"UBT-S_T\Fixed\WVCE13_U_512F50S_360",
"UBT-S_T\Fixed\WVCE13_U_64F10S_46",
"UBT-S_T\Fixed\WVCE13_U_64F20S_92",
"UBT-S_T\Fixed\WVCE13_U_64F30S_142",
"UBT-S_T\Fixed\WVCE13_U_64F40S_194",
"UBT-S_T\Fixed\WVCE13_U_64F50S_239",
"UBT-S_T\Fixed\WVCE13_U_QF10S_14",
"UBT-S_T\Fixed\WVCE13_U_QF20S_29",
"UBT-S_T\Fixed\WVCE13_U_QF30S_45",
"UBT-S_T\Fixed\WVCE13_U_QF40S_61",
"UBT-S_T\Fixed\WVCE13_U_QF50S_76",
"UBT-S_T\Fixed\WVCE15_U_1024F10S_75",
"UBT-S_T\Fixed\WVCE15_U_1024F20S_150",
"UBT-S_T\Fixed\WVCE15_U_1024F30S_236",
"UBT-S_T\Fixed\WVCE15_U_1024F40S_309",
"UBT-S_T\Fixed\WVCE15_U_1024F50S_391",
"UBT-S_T\Fixed\WVCE15_U_128F10S_54",
"UBT-S_T\Fixed\WVCE15_U_128F20S_109",
"UBT-S_T\Fixed\WVCE15_U_128F30S_168",
"UBT-S_T\Fixed\WVCE15_U_128F40S_229",
"UBT-S_T\Fixed\WVCE15_U_128F50S_281",
"UBT-S_T\Fixed\WVCE15_U_16F10S_29",
"UBT-S_T\Fixed\WVCE15_U_16F20S_58",
"UBT-S_T\Fixed\WVCE15_U_16F30S_91",
"UBT-S_T\Fixed\WVCE15_U_16F40S_123",
"UBT-S_T\Fixed\WVCE15_U_16F50S_152",
"UBT-S_T\Fixed\WVCE15_U_2048F10S_82",
"UBT-S_T\Fixed\WVCE15_U_2048F20S_164",
"UBT-S_T\Fixed\WVCE15_U_2048F30S_261",
"UBT-S_T\Fixed\WVCE15_U_2048F40S_343",
"UBT-S_T\Fixed\WVCE15_U_2048F50S_434",
"UBT-S_T\Fixed\WVCE15_U_256F10S_62",
"UBT-S_T\Fixed\WVCE15_U_256F20S_124",
"UBT-S_T\Fixed\WVCE15_U_256F30S_189",
"UBT-S_T\Fixed\WVCE15_U_256F40S_256",
"UBT-S_T\Fixed\WVCE15_U_256F50S_321",
"UBT-S_T\Fixed\WVCE15_U_32F10S_37",
"UBT-S_T\Fixed\WVCE15_U_32F20S_73",
"UBT-S_T\Fixed\WVCE15_U_32F30S_114",
"UBT-S_T\Fixed\WVCE15_U_32F40S_154",
"UBT-S_T\Fixed\WVCE15_U_32F50S_190",
"UBT-S_T\Fixed\WVCE15_U_512F10S_67",
"UBT-S_T\Fixed\WVCE15_U_512F20S_135",
"UBT-S_T\Fixed\WVCE15_U_512F30S_212",
"UBT-S_T\Fixed\WVCE15_U_512F40S_284",
"UBT-S_T\Fixed\WVCE15_U_512F50S_360",
"UBT-S_T\Fixed\WVCE15_U_64F10S_46",
"UBT-S_T\Fixed\WVCE15_U_64F20S_92",
"UBT-S_T\Fixed\WVCE15_U_64F30S_142",
"UBT-S_T\Fixed\WVCE15_U_64F40S_194",
"UBT-S_T\Fixed\WVCE15_U_64F50S_239",
"UBT-S_T\Fixed\WVCE15_U_QF10S_14",
"UBT-S_T\Fixed\WVCE15_U_QF20S_29",
"UBT-S_T\Fixed\WVCE15_U_QF30S_45",
"UBT-S_T\Fixed\WVCE15_U_QF40S_61",
"UBT-S_T\Fixed\WVCE15_U_QF50S_76",
"UBT-S_T\Fixed\WVCE18_U_1024F10S_75",
"UBT-S_T\Fixed\WVCE18_U_1024F20S_150",
"UBT-S_T\Fixed\WVCE18_U_1024F30S_236",
"UBT-S_T\Fixed\WVCE18_U_1024F40S_309",
"UBT-S_T\Fixed\WVCE18_U_1024F50S_391",
"UBT-S_T\Fixed\WVCE18_U_1024F80S_599",
"UBT-S_T\Fixed\WVCE18_U_128F10S_54",
"UBT-S_T\Fixed\WVCE18_U_128F20S_109",
"UBT-S_T\Fixed\WVCE18_U_128F30S_168",
"UBT-S_T\Fixed\WVCE18_U_128F40S_229",
"UBT-S_T\Fixed\WVCE18_U_128F50S_281",
"UBT-S_T\Fixed\WVCE18_U_128F80S_435",
"UBT-S_T\Fixed\WVCE18_U_16F10S_29",
"UBT-S_T\Fixed\WVCE18_U_16F20S_58",
"UBT-S_T\Fixed\WVCE18_U_16F30S_91",
"UBT-S_T\Fixed\WVCE18_U_16F40S_123",
"UBT-S_T\Fixed\WVCE18_U_16F50S_152",
"UBT-S_T\Fixed\WVCE18_U_16F80S_234",
"UBT-S_T\Fixed\WVCE18_U_2048F10S_82",
"UBT-S_T\Fixed\WVCE18_U_2048F20S_164",
"UBT-S_T\Fixed\WVCE18_U_2048F30S_261",
"UBT-S_T\Fixed\WVCE18_U_2048F40S_343",
"UBT-S_T\Fixed\WVCE18_U_2048F50S_434",
"UBT-S_T\Fixed\WVCE18_U_2048F80S_657",
"UBT-S_T\Fixed\WVCE18_U_256F10S_62",
"UBT-S_T\Fixed\WVCE18_U_256F20S_124",
"UBT-S_T\Fixed\WVCE18_U_256F30S_189",
"UBT-S_T\Fixed\WVCE18_U_256F40S_256",
"UBT-S_T\Fixed\WVCE18_U_256F50S_321",
"UBT-S_T\Fixed\WVCE18_U_256F80S_499",
"UBT-S_T\Fixed\WVCE18_U_32F10S_37",
"UBT-S_T\Fixed\WVCE18_U_32F20S_73",
"UBT-S_T\Fixed\WVCE18_U_32F30S_114",
"UBT-S_T\Fixed\WVCE18_U_32F40S_154",
"UBT-S_T\Fixed\WVCE18_U_32F50S_190",
"UBT-S_T\Fixed\WVCE18_U_32F80S_293",
"UBT-S_T\Fixed\WVCE18_U_512F10S_67",
"UBT-S_T\Fixed\WVCE18_U_512F20S_135",
"UBT-S_T\Fixed\WVCE18_U_512F30S_212",
"UBT-S_T\Fixed\WVCE18_U_512F40S_284",
"UBT-S_T\Fixed\WVCE18_U_512F50S_360",
"UBT-S_T\Fixed\WVCE18_U_512F80S_540",
"UBT-S_T\Fixed\WVCE18_U_64F10S_46",
"UBT-S_T\Fixed\WVCE18_U_64F20S_92",
"UBT-S_T\Fixed\WVCE18_U_64F30S_142",
"UBT-S_T\Fixed\WVCE18_U_64F40S_194",
"UBT-S_T\Fixed\WVCE18_U_64F50S_239",
"UBT-S_T\Fixed\WVCE18_U_64F80S_367",
"UBT-S_T\Fixed\WVCE18_U_QF10S_14",
"UBT-S_T\Fixed\WVCE18_U_QF20S_29",
"UBT-S_T\Fixed\WVCE18_U_QF30S_45",
"UBT-S_T\Fixed\WVCE18_U_QF40S_61",
"UBT-S_T\Fixed\WVCE18_U_QF50S_76",
"UBT-S_T\Fixed\WVCE18_U_QF80S_117",
"UBT-S_T\Fixed\WVCE23_U_1024F10S_75",
"UBT-S_T\Fixed\WVCE23_U_1024F20S_150",
"UBT-S_T\Fixed\WVCE23_U_1024F30S_236",
"UBT-S_T\Fixed\WVCE23_U_1024F40S_309",
"UBT-S_T\Fixed\WVCE23_U_1024F50S_391",
"UBT-S_T\Fixed\WVCE23_U_128F10S_54",
"UBT-S_T\Fixed\WVCE23_U_128F20S_109",
"UBT-S_T\Fixed\WVCE23_U_128F30S_168",
"UBT-S_T\Fixed\WVCE23_U_128F40S_229",
"UBT-S_T\Fixed\WVCE23_U_128F50S_281",
"UBT-S_T\Fixed\WVCE23_U_16F10S_29",
"UBT-S_T\Fixed\WVCE23_U_16F20S_58",
"UBT-S_T\Fixed\WVCE23_U_16F30S_91",
"UBT-S_T\Fixed\WVCE23_U_16F40S_123",
"UBT-S_T\Fixed\WVCE23_U_16F50S_152",
"UBT-S_T\Fixed\WVCE23_U_2048F10S_82",
"UBT-S_T\Fixed\WVCE23_U_2048F20S_164",
"UBT-S_T\Fixed\WVCE23_U_2048F30S_261",
"UBT-S_T\Fixed\WVCE23_U_2048F40S_343",
"UBT-S_T\Fixed\WVCE23_U_2048F50S_434",
"UBT-S_T\Fixed\WVCE23_U_256F10S_62",
"UBT-S_T\Fixed\WVCE23_U_256F20S_124",
"UBT-S_T\Fixed\WVCE23_U_256F30S_189",
"UBT-S_T\Fixed\WVCE23_U_256F40S_256",
"UBT-S_T\Fixed\WVCE23_U_256F50S_321",
"UBT-S_T\Fixed\WVCE23_U_32F10S_37",
"UBT-S_T\Fixed\WVCE23_U_32F20S_73",
"UBT-S_T\Fixed\WVCE23_U_32F30S_114",
"UBT-S_T\Fixed\WVCE23_U_32F40S_154",
"UBT-S_T\Fixed\WVCE23_U_32F50S_190",
"UBT-S_T\Fixed\WVCE23_U_512F10S_67",
"UBT-S_T\Fixed\WVCE23_U_512F20S_135",
"UBT-S_T\Fixed\WVCE23_U_512F30S_212",
"UBT-S_T\Fixed\WVCE23_U_512F40S_284",
"UBT-S_T\Fixed\WVCE23_U_512F50S_360",
"UBT-S_T\Fixed\WVCE23_U_64F10S_46",
"UBT-S_T\Fixed\WVCE23_U_64F20S_92",
"UBT-S_T\Fixed\WVCE23_U_64F30S_142",
"UBT-S_T\Fixed\WVCE23_U_64F40S_194",
"UBT-S_T\Fixed\WVCE23_U_64F50S_239",
"UBT-S_T\Fixed\WVCE23_U_QF10S_14",
"UBT-S_T\Fixed\WVCE23_U_QF20S_29",
"UBT-S_T\Fixed\WVCE23_U_QF30S_45",
"UBT-S_T\Fixed\WVCE23_U_QF40S_61",
"UBT-S_T\Fixed\WVCE23_U_QF50S_76",
"UBT-S_T\Fixed\WVCE24_U_1024F40S_309",
"UBT-S_T\Fixed\WVCE24_U_1024F80S_599",
"UBT-S_T\Fixed\WVCE24_U_128F40S_229",
"UBT-S_T\Fixed\WVCE24_U_128F80S_435",
"UBT-S_T\Fixed\WVCE24_U_16F40S_123",
"UBT-S_T\Fixed\WVCE24_U_16F80S_234",
"UBT-S_T\Fixed\WVCE24_U_2048F40S_343",
"UBT-S_T\Fixed\WVCE24_U_2048F80S_657",
"UBT-S_T\Fixed\WVCE24_U_256F40S_256",
"UBT-S_T\Fixed\WVCE24_U_256F80S_499",
"UBT-S_T\Fixed\WVCE24_U_32F40S_154",
"UBT-S_T\Fixed\WVCE24_U_32F80S_293",
"UBT-S_T\Fixed\WVCE24_U_512F40S_284",
"UBT-S_T\Fixed\WVCE24_U_512F80S_540",
"UBT-S_T\Fixed\WVCE24_U_64F40S_194",
"UBT-S_T\Fixed\WVCE24_U_64F80S_367",
"UBT-S_T\Fixed\WVCE24_U_QF40S_61",
"UBT-S_T\Fixed\WVCE24_U_QF80S_117",
"UBT-S_T\Fixed\WVCE28_U_1024F10S_75",
"UBT-S_T\Fixed\WVCE28_U_1024F30S_236",
"UBT-S_T\Fixed\WVCE28_U_1024F40S_309",
"UBT-S_T\Fixed\WVCE28_U_1024F50S_391",
"UBT-S_T\Fixed\WVCE28_U_1024F60S_423",
"UBT-S_T\Fixed\WVCE28_U_1024F80S_599",
"UBT-S_T\Fixed\WVCE28_U_128F10S_54",
"UBT-S_T\Fixed\WVCE28_U_128F30S_168",
"UBT-S_T\Fixed\WVCE28_U_128F40S_229",
"UBT-S_T\Fixed\WVCE28_U_128F50S_281",
"UBT-S_T\Fixed\WVCE28_U_128F60S_307",
"UBT-S_T\Fixed\WVCE28_U_128F80S_435",
"UBT-S_T\Fixed\WVCE28_U_16F10S_29",
"UBT-S_T\Fixed\WVCE28_U_16F30S_91",
"UBT-S_T\Fixed\WVCE28_U_16F40S_123",
"UBT-S_T\Fixed\WVCE28_U_16F50S_152",
"UBT-S_T\Fixed\WVCE28_U_16F60S_166",
"UBT-S_T\Fixed\WVCE28_U_16F80S_234",
"UBT-S_T\Fixed\WVCE28_U_2048F30S_261",
"UBT-S_T\Fixed\WVCE28_U_2048F40S_343",
"UBT-S_T\Fixed\WVCE28_U_2048F50S_434",
"UBT-S_T\Fixed\WVCE28_U_2048F60S_470",
"UBT-S_T\Fixed\WVCE28_U_2048F80S_657",
"UBT-S_T\Fixed\WVCE28_U_256F10S_62",
"UBT-S_T\Fixed\WVCE28_U_256F30S_189",
"UBT-S_T\Fixed\WVCE28_U_256F40S_256",
"UBT-S_T\Fixed\WVCE28_U_256F50S_321",
"UBT-S_T\Fixed\WVCE28_U_256F60S_347",
"UBT-S_T\Fixed\WVCE28_U_256F80S_499",
"UBT-S_T\Fixed\WVCE28_U_32F10S_37",
"UBT-S_T\Fixed\WVCE28_U_32F30S_114",
"UBT-S_T\Fixed\WVCE28_U_32F40S_154",
"UBT-S_T\Fixed\WVCE28_U_32F50S_190",
"UBT-S_T\Fixed\WVCE28_U_32F60S_208",
"UBT-S_T\Fixed\WVCE28_U_32F80S_293",
"UBT-S_T\Fixed\WVCE28_U_512F10S_67",
"UBT-S_T\Fixed\WVCE28_U_512F30S_212",
"UBT-S_T\Fixed\WVCE28_U_512F40S_284",
"UBT-S_T\Fixed\WVCE28_U_512F50S_360",
"UBT-S_T\Fixed\WVCE28_U_512F60S_389",
"UBT-S_T\Fixed\WVCE28_U_512F80S_540",
"UBT-S_T\Fixed\WVCE28_U_64F10S_46",
"UBT-S_T\Fixed\WVCE28_U_64F30S_142",
"UBT-S_T\Fixed\WVCE28_U_64F40S_194",
"UBT-S_T\Fixed\WVCE28_U_64F50S_239",
"UBT-S_T\Fixed\WVCE28_U_64F60S_260",
"UBT-S_T\Fixed\WVCE28_U_64F80S_367",
"UBT-S_T\Fixed\WVCE28_U_QF10S_14",
"UBT-S_T\Fixed\WVCE28_U_QF30S_45",
"UBT-S_T\Fixed\WVCE28_U_QF40S_61",
"UBT-S_T\Fixed\WVCE28_U_QF50S_76",
"UBT-S_T\Fixed\WVCE28_U_QF60S_83",
"UBT-S_T\Fixed\WVCE28_U_QF80S_117",
"UBT-S_T\Fixed\WVCE38_U_1024F10S_75",
"UBT-S_T\Fixed\WVCE38_U_1024F30S_236",
"UBT-S_T\Fixed\WVCE38_U_1024F40S_309",
"UBT-S_T\Fixed\WVCE38_U_1024F50S_391",
"UBT-S_T\Fixed\WVCE38_U_128F10S_54",
"UBT-S_T\Fixed\WVCE38_U_128F30S_168",
"UBT-S_T\Fixed\WVCE38_U_128F40S_229",
"UBT-S_T\Fixed\WVCE38_U_128F50S_281",
"UBT-S_T\Fixed\WVCE38_U_16F10S_29",
"UBT-S_T\Fixed\WVCE38_U_16F30S_91",
"UBT-S_T\Fixed\WVCE38_U_16F40S_123",
"UBT-S_T\Fixed\WVCE38_U_16F50S_152",
"UBT-S_T\Fixed\WVCE38_U_2048F30S_261",
"UBT-S_T\Fixed\WVCE38_U_2048F40S_343",
"UBT-S_T\Fixed\WVCE38_U_2048F50S_434",
"UBT-S_T\Fixed\WVCE38_U_256F10S_62",
"UBT-S_T\Fixed\WVCE38_U_256F30S_189",
"UBT-S_T\Fixed\WVCE38_U_256F40S_256",
"UBT-S_T\Fixed\WVCE38_U_256F50S_321",
"UBT-S_T\Fixed\WVCE38_U_32F10S_37",
"UBT-S_T\Fixed\WVCE38_U_32F30S_114",
"UBT-S_T\Fixed\WVCE38_U_32F40S_154",
"UBT-S_T\Fixed\WVCE38_U_32F50S_190",
"UBT-S_T\Fixed\WVCE38_U_512F10S_67",
"UBT-S_T\Fixed\WVCE38_U_512F30S_212",
"UBT-S_T\Fixed\WVCE38_U_512F40S_284",
"UBT-S_T\Fixed\WVCE38_U_512F50S_360",
"UBT-S_T\Fixed\WVCE38_U_64F10S_46",
"UBT-S_T\Fixed\WVCE38_U_64F30S_142",
"UBT-S_T\Fixed\WVCE38_U_64F40S_194",
"UBT-S_T\Fixed\WVCE38_U_64F50S_239",
"UBT-S_T\Fixed\WVCE38_U_QF10S_14",
"UBT-S_T\Fixed\WVCE38_U_QF30S_45",
"UBT-S_T\Fixed\WVCE38_U_QF40S_61",
"UBT-S_T\Fixed\WVCE38_U_QF50S_76",
"UBT-S_T\Fixed\WVCE42_U_1024F100S_783",
"UBT-S_T\Fixed\WVCE42_U_1024F30S_236",
"UBT-S_T\Fixed\WVCE42_U_1024F40S_309",
"UBT-S_T\Fixed\WVCE42_U_1024F50S_391",
"UBT-S_T\Fixed\WVCE42_U_1024F60S_423",
"UBT-S_T\Fixed\WVCE42_U_128F100S_563",
"UBT-S_T\Fixed\WVCE42_U_128F30S_168",
"UBT-S_T\Fixed\WVCE42_U_128F40S_229",
"UBT-S_T\Fixed\WVCE42_U_128F50S_281",
"UBT-S_T\Fixed\WVCE42_U_128F60S_307",
"UBT-S_T\Fixed\WVCE42_U_16F100S_304",
"UBT-S_T\Fixed\WVCE42_U_16F30S_91",
"UBT-S_T\Fixed\WVCE42_U_16F40S_123",
"UBT-S_T\Fixed\WVCE42_U_16F50S_152",
"UBT-S_T\Fixed\WVCE42_U_16F60S_166",
"UBT-S_T\Fixed\WVCE42_U_2048F100S_868",
"UBT-S_T\Fixed\WVCE42_U_2048F30S_261",
"UBT-S_T\Fixed\WVCE42_U_2048F40S_343",
"UBT-S_T\Fixed\WVCE42_U_2048F50S_434",
"UBT-S_T\Fixed\WVCE42_U_2048F60S_470",
"UBT-S_T\Fixed\WVCE42_U_256F100S_641",
"UBT-S_T\Fixed\WVCE42_U_256F30S_189",
"UBT-S_T\Fixed\WVCE42_U_256F40S_256",
"UBT-S_T\Fixed\WVCE42_U_256F50S_321",
"UBT-S_T\Fixed\WVCE42_U_256F60S_347",
"UBT-S_T\Fixed\WVCE42_U_32F100S_381",
"UBT-S_T\Fixed\WVCE42_U_32F30S_114",
"UBT-S_T\Fixed\WVCE42_U_32F40S_154",
"UBT-S_T\Fixed\WVCE42_U_32F50S_190",
"UBT-S_T\Fixed\WVCE42_U_32F60S_208",
"UBT-S_T\Fixed\WVCE42_U_512F100S_721",
"UBT-S_T\Fixed\WVCE42_U_512F30S_212",
"UBT-S_T\Fixed\WVCE42_U_512F40S_284",
"UBT-S_T\Fixed\WVCE42_U_512F50S_360",
"UBT-S_T\Fixed\WVCE42_U_512F60S_389",
"UBT-S_T\Fixed\WVCE42_U_64F100S_478",
"UBT-S_T\Fixed\WVCE42_U_64F30S_142",
"UBT-S_T\Fixed\WVCE42_U_64F40S_194",
"UBT-S_T\Fixed\WVCE42_U_64F50S_239",
"UBT-S_T\Fixed\WVCE42_U_64F60S_260",
"UBT-S_T\Fixed\WVCE42_U_QF100S_152",
"UBT-S_T\Fixed\WVCE42_U_QF30S_45",
"UBT-S_T\Fixed\WVCE42_U_QF40S_61",
"UBT-S_T\Fixed\WVCE42_U_QF50S_76",
"UBT-S_T\Fixed\WVCE42_U_QF60S_83",
"UBT-S_T\Fixed\WVCE58_U_1024F10S_75",
"UBT-S_T\Fixed\WVCE58_U_1024F30S_236",
"UBT-S_T\Fixed\WVCE58_U_128F10S_54",
"UBT-S_T\Fixed\WVCE58_U_128F30S_168",
"UBT-S_T\Fixed\WVCE58_U_16F10S_29",
"UBT-S_T\Fixed\WVCE58_U_16F30S_91",
"UBT-S_T\Fixed\WVCE58_U_2048F10S_82",
"UBT-S_T\Fixed\WVCE58_U_2048F30S_261",
"UBT-S_T\Fixed\WVCE58_U_256F10S_62",
"UBT-S_T\Fixed\WVCE58_U_256F30S_189",
"UBT-S_T\Fixed\WVCE58_U_32F10S_37",
"UBT-S_T\Fixed\WVCE58_U_32F30S_114",
"UBT-S_T\Fixed\WVCE58_U_512F10S_67",
"UBT-S_T\Fixed\WVCE58_U_512F30S_212",
"UBT-S_T\Fixed\WVCE58_U_64F10S_46",
"UBT-S_T\Fixed\WVCE58_U_64F30S_142",
"UBT-S_T\Fixed\WVCE58_U_QF10S_14",
"UBT-S_T\Fixed\WVCE58_U_QF30S_45",
"UBT-S_T\Fixed\WVCE61_U_1024F10S_75",
"UBT-S_T\Fixed\WVCE61_U_1024F30S_236",
"UBT-S_T\Fixed\WVCE61_U_1024F40S_309",
"UBT-S_T\Fixed\WVCE61_U_1024F60S_423",
"UBT-S_T\Fixed\WVCE61_U_1024F80S_599",
"UBT-S_T\Fixed\WVCE61_U_128F10S_54",
"UBT-S_T\Fixed\WVCE61_U_128F30S_168",
"UBT-S_T\Fixed\WVCE61_U_128F40S_229",
"UBT-S_T\Fixed\WVCE61_U_128F60S_307",
"UBT-S_T\Fixed\WVCE61_U_128F80S_435",
"UBT-S_T\Fixed\WVCE61_U_16F10S_29",
"UBT-S_T\Fixed\WVCE61_U_16F30S_91",
"UBT-S_T\Fixed\WVCE61_U_16F40S_123",
"UBT-S_T\Fixed\WVCE61_U_16F60S_166",
"UBT-S_T\Fixed\WVCE61_U_16F80S_234",
"UBT-S_T\Fixed\WVCE61_U_2048F10S_82",
"UBT-S_T\Fixed\WVCE61_U_2048F30S_261",
"UBT-S_T\Fixed\WVCE61_U_2048F40S_343",
"UBT-S_T\Fixed\WVCE61_U_2048F60S_470",
"UBT-S_T\Fixed\WVCE61_U_2048F80S_657",
"UBT-S_T\Fixed\WVCE61_U_256F10S_62",
"UBT-S_T\Fixed\WVCE61_U_256F30S_189",
"UBT-S_T\Fixed\WVCE61_U_256F40S_256",
"UBT-S_T\Fixed\WVCE61_U_256F60S_347",
"UBT-S_T\Fixed\WVCE61_U_256F80S_499",
"UBT-S_T\Fixed\WVCE61_U_32F10S_37",
"UBT-S_T\Fixed\WVCE61_U_32F30S_114",
"UBT-S_T\Fixed\WVCE61_U_32F40S_154",
"UBT-S_T\Fixed\WVCE61_U_32F60S_208",
"UBT-S_T\Fixed\WVCE61_U_32F80S_293",
"UBT-S_T\Fixed\WVCE61_U_512F10S_67",
"UBT-S_T\Fixed\WVCE61_U_512F30S_212",
"UBT-S_T\Fixed\WVCE61_U_512F40S_284",
"UBT-S_T\Fixed\WVCE61_U_512F60S_389",
"UBT-S_T\Fixed\WVCE61_U_512F80S_540",
"UBT-S_T\Fixed\WVCE61_U_64F10S_46",
"UBT-S_T\Fixed\WVCE61_U_64F30S_142",
"UBT-S_T\Fixed\WVCE61_U_64F40S_194",
"UBT-S_T\Fixed\WVCE61_U_64F60S_260",
"UBT-S_T\Fixed\WVCE61_U_64F80S_367",
"UBT-S_T\Fixed\WVCE61_U_QF10S_14",
"UBT-S_T\Fixed\WVCE61_U_QF30S_45",
"UBT-S_T\Fixed\WVCE61_U_QF40S_61",
"UBT-S_T\Fixed\WVCE61_U_QF60S_83",
"UBT-S_T\Fixed\WVCE61_U_QF80S_117",
"UBT-S_T\Fixed\WVCE67_U_1024F10S_75",
"UBT-S_T\Fixed\WVCE67_U_1024F30S_236",
"UBT-S_T\Fixed\WVCE67_U_128F10S_54",
"UBT-S_T\Fixed\WVCE67_U_128F30S_168",
"UBT-S_T\Fixed\WVCE67_U_16F10S_29",
"UBT-S_T\Fixed\WVCE67_U_16F30S_91",
"UBT-S_T\Fixed\WVCE67_U_2048F10S_82",
"UBT-S_T\Fixed\WVCE67_U_2048F30S_261",
"UBT-S_T\Fixed\WVCE67_U_256F10S_62",
"UBT-S_T\Fixed\WVCE67_U_256F30S_189",
"UBT-S_T\Fixed\WVCE67_U_32F10S_37",
"UBT-S_T\Fixed\WVCE67_U_32F30S_114",
"UBT-S_T\Fixed\WVCE67_U_512F10S_67",
"UBT-S_T\Fixed\WVCE67_U_512F30S_212",
"UBT-S_T\Fixed\WVCE67_U_64F10S_46",
"UBT-S_T\Fixed\WVCE67_U_64F30S_142",
"UBT-S_T\Fixed\WVCE67_U_QF10S_14",
"UBT-S_T\Fixed\WVCE67_U_QF30S_45"
]
| radio_data = ['HLC\\Adaptive\\9558L_L1024A10_73', 'HLC\\Adaptive\\9558L_L1024A10_73', 'HLC\\Adaptive\\9558L_L1024A10_73', 'HLC\\Adaptive\\9558L_L1024A10_73', 'HLC\\Adaptive\\9558L_L1024A10_73', 'HLC\\Adaptive\\9558L_L1024A10_73', 'HLC\\Adaptive\\9558L_L1024A10_73', 'HLC\\Adaptive\\9558L_L1024A10_73', 'HLC\\Adaptive\\9558L_L1024A30_230', 'HLC\\Adaptive\\9558L_L1024A30_230', 'HLC\\Adaptive\\9558L_L1024A30_230', 'HLC\\Adaptive\\9558L_L1024A30_230', 'HLC\\Adaptive\\9558L_L1024A30_230', 'HLC\\Adaptive\\9558L_L1024A30_230', 'HLC\\Adaptive\\9558L_L1024A30_230', 'HLC\\Adaptive\\9558L_L1024A30_230', 'HLC\\Adaptive\\9558L_L1024A5_35', 'HLC\\Adaptive\\9558L_L1024A5_35', 'HLC\\Adaptive\\9558L_L1024A5_35', 'HLC\\Adaptive\\9558L_L1024A5_35', 'HLC\\Adaptive\\9558L_L1024A5_35', 'HLC\\Adaptive\\9558L_L1024A5_35', 'HLC\\Adaptive\\9558L_L1024A5_35', 'HLC\\Adaptive\\9558L_L1024A5_35', 'HLC\\Adaptive\\WVCE07_L_1024A25S_188', 'HLC\\Adaptive\\WVCE07_L_1024A25S_188', 'HLC\\Adaptive\\WVCE07_L_1024A25S_188', 'HLC\\Adaptive\\WVCE07_L_1024A25S_188', 'HLC\\Adaptive\\WVCE07_L_1024A25S_188', 'HLC\\Adaptive\\WVCE07_L_1024A25S_188', 'HLC\\Adaptive\\WVCE07_L_1024A25S_188', 'HLC\\Adaptive\\WVCE07_L_1024A25S_188', 'HLC\\Adaptive\\WVCE08_L_1024A10S_73', 'HLC\\Adaptive\\WVCE08_L_1024A10S_73', 'HLC\\Adaptive\\WVCE08_L_1024A10S_73', 'HLC\\Adaptive\\WVCE08_L_1024A10S_73', 'HLC\\Adaptive\\WVCE08_L_1024A10S_73', 'HLC\\Adaptive\\WVCE08_L_1024A10S_73', 'HLC\\Adaptive\\WVCE08_L_1024A10S_73', 'HLC\\Adaptive\\WVCE08_L_1024A10S_73', 'HLC\\Adaptive\\WVCE08_L_1024A10S_73_7', 'HLC\\Adaptive\\WVCE08_L_1024A10S_73_7', 'HLC\\Adaptive\\WVCE08_L_1024A10S_73_7', 'HLC\\Adaptive\\WVCE08_L_1024A10S_73_7', 'HLC\\Adaptive\\WVCE08_L_1024A10S_73_7', 'HLC\\Adaptive\\WVCE08_L_1024A10S_73_7', 'HLC\\Adaptive\\WVCE08_L_1024A10S_73_7', 'HLC\\Adaptive\\WVCE08_L_1024A10S_73_7', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_7', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_7', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_7', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_7', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_7', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_7', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_7', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_7', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_7ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_7ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_7ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_7ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_7ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_7ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_7ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_7ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_7', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_7', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_7', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_7', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_7', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_7', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_7', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_7', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_7ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_7ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_7ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_7ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_7ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_7ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_7ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_7ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE08_L_1024A5S_35', 'HLC\\Adaptive\\WVCE08_L_1024A5S_35', 'HLC\\Adaptive\\WVCE08_L_1024A5S_35', 'HLC\\Adaptive\\WVCE08_L_1024A5S_35', 'HLC\\Adaptive\\WVCE08_L_1024A5S_35', 'HLC\\Adaptive\\WVCE08_L_1024A5S_35', 'HLC\\Adaptive\\WVCE08_L_1024A5S_35', 'HLC\\Adaptive\\WVCE08_L_1024A5S_35', 'HLC\\Adaptive\\WVCE08_L_1024A5S_35_7', 'HLC\\Adaptive\\WVCE08_L_1024A5S_35_7', 'HLC\\Adaptive\\WVCE08_L_1024A5S_35_7', 'HLC\\Adaptive\\WVCE08_L_1024A5S_35_7', 'HLC\\Adaptive\\WVCE08_L_1024A5S_35_7', 'HLC\\Adaptive\\WVCE08_L_1024A5S_35_7', 'HLC\\Adaptive\\WVCE08_L_1024A5S_35_7', 'HLC\\Adaptive\\WVCE08_L_1024A5S_35_7', 'HLC\\Adaptive\\WVCE10_L_1024A5S_35', 'HLC\\Adaptive\\WVCE10_L_1024A5S_35', 'HLC\\Adaptive\\WVCE10_L_1024A5S_35', 'HLC\\Adaptive\\WVCE10_L_1024A5S_35', 'HLC\\Adaptive\\WVCE10_L_1024A5S_35', 'HLC\\Adaptive\\WVCE10_L_1024A5S_35', 'HLC\\Adaptive\\WVCE10_L_1024A5S_35', 'HLC\\Adaptive\\WVCE10_L_1024A5S_35', 'HLC\\Adaptive\\WVCE11_L_1024A10S_73', 'HLC\\Adaptive\\WVCE11_L_1024A10S_73', 'HLC\\Adaptive\\WVCE11_L_1024A10S_73', 'HLC\\Adaptive\\WVCE11_L_1024A10S_73', 'HLC\\Adaptive\\WVCE11_L_1024A10S_73', 'HLC\\Adaptive\\WVCE11_L_1024A10S_73', 'HLC\\Adaptive\\WVCE11_L_1024A10S_73', 'HLC\\Adaptive\\WVCE11_L_1024A10S_73', 'HLC\\Adaptive\\WVCE11_L_1024A30L_230', 'HLC\\Adaptive\\WVCE11_L_1024A30L_230', 'HLC\\Adaptive\\WVCE11_L_1024A30L_230', 'HLC\\Adaptive\\WVCE11_L_1024A30L_230', 'HLC\\Adaptive\\WVCE11_L_1024A30L_230', 'HLC\\Adaptive\\WVCE11_L_1024A30L_230', 'HLC\\Adaptive\\WVCE11_L_1024A30L_230', 'HLC\\Adaptive\\WVCE11_L_1024A30L_230', 'HLC\\Adaptive\\WVCE11_L_1024A30S_230', 'HLC\\Adaptive\\WVCE11_L_1024A30S_230', 'HLC\\Adaptive\\WVCE11_L_1024A30S_230', 'HLC\\Adaptive\\WVCE11_L_1024A30S_230', 'HLC\\Adaptive\\WVCE11_L_1024A30S_230', 'HLC\\Adaptive\\WVCE11_L_1024A30S_230', 'HLC\\Adaptive\\WVCE11_L_1024A30S_230', 'HLC\\Adaptive\\WVCE11_L_1024A30S_230', 'HLC\\Adaptive\\WVCE11_L_1024A40S_298', 'HLC\\Adaptive\\WVCE11_L_1024A40S_298', 'HLC\\Adaptive\\WVCE11_L_1024A40S_298', 'HLC\\Adaptive\\WVCE11_L_1024A40S_298', 'HLC\\Adaptive\\WVCE11_L_1024A40S_298', 'HLC\\Adaptive\\WVCE11_L_1024A40S_298', 'HLC\\Adaptive\\WVCE11_L_1024A40S_298', 'HLC\\Adaptive\\WVCE11_L_1024A40S_298', 'HLC\\Adaptive\\WVCE11_L_1024A40S_298_ACCP', 'HLC\\Adaptive\\WVCE11_L_1024A40S_298_ACCP', 'HLC\\Adaptive\\WVCE11_L_1024A40S_298_ACCP', 'HLC\\Adaptive\\WVCE11_L_1024A40S_298_ACCP', 'HLC\\Adaptive\\WVCE11_L_1024A40S_298_ACCP', 'HLC\\Adaptive\\WVCE11_L_1024A40S_298_ACCP', 'HLC\\Adaptive\\WVCE11_L_1024A40S_298_ACCP', 'HLC\\Adaptive\\WVCE11_L_1024A40S_298_ACCP', 'HLC\\Adaptive\\WVCE11_L_1024A5S_35', 'HLC\\Adaptive\\WVCE11_L_1024A5S_35', 'HLC\\Adaptive\\WVCE11_L_1024A5S_35', 'HLC\\Adaptive\\WVCE11_L_1024A5S_35', 'HLC\\Adaptive\\WVCE11_L_1024A5S_35', 'HLC\\Adaptive\\WVCE11_L_1024A5S_35', 'HLC\\Adaptive\\WVCE11_L_1024A5S_35', 'HLC\\Adaptive\\WVCE11_L_1024A5S_35', 'HLC\\Adaptive\\WVCE11_L_1024A60S_441', 'HLC\\Adaptive\\WVCE11_L_1024A60S_441', 'HLC\\Adaptive\\WVCE11_L_1024A60S_441', 'HLC\\Adaptive\\WVCE11_L_1024A60S_441', 'HLC\\Adaptive\\WVCE11_L_1024A60S_441', 'HLC\\Adaptive\\WVCE11_L_1024A60S_441', 'HLC\\Adaptive\\WVCE11_L_1024A60S_441', 'HLC\\Adaptive\\WVCE11_L_1024A60S_441', 'HLC\\Adaptive\\WVCE11_L_2048A60S_497', 'HLC\\Adaptive\\WVCE11_L_2048A60S_497', 'HLC\\Adaptive\\WVCE11_L_2048A60S_497', 'HLC\\Adaptive\\WVCE11_L_2048A60S_497', 'HLC\\Adaptive\\WVCE11_L_2048A60S_497', 'HLC\\Adaptive\\WVCE11_L_2048A60S_497', 'HLC\\Adaptive\\WVCE11_L_2048A60S_497', 'HLC\\Adaptive\\WVCE11_L_2048A60S_497', 'HLC\\Adaptive\\WVCE11_L_2048A60S_497', 'HLC\\Adaptive\\WVCE11_L_4096A30H_255', 'HLC\\Adaptive\\WVCE11_L_4096A30H_255', 'HLC\\Adaptive\\WVCE11_L_4096A30H_255', 'HLC\\Adaptive\\WVCE11_L_4096A30H_255', 'HLC\\Adaptive\\WVCE11_L_4096A30H_255', 'HLC\\Adaptive\\WVCE11_L_4096A30H_255', 'HLC\\Adaptive\\WVCE11_L_4096A30H_255', 'HLC\\Adaptive\\WVCE11_L_4096A30H_255', 'HLC\\Adaptive\\WVCE11_L_4096A30H_255', 'HLC\\Adaptive\\WVCE11_L_4096A30H_255', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330_ACCP', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330_ACCP', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330_ACCP', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330_ACCP', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330_ACCP', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330_ACCP', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330_ACCP', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330_ACCP', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330_ACCP', 'HLC\\Adaptive\\WVCE11_L_4096A40H_330_ACCP', 'HLC\\Adaptive\\WVCE44_L_1024A10S_73_N', 'HLC\\Adaptive\\WVCE44_L_1024A10S_73_N', 'HLC\\Adaptive\\WVCE44_L_1024A10S_73_N', 'HLC\\Adaptive\\WVCE44_L_1024A10S_73_N', 'HLC\\Adaptive\\WVCE44_L_1024A10S_73_N', 'HLC\\Adaptive\\WVCE44_L_1024A10S_73_N', 'HLC\\Adaptive\\WVCE44_L_1024A10S_73_N', 'HLC\\Adaptive\\WVCE44_L_1024A10S_73_N', 'HLC\\Adaptive\\WVCE44_L_1024A30L_230_N', 'HLC\\Adaptive\\WVCE44_L_1024A30L_230_N', 'HLC\\Adaptive\\WVCE44_L_1024A30L_230_N', 'HLC\\Adaptive\\WVCE44_L_1024A30L_230_N', 'HLC\\Adaptive\\WVCE44_L_1024A30L_230_N', 'HLC\\Adaptive\\WVCE44_L_1024A30L_230_N', 'HLC\\Adaptive\\WVCE44_L_1024A30L_230_N', 'HLC\\Adaptive\\WVCE44_L_1024A30L_230_N', 'HLC\\Adaptive\\WVCE44_L_1024A30S_230_N', 'HLC\\Adaptive\\WVCE44_L_1024A30S_230_N', 'HLC\\Adaptive\\WVCE44_L_1024A30S_230_N', 'HLC\\Adaptive\\WVCE44_L_1024A30S_230_N', 'HLC\\Adaptive\\WVCE44_L_1024A30S_230_N', 'HLC\\Adaptive\\WVCE44_L_1024A30S_230_N', 'HLC\\Adaptive\\WVCE44_L_1024A30S_230_N', 'HLC\\Adaptive\\WVCE44_L_1024A30S_230_N', 'HLC\\Adaptive\\WVCE44_L_1024A40S_298_N', 'HLC\\Adaptive\\WVCE44_L_1024A40S_298_N', 'HLC\\Adaptive\\WVCE44_L_1024A40S_298_N', 'HLC\\Adaptive\\WVCE44_L_1024A40S_298_N', 'HLC\\Adaptive\\WVCE44_L_1024A40S_298_N', 'HLC\\Adaptive\\WVCE44_L_1024A40S_298_N', 'HLC\\Adaptive\\WVCE44_L_1024A40S_298_N', 'HLC\\Adaptive\\WVCE44_L_1024A40S_298_N', 'HLC\\Adaptive\\WVCE44_L_1024A5S_35_N', 'HLC\\Adaptive\\WVCE44_L_1024A5S_35_N', 'HLC\\Adaptive\\WVCE44_L_1024A5S_35_N', 'HLC\\Adaptive\\WVCE44_L_1024A5S_35_N', 'HLC\\Adaptive\\WVCE44_L_1024A5S_35_N', 'HLC\\Adaptive\\WVCE44_L_1024A5S_35_N', 'HLC\\Adaptive\\WVCE44_L_1024A5S_35_N', 'HLC\\Adaptive\\WVCE44_L_1024A5S_35_N', 'HLC\\Adaptive\\WVCE61_L_1024A10S_73', 'HLC\\Adaptive\\WVCE61_L_1024A10S_73', 'HLC\\Adaptive\\WVCE61_L_1024A10S_73', 'HLC\\Adaptive\\WVCE61_L_1024A10S_73', 'HLC\\Adaptive\\WVCE61_L_1024A10S_73', 'HLC\\Adaptive\\WVCE61_L_1024A10S_73', 'HLC\\Adaptive\\WVCE61_L_1024A10S_73', 'HLC\\Adaptive\\WVCE61_L_1024A10S_73', 'HLC\\Adaptive\\WVCE61_L_1024A30L_230', 'HLC\\Adaptive\\WVCE61_L_1024A30L_230', 'HLC\\Adaptive\\WVCE61_L_1024A30L_230', 'HLC\\Adaptive\\WVCE61_L_1024A30L_230', 'HLC\\Adaptive\\WVCE61_L_1024A30L_230', 'HLC\\Adaptive\\WVCE61_L_1024A30L_230', 'HLC\\Adaptive\\WVCE61_L_1024A30L_230', 'HLC\\Adaptive\\WVCE61_L_1024A30L_230', 'HLC\\Adaptive\\WVCE61_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A30S_230', 'HLC\\Adaptive\\WVCE61_L_1024A30S_230', 'HLC\\Adaptive\\WVCE61_L_1024A30S_230', 'HLC\\Adaptive\\WVCE61_L_1024A30S_230', 'HLC\\Adaptive\\WVCE61_L_1024A30S_230', 'HLC\\Adaptive\\WVCE61_L_1024A30S_230', 'HLC\\Adaptive\\WVCE61_L_1024A30S_230', 'HLC\\Adaptive\\WVCE61_L_1024A30S_230', 'HLC\\Adaptive\\WVCE61_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A5S_35', 'HLC\\Adaptive\\WVCE61_L_1024A5S_35', 'HLC\\Adaptive\\WVCE61_L_1024A5S_35', 'HLC\\Adaptive\\WVCE61_L_1024A5S_35', 'HLC\\Adaptive\\WVCE61_L_1024A5S_35', 'HLC\\Adaptive\\WVCE61_L_1024A5S_35', 'HLC\\Adaptive\\WVCE61_L_1024A5S_35', 'HLC\\Adaptive\\WVCE61_L_1024A5S_35', 'HLC\\Adaptive\\WVCE61_L_1024A60S_441', 'HLC\\Adaptive\\WVCE61_L_1024A60S_441', 'HLC\\Adaptive\\WVCE61_L_1024A60S_441', 'HLC\\Adaptive\\WVCE61_L_1024A60S_441', 'HLC\\Adaptive\\WVCE61_L_1024A60S_441', 'HLC\\Adaptive\\WVCE61_L_1024A60S_441', 'HLC\\Adaptive\\WVCE61_L_1024A60S_441', 'HLC\\Adaptive\\WVCE61_L_1024A60S_441', 'HLC\\Adaptive\\WVCE61_L_1024A60S_441_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A60S_441_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A60S_441_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A60S_441_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A60S_441_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A60S_441_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A60S_441_ACCP', 'HLC\\Adaptive\\WVCE61_L_1024A60S_441_ACCP', 'HLC\\Adaptive\\WVCE61_L_2048A60S_497', 'HLC\\Adaptive\\WVCE61_L_2048A60S_497', 'HLC\\Adaptive\\WVCE61_L_2048A60S_497', 'HLC\\Adaptive\\WVCE61_L_2048A60S_497', 'HLC\\Adaptive\\WVCE61_L_2048A60S_497', 'HLC\\Adaptive\\WVCE61_L_2048A60S_497', 'HLC\\Adaptive\\WVCE61_L_2048A60S_497', 'HLC\\Adaptive\\WVCE61_L_2048A60S_497', 'HLC\\Adaptive\\WVCE61_L_2048A60S_497', 'HLC\\Adaptive\\WVCE61_L_2048A60S_497_ACCP', 'HLC\\Adaptive\\WVCE61_L_2048A60S_497_ACCP', 'HLC\\Adaptive\\WVCE61_L_2048A60S_497_ACCP', 'HLC\\Adaptive\\WVCE61_L_2048A60S_497_ACCP', 'HLC\\Adaptive\\WVCE61_L_2048A60S_497_ACCP', 'HLC\\Adaptive\\WVCE61_L_2048A60S_497_ACCP', 'HLC\\Adaptive\\WVCE61_L_2048A60S_497_ACCP', 'HLC\\Adaptive\\WVCE61_L_2048A60S_497_ACCP', 'HLC\\Adaptive\\WVCE61_L_2048A60S_497_ACCP', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255_ACCP', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255_ACCP', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255_ACCP', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255_ACCP', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255_ACCP', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255_ACCP', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255_ACCP', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255_ACCP', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255_ACCP', 'HLC\\Adaptive\\WVCE61_L_4096A30H_255_ACCP', 'HLC\\Adaptive\\WVCE67_L_1024A10S_73', 'HLC\\Adaptive\\WVCE67_L_1024A10S_73', 'HLC\\Adaptive\\WVCE67_L_1024A10S_73', 'HLC\\Adaptive\\WVCE67_L_1024A10S_73', 'HLC\\Adaptive\\WVCE67_L_1024A10S_73', 'HLC\\Adaptive\\WVCE67_L_1024A10S_73', 'HLC\\Adaptive\\WVCE67_L_1024A10S_73', 'HLC\\Adaptive\\WVCE67_L_1024A10S_73', 'HLC\\Adaptive\\WVCE67_L_1024A30L_230', 'HLC\\Adaptive\\WVCE67_L_1024A30L_230', 'HLC\\Adaptive\\WVCE67_L_1024A30L_230', 'HLC\\Adaptive\\WVCE67_L_1024A30L_230', 'HLC\\Adaptive\\WVCE67_L_1024A30L_230', 'HLC\\Adaptive\\WVCE67_L_1024A30L_230', 'HLC\\Adaptive\\WVCE67_L_1024A30L_230', 'HLC\\Adaptive\\WVCE67_L_1024A30L_230', 'HLC\\Adaptive\\WVCE67_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE67_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE67_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE67_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE67_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE67_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE67_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE67_L_1024A30L_230_ACCP', 'HLC\\Adaptive\\WVCE67_L_1024A30S_230', 'HLC\\Adaptive\\WVCE67_L_1024A30S_230', 'HLC\\Adaptive\\WVCE67_L_1024A30S_230', 'HLC\\Adaptive\\WVCE67_L_1024A30S_230', 'HLC\\Adaptive\\WVCE67_L_1024A30S_230', 'HLC\\Adaptive\\WVCE67_L_1024A30S_230', 'HLC\\Adaptive\\WVCE67_L_1024A30S_230', 'HLC\\Adaptive\\WVCE67_L_1024A30S_230', 'HLC\\Adaptive\\WVCE67_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE67_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE67_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE67_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE67_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE67_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE67_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE67_L_1024A30S_230_ACCP', 'HLC\\Adaptive\\WVCE67_L_1024A5S_35', 'HLC\\Adaptive\\WVCE67_L_1024A5S_35', 'HLC\\Adaptive\\WVCE67_L_1024A5S_35', 'HLC\\Adaptive\\WVCE67_L_1024A5S_35', 'HLC\\Adaptive\\WVCE67_L_1024A5S_35', 'HLC\\Adaptive\\WVCE67_L_1024A5S_35', 'HLC\\Adaptive\\WVCE67_L_1024A5S_35', 'HLC\\Adaptive\\WVCE67_L_1024A5S_35', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255_ACCP', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255_ACCP', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255_ACCP', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255_ACCP', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255_ACCP', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255_ACCP', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255_ACCP', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255_ACCP', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255_ACCP', 'HLC\\Adaptive\\WVCE67_L_4096A30H_255_ACCP', 'HLC\\Fixed\\9558L_L1024F10_73', 'HLC\\Fixed\\9558L_L1024F30_230', 'HLC\\Fixed\\9558L_L1024F5_35', 'HLC\\Fixed\\9558L_L128F10_52', 'HLC\\Fixed\\9558L_L128F30_163', 'HLC\\Fixed\\9558L_L128F5_25', 'HLC\\Fixed\\9558L_L16F10_30', 'HLC\\Fixed\\9558L_L16F30_91', 'HLC\\Fixed\\9558L_L16F5_14', 'HLC\\Fixed\\9558L_L256F10_60', 'HLC\\Fixed\\9558L_L256F30_185', 'HLC\\Fixed\\9558L_L256F30_186', 'HLC\\Fixed\\9558L_L256F5_29', 'HLC\\Fixed\\9558L_L32F10_37', 'HLC\\Fixed\\9558L_L32F30_115', 'HLC\\Fixed\\9558L_L32F5_18', 'HLC\\Fixed\\9558L_L4F10_14', 'HLC\\Fixed\\9558L_L4F30_44', 'HLC\\Fixed\\9558L_L4F5_6', 'HLC\\Fixed\\9558L_L512F10_67', 'HLC\\Fixed\\9558L_L512F30_208', 'HLC\\Fixed\\9558L_L512F5_32', 'HLC\\Fixed\\9558L_L64F10_45', 'HLC\\Fixed\\9558L_L64F30_138', 'HLC\\Fixed\\9558L_L64F5_22', 'HLC\\Fixed\\WVCE07_L_1024F25S_188', 'HLC\\Fixed\\WVCE07_L_128F25S_133', 'HLC\\Fixed\\WVCE07_L_16F25S_75', 'HLC\\Fixed\\WVCE07_L_256F25S_152', 'HLC\\Fixed\\WVCE07_L_32F25S_94', 'HLC\\Fixed\\WVCE07_L_4F25S_36', 'HLC\\Fixed\\WVCE07_L_512F25S_170', 'HLC\\Fixed\\WVCE07_L_64F25S_113', 'HLC\\Fixed\\WVCE08_L_1024F10S_73', 'HLC\\Fixed\\WVCE08_L_1024F10S_73_7', 'HLC\\Fixed\\WVCE08_L_1024F30L_230', 'HLC\\Fixed\\WVCE08_L_1024F30L_230_7', 'HLC\\Fixed\\WVCE08_L_1024F30L_230_7ACCP', 'HLC\\Fixed\\WVCE08_L_1024F30L_230_ACCP', 'HLC\\Fixed\\WVCE08_L_1024F30S_230', 'HLC\\Fixed\\WVCE08_L_1024F30S_230_7', 'HLC\\Fixed\\WVCE08_L_1024F30S_230_7ACCP', 'HLC\\Fixed\\WVCE08_L_1024F30S_230_ACCP', 'HLC\\Fixed\\WVCE08_L_1024F5S_35', 'HLC\\Fixed\\WVCE08_L_1024F5S_35_7', 'HLC\\Fixed\\WVCE08_L_128F10S_52', 'HLC\\Fixed\\WVCE08_L_128F10S_52_7', 'HLC\\Fixed\\WVCE08_L_128F30L_163', 'HLC\\Fixed\\WVCE08_L_128F30L_163_7', 'HLC\\Fixed\\WVCE08_L_128F30L_163_7ACCP', 'HLC\\Fixed\\WVCE08_L_128F30L_163_ACCP', 'HLC\\Fixed\\WVCE08_L_128F30S_163', 'HLC\\Fixed\\WVCE08_L_128F30S_163_7', 'HLC\\Fixed\\WVCE08_L_128F30S_163_7ACCP', 'HLC\\Fixed\\WVCE08_L_128F30S_163_ACCP', 'HLC\\Fixed\\WVCE08_L_128F5S_25', 'HLC\\Fixed\\WVCE08_L_128F5S_25_7', 'HLC\\Fixed\\WVCE08_L_16F10S_30', 'HLC\\Fixed\\WVCE08_L_16F10S_30_7', 'HLC\\Fixed\\WVCE08_L_16F30L_91', 'HLC\\Fixed\\WVCE08_L_16F30L_91_7', 'HLC\\Fixed\\WVCE08_L_16F30L_91_7ACCP', 'HLC\\Fixed\\WVCE08_L_16F30L_91_ACCP', 'HLC\\Fixed\\WVCE08_L_16F30S_91', 'HLC\\Fixed\\WVCE08_L_16F30S_91_7', 'HLC\\Fixed\\WVCE08_L_16F30S_91_7ACCP', 'HLC\\Fixed\\WVCE08_L_16F30S_91_ACCP', 'HLC\\Fixed\\WVCE08_L_16F5S_14', 'HLC\\Fixed\\WVCE08_L_16F5S_14_7', 'HLC\\Fixed\\WVCE08_L_256F10S_60', 'HLC\\Fixed\\WVCE08_L_256F10S_60_7', 'HLC\\Fixed\\WVCE08_L_256F30L_186', 'HLC\\Fixed\\WVCE08_L_256F30L_186_7', 'HLC\\Fixed\\WVCE08_L_256F30L_186_7ACCP', 'HLC\\Fixed\\WVCE08_L_256F30L_186_ACCP', 'HLC\\Fixed\\WVCE08_L_256F30S_185', 'HLC\\Fixed\\WVCE08_L_256F30S_185_7', 'HLC\\Fixed\\WVCE08_L_256F30S_185_7ACCP', 'HLC\\Fixed\\WVCE08_L_256F30S_185_ACCP', 'HLC\\Fixed\\WVCE08_L_256F5S_29', 'HLC\\Fixed\\WVCE08_L_256F5S_29_7', 'HLC\\Fixed\\WVCE08_L_32F10S_37', 'HLC\\Fixed\\WVCE08_L_32F10S_37_7', 'HLC\\Fixed\\WVCE08_L_32F30L_115', 'HLC\\Fixed\\WVCE08_L_32F30L_115_7', 'HLC\\Fixed\\WVCE08_L_32F30L_115_7ACCP', 'HLC\\Fixed\\WVCE08_L_32F30L_115_ACCP', 'HLC\\Fixed\\WVCE08_L_32F30S_115', 'HLC\\Fixed\\WVCE08_L_32F30S_115_7', 'HLC\\Fixed\\WVCE08_L_32F30S_115_7ACCP', 'HLC\\Fixed\\WVCE08_L_32F30S_115_ACCP', 'HLC\\Fixed\\WVCE08_L_32F5S_18', 'HLC\\Fixed\\WVCE08_L_32F5S_18_7', 'HLC\\Fixed\\WVCE08_L_4F10S_14', 'HLC\\Fixed\\WVCE08_L_4F10S_14_7', 'HLC\\Fixed\\WVCE08_L_4F30L_44', 'HLC\\Fixed\\WVCE08_L_4F30L_44_7', 'HLC\\Fixed\\WVCE08_L_4F30L_44_7ACCP', 'HLC\\Fixed\\WVCE08_L_4F30L_44_ACCP', 'HLC\\Fixed\\WVCE08_L_4F30S_44', 'HLC\\Fixed\\WVCE08_L_4F30S_44_7', 'HLC\\Fixed\\WVCE08_L_4F30S_44_7ACCP', 'HLC\\Fixed\\WVCE08_L_4F30S_44_ACCP', 'HLC\\Fixed\\WVCE08_L_4F5S_6', 'HLC\\Fixed\\WVCE08_L_4F5S_6_7', 'HLC\\Fixed\\WVCE08_L_512F10S_67', 'HLC\\Fixed\\WVCE08_L_512F10S_67_7', 'HLC\\Fixed\\WVCE08_L_512F30L_208', 'HLC\\Fixed\\WVCE08_L_512F30L_208_7', 'HLC\\Fixed\\WVCE08_L_512F30L_208_7ACCP', 'HLC\\Fixed\\WVCE08_L_512F30L_208_ACCP', 'HLC\\Fixed\\WVCE08_L_512F30S_208', 'HLC\\Fixed\\WVCE08_L_512F30S_208_7', 'HLC\\Fixed\\WVCE08_L_512F30S_208_7ACCP', 'HLC\\Fixed\\WVCE08_L_512F30S_208_ACCP', 'HLC\\Fixed\\WVCE08_L_512F5S_32', 'HLC\\Fixed\\WVCE08_L_512F5S_32_7', 'HLC\\Fixed\\WVCE08_L_64F10S_45', 'HLC\\Fixed\\WVCE08_L_64F10S_45_7', 'HLC\\Fixed\\WVCE08_L_64F30L_138', 'HLC\\Fixed\\WVCE08_L_64F30L_138_7', 'HLC\\Fixed\\WVCE08_L_64F30L_138_7ACCP', 'HLC\\Fixed\\WVCE08_L_64F30L_138_ACCP', 'HLC\\Fixed\\WVCE08_L_64F30S_138', 'HLC\\Fixed\\WVCE08_L_64F30S_138_7', 'HLC\\Fixed\\WVCE08_L_64F30S_138_7ACCP', 'HLC\\Fixed\\WVCE08_L_64F30S_138_ACCP', 'HLC\\Fixed\\WVCE08_L_64F5S_22', 'HLC\\Fixed\\WVCE08_L_64F5S_22_7', 'HLC\\Fixed\\WVCE10_L_1024F5S_35', 'HLC\\Fixed\\WVCE10_L_128F5S_25', 'HLC\\Fixed\\WVCE10_L_16F5S_14', 'HLC\\Fixed\\WVCE10_L_256F5S_29', 'HLC\\Fixed\\WVCE10_L_32F5S_18', 'HLC\\Fixed\\WVCE10_L_4F5S_6', 'HLC\\Fixed\\WVCE10_L_512F5S_32', 'HLC\\Fixed\\WVCE10_L_64F5S_22', 'HLC\\Fixed\\WVCE11_L_1024F10S_73', 'HLC\\Fixed\\WVCE11_L_1024F30H_209', 'HLC\\Fixed\\WVCE11_L_1024F30L_230', 'HLC\\Fixed\\WVCE11_L_1024F30S_230', 'HLC\\Fixed\\WVCE11_L_1024F40H_272', 'HLC\\Fixed\\WVCE11_L_1024F40H_272_ACCP', 'HLC\\Fixed\\WVCE11_L_1024F40S_298', 'HLC\\Fixed\\WVCE11_L_1024F40S_298_ACCP', 'HLC\\Fixed\\WVCE11_L_1024F5S_35', 'HLC\\Fixed\\WVCE11_L_1024F60S_441', 'HLC\\Fixed\\WVCE11_L_128F10S_52', 'HLC\\Fixed\\WVCE11_L_128F30H_139', 'HLC\\Fixed\\WVCE11_L_128F30L_163', 'HLC\\Fixed\\WVCE11_L_128F30S_163', 'HLC\\Fixed\\WVCE11_L_128F40H_182', 'HLC\\Fixed\\WVCE11_L_128F40H_182_ACCP', 'HLC\\Fixed\\WVCE11_L_128F40S_210', 'HLC\\Fixed\\WVCE11_L_128F40S_210_ACCP', 'HLC\\Fixed\\WVCE11_L_128F5S_25', 'HLC\\Fixed\\WVCE11_L_128F60S_309', 'HLC\\Fixed\\WVCE11_L_16F10S_30', 'HLC\\Fixed\\WVCE11_L_16F30H_77', 'HLC\\Fixed\\WVCE11_L_16F30L_91', 'HLC\\Fixed\\WVCE11_L_16F30S_91', 'HLC\\Fixed\\WVCE11_L_16F40H_98', 'HLC\\Fixed\\WVCE11_L_16F40H_98_ACCP', 'HLC\\Fixed\\WVCE11_L_16F40S_116', 'HLC\\Fixed\\WVCE11_L_16F40S_116_ACCP', 'HLC\\Fixed\\WVCE11_L_16F5S_14', 'HLC\\Fixed\\WVCE11_L_16F60S_162', 'HLC\\Fixed\\WVCE11_L_2048F30H_231', 'HLC\\Fixed\\WVCE11_L_2048F40H_299', 'HLC\\Fixed\\WVCE11_L_2048F40H_299_ACCP', 'HLC\\Fixed\\WVCE11_L_2048F60S_497', 'HLC\\Fixed\\WVCE11_L_256F10S_60', 'HLC\\Fixed\\WVCE11_L_256F30H_164', 'HLC\\Fixed\\WVCE11_L_256F30L_186', 'HLC\\Fixed\\WVCE11_L_256F30S_185', 'HLC\\Fixed\\WVCE11_L_256F40H_211', 'HLC\\Fixed\\WVCE11_L_256F40H_211_ACCP', 'HLC\\Fixed\\WVCE11_L_256F40S_241', 'HLC\\Fixed\\WVCE11_L_256F40S_241_ACCP', 'HLC\\Fixed\\WVCE11_L_256F5S_29', 'HLC\\Fixed\\WVCE11_L_256F60S_354', 'HLC\\Fixed\\WVCE11_L_32F10S_37', 'HLC\\Fixed\\WVCE11_L_32F30H_97', 'HLC\\Fixed\\WVCE11_L_32F30L_115', 'HLC\\Fixed\\WVCE11_L_32F30S_115', 'HLC\\Fixed\\WVCE11_L_32F40H_123', 'HLC\\Fixed\\WVCE11_L_32F40H_123_ACCP', 'HLC\\Fixed\\WVCE11_L_32F40S_146', 'HLC\\Fixed\\WVCE11_L_32F40S_146_ACCP', 'HLC\\Fixed\\WVCE11_L_32F5S_18', 'HLC\\Fixed\\WVCE11_L_32F60S_201', 'HLC\\Fixed\\WVCE11_L_4096F30H_255', 'HLC\\Fixed\\WVCE11_L_4096F40H_330', 'HLC\\Fixed\\WVCE11_L_4096F40H_330_ACCP', 'HLC\\Fixed\\WVCE11_L_4096F60H_512', 'HLC\\Fixed\\WVCE11_L_4F10S_14', 'HLC\\Fixed\\WVCE11_L_4F30H_34', 'HLC\\Fixed\\WVCE11_L_4F30L_44', 'HLC\\Fixed\\WVCE11_L_4F30S_44', 'HLC\\Fixed\\WVCE11_L_4F40H_43', 'HLC\\Fixed\\WVCE11_L_4F40H_43_ACCP', 'HLC\\Fixed\\WVCE11_L_4F40S_56', 'HLC\\Fixed\\WVCE11_L_4F40S_56_ACCP', 'HLC\\Fixed\\WVCE11_L_4F5S_6', 'HLC\\Fixed\\WVCE11_L_4F60S_81', 'HLC\\Fixed\\WVCE11_L_512F10S_67', 'HLC\\Fixed\\WVCE11_L_512F30H_187', 'HLC\\Fixed\\WVCE11_L_512F30L_208', 'HLC\\Fixed\\WVCE11_L_512F30S_208', 'HLC\\Fixed\\WVCE11_L_512F40H_242', 'HLC\\Fixed\\WVCE11_L_512F40H_242_ACCP', 'HLC\\Fixed\\WVCE11_L_512F40S_271', 'HLC\\Fixed\\WVCE11_L_512F40S_271_ACCP', 'HLC\\Fixed\\WVCE11_L_512F5S_32', 'HLC\\Fixed\\WVCE11_L_512F60S_401', 'HLC\\Fixed\\WVCE11_L_64F10S_45', 'HLC\\Fixed\\WVCE11_L_64F30H_116', 'HLC\\Fixed\\WVCE11_L_64F30L_138', 'HLC\\Fixed\\WVCE11_L_64F30S_138', 'HLC\\Fixed\\WVCE11_L_64F40H_163', 'HLC\\Fixed\\WVCE11_L_64F40H_163_ACCP', 'HLC\\Fixed\\WVCE11_L_64F40S_181', 'HLC\\Fixed\\WVCE11_L_64F40S_181_ACCP', 'HLC\\Fixed\\WVCE11_L_64F5S_22', 'HLC\\Fixed\\WVCE11_L_64F60S_260', 'HLC\\Fixed\\WVCE44_L_1024F10S_73_N', 'HLC\\Fixed\\WVCE44_L_1024F30L_230_N', 'HLC\\Fixed\\WVCE44_L_1024F30S_230_N', 'HLC\\Fixed\\WVCE44_L_1024F40S_298_N', 'HLC\\Fixed\\WVCE44_L_1024F5S_35_N', 'HLC\\Fixed\\WVCE44_L_128F10S_52_N', 'HLC\\Fixed\\WVCE44_L_128F30L_163_N', 'HLC\\Fixed\\WVCE44_L_128F30S_163_N', 'HLC\\Fixed\\WVCE44_L_128F40S_210_N', 'HLC\\Fixed\\WVCE44_L_128F5S_25_N', 'HLC\\Fixed\\WVCE44_L_16F10S_30_N', 'HLC\\Fixed\\WVCE44_L_16F30L_91_N', 'HLC\\Fixed\\WVCE44_L_16F30S_91_N', 'HLC\\Fixed\\WVCE44_L_16F40S_116_N', 'HLC\\Fixed\\WVCE44_L_16F5S_14_N', 'HLC\\Fixed\\WVCE44_L_256F10S_60_N', 'HLC\\Fixed\\WVCE44_L_256F30L_186_N', 'HLC\\Fixed\\WVCE44_L_256F30S_185_N', 'HLC\\Fixed\\WVCE44_L_256F40S_241_N', 'HLC\\Fixed\\WVCE44_L_256F5S_29_N', 'HLC\\Fixed\\WVCE44_L_32F10S_37_N', 'HLC\\Fixed\\WVCE44_L_32F30L_115_N', 'HLC\\Fixed\\WVCE44_L_32F30S_115_N', 'HLC\\Fixed\\WVCE44_L_32F40S_146_N', 'HLC\\Fixed\\WVCE44_L_32F5S_18_N', 'HLC\\Fixed\\WVCE44_L_4F10S_14_N', 'HLC\\Fixed\\WVCE44_L_4F30L_44_N', 'HLC\\Fixed\\WVCE44_L_4F30S_44_N', 'HLC\\Fixed\\WVCE44_L_4F40S_56_N', 'HLC\\Fixed\\WVCE44_L_4F5S_6_N', 'HLC\\Fixed\\WVCE44_L_512F10S_67_N', 'HLC\\Fixed\\WVCE44_L_512F30L_208_N', 'HLC\\Fixed\\WVCE44_L_512F30S_208_N', 'HLC\\Fixed\\WVCE44_L_512F40S_271_N', 'HLC\\Fixed\\WVCE44_L_512F5S_32_N', 'HLC\\Fixed\\WVCE44_L_64F10S_45_N', 'HLC\\Fixed\\WVCE44_L_64F30L_138_N', 'HLC\\Fixed\\WVCE44_L_64F30S_138_N', 'HLC\\Fixed\\WVCE44_L_64F40S_181_N', 'HLC\\Fixed\\WVCE44_L_64F5S_22_N', 'HLC\\Fixed\\WVCE61_L_1024F10S_73', 'HLC\\Fixed\\WVCE61_L_1024F30H_209', 'HLC\\Fixed\\WVCE61_L_1024F30H_209_ACCP', 'HLC\\Fixed\\WVCE61_L_1024F30L_230', 'HLC\\Fixed\\WVCE61_L_1024F30L_230_ACCP', 'HLC\\Fixed\\WVCE61_L_1024F30S_230', 'HLC\\Fixed\\WVCE61_L_1024F30S_230_ACCP', 'HLC\\Fixed\\WVCE61_L_1024F5S_35', 'HLC\\Fixed\\WVCE61_L_1024F60S_441', 'HLC\\Fixed\\WVCE61_L_1024F60S_441_ACCP', 'HLC\\Fixed\\WVCE61_L_128F10S_52', 'HLC\\Fixed\\WVCE61_L_128F30H_139', 'HLC\\Fixed\\WVCE61_L_128F30H_139_ACCP', 'HLC\\Fixed\\WVCE61_L_128F30L_163', 'HLC\\Fixed\\WVCE61_L_128F30L_163_ACCP', 'HLC\\Fixed\\WVCE61_L_128F30S_163', 'HLC\\Fixed\\WVCE61_L_128F30S_163_ACCP', 'HLC\\Fixed\\WVCE61_L_128F5S_25', 'HLC\\Fixed\\WVCE61_L_128F60S_309', 'HLC\\Fixed\\WVCE61_L_128F60S_309_ACCP', 'HLC\\Fixed\\WVCE61_L_16F10S_30', 'HLC\\Fixed\\WVCE61_L_16F30H_77', 'HLC\\Fixed\\WVCE61_L_16F30H_77_ACCP', 'HLC\\Fixed\\WVCE61_L_16F30L_91', 'HLC\\Fixed\\WVCE61_L_16F30L_91_ACCP', 'HLC\\Fixed\\WVCE61_L_16F30S_91', 'HLC\\Fixed\\WVCE61_L_16F30S_91_ACCP', 'HLC\\Fixed\\WVCE61_L_16F5S_14', 'HLC\\Fixed\\WVCE61_L_16F60S_162', 'HLC\\Fixed\\WVCE61_L_16F60S_162_ACCP', 'HLC\\Fixed\\WVCE61_L_2048F30H_231', 'HLC\\Fixed\\WVCE61_L_2048F30H_231_ACCP', 'HLC\\Fixed\\WVCE61_L_2048F60S_497', 'HLC\\Fixed\\WVCE61_L_2048F60S_497_ACCP', 'HLC\\Fixed\\WVCE61_L_256F10S_60', 'HLC\\Fixed\\WVCE61_L_256F30H_164', 'HLC\\Fixed\\WVCE61_L_256F30H_164_ACCP', 'HLC\\Fixed\\WVCE61_L_256F30L_186', 'HLC\\Fixed\\WVCE61_L_256F30L_186_ACCP', 'HLC\\Fixed\\WVCE61_L_256F30S_185', 'HLC\\Fixed\\WVCE61_L_256F30S_185_ACCP', 'HLC\\Fixed\\WVCE61_L_256F5S_29', 'HLC\\Fixed\\WVCE61_L_256F60S_354', 'HLC\\Fixed\\WVCE61_L_256F60S_354_ACCP', 'HLC\\Fixed\\WVCE61_L_32F10S_37', 'HLC\\Fixed\\WVCE61_L_32F30H_97', 'HLC\\Fixed\\WVCE61_L_32F30H_97_ACCP', 'HLC\\Fixed\\WVCE61_L_32F30L_115', 'HLC\\Fixed\\WVCE61_L_32F30L_115_ACCP', 'HLC\\Fixed\\WVCE61_L_32F30S_115', 'HLC\\Fixed\\WVCE61_L_32F30S_115_ACCP', 'HLC\\Fixed\\WVCE61_L_32F5S_18', 'HLC\\Fixed\\WVCE61_L_32F60S_201', 'HLC\\Fixed\\WVCE61_L_32F60S_201_ACCP', 'HLC\\Fixed\\WVCE61_L_4096F30H_255', 'HLC\\Fixed\\WVCE61_L_4096F30H_255_ACCP', 'HLC\\Fixed\\WVCE61_L_4096F60H_512', 'HLC\\Fixed\\WVCE61_L_4096F60H_512_ACCP', 'HLC\\Fixed\\WVCE61_L_4F10S_14', 'HLC\\Fixed\\WVCE61_L_4F30H_34', 'HLC\\Fixed\\WVCE61_L_4F30H_34_ACCP', 'HLC\\Fixed\\WVCE61_L_4F30L_44', 'HLC\\Fixed\\WVCE61_L_4F30L_44_ACCP', 'HLC\\Fixed\\WVCE61_L_4F30S_44', 'HLC\\Fixed\\WVCE61_L_4F30S_44_ACCP', 'HLC\\Fixed\\WVCE61_L_4F5S_6', 'HLC\\Fixed\\WVCE61_L_4F60S_81', 'HLC\\Fixed\\WVCE61_L_4F60S_81_ACCP', 'HLC\\Fixed\\WVCE61_L_512F10S_67', 'HLC\\Fixed\\WVCE61_L_512F30H_187', 'HLC\\Fixed\\WVCE61_L_512F30H_187_ACCP', 'HLC\\Fixed\\WVCE61_L_512F30L_208', 'HLC\\Fixed\\WVCE61_L_512F30L_208_ACCP', 'HLC\\Fixed\\WVCE61_L_512F30S_208', 'HLC\\Fixed\\WVCE61_L_512F30S_208_ACCP', 'HLC\\Fixed\\WVCE61_L_512F5S_32', 'HLC\\Fixed\\WVCE61_L_512F60S_401', 'HLC\\Fixed\\WVCE61_L_512F60S_401_ACCP', 'HLC\\Fixed\\WVCE61_L_64F10S_45', 'HLC\\Fixed\\WVCE61_L_64F30H_116', 'HLC\\Fixed\\WVCE61_L_64F30H_116_ACCP', 'HLC\\Fixed\\WVCE61_L_64F30L_138', 'HLC\\Fixed\\WVCE61_L_64F30L_138_ACCP', 'HLC\\Fixed\\WVCE61_L_64F30S_138', 'HLC\\Fixed\\WVCE61_L_64F30S_138_ACCP', 'HLC\\Fixed\\WVCE61_L_64F5S_22', 'HLC\\Fixed\\WVCE61_L_64F60S_260', 'HLC\\Fixed\\WVCE61_L_64F60S_260_ACCP', 'HLC\\Fixed\\WVCE67_L_1024F10S_73', 'HLC\\Fixed\\WVCE67_L_1024F30H_209', 'HLC\\Fixed\\WVCE67_L_1024F30H_209_ACCP', 'HLC\\Fixed\\WVCE67_L_1024F30L_230', 'HLC\\Fixed\\WVCE67_L_1024F30L_230_ACCP', 'HLC\\Fixed\\WVCE67_L_1024F30S_230', 'HLC\\Fixed\\WVCE67_L_1024F30S_230_ACCP', 'HLC\\Fixed\\WVCE67_L_1024F5S_35', 'HLC\\Fixed\\WVCE67_L_128F10S_52', 'HLC\\Fixed\\WVCE67_L_128F30H_139', 'HLC\\Fixed\\WVCE67_L_128F30H_139_ACCP', 'HLC\\Fixed\\WVCE67_L_128F30L_163', 'HLC\\Fixed\\WVCE67_L_128F30L_163_ACCP', 'HLC\\Fixed\\WVCE67_L_128F30S_163', 'HLC\\Fixed\\WVCE67_L_128F30S_163_ACCP', 'HLC\\Fixed\\WVCE67_L_128F5S_25', 'HLC\\Fixed\\WVCE67_L_16F10S_30', 'HLC\\Fixed\\WVCE67_L_16F30H_77', 'HLC\\Fixed\\WVCE67_L_16F30H_77_ACCP', 'HLC\\Fixed\\WVCE67_L_16F30L_91', 'HLC\\Fixed\\WVCE67_L_16F30L_91_ACCP', 'HLC\\Fixed\\WVCE67_L_16F30S_91', 'HLC\\Fixed\\WVCE67_L_16F30S_91_ACCP', 'HLC\\Fixed\\WVCE67_L_16F5S_14', 'HLC\\Fixed\\WVCE67_L_2048F30H_231', 'HLC\\Fixed\\WVCE67_L_2048F30H_231_ACCP', 'HLC\\Fixed\\WVCE67_L_256F10S_60', 'HLC\\Fixed\\WVCE67_L_256F30H_164', 'HLC\\Fixed\\WVCE67_L_256F30H_164_ACCP', 'HLC\\Fixed\\WVCE67_L_256F30L_186', 'HLC\\Fixed\\WVCE67_L_256F30L_186_ACCP', 'HLC\\Fixed\\WVCE67_L_256F30S_185', 'HLC\\Fixed\\WVCE67_L_256F30S_185_ACCP', 'HLC\\Fixed\\WVCE67_L_256F5S_29', 'HLC\\Fixed\\WVCE67_L_32F10S_37', 'HLC\\Fixed\\WVCE67_L_32F30H_97', 'HLC\\Fixed\\WVCE67_L_32F30H_97_ACCP', 'HLC\\Fixed\\WVCE67_L_32F30L_115', 'HLC\\Fixed\\WVCE67_L_32F30L_115_ACCP', 'HLC\\Fixed\\WVCE67_L_32F30S_115', 'HLC\\Fixed\\WVCE67_L_32F30S_115_ACCP', 'HLC\\Fixed\\WVCE67_L_32F5S_18', 'HLC\\Fixed\\WVCE67_L_4096F30H_255', 'HLC\\Fixed\\WVCE67_L_4096F30H_255_ACCP', 'HLC\\Fixed\\WVCE67_L_4F10S_14', 'HLC\\Fixed\\WVCE67_L_4F30H_34', 'HLC\\Fixed\\WVCE67_L_4F30H_34_ACCP', 'HLC\\Fixed\\WVCE67_L_4F30L_44', 'HLC\\Fixed\\WVCE67_L_4F30L_44_ACCP', 'HLC\\Fixed\\WVCE67_L_4F30S_44', 'HLC\\Fixed\\WVCE67_L_4F30S_44_ACCP', 'HLC\\Fixed\\WVCE67_L_4F5S_6', 'HLC\\Fixed\\WVCE67_L_512F10S_67', 'HLC\\Fixed\\WVCE67_L_512F30H_187', 'HLC\\Fixed\\WVCE67_L_512F30H_187_ACCP', 'HLC\\Fixed\\WVCE67_L_512F30L_208', 'HLC\\Fixed\\WVCE67_L_512F30L_208_ACCP', 'HLC\\Fixed\\WVCE67_L_512F30S_208', 'HLC\\Fixed\\WVCE67_L_512F30S_208_ACCP', 'HLC\\Fixed\\WVCE67_L_512F5S_32', 'HLC\\Fixed\\WVCE67_L_64F10S_45', 'HLC\\Fixed\\WVCE67_L_64F30H_116', 'HLC\\Fixed\\WVCE67_L_64F30H_116_ACCP', 'HLC\\Fixed\\WVCE67_L_64F30L_138', 'HLC\\Fixed\\WVCE67_L_64F30L_138_ACCP', 'HLC\\Fixed\\WVCE67_L_64F30S_138', 'HLC\\Fixed\\WVCE67_L_64F30S_138_ACCP', 'HLC\\Fixed\\WVCE67_L_64F5S_22', 'HQAM\\Adaptive\\HC001QA', 'HQAM\\Adaptive\\HC001QA', 'HQAM\\Adaptive\\HC001QA', 'HQAM\\Adaptive\\HC001QA', 'HQAM\\Adaptive\\HC001QA', 'HQAM\\Adaptive\\HC001QA', 'HQAM\\Adaptive\\HC001QA', 'HQAM\\Adaptive\\HC001QA', 'HQAM\\Adaptive\\HC002QA', 'HQAM\\Adaptive\\HC002QA', 'HQAM\\Adaptive\\HC002QA', 'HQAM\\Adaptive\\HC002QA', 'HQAM\\Adaptive\\HC002QA', 'HQAM\\Adaptive\\HC002QA', 'HQAM\\Adaptive\\HC002QA', 'HQAM\\Adaptive\\HC002QA', 'HQAM\\Adaptive\\HC002QA', 'HQAM\\Adaptive\\HC003QA', 'HQAM\\Adaptive\\HC003QA', 'HQAM\\Adaptive\\HC003QA', 'HQAM\\Adaptive\\HC003QA', 'HQAM\\Adaptive\\HC003QA', 'HQAM\\Adaptive\\HC003QA', 'HQAM\\Adaptive\\HC003QA', 'HQAM\\Adaptive\\HC003QA', 'HQAM\\Adaptive\\HC003QA', 'HQAM\\Adaptive\\HC004QA', 'HQAM\\Adaptive\\HC004QA', 'HQAM\\Adaptive\\HC004QA', 'HQAM\\Adaptive\\HC004QA', 'HQAM\\Adaptive\\HC004QA', 'HQAM\\Adaptive\\HC004QA', 'HQAM\\Adaptive\\HC004QA', 'HQAM\\Adaptive\\HC004QA', 'HQAM\\Adaptive\\HC005QA', 'HQAM\\Adaptive\\HC005QA', 'HQAM\\Adaptive\\HC005QA', 'HQAM\\Adaptive\\HC005QA', 'HQAM\\Adaptive\\HC005QA', 'HQAM\\Adaptive\\HC005QA', 'HQAM\\Adaptive\\HC005QA', 'HQAM\\Adaptive\\HC005QA', 'HQAM\\Adaptive\\HC005QA', 'HQAM\\Adaptive\\HC006QA', 'HQAM\\Adaptive\\HC006QA', 'HQAM\\Adaptive\\HC006QA', 'HQAM\\Adaptive\\HC006QA', 'HQAM\\Adaptive\\HC006QA', 'HQAM\\Adaptive\\HC006QA', 'HQAM\\Adaptive\\HC006QA', 'HQAM\\Adaptive\\HC006QA', 'HQAM\\Adaptive\\HC007QA', 'HQAM\\Adaptive\\HC007QA', 'HQAM\\Adaptive\\HC007QA', 'HQAM\\Adaptive\\HC007QA', 'HQAM\\Adaptive\\HC007QA', 'HQAM\\Adaptive\\HC007QA', 'HQAM\\Adaptive\\HC007QA', 'HQAM\\Adaptive\\HC007QA', 'HQAM\\Adaptive\\HC007QA', 'HQAM\\Adaptive\\HC008QA', 'HQAM\\Adaptive\\HC008QA', 'HQAM\\Adaptive\\HC008QA', 'HQAM\\Adaptive\\HC008QA', 'HQAM\\Adaptive\\HC008QA', 'HQAM\\Adaptive\\HC008QA', 'HQAM\\Adaptive\\HC008QA', 'HQAM\\Adaptive\\HC008QA', 'HQAM\\Adaptive\\HC009QA', 'HQAM\\Adaptive\\HC009QA', 'HQAM\\Adaptive\\HC009QA', 'HQAM\\Adaptive\\HC009QA', 'HQAM\\Adaptive\\HC009QA', 'HQAM\\Adaptive\\HC009QA', 'HQAM\\Adaptive\\HC009QA', 'HQAM\\Adaptive\\HC009QA', 'HQAM\\Adaptive\\HC009QA', 'HQAM\\Adaptive\\HC010QA', 'HQAM\\Adaptive\\HC010QA', 'HQAM\\Adaptive\\HC010QA', 'HQAM\\Adaptive\\HC010QA', 'HQAM\\Adaptive\\HC010QA', 'HQAM\\Adaptive\\HC010QA', 'HQAM\\Adaptive\\HC010QA', 'HQAM\\Adaptive\\HC010QA', 'HQAM\\Adaptive\\HC011QA', 'HQAM\\Adaptive\\HC011QA', 'HQAM\\Adaptive\\HC011QA', 'HQAM\\Adaptive\\HC011QA', 'HQAM\\Adaptive\\HC011QA', 'HQAM\\Adaptive\\HC011QA', 'HQAM\\Adaptive\\HC011QA', 'HQAM\\Adaptive\\HC011QA', 'HQAM\\Adaptive\\HC011QA', 'HQAM\\Adaptive\\HC012QA', 'HQAM\\Adaptive\\HC012QA', 'HQAM\\Adaptive\\HC012QA', 'HQAM\\Adaptive\\HC012QA', 'HQAM\\Adaptive\\HC012QA', 'HQAM\\Adaptive\\HC012QA', 'HQAM\\Adaptive\\HC012QA', 'HQAM\\Adaptive\\HC012QA', 'HQAM\\Adaptive\\HC012QA', 'HQAM\\Adaptive\\HC013QA', 'HQAM\\Adaptive\\HC013QA', 'HQAM\\Adaptive\\HC013QA', 'HQAM\\Adaptive\\HC013QA', 'HQAM\\Adaptive\\HC013QA', 'HQAM\\Adaptive\\HC013QA', 'HQAM\\Adaptive\\HC013QA', 'HQAM\\Adaptive\\HC013QA', 'HQAM\\Adaptive\\HC013QA', 'HQAM\\Adaptive\\HC014QA', 'HQAM\\Adaptive\\HC014QA', 'HQAM\\Adaptive\\HC014QA', 'HQAM\\Adaptive\\HC014QA', 'HQAM\\Adaptive\\HC014QA', 'HQAM\\Adaptive\\HC014QA', 'HQAM\\Adaptive\\HC014QA', 'HQAM\\Adaptive\\HC014QA', 'HQAM\\Adaptive\\HC015QA', 'HQAM\\Adaptive\\HC015QA', 'HQAM\\Adaptive\\HC015QA', 'HQAM\\Adaptive\\HC015QA', 'HQAM\\Adaptive\\HC015QA', 'HQAM\\Adaptive\\HC015QA', 'HQAM\\Adaptive\\HC015QA', 'HQAM\\Adaptive\\HC015QA', 'HQAM\\Adaptive\\HC015QA', 'HQAM\\Adaptive\\HC016QA', 'HQAM\\Adaptive\\HC016QA', 'HQAM\\Adaptive\\HC016QA', 'HQAM\\Adaptive\\HC016QA', 'HQAM\\Adaptive\\HC016QA', 'HQAM\\Adaptive\\HC016QA', 'HQAM\\Adaptive\\HC016QA', 'HQAM\\Adaptive\\HC016QA', 'HQAM\\Adaptive\\HC016QA', 'HQAM\\Adaptive\\HC017QA', 'HQAM\\Adaptive\\HC017QA', 'HQAM\\Adaptive\\HC017QA', 'HQAM\\Adaptive\\HC017QA', 'HQAM\\Adaptive\\HC017QA', 'HQAM\\Adaptive\\HC017QA', 'HQAM\\Adaptive\\HC017QA', 'HQAM\\Adaptive\\HC017QA', 'HQAM\\Adaptive\\HC017QA', 'HQAM\\Adaptive\\HC018QA', 'HQAM\\Adaptive\\HC018QA', 'HQAM\\Adaptive\\HC018QA', 'HQAM\\Adaptive\\HC018QA', 'HQAM\\Adaptive\\HC018QA', 'HQAM\\Adaptive\\HC018QA', 'HQAM\\Adaptive\\HC018QA', 'HQAM\\Adaptive\\HC018QA', 'HQAM\\Adaptive\\HC019QA', 'HQAM\\Adaptive\\HC019QA', 'HQAM\\Adaptive\\HC019QA', 'HQAM\\Adaptive\\HC019QA', 'HQAM\\Adaptive\\HC019QA', 'HQAM\\Adaptive\\HC019QA', 'HQAM\\Adaptive\\HC019QA', 'HQAM\\Adaptive\\HC019QA', 'HQAM\\Adaptive\\HC019QA', 'HQAM\\Adaptive\\HC020QA', 'HQAM\\Adaptive\\HC020QA', 'HQAM\\Adaptive\\HC020QA', 'HQAM\\Adaptive\\HC020QA', 'HQAM\\Adaptive\\HC020QA', 'HQAM\\Adaptive\\HC020QA', 'HQAM\\Adaptive\\HC020QA', 'HQAM\\Adaptive\\HC020QA', 'HQAM\\Adaptive\\HC020QA', 'HQAM\\Adaptive\\HC021QA', 'HQAM\\Adaptive\\HC021QA', 'HQAM\\Adaptive\\HC021QA', 'HQAM\\Adaptive\\HC021QA', 'HQAM\\Adaptive\\HC021QA', 'HQAM\\Adaptive\\HC021QA', 'HQAM\\Adaptive\\HC021QA', 'HQAM\\Adaptive\\HC021QA', 'HQAM\\Adaptive\\HC021QA', 'HQAM\\Adaptive\\HC022QA', 'HQAM\\Adaptive\\HC022QA', 'HQAM\\Adaptive\\HC022QA', 'HQAM\\Adaptive\\HC022QA', 'HQAM\\Adaptive\\HC022QA', 'HQAM\\Adaptive\\HC022QA', 'HQAM\\Adaptive\\HC022QA', 'HQAM\\Adaptive\\HC022QA', 'HQAM\\Adaptive\\HC023QA', 'HQAM\\Adaptive\\HC023QA', 'HQAM\\Adaptive\\HC023QA', 'HQAM\\Adaptive\\HC023QA', 'HQAM\\Adaptive\\HC023QA', 'HQAM\\Adaptive\\HC023QA', 'HQAM\\Adaptive\\HC023QA', 'HQAM\\Adaptive\\HC023QA', 'HQAM\\Adaptive\\HC023QA', 'HQAM\\Adaptive\\HC024QA', 'HQAM\\Adaptive\\HC024QA', 'HQAM\\Adaptive\\HC024QA', 'HQAM\\Adaptive\\HC024QA', 'HQAM\\Adaptive\\HC024QA', 'HQAM\\Adaptive\\HC024QA', 'HQAM\\Adaptive\\HC024QA', 'HQAM\\Adaptive\\HC024QA', 'HQAM\\Adaptive\\HC024QA', 'HQAM\\Adaptive\\HC025QA', 'HQAM\\Adaptive\\HC025QA', 'HQAM\\Adaptive\\HC025QA', 'HQAM\\Adaptive\\HC025QA', 'HQAM\\Adaptive\\HC025QA', 'HQAM\\Adaptive\\HC025QA', 'HQAM\\Adaptive\\HC025QA', 'HQAM\\Adaptive\\HC025QA', 'HQAM\\Adaptive\\HC025QA', 'HQAM\\Adaptive\\HC026QA', 'HQAM\\Adaptive\\HC026QA', 'HQAM\\Adaptive\\HC026QA', 'HQAM\\Adaptive\\HC026QA', 'HQAM\\Adaptive\\HC026QA', 'HQAM\\Adaptive\\HC026QA', 'HQAM\\Adaptive\\HC026QA', 'HQAM\\Adaptive\\HC026QA', 'HQAM\\Adaptive\\HC027QA', 'HQAM\\Adaptive\\HC027QA', 'HQAM\\Adaptive\\HC027QA', 'HQAM\\Adaptive\\HC027QA', 'HQAM\\Adaptive\\HC027QA', 'HQAM\\Adaptive\\HC027QA', 'HQAM\\Adaptive\\HC027QA', 'HQAM\\Adaptive\\HC027QA', 'HQAM\\Adaptive\\HC028QA', 'HQAM\\Adaptive\\HC028QA', 'HQAM\\Adaptive\\HC028QA', 'HQAM\\Adaptive\\HC028QA', 'HQAM\\Adaptive\\HC028QA', 'HQAM\\Adaptive\\HC028QA', 'HQAM\\Adaptive\\HC028QA', 'HQAM\\Adaptive\\HC028QA', 'HQAM\\Adaptive\\HC029QA', 'HQAM\\Adaptive\\HC029QA', 'HQAM\\Adaptive\\HC029QA', 'HQAM\\Adaptive\\HC029QA', 'HQAM\\Adaptive\\HC029QA', 'HQAM\\Adaptive\\HC029QA', 'HQAM\\Adaptive\\HC029QA', 'HQAM\\Adaptive\\HC029QA', 'HQAM\\Adaptive\\HC030QA', 'HQAM\\Adaptive\\HC030QA', 'HQAM\\Adaptive\\HC030QA', 'HQAM\\Adaptive\\HC030QA', 'HQAM\\Adaptive\\HC030QA', 'HQAM\\Adaptive\\HC030QA', 'HQAM\\Adaptive\\HC030QA', 'HQAM\\Adaptive\\HC030QA', 'HQAM\\Adaptive\\HC031QA', 'HQAM\\Adaptive\\HC031QA', 'HQAM\\Adaptive\\HC031QA', 'HQAM\\Adaptive\\HC031QA', 'HQAM\\Adaptive\\HC031QA', 'HQAM\\Adaptive\\HC031QA', 'HQAM\\Adaptive\\HC031QA', 'HQAM\\Adaptive\\HC031QA', 'HQAM\\Adaptive\\HC031QA', 'HQAM\\Adaptive\\HC032QA', 'HQAM\\Adaptive\\HC032QA', 'HQAM\\Adaptive\\HC032QA', 'HQAM\\Adaptive\\HC032QA', 'HQAM\\Adaptive\\HC032QA', 'HQAM\\Adaptive\\HC032QA', 'HQAM\\Adaptive\\HC032QA', 'HQAM\\Adaptive\\HC032QA', 'HQAM\\Adaptive\\HC033QA', 'HQAM\\Adaptive\\HC033QA', 'HQAM\\Adaptive\\HC033QA', 'HQAM\\Adaptive\\HC033QA', 'HQAM\\Adaptive\\HC033QA', 'HQAM\\Adaptive\\HC033QA', 'HQAM\\Adaptive\\HC033QA', 'HQAM\\Adaptive\\HC033QA', 'HQAM\\Adaptive\\HC033QA', 'HQAM\\Adaptive\\HC034QA', 'HQAM\\Adaptive\\HC034QA', 'HQAM\\Adaptive\\HC034QA', 'HQAM\\Adaptive\\HC034QA', 'HQAM\\Adaptive\\HC034QA', 'HQAM\\Adaptive\\HC034QA', 'HQAM\\Adaptive\\HC034QA', 'HQAM\\Adaptive\\HC034QA', 'HQAM\\Adaptive\\HC035QA', 'HQAM\\Adaptive\\HC035QA', 'HQAM\\Adaptive\\HC035QA', 'HQAM\\Adaptive\\HC035QA', 'HQAM\\Adaptive\\HC035QA', 'HQAM\\Adaptive\\HC035QA', 'HQAM\\Adaptive\\HC035QA', 'HQAM\\Adaptive\\HC035QA', 'HQAM\\Adaptive\\HC035QA', 'HQAM\\Adaptive\\HC036QA', 'HQAM\\Adaptive\\HC036QA', 'HQAM\\Adaptive\\HC036QA', 'HQAM\\Adaptive\\HC036QA', 'HQAM\\Adaptive\\HC036QA', 'HQAM\\Adaptive\\HC036QA', 'HQAM\\Adaptive\\HC036QA', 'HQAM\\Adaptive\\HC036QA', 'HQAM\\Adaptive\\HC036QA', 'HQAM\\Adaptive\\HC037QA', 'HQAM\\Adaptive\\HC037QA', 'HQAM\\Adaptive\\HC037QA', 'HQAM\\Adaptive\\HC037QA', 'HQAM\\Adaptive\\HC037QA', 'HQAM\\Adaptive\\HC037QA', 'HQAM\\Adaptive\\HC037QA', 'HQAM\\Adaptive\\HC037QA', 'HQAM\\Adaptive\\HC037QA', 'HQAM\\Fixed\\HC001QF', 'HQAM\\Fixed\\HC002QF', 'HQAM\\Fixed\\HC003QF', 'HQAM\\Fixed\\HC004QF', 'HQAM\\Fixed\\HC005QF', 'HQAM\\Fixed\\HC006QF', 'HQAM\\Fixed\\HC007QF', 'HQAM\\Fixed\\HC008QF', 'HQAM\\Fixed\\HC009QF', 'HQAM\\Fixed\\HC010QF', 'HQAM\\Fixed\\HC011QF', 'HQAM\\Fixed\\HC012QF', 'HQAM\\Fixed\\HC013QF', 'HQAM\\Fixed\\HC014QF', 'HQAM\\Fixed\\HC015QF', 'HQAM\\Fixed\\HC016QF', 'HQAM\\Fixed\\HC017QF', 'HQAM\\Fixed\\HC018QF', 'HQAM\\Fixed\\HC019QF', 'HQAM\\Fixed\\HC020QF', 'HQAM\\Fixed\\HC021QF', 'HQAM\\Fixed\\HC022QF', 'HQAM\\Fixed\\HC023QF', 'HQAM\\Fixed\\HC024QF', 'HQAM\\Fixed\\HC025QF', 'HQAM\\Fixed\\HC026QF', 'HQAM\\Fixed\\HC027QF', 'HQAM\\Fixed\\HC028QF', 'HQAM\\Fixed\\HC029QF', 'HQAM\\Fixed\\HC030QF', 'HQAM\\Fixed\\HC031QF', 'HQAM\\Fixed\\HC032QF', 'HQAM\\Fixed\\HC033QF', 'HQAM\\Fixed\\HC034QF', 'HQAM\\Fixed\\HC035QF', 'HQAM\\Fixed\\HC036QF', 'HQAM\\Fixed\\HC037QF', 'HQAM\\Fixed\\HC038QF', 'HQAM\\Fixed\\HC039QF', 'HQAM\\Fixed\\HC040QF', 'HQAM\\Fixed\\HC041QF', 'HQAM\\Fixed\\HC042QF', 'HQAM\\Fixed\\HC043QF', 'HQAM\\Fixed\\HC044QF', 'HQAM\\Fixed\\HC045QF', 'HQAM\\Fixed\\HC046QF', 'HQAM\\Fixed\\HC047QF', 'HQAM\\Fixed\\HC048QF', 'HQAM\\Fixed\\HC049QF', 'HQAM\\Fixed\\HC050QF', 'HQAM\\Fixed\\HC051QF', 'HQAM\\Fixed\\HC052QF', 'HQAM\\Fixed\\HC053QF', 'HQAM\\Fixed\\HC054QF', 'HQAM\\Fixed\\HC055QF', 'HQAM\\Fixed\\HC056QF', 'HQAM\\Fixed\\HC057QF', 'HQAM\\Fixed\\HC058QF', 'HQAM\\Fixed\\HC059QF', 'HQAM\\Fixed\\HC060QF', 'HQAM\\Fixed\\HC061QF', 'HQAM\\Fixed\\HC062QF', 'HQAM\\Fixed\\HC063QF', 'HQAM\\Fixed\\HC064QF', 'HQAM\\Fixed\\HC065QF', 'HQAM\\Fixed\\HC066QF', 'HQAM\\Fixed\\HC067QF', 'HQAM\\Fixed\\HC068QF', 'HQAM\\Fixed\\HC069QF', 'HQAM\\Fixed\\HC070QF', 'HQAM\\Fixed\\HC071QF', 'HQAM\\Fixed\\HC072QF', 'HQAM\\Fixed\\HC073QF', 'HQAM\\Fixed\\HC074QF', 'HQAM\\Fixed\\HC075QF', 'HQAM\\Fixed\\HC076QF', 'HQAM\\Fixed\\HC077QF', 'HQAM\\Fixed\\HC078QF', 'HQAM\\Fixed\\HC079QF', 'HQAM\\Fixed\\HC080QF', 'HQAM\\Fixed\\HC081QF', 'HQAM\\Fixed\\HC082QF', 'HQAM\\Fixed\\HC083QF', 'HQAM\\Fixed\\HC084QF', 'HQAM\\Fixed\\HC085QF', 'HQAM\\Fixed\\HC086QF', 'HQAM\\Fixed\\HC087QF', 'HQAM\\Fixed\\HC088QF', 'HQAM\\Fixed\\HC089QF', 'HQAM\\Fixed\\HC090QF', 'HQAM\\Fixed\\HC091QF', 'HQAM\\Fixed\\HC092QF', 'HQAM\\Fixed\\HC093QF', 'HQAM\\Fixed\\HC094QF', 'HQAM\\Fixed\\HC095QF', 'HQAM\\Fixed\\HC096QF', 'HQAM\\Fixed\\HC097QF', 'HQAM\\Fixed\\HC098QF', 'HQAM\\Fixed\\HC099QF', 'HQAM\\Fixed\\HC100QF', 'HQAM\\Fixed\\HC101QF', 'HQAM\\Fixed\\HC102QF', 'HQAM\\Fixed\\HC103QF', 'HQAM\\Fixed\\HC104QF', 'HQAM\\Fixed\\HC105QF', 'HQAM\\Fixed\\HC106QF', 'HQAM\\Fixed\\HC107QF', 'HQAM\\Fixed\\HC108QF', 'HQAM\\Fixed\\HC109QF', 'HQAM\\Fixed\\HC110QF', 'HQAM\\Fixed\\HC111QF', 'HQAM\\Fixed\\HC112QF', 'HQAM\\Fixed\\HC113QF', 'HQAM\\Fixed\\HC114QF', 'HQAM\\Fixed\\HC115QF', 'HQAM\\Fixed\\HC116QF', 'HQAM\\Fixed\\HC117QF', 'HQAM\\Fixed\\HC118QF', 'HQAM\\Fixed\\HC119QF', 'HQAM\\Fixed\\HC120QF', 'HQAM\\Fixed\\HC121QF', 'HQAM\\Fixed\\HC122QF', 'HQAM\\Fixed\\HC123QF', 'HQAM\\Fixed\\HC124QF', 'HQAM\\Fixed\\HC125QF', 'HQAM\\Fixed\\HC126QF', 'HQAM\\Fixed\\HC127QF', 'HQAM\\Fixed\\HC128QF', 'HQAM\\Fixed\\HC129QF', 'HQAM\\Fixed\\HC130QF', 'HQAM\\Fixed\\HC131QF', 'HQAM\\Fixed\\HC132QF', 'HQAM\\Fixed\\HC133QF', 'HQAM\\Fixed\\HC134QF', 'HQAM\\Fixed\\HC135QF', 'HQAM\\Fixed\\HC136QF', 'HQAM\\Fixed\\HC137QF', 'HQAM\\Fixed\\HC138QF', 'HQAM\\Fixed\\HC139QF', 'HQAM\\Fixed\\HC140QF', 'HQAM\\Fixed\\HC141QF', 'HQAM\\Fixed\\HC142QF', 'HQAM\\Fixed\\HC143QF', 'HQAM\\Fixed\\HC144QF', 'HQAM\\Fixed\\HC145QF', 'HQAM\\Fixed\\HC146QF', 'HQAM\\Fixed\\HC147QF', 'HQAM\\Fixed\\HC148QF', 'HQAM\\Fixed\\HC149QF', 'HQAM\\Fixed\\HC150QF', 'HQAM\\Fixed\\HC151QF', 'HQAM\\Fixed\\HC152QF', 'HQAM\\Fixed\\HC153QF', 'HQAM\\Fixed\\HC154QF', 'HQAM\\Fixed\\HC155QF', 'HQAM\\Fixed\\HC156QF', 'HQAM\\Fixed\\HC157QF', 'HQAM\\Fixed\\HC158QF', 'HQAM\\Fixed\\HC159QF', 'HQAM\\Fixed\\HC160QF', 'HQAM\\Fixed\\HC161QF', 'HQAM\\Fixed\\HC162QF', 'HQAM\\Fixed\\HC163QF', 'HQAM\\Fixed\\HC164QF', 'HQAM\\Fixed\\HC165QF', 'HQAM\\Fixed\\HC166QF', 'HQAM\\Fixed\\HC167QF', 'HQAM\\Fixed\\HC168QF', 'HQAM\\Fixed\\HC169QF', 'HQAM\\Fixed\\HC170QF', 'HQAM\\Fixed\\HC171QF', 'HQAM\\Fixed\\HC172QF', 'HQAM\\Fixed\\HC173QF', 'HQAM\\Fixed\\HC174QF', 'HQAM\\Fixed\\HC175QF', '9400 AWY\\Fixed\\R9A001FT', '9400 AWY\\Fixed\\R9A002FT', '9400 AWY\\Fixed\\R9A003FT', '9400 AWY\\Fixed\\R9A004FT', '9400 AWY\\Fixed\\R9A005FT', '9400 AWY\\Fixed\\R9A006FT', '9400 AWY\\Fixed\\R9A007FT', '9400 AWY\\Fixed\\R9A008FT', '9400 AWY\\Fixed\\R9A009FT', '9400 AWY\\Fixed\\R9A010FT', '9400 AWY\\Fixed\\R9A011FT', '9400 AWY\\Fixed\\R9A012FT', '9400 AWY\\Fixed\\R9A013FT', '9400 AWY\\Fixed\\R9A014FT', '9400 AWY\\Fixed\\R9A015FT', '9400 AWY\\Fixed\\R9A016FT', '9400 AWY\\Fixed\\R9A017FT', '9400 AWY\\Fixed\\R9A018FT', '9400 AWY\\Fixed\\R9A019FT', '9400 AWY\\Fixed\\R9A020FT', '9400 AWY\\Fixed\\R9A021FT', '9400 AWY\\Fixed\\R9A022FT', '9400 AWY\\Fixed\\R9A023FT', '9400 AWY\\Fixed\\R9A024FT', '9400 AWY\\Fixed\\R9A025FT', '9400 AWY\\Fixed\\R9A026FT', '9400 AWY\\Fixed\\R9A027FT', '9400 AWY\\Fixed\\R9A028FT', '9500 MXC\\Fixed\\R9M001FT', '9500 MXC\\Fixed\\R9M002FT', '9500 MXC\\Fixed\\R9M003FT', '9500 MXC\\Fixed\\R9M004FT', '9500 MXC\\Fixed\\R9M005FT', '9500 MXC\\Fixed\\R9M006FT', '9500 MXC\\Fixed\\R9M007FT', '9500 MXC\\Fixed\\R9M008FT', '9500 MXC\\Fixed\\R9M009FT', '9500 MXC\\Fixed\\R9M010FT', '9500 MXC\\Fixed\\R9M011FT', '9500 MXC\\Fixed\\R9M012FT', '9500 MXC\\Fixed\\R9M013FT', '9500 MXC\\Fixed\\R9M014FT', '9500 MXC\\Fixed\\R9M015FT', '9500 MXC\\Fixed\\R9M016FT', '9500 MXC\\Fixed\\R9M017FT', '9500 MXC\\Fixed\\R9M018FT', '9500 MXC\\Fixed\\R9M019FT', '9500 MXC\\Fixed\\R9M020FT', '9500 MXC\\Fixed\\R9M021FT', '9500 MXC\\Fixed\\R9M022FT', '9500 MXC\\Fixed\\R9M023FT', '9500 MXC\\Fixed\\R9M024FT', '9500 MXC\\Fixed\\R9M025FT', '9500 MXC\\Fixed\\R9M026FT', '9500 MXC\\Fixed\\R9M027FT', '9500 MXC\\Fixed\\R9M028FT', '9500 MXC\\Fixed\\R9M029FT', '9500 MXC\\Fixed\\R9M030FT', '9500 MXC\\Fixed\\R9M031FT', '9500 MXC\\Fixed\\R9M032FT', '9500 MXC\\Fixed\\R9M033FT', '9500 MXC\\Fixed\\R9M034FT', '9500 MXC\\Fixed\\R9M035FT', '9500 MXC\\Fixed\\R9M036FT', '9500 MXC\\Fixed\\R9M037FT', '9500 MXC\\Fixed\\R9M038FT', '9500 MXC\\Fixed\\R9M039FT', '9500 MXC\\Fixed\\R9M040FT', '9500 MXC\\Fixed\\R9M041FT', '9500 MXC\\Fixed\\R9M042FT', '9500 MXC\\Fixed\\R9M043FT', '9500 MXC\\Fixed\\R9M044FT', '9500 MXC\\Fixed\\R9M045FT', '9500 MXC\\Fixed\\R9M046FT', '9500 MXC\\Fixed\\R9M047FT', '9500 MXC\\Fixed\\R9M048FT', '9500 MXC\\Fixed\\R9M049FT', '9500 MXC\\Fixed\\R9M050FT', '9500 MXC\\Fixed\\R9M051FT', '9500 MXC\\Fixed\\R9M052FT', '9500 MXC\\Fixed\\R9M053FT', '9500 MXC\\Fixed\\R9M054FT', '9500 MXC\\Fixed\\R9M055FT', '9500 MXC\\Fixed\\R9M056FT', '9500 MXC\\Fixed\\R9M057FT', '9500 MXC\\Fixed\\R9M058FT', '9500 MXC\\Fixed\\R9M059FT', '9500 MXC\\Fixed\\R9M060FT', '9500 MXC\\Fixed\\R9M061FT', '9500 MXC\\Fixed\\R9M062FT', '9500 MXC\\Fixed\\R9M063FT', '9500 MXC\\Fixed\\R9M064FT', '9500 MXC\\Fixed\\R9M065FT', '9500 MXC\\Fixed\\R9M066FT', '9500 MXC\\Fixed\\R9M067FT', '9500 MXC\\Fixed\\R9M068FT', '9500 MXC\\Fixed\\R9M069FT', '9500 MXC\\Fixed\\R9M070FT', '9500 MXC\\Fixed\\R9M071FT', '9500 MXC\\Fixed\\R9M072FT', '9500 MXC\\Fixed\\R9M073FT', '9500 MXC\\Fixed\\R9M074FT', '9500 MXC\\Fixed\\R9M075FT', '9500 MXC\\Fixed\\R9M076FT', '9500 MXC\\Fixed\\R9M077FT', '9500 MXC\\Fixed\\R9M078FT', '9500 MXC\\Fixed\\R9M079FT', '9500 MXC\\Fixed\\R9M080FT', '9500 MXC\\Fixed\\R9M081FT', '9500 MXC\\Fixed\\R9M082FT', '9500 MXC\\Fixed\\R9M083FT', '9500 MXC\\Fixed\\R9M084FT', '9500 MXC\\Fixed\\R9M085FT', '9500 MXC\\Fixed\\R9M086FT', '9500 MXC\\Fixed\\R9M087FT', '9500 MXC\\Fixed\\R9M088FT', '9500 MXC\\Fixed\\R9M089FT', '9500 MXC\\Fixed\\R9M090FT', '9500 MXC\\Fixed\\R9M091FT', '9500 MXC\\Fixed\\R9M092FT', '9500 MXC\\Fixed\\R9M093FT', '9500 MXC\\Fixed\\R9M094FT', '9500 MXC\\Fixed\\R9M095FT', '9500 MXC\\Fixed\\R9M096FT', '9500 MXC\\Fixed\\R9M097FT', '9500 MXC\\Fixed\\R9M098FT', '9500 MXC\\Fixed\\R9M099FT', '9500 MXC\\Fixed\\R9M100FT', '9500 MXC\\Fixed\\R9M101FT', '9500 MXC\\Fixed\\R9M102FT', '9500 MXC\\Fixed\\R9M103FT', '9500 MXC\\Fixed\\R9M104FT', '9500 MXC\\Fixed\\R9M105FT', '9500 MXC\\Fixed\\R9M106FT', '9500 MXC\\Fixed\\R9M107FT', '9500 MXC\\Fixed\\R9M108FT', '9500 MXC\\Fixed\\R9M109FT', '9500 MXC\\Fixed\\R9M110FT', '9500 MXC\\Fixed\\R9M111FT', '9500 MXC\\Fixed\\R9M112FT', '9500 MXC\\Fixed\\R9M113FT', '9500 MXC\\Fixed\\R9M114FT', '9500 MXC\\Fixed\\R9M115FT', '9500 MXC\\Fixed\\R9M116FT', '9500 MXC\\Fixed\\R9M117FT', '9500 MXC\\Fixed\\R9M118FT', '9500 MXC\\Fixed\\R9M119FT', '9500 MXC\\Fixed\\R9M120FT', '9500 MXC\\Fixed\\R9M121FT', '9500 MXC\\Fixed\\R9M122FT', '9500 MXC\\Fixed\\R9M123FT', '9500 MXC\\Fixed\\R9M124FT', '9500 MXC\\Fixed\\R9M125FT', '9500 MXC\\Fixed\\R9M126FT', '9500 MXC\\Fixed\\R9M127FT', '9500 MXC\\Fixed\\R9M128FT', '9500 MXC\\Fixed\\R9M129FT', '9500 MXC\\Fixed\\R9M130FT', '9500 MXC\\Fixed\\R9M131FT', '9500 MXC\\Fixed\\R9M132FT', '9500 MXC\\Fixed\\R9M133FT', '9500 MXC\\Fixed\\R9M134FT', '9500 MXC\\Fixed\\R9M135FT', '9500 MXC\\Fixed\\R9M136FT', '9500 MXC\\Fixed\\R9M137FT', '9500 MXC\\Fixed\\R9M138FT', '9500 MXC\\Fixed\\R9M139FT', '9500 MXC\\Fixed\\R9M140FT', '9500 MXC\\Fixed\\R9M141FT', '9500 MXC\\Fixed\\R9M142FT', '9500 MXC\\Fixed\\R9M143FT', '9500 MXC\\Fixed\\R9M144FT', '9500 MXC\\Fixed\\R9M145FT', '9500 MXC\\Fixed\\R9M146FT', '9500 MXC\\Fixed\\R9M147FT', '9500 MXC\\Fixed\\R9M148FT', '9500 MXC\\Fixed\\R9M149FT', '9500 MXC\\Fixed\\R9M150FT', '9500 MXC\\Fixed\\R9M151FT', '9500 MXC\\Fixed\\R9M152FT', '9500 MXC\\Fixed\\R9M153FT', '9500 MXC\\Fixed\\R9M154FT', '9500 MXC\\Fixed\\R9M155FT', '9500 MXC\\Fixed\\R9M156FT', '9500 MXC\\Fixed\\R9M157FT', '9500 MXC\\Fixed\\R9M158FT', '9600 USY\\Fixed\\R9U001FT', '9600 USY\\Fixed\\R9U002FT', '9600 USY\\Fixed\\R9U003FT', '9600 USY\\Fixed\\R9U004FT', '9600 USY\\Fixed\\R9U005FT', '9600 USY\\Fixed\\R9U006FT', '9600 USY\\Fixed\\R9U007FT', '9600 USY\\Fixed\\R9U008FT', '9600 USY\\Fixed\\R9U009FT', '9600 USY\\Fixed\\R9U010FT', '9600 USY\\Fixed\\R9U011FT', '9600 USY\\Fixed\\R9U012FT', '9600 USY\\Fixed\\R9U013FT', '9600 USY\\Fixed\\R9U014FT', '9600 USY\\Fixed\\R9U015FT', '9600 USY\\Fixed\\R9U016FT', '9600 USY\\Fixed\\R9U017FT', '9600 USY\\Fixed\\R9U018FT', 'DVR-4000\\Fixed\\RD4001FT', 'DVR-4000\\Fixed\\RD4002FT', 'DVR-4000\\Fixed\\RD4003FT', 'DVR-4000\\Fixed\\RD4004FT', 'DVR-4000\\Fixed\\RD4005FT', 'DVR-4000\\Fixed\\RD4006FT', 'DVR-4000\\Fixed\\RD4007FT', 'DVR-4000\\Fixed\\RD4008FT', 'DVR-4000\\Fixed\\RD4009FT', 'DVR-4000\\Fixed\\RD4010FT', 'DVR-4000\\Fixed\\RD4011FT', 'DVR-4000\\Fixed\\RD4012FT', 'DVR-4000\\Fixed\\RD4013FT', 'DVR-4000\\Fixed\\RD4014FT', 'DVR-4000\\Fixed\\RD4015FT', 'DVR-4000\\Fixed\\RD4016FT', 'DVR-4000\\Fixed\\RD4017FT', 'DVR-4000\\Fixed\\RD4018FT', 'DVR-4000\\Fixed\\RD4019FT', 'DVR-4000\\Fixed\\RD4020FT', 'DVR-4000\\Fixed\\RD4021FT', 'DVR-4000\\Fixed\\RD4022FT', 'MDR 6 8 11\\Fixed\\M9001FT', 'MDR 6 8 11\\Fixed\\M9002FT', 'MDR 6 8 11\\Fixed\\M9003FT', 'MDR 6 8 11\\Fixed\\M9004FT', 'MDR 6 8 11\\Fixed\\M9005FT', 'MDR 6 8 11\\Fixed\\M9006FT', 'MDR-1000\\Fixed\\M11001FT', 'MDR-1000\\Fixed\\M11002FT', 'MDR-1000\\Fixed\\M11003FT', 'MDR-1000\\Fixed\\M11004FT', 'MDR-1000\\Fixed\\M11005FT', 'MDR-1000\\Fixed\\M11006FT', 'MDR-1000\\Fixed\\M11007FT', 'MDR-1000\\Fixed\\M11008FT', 'MDR-1000\\Fixed\\M11009FT', 'MDR-1000\\Fixed\\M11010FT', 'MDR-1000\\Fixed\\M11011FT', 'MDR-1000\\Fixed\\M11012FT', 'MDR-1000\\Fixed\\M11013FT', 'MDR-1000\\Fixed\\M11014FT', 'MDR-1000\\Fixed\\M11015FT', 'MDR-1000\\Fixed\\M11016FT', 'MDR-1000\\Fixed\\M11017FT', 'MDR-1000\\Fixed\\M11018FT', 'MDR-1000\\Fixed\\M11019FT', 'MDR-2000\\Fixed\\M8001FT', 'MDR-2000\\Fixed\\M8002FT', 'MDR-2000\\Fixed\\M8003FT', 'MDR-3X18\\Fixed\\RM3001FT', 'MDR-3X18\\Fixed\\RM3002FT', 'MDR-3X18\\Fixed\\RM3003FT', 'MDR-3X18\\Fixed\\RM3004FT', 'MDR-3X18\\Fixed\\RM3005FT', 'MDR-3X18\\Fixed\\RM3006FT', 'MDR-3X18\\Fixed\\RM3007FT', 'MDR-3X18\\Fixed\\RM3008FT', 'MDR-3X18\\Fixed\\RM3009FT', 'MDR-3X18\\Fixed\\RM3010FT', 'MDR-3X18\\Fixed\\RM3011FT', 'MDR-3X18\\Fixed\\RM3012FT', 'MDR-4000\\Fixed\\M4001FT', 'MDR-4000\\Fixed\\M4002FT', 'MDR-4000\\Fixed\\M4003FT', 'MDR-4000\\Fixed\\M4004FT', 'MDR-4000\\Fixed\\M4005FT', 'MDR-4000\\Fixed\\M4006FT', 'MDR-4000\\Fixed\\M4007FT', 'MDR-4000\\Fixed\\M4008FT', 'MDR-4000\\Fixed\\M4009FT', 'MDR-4000\\Fixed\\M4010FT', 'MDR-4000\\Fixed\\M4011FT', 'MDR-4000\\Fixed\\M4012FT', 'MDR-4000\\Fixed\\M4013FT', 'MDR-4000\\Fixed\\M4014FT', 'MDR-4000\\Fixed\\M4015FT', 'MDR-4000\\Fixed\\M4016FT', 'MDR-4000\\Fixed\\M4017FT', 'MDR-4000\\Fixed\\M4018FT', 'MDR-4000\\Fixed\\M4019FT', 'MDR-4000\\Fixed\\M4020FT', 'MDR-4000\\Fixed\\M4021FT', 'MDR-4000\\Fixed\\M4022FT', 'MDR-4000\\Fixed\\M4023FT', 'MDR-4000\\Fixed\\M4024FT', 'MDR-4000\\Fixed\\M4025FT', 'MDR-4000\\Fixed\\M4026FT', 'MDR-4000\\Fixed\\M4027FT', 'MDR-4000\\Fixed\\M4028FT', 'MDR-4000\\Fixed\\M4029FT', 'MDR-4000\\Fixed\\M4030FT', 'MDR-4000\\Fixed\\M4031FT', 'MDR-4000\\Fixed\\M4032FT', 'MDR-4000\\Fixed\\M4033FT', 'MDR-4000\\Fixed\\M4034FT', 'MDR-4000\\Fixed\\M4035FT', 'MDR-4000\\Fixed\\M4036FT', 'MDR-4000\\Fixed\\M4037FT', 'MDR-4000\\Fixed\\M4038FT', 'MDR-4000\\Fixed\\M4039FT', 'MDR-4000\\Fixed\\M4040FT', 'MDR-4000\\Fixed\\M4041FT', 'MDR-4000\\Fixed\\M4042FT', 'MDR-4000\\Fixed\\M4043FT', 'MDR-4000e\\Fixed\\M4E001FT', 'MDR-4000e\\Fixed\\M4E002FT', 'MDR-4000e\\Fixed\\M4E003FT', 'MDR-4000e\\Fixed\\M4E004FT', 'MDR-4000e\\Fixed\\M4E005FT', 'MDR-4000e\\Fixed\\M4E006FT', 'MDR-4000e\\Fixed\\M4E007FT', 'MDR-4000e\\Fixed\\M4E008FT', 'MDR-4000e\\Fixed\\M4E009FT', 'MDR-4000e\\Fixed\\M4E010FT', 'MDR-4000e\\Fixed\\M4E011FT', 'MDR-4000e\\Fixed\\M4E012FT', 'MDR-4000e\\Fixed\\M4E013FT', 'MDR-4000e\\Fixed\\M4E014FT', 'MDR-4000e\\Fixed\\M4E015FT', 'MDR-4000e\\Fixed\\M4E016FT', 'MDR-4000e\\Fixed\\M4E017FT', 'MDR-4000e\\Fixed\\M4E018FT', 'MDR-4000e\\Fixed\\M4E019FT', 'MDR-4000e\\Fixed\\M4E020FT', 'MDR-4000e\\Fixed\\M4E021FT', 'MDR-4000e\\Fixed\\M4E022FT', 'MDR-4000e\\Fixed\\M4E023FT', 'MDR-4000e\\Fixed\\M4E024FT', 'MDR-4000e\\Fixed\\M4E025FT', 'MDR-4000e\\Fixed\\M4E026FT', 'MDR-4000e\\Fixed\\M4E027FT', 'MDR-4000e\\Fixed\\M4E028FT', 'MDR-4000e\\Fixed\\M4E029FT', 'MDR-4000e\\Fixed\\M4E030FT', 'MDR-4000e\\Fixed\\M4E031FT', 'MDR-4000e\\Fixed\\M4E032FT', 'MDR-4000e\\Fixed\\M4E033FT', 'MDR-4000e\\Fixed\\M4E034FT', 'MDR-4000e\\Fixed\\M4E035FT', 'MDR-4000e\\Fixed\\M4E036FT', 'MDR-4000e\\Fixed\\M4E037FT', 'MDR-4000e\\Fixed\\M4E038FT', 'MDR-4000e\\Fixed\\M4E039FT', 'MDR-4000e\\Fixed\\M4E040FT', 'MDR-4000e\\Fixed\\M4E041FT', 'MDR-4000e\\Fixed\\M4E042FT', 'MDR-4000e\\Fixed\\M4E043FT', 'MDR-4000e\\Fixed\\M4E044FT', 'MDR-4000e\\Fixed\\M4E045FT', 'MDR-4000e\\Fixed\\M4E046FT', 'MDR-4000e\\Fixed\\M4E047FT', 'MDR-4000e\\Fixed\\M4E048FT', 'MDR-4000e\\Fixed\\M4E049FT', 'MDR-4000s\\Fixed\\M4S001FT', 'MDR-4000s\\Fixed\\M4S002FT', 'MDR-4000s\\Fixed\\M4S003FT', 'MDR-4000s\\Fixed\\M4S004FT', 'MDR-4000s\\Fixed\\M4S005FT', 'MDR-4000s\\Fixed\\M4S006FT', 'MDR-4000s\\Fixed\\M4S007FT', 'MDR-4000s\\Fixed\\M4S008FT', 'MDR-4000s\\Fixed\\M4S009FT', 'MDR-4000s\\Fixed\\M4S010FT', 'MDR-4000s\\Fixed\\M4S011FT', 'MDR-4000s\\Fixed\\M4S012FT', 'MDR-4000s\\Fixed\\M4S013FT', 'MDR-4000s\\Fixed\\M4S014FT', 'MDR-4000s\\Fixed\\M4S015FT', 'MDR-4000s\\Fixed\\M4S016FT', 'MDR-4000s\\Fixed\\M4S017FT', 'MDR-4000s\\Fixed\\M4S018FT', 'MDR-4000s\\Fixed\\M4S019FT', 'MDR-4000s\\Fixed\\M4S020FT', 'MDR-4000s\\Fixed\\M4S021FT', 'MDR-4000s\\Fixed\\M4S022FT', 'MDR-4000s\\Fixed\\M4S023FT', 'MDR-4000s\\Fixed\\M4S024FT', 'MDR-4000s\\Fixed\\M4S025FT', 'MDR-4000s\\Fixed\\M4S026FT', 'MDR-4000s\\Fixed\\M4S027FT', 'MDR-4000s\\Fixed\\M4S028FT', 'MDR-4000s\\Fixed\\M4S029FT', 'MDR-4000s\\Fixed\\M4S030FT', 'MDR-4000s\\Fixed\\M4S031FT', 'MDR-4000s\\Fixed\\M4S032FT', 'MDR-4000s\\Fixed\\M4S033FT', 'MDR-5000\\Fixed\\M5001FT', 'MDR-5000\\Fixed\\M5002FT', 'MDR-5000\\Fixed\\M5003FT', 'MDR-5000\\Fixed\\M5004FT', 'MDR-5000\\Fixed\\M5005FT', 'MDR-5000\\Fixed\\M5006FT', 'MDR-5000\\Fixed\\M5007FT', 'MDR-5000\\Fixed\\M5008FT', 'MDR-5000\\Fixed\\M5009FT', 'MDR-5000\\Fixed\\M5010FT', 'MDR-5000\\Fixed\\M5011FT', 'MDR-5000\\Fixed\\M5012FT', 'MDR-5000\\Fixed\\M5013FT', 'MDR-5000\\Fixed\\M5014FT', 'MDR-5000\\Fixed\\M5015FT', 'MDR-5000\\Fixed\\M5016FT', 'MDR-5000\\Fixed\\M5017FT', 'MDR-5000\\Fixed\\M5018FT', 'MDR-5000\\Fixed\\M5019FT', 'MDR-5000\\Fixed\\M5020FT', 'MDR-5000\\Fixed\\M5021FT', 'MDR-6000\\Fixed\\M6001FT', 'MDR-6000\\Fixed\\M6002FT', 'MDR-6000\\Fixed\\M6003FT', 'MDR-6000\\Fixed\\M6004FT', 'MDR-6000\\Fixed\\M6005FT', 'MDR-6000\\Fixed\\M6006FT', 'MDR-6000\\Fixed\\M6007FT', 'MDR-6000\\Fixed\\M6008FT', 'MDR-6000\\Fixed\\M6009FT', 'MDR-6000\\Fixed\\M6010FT', 'MDR-6000\\Fixed\\M6011FT', 'MDR-6000\\Fixed\\M6012FT', 'MDR-6000\\Fixed\\M6013FT', 'MDR-6000\\Fixed\\M6014FT', 'MDR-6000\\Fixed\\M6015FT', 'MDR-6000\\Fixed\\M6016FT', 'MDR-6000\\Fixed\\M6017FT', 'MDR-6000\\Fixed\\M6018FT', 'MDR-6000\\Fixed\\M6019FT', 'MDR-6000\\Fixed\\M6020FT', 'MDR-6000\\Fixed\\M6021FT', 'MDR-6000\\Fixed\\M6022FT', 'MDR-6000\\Fixed\\M6023FT', 'MDR-6000\\Fixed\\M6024FT', 'MDR-6000\\Fixed\\M6025FT', 'MDR-6000\\Fixed\\M6026FT', 'MDR-6000\\Fixed\\M6027FT', 'MDR-6000\\Fixed\\M6028FT', 'MDR-6000\\Fixed\\M6029FT', 'MDR-6000\\Fixed\\M6030FT', 'MDR-6000\\Fixed\\M6031FT', 'MDR-6000\\Fixed\\M6032FT', 'MDR-6000\\Fixed\\M6033FT', 'MDR-6000\\Fixed\\M6034FT', 'MDR-6000\\Fixed\\M6035FT', 'MDR-6000\\Fixed\\M6036FT', 'MDR-6000\\Fixed\\M6037FT', 'MDR-6000\\Fixed\\M6038FT', 'MDR-6000\\Fixed\\M6039FT', 'MDR-6000\\Fixed\\M6040FT', 'MDR-6000\\Fixed\\M6041FT', 'MDR-6000\\Fixed\\M6042FT', 'MDR-6000\\Fixed\\M6043FT', 'MDR-6000\\Fixed\\M6044FT', 'MDR-6000\\Fixed\\M6045FT', 'MDR-6000\\Fixed\\M6046FT', 'MDR-6000\\Fixed\\M6047FT', 'MDR-6000\\Fixed\\M6048FT', 'MDR-6000\\Fixed\\M6049FT', 'MDR-6000\\Fixed\\M6050FT', 'MDR-6000\\Fixed\\M6051FT', 'MDR-6000\\Fixed\\M6052FT', 'MDR-6000\\Fixed\\M6053FT', 'MDR-6000\\Fixed\\M6054FT', 'MDR-6000\\Fixed\\M6055FT', 'MDR-6000\\Fixed\\M6056FT', 'MDR-6000\\Fixed\\M6057FT', 'MDR-6000\\Fixed\\M6058FT', 'MDR-6000\\Fixed\\M6059FT', 'MDR-6000\\Fixed\\M6060FT', 'MDR-6000\\Fixed\\M6061FT', 'MDR-6000\\Fixed\\M6062FT', 'MDR-6000\\Fixed\\M6063FT', 'MDR-6000\\Fixed\\M6064FT', 'MDR-6000\\Fixed\\M6065FT', 'MDR-6000\\Fixed\\M6066FT', 'MDR-6000\\Fixed\\M6067FT', 'MDR-6000\\Fixed\\M6068FT', 'MDR-6000\\Fixed\\M6069FT', 'MDR-6000\\Fixed\\M6070FT', 'MDR-6000\\Fixed\\M6071FT', 'MDR-6000\\Fixed\\M6072FT', 'MDR-6000\\Fixed\\M6073FT', 'MDR-6000\\Fixed\\M6074FT', 'MDR-6000\\Fixed\\M6075FT', 'MDR-6000\\Fixed\\M6076FT', 'MDR-6000\\Fixed\\M6077FT', 'MDR-6000\\Fixed\\M6078FT', 'MDR-6000\\Fixed\\M6079FT', 'MDR-6000\\Fixed\\M6080FT', 'MDR-6000\\Fixed\\M6081FT', 'MDR-6000\\Fixed\\M6082FT', 'MDR-6000\\Fixed\\M6083FT', 'MDR-6000\\Fixed\\M6084FT', 'MDR-6000\\Fixed\\M6085FT', 'MDR-6000\\Fixed\\M6086FT', 'MDR-6000\\Fixed\\M6087FT', 'MDR-6000\\Fixed\\M6088FT', 'MDR-6000\\Fixed\\M6089FT', 'MDR-6000\\Fixed\\M6090FT', 'MDR-6000\\Fixed\\M6091FT', 'MDR-6000\\Fixed\\M6092FT', 'MDR-6000\\Fixed\\M6093FT', 'MDR-6000\\Fixed\\M6094FT', 'MDR-6000\\Fixed\\M6095FT', 'MDR-6000\\Fixed\\M6096FT', 'MDR-6000\\Fixed\\M6097FT', 'MDR-6000\\Fixed\\M6098FT', 'MDR-6000\\Fixed\\M6099FT', 'MDR-6000\\Fixed\\M6100FT', 'MDR-6000\\Fixed\\M6101FT', 'MDR-6000\\Fixed\\M6102FT', 'MDR-6000\\Fixed\\M6103FT', 'MDR-6000\\Fixed\\M6104FT', 'MDR-6000\\Fixed\\M6105FT', 'MDR-6000\\Fixed\\M6106FT', 'MDR-6000\\Fixed\\M6107FT', 'MDR-6000\\Fixed\\M6108FT', 'MDR-6000\\Fixed\\M6109FT', 'MDR-6000\\Fixed\\M6110FT', 'MDR-6000\\Fixed\\M6111FT', 'MDR-6000\\Fixed\\M6112FT', 'MDR-6000\\Fixed\\M6113FT', 'MDR-6000\\Fixed\\M6114FT', 'MDR-6000\\Fixed\\M6115FT', 'MDR-6000\\Fixed\\M6116FT', 'MDR-6000\\Fixed\\M6117FT', 'MDR-6000\\Fixed\\M6118FT', 'MDR-6000\\Fixed\\M6119FT', 'MDR-6000\\Fixed\\M6120FT', 'MDR-7000\\Fixed\\M7001FT', 'MDR-7000\\Fixed\\M7002FT', 'MDR-7000\\Fixed\\M7003FT', 'MDR-7000\\Fixed\\M7004FT', 'MDR-7000\\Fixed\\M7005FT', 'MDR-7000\\Fixed\\M7006FT', 'MDR-7000\\Fixed\\M7007FT', 'MDR-7000\\Fixed\\M7008FT', 'MDR-7000\\Fixed\\M7009FT', 'MDR-7000\\Fixed\\M7010FT', 'MDR-7000\\Fixed\\M7011FT', 'MDR-7000\\Fixed\\M7012FT', 'MDR-7000\\Fixed\\M7013FT', 'MDR-7000\\Fixed\\M7014FT', 'MDR-7000\\Fixed\\M7015FT', 'MDR-7000\\Fixed\\M7016FT', 'MDR-7000\\Fixed\\M7017FT', 'MDR-7000\\Fixed\\M7018FT', 'MDR-7000\\Fixed\\M7019FT', 'MDR-7000\\Fixed\\M7020FT', 'MDR-8000\\Fixed\\M8K001FT', 'MDR-8000\\Fixed\\M8K002FT', 'MDR-8000\\Fixed\\M8K003FT', 'MDR-8000\\Fixed\\M8K004FT', 'MDR-8000\\Fixed\\M8K005FT', 'MDR-8000\\Fixed\\M8K006FT', 'MDR-8000\\Fixed\\M8K007FT', 'MDR-8000\\Fixed\\M8K008FT', 'MDR-8000\\Fixed\\M8K009FT', 'MDR-8000\\Fixed\\M8K010FT', 'MDR-8000\\Fixed\\M8K011FT', 'MDR-8000\\Fixed\\M8K012FT', 'MDR-8000\\Fixed\\M8K013FT', 'MDR-8000\\Fixed\\M8K014FT', 'MDR-8000\\Fixed\\M8K015FT', 'MDR-8000\\Fixed\\M8K016FT', 'MDR-8000\\Fixed\\M8K017FT', 'MDR-8000\\Fixed\\M8K018FT', 'MDR-8000\\Fixed\\M8K019FT', 'MDR-8000\\Fixed\\M8K020FT', 'MDR-8000\\Fixed\\M8K021FT', 'MDR-8000\\Fixed\\M8K022FT', 'MDR-8000\\Fixed\\M8K023FT', 'MDR-8000\\Fixed\\M8K024FT', 'MDR-8000\\Fixed\\M8K025FT', 'MDR-8000\\Fixed\\M8K026FT', 'MDR-8000\\Fixed\\M8K027FT', 'MDR-8000\\Fixed\\M8K028FT', 'MDR-8000\\Fixed\\M8K029FT', 'MDR-8000\\Fixed\\M8K030FT', 'MDR-8000\\Fixed\\M8K031FT', 'MDR-8000\\Fixed\\M8K032FT', 'MDR-8000\\Fixed\\M8K033FT', 'MDR-8000\\Fixed\\M8K034FT', 'MDR-8000\\Fixed\\M8K035FT', 'MDR-8000\\Fixed\\M8K036FT', 'MDR-8000\\Fixed\\M8K037FT', 'MDR-8000\\Fixed\\M8K038FT', 'MDR-8000\\Fixed\\M8K039FT', 'MDR-8000\\Fixed\\M8K040FT', 'MDR-8000\\Fixed\\M8K041FT', 'MDR-8000\\Fixed\\M8K042FT', 'MDR-8000\\Fixed\\M8K043FT', 'MDR-8000\\Fixed\\M8K044FT', 'MDR-8000\\Fixed\\M8K045FT', 'MDR-8000\\Fixed\\M8K046FT', 'MDR-8000\\Fixed\\M8K047FT', 'MDR-8000\\Fixed\\M8K048FT', 'MDR-8000\\Fixed\\M8K049FT', 'MDR-8000\\Fixed\\M8K050FT', 'MDR-8000\\Fixed\\M8K051FT', 'MDR-8000\\Fixed\\M8K052FT', 'MDR-8000\\Fixed\\M8K053FT', 'MDR-8000\\Fixed\\M8K054FT', 'MDR-8000\\Fixed\\M8K055FT', 'MDR-8000\\Fixed\\M8K056FT', 'MDR-8000\\Fixed\\M8K057FT', 'MDR-8000\\Fixed\\M8K058FT', 'MDR-8000\\Fixed\\M8K059FT', 'MDR-8000\\Fixed\\M8K060FT', 'MDR-8000\\Fixed\\M8K061FT', 'MDR-8000\\Fixed\\M8K062FT', 'MDR-8000\\Fixed\\M8K063FT', 'MDR-8000\\Fixed\\M8K064FT', 'MDR-8000\\Fixed\\M8K065FT', 'MDR-8000\\Fixed\\M8K066FT', 'MDR-8000\\Fixed\\M8K067FT', 'MDR-8000\\Fixed\\M8K068FT', 'MDR-8000\\Fixed\\M8K069FT', 'MDR-8000\\Fixed\\M8K070FT', 'MDR-8000\\Fixed\\M8K071FT', 'MDR-8000\\Fixed\\M8K072FT', 'MDR-8000\\Fixed\\M8K073FT', 'MDR-8000\\Fixed\\M8K074FT', 'MDR-8000\\Fixed\\M8K075FT', 'MDR-8000\\Fixed\\M8K076FT', 'MDR-8000\\Fixed\\M8K077FT', 'MDR-8000\\Fixed\\M8K078FT', 'MDR-8000\\Fixed\\M8K079FT', 'MDR-8000\\Fixed\\M8K080FT', 'MDR-8000\\Fixed\\M8K081FT', 'MDR-8000\\Fixed\\M8K082FT', 'MDR-8000\\Fixed\\M8K083FT', 'MDR-8000\\Fixed\\M8K084FT', 'MDR-8000\\Fixed\\M8K085FT', 'MDR-8000\\Fixed\\M8K086FT', 'MDR-8000\\Fixed\\M8K087FT', 'MDR-8000\\Fixed\\M8K088FT', 'MDR-8000\\Fixed\\M8K089FT', 'MDR-8000\\Fixed\\M8K090FT', 'MDR-8000\\Fixed\\M8K091FT', 'MDR-8000\\Fixed\\M8K092FT', 'MDR-8000\\Fixed\\M8K093FT', 'MDR-8000\\Fixed\\M8K094FT', 'MDR-8000\\Fixed\\M8K095FT', 'MDR-8000\\Fixed\\M8K096FT', 'MDR-8000\\Fixed\\M8K097FT', 'MDR-8000\\Fixed\\M8K098FT', 'MDR-8000\\Fixed\\M8K099FT', 'MDR-8000\\Fixed\\M8K100FT', 'MDR-8000\\Fixed\\M8K101FT', 'MDR-8000\\Fixed\\M8K102FT', 'MDR-8000\\Fixed\\M8K103FT', 'MDR-8000\\Fixed\\M8K104FT', 'MDR-8000\\Fixed\\M8K105FT', 'MDR-8000\\Fixed\\M8K106FT', 'MDR-8000\\Fixed\\M8K107FT', 'MDR-8000\\Fixed\\M8K108FT', 'MDR-8000\\Fixed\\M8K109FT', 'MDR-8000\\Fixed\\M8K110FT', 'MDR-8000\\Fixed\\M8K111FT', 'MDR-8000\\Fixed\\M8K112FT', 'MDR-8000\\Fixed\\M8K113FT', 'MDR-8000\\Fixed\\M8K114FT', 'MDR-8000\\Fixed\\M8K115FT', 'MDR-8000\\Fixed\\M8K116FT', 'MDR-8000\\Fixed\\M8K117FT', 'MDR-8000\\Fixed\\M8K118FT', 'MDR-8000\\Fixed\\M8K119FT', 'MDR-8000\\Fixed\\M8K120FT', 'MDR-8000\\Fixed\\M8K121FT', 'MDR-8000\\Fixed\\M8K122FT', 'MDR-8000\\Fixed\\M8K123FT', 'MDR-8000\\Fixed\\M8K124FT', 'MDR-8000\\Fixed\\M8K125FT', 'MDR-8000\\Fixed\\M8K126FT', 'MDR-8000\\Fixed\\M8K127FT', 'MDR-8000\\Fixed\\M8K128FT', 'MDR-8000\\Fixed\\M8K129FT', 'MDR-8000\\Fixed\\M8K130FT', 'MDR-8000\\Fixed\\M8K131FT', 'MDR-8000\\Fixed\\M8K132FT', 'MDR-8000\\Fixed\\M8K133FT', 'MDR-8000\\Fixed\\M8K134FT', 'MDR-8000\\Fixed\\M8K135FT', 'MDR-8000\\Fixed\\M8K136FT', 'MDR-8000\\Fixed\\M8K137FT', 'MDR-8000\\Fixed\\M8K138FT', 'MDR-8000\\Fixed\\M8K139FT', 'MDR-8000\\Fixed\\M8K140FT', 'MDR-8000\\Fixed\\M8K141FT', 'MDR-8000\\Fixed\\M8K142FT', 'MDR-8000\\Fixed\\M8K143FT', 'MDR-8000\\Fixed\\M8K144FT', 'MDR-8000\\Fixed\\M8K145FT', 'MDR-8000\\Fixed\\M8K146FT', 'MDR-8000\\Fixed\\M8K147FT', 'MDR-8000\\Fixed\\M8K148FT', 'MDR-8000\\Fixed\\M8K149FT', 'MDR-8000\\Fixed\\M8K150FT', 'MDR-8000\\Fixed\\M8K151FT', 'MDR-8000\\Fixed\\M8K152FT', 'MDR-8000\\Fixed\\M8K153FT', 'MDR-8000\\Fixed\\M8K154FT', 'MDR-8000\\Fixed\\M8K155FT', 'MDR-8000\\Fixed\\M8K156FT', 'MDR-8000\\Fixed\\M8K157FT', 'MDR-8000\\Fixed\\M8K158FT', 'MDR-8000\\Fixed\\M8K159FT', 'MDR-8000\\Fixed\\M8K160FT', 'MDR-8000\\Fixed\\M8K161FT', 'MDR-8000\\Fixed\\M8K162FT', 'MDR-8000\\Fixed\\M8K163FT', 'MDR-8000\\Fixed\\M8K164FT', 'MDR-8000\\Fixed\\M8K165FT', 'MDR-8000\\Fixed\\M8K166FT', 'MDR-8000\\Fixed\\M8K167FT', 'MDR-8000\\Fixed\\M8K168FT', 'MDR-8000\\Fixed\\M8K169FT', 'MDR-8000\\Fixed\\M8K170FT', 'MDR-8000\\Fixed\\M8K171FT', 'MDR-8000\\Fixed\\M8K172FT', 'MDR-8000\\Fixed\\M8K173FT', 'MDR-8000\\Fixed\\M8K174FT', 'MDR-8000\\Fixed\\M8K175FT', 'MDR-8000\\Fixed\\M8K176FT', 'MDR-8000\\Fixed\\M8K177FT', 'MDR-8000\\Fixed\\M8K178FT', 'MDR-8000\\Fixed\\M8K179FT', 'MDR-8000\\Fixed\\M8K180FT', 'MDR-8000\\Fixed\\M8K181FT', 'MDR-8000\\Fixed\\M8K182FT', 'MDR-8000\\Fixed\\M8K183FT', 'MDR-8000\\Fixed\\M8K184FT', 'MDR-8000\\Fixed\\M8K185FT', 'MDR-8000\\Fixed\\M8K186FT', 'MDR-8000\\Fixed\\M8K187FT', 'MDR-8000\\Fixed\\M8K188FT', 'MDR-8000\\Fixed\\M8K189FT', 'MDR-8000\\Fixed\\M8K190FT', 'MDR-8000\\Fixed\\M8K191FT', 'MDR-8000\\Fixed\\M8K192FT', 'MDR-8000\\Fixed\\M8K193FT', 'MDR-8000\\Fixed\\M8K194FT', 'MDR-8000\\Fixed\\M8K195FT', 'MDR-8000\\Fixed\\M8K196FT', 'MDR-8000\\Fixed\\M8K197FT', 'MDR-8000\\Fixed\\M8K198FT', 'MDR-8000\\Fixed\\M8K199FT', 'MDR-8000\\Fixed\\M8K200FT', 'MDR-8000\\Fixed\\M8K201FT', 'MDR-8000\\Fixed\\M8K202FT', 'MDR-8000\\Fixed\\M8K203FT', 'MDR-8000\\Fixed\\M8K204FT', 'MDR-8000\\Fixed\\M8K205FT', 'MDR-8000\\Fixed\\M8K206FT', 'MDR-8000\\Fixed\\M8K207FT', 'MDR-8000\\Fixed\\M8K208FT', 'MDR-8000\\Fixed\\M8K209FT', 'MDR-8000\\Fixed\\M8K210FT', 'MDR-8000\\Fixed\\M8K211FT', 'MDR-8000\\Fixed\\M8K212FT', 'MDR-8000\\Fixed\\M8K213FT', 'MDR-8000\\Fixed\\M8K214FT', 'MDR-8000\\Fixed\\M8K215FT', 'MDR-8000\\Fixed\\M8K216FT', 'MDR-8000\\Fixed\\M8K217FT', 'MDR-8000\\Fixed\\M8K218FT', 'MDR-8000\\Fixed\\M8K219FT', 'MDR-8000\\Fixed\\M8K220FT', 'MDR-8000\\Fixed\\M8K221FT', 'MDR-8000\\Fixed\\M8K222FT', 'MDR-8000\\Fixed\\M8K223FT', 'MDR-8000\\Fixed\\M8K224FT', 'MDR-8000\\Fixed\\M8K225FT', 'MDR-8000\\Fixed\\M8K226FT', 'MDR-8000\\Fixed\\M8K227FT', 'MDR-8000\\Fixed\\M8K228FT', 'MDR-8000\\Fixed\\M8K229FT', 'MDR-8000\\Fixed\\M8K230FT', 'MDR-8000\\Fixed\\M8K231FT', 'MDR-8000\\Fixed\\M8K232FT', 'MDR-8000\\Fixed\\M8K233FT', 'MDR-8000\\Fixed\\M8K234FT', 'MDR-8000\\Fixed\\M8K235FT', 'MDR-8000\\Fixed\\M8K236FT', 'MDR-8000\\Fixed\\M8K237FT', 'MDR-8000\\Fixed\\M8K238FT', 'MDR-8000\\Fixed\\M8K239FT', 'MDR-8000\\Fixed\\M8K240FT', 'MDR-8000\\Fixed\\M8K241FT', 'MDR-8000\\Fixed\\M8K242FT', 'MDR-8000\\Fixed\\M8K243FT', 'MDR-8000\\Fixed\\M8K244FT', 'MDR-8000\\Fixed\\M8K245FT', 'MDR-8000\\Fixed\\M8K246FT', 'MDR-8000\\Fixed\\M8K247FT', 'MDR-8000\\Fixed\\M8K248FT', 'MDR-8000\\Fixed\\M8K249FT', 'MDR-8000\\Fixed\\M8K250FT', 'MDR-8000\\Fixed\\M8K251FT', 'MDR-8000\\Fixed\\M8K252FT', 'MDR-8000\\Fixed\\M8K253FT', 'MDR-8000\\Fixed\\M8K254FT', 'MDR-8000\\Fixed\\M8K255FT', 'MDR-8000\\Fixed\\M8K256FT', 'MDR-8000\\Fixed\\M8K257FT', 'MDR-8000\\Fixed\\M8K258FT', 'MDR-8000\\Fixed\\M8K259FT', 'MDR-8000\\Fixed\\M8K260FT', 'MDR-8000\\Fixed\\M8K261FT', 'MDR-8000\\Fixed\\M8K262FT', 'MDR-8000\\Fixed\\M8K263FT', 'MDR-8000\\Fixed\\M8K264FT', 'MDR-8000\\Fixed\\M8K265FT', 'MDR-8000\\Fixed\\M8K266FT', 'MDR-8000\\Fixed\\M8K267FT', 'MDR-8000\\Fixed\\M8K268FT', 'MDR-8000\\Fixed\\M8K269FT', 'MDR-8000\\Fixed\\M8K270FT', 'MDR-8000\\Fixed\\M8K271FT', 'MDR-8000\\Fixed\\M8K272FT', 'MDR-8000\\Fixed\\M8K273FT', 'MDR-8000\\Fixed\\M8K274FT', 'MDR-8000\\Fixed\\M8K275FT', 'MDR-8000\\Fixed\\M8K276FT', 'MDR-8000\\Fixed\\M8K277FT', 'MDR-8000\\Fixed\\M8K278FT', 'MDR-8000\\Fixed\\M8K279FT', 'MDR-8000\\Fixed\\M8K280FT', 'MDR-8000\\Fixed\\M8K281FT', 'MDR-8000\\Fixed\\M8K282FT', 'MDR-8000\\Fixed\\M8K283FT', 'MDR-8000\\Fixed\\M8K284FT', 'MDR-8000\\Fixed\\M8K285FT', 'MDR-8000\\Fixed\\M8K286FT', 'MDR-8000\\Fixed\\M8K287FT', 'MDR-8000\\Fixed\\M8K288FT', 'MDR-8000\\Fixed\\M8K289FT', 'MDR-8000\\Fixed\\M8K290FT', 'MDR-8000\\Fixed\\M8K291FT', 'MDR-8000\\Fixed\\M8K292FT', 'MDR-8000\\Fixed\\M8K293FT', 'MDR-8000\\Fixed\\M8K294FT', 'MDR-8000\\Fixed\\M8K295FT', 'MDR-8000\\Fixed\\M8K296FT', 'MDR-8000\\Fixed\\M8K297FT', 'MDR-8000\\Fixed\\M8K298FT', 'MDR-8000\\Fixed\\M8K299FT', 'MDR-8000\\Fixed\\M8K300FT', 'MDR-8000\\Fixed\\M8K301FT', 'MDR-8000\\Fixed\\M8K302FT', 'MDR-8000\\Fixed\\M8K303FT', 'MDR-8000\\Fixed\\M8K304FT', 'MDR-8000\\Fixed\\M8K305FT', 'MDR-8000\\Fixed\\M8K306FT', 'MDR-8000\\Fixed\\M8K307FT', 'MDR-8000\\Fixed\\M8K308FT', 'MPT-HC XP\\Adaptive\\HC001CAA', 'MPT-HC XP\\Adaptive\\HC001CAA', 'MPT-HC XP\\Adaptive\\HC001CAA', 'MPT-HC XP\\Adaptive\\HC001CAA', 'MPT-HC XP\\Adaptive\\HC001CAA', 'MPT-HC XP\\Adaptive\\HC001CAA', 'MPT-HC XP\\Adaptive\\HC002CAA', 'MPT-HC XP\\Adaptive\\HC002CAA', 'MPT-HC XP\\Adaptive\\HC002CAA', 'MPT-HC XP\\Adaptive\\HC002CAA', 'MPT-HC XP\\Adaptive\\HC002CAA', 'MPT-HC XP\\Adaptive\\HC002CAA', 'MPT-HC XP\\Adaptive\\HC002CAA', 'MPT-HC XP\\Adaptive\\HC003CAA', 'MPT-HC XP\\Adaptive\\HC003CAA', 'MPT-HC XP\\Adaptive\\HC003CAA', 'MPT-HC XP\\Adaptive\\HC003CAA', 'MPT-HC XP\\Adaptive\\HC003CAA', 'MPT-HC XP\\Adaptive\\HC003CAA', 'MPT-HC XP\\Adaptive\\HC003CAA', 'MPT-HC XP\\Adaptive\\HC004CAA', 'MPT-HC XP\\Adaptive\\HC004CAA', 'MPT-HC XP\\Adaptive\\HC004CAA', 'MPT-HC XP\\Adaptive\\HC004CAA', 'MPT-HC XP\\Adaptive\\HC004CAA', 'MPT-HC XP\\Adaptive\\HC004CAA', 'MPT-HC XP\\Adaptive\\HC005CAA', 'MPT-HC XP\\Adaptive\\HC005CAA', 'MPT-HC XP\\Adaptive\\HC005CAA', 'MPT-HC XP\\Adaptive\\HC005CAA', 'MPT-HC XP\\Adaptive\\HC005CAA', 'MPT-HC XP\\Adaptive\\HC005CAA', 'MPT-HC XP\\Adaptive\\HC006CAA', 'MPT-HC XP\\Adaptive\\HC006CAA', 'MPT-HC XP\\Adaptive\\HC006CAA', 'MPT-HC XP\\Adaptive\\HC006CAA', 'MPT-HC XP\\Adaptive\\HC006CAA', 'MPT-HC XP\\Adaptive\\HC006CAA', 'MPT-HC XP\\Adaptive\\HC006CAA', 'MPT-HC XP\\Adaptive\\HC007CAA', 'MPT-HC XP\\Adaptive\\HC007CAA', 'MPT-HC XP\\Adaptive\\HC007CAA', 'MPT-HC XP\\Adaptive\\HC007CAA', 'MPT-HC XP\\Adaptive\\HC007CAA', 'MPT-HC XP\\Adaptive\\HC007CAA', 'MPT-HC XP\\Adaptive\\HC007CAA', 'MPT-HC XP\\Adaptive\\HC008CAA', 'MPT-HC XP\\Adaptive\\HC008CAA', 'MPT-HC XP\\Adaptive\\HC008CAA', 'MPT-HC XP\\Adaptive\\HC008CAA', 'MPT-HC XP\\Adaptive\\HC008CAA', 'MPT-HC XP\\Adaptive\\HC008CAA', 'MPT-HC XP\\Adaptive\\HC008CAA', 'MPT-HC XP\\Adaptive\\HC009CAA', 'MPT-HC XP\\Adaptive\\HC009CAA', 'MPT-HC XP\\Adaptive\\HC009CAA', 'MPT-HC XP\\Adaptive\\HC009CAA', 'MPT-HC XP\\Adaptive\\HC009CAA', 'MPT-HC XP\\Adaptive\\HC009CAA', 'MPT-HC XP\\Adaptive\\HC009CAA', 'MPT-HC XP\\Adaptive\\HC010CAA', 'MPT-HC XP\\Adaptive\\HC010CAA', 'MPT-HC XP\\Adaptive\\HC010CAA', 'MPT-HC XP\\Adaptive\\HC010CAA', 'MPT-HC XP\\Adaptive\\HC010CAA', 'MPT-HC XP\\Adaptive\\HC010CAA', 'MPT-HC XP\\Adaptive\\HC010CAA', 'MPT-HC XP\\Adaptive\\HC011CAA', 'MPT-HC XP\\Adaptive\\HC011CAA', 'MPT-HC XP\\Adaptive\\HC011CAA', 'MPT-HC XP\\Adaptive\\HC011CAA', 'MPT-HC XP\\Adaptive\\HC011CAA', 'MPT-HC XP\\Adaptive\\HC011CAA', 'MPT-HC XP\\Adaptive\\HC011CAA', 'MPT-HC XP\\Adaptive\\HC012CAA', 'MPT-HC XP\\Adaptive\\HC012CAA', 'MPT-HC XP\\Adaptive\\HC012CAA', 'MPT-HC XP\\Adaptive\\HC012CAA', 'MPT-HC XP\\Adaptive\\HC012CAA', 'MPT-HC XP\\Adaptive\\HC012CAA', 'MPT-HC XP\\Adaptive\\HC012CAA', 'MPT-HC XP\\Adaptive\\HC013CAA', 'MPT-HC XP\\Adaptive\\HC013CAA', 'MPT-HC XP\\Adaptive\\HC013CAA', 'MPT-HC XP\\Adaptive\\HC013CAA', 'MPT-HC XP\\Adaptive\\HC013CAA', 'MPT-HC XP\\Adaptive\\HC013CAA', 'MPT-HC XP\\Adaptive\\HC013CAA', 'MPT-HC XP\\Adaptive\\HC014CAA', 'MPT-HC XP\\Adaptive\\HC014CAA', 'MPT-HC XP\\Adaptive\\HC014CAA', 'MPT-HC XP\\Adaptive\\HC014CAA', 'MPT-HC XP\\Adaptive\\HC014CAA', 'MPT-HC XP\\Adaptive\\HC014CAA', 'MPT-HC XP\\Adaptive\\HC014CAA', 'MPT-HC XP\\Adaptive\\HC015CAA', 'MPT-HC XP\\Adaptive\\HC015CAA', 'MPT-HC XP\\Adaptive\\HC015CAA', 'MPT-HC XP\\Adaptive\\HC016CAA', 'MPT-HC XP\\Adaptive\\HC016CAA', 'MPT-HC XP\\Adaptive\\HC016CAA', 'MPT-HC XP\\Adaptive\\HC016CAA', 'MPT-HC XP\\Adaptive\\HC016CAA', 'MPT-HC XP\\Adaptive\\HC016CAA', 'MPT-HC XP\\Adaptive\\HC017CAA', 'MPT-HC XP\\Adaptive\\HC017CAA', 'MPT-HC XP\\Adaptive\\HC017CAA', 'MPT-HC XP\\Adaptive\\HC017CAA', 'MPT-HC XP\\Adaptive\\HC017CAA', 'MPT-HC XP\\Adaptive\\HC017CAA', 'MPT-HC XP\\Adaptive\\HC018CAA', 'MPT-HC XP\\Adaptive\\HC018CAA', 'MPT-HC XP\\Adaptive\\HC018CAA', 'MPT-HC XP\\Adaptive\\HC018CAA', 'MPT-HC XP\\Adaptive\\HC018CAA', 'MPT-HC XP\\Adaptive\\HC018CAA', 'MPT-HC XP\\Adaptive\\HC019CAA', 'MPT-HC XP\\Adaptive\\HC019CAA', 'MPT-HC XP\\Adaptive\\HC019CAA', 'MPT-HC XP\\Adaptive\\HC019CAA', 'MPT-HC XP\\Adaptive\\HC019CAA', 'MPT-HC XP\\Adaptive\\HC019CAA', 'MPT-HC XP\\Adaptive\\HC019CAA', 'MPT-HC XP\\Adaptive\\HC020CAA', 'MPT-HC XP\\Adaptive\\HC020CAA', 'MPT-HC XP\\Adaptive\\HC020CAA', 'MPT-HC XP\\Adaptive\\HC020CAA', 'MPT-HC XP\\Adaptive\\HC020CAA', 'MPT-HC XP\\Adaptive\\HC020CAA', 'MPT-HC XP\\Adaptive\\HC020CAA', 'MPT-HC XP\\Adaptive\\HC021CAA', 'MPT-HC XP\\Adaptive\\HC021CAA', 'MPT-HC XP\\Adaptive\\HC021CAA', 'MPT-HC XP\\Adaptive\\HC021CAA', 'MPT-HC XP\\Adaptive\\HC021CAA', 'MPT-HC XP\\Adaptive\\HC021CAA', 'MPT-HC XP\\Adaptive\\HC021CAA', 'MPT-HC XP\\Adaptive\\HC022CAA', 'MPT-HC XP\\Adaptive\\HC022CAA', 'MPT-HC XP\\Adaptive\\HC022CAA', 'MPT-HC XP\\Adaptive\\HC022CAA', 'MPT-HC XP\\Adaptive\\HC022CAA', 'MPT-HC XP\\Adaptive\\HC022CAA', 'MPT-HC XP\\Adaptive\\HC022CAA', 'MPT-HC XP\\Adaptive\\HC023CAA', 'MPT-HC XP\\Adaptive\\HC023CAA', 'MPT-HC XP\\Adaptive\\HC023CAA', 'MPT-HC XP\\Adaptive\\HC023CAA', 'MPT-HC XP\\Adaptive\\HC023CAA', 'MPT-HC XP\\Adaptive\\HC023CAA', 'MPT-HC XP\\Adaptive\\HC023CAA', 'MPT-HC XP\\Adaptive\\HC024CAA', 'MPT-HC XP\\Adaptive\\HC024CAA', 'MPT-HC XP\\Adaptive\\HC024CAA', 'MPT-HC XP\\Adaptive\\HC024CAA', 'MPT-HC XP\\Adaptive\\HC024CAA', 'MPT-HC XP\\Adaptive\\HC024CAA', 'MPT-HC XP\\Adaptive\\HC024CAA', 'MPT-HC XP\\Adaptive\\HC025CAA', 'MPT-HC XP\\Adaptive\\HC025CAA', 'MPT-HC XP\\Adaptive\\HC025CAA', 'MPT-HC XP\\Adaptive\\HC025CAA', 'MPT-HC XP\\Adaptive\\HC025CAA', 'MPT-HC XP\\Adaptive\\HC025CAA', 'MPT-HC XP\\Adaptive\\HC025CAA', 'MPT-HC XP\\Adaptive\\HC026CAA', 'MPT-HC XP\\Adaptive\\HC026CAA', 'MPT-HC XP\\Adaptive\\HC026CAA', 'MPT-HC XP\\Adaptive\\HC026CAA', 'MPT-HC XP\\Adaptive\\HC026CAA', 'MPT-HC XP\\Adaptive\\HC026CAA', 'MPT-HC XP\\Adaptive\\HC026CAA', 'MPT-HC XP\\Adaptive\\HC027CAA', 'MPT-HC XP\\Adaptive\\HC027CAA', 'MPT-HC XP\\Adaptive\\HC027CAA', 'MPT-HC XP\\Adaptive\\HC027CAA', 'MPT-HC XP\\Adaptive\\HC028CAA', 'MPT-HC XP\\Adaptive\\HC028CAA', 'MPT-HC XP\\Adaptive\\HC028CAA', 'MPT-HC XP\\Adaptive\\HC028CAA', 'MPT-HC XP\\Adaptive\\HC028CAA', 'MPT-HC XP\\Adaptive\\HC028CAA', 'MPT-HC XP\\Adaptive\\HC029CAA', 'MPT-HC XP\\Adaptive\\HC029CAA', 'MPT-HC XP\\Adaptive\\HC029CAA', 'MPT-HC XP\\Adaptive\\HC029CAA', 'MPT-HC XP\\Adaptive\\HC029CAA', 'MPT-HC XP\\Adaptive\\HC029CAA', 'MPT-HC XP\\Adaptive\\HC030CAA', 'MPT-HC XP\\Adaptive\\HC030CAA', 'MPT-HC XP\\Adaptive\\HC030CAA', 'MPT-HC XP\\Adaptive\\HC030CAA', 'MPT-HC XP\\Adaptive\\HC030CAA', 'MPT-HC XP\\Adaptive\\HC030CAA', 'MPT-HC XP\\Fixed\\HC001CFA', 'MPT-HC XP\\Fixed\\HC002CFA', 'MPT-HC XP\\Fixed\\HC003CFA', 'MPT-HC XP\\Fixed\\HC004CFA', 'MPT-HC XP\\Fixed\\HC005CFA', 'MPT-HC XP\\Fixed\\HC006CFA', 'MPT-HC XP\\Fixed\\HC007CFA', 'MPT-HC XP\\Fixed\\HC008CFA', 'MPT-HC XP\\Fixed\\HC009CFA', 'MPT-HC XP\\Fixed\\HC010CFA', 'MPT-HC XP\\Fixed\\HC011CFA', 'MPT-HC XP\\Fixed\\HC012CFA', 'MPT-HC XP\\Fixed\\HC013CFA', 'MPT-HC XP\\Fixed\\HC014CFA', 'MPT-HC XP\\Fixed\\HC015CFA', 'MPT-HC XP\\Fixed\\HC016CFA', 'MPT-HC XP\\Fixed\\HC017CFA', 'MPT-HC XP\\Fixed\\HC018CFA', 'MPT-HC XP\\Fixed\\HC019CFA', 'MPT-HC XP\\Fixed\\HC020CFA', 'MPT-HC XP\\Fixed\\HC021CFA', 'MPT-HC XP\\Fixed\\HC022CFA', 'MPT-HC XP\\Fixed\\HC023CFA', 'MPT-HC XP\\Fixed\\HC024CFA', 'MPT-HC XP\\Fixed\\HC025CFA', 'MPT-HC XP\\Fixed\\HC026CFA', 'MPT-HC XP\\Fixed\\HC027CFA', 'MPT-HC XP\\Fixed\\HC028CFA', 'MPT-HC XP\\Fixed\\HC029CFA', 'MPT-HC XP\\Fixed\\HC030CFA', 'MPT-HC XP\\Fixed\\HC031CFA', 'MPT-HC XP\\Fixed\\HC032CFA', 'MPT-HC XP\\Fixed\\HC033CFA', 'MPT-HC XP\\Fixed\\HC034CFA', 'MPT-HC XP\\Fixed\\HC035CFA', 'MPT-HC XP\\Fixed\\HC036CFA', 'MPT-HC XP\\Fixed\\HC037CFA', 'MPT-HC XP\\Fixed\\HC038CFA', 'MPT-HC XP\\Fixed\\HC039CFA', 'MPT-HC XP\\Fixed\\HC040CFA', 'MPT-HC XP\\Fixed\\HC041CFA', 'MPT-HC XP\\Fixed\\HC042CFA', 'MPT-HC XP\\Fixed\\HC043CFA', 'MPT-HC XP\\Fixed\\HC044CFA', 'MPT-HC XP\\Fixed\\HC045CFA', 'MPT-HC XP\\Fixed\\HC046CFA', 'MPT-HC XP\\Fixed\\HC047CFA', 'MPT-HC XP\\Fixed\\HC048CFA', 'MPT-HC XP\\Fixed\\HC049CFA', 'MPT-HC XP\\Fixed\\HC050CFA', 'MPT-HC XP\\Fixed\\HC051CFA', 'MPT-HC XP\\Fixed\\HC052CFA', 'MPT-HC XP\\Fixed\\HC053CFA', 'MPT-HC XP\\Fixed\\HC054CFA', 'MPT-HC XP\\Fixed\\HC055CFA', 'MPT-HC XP\\Fixed\\HC056CFA', 'MPT-HC XP\\Fixed\\HC057CFA', 'MPT-HC XP\\Fixed\\HC058CFA', 'MPT-HC XP\\Fixed\\HC059CFA', 'MPT-HC XP\\Fixed\\HC060CFA', 'MPT-HC XP\\Fixed\\HC061CFA', 'MPT-HC XP\\Fixed\\HC062CFA', 'MPT-HC XP\\Fixed\\HC063CFA', 'MPT-HC XP\\Fixed\\HC064CFA', 'MPT-HC XP\\Fixed\\HC065CFA', 'MPT-HC XP\\Fixed\\HC066CFA', 'MPT-HC XP\\Fixed\\HC067CFA', 'MPT-HC XP\\Fixed\\HC068CFA', 'MPT-HC XP\\Fixed\\HC069CFA', 'MPT-HC XP\\Fixed\\HC070CFA', 'MPT-HC XP\\Fixed\\HC071CFA', 'MPT-HC XP\\Fixed\\HC072CFA', 'MPT-HC XP\\Fixed\\HC073CFA', 'MPT-HC XP\\Fixed\\HC074CFA', 'MPT-HC XP\\Fixed\\HC075CFA', 'MPT-HC XP\\Fixed\\HC076CFA', 'MPT-HC XP\\Fixed\\HC077CFA', 'MPT-HC XP\\Fixed\\HC078CFA', 'MPT-HC XP\\Fixed\\HC079CFA', 'MPT-HC XP\\Fixed\\HC080CFA', 'MPT-HC XP\\Fixed\\HC081CFA', 'MPT-HC XP\\Fixed\\HC082CFA', 'MPT-HC XP\\Fixed\\HC083CFA', 'MPT-HC XP\\Fixed\\HC084CFA', 'MPT-HC XP\\Fixed\\HC085CFA', 'MPT-HC XP\\Fixed\\HC086CFA', 'MPT-HC XP\\Fixed\\HC087CFA', 'MPT-HC XP\\Fixed\\HC088CFA', 'MPT-HC XP\\Fixed\\HC089CFA', 'MPT-HC XP\\Fixed\\HC090CFA', 'MPT-HC XP\\Fixed\\HC091CFA', 'MPT-HC XP\\Fixed\\HC092CFA', 'MPT-HC XP\\Fixed\\HC093CFA', 'MPT-HC XP\\Fixed\\HC094CFA', 'MPT-HC XP\\Fixed\\HC095CFA', 'MPT-HC XP\\Fixed\\HC096CFA', 'MPT-HC XP\\Fixed\\HC097CFA', 'MPT-HC XP\\Fixed\\HC098CFA', 'MPT-HC XP\\Fixed\\HC099CFA', 'MPT-HC XP\\Fixed\\HC100CFA', 'MPT-HC XP\\Fixed\\HC101CFA', 'MPT-HC XP\\Fixed\\HC102CFA', 'MPT-HC XP\\Fixed\\HC103CFA', 'MPT-HC XP\\Fixed\\HC104CFA', 'MPT-HC XP\\Fixed\\HC105CFA', 'MPT-HC XP\\Fixed\\HC106CFA', 'MPT-HC XP\\Fixed\\HC107CFA', 'MPT-HC XP\\Fixed\\HC108CFA', 'MPT-HC XP\\Fixed\\HC109CFA', 'MPT-HC XP\\Fixed\\HC110CFA', 'MPT-HC XP\\Fixed\\HC111CFA', 'MPT-HC XP\\Fixed\\HC112CFA', 'MPT-HC XP\\Fixed\\HC113CFA', 'MPT-HC XP\\Fixed\\HC114CFA', 'MPT-HC XP\\Fixed\\HC115CFA', 'MPT-HC XP\\Fixed\\HC116CFA', 'MPT-HC XP\\Fixed\\HC117CFA', 'MPT-HC XP\\Fixed\\HC118CFA', 'MPT-HC XP\\Fixed\\HC119CFA', 'MPT-HC XP\\Fixed\\HC120CFA', 'MPT-HC XP\\Fixed\\HC121CFA', 'MPT-HC XP\\Fixed\\HC122CFA', 'MPT-HC XP\\Fixed\\HC123CFA', 'MPT-HC XP\\Fixed\\HC124CFA', 'MPT-HC XP\\Fixed\\HC125CFA', 'MPT-HC XP\\Fixed\\HC126CFA', 'MPT-HC XP\\Fixed\\HC127CFA', 'MPT-HC XP\\Fixed\\HC128CFA', 'MPT-HC XP\\Fixed\\HC129CFA', 'MPT-HC XP\\Fixed\\HC130CFA', 'MPT-HC XP\\Fixed\\HC131CFA', 'MPT-HC XP\\Fixed\\HC132CFA', 'MPT-HC XP\\Fixed\\HC133CFA', 'MPT-HC XP\\Fixed\\HC134CFA', 'MPT-HC XP\\Fixed\\HC135CFA', 'MPT-HC XP\\Fixed\\HC136CFA', 'MPT-HC XP\\Fixed\\HC137CFA', 'MPT-HC XP\\Fixed\\HC138CFA', 'MPT-HC XP\\Fixed\\HC139CFA', 'MPT-HC XP\\Fixed\\HC140CFA', 'MPT-HC XP\\Fixed\\HC141CFA', 'MPT-HC XP\\Fixed\\HC142CFA', 'MPT-HC XP\\Fixed\\HC143CFA', 'MPT-HC XP\\Fixed\\HC144CFA', 'MPT-HC XP\\Fixed\\HC145CFA', 'MPT-HC XP\\Fixed\\HC146CFA', 'MPT-HC XP\\Fixed\\HC147CFA', 'MPT-HC XP\\Fixed\\HC148CFA', 'MPT-HC XP\\Fixed\\HC149CFA', 'MPT-HC XP\\Fixed\\HC150CFA', 'MPT-HC XP\\Fixed\\HC151CFA', 'MPT-HC XP\\Fixed\\HC152CFA', 'MPT-HC XP\\Fixed\\HC153CFA', 'MPT-HC XP\\Fixed\\HC154CFA', 'MPT-HC XP\\Fixed\\HC155CFA', 'MPT-HC XP\\Fixed\\HC156CFA', 'MPT-HC XP\\Fixed\\HC157CFA', 'MPT-HC XP\\Fixed\\HC158CFA', 'MPT-HC XP\\Fixed\\HC159CFA', 'MPT-HC XP\\Fixed\\HC160CFA', 'MPT-HC XP\\Fixed\\HC161CFA', 'MPT-HL\\Adaptive\\HL001HAA', 'MPT-HL\\Adaptive\\HL001HAA', 'MPT-HL\\Adaptive\\HL001HAA', 'MPT-HL\\Adaptive\\HL001HAA', 'MPT-HL\\Adaptive\\HL001HAA', 'MPT-HL\\Adaptive\\HL002HAA', 'MPT-HL\\Adaptive\\HL002HAA', 'MPT-HL\\Adaptive\\HL002HAA', 'MPT-HL\\Adaptive\\HL002HAA', 'MPT-HL\\Adaptive\\HL002HAA', 'MPT-HL\\Adaptive\\HL003HAA', 'MPT-HL\\Adaptive\\HL003HAA', 'MPT-HL\\Adaptive\\HL003HAA', 'MPT-HL\\Adaptive\\HL003HAA', 'MPT-HL\\Adaptive\\HL003HAA', 'MPT-HL\\Adaptive\\HL004HAA', 'MPT-HL\\Adaptive\\HL004HAA', 'MPT-HL\\Adaptive\\HL004HAA', 'MPT-HL\\Adaptive\\HL004HAA', 'MPT-HL\\Adaptive\\HL004HAA', 'MPT-HL\\Adaptive\\HL005HAA', 'MPT-HL\\Adaptive\\HL005HAA', 'MPT-HL\\Adaptive\\HL005HAA', 'MPT-HL\\Adaptive\\HL005HAA', 'MPT-HL\\Adaptive\\HL005HAA', 'MPT-HL\\Adaptive\\HL006HAA', 'MPT-HL\\Adaptive\\HL006HAA', 'MPT-HL\\Adaptive\\HL006HAA', 'MPT-HL\\Adaptive\\HL006HAA', 'MPT-HL\\Adaptive\\HL006HAA', 'MPT-HL\\Adaptive\\HL007HAA', 'MPT-HL\\Adaptive\\HL007HAA', 'MPT-HL\\Adaptive\\HL007HAA', 'MPT-HL\\Adaptive\\HL007HAA', 'MPT-HL\\Adaptive\\HL007HAA', 'MPT-HL\\Fixed\\HL001HFA', 'MPT-HL\\Fixed\\HL002HFA', 'MPT-HL\\Fixed\\HL003HFA', 'MPT-HL\\Fixed\\HL004HFA', 'MPT-HL\\Fixed\\HL005HFA', 'MPT-HL\\Fixed\\HL006HFA', 'MPT-HL\\Fixed\\HL007HFA', 'MPT-HL\\Fixed\\HL008HFA', 'MPT-HL\\Fixed\\HL009HFA', 'MPT-HL\\Fixed\\HL010HFA', 'MPT-HL\\Fixed\\HL011HFA', 'MPT-HL\\Fixed\\HL012HFA', 'MPT-HL\\Fixed\\HL013HFA', 'MPT-HL\\Fixed\\HL014HFA', 'MPT-HL\\Fixed\\HL015HFA', 'MPT-HL\\Fixed\\HL016HFA', 'MPT-HL\\Fixed\\HL017HFA', 'MPT-HL\\Fixed\\HL018HFA', 'MPT-HL\\Fixed\\HL019HFA', 'MPT-HL\\Fixed\\HL020HFA', 'MPT-HL\\Fixed\\HL021HFA', 'MPT-HL\\Fixed\\HL022HFA', 'MPT-HL\\Fixed\\HL023HFA', 'MPT-HL\\Fixed\\HL024HFA', 'MPT-HL\\Fixed\\HL025HFA', 'MPT-HL\\Fixed\\HL026HFA', 'MPT-HL\\Fixed\\HL027HFA', 'MPT-HL\\Fixed\\HL028HFA', 'MPT-HL\\Fixed\\HL029HFA', 'MPT-HL\\Fixed\\HL030HFA', 'MPT-HL\\Fixed\\HL031HFA', 'MPT-HL\\Fixed\\HL032HFA', 'MPT-HL\\Fixed\\HL033HFA', 'MPT-HL\\Fixed\\HL034HFA', 'MPT-HL\\Fixed\\HL035HFA', 'MPT-HL\\Fixed\\HL036HFA', 'MPT-HL\\Fixed\\HL037HFA', 'MPT-HL\\Fixed\\HL038HFA', 'MPT-HL\\Fixed\\HL039HFA', 'ODU 300\\PL5 High Gain\\Fixed\\HC001OFT', 'ODU 300\\PL5 High Gain\\Fixed\\HC002OFT', 'ODU 300\\PL5 High Gain\\Fixed\\HC003OFT', 'ODU 300\\PL5 High Gain\\Fixed\\HC004OFT', 'ODU 300\\PL5 High Gain\\Fixed\\HC005OFT', 'ODU 300\\PL5 High Gain\\Fixed\\HC006OFT', 'ODU 300\\PL5 High Gain\\Fixed\\HC007OFT', 'ODU 300\\PL5 High Gain\\Fixed\\HC008OFT', 'ODU 300\\PL5 High Gain\\Fixed\\HC009OFT', 'ODU 300\\PL5 High Gain\\Fixed\\HC010OFT', 'ODU 300\\PL5 High Gain\\Fixed\\HC011OFT', 'ODU 300\\PL5 High Gain\\Fixed\\HC012OFT', 'ODU 300\\PL5 High Gain\\Fixed\\HC013OFT', 'ODU 300\\PL5 High Gain\\Fixed\\HC014OFT', 'ODU 300\\PL5 High Gain\\Fixed\\HC015OFT', 'ODU 300\\PL5 High Gain\\Fixed\\HC016OFT', 'ODU 300\\PL5 High Gain\\Fixed\\HC017OFT', 'ODU 300\\PL5 High Gain\\Fixed\\HC018OFT', 'ODU 300\\PL5 Standard\\Adaptive\\HC001OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC001OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC001OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC002OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC002OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC002OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC002OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC002OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC003OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC003OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC003OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC004OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC004OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC004OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC004OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC004OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC005OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC005OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC005OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC006OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC006OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC006OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC006OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC006OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC007OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC007OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC007OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC008OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC008OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC008OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC008OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC008OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC009OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC009OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC009OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC010OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC010OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC010OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC010OAT', 'ODU 300\\PL5 Standard\\Adaptive\\HC010OAT', 'ODU 300\\PL5 Standard\\Fixed\\HC001OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC002OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC003OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC004OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC005OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC006OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC007OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC008OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC009OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC010OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC011OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC012OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC013OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC014OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC015OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC016OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC017OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC018OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC019OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC020OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC021OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC022OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC023OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC024OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC025OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC026OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC027OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC028OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC029OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC030OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC031OFT', 'ODU 300\\PL5 Standard\\Fixed\\HC032OFT', 'UBT-m\\Adaptive\\WVCE80_U_128A2000S_9318', 'UBT-m\\Adaptive\\WVCE80_U_128A2000S_9318', 'UBT-m\\Adaptive\\WVCE80_U_128A2000S_9318', 'UBT-m\\Adaptive\\WVCE80_U_128A2000S_9318', 'UBT-m\\Adaptive\\WVCE80_U_128A2000S_9318', 'UBT-m\\Adaptive\\WVCE80_U_128A2000S_9318', 'UBT-m\\Adaptive\\WVCE80_U_128A2000S_9318', 'UBT-m\\Adaptive\\WVCE80_U_128A2000S_9318', 'UBT-m\\Adaptive\\WVCE80_U_256A1000S_6452', 'UBT-m\\Adaptive\\WVCE80_U_256A1000S_6452', 'UBT-m\\Adaptive\\WVCE80_U_256A1000S_6452', 'UBT-m\\Adaptive\\WVCE80_U_256A1000S_6452', 'UBT-m\\Adaptive\\WVCE80_U_256A1000S_6452', 'UBT-m\\Adaptive\\WVCE80_U_256A1000S_6452', 'UBT-m\\Adaptive\\WVCE80_U_256A1000S_6452', 'UBT-m\\Adaptive\\WVCE80_U_256A1000S_6452', 'UBT-m\\Adaptive\\WVCE80_U_256A1000S_6452', 'UBT-m\\Adaptive\\WVCE80_U_256A1250S_7620', 'UBT-m\\Adaptive\\WVCE80_U_256A1250S_7620', 'UBT-m\\Adaptive\\WVCE80_U_256A1250S_7620', 'UBT-m\\Adaptive\\WVCE80_U_256A1250S_7620', 'UBT-m\\Adaptive\\WVCE80_U_256A1250S_7620', 'UBT-m\\Adaptive\\WVCE80_U_256A1250S_7620', 'UBT-m\\Adaptive\\WVCE80_U_256A1250S_7620', 'UBT-m\\Adaptive\\WVCE80_U_256A1250S_7620', 'UBT-m\\Adaptive\\WVCE80_U_256A1250S_7620', 'UBT-m\\Adaptive\\WVCE80_U_256A1500S_8729', 'UBT-m\\Adaptive\\WVCE80_U_256A1500S_8729', 'UBT-m\\Adaptive\\WVCE80_U_256A1500S_8729', 'UBT-m\\Adaptive\\WVCE80_U_256A1500S_8729', 'UBT-m\\Adaptive\\WVCE80_U_256A1500S_8729', 'UBT-m\\Adaptive\\WVCE80_U_256A1500S_8729', 'UBT-m\\Adaptive\\WVCE80_U_256A1500S_8729', 'UBT-m\\Adaptive\\WVCE80_U_256A1500S_8729', 'UBT-m\\Adaptive\\WVCE80_U_256A1500S_8729', 'UBT-m\\Adaptive\\WVCE80_U_256A750S_4849', 'UBT-m\\Adaptive\\WVCE80_U_256A750S_4849', 'UBT-m\\Adaptive\\WVCE80_U_256A750S_4849', 'UBT-m\\Adaptive\\WVCE80_U_256A750S_4849', 'UBT-m\\Adaptive\\WVCE80_U_256A750S_4849', 'UBT-m\\Adaptive\\WVCE80_U_256A750S_4849', 'UBT-m\\Adaptive\\WVCE80_U_256A750S_4849', 'UBT-m\\Adaptive\\WVCE80_U_256A750S_4849', 'UBT-m\\Adaptive\\WVCE80_U_256A750S_4849', 'UBT-m\\Adaptive\\WVCE80_U_32A62S_217', 'UBT-m\\Adaptive\\WVCE80_U_32A62S_217', 'UBT-m\\Adaptive\\WVCE80_U_32A62S_217', 'UBT-m\\Adaptive\\WVCE80_U_512A250S_1624', 'UBT-m\\Adaptive\\WVCE80_U_512A250S_1624', 'UBT-m\\Adaptive\\WVCE80_U_512A250S_1624', 'UBT-m\\Adaptive\\WVCE80_U_512A250S_1624', 'UBT-m\\Adaptive\\WVCE80_U_512A250S_1624', 'UBT-m\\Adaptive\\WVCE80_U_512A250S_1624', 'UBT-m\\Adaptive\\WVCE80_U_512A250S_1624', 'UBT-m\\Adaptive\\WVCE80_U_512A250S_1624', 'UBT-m\\Adaptive\\WVCE80_U_512A250S_1624', 'UBT-m\\Adaptive\\WVCE80_U_512A250S_1677', 'UBT-m\\Adaptive\\WVCE80_U_512A250S_1677', 'UBT-m\\Adaptive\\WVCE80_U_512A250S_1677', 'UBT-m\\Adaptive\\WVCE80_U_512A250S_1677', 'UBT-m\\Adaptive\\WVCE80_U_512A250S_1677', 'UBT-m\\Adaptive\\WVCE80_U_512A250S_1677', 'UBT-m\\Adaptive\\WVCE80_U_512A250S_1677', 'UBT-m\\Adaptive\\WVCE80_U_512A250S_1677', 'UBT-m\\Adaptive\\WVCE80_U_512A250S_1677', 'UBT-m\\Adaptive\\WVCE80_U_512A500S_3450', 'UBT-m\\Adaptive\\WVCE80_U_512A500S_3450', 'UBT-m\\Adaptive\\WVCE80_U_512A500S_3450', 'UBT-m\\Adaptive\\WVCE80_U_512A500S_3450', 'UBT-m\\Adaptive\\WVCE80_U_512A500S_3450', 'UBT-m\\Adaptive\\WVCE80_U_512A500S_3450', 'UBT-m\\Adaptive\\WVCE80_U_512A500S_3450', 'UBT-m\\Adaptive\\WVCE80_U_512A500S_3450', 'UBT-m\\Adaptive\\WVCE80_U_512A500S_3450', 'UBT-m\\Adaptive\\WVCE80_U_512A500S_3450', 'UBT-m\\Adaptive\\WVCE80_U_64A125S_542', 'UBT-m\\Adaptive\\WVCE80_U_64A125S_542', 'UBT-m\\Adaptive\\WVCE80_U_64A125S_542', 'UBT-m\\Adaptive\\WVCE80_U_64A125S_542', 'UBT-m\\Adaptive\\WVCE80_U_64A125S_542', 'UBT-m\\Fixed\\WVCE80_U_128F1000S_5645', 'UBT-m\\Fixed\\WVCE80_U_128F1250S_6667', 'UBT-m\\Fixed\\WVCE80_U_128F1500S_7638', 'UBT-m\\Fixed\\WVCE80_U_128F2000S_9318', 'UBT-m\\Fixed\\WVCE80_U_128F250S_1263', 'UBT-m\\Fixed\\WVCE80_U_128F250S_1304', 'UBT-m\\Fixed\\WVCE80_U_128F500S_2683', 'UBT-m\\Fixed\\WVCE80_U_128F750S_4243', 'UBT-m\\Fixed\\WVCE80_U_16F1000S_3225', 'UBT-m\\Fixed\\WVCE80_U_16F1250S_3809', 'UBT-m\\Fixed\\WVCE80_U_16F125S_361', 'UBT-m\\Fixed\\WVCE80_U_16F1500S_4364', 'UBT-m\\Fixed\\WVCE80_U_16F2000S_5632', 'UBT-m\\Fixed\\WVCE80_U_16F250S_721', 'UBT-m\\Fixed\\WVCE80_U_16F250S_745', 'UBT-m\\Fixed\\WVCE80_U_16F500S_1533', 'UBT-m\\Fixed\\WVCE80_U_16F62S_173', 'UBT-m\\Fixed\\WVCE80_U_16F750S_2424', 'UBT-m\\Fixed\\WVCE80_U_256F1000S_6452', 'UBT-m\\Fixed\\WVCE80_U_256F1250S_7620', 'UBT-m\\Fixed\\WVCE80_U_256F1500S_8729', 'UBT-m\\Fixed\\WVCE80_U_256F250S_1443', 'UBT-m\\Fixed\\WVCE80_U_256F250S_1490', 'UBT-m\\Fixed\\WVCE80_U_256F500S_3067', 'UBT-m\\Fixed\\WVCE80_U_256F750S_4849', 'UBT-m\\Fixed\\WVCE80_U_32F1000S_4032', 'UBT-m\\Fixed\\WVCE80_U_32F1250S_4762', 'UBT-m\\Fixed\\WVCE80_U_32F125S_451', 'UBT-m\\Fixed\\WVCE80_U_32F1500S_5455', 'UBT-m\\Fixed\\WVCE80_U_32F2000S_7040', 'UBT-m\\Fixed\\WVCE80_U_32F250S_902', 'UBT-m\\Fixed\\WVCE80_U_32F250S_931', 'UBT-m\\Fixed\\WVCE80_U_32F500S_1916', 'UBT-m\\Fixed\\WVCE80_U_32F62S_217', 'UBT-m\\Fixed\\WVCE80_U_32F750S_3031', 'UBT-m\\Fixed\\WVCE80_U_512F250S_1624', 'UBT-m\\Fixed\\WVCE80_U_512F250S_1677', 'UBT-m\\Fixed\\WVCE80_U_512F500S_3450', 'UBT-m\\Fixed\\WVCE80_U_64F1000S_4839', 'UBT-m\\Fixed\\WVCE80_U_64F1250S_5714', 'UBT-m\\Fixed\\WVCE80_U_64F125S_542', 'UBT-m\\Fixed\\WVCE80_U_64F1500S_6546', 'UBT-m\\Fixed\\WVCE80_U_64F2000S_8449', 'UBT-m\\Fixed\\WVCE80_U_64F250S_1082', 'UBT-m\\Fixed\\WVCE80_U_64F250S_1117', 'UBT-m\\Fixed\\WVCE80_U_64F500S_2300', 'UBT-m\\Fixed\\WVCE80_U_64F750S_3637', 'UBT-m\\Fixed\\WVCE80_U_BF1000S_805', 'UBT-m\\Fixed\\WVCE80_U_BF1250S_951', 'UBT-m\\Fixed\\WVCE80_U_BF125S_90', 'UBT-m\\Fixed\\WVCE80_U_BF1500S_1090', 'UBT-m\\Fixed\\WVCE80_U_BF2000S_1407', 'UBT-m\\Fixed\\WVCE80_U_BF250S_179', 'UBT-m\\Fixed\\WVCE80_U_BF250S_185', 'UBT-m\\Fixed\\WVCE80_U_BF500S_382', 'UBT-m\\Fixed\\WVCE80_U_BF750S_605', 'UBT-m\\Fixed\\WVCE80_U_QF1000S_1612', 'UBT-m\\Fixed\\WVCE80_U_QF1250S_1904', 'UBT-m\\Fixed\\WVCE80_U_QF125S_180', 'UBT-m\\Fixed\\WVCE80_U_QF1500S_2181', 'UBT-m\\Fixed\\WVCE80_U_QF2000S_2815', 'UBT-m\\Fixed\\WVCE80_U_QF250S_360', 'UBT-m\\Fixed\\WVCE80_U_QF250S_372', 'UBT-m\\Fixed\\WVCE80_U_QF500S_766', 'UBT-m\\Fixed\\WVCE80_U_QF62S_86', 'UBT-m\\Fixed\\WVCE80_U_QF750S_1211', 'UBT-S_T\\Adaptive\\WVCE07_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE07_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE07_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE07_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE07_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE07_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE07_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE07_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE07_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE08_U_2048A10S_82_N', 'UBT-S_T\\Adaptive\\WVCE08_U_2048A10S_82_N', 'UBT-S_T\\Adaptive\\WVCE08_U_2048A10S_82_N', 'UBT-S_T\\Adaptive\\WVCE08_U_2048A10S_82_N', 'UBT-S_T\\Adaptive\\WVCE08_U_2048A10S_82_N', 'UBT-S_T\\Adaptive\\WVCE08_U_2048A10S_82_N', 'UBT-S_T\\Adaptive\\WVCE08_U_2048A10S_82_N', 'UBT-S_T\\Adaptive\\WVCE08_U_2048A10S_82_N', 'UBT-S_T\\Adaptive\\WVCE08_U_2048A10S_82_N', 'UBT-S_T\\Adaptive\\WVCE08_U_2048A10S_82_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_2048A10S_82_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_2048A10S_82_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_2048A10S_82_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_2048A10S_82_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_2048A10S_82_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_2048A10S_82_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_2048A10S_82_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_2048A10S_82_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A30S_283_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A40S_371_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A40S_371_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A40S_371_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A40S_371_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A40S_371_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A40S_371_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A40S_371_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A40S_371_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A40S_371_N7', 'UBT-S_T\\Adaptive\\WVCE08_U_4096A40S_371_N7', 'UBT-S_T\\Adaptive\\WVCE11_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE11_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE11_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE11_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE11_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE11_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE11_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE11_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE11_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE11_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE13_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE13_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE13_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE13_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE13_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE13_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE13_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE13_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE13_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE13_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE15_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE15_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE15_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE15_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE15_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE15_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE15_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE15_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE15_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE15_U_2048A20S_164', 'UBT-S_T\\Adaptive\\WVCE15_U_2048A20S_164', 'UBT-S_T\\Adaptive\\WVCE15_U_2048A20S_164', 'UBT-S_T\\Adaptive\\WVCE15_U_2048A20S_164', 'UBT-S_T\\Adaptive\\WVCE15_U_2048A20S_164', 'UBT-S_T\\Adaptive\\WVCE15_U_2048A20S_164', 'UBT-S_T\\Adaptive\\WVCE15_U_2048A20S_164', 'UBT-S_T\\Adaptive\\WVCE15_U_2048A20S_164', 'UBT-S_T\\Adaptive\\WVCE15_U_2048A20S_164', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE15_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE18_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE18_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE18_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE18_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE18_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE18_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE18_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE18_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE18_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE18_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE23_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE23_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE23_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE23_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE23_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE23_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE23_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE23_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE23_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A20S_179', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE23_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE24_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE28_U_1024A10S_75', 'UBT-S_T\\Adaptive\\WVCE28_U_1024A10S_75', 'UBT-S_T\\Adaptive\\WVCE28_U_1024A10S_75', 'UBT-S_T\\Adaptive\\WVCE28_U_1024A10S_75', 'UBT-S_T\\Adaptive\\WVCE28_U_1024A10S_75', 'UBT-S_T\\Adaptive\\WVCE28_U_1024A10S_75', 'UBT-S_T\\Adaptive\\WVCE28_U_1024A10S_75', 'UBT-S_T\\Adaptive\\WVCE28_U_1024A10S_75', 'UBT-S_T\\Adaptive\\WVCE28_U_2048A80S_657', 'UBT-S_T\\Adaptive\\WVCE28_U_2048A80S_657', 'UBT-S_T\\Adaptive\\WVCE28_U_2048A80S_657', 'UBT-S_T\\Adaptive\\WVCE28_U_2048A80S_657', 'UBT-S_T\\Adaptive\\WVCE28_U_2048A80S_657', 'UBT-S_T\\Adaptive\\WVCE28_U_2048A80S_657', 'UBT-S_T\\Adaptive\\WVCE28_U_2048A80S_657', 'UBT-S_T\\Adaptive\\WVCE28_U_2048A80S_657', 'UBT-S_T\\Adaptive\\WVCE28_U_2048A80S_657', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE28_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE38_U_1024A10S_75', 'UBT-S_T\\Adaptive\\WVCE38_U_1024A10S_75', 'UBT-S_T\\Adaptive\\WVCE38_U_1024A10S_75', 'UBT-S_T\\Adaptive\\WVCE38_U_1024A10S_75', 'UBT-S_T\\Adaptive\\WVCE38_U_1024A10S_75', 'UBT-S_T\\Adaptive\\WVCE38_U_1024A10S_75', 'UBT-S_T\\Adaptive\\WVCE38_U_1024A10S_75', 'UBT-S_T\\Adaptive\\WVCE38_U_1024A10S_75', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE38_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE42_U_2048A100S_868', 'UBT-S_T\\Adaptive\\WVCE42_U_2048A100S_868', 'UBT-S_T\\Adaptive\\WVCE42_U_2048A100S_868', 'UBT-S_T\\Adaptive\\WVCE42_U_2048A100S_868', 'UBT-S_T\\Adaptive\\WVCE42_U_2048A100S_868', 'UBT-S_T\\Adaptive\\WVCE42_U_2048A100S_868', 'UBT-S_T\\Adaptive\\WVCE42_U_2048A100S_868', 'UBT-S_T\\Adaptive\\WVCE42_U_2048A100S_868', 'UBT-S_T\\Adaptive\\WVCE42_U_2048A100S_868', 'UBT-S_T\\Adaptive\\WVCE42_U_2048A30S_261', 'UBT-S_T\\Adaptive\\WVCE42_U_2048A30S_261', 'UBT-S_T\\Adaptive\\WVCE42_U_2048A30S_261', 'UBT-S_T\\Adaptive\\WVCE42_U_2048A30S_261', 'UBT-S_T\\Adaptive\\WVCE42_U_2048A30S_261', 'UBT-S_T\\Adaptive\\WVCE42_U_2048A30S_261', 'UBT-S_T\\Adaptive\\WVCE42_U_2048A30S_261', 'UBT-S_T\\Adaptive\\WVCE42_U_2048A30S_261', 'UBT-S_T\\Adaptive\\WVCE42_U_2048A30S_261', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A50S_464', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE42_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE58_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE58_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE58_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE58_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE58_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE58_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE58_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE58_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE58_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE58_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE58_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE58_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE58_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE58_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE58_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE58_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE58_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE58_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE58_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE61_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE61_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE61_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE61_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE61_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE61_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE61_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE61_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE61_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A40S_371', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A60S_508', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE61_U_4096A80S_717', 'UBT-S_T\\Adaptive\\WVCE67_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE67_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE67_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE67_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE67_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE67_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE67_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE67_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE67_U_2048A10S_82', 'UBT-S_T\\Adaptive\\WVCE67_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE67_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE67_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE67_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE67_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE67_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE67_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE67_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE67_U_4096A30S_283', 'UBT-S_T\\Adaptive\\WVCE67_U_4096A30S_283', 'UBT-S_T\\Fixed\\WVCE07_U_1024F10S_75', 'UBT-S_T\\Fixed\\WVCE07_U_128F10S_54', 'UBT-S_T\\Fixed\\WVCE07_U_16F10S_29', 'UBT-S_T\\Fixed\\WVCE07_U_2048F10S_82', 'UBT-S_T\\Fixed\\WVCE07_U_256F10S_62', 'UBT-S_T\\Fixed\\WVCE07_U_32F10S_37', 'UBT-S_T\\Fixed\\WVCE07_U_512F10S_67', 'UBT-S_T\\Fixed\\WVCE07_U_64F10S_46', 'UBT-S_T\\Fixed\\WVCE07_U_QF10S_14', 'UBT-S_T\\Fixed\\WVCE08_U_1024F10S_75_N', 'UBT-S_T\\Fixed\\WVCE08_U_1024F10S_75_N7', 'UBT-S_T\\Fixed\\WVCE08_U_1024F30S_236_N', 'UBT-S_T\\Fixed\\WVCE08_U_1024F30S_236_N7', 'UBT-S_T\\Fixed\\WVCE08_U_1024F40S_309_N7', 'UBT-S_T\\Fixed\\WVCE08_U_128F10S_54_N', 'UBT-S_T\\Fixed\\WVCE08_U_128F10S_54_N7', 'UBT-S_T\\Fixed\\WVCE08_U_128F30S_168_N', 'UBT-S_T\\Fixed\\WVCE08_U_128F30S_168_N7', 'UBT-S_T\\Fixed\\WVCE08_U_128F40S_229_N7', 'UBT-S_T\\Fixed\\WVCE08_U_16F10S_29_N', 'UBT-S_T\\Fixed\\WVCE08_U_16F10S_29_N7', 'UBT-S_T\\Fixed\\WVCE08_U_16F30S_91_N', 'UBT-S_T\\Fixed\\WVCE08_U_16F30S_91_N7', 'UBT-S_T\\Fixed\\WVCE08_U_16F40S_123_N7', 'UBT-S_T\\Fixed\\WVCE08_U_2048F10S_82_N', 'UBT-S_T\\Fixed\\WVCE08_U_2048F10S_82_N7', 'UBT-S_T\\Fixed\\WVCE08_U_2048F30S_261_N', 'UBT-S_T\\Fixed\\WVCE08_U_2048F30S_261_N7', 'UBT-S_T\\Fixed\\WVCE08_U_2048F40S_343_N7', 'UBT-S_T\\Fixed\\WVCE08_U_256F10S_62_N', 'UBT-S_T\\Fixed\\WVCE08_U_256F10S_62_N7', 'UBT-S_T\\Fixed\\WVCE08_U_256F30S_189_N', 'UBT-S_T\\Fixed\\WVCE08_U_256F30S_189_N7', 'UBT-S_T\\Fixed\\WVCE08_U_256F40S_256_N7', 'UBT-S_T\\Fixed\\WVCE08_U_32F10S_37_N', 'UBT-S_T\\Fixed\\WVCE08_U_32F10S_37_N7', 'UBT-S_T\\Fixed\\WVCE08_U_32F30S_114_N', 'UBT-S_T\\Fixed\\WVCE08_U_32F30S_114_N7', 'UBT-S_T\\Fixed\\WVCE08_U_32F40S_154_N7', 'UBT-S_T\\Fixed\\WVCE08_U_512F10S_67_N', 'UBT-S_T\\Fixed\\WVCE08_U_512F10S_67_N7', 'UBT-S_T\\Fixed\\WVCE08_U_512F30S_212_N', 'UBT-S_T\\Fixed\\WVCE08_U_512F30S_212_N7', 'UBT-S_T\\Fixed\\WVCE08_U_512F40S_284_N7', 'UBT-S_T\\Fixed\\WVCE08_U_64F10S_46_N', 'UBT-S_T\\Fixed\\WVCE08_U_64F10S_46_N7', 'UBT-S_T\\Fixed\\WVCE08_U_64F30S_142_N', 'UBT-S_T\\Fixed\\WVCE08_U_64F30S_142_N7', 'UBT-S_T\\Fixed\\WVCE08_U_64F40S_194_N7', 'UBT-S_T\\Fixed\\WVCE08_U_QF10S_14_N', 'UBT-S_T\\Fixed\\WVCE08_U_QF10S_14_N7', 'UBT-S_T\\Fixed\\WVCE08_U_QF30S_45_N', 'UBT-S_T\\Fixed\\WVCE08_U_QF30S_45_N7', 'UBT-S_T\\Fixed\\WVCE08_U_QF40S_61_N7', 'UBT-S_T\\Fixed\\WVCE11_U_1024F10S_75', 'UBT-S_T\\Fixed\\WVCE11_U_1024F20S_150', 'UBT-S_T\\Fixed\\WVCE11_U_1024F30S_236', 'UBT-S_T\\Fixed\\WVCE11_U_1024F40S_309', 'UBT-S_T\\Fixed\\WVCE11_U_1024F80S_599', 'UBT-S_T\\Fixed\\WVCE11_U_128F10S_54', 'UBT-S_T\\Fixed\\WVCE11_U_128F20S_109', 'UBT-S_T\\Fixed\\WVCE11_U_128F30S_168', 'UBT-S_T\\Fixed\\WVCE11_U_128F40S_229', 'UBT-S_T\\Fixed\\WVCE11_U_128F80S_435', 'UBT-S_T\\Fixed\\WVCE11_U_16F10S_29', 'UBT-S_T\\Fixed\\WVCE11_U_16F20S_58', 'UBT-S_T\\Fixed\\WVCE11_U_16F30S_91', 'UBT-S_T\\Fixed\\WVCE11_U_16F40S_123', 'UBT-S_T\\Fixed\\WVCE11_U_16F80S_234', 'UBT-S_T\\Fixed\\WVCE11_U_2048F10S_82', 'UBT-S_T\\Fixed\\WVCE11_U_2048F20S_164', 'UBT-S_T\\Fixed\\WVCE11_U_2048F30S_261', 'UBT-S_T\\Fixed\\WVCE11_U_2048F40S_343', 'UBT-S_T\\Fixed\\WVCE11_U_2048F80S_657', 'UBT-S_T\\Fixed\\WVCE11_U_256F10S_62', 'UBT-S_T\\Fixed\\WVCE11_U_256F20S_124', 'UBT-S_T\\Fixed\\WVCE11_U_256F30S_189', 'UBT-S_T\\Fixed\\WVCE11_U_256F40S_256', 'UBT-S_T\\Fixed\\WVCE11_U_256F80S_499', 'UBT-S_T\\Fixed\\WVCE11_U_32F10S_37', 'UBT-S_T\\Fixed\\WVCE11_U_32F20S_73', 'UBT-S_T\\Fixed\\WVCE11_U_32F30S_114', 'UBT-S_T\\Fixed\\WVCE11_U_32F40S_154', 'UBT-S_T\\Fixed\\WVCE11_U_32F80S_293', 'UBT-S_T\\Fixed\\WVCE11_U_512F10S_67', 'UBT-S_T\\Fixed\\WVCE11_U_512F20S_135', 'UBT-S_T\\Fixed\\WVCE11_U_512F30S_212', 'UBT-S_T\\Fixed\\WVCE11_U_512F40S_284', 'UBT-S_T\\Fixed\\WVCE11_U_512F80S_540', 'UBT-S_T\\Fixed\\WVCE11_U_64F10S_46', 'UBT-S_T\\Fixed\\WVCE11_U_64F20S_92', 'UBT-S_T\\Fixed\\WVCE11_U_64F30S_142', 'UBT-S_T\\Fixed\\WVCE11_U_64F40S_194', 'UBT-S_T\\Fixed\\WVCE11_U_64F80S_367', 'UBT-S_T\\Fixed\\WVCE11_U_QF10S_14', 'UBT-S_T\\Fixed\\WVCE11_U_QF20S_29', 'UBT-S_T\\Fixed\\WVCE11_U_QF30S_45', 'UBT-S_T\\Fixed\\WVCE11_U_QF40S_61', 'UBT-S_T\\Fixed\\WVCE11_U_QF80S_117', 'UBT-S_T\\Fixed\\WVCE13_U_1024F10S_75', 'UBT-S_T\\Fixed\\WVCE13_U_1024F20S_150', 'UBT-S_T\\Fixed\\WVCE13_U_1024F30S_236', 'UBT-S_T\\Fixed\\WVCE13_U_1024F40S_309', 'UBT-S_T\\Fixed\\WVCE13_U_1024F50S_391', 'UBT-S_T\\Fixed\\WVCE13_U_128F10S_54', 'UBT-S_T\\Fixed\\WVCE13_U_128F20S_109', 'UBT-S_T\\Fixed\\WVCE13_U_128F30S_168', 'UBT-S_T\\Fixed\\WVCE13_U_128F40S_229', 'UBT-S_T\\Fixed\\WVCE13_U_128F50S_281', 'UBT-S_T\\Fixed\\WVCE13_U_16F10S_29', 'UBT-S_T\\Fixed\\WVCE13_U_16F20S_58', 'UBT-S_T\\Fixed\\WVCE13_U_16F30S_91', 'UBT-S_T\\Fixed\\WVCE13_U_16F40S_123', 'UBT-S_T\\Fixed\\WVCE13_U_16F50S_152', 'UBT-S_T\\Fixed\\WVCE13_U_2048F10S_82', 'UBT-S_T\\Fixed\\WVCE13_U_2048F20S_164', 'UBT-S_T\\Fixed\\WVCE13_U_2048F30S_261', 'UBT-S_T\\Fixed\\WVCE13_U_2048F40S_343', 'UBT-S_T\\Fixed\\WVCE13_U_2048F50S_434', 'UBT-S_T\\Fixed\\WVCE13_U_256F10S_62', 'UBT-S_T\\Fixed\\WVCE13_U_256F20S_124', 'UBT-S_T\\Fixed\\WVCE13_U_256F30S_189', 'UBT-S_T\\Fixed\\WVCE13_U_256F40S_256', 'UBT-S_T\\Fixed\\WVCE13_U_256F50S_321', 'UBT-S_T\\Fixed\\WVCE13_U_32F10S_37', 'UBT-S_T\\Fixed\\WVCE13_U_32F20S_73', 'UBT-S_T\\Fixed\\WVCE13_U_32F30S_114', 'UBT-S_T\\Fixed\\WVCE13_U_32F40S_154', 'UBT-S_T\\Fixed\\WVCE13_U_32F50S_190', 'UBT-S_T\\Fixed\\WVCE13_U_512F10S_67', 'UBT-S_T\\Fixed\\WVCE13_U_512F20S_135', 'UBT-S_T\\Fixed\\WVCE13_U_512F30S_212', 'UBT-S_T\\Fixed\\WVCE13_U_512F40S_284', 'UBT-S_T\\Fixed\\WVCE13_U_512F50S_360', 'UBT-S_T\\Fixed\\WVCE13_U_64F10S_46', 'UBT-S_T\\Fixed\\WVCE13_U_64F20S_92', 'UBT-S_T\\Fixed\\WVCE13_U_64F30S_142', 'UBT-S_T\\Fixed\\WVCE13_U_64F40S_194', 'UBT-S_T\\Fixed\\WVCE13_U_64F50S_239', 'UBT-S_T\\Fixed\\WVCE13_U_QF10S_14', 'UBT-S_T\\Fixed\\WVCE13_U_QF20S_29', 'UBT-S_T\\Fixed\\WVCE13_U_QF30S_45', 'UBT-S_T\\Fixed\\WVCE13_U_QF40S_61', 'UBT-S_T\\Fixed\\WVCE13_U_QF50S_76', 'UBT-S_T\\Fixed\\WVCE15_U_1024F10S_75', 'UBT-S_T\\Fixed\\WVCE15_U_1024F20S_150', 'UBT-S_T\\Fixed\\WVCE15_U_1024F30S_236', 'UBT-S_T\\Fixed\\WVCE15_U_1024F40S_309', 'UBT-S_T\\Fixed\\WVCE15_U_1024F50S_391', 'UBT-S_T\\Fixed\\WVCE15_U_128F10S_54', 'UBT-S_T\\Fixed\\WVCE15_U_128F20S_109', 'UBT-S_T\\Fixed\\WVCE15_U_128F30S_168', 'UBT-S_T\\Fixed\\WVCE15_U_128F40S_229', 'UBT-S_T\\Fixed\\WVCE15_U_128F50S_281', 'UBT-S_T\\Fixed\\WVCE15_U_16F10S_29', 'UBT-S_T\\Fixed\\WVCE15_U_16F20S_58', 'UBT-S_T\\Fixed\\WVCE15_U_16F30S_91', 'UBT-S_T\\Fixed\\WVCE15_U_16F40S_123', 'UBT-S_T\\Fixed\\WVCE15_U_16F50S_152', 'UBT-S_T\\Fixed\\WVCE15_U_2048F10S_82', 'UBT-S_T\\Fixed\\WVCE15_U_2048F20S_164', 'UBT-S_T\\Fixed\\WVCE15_U_2048F30S_261', 'UBT-S_T\\Fixed\\WVCE15_U_2048F40S_343', 'UBT-S_T\\Fixed\\WVCE15_U_2048F50S_434', 'UBT-S_T\\Fixed\\WVCE15_U_256F10S_62', 'UBT-S_T\\Fixed\\WVCE15_U_256F20S_124', 'UBT-S_T\\Fixed\\WVCE15_U_256F30S_189', 'UBT-S_T\\Fixed\\WVCE15_U_256F40S_256', 'UBT-S_T\\Fixed\\WVCE15_U_256F50S_321', 'UBT-S_T\\Fixed\\WVCE15_U_32F10S_37', 'UBT-S_T\\Fixed\\WVCE15_U_32F20S_73', 'UBT-S_T\\Fixed\\WVCE15_U_32F30S_114', 'UBT-S_T\\Fixed\\WVCE15_U_32F40S_154', 'UBT-S_T\\Fixed\\WVCE15_U_32F50S_190', 'UBT-S_T\\Fixed\\WVCE15_U_512F10S_67', 'UBT-S_T\\Fixed\\WVCE15_U_512F20S_135', 'UBT-S_T\\Fixed\\WVCE15_U_512F30S_212', 'UBT-S_T\\Fixed\\WVCE15_U_512F40S_284', 'UBT-S_T\\Fixed\\WVCE15_U_512F50S_360', 'UBT-S_T\\Fixed\\WVCE15_U_64F10S_46', 'UBT-S_T\\Fixed\\WVCE15_U_64F20S_92', 'UBT-S_T\\Fixed\\WVCE15_U_64F30S_142', 'UBT-S_T\\Fixed\\WVCE15_U_64F40S_194', 'UBT-S_T\\Fixed\\WVCE15_U_64F50S_239', 'UBT-S_T\\Fixed\\WVCE15_U_QF10S_14', 'UBT-S_T\\Fixed\\WVCE15_U_QF20S_29', 'UBT-S_T\\Fixed\\WVCE15_U_QF30S_45', 'UBT-S_T\\Fixed\\WVCE15_U_QF40S_61', 'UBT-S_T\\Fixed\\WVCE15_U_QF50S_76', 'UBT-S_T\\Fixed\\WVCE18_U_1024F10S_75', 'UBT-S_T\\Fixed\\WVCE18_U_1024F20S_150', 'UBT-S_T\\Fixed\\WVCE18_U_1024F30S_236', 'UBT-S_T\\Fixed\\WVCE18_U_1024F40S_309', 'UBT-S_T\\Fixed\\WVCE18_U_1024F50S_391', 'UBT-S_T\\Fixed\\WVCE18_U_1024F80S_599', 'UBT-S_T\\Fixed\\WVCE18_U_128F10S_54', 'UBT-S_T\\Fixed\\WVCE18_U_128F20S_109', 'UBT-S_T\\Fixed\\WVCE18_U_128F30S_168', 'UBT-S_T\\Fixed\\WVCE18_U_128F40S_229', 'UBT-S_T\\Fixed\\WVCE18_U_128F50S_281', 'UBT-S_T\\Fixed\\WVCE18_U_128F80S_435', 'UBT-S_T\\Fixed\\WVCE18_U_16F10S_29', 'UBT-S_T\\Fixed\\WVCE18_U_16F20S_58', 'UBT-S_T\\Fixed\\WVCE18_U_16F30S_91', 'UBT-S_T\\Fixed\\WVCE18_U_16F40S_123', 'UBT-S_T\\Fixed\\WVCE18_U_16F50S_152', 'UBT-S_T\\Fixed\\WVCE18_U_16F80S_234', 'UBT-S_T\\Fixed\\WVCE18_U_2048F10S_82', 'UBT-S_T\\Fixed\\WVCE18_U_2048F20S_164', 'UBT-S_T\\Fixed\\WVCE18_U_2048F30S_261', 'UBT-S_T\\Fixed\\WVCE18_U_2048F40S_343', 'UBT-S_T\\Fixed\\WVCE18_U_2048F50S_434', 'UBT-S_T\\Fixed\\WVCE18_U_2048F80S_657', 'UBT-S_T\\Fixed\\WVCE18_U_256F10S_62', 'UBT-S_T\\Fixed\\WVCE18_U_256F20S_124', 'UBT-S_T\\Fixed\\WVCE18_U_256F30S_189', 'UBT-S_T\\Fixed\\WVCE18_U_256F40S_256', 'UBT-S_T\\Fixed\\WVCE18_U_256F50S_321', 'UBT-S_T\\Fixed\\WVCE18_U_256F80S_499', 'UBT-S_T\\Fixed\\WVCE18_U_32F10S_37', 'UBT-S_T\\Fixed\\WVCE18_U_32F20S_73', 'UBT-S_T\\Fixed\\WVCE18_U_32F30S_114', 'UBT-S_T\\Fixed\\WVCE18_U_32F40S_154', 'UBT-S_T\\Fixed\\WVCE18_U_32F50S_190', 'UBT-S_T\\Fixed\\WVCE18_U_32F80S_293', 'UBT-S_T\\Fixed\\WVCE18_U_512F10S_67', 'UBT-S_T\\Fixed\\WVCE18_U_512F20S_135', 'UBT-S_T\\Fixed\\WVCE18_U_512F30S_212', 'UBT-S_T\\Fixed\\WVCE18_U_512F40S_284', 'UBT-S_T\\Fixed\\WVCE18_U_512F50S_360', 'UBT-S_T\\Fixed\\WVCE18_U_512F80S_540', 'UBT-S_T\\Fixed\\WVCE18_U_64F10S_46', 'UBT-S_T\\Fixed\\WVCE18_U_64F20S_92', 'UBT-S_T\\Fixed\\WVCE18_U_64F30S_142', 'UBT-S_T\\Fixed\\WVCE18_U_64F40S_194', 'UBT-S_T\\Fixed\\WVCE18_U_64F50S_239', 'UBT-S_T\\Fixed\\WVCE18_U_64F80S_367', 'UBT-S_T\\Fixed\\WVCE18_U_QF10S_14', 'UBT-S_T\\Fixed\\WVCE18_U_QF20S_29', 'UBT-S_T\\Fixed\\WVCE18_U_QF30S_45', 'UBT-S_T\\Fixed\\WVCE18_U_QF40S_61', 'UBT-S_T\\Fixed\\WVCE18_U_QF50S_76', 'UBT-S_T\\Fixed\\WVCE18_U_QF80S_117', 'UBT-S_T\\Fixed\\WVCE23_U_1024F10S_75', 'UBT-S_T\\Fixed\\WVCE23_U_1024F20S_150', 'UBT-S_T\\Fixed\\WVCE23_U_1024F30S_236', 'UBT-S_T\\Fixed\\WVCE23_U_1024F40S_309', 'UBT-S_T\\Fixed\\WVCE23_U_1024F50S_391', 'UBT-S_T\\Fixed\\WVCE23_U_128F10S_54', 'UBT-S_T\\Fixed\\WVCE23_U_128F20S_109', 'UBT-S_T\\Fixed\\WVCE23_U_128F30S_168', 'UBT-S_T\\Fixed\\WVCE23_U_128F40S_229', 'UBT-S_T\\Fixed\\WVCE23_U_128F50S_281', 'UBT-S_T\\Fixed\\WVCE23_U_16F10S_29', 'UBT-S_T\\Fixed\\WVCE23_U_16F20S_58', 'UBT-S_T\\Fixed\\WVCE23_U_16F30S_91', 'UBT-S_T\\Fixed\\WVCE23_U_16F40S_123', 'UBT-S_T\\Fixed\\WVCE23_U_16F50S_152', 'UBT-S_T\\Fixed\\WVCE23_U_2048F10S_82', 'UBT-S_T\\Fixed\\WVCE23_U_2048F20S_164', 'UBT-S_T\\Fixed\\WVCE23_U_2048F30S_261', 'UBT-S_T\\Fixed\\WVCE23_U_2048F40S_343', 'UBT-S_T\\Fixed\\WVCE23_U_2048F50S_434', 'UBT-S_T\\Fixed\\WVCE23_U_256F10S_62', 'UBT-S_T\\Fixed\\WVCE23_U_256F20S_124', 'UBT-S_T\\Fixed\\WVCE23_U_256F30S_189', 'UBT-S_T\\Fixed\\WVCE23_U_256F40S_256', 'UBT-S_T\\Fixed\\WVCE23_U_256F50S_321', 'UBT-S_T\\Fixed\\WVCE23_U_32F10S_37', 'UBT-S_T\\Fixed\\WVCE23_U_32F20S_73', 'UBT-S_T\\Fixed\\WVCE23_U_32F30S_114', 'UBT-S_T\\Fixed\\WVCE23_U_32F40S_154', 'UBT-S_T\\Fixed\\WVCE23_U_32F50S_190', 'UBT-S_T\\Fixed\\WVCE23_U_512F10S_67', 'UBT-S_T\\Fixed\\WVCE23_U_512F20S_135', 'UBT-S_T\\Fixed\\WVCE23_U_512F30S_212', 'UBT-S_T\\Fixed\\WVCE23_U_512F40S_284', 'UBT-S_T\\Fixed\\WVCE23_U_512F50S_360', 'UBT-S_T\\Fixed\\WVCE23_U_64F10S_46', 'UBT-S_T\\Fixed\\WVCE23_U_64F20S_92', 'UBT-S_T\\Fixed\\WVCE23_U_64F30S_142', 'UBT-S_T\\Fixed\\WVCE23_U_64F40S_194', 'UBT-S_T\\Fixed\\WVCE23_U_64F50S_239', 'UBT-S_T\\Fixed\\WVCE23_U_QF10S_14', 'UBT-S_T\\Fixed\\WVCE23_U_QF20S_29', 'UBT-S_T\\Fixed\\WVCE23_U_QF30S_45', 'UBT-S_T\\Fixed\\WVCE23_U_QF40S_61', 'UBT-S_T\\Fixed\\WVCE23_U_QF50S_76', 'UBT-S_T\\Fixed\\WVCE24_U_1024F40S_309', 'UBT-S_T\\Fixed\\WVCE24_U_1024F80S_599', 'UBT-S_T\\Fixed\\WVCE24_U_128F40S_229', 'UBT-S_T\\Fixed\\WVCE24_U_128F80S_435', 'UBT-S_T\\Fixed\\WVCE24_U_16F40S_123', 'UBT-S_T\\Fixed\\WVCE24_U_16F80S_234', 'UBT-S_T\\Fixed\\WVCE24_U_2048F40S_343', 'UBT-S_T\\Fixed\\WVCE24_U_2048F80S_657', 'UBT-S_T\\Fixed\\WVCE24_U_256F40S_256', 'UBT-S_T\\Fixed\\WVCE24_U_256F80S_499', 'UBT-S_T\\Fixed\\WVCE24_U_32F40S_154', 'UBT-S_T\\Fixed\\WVCE24_U_32F80S_293', 'UBT-S_T\\Fixed\\WVCE24_U_512F40S_284', 'UBT-S_T\\Fixed\\WVCE24_U_512F80S_540', 'UBT-S_T\\Fixed\\WVCE24_U_64F40S_194', 'UBT-S_T\\Fixed\\WVCE24_U_64F80S_367', 'UBT-S_T\\Fixed\\WVCE24_U_QF40S_61', 'UBT-S_T\\Fixed\\WVCE24_U_QF80S_117', 'UBT-S_T\\Fixed\\WVCE28_U_1024F10S_75', 'UBT-S_T\\Fixed\\WVCE28_U_1024F30S_236', 'UBT-S_T\\Fixed\\WVCE28_U_1024F40S_309', 'UBT-S_T\\Fixed\\WVCE28_U_1024F50S_391', 'UBT-S_T\\Fixed\\WVCE28_U_1024F60S_423', 'UBT-S_T\\Fixed\\WVCE28_U_1024F80S_599', 'UBT-S_T\\Fixed\\WVCE28_U_128F10S_54', 'UBT-S_T\\Fixed\\WVCE28_U_128F30S_168', 'UBT-S_T\\Fixed\\WVCE28_U_128F40S_229', 'UBT-S_T\\Fixed\\WVCE28_U_128F50S_281', 'UBT-S_T\\Fixed\\WVCE28_U_128F60S_307', 'UBT-S_T\\Fixed\\WVCE28_U_128F80S_435', 'UBT-S_T\\Fixed\\WVCE28_U_16F10S_29', 'UBT-S_T\\Fixed\\WVCE28_U_16F30S_91', 'UBT-S_T\\Fixed\\WVCE28_U_16F40S_123', 'UBT-S_T\\Fixed\\WVCE28_U_16F50S_152', 'UBT-S_T\\Fixed\\WVCE28_U_16F60S_166', 'UBT-S_T\\Fixed\\WVCE28_U_16F80S_234', 'UBT-S_T\\Fixed\\WVCE28_U_2048F30S_261', 'UBT-S_T\\Fixed\\WVCE28_U_2048F40S_343', 'UBT-S_T\\Fixed\\WVCE28_U_2048F50S_434', 'UBT-S_T\\Fixed\\WVCE28_U_2048F60S_470', 'UBT-S_T\\Fixed\\WVCE28_U_2048F80S_657', 'UBT-S_T\\Fixed\\WVCE28_U_256F10S_62', 'UBT-S_T\\Fixed\\WVCE28_U_256F30S_189', 'UBT-S_T\\Fixed\\WVCE28_U_256F40S_256', 'UBT-S_T\\Fixed\\WVCE28_U_256F50S_321', 'UBT-S_T\\Fixed\\WVCE28_U_256F60S_347', 'UBT-S_T\\Fixed\\WVCE28_U_256F80S_499', 'UBT-S_T\\Fixed\\WVCE28_U_32F10S_37', 'UBT-S_T\\Fixed\\WVCE28_U_32F30S_114', 'UBT-S_T\\Fixed\\WVCE28_U_32F40S_154', 'UBT-S_T\\Fixed\\WVCE28_U_32F50S_190', 'UBT-S_T\\Fixed\\WVCE28_U_32F60S_208', 'UBT-S_T\\Fixed\\WVCE28_U_32F80S_293', 'UBT-S_T\\Fixed\\WVCE28_U_512F10S_67', 'UBT-S_T\\Fixed\\WVCE28_U_512F30S_212', 'UBT-S_T\\Fixed\\WVCE28_U_512F40S_284', 'UBT-S_T\\Fixed\\WVCE28_U_512F50S_360', 'UBT-S_T\\Fixed\\WVCE28_U_512F60S_389', 'UBT-S_T\\Fixed\\WVCE28_U_512F80S_540', 'UBT-S_T\\Fixed\\WVCE28_U_64F10S_46', 'UBT-S_T\\Fixed\\WVCE28_U_64F30S_142', 'UBT-S_T\\Fixed\\WVCE28_U_64F40S_194', 'UBT-S_T\\Fixed\\WVCE28_U_64F50S_239', 'UBT-S_T\\Fixed\\WVCE28_U_64F60S_260', 'UBT-S_T\\Fixed\\WVCE28_U_64F80S_367', 'UBT-S_T\\Fixed\\WVCE28_U_QF10S_14', 'UBT-S_T\\Fixed\\WVCE28_U_QF30S_45', 'UBT-S_T\\Fixed\\WVCE28_U_QF40S_61', 'UBT-S_T\\Fixed\\WVCE28_U_QF50S_76', 'UBT-S_T\\Fixed\\WVCE28_U_QF60S_83', 'UBT-S_T\\Fixed\\WVCE28_U_QF80S_117', 'UBT-S_T\\Fixed\\WVCE38_U_1024F10S_75', 'UBT-S_T\\Fixed\\WVCE38_U_1024F30S_236', 'UBT-S_T\\Fixed\\WVCE38_U_1024F40S_309', 'UBT-S_T\\Fixed\\WVCE38_U_1024F50S_391', 'UBT-S_T\\Fixed\\WVCE38_U_128F10S_54', 'UBT-S_T\\Fixed\\WVCE38_U_128F30S_168', 'UBT-S_T\\Fixed\\WVCE38_U_128F40S_229', 'UBT-S_T\\Fixed\\WVCE38_U_128F50S_281', 'UBT-S_T\\Fixed\\WVCE38_U_16F10S_29', 'UBT-S_T\\Fixed\\WVCE38_U_16F30S_91', 'UBT-S_T\\Fixed\\WVCE38_U_16F40S_123', 'UBT-S_T\\Fixed\\WVCE38_U_16F50S_152', 'UBT-S_T\\Fixed\\WVCE38_U_2048F30S_261', 'UBT-S_T\\Fixed\\WVCE38_U_2048F40S_343', 'UBT-S_T\\Fixed\\WVCE38_U_2048F50S_434', 'UBT-S_T\\Fixed\\WVCE38_U_256F10S_62', 'UBT-S_T\\Fixed\\WVCE38_U_256F30S_189', 'UBT-S_T\\Fixed\\WVCE38_U_256F40S_256', 'UBT-S_T\\Fixed\\WVCE38_U_256F50S_321', 'UBT-S_T\\Fixed\\WVCE38_U_32F10S_37', 'UBT-S_T\\Fixed\\WVCE38_U_32F30S_114', 'UBT-S_T\\Fixed\\WVCE38_U_32F40S_154', 'UBT-S_T\\Fixed\\WVCE38_U_32F50S_190', 'UBT-S_T\\Fixed\\WVCE38_U_512F10S_67', 'UBT-S_T\\Fixed\\WVCE38_U_512F30S_212', 'UBT-S_T\\Fixed\\WVCE38_U_512F40S_284', 'UBT-S_T\\Fixed\\WVCE38_U_512F50S_360', 'UBT-S_T\\Fixed\\WVCE38_U_64F10S_46', 'UBT-S_T\\Fixed\\WVCE38_U_64F30S_142', 'UBT-S_T\\Fixed\\WVCE38_U_64F40S_194', 'UBT-S_T\\Fixed\\WVCE38_U_64F50S_239', 'UBT-S_T\\Fixed\\WVCE38_U_QF10S_14', 'UBT-S_T\\Fixed\\WVCE38_U_QF30S_45', 'UBT-S_T\\Fixed\\WVCE38_U_QF40S_61', 'UBT-S_T\\Fixed\\WVCE38_U_QF50S_76', 'UBT-S_T\\Fixed\\WVCE42_U_1024F100S_783', 'UBT-S_T\\Fixed\\WVCE42_U_1024F30S_236', 'UBT-S_T\\Fixed\\WVCE42_U_1024F40S_309', 'UBT-S_T\\Fixed\\WVCE42_U_1024F50S_391', 'UBT-S_T\\Fixed\\WVCE42_U_1024F60S_423', 'UBT-S_T\\Fixed\\WVCE42_U_128F100S_563', 'UBT-S_T\\Fixed\\WVCE42_U_128F30S_168', 'UBT-S_T\\Fixed\\WVCE42_U_128F40S_229', 'UBT-S_T\\Fixed\\WVCE42_U_128F50S_281', 'UBT-S_T\\Fixed\\WVCE42_U_128F60S_307', 'UBT-S_T\\Fixed\\WVCE42_U_16F100S_304', 'UBT-S_T\\Fixed\\WVCE42_U_16F30S_91', 'UBT-S_T\\Fixed\\WVCE42_U_16F40S_123', 'UBT-S_T\\Fixed\\WVCE42_U_16F50S_152', 'UBT-S_T\\Fixed\\WVCE42_U_16F60S_166', 'UBT-S_T\\Fixed\\WVCE42_U_2048F100S_868', 'UBT-S_T\\Fixed\\WVCE42_U_2048F30S_261', 'UBT-S_T\\Fixed\\WVCE42_U_2048F40S_343', 'UBT-S_T\\Fixed\\WVCE42_U_2048F50S_434', 'UBT-S_T\\Fixed\\WVCE42_U_2048F60S_470', 'UBT-S_T\\Fixed\\WVCE42_U_256F100S_641', 'UBT-S_T\\Fixed\\WVCE42_U_256F30S_189', 'UBT-S_T\\Fixed\\WVCE42_U_256F40S_256', 'UBT-S_T\\Fixed\\WVCE42_U_256F50S_321', 'UBT-S_T\\Fixed\\WVCE42_U_256F60S_347', 'UBT-S_T\\Fixed\\WVCE42_U_32F100S_381', 'UBT-S_T\\Fixed\\WVCE42_U_32F30S_114', 'UBT-S_T\\Fixed\\WVCE42_U_32F40S_154', 'UBT-S_T\\Fixed\\WVCE42_U_32F50S_190', 'UBT-S_T\\Fixed\\WVCE42_U_32F60S_208', 'UBT-S_T\\Fixed\\WVCE42_U_512F100S_721', 'UBT-S_T\\Fixed\\WVCE42_U_512F30S_212', 'UBT-S_T\\Fixed\\WVCE42_U_512F40S_284', 'UBT-S_T\\Fixed\\WVCE42_U_512F50S_360', 'UBT-S_T\\Fixed\\WVCE42_U_512F60S_389', 'UBT-S_T\\Fixed\\WVCE42_U_64F100S_478', 'UBT-S_T\\Fixed\\WVCE42_U_64F30S_142', 'UBT-S_T\\Fixed\\WVCE42_U_64F40S_194', 'UBT-S_T\\Fixed\\WVCE42_U_64F50S_239', 'UBT-S_T\\Fixed\\WVCE42_U_64F60S_260', 'UBT-S_T\\Fixed\\WVCE42_U_QF100S_152', 'UBT-S_T\\Fixed\\WVCE42_U_QF30S_45', 'UBT-S_T\\Fixed\\WVCE42_U_QF40S_61', 'UBT-S_T\\Fixed\\WVCE42_U_QF50S_76', 'UBT-S_T\\Fixed\\WVCE42_U_QF60S_83', 'UBT-S_T\\Fixed\\WVCE58_U_1024F10S_75', 'UBT-S_T\\Fixed\\WVCE58_U_1024F30S_236', 'UBT-S_T\\Fixed\\WVCE58_U_128F10S_54', 'UBT-S_T\\Fixed\\WVCE58_U_128F30S_168', 'UBT-S_T\\Fixed\\WVCE58_U_16F10S_29', 'UBT-S_T\\Fixed\\WVCE58_U_16F30S_91', 'UBT-S_T\\Fixed\\WVCE58_U_2048F10S_82', 'UBT-S_T\\Fixed\\WVCE58_U_2048F30S_261', 'UBT-S_T\\Fixed\\WVCE58_U_256F10S_62', 'UBT-S_T\\Fixed\\WVCE58_U_256F30S_189', 'UBT-S_T\\Fixed\\WVCE58_U_32F10S_37', 'UBT-S_T\\Fixed\\WVCE58_U_32F30S_114', 'UBT-S_T\\Fixed\\WVCE58_U_512F10S_67', 'UBT-S_T\\Fixed\\WVCE58_U_512F30S_212', 'UBT-S_T\\Fixed\\WVCE58_U_64F10S_46', 'UBT-S_T\\Fixed\\WVCE58_U_64F30S_142', 'UBT-S_T\\Fixed\\WVCE58_U_QF10S_14', 'UBT-S_T\\Fixed\\WVCE58_U_QF30S_45', 'UBT-S_T\\Fixed\\WVCE61_U_1024F10S_75', 'UBT-S_T\\Fixed\\WVCE61_U_1024F30S_236', 'UBT-S_T\\Fixed\\WVCE61_U_1024F40S_309', 'UBT-S_T\\Fixed\\WVCE61_U_1024F60S_423', 'UBT-S_T\\Fixed\\WVCE61_U_1024F80S_599', 'UBT-S_T\\Fixed\\WVCE61_U_128F10S_54', 'UBT-S_T\\Fixed\\WVCE61_U_128F30S_168', 'UBT-S_T\\Fixed\\WVCE61_U_128F40S_229', 'UBT-S_T\\Fixed\\WVCE61_U_128F60S_307', 'UBT-S_T\\Fixed\\WVCE61_U_128F80S_435', 'UBT-S_T\\Fixed\\WVCE61_U_16F10S_29', 'UBT-S_T\\Fixed\\WVCE61_U_16F30S_91', 'UBT-S_T\\Fixed\\WVCE61_U_16F40S_123', 'UBT-S_T\\Fixed\\WVCE61_U_16F60S_166', 'UBT-S_T\\Fixed\\WVCE61_U_16F80S_234', 'UBT-S_T\\Fixed\\WVCE61_U_2048F10S_82', 'UBT-S_T\\Fixed\\WVCE61_U_2048F30S_261', 'UBT-S_T\\Fixed\\WVCE61_U_2048F40S_343', 'UBT-S_T\\Fixed\\WVCE61_U_2048F60S_470', 'UBT-S_T\\Fixed\\WVCE61_U_2048F80S_657', 'UBT-S_T\\Fixed\\WVCE61_U_256F10S_62', 'UBT-S_T\\Fixed\\WVCE61_U_256F30S_189', 'UBT-S_T\\Fixed\\WVCE61_U_256F40S_256', 'UBT-S_T\\Fixed\\WVCE61_U_256F60S_347', 'UBT-S_T\\Fixed\\WVCE61_U_256F80S_499', 'UBT-S_T\\Fixed\\WVCE61_U_32F10S_37', 'UBT-S_T\\Fixed\\WVCE61_U_32F30S_114', 'UBT-S_T\\Fixed\\WVCE61_U_32F40S_154', 'UBT-S_T\\Fixed\\WVCE61_U_32F60S_208', 'UBT-S_T\\Fixed\\WVCE61_U_32F80S_293', 'UBT-S_T\\Fixed\\WVCE61_U_512F10S_67', 'UBT-S_T\\Fixed\\WVCE61_U_512F30S_212', 'UBT-S_T\\Fixed\\WVCE61_U_512F40S_284', 'UBT-S_T\\Fixed\\WVCE61_U_512F60S_389', 'UBT-S_T\\Fixed\\WVCE61_U_512F80S_540', 'UBT-S_T\\Fixed\\WVCE61_U_64F10S_46', 'UBT-S_T\\Fixed\\WVCE61_U_64F30S_142', 'UBT-S_T\\Fixed\\WVCE61_U_64F40S_194', 'UBT-S_T\\Fixed\\WVCE61_U_64F60S_260', 'UBT-S_T\\Fixed\\WVCE61_U_64F80S_367', 'UBT-S_T\\Fixed\\WVCE61_U_QF10S_14', 'UBT-S_T\\Fixed\\WVCE61_U_QF30S_45', 'UBT-S_T\\Fixed\\WVCE61_U_QF40S_61', 'UBT-S_T\\Fixed\\WVCE61_U_QF60S_83', 'UBT-S_T\\Fixed\\WVCE61_U_QF80S_117', 'UBT-S_T\\Fixed\\WVCE67_U_1024F10S_75', 'UBT-S_T\\Fixed\\WVCE67_U_1024F30S_236', 'UBT-S_T\\Fixed\\WVCE67_U_128F10S_54', 'UBT-S_T\\Fixed\\WVCE67_U_128F30S_168', 'UBT-S_T\\Fixed\\WVCE67_U_16F10S_29', 'UBT-S_T\\Fixed\\WVCE67_U_16F30S_91', 'UBT-S_T\\Fixed\\WVCE67_U_2048F10S_82', 'UBT-S_T\\Fixed\\WVCE67_U_2048F30S_261', 'UBT-S_T\\Fixed\\WVCE67_U_256F10S_62', 'UBT-S_T\\Fixed\\WVCE67_U_256F30S_189', 'UBT-S_T\\Fixed\\WVCE67_U_32F10S_37', 'UBT-S_T\\Fixed\\WVCE67_U_32F30S_114', 'UBT-S_T\\Fixed\\WVCE67_U_512F10S_67', 'UBT-S_T\\Fixed\\WVCE67_U_512F30S_212', 'UBT-S_T\\Fixed\\WVCE67_U_64F10S_46', 'UBT-S_T\\Fixed\\WVCE67_U_64F30S_142', 'UBT-S_T\\Fixed\\WVCE67_U_QF10S_14', 'UBT-S_T\\Fixed\\WVCE67_U_QF30S_45'] |
fname = input('Enter a file name: ')
fhand = open(fname)
countAddr = dict()
for line in fhand:
if line.startswith('From '):
words = line.split()
#print(words)
countAddr[words[1]] = countAddr.get(words[1],0) + 1
print(countAddr)
| fname = input('Enter a file name: ')
fhand = open(fname)
count_addr = dict()
for line in fhand:
if line.startswith('From '):
words = line.split()
countAddr[words[1]] = countAddr.get(words[1], 0) + 1
print(countAddr) |
TOKEN = '1325729680:AAE3qwRzCXRukKJVvxM3VN_vsesEko6j4EI'
HEROKU = 'https://sauce-finder.herokuapp.com/'
BASE_TELEGRAM_URL = 'https://api.telegram.org/bot{}'.format(TOKEN)
WEBHOOK_ENDPOINT = '{}/webhook'.format(HEROKU)
TELEGRAM_INIT_WEBHOOK_URL = '{}/setWebhook?url={}'.format(BASE_TELEGRAM_URL, WEBHOOK_ENDPOINT)
TELEGRAM_SEND_MESSAGE_URL = BASE_TELEGRAM_URL + '/sendMessage?chat_id={}&text={}'
TELEGRAM_SEND_PHOTO_URL = BASE_TELEGRAM_URL + '/sendphoto?chat_id={}&photo={}&caption={}'
TELEGRAM_PIC_jURL = 'https://api.telegram.org/bot{}/getFile?file_id='.format(TOKEN)
TELEGRAM_PIC_URL = 'https://api.telegram.org/file/bot{}/'.format(TOKEN)
| token = '1325729680:AAE3qwRzCXRukKJVvxM3VN_vsesEko6j4EI'
heroku = 'https://sauce-finder.herokuapp.com/'
base_telegram_url = 'https://api.telegram.org/bot{}'.format(TOKEN)
webhook_endpoint = '{}/webhook'.format(HEROKU)
telegram_init_webhook_url = '{}/setWebhook?url={}'.format(BASE_TELEGRAM_URL, WEBHOOK_ENDPOINT)
telegram_send_message_url = BASE_TELEGRAM_URL + '/sendMessage?chat_id={}&text={}'
telegram_send_photo_url = BASE_TELEGRAM_URL + '/sendphoto?chat_id={}&photo={}&caption={}'
telegram_pic_j_url = 'https://api.telegram.org/bot{}/getFile?file_id='.format(TOKEN)
telegram_pic_url = 'https://api.telegram.org/file/bot{}/'.format(TOKEN) |
# Shader Uniform
vs_uni = '''
uniform mat4 view_mat;
uniform float Z_Bias;
uniform float Z_Offset;
vec4 pos_view;
in vec3 pos;
in vec3 nrm;
void main()
{
pos_view = view_mat * vec4(pos+(nrm*Z_Offset), 1.0f);
pos_view.z = pos_view.z - Z_Bias / pos_view.z;
gl_Position = pos_view;
}
'''
fs_uni = '''
uniform vec4 color;
out vec4 fragColor;
void main()
{
fragColor = vec4(color.xyz, color.w);
}
'''
# Shader Smooth
vs_sm = '''
uniform mat4 view_mat;
uniform float Z_Bias;
uniform float Z_Offset;
vec4 pos_view;
in vec3 pos;
in vec3 nrm;
in vec4 col;
out vec4 color;
void main()
{
pos_view = view_mat * vec4(pos+(nrm*Z_Offset), 1.0f);
color = col;
pos_view.z = pos_view.z - Z_Bias / pos_view.z;
gl_Position = pos_view;
}
'''
fs_sm = '''
in vec4 color;
out vec4 fragColor;
void main()
{
fragColor = vec4(color.xyz, color.w);
}
'''
| vs_uni = '\n uniform mat4 view_mat;\n uniform float Z_Bias;\n uniform float Z_Offset;\n\n vec4 pos_view;\n \n in vec3 pos;\n in vec3 nrm;\n\n\n\n void main()\n {\n pos_view = view_mat * vec4(pos+(nrm*Z_Offset), 1.0f);\n pos_view.z = pos_view.z - Z_Bias / pos_view.z; \n gl_Position = pos_view;\n }\n'
fs_uni = '\n uniform vec4 color;\n out vec4 fragColor;\n\n void main()\n {\n fragColor = vec4(color.xyz, color.w);\n }\n\n'
vs_sm = '\n uniform mat4 view_mat;\n uniform float Z_Bias;\n uniform float Z_Offset;\n\n\n vec4 pos_view;\n \n in vec3 pos;\n in vec3 nrm;\n in vec4 col;\n\n out vec4 color;\n\n void main()\n {\n pos_view = view_mat * vec4(pos+(nrm*Z_Offset), 1.0f);\n color = col;\n pos_view.z = pos_view.z - Z_Bias / pos_view.z; \n gl_Position = pos_view;\n }\n'
fs_sm = '\n in vec4 color;\n out vec4 fragColor;\n\n void main()\n {\n fragColor = vec4(color.xyz, color.w);\n }\n' |
##Looks like this piece of your code is in development, but this is a great place to think about using a for loop - for piece in range(32)...
## you'd need to have an array or other structure that holds the information that changes between iterations (i.e. piece1, piece1loc). I'd suggest using a dictionary
## as you can associate pieces of data easily this way (i.e. location = {"piece1": piece1loc, ...}
## eventually, I'd imagine you'd like to have some kind of GUI (graphical interface) where instead of inputting positions manually, your code would detect the actual location
## of pieces on an "actual" computer board. You could still use this type of code as the backbone for that, if you want.
#Scrap stuff here for backup goes here
#white
piece1 = input("enter in piece abb")
piece1loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", piece1, "on order-coord", piece1loc)
piece2 = input("enter in piece abb")
piece2loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", piece2, "on order-coord", piece2loc)
piece3 = input("enter in piece abb")
piece3loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", piece3, "on order-coord", piece3loc)
piece4 = input("enter in piece abb")
piece4loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", piece4, "on order-coord", piece4loc)
piece5 = input("enter in piece abb")
piece5loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", piece5, "on order-coord", piece5loc)
piece6 = input("enter in piece abb")
piece6loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", piece6, "on order-coord", piece6loc)
piece7 = input("enter in piece abb")
piece7loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", piece7, "on order-coord", piece7loc)
piece8 = input("enter in piece abb")
piece8loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", piece8, "on order-coord", piece8loc)
piece9 = input("enter in piece abb")
piece9loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", piece9, "on order-coord", piece9loc)
piece10 = input("enter in piece abb")
piece10loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", piece10, "on order-coord", piece10loc)
piece11 = input("enter in piece abb")
piece11loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", piece11, "on order-coord", piece11loc)
piece12 = input("enter in piece abb")
piece12loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", piece12, "on order-coord", piece12loc)
piece13 = input("enter in piece abb")
piece13loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", piece13, "on order-coord", piece13loc)
piece14 = input("enter in piece abb")
piece14loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", piece14, "on order-coord", piece14loc)
piece15 = input("enter in piece abb")
piece15loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", piece15, "on order-coord", piece15loc)
piece16 = input("enter in piece abb")
piece16loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", piece16, "on order-coord", piece16loc)
# black pieces
bpiece1 = input("enter in piece abb")
bpiece1loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", bpiece1, "on order-coord", bpiece1loc)
bpiece2 = input("enter in piece abb")
bpiece2loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", bpiece2, "on order-coord", bpiece2loc)
bpiece3 = input("enter in piece abb")
bpiece3loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", bpiece3, "on order-coord", bpiece3loc)
bpiece4 = input("enter in piece abb")
bpiece4loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", bpiece4, "on order-coord", bpiece4loc)
bpiece5 = input("enter in piece abb")
bpiece5loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", bpiece5, "on order-coord", bpiece5loc)
bpiece6 = input("enter in piece abb")
bpiece6loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", bpiece6, "on order-coord", bpiece6loc)
bpiece7 = input("enter in piece abb")
bpiece7loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", bpiece7, "on order-coord", bpiece7loc)
bpiece8 = input("enter in piece abb")
bpiece8loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", bpiece8, "on order-coord", bpiece8loc)
bpiece9 = input("enter in piece abb")
bpiece9loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", bpiece9, "on order-coord", bpiece9loc)
bpiece10 = input("enter in piece abb")
bpiece10loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", bpiece10, "on order-coord", bpiece10loc)
bpiece11 = input("enter in piece abb")
bpiece11loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", bpiece11, "on order-coord", bpiece11loc)
bpiece12 = input("enter in piece abb")
bpiece12loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", bpiece12, "on order-coord", bpiece12loc)
bpiece13 = input("enter in piece abb")
bpiece13loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", bpiece13, "on order-coord", bpiece13loc)
bpiece14 = input("enter in piece abb")
bpiece14loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", bpiece14, "on order-coord", bpiece14loc)
bpiece15 = input("enter in piece abb")
bpiece15loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", bpiece15, "on order-coord", bpiece15loc)
bpiece16 = input("enter in piece abb")
bpiece16loc = input("enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)")
print("Confirmation: You have inputted a", bpiece16, "on order-coord", bpiece16loc)
| piece1 = input('enter in piece abb')
piece1loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', piece1, 'on order-coord', piece1loc)
piece2 = input('enter in piece abb')
piece2loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', piece2, 'on order-coord', piece2loc)
piece3 = input('enter in piece abb')
piece3loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', piece3, 'on order-coord', piece3loc)
piece4 = input('enter in piece abb')
piece4loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', piece4, 'on order-coord', piece4loc)
piece5 = input('enter in piece abb')
piece5loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', piece5, 'on order-coord', piece5loc)
piece6 = input('enter in piece abb')
piece6loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', piece6, 'on order-coord', piece6loc)
piece7 = input('enter in piece abb')
piece7loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', piece7, 'on order-coord', piece7loc)
piece8 = input('enter in piece abb')
piece8loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', piece8, 'on order-coord', piece8loc)
piece9 = input('enter in piece abb')
piece9loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', piece9, 'on order-coord', piece9loc)
piece10 = input('enter in piece abb')
piece10loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', piece10, 'on order-coord', piece10loc)
piece11 = input('enter in piece abb')
piece11loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', piece11, 'on order-coord', piece11loc)
piece12 = input('enter in piece abb')
piece12loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', piece12, 'on order-coord', piece12loc)
piece13 = input('enter in piece abb')
piece13loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', piece13, 'on order-coord', piece13loc)
piece14 = input('enter in piece abb')
piece14loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', piece14, 'on order-coord', piece14loc)
piece15 = input('enter in piece abb')
piece15loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', piece15, 'on order-coord', piece15loc)
piece16 = input('enter in piece abb')
piece16loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', piece16, 'on order-coord', piece16loc)
bpiece1 = input('enter in piece abb')
bpiece1loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', bpiece1, 'on order-coord', bpiece1loc)
bpiece2 = input('enter in piece abb')
bpiece2loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', bpiece2, 'on order-coord', bpiece2loc)
bpiece3 = input('enter in piece abb')
bpiece3loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', bpiece3, 'on order-coord', bpiece3loc)
bpiece4 = input('enter in piece abb')
bpiece4loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', bpiece4, 'on order-coord', bpiece4loc)
bpiece5 = input('enter in piece abb')
bpiece5loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', bpiece5, 'on order-coord', bpiece5loc)
bpiece6 = input('enter in piece abb')
bpiece6loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', bpiece6, 'on order-coord', bpiece6loc)
bpiece7 = input('enter in piece abb')
bpiece7loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', bpiece7, 'on order-coord', bpiece7loc)
bpiece8 = input('enter in piece abb')
bpiece8loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', bpiece8, 'on order-coord', bpiece8loc)
bpiece9 = input('enter in piece abb')
bpiece9loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', bpiece9, 'on order-coord', bpiece9loc)
bpiece10 = input('enter in piece abb')
bpiece10loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', bpiece10, 'on order-coord', bpiece10loc)
bpiece11 = input('enter in piece abb')
bpiece11loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', bpiece11, 'on order-coord', bpiece11loc)
bpiece12 = input('enter in piece abb')
bpiece12loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', bpiece12, 'on order-coord', bpiece12loc)
bpiece13 = input('enter in piece abb')
bpiece13loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', bpiece13, 'on order-coord', bpiece13loc)
bpiece14 = input('enter in piece abb')
bpiece14loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', bpiece14, 'on order-coord', bpiece14loc)
bpiece15 = input('enter in piece abb')
bpiece15loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', bpiece15, 'on order-coord', bpiece15loc)
bpiece16 = input('enter in piece abb')
bpiece16loc = input('enter in the order-coord of the piece (eg. 64 for h1, 32 for h5)')
print('Confirmation: You have inputted a', bpiece16, 'on order-coord', bpiece16loc) |
# This code solves the Levine Sequence
class LevineSequence:
def __init__(self):
self.start = ["2"]
self.split = ["2"]
self.result = ""
self.len = 0
self.path = r'./Levine_Sequence/results.txt'
def void(self):
self.start = self.split
self.split = []
self.len = len(self.start)
def counter(self):
for x in range(self.len):
for y in range(int(self.start[self.len-x-1])):
self.split.append(int(x+1))
self.result = str(sum(self.split)) + "\n"
def write(self):
file = open(self.path, "w+")
file.writelines(self.result)
file.close()
def loop(self):
while True:
self.void()
self.counter()
self.write()
Start = LevineSequence()
Start.loop()
| class Levinesequence:
def __init__(self):
self.start = ['2']
self.split = ['2']
self.result = ''
self.len = 0
self.path = './Levine_Sequence/results.txt'
def void(self):
self.start = self.split
self.split = []
self.len = len(self.start)
def counter(self):
for x in range(self.len):
for y in range(int(self.start[self.len - x - 1])):
self.split.append(int(x + 1))
self.result = str(sum(self.split)) + '\n'
def write(self):
file = open(self.path, 'w+')
file.writelines(self.result)
file.close()
def loop(self):
while True:
self.void()
self.counter()
self.write()
start = levine_sequence()
Start.loop() |
water_count = int(input("Write how many ml of water the coffee machine has: "))
milk_count = int(input("Write how many ml of milk the coffee machine has: "))
coffee_beans_count = int(
input("Write how many grams of coffee beans the coffee machine has: "))
number_of_drinks = int(input("Write how many cups of coffee you will need: "))
WATER = 200
MILK = 50
COFFEE_BEANS = 15
possible_cups = int(min(water_count / WATER, milk_count /
MILK, coffee_beans_count / COFFEE_BEANS))
if number_of_drinks > possible_cups:
print(f"No, I can make only {possible_cups} cups of coffee")
elif number_of_drinks == possible_cups:
print("Yes, I can make that amount of coffee")
else:
print(f"Yes, I can make that amount of coffee (and even {possible_cups-number_of_drinks} more than that)")
| water_count = int(input('Write how many ml of water the coffee machine has: '))
milk_count = int(input('Write how many ml of milk the coffee machine has: '))
coffee_beans_count = int(input('Write how many grams of coffee beans the coffee machine has: '))
number_of_drinks = int(input('Write how many cups of coffee you will need: '))
water = 200
milk = 50
coffee_beans = 15
possible_cups = int(min(water_count / WATER, milk_count / MILK, coffee_beans_count / COFFEE_BEANS))
if number_of_drinks > possible_cups:
print(f'No, I can make only {possible_cups} cups of coffee')
elif number_of_drinks == possible_cups:
print('Yes, I can make that amount of coffee')
else:
print(f'Yes, I can make that amount of coffee (and even {possible_cups - number_of_drinks} more than that)') |
# def make_hashs(word, sub_size):
# ret = set()
# current_hash = sum(ord(word[i]) * (i + 1) for i in range(sub_size))
# current_suma = sum(ord(word[i]) for i in range(sub_size))
# ret.add(current_hash)
# for initial_pos in range(1, len(word) - sub_size + 1):
# current_hash -= current_suma
# current_suma -= ord(word[initial_pos - 1])
# current_suma += ord(word[initial_pos + sub_size - 1])
# current_hash += (ord(word[initial_pos + sub_size - 1]) * sub_size)
# ret.add(current_hash)
# return ret
while True:
N = int(input())
if N == 0: break
words = tuple(input() for _ in range(N))
min_ = 0
max_ = min(len(word) for word in words)
while True:
if min_ == max_:
break
sub_size = max(min_ + 1, min_ + (max_ - min_) // 2)
#sets = tuple({word[i:i + sub_size] for i in range(len(word) - sub_size + 1)} for word in words)
win = False
#initial = make_hashs(words[0], sub_size)
#sets = tuple(make_hashs(words[j], sub_size) for j in range(1, N))
if any(
all(sub in word for word in words[1:]) for sub in
{words[0][i:i + sub_size] for i in range(len(words[0]) - sub_size + 1)}):
win = True
if win:
min_ = sub_size
else:
max_ = sub_size - 1
print(min_)
| while True:
n = int(input())
if N == 0:
break
words = tuple((input() for _ in range(N)))
min_ = 0
max_ = min((len(word) for word in words))
while True:
if min_ == max_:
break
sub_size = max(min_ + 1, min_ + (max_ - min_) // 2)
win = False
if any((all((sub in word for word in words[1:])) for sub in {words[0][i:i + sub_size] for i in range(len(words[0]) - sub_size + 1)})):
win = True
if win:
min_ = sub_size
else:
max_ = sub_size - 1
print(min_) |
N,S,R = map(int,input().split())
broken = list(map(int,input().split()))
plus = list(map(int,input().split()))
D = [1]*(N+1)
for i in broken:
D[i]-=1
for i in plus:
D[i]+=1
ans = 0
for i in range(1,N+1):
j = D[i]
if j >= 1:
continue
if D[i-1] >1:
D[i-1]-=1
elif i+1 < N + 1 and D[i+1] > 1:
D[i+1]-=1
else:
ans+=1
print(ans) | (n, s, r) = map(int, input().split())
broken = list(map(int, input().split()))
plus = list(map(int, input().split()))
d = [1] * (N + 1)
for i in broken:
D[i] -= 1
for i in plus:
D[i] += 1
ans = 0
for i in range(1, N + 1):
j = D[i]
if j >= 1:
continue
if D[i - 1] > 1:
D[i - 1] -= 1
elif i + 1 < N + 1 and D[i + 1] > 1:
D[i + 1] -= 1
else:
ans += 1
print(ans) |
TELUGU_CORPORA = [
{'name':'telugu_text_wikisource',
'origin': 'https://github.com/cltk/telugu_text_wikisource.git',
'location':'remote',
'type':'text'},
]
| telugu_corpora = [{'name': 'telugu_text_wikisource', 'origin': 'https://github.com/cltk/telugu_text_wikisource.git', 'location': 'remote', 'type': 'text'}] |
# Address:
I2CBUS = 10 # /dev/i2c-1
EMC2301_ADDRESS = 0x2F # 8 bit version
# Register
CONF = 0x20 # Configuration
FAN_STAT = 0x24 # Fan Status
FAN_STALL = 0x25 # Fan Stall Status *
FAN_SPIN = 0x26 # Fan Spin Status *
DRIVE_FALL = 0x27 # Drive Fall Status
FAN_INTERRUPT = 0x29 # Controls the masking of interrupts on all fan related channels
PWM_POLARITY = 0x2A # Configures Polarity of the PWM driver
PWM_OUTPUT = 0x2B # Configures Output type of the PWM driver
PWM_BASE = 0x2D # Selects the base frequency for the PWM output
FAN_SETTING = 0x30 # Displays Driver inputs or Direct control of fan
PWM_DIVIDE = 0x31 # Store the divide ratio to set the frequency
FAN_CONF1 = 0x32 # FAN configuration #1
FAN_CONF2 = 0x33 # FAN configuration #2
GAIN = 0x35 # Holds the gain terms
FAN_SPIN_UP = 0x36 # Sets the config for Spin Up Routine
FAN_MAX_STEP = 0x37 # Sets the maximum change per update
FAN_MIN_DRIVE = 0x38 # Sets the minimum drive value
TACH_COUNT = 0x39 # Holds the tachometer reading
FAN_FAIL_BAND = 0x3A
FAN_FAIL_BAND_LB = 0x3A # Stores the number of Tach counts used to determine how the actual fan speed must match the target fan speed low byte
FAN_FAIL_BAND_HB = 0x3B # -- High byte
TACH_TARGET = 0x3C
TACH_TARGET_LB = 0x3C # Holds the target tachometer low byte
TACH_TARGET_HB = 0x3D # -- High byte
TACH_READ = 0x3E
TACH_READ_HB = 0x3E # Holds the tachometer reading high byte
TACH_READ_LB = 0x3F # -- Low byte
SOFTWARE_LOCK = 0xEF # Lock all SWL register *
PRODUCT_ID = 0xFD # Stores the unique Product ID
MANUF_ID = 0xFE # Manufacturer ID
REVISION_ID = 0xFF # Revision ID
# CONF (0x20) 8 Bits:
MASK = 0x80 # Blocks the ALERT# pin
DIS_TO = 0x40 # Disables the SMBus timeout function
WD_EN = 0x20 # Enables the WatchDog timer
DR_EXT_CLK = 0x02 # Enables the internal tachometer clock or external clock
USE_EXT_CLK = 0x01 # Enables to use a clock present on the CLK pin
# FAN STATUS (0x24) 8 Bits:
WATCH = 0x80 # Indicates that the Watchdog Timer has expired
DRIVE_FAIL = 0x04 # Indicates that the Fan driver cannot meet the programmed fan speed at maximum PWM duty cycle
FAN_SPIN = 0x02 # Indicates that the Fan driver cannot spin up.
FAN_STALL = 0x01 # Indicates that the Fan driver have stalled.
# FAN STALL STATUS (0x25) 8 Bits:
FAN_STALL_I = 0x01
# FAN SPIN STATUS (0x26) 8 Bits:
FAN_SPIN_I = 0x01
# FAN DRIVE STATUS (0x27) 8 Bits:
DRIVE_FAIL_I = 0x01
# FAN INTERRUPT ENABLE (0x29) 8 Bits:
FAN_INT_EN = 0x01 # Allows the Fan to assert the ALERT# pin
# PWM_POLARITY (0x2A) 8 Bits:
POLARITY = 0x01 # Determine the polarity of PWM
# PWM_OUTPUT (0x2B) 8 Bits:
PWM_OT = 0x01 # Determine of output type of PWM driver
# PWM_BASE (0x2D) 8 Bits:
BASE = 0x03 # 00 - 26 kHz (def)
# 01 - 19.531 kHz
# 10 - 4.882 Hz
# 11 - 2.441 Hz
# FAN_CONF1 (0x32) 8 Bits:
UPDATE = 0x07 # Ramp rate to the driver response
# 000 - 100ms
# 001 - 200ms
# 010 - 300ms
# 011 - 400ms (def)
# 100 - 500ms
# 101 - 800ms
# 110 - 1200ms
# 111 - 1600ms
EDGES = 0x18 # Number of Poles of the Fan
# 00 - 1 pole, effective tach multiplier 0.5
# 01 - 2 poles (def), -- 1
# 10 - 3 poles, -- 1.5
# 11 - 4 poles, -- 2
RANGE = 0x60 # Range of TACH
# 00 - min 500 RPM, tach multiplier 1
# 01 - min 1000 RPM (def), tach multiplier 2
# 10 - min 2000 RPM, tach multiplier 4
# 11 - min 4000 RPM, tach multiplier 8
EN_ALGO = 0x80 # Enables Fan Speed Control Algorithm
# FAN_CONF2 (0x33) 8 Bits:
ERR_RNG = 0x06 # Control Advanced Control (Error window)
# 00 - 0 RPM (def)
# 01 - 50 RPM
# 10 - 100 RPM
# 11 - 200 RPM
DER_OPT = 0x18 # Control Advanced Control
# 00 - No derivate option used
# 01 - Basic derivate
# 10 - Step derivate
# 11 - Basic and Step derivate
GLITCH_EN = 0x20 # Disable low pass Glitch filter (remove high frequency noise)
EN_RRC = 0x40 # Enable Ramp Rate Control
# GAIN (0x35) 8 Bits:
GAINP = 0x03 # Control proportional Gain
# 00 - gain factor 1x
# 01 - gain factor 2x
# 10 - gain factor 4x (def)
# 11 - gain factor 8x
GAINI = 0x0C # Control integral Gain
GAIND = 0x30 # Control derivate Gain
# FAN_SPIN_UP (0x36) 8 Bits:
FAN_SPIN_UP_TIME = 0x03 # Determines max spin up time
# 00 - 250ms
# 01 - 500ms (def)
# 10 - 1s
# 11 - 2s
FAN_SPIN_UP_LVL = 0x1C # Determines final drive level used by Spin Up Routines
# 000 - 30%
# 001 - 35%
# 010 - 40%
# 011 - 45%
# 100 - 50%
# 101 - 55%
# 110 - 60% (def)
# 111 - 65%
FAN_SPIN_UP_NOKICK = 0x20 # Determines if the Spin UP Routines will drive fan to 100% duty cycle for 1/4 of the programed spin
FAN_SPIN_UP_DRIVE_FAIL_CNT = 0xC0 # Determines how many updates cycles are used for Drive fail detection function
# 00 - Disabled
# 01 - 16 updates period
# 10 - 32 --
# 11 - 64 --
# FAN_MAX_STEP (0x37) 8 Bits:
FAN_MAX_STEP_MASK = 0x3F
# FAN_MIN_DRIVE (0x38) 8 Bits:
FAN_MIN_DRIVE_MASK = 0xFF # Def 40% (0x66)
# FAN_TACH (0x39) 8 Bits:
FAN_TACH_MASK = 0xFF # Def (0xF5)
# TACH Reg (0x3A,3B,3C,3D,3E,3F) 8 Bits:
FAN_FAIL_BAND_LB_M = 0xF8 # def (0xF8)
FAN_FAIL_BAND_HB_M = 0xFF # def (0xFF)
TACH_TARGET_LB_M = 0xF8 # def (0xF8)
TACH_TARGET_HB_M = 0xFF # def (0xFF)
TACH_READ_HB_MASK = 0xFF # def (0xFF)
TACH_READ_LB_MASK = 0xF8 # def (0xF8)
# SOFTWARE_LOCK (0xEF) 8 Bits:
LOCK = 0x01 # locked register
# CONF Mask (0x20) 8 Bits clear :
MASK_M = 0x7F # Blocks the ALERT# pin
DIS_TO_M = 0xBF # Disables the SMBus timeout function
WD_EN_M = 0xDF # Enables the WatchDog timer
DR_EXT_CLK_M = 0xFD # Enables the internal tachometer clock or external clock
USE_EXT_CLK_M = 0xFE
# FAN_STAT Mask (0x24) 8 Bits clear :
WATCH_M = 0x7F # Watchdog Timer expire?
DRIVE_FAIL_M = 0xFB # Speed can't meet the max of PWM duty cycle
FAN_SPIN_M = 0xFD # Can't spin up FAN driver
FAN_STALL_M = 0xFE # Fan driver stalled?
# FAN DRIVE Mask (0x27) 8 Bits:
DRIVE_FAIL_I_M = 0xFE
# FAN INTERRUPT ENABLE Mask (0x29) 8 Bits:
FAN_INT_EN_M = 0xFE # Allows the Fan to assert the ALERT# pin
# PWM_POLARITY Mask (0x2A) 8 Bits:
POLARITY_M = 0xFE # Determine the polarity of PWM
# PWM_OUTPUT Mask (0x2B) 8 Bits:
PWM_OT_M = 0xFE # Determine of output type of PWM driver
# PWM_BASE Mask (0x2D) 8 Bits:
BASE_M = 0xFC # Base frequency
# FAN_CONF1 Mask (0x32) 8 Bits clear :
EN_ALGO_M = 0x7F # Enables Fan Speed Control Algorithm
RANGE_M = 0x9F # Range of TACH
EDGES_M = 0xE7 # Number of Poles of the Fan
UPDATE_M = 0xF8 # Ramp rate to the driver response
# FAN_CONF2 Mask (0x33) 8 Bits clear :
ERR_RNG_M = 0xF9 # Control Advanced Control (Error window)
DER_OPT_M = 0xE7 # Control Advanced Control
GLITCH_EN_M = 0xDF # Disable low pass Glitch filtelter (remove high frequency noise)
EN_RRC_M = 0xBF # Enable Ramp Rate Control
# GAIN Mask (0x35) 8 Bits clear:
GAINP_M = 0xFC # Control proportional Gain
GAINI_M = 0xF3 # Control integral Gain
GAIND_M = 0xCF # Control derivate Gain
# FAN_SPIN_UP Mask (0x36) 8 Bits clear:
FAN_SPIN_UP_TIME_M = 0xFC # Determines max spin up time
FAN_SPIN_UP_LVL_M = 0xE3 # Determines final drive level used by Spin Up Routines
FAN_SPIN_UP_NOKICK_M = 0xDF # Determines if the Spin UP Routines will drive fan to 100% duty cycle for 1/4 of the programed spin
FAN_SPIN_UP_DRIVE_FAIL_CNT_M = 0x3F # Determines how many updates cycles are used for Drive fail detection function
# SOFTWARE_LOCK Mask (0xEF) 8 Bits clear:
LOCK_M = 0xFE # locked register
# CONF Clear (0x20) 8 Bits:
MASK_CLR = 0x80 # Blocks the ALERT# pin
DIS_TO_CLR = 0x40 # Disables the SMBus timeout function
WD_EN_CLR = 0x20 # Enables the WatchDog timer
DR_EXT_CLK_CLR = 0x02 # Enables the internal tachometer clock or external clock
USE_EXT_CLK_CLR = 0x01 # Enables to use a clock present on the CLK pin
# FAN_STAT Clear (0x24) 8 Bits:
WATCH_CLR = 0x80 # Watchdog Timer expire?
DRIVE_FAIL_CLR = 0x04 # Speed can't meet the max of PWM duty cycle
FAN_SPIN_CLR = 0x02 # Can't spin up FAN driver
FAN_STALL_CLR = 0x01 # Fan driver stalled?
# FAN DRIVE STATUS Clear (0x27) 8 Bits:
DRIVE_FAIL_I_CLR = 0x01
# FAN INTERRUPT ENABLE Clear (0x29) 8 Bits:
FAN_INT_EN_CLR = 0x01 # Allows the Fan to assert the ALERT# pin
# PWM_POLARITY Clear (0x2A) 8 Bits:
POLARITY_CLR = 0x01 # Determine the polarity of PWM
# PWM_OUTPUT Clear (0x2B) 8 Bits:
PWM_OT_CLR = 0x01 # Determine of output type of PWM driver
# PWM_BASE Clear (0x2D) 8 Bits:
BASE_CLR = 0x03 # Base frequency
# FAN_CONF1 Clear (0x32) 8 Bits:
EN_ALGO_CLR = 0x80 # Enables Fan Speed Control Algorithm
RANGE_CLR = 0x60 # Range of TACH
EDGES_CLR = 0x18 # Number of Poles of the Fan
UPDATE_CLR = 0x07 # Ramp rate to the driver response
# FAN_CONF2 Clear (0x33) 8 Bits:
ERR_RNG_CLR = 0x06 # Control Advanced Control (Error window)
DER_OPT_CLR = 0x18 # Control Advanced Control
GLITCH_EN_CLR = 0x20 # Disable low pass Glitch filtelter (remove high frequency noise)
EN_RRC_M_CLR = 0x40 # Enable Ramp Rate Control
# GAIN Clear (0x35) 8 Bits:
GAINP_CLR = 0x03 # Control proportional Gain
GAINI_CLR = 0x0C # Control integral Gain
GAIND_CLR = 0x30 # Control derivate Gain
# FAN_SPIN_UP Clear (0x36) 8 Bits:
SPIN_UP_TIME_CLR = 0x03 # Determines max spin up time
SPIN_UP_LVL_CLR = 0x1C # Determines final drive level used by Spin Up Routines
SPIN_UP_NOKICK_CLR = 0x20 # Determines if the Spin UP Routines will drive fan to 100% duty cycle for 1/4 of the programed spin
SPIN_UP_DRIVE_FAIL_CNT_CLR = 0xC0 # Determines how many updates cycles are used for Drive fail detection function
# SOFTWARE_LOCK CLER (0xEF) 8 Bits:
LOCK_CLR = 0x00 # locked register
| i2_cbus = 10
emc2301_address = 47
conf = 32
fan_stat = 36
fan_stall = 37
fan_spin = 38
drive_fall = 39
fan_interrupt = 41
pwm_polarity = 42
pwm_output = 43
pwm_base = 45
fan_setting = 48
pwm_divide = 49
fan_conf1 = 50
fan_conf2 = 51
gain = 53
fan_spin_up = 54
fan_max_step = 55
fan_min_drive = 56
tach_count = 57
fan_fail_band = 58
fan_fail_band_lb = 58
fan_fail_band_hb = 59
tach_target = 60
tach_target_lb = 60
tach_target_hb = 61
tach_read = 62
tach_read_hb = 62
tach_read_lb = 63
software_lock = 239
product_id = 253
manuf_id = 254
revision_id = 255
mask = 128
dis_to = 64
wd_en = 32
dr_ext_clk = 2
use_ext_clk = 1
watch = 128
drive_fail = 4
fan_spin = 2
fan_stall = 1
fan_stall_i = 1
fan_spin_i = 1
drive_fail_i = 1
fan_int_en = 1
polarity = 1
pwm_ot = 1
base = 3
update = 7
edges = 24
range = 96
en_algo = 128
err_rng = 6
der_opt = 24
glitch_en = 32
en_rrc = 64
gainp = 3
gaini = 12
gaind = 48
fan_spin_up_time = 3
fan_spin_up_lvl = 28
fan_spin_up_nokick = 32
fan_spin_up_drive_fail_cnt = 192
fan_max_step_mask = 63
fan_min_drive_mask = 255
fan_tach_mask = 255
fan_fail_band_lb_m = 248
fan_fail_band_hb_m = 255
tach_target_lb_m = 248
tach_target_hb_m = 255
tach_read_hb_mask = 255
tach_read_lb_mask = 248
lock = 1
mask_m = 127
dis_to_m = 191
wd_en_m = 223
dr_ext_clk_m = 253
use_ext_clk_m = 254
watch_m = 127
drive_fail_m = 251
fan_spin_m = 253
fan_stall_m = 254
drive_fail_i_m = 254
fan_int_en_m = 254
polarity_m = 254
pwm_ot_m = 254
base_m = 252
en_algo_m = 127
range_m = 159
edges_m = 231
update_m = 248
err_rng_m = 249
der_opt_m = 231
glitch_en_m = 223
en_rrc_m = 191
gainp_m = 252
gaini_m = 243
gaind_m = 207
fan_spin_up_time_m = 252
fan_spin_up_lvl_m = 227
fan_spin_up_nokick_m = 223
fan_spin_up_drive_fail_cnt_m = 63
lock_m = 254
mask_clr = 128
dis_to_clr = 64
wd_en_clr = 32
dr_ext_clk_clr = 2
use_ext_clk_clr = 1
watch_clr = 128
drive_fail_clr = 4
fan_spin_clr = 2
fan_stall_clr = 1
drive_fail_i_clr = 1
fan_int_en_clr = 1
polarity_clr = 1
pwm_ot_clr = 1
base_clr = 3
en_algo_clr = 128
range_clr = 96
edges_clr = 24
update_clr = 7
err_rng_clr = 6
der_opt_clr = 24
glitch_en_clr = 32
en_rrc_m_clr = 64
gainp_clr = 3
gaini_clr = 12
gaind_clr = 48
spin_up_time_clr = 3
spin_up_lvl_clr = 28
spin_up_nokick_clr = 32
spin_up_drive_fail_cnt_clr = 192
lock_clr = 0 |
def gauss(X):
n = len(X)
x = [0]*n
for i in range(n):
if X[i][i] == 0.0:
return "Sorry can't excute"
for j in range(i+1,n):
rat = X[j][i]/X[i][i]
for k in range(n+1):
X[j][k] = X[j][k] - rat*X[i][k]
print(X)
x[n-1] = X[n-1][n]/X[n-1][n-1]
for i in range(n-2,-1,-1):
x[i] = X[i][n]
for j in range(i+1,n):
x[i] -= X[i][j]*x[j]
x[i] /= X[i][i]
print(x[i])
print(x)
return x
X = [[2,3,4,7],[2,-1,1,4],[1,3,-5,2]]
gauss(X)
| def gauss(X):
n = len(X)
x = [0] * n
for i in range(n):
if X[i][i] == 0.0:
return "Sorry can't excute"
for j in range(i + 1, n):
rat = X[j][i] / X[i][i]
for k in range(n + 1):
X[j][k] = X[j][k] - rat * X[i][k]
print(X)
x[n - 1] = X[n - 1][n] / X[n - 1][n - 1]
for i in range(n - 2, -1, -1):
x[i] = X[i][n]
for j in range(i + 1, n):
x[i] -= X[i][j] * x[j]
x[i] /= X[i][i]
print(x[i])
print(x)
return x
x = [[2, 3, 4, 7], [2, -1, 1, 4], [1, 3, -5, 2]]
gauss(X) |
def factorial_division(num1, num2):
sum = 1
sum2 = 1
for num in range(num1, 0, -1):
sum = sum * num
for num in range(num2, 0, -1):
sum2 = sum2 * num
result = sum / sum2
return result
num1 = int(input())
num2 = int(input())
print(f"{factorial_division(num1, num2):.2f}") | def factorial_division(num1, num2):
sum = 1
sum2 = 1
for num in range(num1, 0, -1):
sum = sum * num
for num in range(num2, 0, -1):
sum2 = sum2 * num
result = sum / sum2
return result
num1 = int(input())
num2 = int(input())
print(f'{factorial_division(num1, num2):.2f}') |
version = "1.0"
def getVersion():
return version
| version = '1.0'
def get_version():
return version |
dyn.baseball.pos[0] = 16.0
dyn.baseball.pos[1] = 0.1
dyn.baseball.pos[2] = 2.0
dyn.baseball.vel[0] = -30.0
dyn.baseball.vel[1] = -0.1
dyn.baseball.vel[2] = 1.0
dyn.baseball.theta = trick.attach_units("degree",-90.0)
dyn.baseball.phi = trick.attach_units("degree",1.0)
dyn.baseball.omega0 = trick.attach_units("revolution/s",30.0)
dyn_integloop.getIntegrator(trick.Runge_Kutta_4, 6)
trick.exec_set_terminate_time(5.2)
| dyn.baseball.pos[0] = 16.0
dyn.baseball.pos[1] = 0.1
dyn.baseball.pos[2] = 2.0
dyn.baseball.vel[0] = -30.0
dyn.baseball.vel[1] = -0.1
dyn.baseball.vel[2] = 1.0
dyn.baseball.theta = trick.attach_units('degree', -90.0)
dyn.baseball.phi = trick.attach_units('degree', 1.0)
dyn.baseball.omega0 = trick.attach_units('revolution/s', 30.0)
dyn_integloop.getIntegrator(trick.Runge_Kutta_4, 6)
trick.exec_set_terminate_time(5.2) |
# zip(*(('white', 'small'), ('red', 'big')))
colors, sizes = zip(*(('white', 'small'), ('red', 'big')))
print(colors)
print(sizes)
| (colors, sizes) = zip(*(('white', 'small'), ('red', 'big')))
print(colors)
print(sizes) |
class TestModel(object):
@staticmethod
def train(x):
# y = np.sin(3 * x[0]) * 4 * (x[0] - 1) * (x[0] + 2)
res = 0
for i in range(100000000):
res += i
y = sum(x * x)
return y
| class Testmodel(object):
@staticmethod
def train(x):
res = 0
for i in range(100000000):
res += i
y = sum(x * x)
return y |
m = 0
def findMedian(a, b ,c):
if a > b:
if a < c:
return a
elif b > c:
return b
else:
return c
else:
if a > c:
return a
elif b < c:
return b
else:
return c
def partition(A, l, r):
p = A[l]
i = l + 1
#print(A[l])
#print(l)
#print(r)
for j in range(i, r+1):
if(A[j] < p):
#print(i)
#print(A[j] < p)
A[i], A[j] = A[j], A[i]
i+=1
#print(A)
# else:
# print(A[j] < p)
A[l], A[i-1] = A[i-1], A[l]
#print(A)
return A
def QuickSort(A, l, r):
global m
if(l < r):
#Choose pivot here
a = A[l]
b = A[r]
middle = (r+l)//2
c = A[middle]
median = findMedian(a, b, c)
indexOf = A.index(median)
p = A[indexOf]
m += r-l
A[indexOf], A[l] = A[l], A[indexOf]
A = partition(A, l, r)
index = A.index(p)
#print("index")
#print(index)
A = QuickSort(A, l, index - 1)
A = QuickSort(A, index + 1, r)
return A
else:
#print("Array was of length 1")
return A
| m = 0
def find_median(a, b, c):
if a > b:
if a < c:
return a
elif b > c:
return b
else:
return c
elif a > c:
return a
elif b < c:
return b
else:
return c
def partition(A, l, r):
p = A[l]
i = l + 1
for j in range(i, r + 1):
if A[j] < p:
(A[i], A[j]) = (A[j], A[i])
i += 1
(A[l], A[i - 1]) = (A[i - 1], A[l])
return A
def quick_sort(A, l, r):
global m
if l < r:
a = A[l]
b = A[r]
middle = (r + l) // 2
c = A[middle]
median = find_median(a, b, c)
index_of = A.index(median)
p = A[indexOf]
m += r - l
(A[indexOf], A[l]) = (A[l], A[indexOf])
a = partition(A, l, r)
index = A.index(p)
a = quick_sort(A, l, index - 1)
a = quick_sort(A, index + 1, r)
return A
else:
return A |
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright: (c) 2014, Trond Hindenes <trond@hindenes.com>
# Copyright: (c) 2018, Ansible Project
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
# this is a windows documentation stub. actual code lives in the .ps1
# file of the same name
ANSIBLE_METADATA = {'metadata_version': '1.1',
'status': ['preview'],
'supported_by': 'community'}
DOCUMENTATION = r'''
---
module: win_chocolatey
version_added: "1.9"
short_description: Manage packages using chocolatey
description:
- Manage packages using Chocolatey (U(http://chocolatey.org/)).
- If Chocolatey is missing from the system, the module will install it.
- List of packages can be found at U(http://chocolatey.org/packages).
requirements:
- chocolatey >= 0.10.5 (will be upgraded if older)
options:
allow_empty_checksums:
description:
- Allow empty checksums to be used for downloaded resource from non-secure
locations.
- Use M(win_chocolatey_feature) with the name C(allowEmptyChecksums) to
control this option globally.
type: bool
default: 'no'
version_added: '2.2'
allow_prerelease:
description:
- Allow the installation of pre-release packages.
- If I(state) is C(latest), the latest pre-release package will be
installed.
type: bool
default: 'no'
version_added: '2.6'
architecture:
description:
- Force Chocolatey to install the package of a specific process
architecture.
- When setting C(x86), will ensure Chocolatey installs the x86 package
even when on an x64 bit OS.
choices:
- default
- x86
default: default
version_added: '2.7'
force:
description:
- Forces the install of a package, even if it already is installed.
- Using I(force) will cause Ansible to always report that a change was
made.
type: bool
default: 'no'
install_args:
description:
- Arguments to pass to the native installer.
- These are arguments that are passed directly to the installer the
Chocolatey package runs, this is generally an advanced option.
type: str
version_added: '2.1'
ignore_checksums:
description:
- Ignore the checksums provided by the package.
- Use M(win_chocolatey_feature) with the name C(checksumFiles) to control
this option globally.
type: bool
default: 'no'
version_added: '2.2'
ignore_dependencies:
description:
- Ignore dependencies, only install/upgrade the package itself.
type: bool
default: 'no'
version_added: '2.1'
name:
description:
- Name of the package(s) to be installed.
- Set to C(all) to run the action on all the installed packages.
required: yes
type: list
package_params:
description:
- Parameters to pass to the package.
- These are parameters specific to the Chocolatey package and are generally
documented by the package itself.
- Before Ansible 2.7, this option was just I(params).
type: str
version_added: '2.1'
aliases:
- params
proxy_url:
description:
- Proxy URL used to install chocolatey and the package.
- Use M(win_chocolatey_config) with the name C(proxy) to control this
option globally.
type: str
version_added: '2.4'
proxy_username:
description:
- Proxy username used to install Chocolatey and the package.
- Before Ansible 2.7, users with double quote characters C(") would need to
be escaped with C(\) beforehand. This is no longer necessary.
- Use M(win_chocolatey_config) with the name C(proxyUser) to control this
option globally.
type: str
version_added: '2.4'
proxy_password:
description:
- Proxy password used to install Chocolatey and the package.
- This value is exposed as a command argument and any privileged account
can see this value when the module is running Chocolatey, define the
password on the global config level with M(win_chocolatey_config) with
name C(proxyPassword) to avoid this.
type: str
version_added: '2.4'
skip_scripts:
description:
- Do not run I(chocolateyInstall.ps1) or I(chocolateyUninstall.ps1) scripts
when installing a package.
type: bool
default: 'no'
version_added: '2.4'
source:
description:
- Specify the source to retrieve the package from.
- Use M(win_chocolatey_source) to manage global sources.
- This value can either be the URL to a Chocolatey feed, a path to a folder
containing C(.nupkg) packages or the name of a source defined by
M(win_chocolatey_source).
- This value is also used when Chocolatey is not installed as the location
of the install.ps1 script and only supports URLs for this case.
type: str
source_username:
description:
- A username to use with I(source) when accessing a feed that requires
authentication.
- It is recommended you define the credentials on a source with
M(win_chocolatey_source) instead of passing it per task.
type: str
version_added: '2.7'
source_password:
description:
- The password for I(source_username).
- This value is exposed as a command argument and any privileged account
can see this value when the module is running Chocolatey, define the
credentials with a source with M(win_chocolatey_source) to avoid this.
type: str
version_added: '2.7'
state:
description:
- State of the package on the system.
- When C(absent), will ensure the package is not installed.
- When C(present), will ensure the package is installed.
- When C(downgrade), will allow Chocolatey to downgrade a package if
I(version) is older than the installed version.
- When C(latest), will ensure the package is installed to the latest
available version.
- When C(reinstalled), will uninstall and reinstall the package.
choices:
- absent
- downgrade
- latest
- present
- reinstalled
default: present
type: str
timeout:
description:
- The time to allow chocolatey to finish before timing out.
type: int
default: 2700
version_added: '2.3'
aliases:
- execution_timeout
validate_certs:
description:
- Used when downloading the Chocolatey install script if Chocolatey is not
already installed, this does not affect the Chocolatey package install
process.
- When C(no), no SSL certificates will be validated.
- This should only be used on personally controlled sites using self-signed
certificate.
type: bool
default: 'yes'
version_added: '2.7'
version:
description:
- Specific version of the package to be installed.
- Ignored when I(state) is set to C(absent).
type: str
notes:
- Provide the C(version) parameter value as a string (e.g. C('6.1')), otherwise it
is considered to be a floating-point number and depending on the locale could
become C(6,1), which will cause a failure.
- When using verbosity 2 or less (C(-vv)) the C(stdout) output will be restricted.
- When using verbosity 4 (C(-vvvv)) the C(stdout) output will be more verbose.
- When using verbosity 5 (C(-vvvvv)) the C(stdout) output will include debug output.
- This module will install or upgrade Chocolatey when needed.
- Some packages, like hotfixes or updates need an interactive user logon in
order to install. You can use (C(become)) to achieve this, see
:doc:`/user_guide/become`.
- Even if you are connecting as local Administrator, using (C(become)) to
become Administrator will give you an interactive user logon, see examples
below.
- If (C(become)) is unavailable, use (M(win_hotfix) to install hotfixes instead
of (M(win_chocolatey)) as (M(win_hotfix)) avoids using wusa.exe which cannot
be run without (C(become)).
author:
- Trond Hindenes (@trondhindenes)
- Peter Mounce (@petemounce)
- Pepe Barbe (@elventear)
- Adam Keech (@smadam813)
- Pierre Templier (@ptemplier)
- Jordan Borean (@jborean93)
'''
# TODO:
# * Better parsing when a package has dependencies - currently fails
# * Time each item that is run
# * Support 'changed' with gems - would require shelling out to `gem list` first and parsing, kinda defeating the point of using chocolatey.
# * Version provided not as string might be translated to 6,6 depending on Locale (results in errors)
EXAMPLES = r'''
- name: Install git
win_chocolatey:
name: git
state: present
- name: Upgrade installed packages
win_chocolatey:
name: all
state: latest
- name: Install notepadplusplus version 6.6
win_chocolatey:
name: notepadplusplus
version: '6.6'
- name: Install notepadplusplus 32 bit version
win_chocolatey:
name: notepadplusplus
architecture: x86
- name: Install git from specified repository
win_chocolatey:
name: git
source: https://someserver/api/v2/
- name: Install git from a pre configured source (win_chocolatey_source)
win_chocolatey:
name: git
source: internal_repo
- name: ensure Chocolatey itself is installed and use internal repo as source
win_chocolatey:
name: chocolatey
source: http://someserver/chocolatey
- name: Uninstall git
win_chocolatey:
name: git
state: absent
- name: Install multiple packages
win_chocolatey:
name:
- procexp
- putty
- windirstat
state: present
- name: Install multiple packages sequentially
win_chocolatey:
name: '{{ item }}'
state: present
with_items:
- procexp
- putty
- windirstat
- name: uninstall multiple packages
win_chocolatey:
name:
- procexp
- putty
- windirstat
state: absent
- name: Install curl using proxy
win_chocolatey:
name: curl
proxy_url: http://proxy-server:8080/
proxy_username: joe
proxy_password: p@ssw0rd
- name: Install a package that requires 'become'
win_chocolatey:
name: officepro2013
become: yes
become_user: Administrator
become_method: runas
'''
RETURN = r'''
command:
description: The full command used in the chocolatey task.
returned: changed
type: str
sample: choco.exe install -r --no-progress -y sysinternals --timeout 2700 --failonunfound
rc:
description: The return code from the chocolatey task.
returned: always
type: int
sample: 0
stdout:
description: The stdout from the chocolatey task. The verbosity level of the
messages are affected by Ansible verbosity setting, see notes for more
details.
returned: changed
type: str
sample: Chocolatey upgraded 1/1 packages.
'''
| ansible_metadata = {'metadata_version': '1.1', 'status': ['preview'], 'supported_by': 'community'}
documentation = '\n---\nmodule: win_chocolatey\nversion_added: "1.9"\nshort_description: Manage packages using chocolatey\ndescription:\n- Manage packages using Chocolatey (U(http://chocolatey.org/)).\n- If Chocolatey is missing from the system, the module will install it.\n- List of packages can be found at U(http://chocolatey.org/packages).\nrequirements:\n- chocolatey >= 0.10.5 (will be upgraded if older)\noptions:\n allow_empty_checksums:\n description:\n - Allow empty checksums to be used for downloaded resource from non-secure\n locations.\n - Use M(win_chocolatey_feature) with the name C(allowEmptyChecksums) to\n control this option globally.\n type: bool\n default: \'no\'\n version_added: \'2.2\'\n allow_prerelease:\n description:\n - Allow the installation of pre-release packages.\n - If I(state) is C(latest), the latest pre-release package will be\n installed.\n type: bool\n default: \'no\'\n version_added: \'2.6\'\n architecture:\n description:\n - Force Chocolatey to install the package of a specific process\n architecture.\n - When setting C(x86), will ensure Chocolatey installs the x86 package\n even when on an x64 bit OS.\n choices:\n - default\n - x86\n default: default\n version_added: \'2.7\'\n force:\n description:\n - Forces the install of a package, even if it already is installed.\n - Using I(force) will cause Ansible to always report that a change was\n made.\n type: bool\n default: \'no\'\n install_args:\n description:\n - Arguments to pass to the native installer.\n - These are arguments that are passed directly to the installer the\n Chocolatey package runs, this is generally an advanced option.\n type: str\n version_added: \'2.1\'\n ignore_checksums:\n description:\n - Ignore the checksums provided by the package.\n - Use M(win_chocolatey_feature) with the name C(checksumFiles) to control\n this option globally.\n type: bool\n default: \'no\'\n version_added: \'2.2\'\n ignore_dependencies:\n description:\n - Ignore dependencies, only install/upgrade the package itself.\n type: bool\n default: \'no\'\n version_added: \'2.1\'\n name:\n description:\n - Name of the package(s) to be installed.\n - Set to C(all) to run the action on all the installed packages.\n required: yes\n type: list\n package_params:\n description:\n - Parameters to pass to the package.\n - These are parameters specific to the Chocolatey package and are generally\n documented by the package itself.\n - Before Ansible 2.7, this option was just I(params).\n type: str\n version_added: \'2.1\'\n aliases:\n - params\n proxy_url:\n description:\n - Proxy URL used to install chocolatey and the package.\n - Use M(win_chocolatey_config) with the name C(proxy) to control this\n option globally.\n type: str\n version_added: \'2.4\'\n proxy_username:\n description:\n - Proxy username used to install Chocolatey and the package.\n - Before Ansible 2.7, users with double quote characters C(") would need to\n be escaped with C(\\) beforehand. This is no longer necessary.\n - Use M(win_chocolatey_config) with the name C(proxyUser) to control this\n option globally.\n type: str\n version_added: \'2.4\'\n proxy_password:\n description:\n - Proxy password used to install Chocolatey and the package.\n - This value is exposed as a command argument and any privileged account\n can see this value when the module is running Chocolatey, define the\n password on the global config level with M(win_chocolatey_config) with\n name C(proxyPassword) to avoid this.\n type: str\n version_added: \'2.4\'\n skip_scripts:\n description:\n - Do not run I(chocolateyInstall.ps1) or I(chocolateyUninstall.ps1) scripts\n when installing a package.\n type: bool\n default: \'no\'\n version_added: \'2.4\'\n source:\n description:\n - Specify the source to retrieve the package from.\n - Use M(win_chocolatey_source) to manage global sources.\n - This value can either be the URL to a Chocolatey feed, a path to a folder\n containing C(.nupkg) packages or the name of a source defined by\n M(win_chocolatey_source).\n - This value is also used when Chocolatey is not installed as the location\n of the install.ps1 script and only supports URLs for this case.\n type: str\n source_username:\n description:\n - A username to use with I(source) when accessing a feed that requires\n authentication.\n - It is recommended you define the credentials on a source with\n M(win_chocolatey_source) instead of passing it per task.\n type: str\n version_added: \'2.7\'\n source_password:\n description:\n - The password for I(source_username).\n - This value is exposed as a command argument and any privileged account\n can see this value when the module is running Chocolatey, define the\n credentials with a source with M(win_chocolatey_source) to avoid this.\n type: str\n version_added: \'2.7\'\n state:\n description:\n - State of the package on the system.\n - When C(absent), will ensure the package is not installed.\n - When C(present), will ensure the package is installed.\n - When C(downgrade), will allow Chocolatey to downgrade a package if\n I(version) is older than the installed version.\n - When C(latest), will ensure the package is installed to the latest\n available version.\n - When C(reinstalled), will uninstall and reinstall the package.\n choices:\n - absent\n - downgrade\n - latest\n - present\n - reinstalled\n default: present\n type: str\n timeout:\n description:\n - The time to allow chocolatey to finish before timing out.\n type: int\n default: 2700\n version_added: \'2.3\'\n aliases:\n - execution_timeout\n validate_certs:\n description:\n - Used when downloading the Chocolatey install script if Chocolatey is not\n already installed, this does not affect the Chocolatey package install\n process.\n - When C(no), no SSL certificates will be validated.\n - This should only be used on personally controlled sites using self-signed\n certificate.\n type: bool\n default: \'yes\'\n version_added: \'2.7\'\n version:\n description:\n - Specific version of the package to be installed.\n - Ignored when I(state) is set to C(absent).\n type: str\nnotes:\n- Provide the C(version) parameter value as a string (e.g. C(\'6.1\')), otherwise it\n is considered to be a floating-point number and depending on the locale could\n become C(6,1), which will cause a failure.\n- When using verbosity 2 or less (C(-vv)) the C(stdout) output will be restricted.\n- When using verbosity 4 (C(-vvvv)) the C(stdout) output will be more verbose.\n- When using verbosity 5 (C(-vvvvv)) the C(stdout) output will include debug output.\n- This module will install or upgrade Chocolatey when needed.\n- Some packages, like hotfixes or updates need an interactive user logon in\n order to install. You can use (C(become)) to achieve this, see\n :doc:`/user_guide/become`.\n- Even if you are connecting as local Administrator, using (C(become)) to\n become Administrator will give you an interactive user logon, see examples\n below.\n- If (C(become)) is unavailable, use (M(win_hotfix) to install hotfixes instead\n of (M(win_chocolatey)) as (M(win_hotfix)) avoids using wusa.exe which cannot\n be run without (C(become)).\nauthor:\n- Trond Hindenes (@trondhindenes)\n- Peter Mounce (@petemounce)\n- Pepe Barbe (@elventear)\n- Adam Keech (@smadam813)\n- Pierre Templier (@ptemplier)\n- Jordan Borean (@jborean93)\n'
examples = "\n- name: Install git\n win_chocolatey:\n name: git\n state: present\n\n- name: Upgrade installed packages\n win_chocolatey:\n name: all\n state: latest\n\n- name: Install notepadplusplus version 6.6\n win_chocolatey:\n name: notepadplusplus\n version: '6.6'\n\n- name: Install notepadplusplus 32 bit version\n win_chocolatey:\n name: notepadplusplus\n architecture: x86\n\n- name: Install git from specified repository\n win_chocolatey:\n name: git\n source: https://someserver/api/v2/\n\n- name: Install git from a pre configured source (win_chocolatey_source)\n win_chocolatey:\n name: git\n source: internal_repo\n\n- name: ensure Chocolatey itself is installed and use internal repo as source\n win_chocolatey:\n name: chocolatey\n source: http://someserver/chocolatey\n\n- name: Uninstall git\n win_chocolatey:\n name: git\n state: absent\n\n- name: Install multiple packages\n win_chocolatey:\n name:\n - procexp\n - putty\n - windirstat\n state: present\n\n- name: Install multiple packages sequentially\n win_chocolatey:\n name: '{{ item }}'\n state: present\n with_items:\n - procexp\n - putty\n - windirstat\n\n- name: uninstall multiple packages\n win_chocolatey:\n name:\n - procexp\n - putty\n - windirstat\n state: absent\n\n- name: Install curl using proxy\n win_chocolatey:\n name: curl\n proxy_url: http://proxy-server:8080/\n proxy_username: joe\n proxy_password: p@ssw0rd\n\n- name: Install a package that requires 'become'\n win_chocolatey:\n name: officepro2013\n become: yes\n become_user: Administrator\n become_method: runas\n"
return = '\ncommand:\n description: The full command used in the chocolatey task.\n returned: changed\n type: str\n sample: choco.exe install -r --no-progress -y sysinternals --timeout 2700 --failonunfound\nrc:\n description: The return code from the chocolatey task.\n returned: always\n type: int\n sample: 0\nstdout:\n description: The stdout from the chocolatey task. The verbosity level of the\n messages are affected by Ansible verbosity setting, see notes for more\n details.\n returned: changed\n type: str\n sample: Chocolatey upgraded 1/1 packages.\n' |
# Approach :
# Divide the linked list to two halved
# First half is head and the remaining as rest
# The head points to the rest in a normal linked list
# In the reverse linked list , the next of current points to the prev node and the head node should point to NULL
# Keep continuing this process till the last node
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def reverseList(self, head):
if head is None or head.next is None:
return head
rest = self.reverseList(head.next)
head.next.next = head
head.next = None
return rest | class Solution:
def reverse_list(self, head):
if head is None or head.next is None:
return head
rest = self.reverseList(head.next)
head.next.next = head
head.next = None
return rest |
class arithmetic:
def __init__(self):
pass
def add(self, x: int, y: int) -> int:
return x + y
def sub(self, x: int, y: int) -> int:
return x - y
def mul(self, x: int, y: int) -> int:
return x * y
def div(self, x: int, y: int) -> float:
return x / y | class Arithmetic:
def __init__(self):
pass
def add(self, x: int, y: int) -> int:
return x + y
def sub(self, x: int, y: int) -> int:
return x - y
def mul(self, x: int, y: int) -> int:
return x * y
def div(self, x: int, y: int) -> float:
return x / y |
Bag=[]
#Luggage Bag
Bag.append('Waterbottle')
Bag.append('Milk')
Bag.append('Clothes')
Bag.append('Books')
#Removing milk from the bag
Bag.remove('Milk')
print(Bag)
| bag = []
Bag.append('Waterbottle')
Bag.append('Milk')
Bag.append('Clothes')
Bag.append('Books')
Bag.remove('Milk')
print(Bag) |
#!/usr/bin/env python
def start(agent) -> None:
try:
next_step = next(agent)
try:
next_step(agent)
except TypeError:
msg = "Returned generator not a function, did you use yield from?"
raise TypeError(msg)
except StopIteration:
pass
| def start(agent) -> None:
try:
next_step = next(agent)
try:
next_step(agent)
except TypeError:
msg = 'Returned generator not a function, did you use yield from?'
raise type_error(msg)
except StopIteration:
pass |
#inserta strings en una lista
texto = input("Ingrese un string: ")
no_olvidar = texto.split(",") #la coma seria el separador
no_olvidar.sort() #Para ordenar la lista de menor a mayor (en orden alfabetico)
print(no_olvidar)
| texto = input('Ingrese un string: ')
no_olvidar = texto.split(',')
no_olvidar.sort()
print(no_olvidar) |
#!/usr/bin/env python3
#encoding=utf-8
#-----------------------------------------------
# Usage: python3 3-desc-computed.py
# Description: computed attribute with attribute descriptor
#-----------------------------------------------
# Implementation 1
class DescSquare:
def __init__(self, start):
self.value = start
def __get__(self, instance, owner):
print('Descriptor DescSquare __get__ method...')
return self.value ** 2
def __set__(self, instance, value):
print('Descriptor DescSquare __set__ method...')
self.value = value
def __delete__(self, instance):
print('Descriptor DescSquare __delete__ method...')
del self.value
class Client1:
x = DescSquare(3)
class Client2:
x = DescSquare(32)
# Implementation 2
class DescSquare1:
def __get__(self, instance, owner):
print('Descriptor DescSquare1 __get__ method...')
return instance._value ** 2
def __set__(self, instance, value):
print('Descriptor DescSquare1 __set__ method...')
instance._value = value
def __delete__(self, instance):
print('Descriptor DescSquare1 __delete__ method...')
del instance._value
class Client3:
def __init__(self, value):
self._value = value
x = DescSquare1()
class Client4:
def __init__(self, value):
self._value = value
x = DescSquare1()
if __name__ == '__main__':
c1 = Client1()
c2 = Client2()
print(c1.x)
c1.x = 7
print(c1.x)
print(c2.x)
print()
print('-' * 20)
c3 = Client3(9)
c4 = Client4(45)
print(c3.x)
c3.x = 11
print(c3.x)
print(c4.x)
| class Descsquare:
def __init__(self, start):
self.value = start
def __get__(self, instance, owner):
print('Descriptor DescSquare __get__ method...')
return self.value ** 2
def __set__(self, instance, value):
print('Descriptor DescSquare __set__ method...')
self.value = value
def __delete__(self, instance):
print('Descriptor DescSquare __delete__ method...')
del self.value
class Client1:
x = desc_square(3)
class Client2:
x = desc_square(32)
class Descsquare1:
def __get__(self, instance, owner):
print('Descriptor DescSquare1 __get__ method...')
return instance._value ** 2
def __set__(self, instance, value):
print('Descriptor DescSquare1 __set__ method...')
instance._value = value
def __delete__(self, instance):
print('Descriptor DescSquare1 __delete__ method...')
del instance._value
class Client3:
def __init__(self, value):
self._value = value
x = desc_square1()
class Client4:
def __init__(self, value):
self._value = value
x = desc_square1()
if __name__ == '__main__':
c1 = client1()
c2 = client2()
print(c1.x)
c1.x = 7
print(c1.x)
print(c2.x)
print()
print('-' * 20)
c3 = client3(9)
c4 = client4(45)
print(c3.x)
c3.x = 11
print(c3.x)
print(c4.x) |
class Invoice:
def __init__(self, bill_to, date):
self.bill_to = bill_to
self.date = date
self.invoice_items = []
self.invoice_total = 0
def add_invoice_item(self, invoice_item):
'''
Write the code to append an invoice_item to the self.invoice_items list
:param invoice_item:
:return: void(nothing)
'''
self.invoice_items.append(invoice_item)
def get_invoice_total(self):
'''
Write code to iterate the self.invoice_items list and get the invoice self.invoice_total
:return: the self.invoice_total
'''
self.invoice_total = 0
for invoice_item in self.invoice_items:
self.invoice_total += invoice_item.get_extended_cost()
return self.invoice_total
def print_invoice(self):
'''
Nothing to do here, I've written the code
:return:
'''
total_cost = 0
print('Description', 'Quantity', ' Cost', 'Extended Cost')
for invoice_item in self.invoice_items:
total_cost += invoice_item.get_extended_cost()
print(invoice_item.description, format(invoice_item.quantity, '12d'), format(invoice_item.cost, '9,.2f'), \
format(invoice_item.get_extended_cost(), '13,.2f'))
print('Total: ', ' ' *29,format(total_cost, '.2f'))
| class Invoice:
def __init__(self, bill_to, date):
self.bill_to = bill_to
self.date = date
self.invoice_items = []
self.invoice_total = 0
def add_invoice_item(self, invoice_item):
"""
Write the code to append an invoice_item to the self.invoice_items list
:param invoice_item:
:return: void(nothing)
"""
self.invoice_items.append(invoice_item)
def get_invoice_total(self):
"""
Write code to iterate the self.invoice_items list and get the invoice self.invoice_total
:return: the self.invoice_total
"""
self.invoice_total = 0
for invoice_item in self.invoice_items:
self.invoice_total += invoice_item.get_extended_cost()
return self.invoice_total
def print_invoice(self):
"""
Nothing to do here, I've written the code
:return:
"""
total_cost = 0
print('Description', 'Quantity', ' Cost', 'Extended Cost')
for invoice_item in self.invoice_items:
total_cost += invoice_item.get_extended_cost()
print(invoice_item.description, format(invoice_item.quantity, '12d'), format(invoice_item.cost, '9,.2f'), format(invoice_item.get_extended_cost(), '13,.2f'))
print('Total: ', ' ' * 29, format(total_cost, '.2f')) |
# -*- coding: utf-8 -*-
DESC = "emr-2019-01-03"
INFO = {
"ScaleOutInstance": {
"params": [
{
"name": "TimeUnit",
"desc": "Time unit of scale-out. Valid values:\n<li>s: seconds. When `PayMode` is 0, `TimeUnit` can only be `s`.</li>\n<li>m: month. When `PayMode` is 1, `TimeUnit` can only be `m`.</li>"
},
{
"name": "TimeSpan",
"desc": "Duration of scale-out, which needs to be used together with `TimeUnit`."
},
{
"name": "InstanceId",
"desc": "Instance ID."
},
{
"name": "PayMode",
"desc": "Instance billing mode. Valid values:\n<li>0: pay-as-you-go.</li>"
},
{
"name": "ClientToken",
"desc": "Client token."
},
{
"name": "PreExecutedFileSettings",
"desc": "Bootstrap script settings."
},
{
"name": "TaskCount",
"desc": "Number of task nodes added."
},
{
"name": "CoreCount",
"desc": "Number of core nodes added."
},
{
"name": "UnNecessaryNodeList",
"desc": "Process not required during scale-out."
},
{
"name": "RouterCount",
"desc": "Number of router nodes added."
},
{
"name": "SoftDeployInfo",
"desc": "Deployed service.\n<li>`SoftDeployInfo` and `ServiceNodeInfo` are in the same group and mutually exclusive with `UnNecessaryNodeList`.</li>\n<li>The combination of `SoftDeployInfo` and `ServiceNodeInfo` is recommended.</li>"
},
{
"name": "ServiceNodeInfo",
"desc": "Started process."
},
{
"name": "DisasterRecoverGroupIds",
"desc": "List of spread placement group IDs. Only one can be specified currently."
},
{
"name": "Tags",
"desc": "List of tags bound to added nodes."
},
{
"name": "HardwareResourceType",
"desc": "Resource type selected for expansion. Valid values: host (general CVM resource), pod (resource provided by TKE cluster)"
},
{
"name": "PodSpec",
"desc": "Specified information such as pod specification and source for expansion with pod resources"
}
],
"desc": "This API is used to scale out instance."
},
"DescribeInstances": {
"params": [
{
"name": "DisplayStrategy",
"desc": "Cluster filtering policy. Valid values:\n<li>clusterList: queries the list of clusters except terminated ones.</li>\n<li>monitorManage: queries the list of clusters except those that have been terminated, are being created, or failed to be created.</li>\n<li>cloudHardwareManage/componentManage: reserved fields with the same meaning as `monitorManage`.</li>"
},
{
"name": "InstanceIds",
"desc": "Queries by one or more instance IDs in the format of `emr-xxxxxxxx`. For the format of this parameter, please see the `id.N` section in [API Overview](https://intl.cloud.tencent.com/document/api/213/15688). If no instance ID is entered, the list of all instances under this `APPID` will be returned."
},
{
"name": "Offset",
"desc": "Page number. Default value: 0, indicating the first page."
},
{
"name": "Limit",
"desc": "Number of returned results per page. Default value: 10. Maximum value: 100"
},
{
"name": "ProjectId",
"desc": "ID of the project to which the instance belongs. This parameter can be obtained from the `projectId` field in the return value of the `DescribeProject` API. If this value is -1, the list of all instances will be returned."
},
{
"name": "OrderField",
"desc": "Sorting field. Valid values:\n<li>clusterId: sorts by cluster ID.</li>\n<li>addTime: sorts by instance creation time.</li>\n<li>status: sorts by instance status code.</li>"
},
{
"name": "Asc",
"desc": "Sorts according to `OrderField` in ascending or descending order. Valid values:\n<li>0: descending order.</li>\n<li>1: ascending order.</li>Default value: 0.\u0007"
}
],
"desc": "This API is used to query EMR instances."
},
"InquiryPriceUpdateInstance": {
"params": [
{
"name": "TimeUnit",
"desc": "Time unit of scaling. Valid values:\n<li>s: seconds. When `PayMode` is 0, `TimeUnit` can only be `s`.</li>"
},
{
"name": "TimeSpan",
"desc": "Duration of scaling, which needs to be used together with `TimeUnit`.\n<li>When `PayMode` is 0, `TimeSpan` can only be 3,600.</li>"
},
{
"name": "UpdateSpec",
"desc": "Target node specification."
},
{
"name": "PayMode",
"desc": "Instance billing mode. Valid values:\n<li>0: pay-as-you-go.</li>"
},
{
"name": "Placement",
"desc": "Instance location. This parameter is used to specify the AZ, project, and other attributes of the instance."
},
{
"name": "Currency",
"desc": "Currency."
}
],
"desc": "This API is used to query price of scaling."
},
"DescribeClusterNodes": {
"params": [
{
"name": "InstanceId",
"desc": "Cluster instance ID in the format of emr-xxxxxxxx"
},
{
"name": "NodeFlag",
"desc": "Node flag. Valid values:\n<li>all: gets the information of nodes in all types except TencentDB information.</li>\n<li>master: gets master node information.</li>\n<li>core: gets core node information.</li>\n<li>task: gets task node information.</li>\n<li>common: gets common node information.</li>\n<li>router: gets router node information.</li>\n<li>db: gets TencentDB information in normal status.</li>\nNote: only the above values are supported for the time being. Entering other values will cause errors."
},
{
"name": "Offset",
"desc": "Page number. Default value: 0, indicating the first page."
},
{
"name": "Limit",
"desc": "Number of returned results per page. Default value: 100. Maximum value: 100"
},
{
"name": "HardwareResourceType",
"desc": "Resource type. Valid values: all, host, pod. Default value: all"
},
{
"name": "SearchFields",
"desc": "Searchable field"
}
],
"desc": "This API is used to query the information of a hardware node."
},
"InquiryPriceRenewInstance": {
"params": [
{
"name": "TimeSpan",
"desc": "How long the instance will be renewed for, which needs to be used together with `TimeUnit`."
},
{
"name": "ResourceIds",
"desc": "List of resource IDs of the node to be renewed. The resource ID is in the format of `emr-vm-xxxxxxxx`. A valid resource ID can be queried in the [console](https://console.cloud.tencent.com/emr/static/hardware)."
},
{
"name": "Placement",
"desc": "Location of the instance. This parameter is used to specify the AZ, project, and other attributes of the instance."
},
{
"name": "PayMode",
"desc": "Instance billing mode."
},
{
"name": "TimeUnit",
"desc": "Unit of time for instance renewal."
},
{
"name": "Currency",
"desc": "Currency."
}
],
"desc": "This API is used to query the price for renewal."
},
"CreateInstance": {
"params": [
{
"name": "ProductId",
"desc": "Product ID. Different product IDs represent different EMR product versions. Valid values:\n<li>1: EMR v1.3.1.</li>\n<li>2: EMR v2.0.1.</li>\n<li>4: EMR v2.1.0.</li>\n<li>7: EMR v3.0.0.</li>"
},
{
"name": "VPCSettings",
"desc": "Configuration information of VPC. This parameter is used to specify the VPC ID, subnet ID, etc."
},
{
"name": "Software",
"desc": "List of deployed components. Different required components need to be selected for different EMR product IDs (i.e., `ProductId`; for specific meanings, please see the `ProductId` field in the input parameter):\n<li>When `ProductId` is 1, the required components include hadoop-2.7.3, knox-1.2.0, and zookeeper-3.4.9</li>\n<li>When `ProductId` is 2, the required components include hadoop-2.7.3, knox-1.2.0, and zookeeper-3.4.9</li>\n<li>When `ProductId` is 4, the required components include hadoop-2.8.4, knox-1.2.0, and zookeeper-3.4.9</li>\n<li>When `ProductId` is 7, the required components include hadoop-3.1.2, knox-1.2.0, and zookeeper-3.4.9</li>"
},
{
"name": "ResourceSpec",
"desc": "Node resource specification."
},
{
"name": "SupportHA",
"desc": "Whether to enable high node availability. Valid values:\n<li>0: does not enable high availability of node.</li>\n<li>1: enables high availability of node.</li>"
},
{
"name": "InstanceName",
"desc": "Instance name.\n<li>Length limit: 6-36 characters.</li>\n<li>Only letters, numbers, dashes (-), and underscores (_) are supported.</li>"
},
{
"name": "PayMode",
"desc": "Instance billing mode. Valid values:\n<li>0: pay-as-you-go.</li>"
},
{
"name": "Placement",
"desc": "Instance location. This parameter is used to specify the AZ, project, and other attributes of the instance."
},
{
"name": "TimeSpan",
"desc": "Purchase duration of instance, which needs to be used together with `TimeUnit`.\n<li>When `TimeUnit` is `s`, this parameter can only be filled with 3600, indicating a pay-as-you-go instance.</li>\n<li>When `TimeUnit` is `m`, the number entered in this parameter indicates the purchase duration of the monthly-subscription instance; for example, 1 means one month</li>"
},
{
"name": "TimeUnit",
"desc": "Time unit of instance purchase duration. Valid values:\n<li>s: seconds. When `PayMode` is 0, `TimeUnit` can only be `s`.</li>\n<li>m: month. When `PayMode` is 1, `TimeUnit` can only be `m`.</li>"
},
{
"name": "LoginSettings",
"desc": "Instance login settings. This parameter allows you to set the login password or key for your purchased node.\n<li>If the key is set, the password will be only used for login to the native component WebUI.</li>\n<li>If the key is not set, the password will be used for login to all purchased nodes and the native component WebUI.</li>"
},
{
"name": "COSSettings",
"desc": "Parameter required for enabling COS access."
},
{
"name": "SgId",
"desc": "Security group to which an instance belongs in the format of `sg-xxxxxxxx`. This parameter can be obtained from the `SecurityGroupId` field in the return value of the [DescribeSecurityGroups](https://intl.cloud.tencent.com/document/api/215/15808) API."
},
{
"name": "PreExecutedFileSettings",
"desc": "Bootstrap script settings."
},
{
"name": "AutoRenew",
"desc": "Whether auto-renewal is enabled. Valid values:\n<li>0: auto-renewal not enabled.</li>\n<li>1: auto-renewal enabled.</li>"
},
{
"name": "ClientToken",
"desc": "Client token."
},
{
"name": "NeedMasterWan",
"desc": "Whether to enable public IP access for master node. Valid values:\n<li>NEED_MASTER_WAN: enables public IP for master node.</li>\n<li>NOT_NEED_MASTER_WAN: does not enable.</li>Public IP is enabled for master node by default."
},
{
"name": "RemoteLoginAtCreate",
"desc": "Whether to enable remote public network login, i.e., port 22. When `SgId` is not empty, this parameter does not take effect."
},
{
"name": "CheckSecurity",
"desc": "Whether to enable secure cluster. 0: no; other values: yes."
},
{
"name": "ExtendFsField",
"desc": "Accesses to external file system."
},
{
"name": "Tags",
"desc": "Tag description list. This parameter is used to bind a tag to a resource instance."
},
{
"name": "DisasterRecoverGroupIds",
"desc": "List of spread placement group IDs. Only one can be specified currently."
},
{
"name": "CbsEncrypt",
"desc": "CBS disk encryption at the cluster level. 0: not encrypted, 1: encrypted"
},
{
"name": "MetaType",
"desc": "Hive-shared metadatabase type. Valid values:\n<li>EMR_DEFAULT_META: the cluster creates one by default.</li>\n<li>EMR_EXIST_META: the cluster uses the specified EMR-MetaDB instance.</li>\n<li>USER_CUSTOM_META: the cluster uses a custom MetaDB instance.</li>"
},
{
"name": "UnifyMetaInstanceId",
"desc": "EMR-MetaDB instance"
},
{
"name": "MetaDBInfo",
"desc": "Custom MetaDB instance information"
}
],
"desc": "This API is used to create EMR instance."
},
"InquiryPriceCreateInstance": {
"params": [
{
"name": "TimeUnit",
"desc": "Time unit of instance purchase duration. Valid values:\n<li>s: seconds. When `PayMode` is 0, `TimeUnit` can only be `s`.</li>"
},
{
"name": "TimeSpan",
"desc": "Purchase duration of instance, which needs to be used together with `TimeUnit`.\n<li>When `TimeUnit` is `s`, this parameter can only be filled with 3600, indicating a pay-as-you-go instance.</li>\n<li>When `TimeUnit` is `m`, the number entered in this parameter indicates the purchase duration of the monthly-subscription instance; for example, 1 means one month</li>"
},
{
"name": "ResourceSpec",
"desc": "Node specification queried for price."
},
{
"name": "Currency",
"desc": "Currency."
},
{
"name": "PayMode",
"desc": "Instance billing mode. Valid values:\n<li>0: pay-as-you-go.</li>"
},
{
"name": "SupportHA",
"desc": "Whether to enable high availability of node. Valid values:\n<li>0: does not enable high availability of node.</li>\n<li>1: enables high availability of node.</li>"
},
{
"name": "Software",
"desc": "List of deployed components. Different required components need to be selected for different EMR product IDs (i.e., `ProductId`; for specific meanings, please see the `ProductId` field in the input parameter):\n<li>When `ProductId` is 1, the required components include hadoop-2.7.3, knox-1.2.0, and zookeeper-3.4.9</li>\n<li>When `ProductId` is 2, the required components include hadoop-2.7.3, knox-1.2.0, and zookeeper-3.4.9</li>\n<li>When `ProductId` is 4, the required components include hadoop-2.8.4, knox-1.2.0, and zookeeper-3.4.9</li>\n<li>When `ProductId` is 7, the required components include hadoop-3.1.2, knox-1.2.0, and zookeeper-3.4.9</li>"
},
{
"name": "Placement",
"desc": "Instance location. This parameter is used to specify the AZ, project, and other attributes of the instance."
},
{
"name": "VPCSettings",
"desc": "Configuration information of VPC. This parameter is used to specify the VPC ID, subnet ID, etc."
},
{
"name": "MetaType",
"desc": "Hive-shared metadatabase type. Valid values:\n<li>EMR_DEFAULT_META: the cluster creates one by default.</li>\n<li>EMR_EXIST_META: the cluster uses the specified EMR-MetaDB instance.</li>\n<li>USER_CUSTOM_META: the cluster uses a custom MetaDB instance.</li>"
},
{
"name": "UnifyMetaInstanceId",
"desc": "EMR-MetaDB instance"
},
{
"name": "MetaDBInfo",
"desc": "Custom MetaDB instance information"
},
{
"name": "ProductId",
"desc": "Product ID. Different product IDs represent different EMR product versions. Valid values:\n<li>1: EMR v1.3.1.</li>\n<li>2: EMR v2.0.1.</li>\n<li>4: EMR v2.1.0.</li>\n<li>7: EMR v3.0.0.</li>"
}
],
"desc": "This API is used to query price of instance creation."
},
"InquiryPriceScaleOutInstance": {
"params": [
{
"name": "TimeUnit",
"desc": "Time unit of scale-out. Valid values:\n<li>s: seconds. When `PayMode` is 0, `TimeUnit` can only be `s`.</li>"
},
{
"name": "TimeSpan",
"desc": "Duration of scale-out, which needs to be used together with `TimeUnit`.\n<li>When `PayMode` is 0, `TimeSpan` can only be 3,600.</li>"
},
{
"name": "ZoneId",
"desc": "ID of the AZ where an instance resides."
},
{
"name": "PayMode",
"desc": "Instance billing mode. Valid values:\n<li>0: pay-as-you-go.</li>"
},
{
"name": "InstanceId",
"desc": "Instance ID."
},
{
"name": "CoreCount",
"desc": "Number of core nodes added."
},
{
"name": "TaskCount",
"desc": "Number of task nodes added."
},
{
"name": "Currency",
"desc": "Currency."
},
{
"name": "RouterCount",
"desc": "Number of router nodes added."
}
],
"desc": "This API is used to query price of scale-out."
},
"TerminateTasks": {
"params": [
{
"name": "InstanceId",
"desc": "Instance ID."
},
{
"name": "ResourceIds",
"desc": "List of resource IDs of the node to be terminated. The resource ID is in the format of `emr-vm-xxxxxxxx`. A valid resource ID can be queried in the [console](https://console.cloud.tencent.com/emr/static/hardware)."
}
],
"desc": "This API is used to terminate a task node."
},
"TerminateInstance": {
"params": [
{
"name": "InstanceId",
"desc": "Instance ID."
},
{
"name": "ResourceIds",
"desc": "ID of terminated node. This parameter is reserved and does not need to be configured."
}
],
"desc": "This API is used to terminate an EMR instance. It is only supported in the official paid edition of EMR."
}
} | desc = 'emr-2019-01-03'
info = {'ScaleOutInstance': {'params': [{'name': 'TimeUnit', 'desc': 'Time unit of scale-out. Valid values:\n<li>s: seconds. When `PayMode` is 0, `TimeUnit` can only be `s`.</li>\n<li>m: month. When `PayMode` is 1, `TimeUnit` can only be `m`.</li>'}, {'name': 'TimeSpan', 'desc': 'Duration of scale-out, which needs to be used together with `TimeUnit`.'}, {'name': 'InstanceId', 'desc': 'Instance ID.'}, {'name': 'PayMode', 'desc': 'Instance billing mode. Valid values:\n<li>0: pay-as-you-go.</li>'}, {'name': 'ClientToken', 'desc': 'Client token.'}, {'name': 'PreExecutedFileSettings', 'desc': 'Bootstrap script settings.'}, {'name': 'TaskCount', 'desc': 'Number of task nodes added.'}, {'name': 'CoreCount', 'desc': 'Number of core nodes added.'}, {'name': 'UnNecessaryNodeList', 'desc': 'Process not required during scale-out.'}, {'name': 'RouterCount', 'desc': 'Number of router nodes added.'}, {'name': 'SoftDeployInfo', 'desc': 'Deployed service.\n<li>`SoftDeployInfo` and `ServiceNodeInfo` are in the same group and mutually exclusive with `UnNecessaryNodeList`.</li>\n<li>The combination of `SoftDeployInfo` and `ServiceNodeInfo` is recommended.</li>'}, {'name': 'ServiceNodeInfo', 'desc': 'Started process.'}, {'name': 'DisasterRecoverGroupIds', 'desc': 'List of spread placement group IDs. Only one can be specified currently.'}, {'name': 'Tags', 'desc': 'List of tags bound to added nodes.'}, {'name': 'HardwareResourceType', 'desc': 'Resource type selected for expansion. Valid values: host (general CVM resource), pod (resource provided by TKE cluster)'}, {'name': 'PodSpec', 'desc': 'Specified information such as pod specification and source for expansion with pod resources'}], 'desc': 'This API is used to scale out instance.'}, 'DescribeInstances': {'params': [{'name': 'DisplayStrategy', 'desc': 'Cluster filtering policy. Valid values:\n<li>clusterList: queries the list of clusters except terminated ones.</li>\n<li>monitorManage: queries the list of clusters except those that have been terminated, are being created, or failed to be created.</li>\n<li>cloudHardwareManage/componentManage: reserved fields with the same meaning as `monitorManage`.</li>'}, {'name': 'InstanceIds', 'desc': 'Queries by one or more instance IDs in the format of `emr-xxxxxxxx`. For the format of this parameter, please see the `id.N` section in [API Overview](https://intl.cloud.tencent.com/document/api/213/15688). If no instance ID is entered, the list of all instances under this `APPID` will be returned.'}, {'name': 'Offset', 'desc': 'Page number. Default value: 0, indicating the first page.'}, {'name': 'Limit', 'desc': 'Number of returned results per page. Default value: 10. Maximum value: 100'}, {'name': 'ProjectId', 'desc': 'ID of the project to which the instance belongs. This parameter can be obtained from the `projectId` field in the return value of the `DescribeProject` API. If this value is -1, the list of all instances will be returned.'}, {'name': 'OrderField', 'desc': 'Sorting field. Valid values:\n<li>clusterId: sorts by cluster ID.</li>\n<li>addTime: sorts by instance creation time.</li>\n<li>status: sorts by instance status code.</li>'}, {'name': 'Asc', 'desc': 'Sorts according to `OrderField` in ascending or descending order. Valid values:\n<li>0: descending order.</li>\n<li>1: ascending order.</li>Default value: 0.\x07'}], 'desc': 'This API is used to query EMR instances.'}, 'InquiryPriceUpdateInstance': {'params': [{'name': 'TimeUnit', 'desc': 'Time unit of scaling. Valid values:\n<li>s: seconds. When `PayMode` is 0, `TimeUnit` can only be `s`.</li>'}, {'name': 'TimeSpan', 'desc': 'Duration of scaling, which needs to be used together with `TimeUnit`.\n<li>When `PayMode` is 0, `TimeSpan` can only be 3,600.</li>'}, {'name': 'UpdateSpec', 'desc': 'Target node specification.'}, {'name': 'PayMode', 'desc': 'Instance billing mode. Valid values:\n<li>0: pay-as-you-go.</li>'}, {'name': 'Placement', 'desc': 'Instance location. This parameter is used to specify the AZ, project, and other attributes of the instance.'}, {'name': 'Currency', 'desc': 'Currency.'}], 'desc': 'This API is used to query price of scaling.'}, 'DescribeClusterNodes': {'params': [{'name': 'InstanceId', 'desc': 'Cluster instance ID in the format of emr-xxxxxxxx'}, {'name': 'NodeFlag', 'desc': 'Node flag. Valid values:\n<li>all: gets the information of nodes in all types except TencentDB information.</li>\n<li>master: gets master node information.</li>\n<li>core: gets core node information.</li>\n<li>task: gets task node information.</li>\n<li>common: gets common node information.</li>\n<li>router: gets router node information.</li>\n<li>db: gets TencentDB information in normal status.</li>\nNote: only the above values are supported for the time being. Entering other values will cause errors.'}, {'name': 'Offset', 'desc': 'Page number. Default value: 0, indicating the first page.'}, {'name': 'Limit', 'desc': 'Number of returned results per page. Default value: 100. Maximum value: 100'}, {'name': 'HardwareResourceType', 'desc': 'Resource type. Valid values: all, host, pod. Default value: all'}, {'name': 'SearchFields', 'desc': 'Searchable field'}], 'desc': 'This API is used to query the information of a hardware node.'}, 'InquiryPriceRenewInstance': {'params': [{'name': 'TimeSpan', 'desc': 'How long the instance will be renewed for, which needs to be used together with `TimeUnit`.'}, {'name': 'ResourceIds', 'desc': 'List of resource IDs of the node to be renewed. The resource ID is in the format of `emr-vm-xxxxxxxx`. A valid resource ID can be queried in the [console](https://console.cloud.tencent.com/emr/static/hardware).'}, {'name': 'Placement', 'desc': 'Location of the instance. This parameter is used to specify the AZ, project, and other attributes of the instance.'}, {'name': 'PayMode', 'desc': 'Instance billing mode.'}, {'name': 'TimeUnit', 'desc': 'Unit of time for instance renewal.'}, {'name': 'Currency', 'desc': 'Currency.'}], 'desc': 'This API is used to query the price for renewal.'}, 'CreateInstance': {'params': [{'name': 'ProductId', 'desc': 'Product ID. Different product IDs represent different EMR product versions. Valid values:\n<li>1: EMR v1.3.1.</li>\n<li>2: EMR v2.0.1.</li>\n<li>4: EMR v2.1.0.</li>\n<li>7: EMR v3.0.0.</li>'}, {'name': 'VPCSettings', 'desc': 'Configuration information of VPC. This parameter is used to specify the VPC ID, subnet ID, etc.'}, {'name': 'Software', 'desc': 'List of deployed components. Different required components need to be selected for different EMR product IDs (i.e., `ProductId`; for specific meanings, please see the `ProductId` field in the input parameter):\n<li>When `ProductId` is 1, the required components include hadoop-2.7.3, knox-1.2.0, and zookeeper-3.4.9</li>\n<li>When `ProductId` is 2, the required components include hadoop-2.7.3, knox-1.2.0, and zookeeper-3.4.9</li>\n<li>When `ProductId` is 4, the required components include hadoop-2.8.4, knox-1.2.0, and zookeeper-3.4.9</li>\n<li>When `ProductId` is 7, the required components include hadoop-3.1.2, knox-1.2.0, and zookeeper-3.4.9</li>'}, {'name': 'ResourceSpec', 'desc': 'Node resource specification.'}, {'name': 'SupportHA', 'desc': 'Whether to enable high node availability. Valid values:\n<li>0: does not enable high availability of node.</li>\n<li>1: enables high availability of node.</li>'}, {'name': 'InstanceName', 'desc': 'Instance name.\n<li>Length limit: 6-36 characters.</li>\n<li>Only letters, numbers, dashes (-), and underscores (_) are supported.</li>'}, {'name': 'PayMode', 'desc': 'Instance billing mode. Valid values:\n<li>0: pay-as-you-go.</li>'}, {'name': 'Placement', 'desc': 'Instance location. This parameter is used to specify the AZ, project, and other attributes of the instance.'}, {'name': 'TimeSpan', 'desc': 'Purchase duration of instance, which needs to be used together with `TimeUnit`.\n<li>When `TimeUnit` is `s`, this parameter can only be filled with 3600, indicating a pay-as-you-go instance.</li>\n<li>When `TimeUnit` is `m`, the number entered in this parameter indicates the purchase duration of the monthly-subscription instance; for example, 1 means one month</li>'}, {'name': 'TimeUnit', 'desc': 'Time unit of instance purchase duration. Valid values:\n<li>s: seconds. When `PayMode` is 0, `TimeUnit` can only be `s`.</li>\n<li>m: month. When `PayMode` is 1, `TimeUnit` can only be `m`.</li>'}, {'name': 'LoginSettings', 'desc': 'Instance login settings. This parameter allows you to set the login password or key for your purchased node.\n<li>If the key is set, the password will be only used for login to the native component WebUI.</li>\n<li>If the key is not set, the password will be used for login to all purchased nodes and the native component WebUI.</li>'}, {'name': 'COSSettings', 'desc': 'Parameter required for enabling COS access.'}, {'name': 'SgId', 'desc': 'Security group to which an instance belongs in the format of `sg-xxxxxxxx`. This parameter can be obtained from the `SecurityGroupId` field in the return value of the [DescribeSecurityGroups](https://intl.cloud.tencent.com/document/api/215/15808) API.'}, {'name': 'PreExecutedFileSettings', 'desc': 'Bootstrap script settings.'}, {'name': 'AutoRenew', 'desc': 'Whether auto-renewal is enabled. Valid values:\n<li>0: auto-renewal not enabled.</li>\n<li>1: auto-renewal enabled.</li>'}, {'name': 'ClientToken', 'desc': 'Client token.'}, {'name': 'NeedMasterWan', 'desc': 'Whether to enable public IP access for master node. Valid values:\n<li>NEED_MASTER_WAN: enables public IP for master node.</li>\n<li>NOT_NEED_MASTER_WAN: does not enable.</li>Public IP is enabled for master node by default.'}, {'name': 'RemoteLoginAtCreate', 'desc': 'Whether to enable remote public network login, i.e., port 22. When `SgId` is not empty, this parameter does not take effect.'}, {'name': 'CheckSecurity', 'desc': 'Whether to enable secure cluster. 0: no; other values: yes.'}, {'name': 'ExtendFsField', 'desc': 'Accesses to external file system.'}, {'name': 'Tags', 'desc': 'Tag description list. This parameter is used to bind a tag to a resource instance.'}, {'name': 'DisasterRecoverGroupIds', 'desc': 'List of spread placement group IDs. Only one can be specified currently.'}, {'name': 'CbsEncrypt', 'desc': 'CBS disk encryption at the cluster level. 0: not encrypted, 1: encrypted'}, {'name': 'MetaType', 'desc': 'Hive-shared metadatabase type. Valid values:\n<li>EMR_DEFAULT_META: the cluster creates one by default.</li>\n<li>EMR_EXIST_META: the cluster uses the specified EMR-MetaDB instance.</li>\n<li>USER_CUSTOM_META: the cluster uses a custom MetaDB instance.</li>'}, {'name': 'UnifyMetaInstanceId', 'desc': 'EMR-MetaDB instance'}, {'name': 'MetaDBInfo', 'desc': 'Custom MetaDB instance information'}], 'desc': 'This API is used to create EMR instance.'}, 'InquiryPriceCreateInstance': {'params': [{'name': 'TimeUnit', 'desc': 'Time unit of instance purchase duration. Valid values:\n<li>s: seconds. When `PayMode` is 0, `TimeUnit` can only be `s`.</li>'}, {'name': 'TimeSpan', 'desc': 'Purchase duration of instance, which needs to be used together with `TimeUnit`.\n<li>When `TimeUnit` is `s`, this parameter can only be filled with 3600, indicating a pay-as-you-go instance.</li>\n<li>When `TimeUnit` is `m`, the number entered in this parameter indicates the purchase duration of the monthly-subscription instance; for example, 1 means one month</li>'}, {'name': 'ResourceSpec', 'desc': 'Node specification queried for price.'}, {'name': 'Currency', 'desc': 'Currency.'}, {'name': 'PayMode', 'desc': 'Instance billing mode. Valid values:\n<li>0: pay-as-you-go.</li>'}, {'name': 'SupportHA', 'desc': 'Whether to enable high availability of node. Valid values:\n<li>0: does not enable high availability of node.</li>\n<li>1: enables high availability of node.</li>'}, {'name': 'Software', 'desc': 'List of deployed components. Different required components need to be selected for different EMR product IDs (i.e., `ProductId`; for specific meanings, please see the `ProductId` field in the input parameter):\n<li>When `ProductId` is 1, the required components include hadoop-2.7.3, knox-1.2.0, and zookeeper-3.4.9</li>\n<li>When `ProductId` is 2, the required components include hadoop-2.7.3, knox-1.2.0, and zookeeper-3.4.9</li>\n<li>When `ProductId` is 4, the required components include hadoop-2.8.4, knox-1.2.0, and zookeeper-3.4.9</li>\n<li>When `ProductId` is 7, the required components include hadoop-3.1.2, knox-1.2.0, and zookeeper-3.4.9</li>'}, {'name': 'Placement', 'desc': 'Instance location. This parameter is used to specify the AZ, project, and other attributes of the instance.'}, {'name': 'VPCSettings', 'desc': 'Configuration information of VPC. This parameter is used to specify the VPC ID, subnet ID, etc.'}, {'name': 'MetaType', 'desc': 'Hive-shared metadatabase type. Valid values:\n<li>EMR_DEFAULT_META: the cluster creates one by default.</li>\n<li>EMR_EXIST_META: the cluster uses the specified EMR-MetaDB instance.</li>\n<li>USER_CUSTOM_META: the cluster uses a custom MetaDB instance.</li>'}, {'name': 'UnifyMetaInstanceId', 'desc': 'EMR-MetaDB instance'}, {'name': 'MetaDBInfo', 'desc': 'Custom MetaDB instance information'}, {'name': 'ProductId', 'desc': 'Product ID. Different product IDs represent different EMR product versions. Valid values:\n<li>1: EMR v1.3.1.</li>\n<li>2: EMR v2.0.1.</li>\n<li>4: EMR v2.1.0.</li>\n<li>7: EMR v3.0.0.</li>'}], 'desc': 'This API is used to query price of instance creation.'}, 'InquiryPriceScaleOutInstance': {'params': [{'name': 'TimeUnit', 'desc': 'Time unit of scale-out. Valid values:\n<li>s: seconds. When `PayMode` is 0, `TimeUnit` can only be `s`.</li>'}, {'name': 'TimeSpan', 'desc': 'Duration of scale-out, which needs to be used together with `TimeUnit`.\n<li>When `PayMode` is 0, `TimeSpan` can only be 3,600.</li>'}, {'name': 'ZoneId', 'desc': 'ID of the AZ where an instance resides.'}, {'name': 'PayMode', 'desc': 'Instance billing mode. Valid values:\n<li>0: pay-as-you-go.</li>'}, {'name': 'InstanceId', 'desc': 'Instance ID.'}, {'name': 'CoreCount', 'desc': 'Number of core nodes added.'}, {'name': 'TaskCount', 'desc': 'Number of task nodes added.'}, {'name': 'Currency', 'desc': 'Currency.'}, {'name': 'RouterCount', 'desc': 'Number of router nodes added.'}], 'desc': 'This API is used to query price of scale-out.'}, 'TerminateTasks': {'params': [{'name': 'InstanceId', 'desc': 'Instance ID.'}, {'name': 'ResourceIds', 'desc': 'List of resource IDs of the node to be terminated. The resource ID is in the format of `emr-vm-xxxxxxxx`. A valid resource ID can be queried in the [console](https://console.cloud.tencent.com/emr/static/hardware).'}], 'desc': 'This API is used to terminate a task node.'}, 'TerminateInstance': {'params': [{'name': 'InstanceId', 'desc': 'Instance ID.'}, {'name': 'ResourceIds', 'desc': 'ID of terminated node. This parameter is reserved and does not need to be configured.'}], 'desc': 'This API is used to terminate an EMR instance. It is only supported in the official paid edition of EMR.'}} |
neutral_site_fields = ['Azteca Stadium', 'Estadio Azteca', 'Tottenham Hotspur',
'Tottenham Hotspur Stadium', 'Twickenham', 'Twickenham Stadium', 'Wembley',
'Wembley Stadium']
standardized_field_names = {
'Arrowhead Stadium': 'Arrowhead Stadium',
'AT&T': 'AT&T Stadium',
'AT&T Stadium': 'AT&T Stadium',
'Bank of America': 'Bank of America Stadium',
'Bank of America Stadium': 'Bank of America Stadium',
'Broncos Stadium at Mile High': 'Broncos Stadium',
'Broncos Stadium At Mile High': 'Broncos Stadium',
'Empower Field at Mile High': 'Broncos Stadium',
'Sports Authority Field': 'Broncos Stadium',
'Sports Authority Field at Mile High': 'Broncos Stadium',
'CenturyField': 'CenturyLink Field',
'CenturyLink': 'CenturyLink Field',
'CenturyLink Field': 'CenturyLink Field',
'Dignity Health Sports Park': 'Dignity Health Sports Park',
'StubHub Center': 'Dignity Health Sports Park',
'Edward Jones Dome': 'Edward Jones Dome',
'FedExField': 'FedExField',
'FedexField': 'FedExField',
'First Energy Stadium': 'FirstEnergy Stadium',
'FirstEnergy': 'FirstEnergy Stadium',
'FirstEnergy Stadium': 'FirstEnergy Stadium',
'FirstEnergyStadium': 'FirstEnergy Stadium',
'Ford Field': 'Ford Field',
'Georgia Dome': 'Georgia Dome',
'Gillette Stadium': 'Gillette Stadium',
'Hard Rock Stadium': 'Hard Rock Stadium',
'Sun Life Stadium': 'Hard Rock Stadium',
'Heinz Field': 'Heinz Field',
'Lambeau Field': 'Lambeau Field',
'Lambeau field': 'Lambeau Field',
"Levi's Stadium": "Levi's Stadium",
'Lincoln Finacial Field': 'Lincoln Financial Field',
'Lincoln Financial Field': 'Lincoln Financial Field',
'Los Angeles Memorial Coliesum': 'Los Angeles Memorial Coliseum',
'Los Angeles Memorial Coliseum': 'Los Angeles Memorial Coliseum',
'Lucas Oil': 'Lucas Oil Stadium',
'Lucas Oil Stadium': 'Lucas Oil Stadium',
'M & T Bank Stadium': 'M&T Bank Stadium',
'M&T Bank Stadium': 'M&T Bank Stadium',
'M&T Stadium': 'M&T Bank Stadium',
'Mercedes Benz-Superdome': 'Mercedes-Benz Superdome',
'Mercedes-Benz Dome': 'Mercedes-Benz Superdome',
'Mercedes-Benz Superdome': 'Mercedes-Benz Superdome',
'Mercedes-Benz Stadium': 'Mercedes-Benz Stadium',
'MetLife': 'MetLife Stadium',
'MetLife Stadium': 'MetLife Stadium',
'Metlife Stadium': 'MetLife Stadium',
'New Era Field': 'New Era Field',
'Ralph Wilson Stadium': 'New Era Field',
'Nissan Stadium': 'Nissan Stadium',
'NRG': 'NRG Stadium',
'NRG Stadiium': 'NRG Stadium',
'NRG Stadium': 'NRG Stadium',
'O.co Coliseum': 'Oakland-Alameda County Coliseum',
'Oakland Alameda County Coliseum': 'Oakland-Alameda County Coliseum',
'Oakland Alameda-County Coliseum': 'Oakland-Alameda County Coliseum',
'Oakland-Alameda County Coliseum': 'Oakland-Alameda County Coliseum',
'Paul Brown Stadium': 'Paul Brown Stadium',
'Paul Brown Stdium': 'Paul Brown Stadium',
'Qualcomm Stadium': 'Qualcomm Stadium',
'Raymond James Stadium': 'Raymond James Stadium',
'Soldier Field': 'Soldier Field',
'Solider Field': 'Soldier Field',
'Solidier Field': 'Soldier Field',
'State Farm Stadium': 'State Farm Stadium',
'Univerity of Phoenix Stadium': 'State Farm Stadium',
'University of Phoeinx Stadium': 'State Farm Stadium',
'University of Phoenix': 'State Farm Stadium',
'University of Phoenix Stadium': 'State Farm Stadium',
'Unviversity of Phoenix Stadium': 'State Farm Stadium',
'TCF Bank Stadium': 'TCF Bank Stadium',
'TIAA Bank Field': 'TIAA Bank Field',
'EverBank Field': 'TIAA Bank Field',
'Everbank Field': 'TIAA Bank Field',
'U.S. Bank Stadium': 'U.S. Bank Stadium',
'US Bank Stadium': 'U.S. Bank Stadium'
}
stadium_capacities = {
'Arrowhead Stadium': 76416,
'AT&T Stadium': 105000,
'Bank of America Stadium': 75523,
'Broncos Stadium': 76125,
'CenturyLink Field': 68740,
'Dignity Health Sports Park': 27000,
'Edward Jones Dome': 67277,
'FedExField': 82000,
'FirstEnergy Stadium': 67895,
'Ford Field': 65000,
'Georgia Dome': 71228,
'Gillette Stadium': 65878,
'Hard Rock Stadium': 64767,
'Heinz Field': 68400,
'Lambeau Field': 81441,
"Levi's Stadium": 68500,
'Lincoln Financial Field': 69796,
'Los Angeles Memorial Coliseum': 77500,
'Lucas Oil Stadium': 67000,
'M&T Bank Stadium': 71008,
'Mercedes-Benz Superdome': 73208,
'Mercedes-Benz Stadium': 71000,
'MetLife Stadium': 82500,
'New Era Field': 71608,
'Nissan Stadium': 69143,
'NRG Stadium': 72220,
'Oakland-Alameda County Coliseum': 56057,
'Paul Brown Stadium': 65515,
'Qualcomm Stadium': 70561,
'Raymond James Stadium': 65618,
'Soldier Field': 61500,
'State Farm Stadium': 63400,
'TCF Bank Stadium': 50805,
'TIAA Bank Field': 67814,
'U.S. Bank Stadium': 66655
} | neutral_site_fields = ['Azteca Stadium', 'Estadio Azteca', 'Tottenham Hotspur', 'Tottenham Hotspur Stadium', 'Twickenham', 'Twickenham Stadium', 'Wembley', 'Wembley Stadium']
standardized_field_names = {'Arrowhead Stadium': 'Arrowhead Stadium', 'AT&T': 'AT&T Stadium', 'AT&T Stadium': 'AT&T Stadium', 'Bank of America': 'Bank of America Stadium', 'Bank of America Stadium': 'Bank of America Stadium', 'Broncos Stadium at Mile High': 'Broncos Stadium', 'Broncos Stadium At Mile High': 'Broncos Stadium', 'Empower Field at Mile High': 'Broncos Stadium', 'Sports Authority Field': 'Broncos Stadium', 'Sports Authority Field at Mile High': 'Broncos Stadium', 'CenturyField': 'CenturyLink Field', 'CenturyLink': 'CenturyLink Field', 'CenturyLink Field': 'CenturyLink Field', 'Dignity Health Sports Park': 'Dignity Health Sports Park', 'StubHub Center': 'Dignity Health Sports Park', 'Edward Jones Dome': 'Edward Jones Dome', 'FedExField': 'FedExField', 'FedexField': 'FedExField', 'First Energy Stadium': 'FirstEnergy Stadium', 'FirstEnergy': 'FirstEnergy Stadium', 'FirstEnergy Stadium': 'FirstEnergy Stadium', 'FirstEnergyStadium': 'FirstEnergy Stadium', 'Ford Field': 'Ford Field', 'Georgia Dome': 'Georgia Dome', 'Gillette Stadium': 'Gillette Stadium', 'Hard Rock Stadium': 'Hard Rock Stadium', 'Sun Life Stadium': 'Hard Rock Stadium', 'Heinz Field': 'Heinz Field', 'Lambeau Field': 'Lambeau Field', 'Lambeau field': 'Lambeau Field', "Levi's Stadium": "Levi's Stadium", 'Lincoln Finacial Field': 'Lincoln Financial Field', 'Lincoln Financial Field': 'Lincoln Financial Field', 'Los Angeles Memorial Coliesum': 'Los Angeles Memorial Coliseum', 'Los Angeles Memorial Coliseum': 'Los Angeles Memorial Coliseum', 'Lucas Oil': 'Lucas Oil Stadium', 'Lucas Oil Stadium': 'Lucas Oil Stadium', 'M & T Bank Stadium': 'M&T Bank Stadium', 'M&T Bank Stadium': 'M&T Bank Stadium', 'M&T Stadium': 'M&T Bank Stadium', 'Mercedes Benz-Superdome': 'Mercedes-Benz Superdome', 'Mercedes-Benz Dome': 'Mercedes-Benz Superdome', 'Mercedes-Benz Superdome': 'Mercedes-Benz Superdome', 'Mercedes-Benz Stadium': 'Mercedes-Benz Stadium', 'MetLife': 'MetLife Stadium', 'MetLife Stadium': 'MetLife Stadium', 'Metlife Stadium': 'MetLife Stadium', 'New Era Field': 'New Era Field', 'Ralph Wilson Stadium': 'New Era Field', 'Nissan Stadium': 'Nissan Stadium', 'NRG': 'NRG Stadium', 'NRG Stadiium': 'NRG Stadium', 'NRG Stadium': 'NRG Stadium', 'O.co Coliseum': 'Oakland-Alameda County Coliseum', 'Oakland Alameda County Coliseum': 'Oakland-Alameda County Coliseum', 'Oakland Alameda-County Coliseum': 'Oakland-Alameda County Coliseum', 'Oakland-Alameda County Coliseum': 'Oakland-Alameda County Coliseum', 'Paul Brown Stadium': 'Paul Brown Stadium', 'Paul Brown Stdium': 'Paul Brown Stadium', 'Qualcomm Stadium': 'Qualcomm Stadium', 'Raymond James Stadium': 'Raymond James Stadium', 'Soldier Field': 'Soldier Field', 'Solider Field': 'Soldier Field', 'Solidier Field': 'Soldier Field', 'State Farm Stadium': 'State Farm Stadium', 'Univerity of Phoenix Stadium': 'State Farm Stadium', 'University of Phoeinx Stadium': 'State Farm Stadium', 'University of Phoenix': 'State Farm Stadium', 'University of Phoenix Stadium': 'State Farm Stadium', 'Unviversity of Phoenix Stadium': 'State Farm Stadium', 'TCF Bank Stadium': 'TCF Bank Stadium', 'TIAA Bank Field': 'TIAA Bank Field', 'EverBank Field': 'TIAA Bank Field', 'Everbank Field': 'TIAA Bank Field', 'U.S. Bank Stadium': 'U.S. Bank Stadium', 'US Bank Stadium': 'U.S. Bank Stadium'}
stadium_capacities = {'Arrowhead Stadium': 76416, 'AT&T Stadium': 105000, 'Bank of America Stadium': 75523, 'Broncos Stadium': 76125, 'CenturyLink Field': 68740, 'Dignity Health Sports Park': 27000, 'Edward Jones Dome': 67277, 'FedExField': 82000, 'FirstEnergy Stadium': 67895, 'Ford Field': 65000, 'Georgia Dome': 71228, 'Gillette Stadium': 65878, 'Hard Rock Stadium': 64767, 'Heinz Field': 68400, 'Lambeau Field': 81441, "Levi's Stadium": 68500, 'Lincoln Financial Field': 69796, 'Los Angeles Memorial Coliseum': 77500, 'Lucas Oil Stadium': 67000, 'M&T Bank Stadium': 71008, 'Mercedes-Benz Superdome': 73208, 'Mercedes-Benz Stadium': 71000, 'MetLife Stadium': 82500, 'New Era Field': 71608, 'Nissan Stadium': 69143, 'NRG Stadium': 72220, 'Oakland-Alameda County Coliseum': 56057, 'Paul Brown Stadium': 65515, 'Qualcomm Stadium': 70561, 'Raymond James Stadium': 65618, 'Soldier Field': 61500, 'State Farm Stadium': 63400, 'TCF Bank Stadium': 50805, 'TIAA Bank Field': 67814, 'U.S. Bank Stadium': 66655} |
privKey = ""
with open ('privKey.txt', 'rt') as myfile: # Open file lorem.txt for reading text
for myline in myfile: # For each line, read it to a string
print(myline)
if myline == "Your ETH privkey derived from seed:":
print(myline) #Doesnt do anything, just holds that line
else:
privKey = myline
print(privKey) #creates new doc with private key
f = open("privKey.txt", "w")
f.write(privKey)
f.close() | priv_key = ''
with open('privKey.txt', 'rt') as myfile:
for myline in myfile:
print(myline)
if myline == 'Your ETH privkey derived from seed:':
print(myline)
else:
priv_key = myline
print(privKey)
f = open('privKey.txt', 'w')
f.write(privKey)
f.close() |
class MinisyncError(Exception):
pass
class PermissionError(MinisyncError):
pass
| class Minisyncerror(Exception):
pass
class Permissionerror(MinisyncError):
pass |
def result(x1, y1, x2, y2):
num_list = [x1, y1, x2, y2]
for _ in range(2):
num_list.remove(max(num_list))
f = num_list[0]
g = num_list[1]
print(f"({f}, {g})")
print(f"({', '.join(num_list)})")
a = int(input())
b = int(input())
c = int(input())
d = int(input())
result(a, b, c, d)
| def result(x1, y1, x2, y2):
num_list = [x1, y1, x2, y2]
for _ in range(2):
num_list.remove(max(num_list))
f = num_list[0]
g = num_list[1]
print(f'({f}, {g})')
print(f"({', '.join(num_list)})")
a = int(input())
b = int(input())
c = int(input())
d = int(input())
result(a, b, c, d) |
class Number:
def __init__(self, num):
self.num = num
def __add__(self, num2):
print("Lets add")
return self.num + num2.num
def __mul__(self, num2):
print("Lets multiply")
return self.num * num2.num
n1 = Number(4)
n2 = Number(6)
sum = n1 + n2
mul = n1 * n2
print(sum)
print(mul) | class Number:
def __init__(self, num):
self.num = num
def __add__(self, num2):
print('Lets add')
return self.num + num2.num
def __mul__(self, num2):
print('Lets multiply')
return self.num * num2.num
n1 = number(4)
n2 = number(6)
sum = n1 + n2
mul = n1 * n2
print(sum)
print(mul) |
# Module : kilo_to_mile_converter
# Description : This program program asks
# the user to enter a distance in kilometers,
# and then converts that distance to miles with this formula
# Miles = Kilometers * 0.6214
# Programmer : William Kpabitey Kwabla
# Date : 05/04/16
# Defining the main function
def main():
# Calling the intro function
intro()
# Asking user for distance in kilometers
kilometers = float(input("Please Enter Distance in Kilometers: "))
print()
# Calling the kilometer to Mile function and assigning user input as argument.
kilo_to_mile(kilometers)
# Defining th intro function
def intro():
print("This program program asks")
print("the user to enter a distance in kilometers,")
print("and then converts that distance to miles with this formula")
print("Miles = Kilometers * 0.6214")
print()
# Defining the kilometer to Mile function
def kilo_to_mile(kilo):
# Converting distance from Kilometers to Miles
miles = kilo * 0.6214
# Displaying the distance in miles
print("The distance is",miles,"miles" )
# Calling the main function
main()
| def main():
intro()
kilometers = float(input('Please Enter Distance in Kilometers: '))
print()
kilo_to_mile(kilometers)
def intro():
print('This program program asks')
print('the user to enter a distance in kilometers,')
print('and then converts that distance to miles with this formula')
print('Miles = Kilometers * 0.6214')
print()
def kilo_to_mile(kilo):
miles = kilo * 0.6214
print('The distance is', miles, 'miles')
main() |
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def invertTree(self, root: TreeNode) -> TreeNode:
self.rec(root)
return root
def rec(self, root):
if root is None:
return
if root.left is None and root.right is None:
return
self.rec(root.left)
self.rec(root.right)
lft=root.left
rght=root.right
root.left=rght
root.right=lft | class Solution:
def invert_tree(self, root: TreeNode) -> TreeNode:
self.rec(root)
return root
def rec(self, root):
if root is None:
return
if root.left is None and root.right is None:
return
self.rec(root.left)
self.rec(root.right)
lft = root.left
rght = root.right
root.left = rght
root.right = lft |
# n ==> Size of circle
# m ==> Number of items
# k ==> Initial position
def lastPosition(n, m, k):
if (m<=n-k+1):
return m+k-1
m=m-(n-k+1)
if(m%n==0):
return n
else:
return m%n
# Driver code
n = 5
m = 8
k = 2
ans=lastPosition(n, m, k)
print(ans) | def last_position(n, m, k):
if m <= n - k + 1:
return m + k - 1
m = m - (n - k + 1)
if m % n == 0:
return n
else:
return m % n
n = 5
m = 8
k = 2
ans = last_position(n, m, k)
print(ans) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.