content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
# General
NAME = 'router'
VERSION = '0.0.0'
# Files
RIDERS_FILE = '{input_dir}/riders.json'
VEHICLES_FILE = '{input_dir}/vehicles.json'
DEPOTS_FILE = '{input_dir}/depots.json'
PARAMS_FILE = '{input_dir}/params.json'
ROUTES_FILE = '{output_dir}/routes.json'
| name = 'router'
version = '0.0.0'
riders_file = '{input_dir}/riders.json'
vehicles_file = '{input_dir}/vehicles.json'
depots_file = '{input_dir}/depots.json'
params_file = '{input_dir}/params.json'
routes_file = '{output_dir}/routes.json' |
class Condition:
COMPARATOR_FUNCS = {
">=": lambda x, y: x >= y,
"<=": lambda x, y: x <= y,
">": lambda x, y: x > y,
"<": lambda x, y: x < y,
"=": lambda x, y: x == y,
"!=": lambda x, y: not x == y
}
def __init__(self, data_spec: str, value, comparator):
"""
Initialize a condition that will be checked for allowed transitions
:param data_spec: a string indicating the path to follow through the data
possible values:
- "." - check the data object directly
- "0" - check the 0th element of the data
- "foo" - check the attr foo of the data
- "foo.bar" - check attr bar of attr foo of the data
- "foo.0" - check the 0th element of attr foo of the data
- etc.
:param value: the value to which the data should be compared
:param comparator: the comparison operation to compare the value to the data
possible values: ">=", "<=", ">", "<", "=", a function
"""
self.data_spec = [elem for elem in data_spec.split('.') if elem != '']
self.value = value
self.comparator = self.COMPARATOR_FUNCS.get(comparator, None)
if not self.comparator:
self.comparator = comparator
def check_condition(self, data):
"""
Check if the condition is satisfied by the data, subject to the element
obtained by following the data spec
:param data: Any object
"""
data_element = self._extract_data(data, self.data_spec)
return self.comparator(data_element, self.value)
@classmethod
def _extract_data(cls, data, spec):
"""
Recursively follow the specified path until the desired object is obtained
:param data:
:param spec:
:return:
"""
if not spec:
return data
for i, item in enumerate(spec):
if item.isdigit():
idx = int(item)
return cls._extract_data(data[idx], spec[i+1:])
else:
if isinstance(data, dict):
return cls._extract_data(data[item], spec[i+1:])
else:
return cls._extract_data(getattr(data, item), spec[i+1:])
| class Condition:
comparator_funcs = {'>=': lambda x, y: x >= y, '<=': lambda x, y: x <= y, '>': lambda x, y: x > y, '<': lambda x, y: x < y, '=': lambda x, y: x == y, '!=': lambda x, y: not x == y}
def __init__(self, data_spec: str, value, comparator):
"""
Initialize a condition that will be checked for allowed transitions
:param data_spec: a string indicating the path to follow through the data
possible values:
- "." - check the data object directly
- "0" - check the 0th element of the data
- "foo" - check the attr foo of the data
- "foo.bar" - check attr bar of attr foo of the data
- "foo.0" - check the 0th element of attr foo of the data
- etc.
:param value: the value to which the data should be compared
:param comparator: the comparison operation to compare the value to the data
possible values: ">=", "<=", ">", "<", "=", a function
"""
self.data_spec = [elem for elem in data_spec.split('.') if elem != '']
self.value = value
self.comparator = self.COMPARATOR_FUNCS.get(comparator, None)
if not self.comparator:
self.comparator = comparator
def check_condition(self, data):
"""
Check if the condition is satisfied by the data, subject to the element
obtained by following the data spec
:param data: Any object
"""
data_element = self._extract_data(data, self.data_spec)
return self.comparator(data_element, self.value)
@classmethod
def _extract_data(cls, data, spec):
"""
Recursively follow the specified path until the desired object is obtained
:param data:
:param spec:
:return:
"""
if not spec:
return data
for (i, item) in enumerate(spec):
if item.isdigit():
idx = int(item)
return cls._extract_data(data[idx], spec[i + 1:])
elif isinstance(data, dict):
return cls._extract_data(data[item], spec[i + 1:])
else:
return cls._extract_data(getattr(data, item), spec[i + 1:]) |
# Computes the amount of days of a number of years
years = int(input("years : "))
print(f"\ndays : {years * 365}")
| years = int(input('years : '))
print(f'\ndays : {years * 365}') |
#script to count digits in a given no.
print("enter the value of n")
n=int(input())
count=0
while(n!=0):
n=n//10
count+=1
print(count)
| print('enter the value of n')
n = int(input())
count = 0
while n != 0:
n = n // 10
count += 1
print(count) |
def get_index(l1, l2):
first = min(l1, l2)
second = max(l1, l2)
return str(int( 26*(first-1) + second - first - (first**2-first)/2 ))
f = open('./1-1000.txt', 'r')
freq_words = f.read().splitlines()
f.close()
frequencies = list(map(lambda x: int(x.split(',')[0]), freq_words))
words = list(map(lambda x: x.split(',')[1], freq_words))
constraints = []
index = 0
for i in range(0, len(words) - 1):
# go through the letters of the words
first_word_letters = [ord(words[i][l]) - 97 for l in
range(len(words[i]))]
first_word_badness = 10000/frequencies[i]
for j in range(i + 1, len(words)):
if len(words[i]) != len(words[j]):
continue
# we could totally memoize the below, but whatever
second_word_letters = [ord(words[j][l]) - 97 for l in
range(len(words[j]))]
second_word_badness = 10000/frequencies[j]
match_summands = [("letter_keys_match[" + get_index(fwli + 1, swli + 1)
+ "]") if fwli != swli else "1" for (fwli, swli) in zip(first_word_letters,
second_word_letters)]
badness = min(first_word_badness, second_word_badness)
constraint_string = ("constraint pair_badness[" + str(index + 1) + "] = if " + "+".join(match_summands) + " == " + \
str(len(first_word_letters)) + " then " + str(int(badness)) + " else 0 endif;")
constraints.append(constraint_string)
index += 1
f = open('./constraints.mzn', 'w')
f.write("""include "globals.mzn";
array[1..26] of var 0..7: letter_keys;
array[1..325] of var bool: letter_keys_match;
array[1.."""+str(index)+"""] of var 0..10000: pair_badness;
constraint forall (letter1 in 1..25, letter2 in (letter1+1)..26) (
let {
int: index = 26 * (letter1 - 1) + letter2 - letter1 - (letter1*letter1 - letter1) div 2 % convert from 2d alphabet index (upper right triangle) to 1d index
} in
letter_keys_match[index] = (letter_keys[letter1] == letter_keys[letter2])
);
constraint global_cardinality_low_up(letter_keys, [0, 1, 2, 3, 4, 5, 6, 7],
[3, 3, 3, 3, 3, 3, 3, 3], [4, 4, 4, 4, 4, 4, 4, 4]);
constraint forall (letter in 1..8) (
letter_keys[letter] <= letter - 1
);
constraint all_different([letter_keys[k] | k in {1,5,9,15,21}]);
constraint all_different([letter_keys[k] | k in {7,12}]); % gl
constraint all_different([letter_keys[k] | k in {13,12}]); % ml
constraint all_different([letter_keys[k] | k in {13,8}]);
constraint all_different([letter_keys[k] | k in {7,8}]);
constraint all_different([letter_keys[k] | k in {13,14}]);
constraint all_different([letter_keys[k] | k in {16,19}]);
constraint all_different([letter_keys[k] | k in {18,19}]);
constraint all_different([letter_keys[k] | k in {14,15}]);
constraint all_different([letter_keys[k] | k in {7,9}]);
constraint all_different([letter_keys[k] | k in {5,6}]);
constraint all_different([letter_keys[k] | k in {5,18}]);
constraint all_different([letter_keys[k] | k in {12,20}]);
constraint all_different([letter_keys[k] | k in {7,19}]);
constraint all_different([letter_keys[k] | k in {6,20}]);
constraint all_different([letter_keys[k] | k in {13,18}]);
constraint forall (letter in 2..26) (
let {
var int: maxkey = max([letter_keys[k] | k in 1..(letter-1)]),
} in
letter_keys[letter] <= maxkey + 1
);
solve minimize sum(pair_badness); % :: bool_search(letter_keys_match, occurrence, indomain_min, complete);
output([show(letter_keys)]);
""")
f.write("\n".join(constraints))
f.close()
| def get_index(l1, l2):
first = min(l1, l2)
second = max(l1, l2)
return str(int(26 * (first - 1) + second - first - (first ** 2 - first) / 2))
f = open('./1-1000.txt', 'r')
freq_words = f.read().splitlines()
f.close()
frequencies = list(map(lambda x: int(x.split(',')[0]), freq_words))
words = list(map(lambda x: x.split(',')[1], freq_words))
constraints = []
index = 0
for i in range(0, len(words) - 1):
first_word_letters = [ord(words[i][l]) - 97 for l in range(len(words[i]))]
first_word_badness = 10000 / frequencies[i]
for j in range(i + 1, len(words)):
if len(words[i]) != len(words[j]):
continue
second_word_letters = [ord(words[j][l]) - 97 for l in range(len(words[j]))]
second_word_badness = 10000 / frequencies[j]
match_summands = ['letter_keys_match[' + get_index(fwli + 1, swli + 1) + ']' if fwli != swli else '1' for (fwli, swli) in zip(first_word_letters, second_word_letters)]
badness = min(first_word_badness, second_word_badness)
constraint_string = 'constraint pair_badness[' + str(index + 1) + '] = if ' + '+'.join(match_summands) + ' == ' + str(len(first_word_letters)) + ' then ' + str(int(badness)) + ' else 0 endif;'
constraints.append(constraint_string)
index += 1
f = open('./constraints.mzn', 'w')
f.write('include "globals.mzn";\narray[1..26] of var 0..7: letter_keys;\narray[1..325] of var bool: letter_keys_match;\narray[1..' + str(index) + '] of var 0..10000: pair_badness;\n\nconstraint forall (letter1 in 1..25, letter2 in (letter1+1)..26) (\n let {\n int: index = 26 * (letter1 - 1) + letter2 - letter1 - (letter1*letter1 - letter1) div 2 % convert from 2d alphabet index (upper right triangle) to 1d index\n } in \n letter_keys_match[index] = (letter_keys[letter1] == letter_keys[letter2])\n);\n\nconstraint global_cardinality_low_up(letter_keys, [0, 1, 2, 3, 4, 5, 6, 7],\n[3, 3, 3, 3, 3, 3, 3, 3], [4, 4, 4, 4, 4, 4, 4, 4]);\n\nconstraint forall (letter in 1..8) (\n letter_keys[letter] <= letter - 1\n);\n\nconstraint all_different([letter_keys[k] | k in {1,5,9,15,21}]);\nconstraint all_different([letter_keys[k] | k in {7,12}]); % gl\nconstraint all_different([letter_keys[k] | k in {13,12}]); % ml\nconstraint all_different([letter_keys[k] | k in {13,8}]); \nconstraint all_different([letter_keys[k] | k in {7,8}]); \nconstraint all_different([letter_keys[k] | k in {13,14}]); \nconstraint all_different([letter_keys[k] | k in {16,19}]); \nconstraint all_different([letter_keys[k] | k in {18,19}]); \nconstraint all_different([letter_keys[k] | k in {14,15}]); \nconstraint all_different([letter_keys[k] | k in {7,9}]); \nconstraint all_different([letter_keys[k] | k in {5,6}]); \nconstraint all_different([letter_keys[k] | k in {5,18}]); \nconstraint all_different([letter_keys[k] | k in {12,20}]); \nconstraint all_different([letter_keys[k] | k in {7,19}]); \nconstraint all_different([letter_keys[k] | k in {6,20}]); \nconstraint all_different([letter_keys[k] | k in {13,18}]); \n\nconstraint forall (letter in 2..26) (\n let {\n var int: maxkey = max([letter_keys[k] | k in 1..(letter-1)]),\n } in \n letter_keys[letter] <= maxkey + 1\n);\n\nsolve minimize sum(pair_badness); % :: bool_search(letter_keys_match, occurrence, indomain_min, complete);\noutput([show(letter_keys)]);\n')
f.write('\n'.join(constraints))
f.close() |
start_rule_qualified_type = "Lua_construct.block"
def rename_type(x: str):
if x[0].isupper():
return x.capitalize()
if x == "token":
return "tbnf_token"
return x
def rename_var(x: str):
if x[0].isupper():
return "mk_" + x
return x
| start_rule_qualified_type = 'Lua_construct.block'
def rename_type(x: str):
if x[0].isupper():
return x.capitalize()
if x == 'token':
return 'tbnf_token'
return x
def rename_var(x: str):
if x[0].isupper():
return 'mk_' + x
return x |
"""
Leetcode #62
"""
class Solution:
count = 0
def uniquePaths(self, m: int, n: int) -> int:
if not m:
return n
if not n:
return m
matrix = [[1 for x in range(n)] for x in range(m)]
self.count = 0 # reset counter
def helper(a, b):
if a == m or b == n:
self.count = self.count + 1
return
for path in ["right", "down"]:
if path == "right":
helper(a+1, b)
if path == "down":
helper(a, b+1)
helper(1, 1)
return self.count
def uniquePaths_DP(self, m: int, n: int) -> int:
if not m:
return n
if not n:
return m
matrix = [[0 for x in range(n)] for x in range(m)]
# set element in first column to 1
# as there is only 1 way to reach them
for i in range(n):
matrix[0][i] = 1
# set element in first row to 1
# as there is only 1 way to reach them
for i in range(m):
matrix[i][0] = 1
# expand like we're increasing m and n
for i in range(1, m):
for j in range(1, n):
# only way to reach current cell is from either up or left
matrix[i][j] = matrix[i-1][j] + matrix[i][j-1]
return matrix[-1][-1]
if __name__ == "__main__":
solution = Solution()
assert solution.uniquePaths(3, 2) == 3
assert solution.uniquePaths(7, 3) == 28
assert solution.uniquePaths_DP(3, 2) == 3
assert solution.uniquePaths_DP(7, 3) == 28
| """
Leetcode #62
"""
class Solution:
count = 0
def unique_paths(self, m: int, n: int) -> int:
if not m:
return n
if not n:
return m
matrix = [[1 for x in range(n)] for x in range(m)]
self.count = 0
def helper(a, b):
if a == m or b == n:
self.count = self.count + 1
return
for path in ['right', 'down']:
if path == 'right':
helper(a + 1, b)
if path == 'down':
helper(a, b + 1)
helper(1, 1)
return self.count
def unique_paths_dp(self, m: int, n: int) -> int:
if not m:
return n
if not n:
return m
matrix = [[0 for x in range(n)] for x in range(m)]
for i in range(n):
matrix[0][i] = 1
for i in range(m):
matrix[i][0] = 1
for i in range(1, m):
for j in range(1, n):
matrix[i][j] = matrix[i - 1][j] + matrix[i][j - 1]
return matrix[-1][-1]
if __name__ == '__main__':
solution = solution()
assert solution.uniquePaths(3, 2) == 3
assert solution.uniquePaths(7, 3) == 28
assert solution.uniquePaths_DP(3, 2) == 3
assert solution.uniquePaths_DP(7, 3) == 28 |
class Item(object):
def __init__(self, item: dict):
self.id = item.get('id')
self.order_id = item.get('order_id')
self.quantity = item.get('quantity')
self.sale_price = item.get('sale_price')
self.complements = item.get('complements')
self.product = item.get('product')
| class Item(object):
def __init__(self, item: dict):
self.id = item.get('id')
self.order_id = item.get('order_id')
self.quantity = item.get('quantity')
self.sale_price = item.get('sale_price')
self.complements = item.get('complements')
self.product = item.get('product') |
# AUTOGENERATED! DO NOT EDIT! File to edit: 00_core.ipynb (unless otherwise specified).
__all__ = ['square']
# Cell
def square(x):
"""Returns the square of $x$, or $x^2$"""
return x*x | __all__ = ['square']
def square(x):
"""Returns the square of $x$, or $x^2$"""
return x * x |
lineList = list()
with open('H:\\q2.txt') as f:
for line in f:
lineList.append(int(line.rstrip('\n')))
print(sum(lineList))
| line_list = list()
with open('H:\\q2.txt') as f:
for line in f:
lineList.append(int(line.rstrip('\n')))
print(sum(lineList)) |
# Do not edit this file directly.
# It was auto-generated by: code/programs/reflexivity/reflexive_refresh
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file")
def tomlplusplus():
http_archive(
name = "tomlplusplus",
build_file = "//bazel/deps/tomlplusplus:build.BUILD",
sha256 = "a522eaa80a33d8c457a0b9cb3509f2e7c7a61d8e102f3c14696d5a7606a4e874",
strip_prefix = "tomlplusplus-983e22978e8792f6248695047ad7cb892c112e18",
urls = [
"https://github.com/Unilang/tomlplusplus/archive/983e22978e8792f6248695047ad7cb892c112e18.tar.gz",
],
)
| load('@bazel_tools//tools/build_defs/repo:http.bzl', 'http_archive')
load('@bazel_tools//tools/build_defs/repo:http.bzl', 'http_file')
def tomlplusplus():
http_archive(name='tomlplusplus', build_file='//bazel/deps/tomlplusplus:build.BUILD', sha256='a522eaa80a33d8c457a0b9cb3509f2e7c7a61d8e102f3c14696d5a7606a4e874', strip_prefix='tomlplusplus-983e22978e8792f6248695047ad7cb892c112e18', urls=['https://github.com/Unilang/tomlplusplus/archive/983e22978e8792f6248695047ad7cb892c112e18.tar.gz']) |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Levenshtein edit distance
# jill-jenn vie et christoph durr - 2014-2015
# snip{
def levenshtein(x, y):
"""Levenshtein edit distance
:param x:
:param y: strings
:returns: distance
:complexity: `O(|x|*|y|)`
"""
n = len(x)
m = len(y)
# initialisation ligne 0 et colonne 0
A = [[i + j for j in range(m + 1)] for i in range(n + 1)]
for i in range(n):
for j in range(m):
A[i + 1][j + 1] = min(A[i][j + 1] + 1, # insertion
A[i + 1][j] + 1, # suppress.
A[i][j] + int(x[i] != y[j])) # substitut.
return A[n][m]
# snip}
| def levenshtein(x, y):
"""Levenshtein edit distance
:param x:
:param y: strings
:returns: distance
:complexity: `O(|x|*|y|)`
"""
n = len(x)
m = len(y)
a = [[i + j for j in range(m + 1)] for i in range(n + 1)]
for i in range(n):
for j in range(m):
A[i + 1][j + 1] = min(A[i][j + 1] + 1, A[i + 1][j] + 1, A[i][j] + int(x[i] != y[j]))
return A[n][m] |
# -*- coding: utf-8 -*-
{
'host' : 'code.google.com',
'user' : 'your-name-here@gmail.com',
'data_directory' : './source',
'input_name_format' : '{problem}-{input}-{id}.in',
'output_name_format' : '{problem}-{input}-{id}.out',
'source_names_format' : [],
}
| {'host': 'code.google.com', 'user': 'your-name-here@gmail.com', 'data_directory': './source', 'input_name_format': '{problem}-{input}-{id}.in', 'output_name_format': '{problem}-{input}-{id}.out', 'source_names_format': []} |
class Node:
def __init__(self, val, left=None, right=None):
self.val = val
self.left= left
self.right = right
class BinaryTree:
def __init__(self):
self.root = None
def insert(self, val):
node = Node(val)
temp = self.root
if temp is None:
self.root = node
return
q = []
q.append(temp)
while len(q):
temp = q[0]
q.pop(0)
if not temp.left:
temp.left = node
break
else:
q.append(temp.left)
if not temp.right:
temp.right = node
break
else:
q.append(temp.right)
class Node(object):
def __init__(self, value, left=None, right=None):
self.value = value
self.left = left
self.right = right
class BinaryTree(object):
def __init__(self):
self.root = None
def insert(self, value):
temp = self.root
node = Node(value)
if temp is None:
self.root = node
return
q = []
q.append(temp)
while(len(q)):
temp = q[0]
q.pop(0)
if not temp.left:
temp.left = node
break
else:
q.append(temp.left)
if not temp.right:
temp.right = node
break
else:
q.append(temp.right)
def inorder(self, temp=None):
if temp is None:
return
self.inorder(temp.left)
print(temp.value, end=" ")
self.inorder(temp.right)
if __name__ == "__main__":
binarytree = BinaryTree()
binarytree.insert(4)
binarytree.insert(6)
binarytree.insert(44)
binarytree.insert(34)
print("In order before inserting : ", end=" ")
binarytree.inorder(binarytree.root)
print()
binarytree.insert(7)
print("In order after inserting :" , end=" ")
binarytree.inorder(binarytree.root)
"""
4
/ \
6 44
/ \
34 7(new value)
"""
| class Node:
def __init__(self, val, left=None, right=None):
self.val = val
self.left = left
self.right = right
class Binarytree:
def __init__(self):
self.root = None
def insert(self, val):
node = node(val)
temp = self.root
if temp is None:
self.root = node
return
q = []
q.append(temp)
while len(q):
temp = q[0]
q.pop(0)
if not temp.left:
temp.left = node
break
else:
q.append(temp.left)
if not temp.right:
temp.right = node
break
else:
q.append(temp.right)
class Node(object):
def __init__(self, value, left=None, right=None):
self.value = value
self.left = left
self.right = right
class Binarytree(object):
def __init__(self):
self.root = None
def insert(self, value):
temp = self.root
node = node(value)
if temp is None:
self.root = node
return
q = []
q.append(temp)
while len(q):
temp = q[0]
q.pop(0)
if not temp.left:
temp.left = node
break
else:
q.append(temp.left)
if not temp.right:
temp.right = node
break
else:
q.append(temp.right)
def inorder(self, temp=None):
if temp is None:
return
self.inorder(temp.left)
print(temp.value, end=' ')
self.inorder(temp.right)
if __name__ == '__main__':
binarytree = binary_tree()
binarytree.insert(4)
binarytree.insert(6)
binarytree.insert(44)
binarytree.insert(34)
print('In order before inserting : ', end=' ')
binarytree.inorder(binarytree.root)
print()
binarytree.insert(7)
print('In order after inserting :', end=' ')
binarytree.inorder(binarytree.root)
'\n 4\n / 6 44\n / 34 7(new value)\n\n' |
"""
Module: 'umqtt.simple' on esp8266 v1.10
"""
# MCU: (sysname='esp8266', nodename='esp8266', release='2.2.0-dev(9422289)', version='v1.10-8-g8b7039d7d on 2019-01-26', machine='ESP module with ESP8266')
# Stubber: 1.1.0
robust = None
simple = None
| """
Module: 'umqtt.simple' on esp8266 v1.10
"""
robust = None
simple = None |
#!/usr/bin/env python3
def beolvas(file):
pontszamok = []
with open(file, "rt") as f:
for sor in f:
try:
pontszamok.append(int(sor.rstrip("\n")))
except ValueError:
pass
return pontszamok
def main():
print(beolvas("7_kzh_pontszam_hibas.txt"))
main()
| def beolvas(file):
pontszamok = []
with open(file, 'rt') as f:
for sor in f:
try:
pontszamok.append(int(sor.rstrip('\n')))
except ValueError:
pass
return pontszamok
def main():
print(beolvas('7_kzh_pontszam_hibas.txt'))
main() |
# Copyright 2016 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Once recursive workspace is implemented in Bazel, this file should cease
# to exist.
"""
Provides functions to pull all Go external package dependencies of this
repository.
"""
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository")
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
def go_deps():
"""Pull in external Go packages needed by Go binaries in this repo.
Pull in all dependencies needed to build the Go binaries in this
repository. This function assumes the repositories imported by the macro
'repositories' in //repositories:repositories.bzl have been imported
already.
"""
go_rules_dependencies()
go_register_toolchains()
gazelle_dependencies()
excludes = native.existing_rules().keys()
if "com_github_google_go_containerregistry" not in excludes:
go_repository(
name = "com_github_google_go_containerregistry",
commit = "221517453cf931400e6607315045445644122692",
importpath = "github.com/google/go-containerregistry",
)
if "com_github_pkg_errors" not in excludes:
go_repository(
name = "com_github_pkg_errors",
commit = "614d223910a179a466c1767a985424175c39b465", # v0.9.1
importpath = "github.com/pkg/errors",
)
if "in_gopkg_yaml_v2" not in excludes:
go_repository(
name = "in_gopkg_yaml_v2",
commit = "53403b58ad1b561927d19068c655246f2db79d48", # v2.2.8
importpath = "gopkg.in/yaml.v2",
)
if "com_github_kylelemons_godebug" not in excludes:
go_repository(
name = "com_github_kylelemons_godebug",
commit = "9ff306d4fbead574800b66369df5b6144732d58e", # v1.1.0
importpath = "github.com/kylelemons/godebug",
)
if "com_github_ghodss_yaml" not in excludes:
go_repository(
name = "com_github_ghodss_yaml",
importpath = "github.com/ghodss/yaml",
sum = "h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=",
version = "v1.0.0",
)
| """
Provides functions to pull all Go external package dependencies of this
repository.
"""
load('@bazel_gazelle//:deps.bzl', 'gazelle_dependencies', 'go_repository')
load('@io_bazel_rules_go//go:deps.bzl', 'go_register_toolchains', 'go_rules_dependencies')
def go_deps():
"""Pull in external Go packages needed by Go binaries in this repo.
Pull in all dependencies needed to build the Go binaries in this
repository. This function assumes the repositories imported by the macro
'repositories' in //repositories:repositories.bzl have been imported
already.
"""
go_rules_dependencies()
go_register_toolchains()
gazelle_dependencies()
excludes = native.existing_rules().keys()
if 'com_github_google_go_containerregistry' not in excludes:
go_repository(name='com_github_google_go_containerregistry', commit='221517453cf931400e6607315045445644122692', importpath='github.com/google/go-containerregistry')
if 'com_github_pkg_errors' not in excludes:
go_repository(name='com_github_pkg_errors', commit='614d223910a179a466c1767a985424175c39b465', importpath='github.com/pkg/errors')
if 'in_gopkg_yaml_v2' not in excludes:
go_repository(name='in_gopkg_yaml_v2', commit='53403b58ad1b561927d19068c655246f2db79d48', importpath='gopkg.in/yaml.v2')
if 'com_github_kylelemons_godebug' not in excludes:
go_repository(name='com_github_kylelemons_godebug', commit='9ff306d4fbead574800b66369df5b6144732d58e', importpath='github.com/kylelemons/godebug')
if 'com_github_ghodss_yaml' not in excludes:
go_repository(name='com_github_ghodss_yaml', importpath='github.com/ghodss/yaml', sum='h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=', version='v1.0.0') |
#!/usr/bin/env python
__author__ = "Peter Maxwell"
__copyright__ = "Copyright 2007-2020, The Cogent Project"
__credits__ = ["Peter Maxwell", "Gavin Huttley"]
__license__ = "BSD-3"
__version__ = "2020.2.7a"
__maintainer__ = "Peter Maxwell"
__email__ = "pm67nz@gmail.com"
__status__ = "Production"
def PamlParser(f):
d = f.readline().split()
numseqs, seqlen = int(d[0]), int(d[1])
for i in range(numseqs):
seqname = f.readline().strip()
if not seqname:
raise ValueError("Sequence name missing")
currseq = []
length = 0
while length < seqlen:
seq_line = f.readline()
if not seq_line:
raise ValueError(
'Sequence "%s" is short: %s < %s' % (seqname, length, seqlen)
)
seq_line = seq_line.strip()
length += len(seq_line)
currseq.append(seq_line)
yield (seqname, "".join(currseq))
| __author__ = 'Peter Maxwell'
__copyright__ = 'Copyright 2007-2020, The Cogent Project'
__credits__ = ['Peter Maxwell', 'Gavin Huttley']
__license__ = 'BSD-3'
__version__ = '2020.2.7a'
__maintainer__ = 'Peter Maxwell'
__email__ = 'pm67nz@gmail.com'
__status__ = 'Production'
def paml_parser(f):
d = f.readline().split()
(numseqs, seqlen) = (int(d[0]), int(d[1]))
for i in range(numseqs):
seqname = f.readline().strip()
if not seqname:
raise value_error('Sequence name missing')
currseq = []
length = 0
while length < seqlen:
seq_line = f.readline()
if not seq_line:
raise value_error('Sequence "%s" is short: %s < %s' % (seqname, length, seqlen))
seq_line = seq_line.strip()
length += len(seq_line)
currseq.append(seq_line)
yield (seqname, ''.join(currseq)) |
expected_output = {
"client_count": 85,
"client_notification_tmr_msec": 240000,
"communications": "Up",
"manual_swact": "enabled",
"mode": "Duplex",
"my_state": "13 -ACTIVE",
"peer_state": "8 -STANDBY HOT",
"redundancy_mode_configured": "Stateful Switchover",
"redundancy_mode_operational": "Stateful Switchover",
"redundancy_state": "Stateful Switchover",
"rf_debug_mask": "0",
"unit": "Primary",
"unit_id": 1
}
| expected_output = {'client_count': 85, 'client_notification_tmr_msec': 240000, 'communications': 'Up', 'manual_swact': 'enabled', 'mode': 'Duplex', 'my_state': '13 -ACTIVE', 'peer_state': '8 -STANDBY HOT', 'redundancy_mode_configured': 'Stateful Switchover', 'redundancy_mode_operational': 'Stateful Switchover', 'redundancy_state': 'Stateful Switchover', 'rf_debug_mask': '0', 'unit': 'Primary', 'unit_id': 1} |
# Handling outliers which can cause issues when working with transformed time series data
def replace_outliers(series):
# Calculate the absolute difference of each timepoint from the series mean
absolute_differences_from_mean = np.abs(series - np.mean(series))
# Calculate a mask for the differences that are > 3 standard deviations from zero
this_mask = absolute_differences_from_mean > (np.std(series) * 3)
# Replace these values with the median accross the data - this median method works well since there might be nans around the outlier values
series[this_mask] = np.nanmedian(series)
return series
# Apply your preprocessing function to the timeseries and plot the results
prices_perc = prices_perc.apply(replace_outliers)
prices_perc.loc["2014":"2015"].plot()
plt.show()
| def replace_outliers(series):
absolute_differences_from_mean = np.abs(series - np.mean(series))
this_mask = absolute_differences_from_mean > np.std(series) * 3
series[this_mask] = np.nanmedian(series)
return series
prices_perc = prices_perc.apply(replace_outliers)
prices_perc.loc['2014':'2015'].plot()
plt.show() |
"""
AOV information is encoded and decoded by 3rdParty renderers. These renderers
register AOV callbacks by deriving from or implementing an interface identical
to the AOVCallbacks interface located in the rendererCallbacks module. This
class is then registered by calling:
rendererCallbacks.registerCallbacks(rendererName,
rendererCallbacks.CALLBACKS_TYPE_AOVS
callbacksClassImplementation)
"""
def _getCurrentRenderer():
pass
def decode(aovsData, decodeType):
"""
Decode and apply all the attribute values related to the AOVss of a specific renderer
"""
pass
def encode():
"""
Encode all the attribute values related to the AOVs of a specific renderer
"""
pass
kRendererMismatch = []
| """
AOV information is encoded and decoded by 3rdParty renderers. These renderers
register AOV callbacks by deriving from or implementing an interface identical
to the AOVCallbacks interface located in the rendererCallbacks module. This
class is then registered by calling:
rendererCallbacks.registerCallbacks(rendererName,
rendererCallbacks.CALLBACKS_TYPE_AOVS
callbacksClassImplementation)
"""
def _get_current_renderer():
pass
def decode(aovsData, decodeType):
"""
Decode and apply all the attribute values related to the AOVss of a specific renderer
"""
pass
def encode():
"""
Encode all the attribute values related to the AOVs of a specific renderer
"""
pass
k_renderer_mismatch = [] |
class MetaConstants(object):
NUM_BUCKETS = "num_buckets"
NUM_SCOPES_PER_BUCKET = "num_scopes_per_bucket"
NUM_COLLECTIONS_PER_SCOPE = "num_collections_per_scope"
NUM_ITEMS_PER_COLLECTION = "num_items"
REMOVE_DEFAULT_COLLECTION = "remove_default_collection"
CREATE_COLLECTIONS_USING_MANIFEST_IMPORT = \
"create_collections_using_manifest_import"
BUCKET_TAR_DIR = "bucket_tar_dir"
BUCKET_TAR_SRC = "bucket_tar_src"
@staticmethod
def get_params():
param_list = list()
for param, value in vars(MetaConstants).items():
if not (param.startswith("_")
or callable(getattr(MetaConstants, param))):
param_list.append(value)
return param_list
class MetaCrudParams(object):
COLLECTIONS_TO_FLUSH = "collections_to_flush"
COLLECTIONS_TO_DROP = "collections_to_drop"
COLLECTIONS_TO_DROP_AND_RECREATE = "collections_to_drop_and_recreate"
SCOPES_TO_DROP = "scopes_to_drop"
SCOPES_TO_ADD_PER_BUCKET = "scopes_to_add_per_bucket"
COLLECTIONS_TO_ADD_FOR_NEW_SCOPES = "collections_to_add_for_new_scopes"
COLLECTIONS_TO_ADD_PER_BUCKET = "collections_to_add_per_bucket"
SCOPES_TO_RECREATE = "scopes_to_recreate"
COLLECTIONS_TO_RECREATE = "collections_to_recreate"
BUCKET_CONSIDERED_FOR_OPS = "buckets_considered_for_ops"
SCOPES_CONSIDERED_FOR_OPS = "scopes_considered_for_ops"
COLLECTIONS_CONSIDERED_FOR_OPS = "collections_considered_for_ops"
DOC_GEN_TYPE = "doc_gen_type"
class DocCrud(object):
NUM_ITEMS_FOR_NEW_COLLECTIONS = "num_items_for_new_collections"
CREATE_PERCENTAGE_PER_COLLECTION = "create_percentage_per_collection"
READ_PERCENTAGE_PER_COLLECTION = "read_percentage_per_collection"
UPDATE_PERCENTAGE_PER_COLLECTION = "update_percentage_per_collection"
REPLACE_PERCENTAGE_PER_COLLECTION = "replace_percentage_per_collection"
DELETE_PERCENTAGE_PER_COLLECTION = "delete_percentage_per_collection"
TOUCH_PERCENTAGE_PER_COLLECTION = "touch_percentage_per_collection"
# Doc loading options supported
COMMON_DOC_KEY = "doc_key"
DOC_KEY_SIZE = "doc_key_size"
DOC_SIZE = "doc_size"
RANDOMIZE_VALUE = "randomize_value"
class SubDocCrud(object):
XATTR_TEST = "xattr_test"
INSERT_PER_COLLECTION = "insert_per_collection"
UPSERT_PER_COLLECTION = "upsert_per_collection"
REMOVE_PER_COLLECTION = "remove_per_collection"
LOOKUP_PER_COLLECTION = "lookup_per_collection"
# Sub-doc loading option supported
SUB_DOC_SIZE = "sub_doc_size"
# Doc_loading task options
DOC_TTL = "doc_ttl"
SDK_TIMEOUT = "sdk_timeout"
SDK_TIMEOUT_UNIT = "sdk_timeout_unit"
DURABILITY_LEVEL = "durability_level"
SKIP_READ_ON_ERROR = "skip_read_on_error"
SUPPRESS_ERROR_TABLE = "suppress_error_table"
SKIP_READ_SUCCESS_RESULTS = "skip_read_success_results"
TARGET_VBUCKETS = "target_vbuckets"
RETRY_EXCEPTIONS = "retry_exceptions"
IGNORE_EXCEPTIONS = "ignore_exceptions"
COLLECTIONS_CONSIDERED_FOR_CRUD = "collections_considered_for_crud"
SCOPES_CONSIDERED_FOR_CRUD = "scopes_considers_for_crud"
BUCKETS_CONSIDERED_FOR_CRUD = "buckets_considered_for_crud"
# Number of threadpool executor workers for scope/collection drops/creates
THREADPOOL_MAX_WORKERS = "threadpool_max_workers"
| class Metaconstants(object):
num_buckets = 'num_buckets'
num_scopes_per_bucket = 'num_scopes_per_bucket'
num_collections_per_scope = 'num_collections_per_scope'
num_items_per_collection = 'num_items'
remove_default_collection = 'remove_default_collection'
create_collections_using_manifest_import = 'create_collections_using_manifest_import'
bucket_tar_dir = 'bucket_tar_dir'
bucket_tar_src = 'bucket_tar_src'
@staticmethod
def get_params():
param_list = list()
for (param, value) in vars(MetaConstants).items():
if not (param.startswith('_') or callable(getattr(MetaConstants, param))):
param_list.append(value)
return param_list
class Metacrudparams(object):
collections_to_flush = 'collections_to_flush'
collections_to_drop = 'collections_to_drop'
collections_to_drop_and_recreate = 'collections_to_drop_and_recreate'
scopes_to_drop = 'scopes_to_drop'
scopes_to_add_per_bucket = 'scopes_to_add_per_bucket'
collections_to_add_for_new_scopes = 'collections_to_add_for_new_scopes'
collections_to_add_per_bucket = 'collections_to_add_per_bucket'
scopes_to_recreate = 'scopes_to_recreate'
collections_to_recreate = 'collections_to_recreate'
bucket_considered_for_ops = 'buckets_considered_for_ops'
scopes_considered_for_ops = 'scopes_considered_for_ops'
collections_considered_for_ops = 'collections_considered_for_ops'
doc_gen_type = 'doc_gen_type'
class Doccrud(object):
num_items_for_new_collections = 'num_items_for_new_collections'
create_percentage_per_collection = 'create_percentage_per_collection'
read_percentage_per_collection = 'read_percentage_per_collection'
update_percentage_per_collection = 'update_percentage_per_collection'
replace_percentage_per_collection = 'replace_percentage_per_collection'
delete_percentage_per_collection = 'delete_percentage_per_collection'
touch_percentage_per_collection = 'touch_percentage_per_collection'
common_doc_key = 'doc_key'
doc_key_size = 'doc_key_size'
doc_size = 'doc_size'
randomize_value = 'randomize_value'
class Subdoccrud(object):
xattr_test = 'xattr_test'
insert_per_collection = 'insert_per_collection'
upsert_per_collection = 'upsert_per_collection'
remove_per_collection = 'remove_per_collection'
lookup_per_collection = 'lookup_per_collection'
sub_doc_size = 'sub_doc_size'
doc_ttl = 'doc_ttl'
sdk_timeout = 'sdk_timeout'
sdk_timeout_unit = 'sdk_timeout_unit'
durability_level = 'durability_level'
skip_read_on_error = 'skip_read_on_error'
suppress_error_table = 'suppress_error_table'
skip_read_success_results = 'skip_read_success_results'
target_vbuckets = 'target_vbuckets'
retry_exceptions = 'retry_exceptions'
ignore_exceptions = 'ignore_exceptions'
collections_considered_for_crud = 'collections_considered_for_crud'
scopes_considered_for_crud = 'scopes_considers_for_crud'
buckets_considered_for_crud = 'buckets_considered_for_crud'
threadpool_max_workers = 'threadpool_max_workers' |
'''
constraints
'''
class DensityConstraint(object):
def __init__(self, volume_frac, density_min = 0, density_max = 1.0):
self.volfrac = volume_frac
self.xmin = density_min
self.xmax = density_max
def volume_frac(self):
return self.volfrac
def density_min(self):
return self.xmin
def density_max(self):
return self.xmax
| """
constraints
"""
class Densityconstraint(object):
def __init__(self, volume_frac, density_min=0, density_max=1.0):
self.volfrac = volume_frac
self.xmin = density_min
self.xmax = density_max
def volume_frac(self):
return self.volfrac
def density_min(self):
return self.xmin
def density_max(self):
return self.xmax |
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
'''
# Recursion
class Solution:
def preorderTraversal(self, root):
"""
:type root: TreeNode
:rtype: List[int]
"""
result = []
self.recursion(root, result)
return result
def recursion(self, root, result):
"""
:type root: TreeNode
:type result: List[int]
"""
if root:
result.append(root.val)
self.recursion(root.left, result)
self.recursion(root.right, result)
'''
# iteration
class Solution:
def preorderTraversal(self, root):
"""
:type root: TreeNode
:rtype: List[int]
"""
result = []
if root:
result.append(root.val)
left = self.preorderTraversal(root.left)
right = self.preorderTraversal(root.right)
result += left + right
return result
return []
| '''
# Recursion
class Solution:
def preorderTraversal(self, root):
"""
:type root: TreeNode
:rtype: List[int]
"""
result = []
self.recursion(root, result)
return result
def recursion(self, root, result):
"""
:type root: TreeNode
:type result: List[int]
"""
if root:
result.append(root.val)
self.recursion(root.left, result)
self.recursion(root.right, result)
'''
class Solution:
def preorder_traversal(self, root):
"""
:type root: TreeNode
:rtype: List[int]
"""
result = []
if root:
result.append(root.val)
left = self.preorderTraversal(root.left)
right = self.preorderTraversal(root.right)
result += left + right
return result
return [] |
#!/usr/bin/python
#
# core Nagios classes.
#
class Nagios:
'''This class represents the current state of a Nagios installation, as read
from the status file that Nagios maintains.
'''
def __init__(self, statusfile=None):
'''Create a new Nagios state store. One argument, statusfile, is used to
indicate where the status file is. This object is intended to be read-only
once it has been created.
'''
self.info = Info({})
self.program = Program({})
self.hosts = {}
self.services = {}
self.comments = {}
self.downtimes = {}
if statusfile is not None:
self._update(statusfile)
def _update(self, statusfile):
'''Read the status file from Nagios and parse it. Responsible for building
our internal representation of the tree.
'''
# Generator to get the next status stanza.
def next_stanza(f):
cur = None
for line in f:
line = line.strip()
if line.endswith('{'):
if cur is not None:
yield cur
cur = {'type': line.split(' ', 1)[0]}
elif '=' in line:
key, val = line.split('=', 1)
if key == "performance_data":
# performance_data is special
performance_data = {}
split = val.split(' ')
for dat in split:
chunks = dat.split(';', 1)
if chunks and len(chunks) > 0 and '=' in chunks[0]:
(c_key, c_val) = chunks[0].split('=', 1)
# convert to int or float if possible
try:
n_val = float(c_val)
if (n_val == int(n_val)):
n_val = int(n_val)
except ValueError:
n_val = c_val
performance_data[c_key] = n_val
val = performance_data
cur[key] = val
elif "#" in line:
if not line.find("NAGIOS STATE RETENTION FILE"):
raise ValueError("You appear to have used the state retention file instead of the status file. Please change your arguments and try again.")
if cur is not None:
yield cur
f = open(statusfile, 'r')
for obj in next_stanza(f):
host = obj['host_name'] if 'host_name' in obj else None
service = obj['service_description'] if 'service_description' in obj else None
if obj['type'] == 'hoststatus':
self.hosts[host] = Host(obj)
elif obj['type'] == 'servicestatus':
if host not in self.services:
self.services[host] = {}
self.services[host][service] = Service(obj)
elif obj['type'].endswith('comment'):
self.comments[int(obj['comment_id'])] = Comment(obj)
elif obj['type'].endswith('downtime'):
self.downtimes[int(obj['downtime_id'])] = Downtime(obj)
elif obj['type'] == 'info':
self.info = Info(obj)
elif obj['type'] == 'programstatus':
self.program = Program(obj)
f.close()
for host in self.services:
for s in self.services[host].itervalues():
self.host_or_service(host).attach_service(s)
for c in self.comments.itervalues():
tmp = self.host_or_service(c.host, c.service)
if (tmp is None):
# FIXME: throw something?
pass
else:
tmp.attach_comment(c)
for d in self.downtimes.itervalues():
self.host_or_service(d.host, d.service).attach_downtime(d)
def host_or_service(self, host, service=None):
'''Return a Host or Service object for the given host/service combo.
Note that Service may be None, in which case we return a Host.
'''
if service is not None:
try:
service = service.encode('utf-8')
except:
pass
if host not in self.hosts:
return None
if service is None: # Only a Host if they really want it.
return self.hosts[host]
if host not in self.services or service not in self.services[host]:
return None
return self.services[host][service]
def for_json(self):
'''Given a Nagios state object, return a pruned down dict that is
ready to be serialized to JSON.
'''
out = {}
for host in self.hosts:
out[host] = self.hosts[host].for_json()
return out
class NagiosObject:
'''A base class that does a little fancy parsing. That's it.
'''
def __init__(self, obj):
'''Builder for the base.'''
for key in obj:
self.__dict__[key] = obj[key]
self.host = getattr(self, 'host_name', None)
self.service = getattr(self, 'service_description', None)
self.essential_keys = []
def for_json(self):
'''Return a dict of ourselves that is ready to be serialized out
to JSON. This only returns the data that we think is essential for
any UI to show.
'''
obj = {}
for key in self.essential_keys:
obj[key] = getattr(self, key, None)
return obj
class Info(NagiosObject):
def __init__(self, obj):
NagiosObject.__init__(self, obj)
self.essential_keys = ['created', 'version', 'last_update_check',
'update_available', 'last_version', 'new_version']
class Program(NagiosObject):
def __init__(self, obj):
NagiosObject.__init__(self, obj)
self.essential_keys = [
'modified_host_attributes',
'modified_service_attributes',
'nagios_pid',
'daemon_mode',
'program_start',
'last_log_rotation',
'enable_notifications',
'active_service_checks_enabled',
'passive_service_checks_enabled',
'active_host_checks_enabled',
'passive_host_checks_enabled',
'enable_event_handlers',
'obsess_over_services',
'obsess_over_hosts',
'check_service_freshness',
'check_host_freshness',
'enable_flap_detection',
'process_performance_data',
'global_host_event_handle',
'global_service_event_handle',
'next_comment_id',
'next_downtime_id',
'next_event_id',
'next_problem_id',
'next_notification_id',
'active_scheduled_host_check_stats',
'active_ondemand_host_check_stats',
'passive_host_check_stats',
'active_scheduled_service_check_stats',
'active_ondemand_service_check_stats',
'passive_service_check_stats',
'cached_host_check_stats',
'cached_service_check_stats',
'external_command_stats',
'parallel_host_check_stats',
'serial_host_check_stats'
]
class HostOrService(NagiosObject):
'''Represent a single host or service.
'''
def __init__(self, obj):
'''Custom build a HostOrService object.'''
NagiosObject.__init__(self, obj)
self.downtimes = {}
self.comments = {}
self.essential_keys = ['current_state', 'plugin_output',
'notifications_enabled', 'last_check', 'last_notification',
'active_checks_enabled', 'problem_has_been_acknowledged',
'last_hard_state', 'scheduled_downtime_depth', 'performance_data',
'last_state_change', 'current_attempt', 'max_attempts']
def attach_downtime(self, dt):
'''Given a Downtime object, store a record to it for lookup later.'''
self.downtimes[dt.downtime_id] = dt
def attach_comment(self, cmt):
'''Given a Comment object, store a record to it for lookup later.'''
self.comments[cmt.comment_id] = cmt
class Host(HostOrService):
'''Represent a single host.
'''
def __init__(self, obj):
'''Custom build a Host object.'''
HostOrService.__init__(self, obj)
self.services = {}
def attach_service(self, svc):
'''Attach a Service to this Host.'''
self.services[svc.service] = svc
def for_json(self):
'''Represent ourselves and also get attached data.'''
obj = NagiosObject.for_json(self)
for key in ('services', 'comments', 'downtimes'):
obj[key] = {}
for idx in self.__dict__[key]:
obj[key][idx] = self.__dict__[key][idx].for_json()
return obj
class Service(HostOrService):
'''Represent a single service.
'''
def for_json(self):
'''Represent ourselves and also get attached data.'''
obj = NagiosObject.for_json(self)
for key in ('comments', 'downtimes'):
obj[key] = {}
for idx in self.__dict__[key]:
obj[key][idx] = self.__dict__[key][idx].for_json()
return obj
class Comment(NagiosObject):
'''Represent a single comment.
'''
def __init__(self, obj):
'''Custom build a Comment object.'''
NagiosObject.__init__(self, obj)
self.essential_keys = ['comment_id', 'entry_type', 'source',
'persistent', 'entry_time', 'expires', 'expire_time', 'author',
'comment_data']
self.comment_id = int(self.comment_id)
class Downtime(NagiosObject):
'''Represent a single downtime event.
'''
def __init__(self, obj):
'''Custom build a Downtime object.'''
NagiosObject.__init__(self, obj)
self.essential_keys = ['downtime_id', 'entry_time', 'start_time',
'end_time', 'triggered_by', 'fixed', 'duration', 'author',
'comment']
self.downtime_id = int(self.downtime_id)
| class Nagios:
"""This class represents the current state of a Nagios installation, as read
from the status file that Nagios maintains.
"""
def __init__(self, statusfile=None):
"""Create a new Nagios state store. One argument, statusfile, is used to
indicate where the status file is. This object is intended to be read-only
once it has been created.
"""
self.info = info({})
self.program = program({})
self.hosts = {}
self.services = {}
self.comments = {}
self.downtimes = {}
if statusfile is not None:
self._update(statusfile)
def _update(self, statusfile):
"""Read the status file from Nagios and parse it. Responsible for building
our internal representation of the tree.
"""
def next_stanza(f):
cur = None
for line in f:
line = line.strip()
if line.endswith('{'):
if cur is not None:
yield cur
cur = {'type': line.split(' ', 1)[0]}
elif '=' in line:
(key, val) = line.split('=', 1)
if key == 'performance_data':
performance_data = {}
split = val.split(' ')
for dat in split:
chunks = dat.split(';', 1)
if chunks and len(chunks) > 0 and ('=' in chunks[0]):
(c_key, c_val) = chunks[0].split('=', 1)
try:
n_val = float(c_val)
if n_val == int(n_val):
n_val = int(n_val)
except ValueError:
n_val = c_val
performance_data[c_key] = n_val
val = performance_data
cur[key] = val
elif '#' in line:
if not line.find('NAGIOS STATE RETENTION FILE'):
raise value_error('You appear to have used the state retention file instead of the status file. Please change your arguments and try again.')
if cur is not None:
yield cur
f = open(statusfile, 'r')
for obj in next_stanza(f):
host = obj['host_name'] if 'host_name' in obj else None
service = obj['service_description'] if 'service_description' in obj else None
if obj['type'] == 'hoststatus':
self.hosts[host] = host(obj)
elif obj['type'] == 'servicestatus':
if host not in self.services:
self.services[host] = {}
self.services[host][service] = service(obj)
elif obj['type'].endswith('comment'):
self.comments[int(obj['comment_id'])] = comment(obj)
elif obj['type'].endswith('downtime'):
self.downtimes[int(obj['downtime_id'])] = downtime(obj)
elif obj['type'] == 'info':
self.info = info(obj)
elif obj['type'] == 'programstatus':
self.program = program(obj)
f.close()
for host in self.services:
for s in self.services[host].itervalues():
self.host_or_service(host).attach_service(s)
for c in self.comments.itervalues():
tmp = self.host_or_service(c.host, c.service)
if tmp is None:
pass
else:
tmp.attach_comment(c)
for d in self.downtimes.itervalues():
self.host_or_service(d.host, d.service).attach_downtime(d)
def host_or_service(self, host, service=None):
"""Return a Host or Service object for the given host/service combo.
Note that Service may be None, in which case we return a Host.
"""
if service is not None:
try:
service = service.encode('utf-8')
except:
pass
if host not in self.hosts:
return None
if service is None:
return self.hosts[host]
if host not in self.services or service not in self.services[host]:
return None
return self.services[host][service]
def for_json(self):
"""Given a Nagios state object, return a pruned down dict that is
ready to be serialized to JSON.
"""
out = {}
for host in self.hosts:
out[host] = self.hosts[host].for_json()
return out
class Nagiosobject:
"""A base class that does a little fancy parsing. That's it.
"""
def __init__(self, obj):
"""Builder for the base."""
for key in obj:
self.__dict__[key] = obj[key]
self.host = getattr(self, 'host_name', None)
self.service = getattr(self, 'service_description', None)
self.essential_keys = []
def for_json(self):
"""Return a dict of ourselves that is ready to be serialized out
to JSON. This only returns the data that we think is essential for
any UI to show.
"""
obj = {}
for key in self.essential_keys:
obj[key] = getattr(self, key, None)
return obj
class Info(NagiosObject):
def __init__(self, obj):
NagiosObject.__init__(self, obj)
self.essential_keys = ['created', 'version', 'last_update_check', 'update_available', 'last_version', 'new_version']
class Program(NagiosObject):
def __init__(self, obj):
NagiosObject.__init__(self, obj)
self.essential_keys = ['modified_host_attributes', 'modified_service_attributes', 'nagios_pid', 'daemon_mode', 'program_start', 'last_log_rotation', 'enable_notifications', 'active_service_checks_enabled', 'passive_service_checks_enabled', 'active_host_checks_enabled', 'passive_host_checks_enabled', 'enable_event_handlers', 'obsess_over_services', 'obsess_over_hosts', 'check_service_freshness', 'check_host_freshness', 'enable_flap_detection', 'process_performance_data', 'global_host_event_handle', 'global_service_event_handle', 'next_comment_id', 'next_downtime_id', 'next_event_id', 'next_problem_id', 'next_notification_id', 'active_scheduled_host_check_stats', 'active_ondemand_host_check_stats', 'passive_host_check_stats', 'active_scheduled_service_check_stats', 'active_ondemand_service_check_stats', 'passive_service_check_stats', 'cached_host_check_stats', 'cached_service_check_stats', 'external_command_stats', 'parallel_host_check_stats', 'serial_host_check_stats']
class Hostorservice(NagiosObject):
"""Represent a single host or service.
"""
def __init__(self, obj):
"""Custom build a HostOrService object."""
NagiosObject.__init__(self, obj)
self.downtimes = {}
self.comments = {}
self.essential_keys = ['current_state', 'plugin_output', 'notifications_enabled', 'last_check', 'last_notification', 'active_checks_enabled', 'problem_has_been_acknowledged', 'last_hard_state', 'scheduled_downtime_depth', 'performance_data', 'last_state_change', 'current_attempt', 'max_attempts']
def attach_downtime(self, dt):
"""Given a Downtime object, store a record to it for lookup later."""
self.downtimes[dt.downtime_id] = dt
def attach_comment(self, cmt):
"""Given a Comment object, store a record to it for lookup later."""
self.comments[cmt.comment_id] = cmt
class Host(HostOrService):
"""Represent a single host.
"""
def __init__(self, obj):
"""Custom build a Host object."""
HostOrService.__init__(self, obj)
self.services = {}
def attach_service(self, svc):
"""Attach a Service to this Host."""
self.services[svc.service] = svc
def for_json(self):
"""Represent ourselves and also get attached data."""
obj = NagiosObject.for_json(self)
for key in ('services', 'comments', 'downtimes'):
obj[key] = {}
for idx in self.__dict__[key]:
obj[key][idx] = self.__dict__[key][idx].for_json()
return obj
class Service(HostOrService):
"""Represent a single service.
"""
def for_json(self):
"""Represent ourselves and also get attached data."""
obj = NagiosObject.for_json(self)
for key in ('comments', 'downtimes'):
obj[key] = {}
for idx in self.__dict__[key]:
obj[key][idx] = self.__dict__[key][idx].for_json()
return obj
class Comment(NagiosObject):
"""Represent a single comment.
"""
def __init__(self, obj):
"""Custom build a Comment object."""
NagiosObject.__init__(self, obj)
self.essential_keys = ['comment_id', 'entry_type', 'source', 'persistent', 'entry_time', 'expires', 'expire_time', 'author', 'comment_data']
self.comment_id = int(self.comment_id)
class Downtime(NagiosObject):
"""Represent a single downtime event.
"""
def __init__(self, obj):
"""Custom build a Downtime object."""
NagiosObject.__init__(self, obj)
self.essential_keys = ['downtime_id', 'entry_time', 'start_time', 'end_time', 'triggered_by', 'fixed', 'duration', 'author', 'comment']
self.downtime_id = int(self.downtime_id) |
# Read from a file one line at a time.
# amwhaley@cisco.com
# twitter: @mandywhaley
# http://developer.cisco.com
# http://developer.cisco.com/learning
# Jan 15, 2015
# * THIS SAMPLE APPLICATION AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
# * OF ANY KIND BY CISCO, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED
# * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY FITNESS FOR A PARTICULAR
# * PURPOSE, NONINFRINGEMENT, SATISFACTORY QUALITY OR ARISING FROM A COURSE OF
# * DEALING, LAW, USAGE, OR TRADE PRACTICE. CISCO TAKES NO RESPONSIBILITY
# * REGARDING ITS USAGE IN AN APPLICATION, AND IT IS PRESENTED ONLY AS AN
# * EXAMPLE. THE SAMPLE CODE HAS NOT BEEN THOROUGHLY TESTED AND IS PROVIDED AS AN
# * EXAMPLE ONLY, THEREFORE CISCO DOES NOT GUARANTEE OR MAKE ANY REPRESENTATIONS
# * REGARDING ITS RELIABILITY, SERVICEABILITY, OR FUNCTION. IN NO EVENT DOES
# * CISCO WARRANT THAT THE SOFTWARE IS ERROR FREE OR THAT CUSTOMER WILL BE ABLE
# * TO OPERATE THE SOFTWARE WITHOUT PROBLEMS OR INTERRUPTIONS. NOR DOES CISCO
# * WARRANT THAT THE SOFTWARE OR ANY EQUIPMENT ON WHICH THE SOFTWARE IS USED WILL
# * BE FREE OF VULNERABILITY TO INTRUSION OR ATTACK. THIS SAMPLE APPLICATION IS
# * NOT SUPPORTED BY CISCO IN ANY MANNER. CISCO DOES NOT ASSUME ANY LIABILITY
# * ARISING FROM THE USE OF THE APPLICATION. FURTHERMORE, IN NO EVENT SHALL CISCO
# * OR ITS SUPPLIERS BE LIABLE FOR ANY INCIDENTAL OR CONSEQUENTIAL DAMAGES, LOST
# * PROFITS, OR LOST DATA, OR ANY OTHER INDIRECT DAMAGES EVEN IF CISCO OR ITS
# * SUPPLIERS HAVE BEEN INFORMED OF THE POSSIBILITY THEREOF.-->
#.readline() reads in only 1 line of the file at a time.
print ("Read only the first line of the file:")
my_file_object = open("my-file.txt", "r")
print (my_file_object.readline())
print ("\n")
my_file_object.close() | print('Read only the first line of the file:')
my_file_object = open('my-file.txt', 'r')
print(my_file_object.readline())
print('\n')
my_file_object.close() |
the_count = [1,2,3,4,5]
fruits = ['apples','oranges','pears','appricots']
change = [1,'pennies', 2,'dimes',3,'quarters']
#this first kind of for loops goes through a list
for number in the_count :
print ("This is count %d"%number)
# same as above
for fruit in fruits :
print ("A fruit of type : %s"%fruit)
for i in change:
print ("I got %r "%i)
elements = []
for i in range (0,6):
print("Adding %d to the list."%i)
elements.append(i)
for i in elements:
print("Element was: %d "%i)
| the_count = [1, 2, 3, 4, 5]
fruits = ['apples', 'oranges', 'pears', 'appricots']
change = [1, 'pennies', 2, 'dimes', 3, 'quarters']
for number in the_count:
print('This is count %d' % number)
for fruit in fruits:
print('A fruit of type : %s' % fruit)
for i in change:
print('I got %r ' % i)
elements = []
for i in range(0, 6):
print('Adding %d to the list.' % i)
elements.append(i)
for i in elements:
print('Element was: %d ' % i) |
##############################################################################
# The MIT License (MIT)
#
# Copyright (c) 2016-2019 Hajime Nakagami<nakagami@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
##############################################################################
DB2_SQLTYPE_DATE = 384
DB2_SQLTYPE_NDATE = 385
DB2_SQLTYPE_TIME = 388
DB2_SQLTYPE_NTIME = 389
DB2_SQLTYPE_TIMESTAMP = 392
DB2_SQLTYPE_NTIMESTAMP = 393
DB2_SQLTYPE_DATALINK = 396
DB2_SQLTYPE_NDATALINK = 397
DB2_SQLTYPE_BLOB = 404
DB2_SQLTYPE_NBLOB = 405
DB2_SQLTYPE_CLOB = 408
DB2_SQLTYPE_NCLOB = 409
DB2_SQLTYPE_DBCLOB = 412
DB2_SQLTYPE_NDBCLOB = 413
DB2_SQLTYPE_VARCHAR = 448
DB2_SQLTYPE_NVARCHAR = 449
DB2_SQLTYPE_CHAR = 452
DB2_SQLTYPE_NCHAR = 453
DB2_SQLTYPE_LONG = 456
DB2_SQLTYPE_NLONG = 457
DB2_SQLTYPE_CSTR = 460
DB2_SQLTYPE_NCSTR = 461
DB2_SQLTYPE_VARGRAPH = 464
DB2_SQLTYPE_NVARGRAPH = 465
DB2_SQLTYPE_GRAPHIC = 468
DB2_SQLTYPE_NGRAPHIC = 469
DB2_SQLTYPE_LONGRAPH = 472
DB2_SQLTYPE_NLONGRAPH = 473
DB2_SQLTYPE_LSTR = 476
DB2_SQLTYPE_NLSTR = 477
DB2_SQLTYPE_FLOAT = 480
DB2_SQLTYPE_NFLOAT = 481
DB2_SQLTYPE_DECIMAL = 484
DB2_SQLTYPE_NDECIMAL = 485
DB2_SQLTYPE_ZONED = 488
DB2_SQLTYPE_NZONED = 489
DB2_SQLTYPE_BIGINT = 492
DB2_SQLTYPE_NBIGINT = 493
DB2_SQLTYPE_INTEGER = 496
DB2_SQLTYPE_NINTEGER = 497
DB2_SQLTYPE_SMALL = 500
DB2_SQLTYPE_NSMALL = 501
DB2_SQLTYPE_NUMERIC = 504
DB2_SQLTYPE_NNUMERIC = 505
DB2_SQLTYPE_ROWID = 904
DB2_SQLTYPE_NROWID = 905
DB2_SQLTYPE_BLOB_LOCATOR = 960
DB2_SQLTYPE_NBLOB_LOCATOR = 961
DB2_SQLTYPE_CLOB_LOCATOR = 964
DB2_SQLTYPE_NCLOB_LOCATOR = 965
DB2_SQLTYPE_DBCLOB_LOCATOR = 968
DB2_SQLTYPE_NDBCLOB_LOCATOR = 969
DB2_SQLTYPE_BOOLEAN = 2436
DB2_SQLTYPE_NBOOLEAN = 2437
DB2_SQLTYPE_FAKE_UDT = 2000
DB2_SQLTYPE_FAKE_NUDT = 2001
SECMEC_DCESEC = 1
SECMEC_USRIDPWD = 3
SECMEC_USRIDONL = 4
SECMEC_USRIDNWPWD = 5
SECMEC_USRSBSPWD = 6
SECMEC_USRENCPWD = 7
SECMEC_USRSSBPWD = 8
SECMEC_EUSRIDPWD = 9
SECMEC_EUSRIDNWPWD = 10
| db2_sqltype_date = 384
db2_sqltype_ndate = 385
db2_sqltype_time = 388
db2_sqltype_ntime = 389
db2_sqltype_timestamp = 392
db2_sqltype_ntimestamp = 393
db2_sqltype_datalink = 396
db2_sqltype_ndatalink = 397
db2_sqltype_blob = 404
db2_sqltype_nblob = 405
db2_sqltype_clob = 408
db2_sqltype_nclob = 409
db2_sqltype_dbclob = 412
db2_sqltype_ndbclob = 413
db2_sqltype_varchar = 448
db2_sqltype_nvarchar = 449
db2_sqltype_char = 452
db2_sqltype_nchar = 453
db2_sqltype_long = 456
db2_sqltype_nlong = 457
db2_sqltype_cstr = 460
db2_sqltype_ncstr = 461
db2_sqltype_vargraph = 464
db2_sqltype_nvargraph = 465
db2_sqltype_graphic = 468
db2_sqltype_ngraphic = 469
db2_sqltype_longraph = 472
db2_sqltype_nlongraph = 473
db2_sqltype_lstr = 476
db2_sqltype_nlstr = 477
db2_sqltype_float = 480
db2_sqltype_nfloat = 481
db2_sqltype_decimal = 484
db2_sqltype_ndecimal = 485
db2_sqltype_zoned = 488
db2_sqltype_nzoned = 489
db2_sqltype_bigint = 492
db2_sqltype_nbigint = 493
db2_sqltype_integer = 496
db2_sqltype_ninteger = 497
db2_sqltype_small = 500
db2_sqltype_nsmall = 501
db2_sqltype_numeric = 504
db2_sqltype_nnumeric = 505
db2_sqltype_rowid = 904
db2_sqltype_nrowid = 905
db2_sqltype_blob_locator = 960
db2_sqltype_nblob_locator = 961
db2_sqltype_clob_locator = 964
db2_sqltype_nclob_locator = 965
db2_sqltype_dbclob_locator = 968
db2_sqltype_ndbclob_locator = 969
db2_sqltype_boolean = 2436
db2_sqltype_nboolean = 2437
db2_sqltype_fake_udt = 2000
db2_sqltype_fake_nudt = 2001
secmec_dcesec = 1
secmec_usridpwd = 3
secmec_usridonl = 4
secmec_usridnwpwd = 5
secmec_usrsbspwd = 6
secmec_usrencpwd = 7
secmec_usrssbpwd = 8
secmec_eusridpwd = 9
secmec_eusridnwpwd = 10 |
"""Config for autoscale.py
author: cuongnb14@gmail.com
"""
INFLUXDB = {
"host": "localhost",
"port" : "8086",
"username" : "root",
"password" : "root",
"db_name" : "cadvisor",
"ts_mapping" : "mapping"
}
MARATHON = {
"host" : "localhost",
"port" : "8080"
}
TIME = {
"w_config_ha" : 10,
"v_up" : 5,
"in_up" : 30,
"v_down" : 5,
"in_down" : 30,
"monitor" : 5
} | """Config for autoscale.py
author: cuongnb14@gmail.com
"""
influxdb = {'host': 'localhost', 'port': '8086', 'username': 'root', 'password': 'root', 'db_name': 'cadvisor', 'ts_mapping': 'mapping'}
marathon = {'host': 'localhost', 'port': '8080'}
time = {'w_config_ha': 10, 'v_up': 5, 'in_up': 30, 'v_down': 5, 'in_down': 30, 'monitor': 5} |
def ausgabe(liste, ende="\n", erstezeile=""):
print(erstezeile)
for element in liste:
print(element, end=ende)
def ausgabe2(liste, **kwargs):
ende = "\n" if "ende" not in kwargs else kwargs["ende"]
erstezeile = "" if "erstezeile" not in kwargs else kwargs["erstezeile"]
print(erstezeile)
for element in liste:
print(element, end=ende)
einkaufsliste = ["Milch", "Eier", "Bier"]
ausgabe(einkaufsliste)
ausgabe(einkaufsliste, " ")
print()
ausgabe(einkaufsliste, " ", "Meine Einkaufsliste:")
###
ausgabe2(einkaufsliste)
ausgabe2(einkaufsliste,ende = " ")
print()
ausgabe2(einkaufsliste, erstezeile = "Meine Einkaufsliste:")
| def ausgabe(liste, ende='\n', erstezeile=''):
print(erstezeile)
for element in liste:
print(element, end=ende)
def ausgabe2(liste, **kwargs):
ende = '\n' if 'ende' not in kwargs else kwargs['ende']
erstezeile = '' if 'erstezeile' not in kwargs else kwargs['erstezeile']
print(erstezeile)
for element in liste:
print(element, end=ende)
einkaufsliste = ['Milch', 'Eier', 'Bier']
ausgabe(einkaufsliste)
ausgabe(einkaufsliste, ' ')
print()
ausgabe(einkaufsliste, ' ', 'Meine Einkaufsliste:')
ausgabe2(einkaufsliste)
ausgabe2(einkaufsliste, ende=' ')
print()
ausgabe2(einkaufsliste, erstezeile='Meine Einkaufsliste:') |
#!/usr/bin/env python
def hello_world():
return 'Hello World!'
| def hello_world():
return 'Hello World!' |
# -*- coding: utf-8 -*-
__author__ = 'Justin Bayer, bayer.justin@googlemail.com'
__version__ = '$Id$'
""""This module is a place to hold functionality that _has_ to be outside of a
test module but is required by it."""
| __author__ = 'Justin Bayer, bayer.justin@googlemail.com'
__version__ = '$Id$'
'"This module is a place to hold functionality that _has_ to be outside of a\ntest module but is required by it.' |
def get_modification():
mod_dict = dict() # {mod_name: elements}
mod_dict['2-dimethylsuccinyl[C]'] = 'C NORMAL 144.042259 144.042259 0 H(8)C(6)O(4)'
mod_dict['2-monomethylsuccinyl[C]'] = 'C NORMAL 130.026609 130.026609 0 H(6)C(5)O(4)'
mod_dict['2-nitrobenzyl[Y]'] = 'Y NORMAL 135.032028 135.032028 0 H(5)C(7)N(1)O(2)'
mod_dict['2-succinyl[C]'] = 'C NORMAL 116.010959 116.010959 0 H(4)C(4)O(4)'
mod_dict['2HPG[R]'] = 'R NORMAL 282.052824 282.052824 0 H(10)C(16)O(5)'
mod_dict['3-deoxyglucosone[R]'] = 'R NORMAL 144.042259 144.042259 0 H(8)C(6)O(4)'
mod_dict['3-phosphoglyceryl[K]'] = 'K NORMAL 167.982375 167.982375 0 H(5)C(3)O(6)P(1)'
mod_dict['3sulfo[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 183.983029 183.983029 0 H(4)C(7)O(4)S(1)'
mod_dict['4-ONE+Delta_H(-2)O(-1)[C]'] = 'C NORMAL 136.088815 136.088815 0 H(12)C(9)O(1)'
mod_dict['4-ONE+Delta_H(-2)O(-1)[H]'] = 'H NORMAL 136.088815 136.088815 0 H(12)C(9)O(1)'
mod_dict['4-ONE+Delta_H(-2)O(-1)[K]'] = 'K NORMAL 136.088815 136.088815 0 H(12)C(9)O(1)'
mod_dict['4-ONE[C]'] = 'C NORMAL 154.099380 154.099380 0 H(14)C(9)O(2)'
mod_dict['4-ONE[H]'] = 'H NORMAL 154.099380 154.099380 0 H(14)C(9)O(2)'
mod_dict['4-ONE[K]'] = 'K NORMAL 154.099380 154.099380 0 H(14)C(9)O(2)'
mod_dict['4AcAllylGal[C]'] = 'C NORMAL 372.142033 372.142033 0 H(24)C(17)O(9)'
mod_dict['ADP-Ribosyl[C]'] = 'C NORMAL 541.061110 541.061110 0 H(21)C(15)N(5)O(13)P(2)'
mod_dict['ADP-Ribosyl[D]'] = 'D NORMAL 541.061110 541.061110 0 H(21)C(15)N(5)O(13)P(2)'
mod_dict['ADP-Ribosyl[E]'] = 'E NORMAL 541.061110 541.061110 0 H(21)C(15)N(5)O(13)P(2)'
mod_dict['ADP-Ribosyl[K]'] = 'K NORMAL 541.061110 541.061110 0 H(21)C(15)N(5)O(13)P(2)'
mod_dict['ADP-Ribosyl[N]'] = 'N NORMAL 541.061110 541.061110 0 H(21)C(15)N(5)O(13)P(2)'
mod_dict['ADP-Ribosyl[R]'] = 'R NORMAL 541.061110 541.061110 0 H(21)C(15)N(5)O(13)P(2)'
mod_dict['ADP-Ribosyl[S]'] = 'S NORMAL 541.061110 541.061110 0 H(21)C(15)N(5)O(13)P(2)'
mod_dict['AEBS[H]'] = 'H NORMAL 183.035399 183.035399 0 H(9)C(8)N(1)O(2)S(1)'
mod_dict['AEBS[K]'] = 'K NORMAL 183.035399 183.035399 0 H(9)C(8)N(1)O(2)S(1)'
mod_dict['AEBS[S]'] = 'S NORMAL 183.035399 183.035399 0 H(9)C(8)N(1)O(2)S(1)'
mod_dict['AEBS[Y]'] = 'Y NORMAL 183.035399 183.035399 0 H(9)C(8)N(1)O(2)S(1)'
mod_dict['AEBS[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 183.035399 183.035399 0 H(9)C(8)N(1)O(2)S(1)'
mod_dict['AEC-MAEC[S]'] = 'S NORMAL 59.019355 59.019355 0 H(5)C(2)N(1)O(-1)S(1)'
mod_dict['AEC-MAEC[T]'] = 'T NORMAL 59.019355 59.019355 0 H(5)C(2)N(1)O(-1)S(1)'
mod_dict['AEC-MAEC_2H(4)[S]'] = 'S NORMAL 63.044462 63.044462 0 H(1)2H(4)C(2)N(1)O(-1)S(1)'
mod_dict['AEC-MAEC_2H(4)[T]'] = 'T NORMAL 63.044462 63.044462 0 H(1)2H(4)C(2)N(1)O(-1)S(1)'
mod_dict['AHA-Alkyne-KDDDD[M]'] = 'M NORMAL 695.280074 695.280074 0 H(37)C(26)N(11)O(14)S(-1)'
mod_dict['AHA-Alkyne[M]'] = 'M NORMAL 107.077339 107.077339 0 H(5)C(4)N(5)O(1)S(-1)'
mod_dict['AHA-SS[M]'] = 'M NORMAL 195.075625 195.075625 0 H(9)C(7)N(5)O(2)'
mod_dict['AHA-SS_CAM[M]'] = 'M NORMAL 252.097088 252.097088 0 H(12)C(9)N(6)O(3)'
mod_dict['AMTzHexNAc2[N]'] = 'N NORMAL 502.202341 502.202341 0 H(30)C(19)N(6)O(10)'
mod_dict['AMTzHexNAc2[S]'] = 'S NORMAL 502.202341 502.202341 0 H(30)C(19)N(6)O(10)'
mod_dict['AMTzHexNAc2[T]'] = 'T NORMAL 502.202341 502.202341 0 H(30)C(19)N(6)O(10)'
mod_dict['AROD[C]'] = 'C NORMAL 820.336015 820.336015 0 H(52)C(35)N(10)O(9)S(2)'
mod_dict['AccQTag[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 170.048013 170.048013 0 H(6)C(10)N(2)O(1)'
mod_dict['AccQTag[K]'] = 'K NORMAL 170.048013 170.048013 0 H(6)C(10)N(2)O(1)'
mod_dict['Acetyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 42.010565 42.010565 0 H(2)C(2)O(1)'
mod_dict['Acetyl[C]'] = 'C NORMAL 42.010565 42.010565 0 H(2)C(2)O(1)'
mod_dict['Acetyl[H]'] = 'H NORMAL 42.010565 42.010565 0 H(2)C(2)O(1)'
mod_dict['Acetyl[K]'] = 'K NORMAL 42.010565 42.010565 0 H(2)C(2)O(1)'
mod_dict['Acetyl[S]'] = 'S NORMAL 42.010565 42.010565 0 H(2)C(2)O(1)'
mod_dict['Acetyl[T]'] = 'T NORMAL 42.010565 42.010565 0 H(2)C(2)O(1)'
mod_dict['Acetyl[Y]'] = 'Y NORMAL 42.010565 42.010565 0 H(2)C(2)O(1)'
mod_dict['Acetyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 42.010565 42.010565 0 H(2)C(2)O(1)'
mod_dict['Acetyl_13C(2)[K]'] = 'K NORMAL 44.017274 44.017274 0 H(2)13C(2)O(1)'
mod_dict['Acetyl_13C(2)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 44.017274 44.017274 0 H(2)13C(2)O(1)'
mod_dict['Acetyl_2H(3)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 45.029395 45.029395 0 H(-1)2H(3)C(2)O(1)'
mod_dict['Acetyl_2H(3)[H]'] = 'H NORMAL 45.029395 45.029395 0 H(-1)2H(3)C(2)O(1)'
mod_dict['Acetyl_2H(3)[K]'] = 'K NORMAL 45.029395 45.029395 0 H(-1)2H(3)C(2)O(1)'
mod_dict['Acetyl_2H(3)[S]'] = 'S NORMAL 45.029395 45.029395 0 H(-1)2H(3)C(2)O(1)'
mod_dict['Acetyl_2H(3)[T]'] = 'T NORMAL 45.029395 45.029395 0 H(-1)2H(3)C(2)O(1)'
mod_dict['Acetyl_2H(3)[Y]'] = 'Y NORMAL 45.029395 45.029395 0 H(-1)2H(3)C(2)O(1)'
mod_dict['Acetyl_2H(3)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 45.029395 45.029395 0 H(-1)2H(3)C(2)O(1)'
mod_dict['Acetyldeoxyhypusine[K]'] = 'K NORMAL 97.089149 97.089149 0 H(11)C(6)N(1)'
mod_dict['Acetylhypusine[K]'] = 'K NORMAL 113.084064 113.084064 0 H(11)C(6)N(1)O(1)'
mod_dict['Ahx2+Hsl[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 309.205242 309.205242 0 H(27)C(16)N(3)O(3)'
mod_dict['Ala->Arg[A]'] = 'A NORMAL 85.063997 85.063997 0 H(7)C(3)N(3)'
mod_dict['Ala->Asn[A]'] = 'A NORMAL 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Ala->Asp[A]'] = 'A NORMAL 43.989829 43.989829 0 C(1)O(2)'
mod_dict['Ala->Cys[A]'] = 'A NORMAL 31.972071 31.972071 0 S(1)'
mod_dict['Ala->Gln[A]'] = 'A NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Ala->Glu[A]'] = 'A NORMAL 58.005479 58.005479 0 H(2)C(2)O(2)'
mod_dict['Ala->Gly[A]'] = 'A NORMAL -14.015650 -14.015650 0 H(-2)C(-1)'
mod_dict['Ala->His[A]'] = 'A NORMAL 66.021798 66.021798 0 H(2)C(3)N(2)'
mod_dict['Ala->Lys[A]'] = 'A NORMAL 57.057849 57.057849 0 H(7)C(3)N(1)'
mod_dict['Ala->Met[A]'] = 'A NORMAL 60.003371 60.003371 0 H(4)C(2)S(1)'
mod_dict['Ala->Phe[A]'] = 'A NORMAL 76.031300 76.031300 0 H(4)C(6)'
mod_dict['Ala->Pro[A]'] = 'A NORMAL 26.015650 26.015650 0 H(2)C(2)'
mod_dict['Ala->Ser[A]'] = 'A NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Ala->Thr[A]'] = 'A NORMAL 30.010565 30.010565 0 H(2)C(1)O(1)'
mod_dict['Ala->Trp[A]'] = 'A NORMAL 115.042199 115.042199 0 H(5)C(8)N(1)'
mod_dict['Ala->Tyr[A]'] = 'A NORMAL 92.026215 92.026215 0 H(4)C(6)O(1)'
mod_dict['Ala->Val[A]'] = 'A NORMAL 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Ala->Xle[A]'] = 'A NORMAL 42.046950 42.046950 0 H(6)C(3)'
mod_dict['Amidated[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C -0.984016 -0.984016 0 H(1)N(1)O(-1)'
mod_dict['Amidated[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C -0.984016 -0.984016 0 H(1)N(1)O(-1)'
mod_dict['Amidine[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 41.026549 41.026549 0 H(3)C(2)N(1)'
mod_dict['Amidine[K]'] = 'K NORMAL 41.026549 41.026549 0 H(3)C(2)N(1)'
mod_dict['Amidino[C]'] = 'C NORMAL 42.021798 42.021798 0 H(2)C(1)N(2)'
mod_dict['Amino[Y]'] = 'Y NORMAL 15.010899 15.010899 0 H(1)N(1)'
mod_dict['Ammonia-loss[AnyN-termC]'] = 'C PEP_N -17.026549 -17.026549 0 H(-3)N(-1)'
mod_dict['Ammonia-loss[N]'] = 'N NORMAL -17.026549 -17.026549 0 H(-3)N(-1)'
mod_dict['Ammonia-loss[ProteinN-termS]'] = 'S PRO_N -17.026549 -17.026549 0 H(-3)N(-1)'
mod_dict['Ammonia-loss[ProteinN-termT]'] = 'T PRO_N -17.026549 -17.026549 0 H(-3)N(-1)'
mod_dict['Ammonium[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 17.026549 17.026549 0 H(3)N(1)'
mod_dict['Ammonium[D]'] = 'D NORMAL 17.026549 17.026549 0 H(3)N(1)'
mod_dict['Ammonium[E]'] = 'E NORMAL 17.026549 17.026549 0 H(3)N(1)'
mod_dict['Archaeol[C]'] = 'C NORMAL 634.662782 634.662782 0 H(86)C(43)O(2)'
mod_dict['Arg->Ala[R]'] = 'R NORMAL -85.063997 -85.063997 0 H(-7)C(-3)N(-3)'
mod_dict['Arg->Asn[R]'] = 'R NORMAL -42.058184 -42.058184 0 H(-6)C(-2)N(-2)O(1)'
mod_dict['Arg->Asp[R]'] = 'R NORMAL -41.074168 -41.074168 0 H(-7)C(-2)N(-3)O(2)'
mod_dict['Arg->Cys[R]'] = 'R NORMAL -53.091927 -53.091927 0 H(-7)C(-3)N(-3)S(1)'
mod_dict['Arg->Gln[R]'] = 'R NORMAL -28.042534 -28.042534 0 H(-4)C(-1)N(-2)O(1)'
mod_dict['Arg->Glu[R]'] = 'R NORMAL -27.058518 -27.058518 0 H(-5)C(-1)N(-3)O(2)'
mod_dict['Arg->GluSA[R]'] = 'R NORMAL -43.053433 -43.053433 0 H(-5)C(-1)N(-3)O(1)'
mod_dict['Arg->Gly[R]'] = 'R NORMAL -99.079647 -99.079647 0 H(-9)C(-4)N(-3)'
mod_dict['Arg->His[R]'] = 'R NORMAL -19.042199 -19.042199 0 H(-5)N(-1)'
mod_dict['Arg->Lys[R]'] = 'R NORMAL -28.006148 -28.006148 0 N(-2)'
mod_dict['Arg->Met[R]'] = 'R NORMAL -25.060626 -25.060626 0 H(-3)C(-1)N(-3)S(1)'
mod_dict['Arg->Npo[R]'] = 'R NORMAL 80.985078 80.985078 0 H(-1)C(3)N(1)O(2)'
mod_dict['Arg->Orn[R]'] = 'R NORMAL -42.021798 -42.021798 0 H(-2)C(-1)N(-2)'
mod_dict['Arg->Phe[R]'] = 'R NORMAL -9.032697 -9.032697 0 H(-3)C(3)N(-3)'
mod_dict['Arg->Pro[R]'] = 'R NORMAL -59.048347 -59.048347 0 H(-5)C(-1)N(-3)'
mod_dict['Arg->Ser[R]'] = 'R NORMAL -69.069083 -69.069083 0 H(-7)C(-3)N(-3)O(1)'
mod_dict['Arg->Thr[R]'] = 'R NORMAL -55.053433 -55.053433 0 H(-5)C(-2)N(-3)O(1)'
mod_dict['Arg->Trp[R]'] = 'R NORMAL 29.978202 29.978202 0 H(-2)C(5)N(-2)'
mod_dict['Arg->Tyr[R]'] = 'R NORMAL 6.962218 6.962218 0 H(-3)C(3)N(-3)O(1)'
mod_dict['Arg->Val[R]'] = 'R NORMAL -57.032697 -57.032697 0 H(-3)C(-1)N(-3)'
mod_dict['Arg->Xle[R]'] = 'R NORMAL -43.017047 -43.017047 0 H(-1)N(-3)'
mod_dict['Arg-loss[AnyC-termR]'] = 'R PEP_C -156.101111 -156.101111 0 H(-12)C(-6)N(-4)O(-1)'
mod_dict['Arg[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 156.101111 156.101111 0 H(12)C(6)N(4)O(1)'
mod_dict['Arg2PG[R]'] = 'R NORMAL 266.057909 266.057909 0 H(10)C(16)O(4)'
mod_dict['Argbiotinhydrazide[R]'] = 'R NORMAL 199.066699 199.066699 0 H(13)C(9)N(1)O(2)S(1)'
mod_dict['Asn->Ala[N]'] = 'N NORMAL -43.005814 -43.005814 0 H(-1)C(-1)N(-1)O(-1)'
mod_dict['Asn->Arg[N]'] = 'N NORMAL 42.058184 42.058184 0 H(6)C(2)N(2)O(-1)'
mod_dict['Asn->Cys[N]'] = 'N NORMAL -11.033743 -11.033743 0 H(-1)C(-1)N(-1)O(-1)S(1)'
mod_dict['Asn->Gly[N]'] = 'N NORMAL -57.021464 -57.021464 0 H(-3)C(-2)N(-1)O(-1)'
mod_dict['Asn->His[N]'] = 'N NORMAL 23.015984 23.015984 0 H(1)C(2)N(1)O(-1)'
mod_dict['Asn->Lys[N]'] = 'N NORMAL 14.052036 14.052036 0 H(6)C(2)O(-1)'
mod_dict['Asn->Met[N]'] = 'N NORMAL 16.997557 16.997557 0 H(3)C(1)N(-1)O(-1)S(1)'
mod_dict['Asn->Phe[N]'] = 'N NORMAL 33.025486 33.025486 0 H(3)C(5)N(-1)O(-1)'
mod_dict['Asn->Pro[N]'] = 'N NORMAL -16.990164 -16.990164 0 H(1)C(1)N(-1)O(-1)'
mod_dict['Asn->Ser[N]'] = 'N NORMAL -27.010899 -27.010899 0 H(-1)C(-1)N(-1)'
mod_dict['Asn->Thr[N]'] = 'N NORMAL -12.995249 -12.995249 0 H(1)N(-1)'
mod_dict['Asn->Trp[N]'] = 'N NORMAL 72.036386 72.036386 0 H(4)C(7)O(-1)'
mod_dict['Asn->Tyr[N]'] = 'N NORMAL 49.020401 49.020401 0 H(3)C(5)N(-1)'
mod_dict['Asn->Val[N]'] = 'N NORMAL -14.974514 -14.974514 0 H(3)C(1)N(-1)O(-1)'
mod_dict['Asn->Xle[N]'] = 'N NORMAL -0.958863 -0.958863 0 H(5)C(2)N(-1)O(-1)'
mod_dict['Asp->Ala[D]'] = 'D NORMAL -43.989829 -43.989829 0 C(-1)O(-2)'
mod_dict['Asp->Arg[D]'] = 'D NORMAL 41.074168 41.074168 0 H(7)C(2)N(3)O(-2)'
mod_dict['Asp->Asn[D]'] = 'D NORMAL -0.984016 -0.984016 0 H(1)N(1)O(-1)'
mod_dict['Asp->Cys[D]'] = 'D NORMAL -12.017759 -12.017759 0 C(-1)O(-2)S(1)'
mod_dict['Asp->Gln[D]'] = 'D NORMAL 13.031634 13.031634 0 H(3)C(1)N(1)O(-1)'
mod_dict['Asp->Gly[D]'] = 'D NORMAL -58.005479 -58.005479 0 H(-2)C(-2)O(-2)'
mod_dict['Asp->His[D]'] = 'D NORMAL 22.031969 22.031969 0 H(2)C(2)N(2)O(-2)'
mod_dict['Asp->Lys[D]'] = 'D NORMAL 13.068020 13.068020 0 H(7)C(2)N(1)O(-2)'
mod_dict['Asp->Met[D]'] = 'D NORMAL 16.013542 16.013542 0 H(4)C(1)O(-2)S(1)'
mod_dict['Asp->Phe[D]'] = 'D NORMAL 32.041471 32.041471 0 H(4)C(5)O(-2)'
mod_dict['Asp->Pro[D]'] = 'D NORMAL -17.974179 -17.974179 0 H(2)C(1)O(-2)'
mod_dict['Asp->Ser[D]'] = 'D NORMAL -27.994915 -27.994915 0 C(-1)O(-1)'
mod_dict['Asp->Thr[D]'] = 'D NORMAL -13.979265 -13.979265 0 H(2)O(-1)'
mod_dict['Asp->Trp[D]'] = 'D NORMAL 71.052370 71.052370 0 H(5)C(7)N(1)O(-2)'
mod_dict['Asp->Tyr[D]'] = 'D NORMAL 48.036386 48.036386 0 H(4)C(5)O(-1)'
mod_dict['Asp->Val[D]'] = 'D NORMAL -15.958529 -15.958529 0 H(4)C(1)O(-2)'
mod_dict['Asp->Xle[D]'] = 'D NORMAL -1.942879 -1.942879 0 H(6)C(2)O(-2)'
mod_dict['Atto495Maleimide[C]'] = 'C NORMAL 474.250515 474.250515 0 H(32)C(27)N(5)O(3)'
mod_dict['BADGE[C]'] = 'C NORMAL 340.167459 340.167459 0 H(24)C(21)O(4)'
mod_dict['BDMAPP[H]'] = 'H NORMAL 253.010225 253.010225 0 H(12)C(11)N(1)O(1)Br(1)'
mod_dict['BDMAPP[K]'] = 'K NORMAL 253.010225 253.010225 0 H(12)C(11)N(1)O(1)Br(1)'
mod_dict['BDMAPP[W]'] = 'W NORMAL 253.010225 253.010225 0 H(12)C(11)N(1)O(1)Br(1)'
mod_dict['BDMAPP[Y]'] = 'Y NORMAL 253.010225 253.010225 0 H(12)C(11)N(1)O(1)Br(1)'
mod_dict['BDMAPP[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 253.010225 253.010225 0 H(12)C(11)N(1)O(1)Br(1)'
mod_dict['BHT[C]'] = 'C NORMAL 218.167065 218.167065 0 H(22)C(15)O(1)'
mod_dict['BHT[H]'] = 'H NORMAL 218.167065 218.167065 0 H(22)C(15)O(1)'
mod_dict['BHT[K]'] = 'K NORMAL 218.167065 218.167065 0 H(22)C(15)O(1)'
mod_dict['BHTOH[C]'] = 'C NORMAL 234.161980 234.161980 0 H(22)C(15)O(2)'
mod_dict['BHTOH[H]'] = 'H NORMAL 234.161980 234.161980 0 H(22)C(15)O(2)'
mod_dict['BHTOH[K]'] = 'K NORMAL 234.161980 234.161980 0 H(22)C(15)O(2)'
mod_dict['BITC[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 149.029920 149.029920 0 H(7)C(8)N(1)S(1)'
mod_dict['BITC[C]'] = 'C NORMAL 149.029920 149.029920 0 H(7)C(8)N(1)S(1)'
mod_dict['BITC[K]'] = 'K NORMAL 149.029920 149.029920 0 H(7)C(8)N(1)S(1)'
mod_dict['BMOE[C]'] = 'C NORMAL 220.048407 220.048407 0 H(8)C(10)N(2)O(4)'
mod_dict['BMP-piperidinol[C]'] = 'C NORMAL 263.131014 263.131014 0 H(17)C(18)N(1)O(1)'
mod_dict['BMP-piperidinol[M]'] = 'M NORMAL 263.131014 263.131014 0 H(17)C(18)N(1)O(1)'
mod_dict['Bacillosamine[N]'] = 'N NORMAL 228.111007 228.111007 0 H(16)C(10)N(2)O(4)'
mod_dict['Benzoyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 104.026215 104.026215 0 H(4)C(7)O(1)'
mod_dict['Benzoyl[K]'] = 'K NORMAL 104.026215 104.026215 0 H(4)C(7)O(1)'
mod_dict['Biotin-HPDP[C]'] = 'C NORMAL 428.191582 428.191582 0 H(32)C(19)N(4)O(3)S(2)'
mod_dict['Biotin-PEG-PRA[M]'] = 'M NORMAL 578.317646 578.317646 0 H(42)C(26)N(8)O(7)'
mod_dict['Biotin-PEO-Amine[D]'] = 'D NORMAL 356.188212 356.188212 0 H(28)C(16)N(4)O(3)S(1)'
mod_dict['Biotin-PEO-Amine[E]'] = 'E NORMAL 356.188212 356.188212 0 H(28)C(16)N(4)O(3)S(1)'
mod_dict['Biotin-PEO-Amine[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C 356.188212 356.188212 0 H(28)C(16)N(4)O(3)S(1)'
mod_dict['Biotin-phenacyl[C]'] = 'C NORMAL 626.263502 626.263502 0 H(38)C(29)N(8)O(6)S(1)'
mod_dict['Biotin-phenacyl[H]'] = 'H NORMAL 626.263502 626.263502 0 H(38)C(29)N(8)O(6)S(1)'
mod_dict['Biotin-phenacyl[S]'] = 'S NORMAL 626.263502 626.263502 0 H(38)C(29)N(8)O(6)S(1)'
mod_dict['Biotin[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 226.077598 226.077598 0 H(14)C(10)N(2)O(2)S(1)'
mod_dict['Biotin[K]'] = 'K NORMAL 226.077598 226.077598 0 H(14)C(10)N(2)O(2)S(1)'
mod_dict['Biotin_Cayman-10013[C]'] = 'C NORMAL 660.428442 660.428442 0 H(60)C(36)N(4)O(5)S(1)'
mod_dict['Biotin_Cayman-10141[C]'] = 'C NORMAL 626.386577 626.386577 0 H(54)C(35)N(4)O(4)S(1)'
mod_dict['Biotin_Invitrogen-M1602[C]'] = 'C NORMAL 523.210069 523.210069 0 H(33)C(23)N(5)O(7)S(1)'
mod_dict['Biotin_Sigma-B1267[C]'] = 'C NORMAL 449.173290 449.173290 0 H(27)C(20)N(5)O(5)S(1)'
mod_dict['Biotin_Thermo-21325[K]'] = 'K NORMAL 695.310118 695.310118 0 H(45)C(34)N(7)O(7)S(1)'
mod_dict['Biotin_Thermo-21345[Q]'] = 'Q NORMAL 311.166748 311.166748 0 H(25)C(15)N(3)O(2)S(1)'
mod_dict['Biotin_Thermo-21360[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 487.246455 487.246455 0 H(37)C(21)N(5)O(6)S(1)'
mod_dict['Biotin_Thermo-21901+2H2O[C]'] = 'C NORMAL 561.246849 561.246849 0 H(39)C(23)N(5)O(9)S(1)'
mod_dict['Biotin_Thermo-21901+H2O[C]'] = 'C NORMAL 543.236284 543.236284 0 H(37)C(23)N(5)O(8)S(1)'
mod_dict['Biotin_Thermo-21911[C]'] = 'C NORMAL 921.461652 921.461652 0 H(71)C(41)N(5)O(16)S(1)'
mod_dict['Biotin_Thermo-33033-H[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 546.208295 546.208295 0 H(34)C(25)N(6)O(4)S(2)'
mod_dict['Biotin_Thermo-33033[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 548.223945 548.223945 0 H(36)C(25)N(6)O(4)S(2)'
mod_dict['Biotin_Thermo-88310[K]'] = 'K NORMAL 196.121178 196.121178 0 H(16)C(10)N(2)O(2)'
mod_dict['Biotin_Thermo-88317[S]'] = 'S NORMAL 443.291294 443.291294 0 H(42)C(22)N(3)O(4)P(1)'
mod_dict['Biotin_Thermo-88317[Y]'] = 'Y NORMAL 443.291294 443.291294 0 H(42)C(22)N(3)O(4)P(1)'
mod_dict['BisANS[K]'] = 'K NORMAL 594.091928 594.091928 0 H(22)C(32)N(2)O(6)S(2)'
mod_dict['Bodipy[C]'] = 'C NORMAL 414.167478 414.167478 0 H(21)B(1)C(20)N(4)O(3)F(2)'
mod_dict['Bromo[F]'] = 'F NORMAL 77.910511 77.910511 0 H(-1)Br(1)'
mod_dict['Bromo[H]'] = 'H NORMAL 77.910511 77.910511 0 H(-1)Br(1)'
mod_dict['Bromo[W]'] = 'W NORMAL 77.910511 77.910511 0 H(-1)Br(1)'
mod_dict['Bromo[Y]'] = 'Y NORMAL 77.910511 77.910511 0 H(-1)Br(1)'
mod_dict['Bromobimane[C]'] = 'C NORMAL 190.074228 190.074228 0 H(10)C(10)N(2)O(2)'
mod_dict['Butyryl[K]'] = 'K NORMAL 70.041865 70.041865 0 H(6)C(4)O(1)'
mod_dict['C+12[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 12.000000 12.000000 0 C(1)'
mod_dict['C8-QAT[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 227.224915 227.224915 0 H(29)C(14)N(1)O(1)'
mod_dict['C8-QAT[K]'] = 'K NORMAL 227.224915 227.224915 0 H(29)C(14)N(1)O(1)'
mod_dict['CAF[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 135.983029 135.983029 0 H(4)C(3)O(4)S(1)'
mod_dict['CAMthiopropanoyl[K]'] = 'K NORMAL 145.019749 145.019749 0 H(7)C(5)N(1)O(2)S(1)'
mod_dict['CAMthiopropanoyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 145.019749 145.019749 0 H(7)C(5)N(1)O(2)S(1)'
mod_dict['CHDH[D]'] = 'D NORMAL 294.183109 294.183109 0 H(26)C(17)O(4)'
mod_dict['CLIP_TRAQ_2[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 141.098318 141.098318 0 H(12)C(6)13C(1)N(2)O(1)'
mod_dict['CLIP_TRAQ_2[K]'] = 'K NORMAL 141.098318 141.098318 0 H(12)C(6)13C(1)N(2)O(1)'
mod_dict['CLIP_TRAQ_2[Y]'] = 'Y NORMAL 141.098318 141.098318 0 H(12)C(6)13C(1)N(2)O(1)'
mod_dict['CLIP_TRAQ_3[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 271.148736 271.148736 0 H(20)C(11)13C(1)N(3)O(4)'
mod_dict['CLIP_TRAQ_3[K]'] = 'K NORMAL 271.148736 271.148736 0 H(20)C(11)13C(1)N(3)O(4)'
mod_dict['CLIP_TRAQ_3[Y]'] = 'Y NORMAL 271.148736 271.148736 0 H(20)C(11)13C(1)N(3)O(4)'
mod_dict['CLIP_TRAQ_4[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 244.101452 244.101452 0 H(15)C(9)13C(1)N(2)O(5)'
mod_dict['CLIP_TRAQ_4[K]'] = 'K NORMAL 244.101452 244.101452 0 H(15)C(9)13C(1)N(2)O(5)'
mod_dict['CLIP_TRAQ_4[Y]'] = 'Y NORMAL 244.101452 244.101452 0 H(15)C(9)13C(1)N(2)O(5)'
mod_dict['Can-FP-biotin[S]'] = 'S NORMAL 447.195679 447.195679 0 H(34)C(19)N(3)O(5)P(1)S(1)'
mod_dict['Can-FP-biotin[T]'] = 'T NORMAL 447.195679 447.195679 0 H(34)C(19)N(3)O(5)P(1)S(1)'
mod_dict['Can-FP-biotin[Y]'] = 'Y NORMAL 447.195679 447.195679 0 H(34)C(19)N(3)O(5)P(1)S(1)'
mod_dict['Carbamidomethyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Carbamidomethyl[C]'] = 'C NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Carbamidomethyl[D]'] = 'D NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Carbamidomethyl[E]'] = 'E NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Carbamidomethyl[H]'] = 'H NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Carbamidomethyl[K]'] = 'K NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Carbamidomethyl[S]'] = 'S NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Carbamidomethyl[T]'] = 'T NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Carbamidomethyl[Y]'] = 'Y NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['CarbamidomethylDTT[C]'] = 'C NORMAL 209.018035 209.018035 0 H(11)C(6)N(1)O(3)S(2)'
mod_dict['Carbamyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Carbamyl[C]'] = 'C NORMAL 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Carbamyl[K]'] = 'K NORMAL 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Carbamyl[M]'] = 'M NORMAL 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Carbamyl[R]'] = 'R NORMAL 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Carbamyl[S]'] = 'S NORMAL 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Carbamyl[T]'] = 'T NORMAL 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Carbamyl[Y]'] = 'Y NORMAL 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Carbamyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Carbofuran[S]'] = 'S NORMAL 58.029289 58.029289 0 H(4)C(2)N(1)O(1)'
mod_dict['Carboxy->Thiocarboxy[ProteinC-termG]'] = 'G PRO_C 15.977156 15.977156 0 O(-1)S(1)'
mod_dict['Carboxy[D]'] = 'D NORMAL 43.989829 43.989829 0 C(1)O(2)'
mod_dict['Carboxy[E]'] = 'E NORMAL 43.989829 43.989829 0 C(1)O(2)'
mod_dict['Carboxy[K]'] = 'K NORMAL 43.989829 43.989829 0 C(1)O(2)'
mod_dict['Carboxy[W]'] = 'W NORMAL 43.989829 43.989829 0 C(1)O(2)'
mod_dict['Carboxy[ProteinN-termM]'] = 'M PRO_N 43.989829 43.989829 0 C(1)O(2)'
mod_dict['Carboxyethyl[H]'] = 'H NORMAL 72.021129 72.021129 0 H(4)C(3)O(2)'
mod_dict['Carboxyethyl[K]'] = 'K NORMAL 72.021129 72.021129 0 H(4)C(3)O(2)'
mod_dict['Carboxymethyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 58.005479 58.005479 0 H(2)C(2)O(2)'
mod_dict['Carboxymethyl[C]'] = 'C NORMAL 58.005479 58.005479 0 H(2)C(2)O(2)'
mod_dict['Carboxymethyl[K]'] = 'K NORMAL 58.005479 58.005479 0 H(2)C(2)O(2)'
mod_dict['Carboxymethyl[W]'] = 'W NORMAL 58.005479 58.005479 0 H(2)C(2)O(2)'
mod_dict['CarboxymethylDMAP[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 162.079313 162.079313 0 H(10)C(9)N(2)O(1)'
mod_dict['CarboxymethylDTT[C]'] = 'C NORMAL 210.002050 210.002050 0 H(10)C(6)O(4)S(2)'
mod_dict['Carboxymethyl_13C(2)[C]'] = 'C NORMAL 60.012189 60.012189 0 H(2)13C(2)O(2)'
mod_dict['Cation_Ag[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 105.897267 105.897267 0 H(-1)Ag(1)'
mod_dict['Cation_Ag[D]'] = 'D NORMAL 105.897267 105.897267 0 H(-1)Ag(1)'
mod_dict['Cation_Ag[E]'] = 'E NORMAL 105.897267 105.897267 0 H(-1)Ag(1)'
mod_dict['Cation_Ca[II][AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 37.946941 37.946941 0 H(-2)Ca(1)'
mod_dict['Cation_Ca[II][D]'] = 'D NORMAL 37.946941 37.946941 0 H(-2)Ca(1)'
mod_dict['Cation_Ca[II][E]'] = 'E NORMAL 37.946941 37.946941 0 H(-2)Ca(1)'
mod_dict['Cation_Cu[I][AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 61.921774 61.921774 0 H(-1)Cu(1)'
mod_dict['Cation_Cu[I][D]'] = 'D NORMAL 61.921774 61.921774 0 H(-1)Cu(1)'
mod_dict['Cation_Cu[I][E]'] = 'E NORMAL 61.921774 61.921774 0 H(-1)Cu(1)'
mod_dict['Cation_Fe[II][AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 53.919289 53.919289 0 H(-2)Fe(1)'
mod_dict['Cation_Fe[II][D]'] = 'D NORMAL 53.919289 53.919289 0 H(-2)Fe(1)'
mod_dict['Cation_Fe[II][E]'] = 'E NORMAL 53.919289 53.919289 0 H(-2)Fe(1)'
mod_dict['Cation_K[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 37.955882 37.955882 0 H(-1)K(1)'
mod_dict['Cation_K[D]'] = 'D NORMAL 37.955882 37.955882 0 H(-1)K(1)'
mod_dict['Cation_K[E]'] = 'E NORMAL 37.955882 37.955882 0 H(-1)K(1)'
mod_dict['Cation_Li[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 6.008178 6.008178 0 H(-1)Li(1)'
mod_dict['Cation_Li[D]'] = 'D NORMAL 6.008178 6.008178 0 H(-1)Li(1)'
mod_dict['Cation_Li[E]'] = 'E NORMAL 6.008178 6.008178 0 H(-1)Li(1)'
mod_dict['Cation_Mg[II][AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 21.969392 21.969392 0 H(-2)Mg(1)'
mod_dict['Cation_Mg[II][D]'] = 'D NORMAL 21.969392 21.969392 0 H(-2)Mg(1)'
mod_dict['Cation_Mg[II][E]'] = 'E NORMAL 21.969392 21.969392 0 H(-2)Mg(1)'
mod_dict['Cation_Na[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 21.981943 21.981943 0 H(-1)Na(1)'
mod_dict['Cation_Na[D]'] = 'D NORMAL 21.981943 21.981943 0 H(-1)Na(1)'
mod_dict['Cation_Na[E]'] = 'E NORMAL 21.981943 21.981943 0 H(-1)Na(1)'
mod_dict['Cation_Ni[II][AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 55.919696 55.919696 0 H(-2)Ni(1)'
mod_dict['Cation_Ni[II][D]'] = 'D NORMAL 55.919696 55.919696 0 H(-2)Ni(1)'
mod_dict['Cation_Ni[II][E]'] = 'E NORMAL 55.919696 55.919696 0 H(-2)Ni(1)'
mod_dict['Cation_Zn[II][AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 61.913495 61.913495 0 H(-2)Zn(1)'
mod_dict['Cation_Zn[II][D]'] = 'D NORMAL 61.913495 61.913495 0 H(-2)Zn(1)'
mod_dict['Cation_Zn[II][E]'] = 'E NORMAL 61.913495 61.913495 0 H(-2)Zn(1)'
mod_dict['Chlorination[Y]'] = 'Y NORMAL 34.968853 34.968853 0 Cl(1)'
mod_dict['Chlorpyrifos[S]'] = 'S NORMAL 153.013912 153.013912 0 H(10)C(4)O(2)P(1)S(1)'
mod_dict['Chlorpyrifos[T]'] = 'T NORMAL 153.013912 153.013912 0 H(10)C(4)O(2)P(1)S(1)'
mod_dict['Chlorpyrifos[Y]'] = 'Y NORMAL 153.013912 153.013912 0 H(10)C(4)O(2)P(1)S(1)'
mod_dict['Cholesterol[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C 368.344302 368.344302 0 H(44)C(27)'
mod_dict['CoenzymeA[C]'] = 'C NORMAL 765.099560 765.099560 0 H(34)C(21)N(7)O(16)P(3)S(1)'
mod_dict['CresylSaligeninPhosphate[H]'] = 'H NORMAL 276.055146 276.055146 0 H(13)C(14)O(4)P(1)'
mod_dict['CresylSaligeninPhosphate[K]'] = 'K NORMAL 276.055146 276.055146 0 H(13)C(14)O(4)P(1)'
mod_dict['CresylSaligeninPhosphate[R]'] = 'R NORMAL 276.055146 276.055146 0 H(13)C(14)O(4)P(1)'
mod_dict['CresylSaligeninPhosphate[S]'] = 'S NORMAL 276.055146 276.055146 0 H(13)C(14)O(4)P(1)'
mod_dict['CresylSaligeninPhosphate[T]'] = 'T NORMAL 276.055146 276.055146 0 H(13)C(14)O(4)P(1)'
mod_dict['CresylSaligeninPhosphate[Y]'] = 'Y NORMAL 276.055146 276.055146 0 H(13)C(14)O(4)P(1)'
mod_dict['Cresylphosphate[H]'] = 'H NORMAL 170.013281 170.013281 0 H(7)C(7)O(3)P(1)'
mod_dict['Cresylphosphate[K]'] = 'K NORMAL 170.013281 170.013281 0 H(7)C(7)O(3)P(1)'
mod_dict['Cresylphosphate[R]'] = 'R NORMAL 170.013281 170.013281 0 H(7)C(7)O(3)P(1)'
mod_dict['Cresylphosphate[S]'] = 'S NORMAL 170.013281 170.013281 0 H(7)C(7)O(3)P(1)'
mod_dict['Cresylphosphate[T]'] = 'T NORMAL 170.013281 170.013281 0 H(7)C(7)O(3)P(1)'
mod_dict['Cresylphosphate[Y]'] = 'Y NORMAL 170.013281 170.013281 0 H(7)C(7)O(3)P(1)'
mod_dict['Crotonaldehyde[C]'] = 'C NORMAL 70.041865 70.041865 0 H(6)C(4)O(1)'
mod_dict['Crotonaldehyde[H]'] = 'H NORMAL 70.041865 70.041865 0 H(6)C(4)O(1)'
mod_dict['Crotonyl[K]'] = 'K NORMAL 68.026215 68.026215 0 H(4)C(4)O(1)'
mod_dict['CuSMo[C]'] = 'C NORMAL 922.834855 922.834855 0 H(24)C(19)N(8)O(15)P(2)S(3)Cu(1)Mo(1)'
mod_dict['Cy3-maleimide[C]'] = 'C NORMAL 753.262796 753.262796 0 H(45)C(37)N(4)O(9)S(2)'
mod_dict['Cy3b-maleimide[C]'] = 'C NORMAL 682.246120 682.246120 0 H(38)C(37)N(4)O(7)S(1)'
mod_dict['CyDye-Cy3[C]'] = 'C NORMAL 672.298156 672.298156 0 H(44)C(37)N(4)O(6)S(1)'
mod_dict['CyDye-Cy5[C]'] = 'C NORMAL 684.298156 684.298156 0 H(44)C(38)N(4)O(6)S(1)'
mod_dict['Cyano[C]'] = 'C NORMAL 24.995249 24.995249 0 H(-1)C(1)N(1)'
mod_dict['Cys->Ala[C]'] = 'C NORMAL -31.972071 -31.972071 0 S(-1)'
mod_dict['Cys->Arg[C]'] = 'C NORMAL 53.091927 53.091927 0 H(7)C(3)N(3)S(-1)'
mod_dict['Cys->Asn[C]'] = 'C NORMAL 11.033743 11.033743 0 H(1)C(1)N(1)O(1)S(-1)'
mod_dict['Cys->Asp[C]'] = 'C NORMAL 12.017759 12.017759 0 C(1)O(2)S(-1)'
mod_dict['Cys->Dha[C]'] = 'C NORMAL -33.987721 -33.987721 0 H(-2)S(-1)'
mod_dict['Cys->Gln[C]'] = 'C NORMAL 25.049393 25.049393 0 H(3)C(2)N(1)O(1)S(-1)'
mod_dict['Cys->Glu[C]'] = 'C NORMAL 26.033409 26.033409 0 H(2)C(2)O(2)S(-1)'
mod_dict['Cys->Gly[C]'] = 'C NORMAL -45.987721 -45.987721 0 H(-2)C(-1)S(-1)'
mod_dict['Cys->His[C]'] = 'C NORMAL 34.049727 34.049727 0 H(2)C(3)N(2)S(-1)'
mod_dict['Cys->Lys[C]'] = 'C NORMAL 25.085779 25.085779 0 H(7)C(3)N(1)S(-1)'
mod_dict['Cys->Met[C]'] = 'C NORMAL 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Cys->Oxoalanine[C]'] = 'C NORMAL -17.992806 -17.992806 0 H(-2)O(1)S(-1)'
mod_dict['Cys->Phe[C]'] = 'C NORMAL 44.059229 44.059229 0 H(4)C(6)S(-1)'
mod_dict['Cys->Pro[C]'] = 'C NORMAL -5.956421 -5.956421 0 H(2)C(2)S(-1)'
mod_dict['Cys->PyruvicAcid[ProteinN-termC]'] = 'C PRO_N -33.003705 -33.003705 0 H(-3)N(-1)O(1)S(-1)'
mod_dict['Cys->Ser[C]'] = 'C NORMAL -15.977156 -15.977156 0 O(1)S(-1)'
mod_dict['Cys->Thr[C]'] = 'C NORMAL -1.961506 -1.961506 0 H(2)C(1)O(1)S(-1)'
mod_dict['Cys->Trp[C]'] = 'C NORMAL 83.070128 83.070128 0 H(5)C(8)N(1)S(-1)'
mod_dict['Cys->Tyr[C]'] = 'C NORMAL 60.054144 60.054144 0 H(4)C(6)O(1)S(-1)'
mod_dict['Cys->Val[C]'] = 'C NORMAL -3.940771 -3.940771 0 H(4)C(2)S(-1)'
mod_dict['Cys->Xle[C]'] = 'C NORMAL 10.074880 10.074880 0 H(6)C(3)S(-1)'
mod_dict['Cys->ethylaminoAla[C]'] = 'C NORMAL 11.070128 11.070128 0 H(5)C(2)N(1)S(-1)'
mod_dict['Cys->methylaminoAla[C]'] = 'C NORMAL -2.945522 -2.945522 0 H(3)C(1)N(1)S(-1)'
mod_dict['Cysteinyl[C]'] = 'C NORMAL 119.004099 119.004099 0 H(5)C(3)N(1)O(2)S(1)'
mod_dict['Cytopiloyne+water[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 380.147118 380.147118 0 H(24)C(19)O(8)'
mod_dict['Cytopiloyne+water[C]'] = 'C NORMAL 380.147118 380.147118 0 H(24)C(19)O(8)'
mod_dict['Cytopiloyne+water[K]'] = 'K NORMAL 380.147118 380.147118 0 H(24)C(19)O(8)'
mod_dict['Cytopiloyne+water[R]'] = 'R NORMAL 380.147118 380.147118 0 H(24)C(19)O(8)'
mod_dict['Cytopiloyne+water[S]'] = 'S NORMAL 380.147118 380.147118 0 H(24)C(19)O(8)'
mod_dict['Cytopiloyne+water[T]'] = 'T NORMAL 380.147118 380.147118 0 H(24)C(19)O(8)'
mod_dict['Cytopiloyne+water[Y]'] = 'Y NORMAL 380.147118 380.147118 0 H(24)C(19)O(8)'
mod_dict['Cytopiloyne[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 362.136553 362.136553 0 H(22)C(19)O(7)'
mod_dict['Cytopiloyne[C]'] = 'C NORMAL 362.136553 362.136553 0 H(22)C(19)O(7)'
mod_dict['Cytopiloyne[K]'] = 'K NORMAL 362.136553 362.136553 0 H(22)C(19)O(7)'
mod_dict['Cytopiloyne[P]'] = 'P NORMAL 362.136553 362.136553 0 H(22)C(19)O(7)'
mod_dict['Cytopiloyne[R]'] = 'R NORMAL 362.136553 362.136553 0 H(22)C(19)O(7)'
mod_dict['Cytopiloyne[S]'] = 'S NORMAL 362.136553 362.136553 0 H(22)C(19)O(7)'
mod_dict['Cytopiloyne[Y]'] = 'Y NORMAL 362.136553 362.136553 0 H(22)C(19)O(7)'
mod_dict['DAET[S]'] = 'S NORMAL 87.050655 87.050655 0 H(9)C(4)N(1)O(-1)S(1)'
mod_dict['DAET[T]'] = 'T NORMAL 87.050655 87.050655 0 H(9)C(4)N(1)O(-1)S(1)'
mod_dict['DEDGFLYMVYASQETFG[K]'] = 'K NORMAL 1970.824411 1970.824411 1 18.010565 18.010565 H(122)C(89)N(18)O(31)S(1)'
mod_dict['DFDNB[K]'] = 'K NORMAL 203.998263 203.998263 0 H(2)C(6)N(2)O(4)F(2)'
mod_dict['DFDNB[N]'] = 'N NORMAL 203.998263 203.998263 0 H(2)C(6)N(2)O(4)F(2)'
mod_dict['DFDNB[Q]'] = 'Q NORMAL 203.998263 203.998263 0 H(2)C(6)N(2)O(4)F(2)'
mod_dict['DFDNB[R]'] = 'R NORMAL 203.998263 203.998263 0 H(2)C(6)N(2)O(4)F(2)'
mod_dict['DHP[C]'] = 'C NORMAL 118.065674 118.065674 0 H(8)C(8)N(1)'
mod_dict['DMPO[C]'] = 'C NORMAL 111.068414 111.068414 0 H(9)C(6)N(1)O(1)'
mod_dict['DMPO[H]'] = 'H NORMAL 111.068414 111.068414 0 H(9)C(6)N(1)O(1)'
mod_dict['DMPO[Y]'] = 'Y NORMAL 111.068414 111.068414 0 H(9)C(6)N(1)O(1)'
mod_dict['DNCB_hapten[C]'] = 'C NORMAL 166.001457 166.001457 0 H(2)C(6)N(2)O(4)'
mod_dict['DNCB_hapten[H]'] = 'H NORMAL 166.001457 166.001457 0 H(2)C(6)N(2)O(4)'
mod_dict['DNCB_hapten[K]'] = 'K NORMAL 166.001457 166.001457 0 H(2)C(6)N(2)O(4)'
mod_dict['DNCB_hapten[Y]'] = 'Y NORMAL 166.001457 166.001457 0 H(2)C(6)N(2)O(4)'
mod_dict['DNPS[C]'] = 'C NORMAL 198.981352 198.981352 0 H(3)C(6)N(2)O(4)S(1)'
mod_dict['DNPS[W]'] = 'W NORMAL 198.981352 198.981352 0 H(3)C(6)N(2)O(4)S(1)'
mod_dict['DTBP[K]'] = 'K NORMAL 87.014270 87.014270 0 H(5)C(3)N(1)S(1)'
mod_dict['DTBP[N]'] = 'N NORMAL 87.014270 87.014270 0 H(5)C(3)N(1)S(1)'
mod_dict['DTBP[Q]'] = 'Q NORMAL 87.014270 87.014270 0 H(5)C(3)N(1)S(1)'
mod_dict['DTBP[R]'] = 'R NORMAL 87.014270 87.014270 0 H(5)C(3)N(1)S(1)'
mod_dict['DTBP[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 87.014270 87.014270 0 H(5)C(3)N(1)S(1)'
mod_dict['DTT_C_2H(6)[C]'] = 'C NORMAL 126.062161 126.062161 0 H(2)2H(6)C(4)O(2)S(1)'
mod_dict['DTT_ST[S]'] = 'S NORMAL 136.001656 136.001656 0 H(8)C(4)O(1)S(2)'
mod_dict['DTT_ST[T]'] = 'T NORMAL 136.001656 136.001656 0 H(8)C(4)O(1)S(2)'
mod_dict['DTT_ST_2H(6)[S]'] = 'S NORMAL 142.039317 142.039317 0 H(2)2H(6)C(4)O(1)S(2)'
mod_dict['DTT_ST_2H(6)[T]'] = 'T NORMAL 142.039317 142.039317 0 H(2)2H(6)C(4)O(1)S(2)'
mod_dict['Dansyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 233.051049 233.051049 0 H(11)C(12)N(1)O(2)S(1)'
mod_dict['Dansyl[K]'] = 'K NORMAL 233.051049 233.051049 0 H(11)C(12)N(1)O(2)S(1)'
mod_dict['Dap-DSP[A]'] = 'A NORMAL 328.055148 328.055148 0 H(16)C(13)N(2)O(4)S(2)'
mod_dict['Dap-DSP[E]'] = 'E NORMAL 328.055148 328.055148 0 H(16)C(13)N(2)O(4)S(2)'
mod_dict['Dap-DSP[K]'] = 'K NORMAL 328.055148 328.055148 0 H(16)C(13)N(2)O(4)S(2)'
mod_dict['DeStreak[C]'] = 'C NORMAL 75.998285 75.998285 0 H(4)C(2)O(1)S(1)'
mod_dict['Deamidated[N]'] = 'N NORMAL 0.984016 0.984016 0 H(-1)N(-1)O(1)'
mod_dict['Deamidated[Q]'] = 'Q NORMAL 0.984016 0.984016 0 H(-1)N(-1)O(1)'
mod_dict['Deamidated[R]'] = 'R NORMAL 0.984016 0.984016 0 H(-1)N(-1)O(1)'
mod_dict['Deamidated[ProteinN-termF]'] = 'F PRO_N 0.984016 0.984016 0 H(-1)N(-1)O(1)'
mod_dict['Deamidated_18O(1)[Q]'] = 'Q NORMAL 2.988261 2.988261 0 H(-1)N(-1)18O(1)'
mod_dict['Decanoyl[S]'] = 'S NORMAL 154.135765 154.135765 0 H(18)C(10)O(1)'
mod_dict['Decanoyl[T]'] = 'T NORMAL 154.135765 154.135765 0 H(18)C(10)O(1)'
mod_dict['Dehydrated[AnyN-termC]'] = 'C PEP_N -18.010565 -18.010565 0 H(-2)O(-1)'
mod_dict['Dehydrated[D]'] = 'D NORMAL -18.010565 -18.010565 0 H(-2)O(-1)'
mod_dict['Dehydrated[S]'] = 'S NORMAL -18.010565 -18.010565 0 H(-2)O(-1)'
mod_dict['Dehydrated[T]'] = 'T NORMAL -18.010565 -18.010565 0 H(-2)O(-1)'
mod_dict['Dehydrated[Y]'] = 'Y NORMAL -18.010565 -18.010565 0 H(-2)O(-1)'
mod_dict['Dehydrated[ProteinC-termN]'] = 'N PRO_C -18.010565 -18.010565 0 H(-2)O(-1)'
mod_dict['Dehydrated[ProteinC-termQ]'] = 'Q PRO_C -18.010565 -18.010565 0 H(-2)O(-1)'
mod_dict['Dehydro[C]'] = 'C NORMAL -1.007825 -1.007825 0 H(-1)'
mod_dict['Delta_H(1)O(-1)18O(1)[N]'] = 'N NORMAL 2.988261 2.988261 0 H(-1)N(-1)18O(1)'
mod_dict['Delta_H(2)C(2)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 26.015650 26.015650 0 H(2)C(2)'
mod_dict['Delta_H(2)C(2)[H]'] = 'H NORMAL 26.015650 26.015650 0 H(2)C(2)'
mod_dict['Delta_H(2)C(2)[K]'] = 'K NORMAL 26.015650 26.015650 0 H(2)C(2)'
mod_dict['Delta_H(2)C(2)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 26.015650 26.015650 0 H(2)C(2)'
mod_dict['Delta_H(2)C(3)[K]'] = 'K NORMAL 38.015650 38.015650 0 H(2)C(3)'
mod_dict['Delta_H(2)C(3)O(1)[K]'] = 'K NORMAL 54.010565 54.010565 0 H(2)C(3)O(1)'
mod_dict['Delta_H(2)C(5)[K]'] = 'K NORMAL 62.015650 62.015650 0 H(2)C(5)'
mod_dict['Delta_H(4)C(2)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Delta_H(4)C(2)[H]'] = 'H NORMAL 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Delta_H(4)C(2)[K]'] = 'K NORMAL 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Delta_H(4)C(2)O(-1)S(1)[S]'] = 'S NORMAL 44.008456 44.008456 0 H(4)C(2)O(-1)S(1)'
mod_dict['Delta_H(4)C(3)[H]'] = 'H NORMAL 40.031300 40.031300 0 H(4)C(3)'
mod_dict['Delta_H(4)C(3)[K]'] = 'K NORMAL 40.031300 40.031300 0 H(4)C(3)'
mod_dict['Delta_H(4)C(3)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 40.031300 40.031300 0 H(4)C(3)'
mod_dict['Delta_H(4)C(3)O(1)[C]'] = 'C NORMAL 56.026215 56.026215 0 H(4)C(3)O(1)'
mod_dict['Delta_H(4)C(3)O(1)[H]'] = 'H NORMAL 56.026215 56.026215 0 H(4)C(3)O(1)'
mod_dict['Delta_H(4)C(6)[K]'] = 'K NORMAL 76.031300 76.031300 0 H(4)C(6)'
mod_dict['Delta_H(5)C(2)[P]'] = 'P NORMAL 29.039125 29.039125 0 H(5)C(2)'
mod_dict['Delta_H(6)C(3)O(1)[C]'] = 'C NORMAL 58.041865 58.041865 0 H(6)C(3)O(1)'
mod_dict['Delta_H(6)C(3)O(1)[H]'] = 'H NORMAL 58.041865 58.041865 0 H(6)C(3)O(1)'
mod_dict['Delta_H(6)C(3)O(1)[K]'] = 'K NORMAL 58.041865 58.041865 0 H(6)C(3)O(1)'
mod_dict['Delta_H(6)C(3)O(1)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 58.041865 58.041865 0 H(6)C(3)O(1)'
mod_dict['Delta_H(6)C(6)O(1)[K]'] = 'K NORMAL 94.041865 94.041865 0 H(6)C(6)O(1)'
mod_dict['Delta_H(8)C(6)O(1)[L]'] = 'L NORMAL 96.057515 96.057515 0 H(8)C(6)O(1)'
mod_dict['Delta_H(8)C(6)O(1)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 96.057515 96.057515 0 H(8)C(6)O(1)'
mod_dict['Delta_H(8)C(6)O(2)[K]'] = 'K NORMAL 112.052430 112.052430 0 H(8)C(6)O(2)'
mod_dict['Delta_Hg(1)[C]'] = 'C NORMAL 201.970617 201.970617 0 Hg(1)'
mod_dict['Delta_S(-1)Se(1)[C]'] = 'C NORMAL 47.944449 47.944449 0 S(-1)Se(1)'
mod_dict['Delta_S(-1)Se(1)[M]'] = 'M NORMAL 47.944449 47.944449 0 S(-1)Se(1)'
mod_dict['Delta_Se(1)[C]'] = 'C NORMAL 79.916520 79.916520 0 Se(1)'
mod_dict['Deoxy[D]'] = 'D NORMAL -15.994915 -15.994915 0 O(-1)'
mod_dict['Deoxy[S]'] = 'S NORMAL -15.994915 -15.994915 0 O(-1)'
mod_dict['Deoxy[T]'] = 'T NORMAL -15.994915 -15.994915 0 O(-1)'
mod_dict['Deoxyhypusine[K]'] = 'K NORMAL 71.073499 71.073499 0 H(9)C(4)N(1)'
mod_dict['Dethiomethyl[M]'] = 'M NORMAL -48.003371 -48.003371 0 H(-4)C(-1)S(-1)'
mod_dict['DiART6plex[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 217.162932 217.162932 0 H(20)C(7)13C(4)N(1)15N(1)O(2)'
mod_dict['DiART6plex[K]'] = 'K NORMAL 217.162932 217.162932 0 H(20)C(7)13C(4)N(1)15N(1)O(2)'
mod_dict['DiART6plex[Y]'] = 'Y NORMAL 217.162932 217.162932 0 H(20)C(7)13C(4)N(1)15N(1)O(2)'
mod_dict['DiART6plex[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 217.162932 217.162932 0 H(20)C(7)13C(4)N(1)15N(1)O(2)'
mod_dict['DiART6plex115[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 217.156612 217.156612 0 H(20)C(8)13C(3)15N(2)O(2)'
mod_dict['DiART6plex115[K]'] = 'K NORMAL 217.156612 217.156612 0 H(20)C(8)13C(3)15N(2)O(2)'
mod_dict['DiART6plex115[Y]'] = 'Y NORMAL 217.156612 217.156612 0 H(20)C(8)13C(3)15N(2)O(2)'
mod_dict['DiART6plex115[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 217.156612 217.156612 0 H(20)C(8)13C(3)15N(2)O(2)'
mod_dict['DiART6plex116/119[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 217.168776 217.168776 0 H(18)2H(2)C(9)13C(2)N(1)15N(1)O(2)'
mod_dict['DiART6plex116/119[K]'] = 'K NORMAL 217.168776 217.168776 0 H(18)2H(2)C(9)13C(2)N(1)15N(1)O(2)'
mod_dict['DiART6plex116/119[Y]'] = 'Y NORMAL 217.168776 217.168776 0 H(18)2H(2)C(9)13C(2)N(1)15N(1)O(2)'
mod_dict['DiART6plex116/119[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 217.168776 217.168776 0 H(18)2H(2)C(9)13C(2)N(1)15N(1)O(2)'
mod_dict['DiART6plex117[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 217.162456 217.162456 0 H(18)2H(2)C(10)13C(1)15N(2)O(2)'
mod_dict['DiART6plex117[K]'] = 'K NORMAL 217.162456 217.162456 0 H(18)2H(2)C(10)13C(1)15N(2)O(2)'
mod_dict['DiART6plex117[Y]'] = 'Y NORMAL 217.162456 217.162456 0 H(18)2H(2)C(10)13C(1)15N(2)O(2)'
mod_dict['DiART6plex117[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 217.162456 217.162456 0 H(18)2H(2)C(10)13C(1)15N(2)O(2)'
mod_dict['DiART6plex118[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 217.175096 217.175096 0 H(18)2H(2)C(8)13C(3)N(2)O(2)'
mod_dict['DiART6plex118[K]'] = 'K NORMAL 217.175096 217.175096 0 H(18)2H(2)C(8)13C(3)N(2)O(2)'
mod_dict['DiART6plex118[Y]'] = 'Y NORMAL 217.175096 217.175096 0 H(18)2H(2)C(8)13C(3)N(2)O(2)'
mod_dict['DiART6plex118[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 217.175096 217.175096 0 H(18)2H(2)C(8)13C(3)N(2)O(2)'
mod_dict['DiDehydro[C]'] = 'C NORMAL -2.015650 -2.015650 0 H(-2)'
mod_dict['DiLeu4plex[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 145.132163 145.132163 0 H(13)2H(2)C(8)N(1)18O(1)'
mod_dict['DiLeu4plex[K]'] = 'K NORMAL 145.132163 145.132163 0 H(13)2H(2)C(8)N(1)18O(1)'
mod_dict['DiLeu4plex[Y]'] = 'Y NORMAL 145.132163 145.132163 0 H(13)2H(2)C(8)N(1)18O(1)'
mod_dict['DiLeu4plex115[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 145.120000 145.120000 0 H(15)C(7)13C(1)15N(1)18O(1)'
mod_dict['DiLeu4plex115[K]'] = 'K NORMAL 145.120000 145.120000 0 H(15)C(7)13C(1)15N(1)18O(1)'
mod_dict['DiLeu4plex115[Y]'] = 'Y NORMAL 145.120000 145.120000 0 H(15)C(7)13C(1)15N(1)18O(1)'
mod_dict['DiLeu4plex117[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 145.128307 145.128307 0 H(13)2H(2)C(7)13C(1)15N(1)O(1)'
mod_dict['DiLeu4plex117[K]'] = 'K NORMAL 145.128307 145.128307 0 H(13)2H(2)C(7)13C(1)15N(1)O(1)'
mod_dict['DiLeu4plex117[Y]'] = 'Y NORMAL 145.128307 145.128307 0 H(13)2H(2)C(7)13C(1)15N(1)O(1)'
mod_dict['DiLeu4plex118[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 145.140471 145.140471 0 H(11)2H(4)C(8)N(1)O(1)'
mod_dict['DiLeu4plex118[K]'] = 'K NORMAL 145.140471 145.140471 0 H(11)2H(4)C(8)N(1)O(1)'
mod_dict['DiLeu4plex118[Y]'] = 'Y NORMAL 145.140471 145.140471 0 H(11)2H(4)C(8)N(1)O(1)'
mod_dict['Diacylglycerol[C]'] = 'C NORMAL 576.511761 576.511761 0 H(68)C(37)O(4)'
mod_dict['Dibromo[Y]'] = 'Y NORMAL 155.821022 155.821022 0 H(-2)Br(2)'
mod_dict['Dicarbamidomethyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 114.042927 114.042927 0 H(6)C(4)N(2)O(2)'
mod_dict['Dicarbamidomethyl[C]'] = 'C NORMAL 114.042927 114.042927 0 H(6)C(4)N(2)O(2)'
mod_dict['Dicarbamidomethyl[H]'] = 'H NORMAL 114.042927 114.042927 0 H(6)C(4)N(2)O(2)'
mod_dict['Dicarbamidomethyl[K]'] = 'K NORMAL 114.042927 114.042927 0 H(6)C(4)N(2)O(2)'
mod_dict['Dicarbamidomethyl[R]'] = 'R NORMAL 114.042927 114.042927 0 H(6)C(4)N(2)O(2)'
mod_dict['Didehydro[AnyC-termK]'] = 'K PEP_C -2.015650 -2.015650 0 H(-2)'
mod_dict['Didehydro[S]'] = 'S NORMAL -2.015650 -2.015650 0 H(-2)'
mod_dict['Didehydro[T]'] = 'T NORMAL -2.015650 -2.015650 0 H(-2)'
mod_dict['Didehydro[Y]'] = 'Y NORMAL -2.015650 -2.015650 0 H(-2)'
mod_dict['Didehydroretinylidene[K]'] = 'K NORMAL 264.187801 264.187801 0 H(24)C(20)'
mod_dict['Diethyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 56.062600 56.062600 0 H(8)C(4)'
mod_dict['Diethyl[K]'] = 'K NORMAL 56.062600 56.062600 0 H(8)C(4)'
mod_dict['Diethylphosphate[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 136.028931 136.028931 0 H(9)C(4)O(3)P(1)'
mod_dict['Diethylphosphate[C]'] = 'C NORMAL 136.028931 136.028931 0 H(9)C(4)O(3)P(1)'
mod_dict['Diethylphosphate[H]'] = 'H NORMAL 136.028931 136.028931 0 H(9)C(4)O(3)P(1)'
mod_dict['Diethylphosphate[K]'] = 'K NORMAL 136.028931 136.028931 0 H(9)C(4)O(3)P(1)'
mod_dict['Diethylphosphate[S]'] = 'S NORMAL 136.028931 136.028931 0 H(9)C(4)O(3)P(1)'
mod_dict['Diethylphosphate[T]'] = 'T NORMAL 136.028931 136.028931 0 H(9)C(4)O(3)P(1)'
mod_dict['Diethylphosphate[Y]'] = 'Y NORMAL 136.028931 136.028931 0 H(9)C(4)O(3)P(1)'
mod_dict['Difuran[Y]'] = 'Y NORMAL 132.021129 132.021129 0 H(4)C(8)O(2)'
mod_dict['Dihydroxyimidazolidine[R]'] = 'R NORMAL 72.021129 72.021129 0 H(4)C(3)O(2)'
mod_dict['Diiodo[H]'] = 'H NORMAL 251.793296 251.793296 0 H(-2)I(2)'
mod_dict['Diiodo[Y]'] = 'Y NORMAL 251.793296 251.793296 0 H(-2)I(2)'
mod_dict['Diironsubcluster[C]'] = 'C NORMAL 342.786916 342.786916 0 H(-1)C(5)N(2)O(5)S(2)Fe(2)'
mod_dict['Diisopropylphosphate[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 164.060231 164.060231 0 H(13)C(6)O(3)P(1)'
mod_dict['Diisopropylphosphate[K]'] = 'K NORMAL 164.060231 164.060231 0 H(13)C(6)O(3)P(1)'
mod_dict['Diisopropylphosphate[S]'] = 'S NORMAL 164.060231 164.060231 0 H(13)C(6)O(3)P(1)'
mod_dict['Diisopropylphosphate[T]'] = 'T NORMAL 164.060231 164.060231 0 H(13)C(6)O(3)P(1)'
mod_dict['Diisopropylphosphate[Y]'] = 'Y NORMAL 164.060231 164.060231 0 H(13)C(6)O(3)P(1)'
mod_dict['Dimethyl[N]'] = 'N NORMAL 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Dimethyl[R]'] = 'R NORMAL 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Dimethyl[ProteinN-termP]'] = 'P PRO_N 28.031300 28.031300 0 H(4)C(2)'
mod_dict['DimethylArsino[C]'] = 'C NORMAL 103.960719 103.960719 0 H(5)C(2)As(1)'
mod_dict['Dimethyl_2H(4)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 32.056407 32.056407 0 2H(4)C(2)'
mod_dict['Dimethyl_2H(4)[K]'] = 'K NORMAL 32.056407 32.056407 0 2H(4)C(2)'
mod_dict['Dimethyl_2H(4)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 32.056407 32.056407 0 2H(4)C(2)'
mod_dict['Dimethyl_2H(4)13C(2)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 34.063117 34.063117 0 2H(4)13C(2)'
mod_dict['Dimethyl_2H(4)13C(2)[K]'] = 'K NORMAL 34.063117 34.063117 0 2H(4)13C(2)'
mod_dict['Dimethyl_2H(6)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 34.068961 34.068961 0 H(-2)2H(6)C(2)'
mod_dict['Dimethyl_2H(6)[K]'] = 'K NORMAL 34.068961 34.068961 0 H(-2)2H(6)C(2)'
mod_dict['Dimethyl_2H(6)[R]'] = 'R NORMAL 34.068961 34.068961 0 H(-2)2H(6)C(2)'
mod_dict['Dimethyl_2H(6)13C(2)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 36.075670 36.075670 0 H(-2)2H(6)13C(2)'
mod_dict['Dimethyl_2H(6)13C(2)[K]'] = 'K NORMAL 36.075670 36.075670 0 H(-2)2H(6)13C(2)'
mod_dict['Dimethyl_2H(6)13C(2)[R]'] = 'R NORMAL 36.075670 36.075670 0 H(-2)2H(6)13C(2)'
mod_dict['DimethylamineGMBS[C]'] = 'C NORMAL 267.158292 267.158292 0 H(21)C(13)N(3)O(3)'
mod_dict['DimethylpyrroleAdduct[K]'] = 'K NORMAL 78.046950 78.046950 0 H(6)C(6)'
mod_dict['Dioxidation[C]'] = 'C NORMAL 31.989829 31.989829 0 O(2)'
mod_dict['Dioxidation[F]'] = 'F NORMAL 31.989829 31.989829 0 O(2)'
mod_dict['Dioxidation[K]'] = 'K NORMAL 31.989829 31.989829 0 O(2)'
mod_dict['Dioxidation[M]'] = 'M NORMAL 31.989829 31.989829 0 O(2)'
mod_dict['Dioxidation[P]'] = 'P NORMAL 31.989829 31.989829 0 O(2)'
mod_dict['Dioxidation[R]'] = 'R NORMAL 31.989829 31.989829 0 O(2)'
mod_dict['Dioxidation[W]'] = 'W NORMAL 31.989829 31.989829 0 O(2)'
mod_dict['Dioxidation[Y]'] = 'Y NORMAL 31.989829 31.989829 0 O(2)'
mod_dict['Diphthamide[H]'] = 'H NORMAL 143.118438 143.118438 0 H(15)C(7)N(2)O(1)'
mod_dict['Dipyridyl[C]'] = 'C NORMAL 225.090212 225.090212 0 H(11)C(13)N(3)O(1)'
mod_dict['Dipyrrolylmethanemethyl[C]'] = 'C NORMAL 418.137616 418.137616 0 H(22)C(20)N(2)O(8)'
mod_dict['DyLight-maleimide[C]'] = 'C NORMAL 940.199900 940.199900 0 H(48)C(39)N(4)O(15)S(4)'
mod_dict['EDT-iodoacetyl-PEO-biotin[S]'] = 'S NORMAL 490.174218 490.174218 0 H(34)C(20)N(4)O(4)S(3)'
mod_dict['EDT-iodoacetyl-PEO-biotin[T]'] = 'T NORMAL 490.174218 490.174218 0 H(34)C(20)N(4)O(4)S(3)'
mod_dict['EDT-maleimide-PEO-biotin[S]'] = 'S NORMAL 601.206246 601.206246 0 H(39)C(25)N(5)O(6)S(3)'
mod_dict['EDT-maleimide-PEO-biotin[T]'] = 'T NORMAL 601.206246 601.206246 0 H(39)C(25)N(5)O(6)S(3)'
mod_dict['EGCG1[C]'] = 'C NORMAL 456.069261 456.069261 0 H(16)C(22)O(11)'
mod_dict['EGCG2[C]'] = 'C NORMAL 287.055563 287.055563 0 H(11)C(15)O(6)'
mod_dict['EHD-diphenylpentanone[C]'] = 'C NORMAL 266.130680 266.130680 0 H(18)C(18)O(2)'
mod_dict['EHD-diphenylpentanone[M]'] = 'M NORMAL 266.130680 266.130680 0 H(18)C(18)O(2)'
mod_dict['EQAT[C]'] = 'C NORMAL 184.157563 184.157563 0 H(20)C(10)N(2)O(1)'
mod_dict['EQAT_2H(5)[C]'] = 'C NORMAL 189.188947 189.188947 0 H(15)2H(5)C(10)N(2)O(1)'
mod_dict['EQIGG[K]'] = 'K NORMAL 484.228162 484.228162 0 H(32)C(20)N(6)O(8)'
mod_dict['ESP[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 338.177647 338.177647 0 H(26)C(16)N(4)O(2)S(1)'
mod_dict['ESP[K]'] = 'K NORMAL 338.177647 338.177647 0 H(26)C(16)N(4)O(2)S(1)'
mod_dict['ESP_2H(10)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 348.240414 348.240414 0 H(16)2H(10)C(16)N(4)O(2)S(1)'
mod_dict['ESP_2H(10)[K]'] = 'K NORMAL 348.240414 348.240414 0 H(16)2H(10)C(16)N(4)O(2)S(1)'
mod_dict['Ethanedithiol[S]'] = 'S NORMAL 75.980527 75.980527 0 H(4)C(2)O(-1)S(2)'
mod_dict['Ethanedithiol[T]'] = 'T NORMAL 75.980527 75.980527 0 H(4)C(2)O(-1)S(2)'
mod_dict['Ethanolamine[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 43.042199 43.042199 0 H(5)C(2)N(1)'
mod_dict['Ethanolamine[C]'] = 'C NORMAL 43.042199 43.042199 0 H(5)C(2)N(1)'
mod_dict['Ethanolamine[D]'] = 'D NORMAL 43.042199 43.042199 0 H(5)C(2)N(1)'
mod_dict['Ethanolamine[E]'] = 'E NORMAL 43.042199 43.042199 0 H(5)C(2)N(1)'
mod_dict['Ethanolyl[C]'] = 'C NORMAL 44.026215 44.026215 0 H(4)C(2)O(1)'
mod_dict['Ethanolyl[K]'] = 'K NORMAL 44.026215 44.026215 0 H(4)C(2)O(1)'
mod_dict['Ethanolyl[R]'] = 'R NORMAL 44.026215 44.026215 0 H(4)C(2)O(1)'
mod_dict['Ethoxyformyl[H]'] = 'H NORMAL 73.028954 73.028954 0 H(5)C(3)O(2)'
mod_dict['Ethyl+Deamidated[N]'] = 'N NORMAL 29.015316 29.015316 0 H(3)C(2)N(-1)O(1)'
mod_dict['Ethyl+Deamidated[Q]'] = 'Q NORMAL 29.015316 29.015316 0 H(3)C(2)N(-1)O(1)'
mod_dict['Ethyl[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Ethyl[D]'] = 'D NORMAL 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Ethyl[E]'] = 'E NORMAL 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Ethyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Ethylphosphate[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 107.997631 107.997631 0 H(5)C(2)O(3)P(1)'
mod_dict['Ethylphosphate[K]'] = 'K NORMAL 107.997631 107.997631 0 H(5)C(2)O(3)P(1)'
mod_dict['ExacTagAmine[K]'] = 'K NORMAL 1046.347854 1046.347854 0 H(52)C(25)13C(12)N(8)15N(6)O(19)S(1)'
mod_dict['ExacTagThiol[C]'] = 'C NORMAL 972.365219 972.365219 0 H(50)C(23)13C(12)N(8)15N(6)O(18)'
mod_dict['FAD[C]'] = 'C NORMAL 783.141486 783.141486 0 H(31)C(27)N(9)O(15)P(2)'
mod_dict['FAD[H]'] = 'H NORMAL 783.141486 783.141486 0 H(31)C(27)N(9)O(15)P(2)'
mod_dict['FAD[Y]'] = 'Y NORMAL 783.141486 783.141486 0 H(31)C(27)N(9)O(15)P(2)'
mod_dict['FMN[S]'] = 'S NORMAL 438.094051 438.094051 0 H(19)C(17)N(4)O(8)P(1)'
mod_dict['FMN[T]'] = 'T NORMAL 438.094051 438.094051 0 H(19)C(17)N(4)O(8)P(1)'
mod_dict['FMNC[C]'] = 'C NORMAL 456.104615 456.104615 0 H(21)C(17)N(4)O(9)P(1)'
mod_dict['FMNH[C]'] = 'C NORMAL 454.088965 454.088965 0 H(19)C(17)N(4)O(9)P(1)'
mod_dict['FMNH[H]'] = 'H NORMAL 454.088965 454.088965 0 H(19)C(17)N(4)O(9)P(1)'
mod_dict['FNEM[C]'] = 'C NORMAL 427.069202 427.069202 0 H(13)C(24)N(1)O(7)'
mod_dict['FP-Biotin[K]'] = 'K NORMAL 572.316129 572.316129 0 H(49)C(27)N(4)O(5)P(1)S(1)'
mod_dict['FP-Biotin[S]'] = 'S NORMAL 572.316129 572.316129 0 H(49)C(27)N(4)O(5)P(1)S(1)'
mod_dict['FP-Biotin[T]'] = 'T NORMAL 572.316129 572.316129 0 H(49)C(27)N(4)O(5)P(1)S(1)'
mod_dict['FP-Biotin[Y]'] = 'Y NORMAL 572.316129 572.316129 0 H(49)C(27)N(4)O(5)P(1)S(1)'
mod_dict['FTC[C]'] = 'C NORMAL 421.073241 421.073241 0 H(15)C(21)N(3)O(5)S(1)'
mod_dict['FTC[K]'] = 'K NORMAL 421.073241 421.073241 0 H(15)C(21)N(3)O(5)S(1)'
mod_dict['FTC[P]'] = 'P NORMAL 421.073241 421.073241 0 H(15)C(21)N(3)O(5)S(1)'
mod_dict['FTC[R]'] = 'R NORMAL 421.073241 421.073241 0 H(15)C(21)N(3)O(5)S(1)'
mod_dict['FTC[S]'] = 'S NORMAL 421.073241 421.073241 0 H(15)C(21)N(3)O(5)S(1)'
mod_dict['Farnesyl[C]'] = 'C NORMAL 204.187801 204.187801 0 H(24)C(15)'
mod_dict['Fluorescein[C]'] = 'C NORMAL 388.082112 388.082112 0 H(14)C(22)N(1)O(6)'
mod_dict['Fluoro[A]'] = 'A NORMAL 17.990578 17.990578 0 H(-1)F(1)'
mod_dict['Fluoro[F]'] = 'F NORMAL 17.990578 17.990578 0 H(-1)F(1)'
mod_dict['Fluoro[W]'] = 'W NORMAL 17.990578 17.990578 0 H(-1)F(1)'
mod_dict['Fluoro[Y]'] = 'Y NORMAL 17.990578 17.990578 0 H(-1)F(1)'
mod_dict['Formyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 27.994915 27.994915 0 C(1)O(1)'
mod_dict['Formyl[K]'] = 'K NORMAL 27.994915 27.994915 0 C(1)O(1)'
mod_dict['Formyl[S]'] = 'S NORMAL 27.994915 27.994915 0 C(1)O(1)'
mod_dict['Formyl[T]'] = 'T NORMAL 27.994915 27.994915 0 C(1)O(1)'
mod_dict['Formyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 27.994915 27.994915 0 C(1)O(1)'
mod_dict['FormylMet[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 159.035399 159.035399 0 H(9)C(6)N(1)O(2)S(1)'
mod_dict['Furan[Y]'] = 'Y NORMAL 66.010565 66.010565 0 H(2)C(4)O(1)'
mod_dict['G-H1[R]'] = 'R NORMAL 39.994915 39.994915 0 C(2)O(1)'
mod_dict['GGQ[K]'] = 'K NORMAL 242.101505 242.101505 0 H(14)C(9)N(4)O(4)'
mod_dict['GIST-Quat[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 127.099714 127.099714 1 59.073499 59.073499 H(13)C(7)N(1)O(1)'
mod_dict['GIST-Quat[K]'] = 'K NORMAL 127.099714 127.099714 1 59.073499 59.073499 H(13)C(7)N(1)O(1)'
mod_dict['GIST-Quat_2H(3)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 130.118544 130.118544 1 62.092330 62.092330 H(10)2H(3)C(7)N(1)O(1)'
mod_dict['GIST-Quat_2H(3)[K]'] = 'K NORMAL 130.118544 130.118544 1 62.092330 62.092330 H(10)2H(3)C(7)N(1)O(1)'
mod_dict['GIST-Quat_2H(6)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 133.137375 133.137375 1 65.111160 65.111160 H(7)2H(6)C(7)N(1)O(1)'
mod_dict['GIST-Quat_2H(6)[K]'] = 'K NORMAL 133.137375 133.137375 1 65.111160 65.111160 H(7)2H(6)C(7)N(1)O(1)'
mod_dict['GIST-Quat_2H(9)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 136.156205 136.156205 1 68.129990 68.129990 H(4)2H(9)C(7)N(1)O(1)'
mod_dict['GIST-Quat_2H(9)[K]'] = 'K NORMAL 136.156205 136.156205 1 68.129990 68.129990 H(4)2H(9)C(7)N(1)O(1)'
mod_dict['GPIanchor[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C 123.008530 123.008530 0 H(6)C(2)N(1)O(3)P(1)'
mod_dict['GeranylGeranyl[C]'] = 'C NORMAL 272.250401 272.250401 0 H(32)C(20)'
mod_dict['Gln->Ala[Q]'] = 'Q NORMAL -57.021464 -57.021464 0 H(-3)C(-2)N(-1)O(-1)'
mod_dict['Gln->Arg[Q]'] = 'Q NORMAL 28.042534 28.042534 0 H(4)C(1)N(2)O(-1)'
mod_dict['Gln->Asn[Q]'] = 'Q NORMAL -14.015650 -14.015650 0 H(-2)C(-1)'
mod_dict['Gln->Asp[Q]'] = 'Q NORMAL -13.031634 -13.031634 0 H(-3)C(-1)N(-1)O(1)'
mod_dict['Gln->Cys[Q]'] = 'Q NORMAL -25.049393 -25.049393 0 H(-3)C(-2)N(-1)O(-1)S(1)'
mod_dict['Gln->Gly[Q]'] = 'Q NORMAL -71.037114 -71.037114 0 H(-5)C(-3)N(-1)O(-1)'
mod_dict['Gln->His[Q]'] = 'Q NORMAL 9.000334 9.000334 0 H(-1)C(1)N(1)O(-1)'
mod_dict['Gln->Lys[Q]'] = 'Q NORMAL 0.036386 0.036386 0 H(4)C(1)O(-1)'
mod_dict['Gln->Met[Q]'] = 'Q NORMAL 2.981907 2.981907 0 H(1)N(-1)O(-1)S(1)'
mod_dict['Gln->Phe[Q]'] = 'Q NORMAL 19.009836 19.009836 0 H(1)C(4)N(-1)O(-1)'
mod_dict['Gln->Pro[Q]'] = 'Q NORMAL -31.005814 -31.005814 0 H(-1)N(-1)O(-1)'
mod_dict['Gln->Ser[Q]'] = 'Q NORMAL -41.026549 -41.026549 0 H(-3)C(-2)N(-1)'
mod_dict['Gln->Thr[Q]'] = 'Q NORMAL -27.010899 -27.010899 0 H(-1)C(-1)N(-1)'
mod_dict['Gln->Trp[Q]'] = 'Q NORMAL 58.020735 58.020735 0 H(2)C(6)O(-1)'
mod_dict['Gln->Tyr[Q]'] = 'Q NORMAL 35.004751 35.004751 0 H(1)C(4)N(-1)'
mod_dict['Gln->Val[Q]'] = 'Q NORMAL -28.990164 -28.990164 0 H(1)N(-1)O(-1)'
mod_dict['Gln->Xle[Q]'] = 'Q NORMAL -14.974514 -14.974514 0 H(3)C(1)N(-1)O(-1)'
mod_dict['Gln->pyro-Glu[AnyN-termQ]'] = 'Q PEP_N -17.026549 -17.026549 0 H(-3)N(-1)'
mod_dict['Glu->Ala[E]'] = 'E NORMAL -58.005479 -58.005479 0 H(-2)C(-2)O(-2)'
mod_dict['Glu->Arg[E]'] = 'E NORMAL 27.058518 27.058518 0 H(5)C(1)N(3)O(-2)'
mod_dict['Glu->Asn[E]'] = 'E NORMAL -14.999666 -14.999666 0 H(-1)C(-1)N(1)O(-1)'
mod_dict['Glu->Asp[E]'] = 'E NORMAL -14.015650 -14.015650 0 H(-2)C(-1)'
mod_dict['Glu->Cys[E]'] = 'E NORMAL -26.033409 -26.033409 0 H(-2)C(-2)O(-2)S(1)'
mod_dict['Glu->Gln[E]'] = 'E NORMAL -0.984016 -0.984016 0 H(1)N(1)O(-1)'
mod_dict['Glu->Gly[E]'] = 'E NORMAL -72.021129 -72.021129 0 H(-4)C(-3)O(-2)'
mod_dict['Glu->His[E]'] = 'E NORMAL 8.016319 8.016319 0 C(1)N(2)O(-2)'
mod_dict['Glu->Lys[E]'] = 'E NORMAL -0.947630 -0.947630 0 H(5)C(1)N(1)O(-2)'
mod_dict['Glu->Met[E]'] = 'E NORMAL 1.997892 1.997892 0 H(2)O(-2)S(1)'
mod_dict['Glu->Phe[E]'] = 'E NORMAL 18.025821 18.025821 0 H(2)C(4)O(-2)'
mod_dict['Glu->Pro[E]'] = 'E NORMAL -31.989829 -31.989829 0 O(-2)'
mod_dict['Glu->Ser[E]'] = 'E NORMAL -42.010565 -42.010565 0 H(-2)C(-2)O(-1)'
mod_dict['Glu->Thr[E]'] = 'E NORMAL -27.994915 -27.994915 0 C(-1)O(-1)'
mod_dict['Glu->Trp[E]'] = 'E NORMAL 57.036720 57.036720 0 H(3)C(6)N(1)O(-2)'
mod_dict['Glu->Tyr[E]'] = 'E NORMAL 34.020735 34.020735 0 H(2)C(4)O(-1)'
mod_dict['Glu->Val[E]'] = 'E NORMAL -29.974179 -29.974179 0 H(2)O(-2)'
mod_dict['Glu->Xle[E]'] = 'E NORMAL -15.958529 -15.958529 0 H(4)C(1)O(-2)'
mod_dict['Glu->pyro-Glu[AnyN-termE]'] = 'E PEP_N -18.010565 -18.010565 0 H(-2)O(-1)'
mod_dict['Glu[E]'] = 'E NORMAL 129.042593 129.042593 0 H(7)C(5)N(1)O(3)'
mod_dict['Glu[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C 129.042593 129.042593 0 H(7)C(5)N(1)O(3)'
mod_dict['GluGlu[E]'] = 'E NORMAL 258.085186 258.085186 0 H(14)C(10)N(2)O(6)'
mod_dict['GluGlu[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C 258.085186 258.085186 0 H(14)C(10)N(2)O(6)'
mod_dict['GluGluGlu[E]'] = 'E NORMAL 387.127779 387.127779 0 H(21)C(15)N(3)O(9)'
mod_dict['GluGluGlu[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C 387.127779 387.127779 0 H(21)C(15)N(3)O(9)'
mod_dict['GluGluGluGlu[E]'] = 'E NORMAL 516.170373 516.170373 0 H(28)C(20)N(4)O(12)'
mod_dict['GluGluGluGlu[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C 516.170373 516.170373 0 H(28)C(20)N(4)O(12)'
mod_dict['Gluconoylation[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 178.047738 178.047738 0 H(10)C(6)O(6)'
mod_dict['Gluconoylation[K]'] = 'K NORMAL 178.047738 178.047738 0 H(10)C(6)O(6)'
mod_dict['Glucosylgalactosyl[K]'] = 'K NORMAL 340.100562 340.100562 2 324.105647 324.105647 162.052823 162.052823 O(1)Hex(2)'
mod_dict['Glucuronyl[S]'] = 'S NORMAL 176.032088 176.032088 0 H(8)C(6)O(6)'
mod_dict['Glucuronyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 176.032088 176.032088 0 H(8)C(6)O(6)'
mod_dict['Glutathione[C]'] = 'C NORMAL 305.068156 305.068156 0 H(15)C(10)N(3)O(6)S(1)'
mod_dict['Gly->Ala[G]'] = 'G NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Gly->Arg[G]'] = 'G NORMAL 99.079647 99.079647 0 H(9)C(4)N(3)'
mod_dict['Gly->Asn[G]'] = 'G NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Gly->Asp[G]'] = 'G NORMAL 58.005479 58.005479 0 H(2)C(2)O(2)'
mod_dict['Gly->Cys[G]'] = 'G NORMAL 45.987721 45.987721 0 H(2)C(1)S(1)'
mod_dict['Gly->Gln[G]'] = 'G NORMAL 71.037114 71.037114 0 H(5)C(3)N(1)O(1)'
mod_dict['Gly->Glu[G]'] = 'G NORMAL 72.021129 72.021129 0 H(4)C(3)O(2)'
mod_dict['Gly->His[G]'] = 'G NORMAL 80.037448 80.037448 0 H(4)C(4)N(2)'
mod_dict['Gly->Lys[G]'] = 'G NORMAL 71.073499 71.073499 0 H(9)C(4)N(1)'
mod_dict['Gly->Met[G]'] = 'G NORMAL 74.019021 74.019021 0 H(6)C(3)S(1)'
mod_dict['Gly->Phe[G]'] = 'G NORMAL 90.046950 90.046950 0 H(6)C(7)'
mod_dict['Gly->Pro[G]'] = 'G NORMAL 40.031300 40.031300 0 H(4)C(3)'
mod_dict['Gly->Ser[G]'] = 'G NORMAL 30.010565 30.010565 0 H(2)C(1)O(1)'
mod_dict['Gly->Thr[G]'] = 'G NORMAL 44.026215 44.026215 0 H(4)C(2)O(1)'
mod_dict['Gly->Trp[G]'] = 'G NORMAL 129.057849 129.057849 0 H(7)C(9)N(1)'
mod_dict['Gly->Tyr[G]'] = 'G NORMAL 106.041865 106.041865 0 H(6)C(7)O(1)'
mod_dict['Gly->Val[G]'] = 'G NORMAL 42.046950 42.046950 0 H(6)C(3)'
mod_dict['Gly->Xle[G]'] = 'G NORMAL 56.062600 56.062600 0 H(8)C(4)'
mod_dict['Gly-loss+Amide[AnyC-termG]'] = 'G PEP_C -58.005479 -58.005479 0 H(-2)C(-2)O(-2)'
mod_dict['GlyGly[S]'] = 'S NORMAL 114.042927 114.042927 0 H(6)C(4)N(2)O(2)'
mod_dict['GlyGly[T]'] = 'T NORMAL 114.042927 114.042927 0 H(6)C(4)N(2)O(2)'
mod_dict['Glycerophospho[S]'] = 'S NORMAL 154.003110 154.003110 0 H(7)C(3)O(5)P(1)'
mod_dict['GlycerylPE[E]'] = 'E NORMAL 197.045310 197.045310 0 H(12)C(5)N(1)O(5)P(1)'
mod_dict['Glycosyl[P]'] = 'P NORMAL 148.037173 148.037173 0 H(8)C(5)O(5)'
mod_dict['Guanidinyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 42.021798 42.021798 0 H(2)C(1)N(2)'
mod_dict['Guanidinyl[K]'] = 'K NORMAL 42.021798 42.021798 0 H(2)C(1)N(2)'
mod_dict['HCysThiolactone[K]'] = 'K NORMAL 117.024835 117.024835 0 H(7)C(4)N(1)O(1)S(1)'
mod_dict['HCysteinyl[C]'] = 'C NORMAL 133.019749 133.019749 0 H(7)C(4)N(1)O(2)S(1)'
mod_dict['HMVK[C]'] = 'C NORMAL 86.036779 86.036779 0 H(6)C(4)O(2)'
mod_dict['HN2_mustard[C]'] = 'C NORMAL 101.084064 101.084064 0 H(11)C(5)N(1)O(1)'
mod_dict['HN2_mustard[H]'] = 'H NORMAL 101.084064 101.084064 0 H(11)C(5)N(1)O(1)'
mod_dict['HN2_mustard[K]'] = 'K NORMAL 101.084064 101.084064 0 H(11)C(5)N(1)O(1)'
mod_dict['HN3_mustard[C]'] = 'C NORMAL 131.094629 131.094629 0 H(13)C(6)N(1)O(2)'
mod_dict['HN3_mustard[H]'] = 'H NORMAL 131.094629 131.094629 0 H(13)C(6)N(1)O(2)'
mod_dict['HN3_mustard[K]'] = 'K NORMAL 131.094629 131.094629 0 H(13)C(6)N(1)O(2)'
mod_dict['HNE+Delta_H(2)[C]'] = 'C NORMAL 158.130680 158.130680 0 H(18)C(9)O(2)'
mod_dict['HNE+Delta_H(2)[H]'] = 'H NORMAL 158.130680 158.130680 0 H(18)C(9)O(2)'
mod_dict['HNE+Delta_H(2)[K]'] = 'K NORMAL 158.130680 158.130680 0 H(18)C(9)O(2)'
mod_dict['HNE-BAHAH[C]'] = 'C NORMAL 511.319226 511.319226 0 H(45)C(25)N(5)O(4)S(1)'
mod_dict['HNE-BAHAH[H]'] = 'H NORMAL 511.319226 511.319226 0 H(45)C(25)N(5)O(4)S(1)'
mod_dict['HNE-BAHAH[K]'] = 'K NORMAL 511.319226 511.319226 0 H(45)C(25)N(5)O(4)S(1)'
mod_dict['HNE-Delta_H(2)O[C]'] = 'C NORMAL 138.104465 138.104465 0 H(14)C(9)O(1)'
mod_dict['HNE-Delta_H(2)O[H]'] = 'H NORMAL 138.104465 138.104465 0 H(14)C(9)O(1)'
mod_dict['HNE-Delta_H(2)O[K]'] = 'K NORMAL 138.104465 138.104465 0 H(14)C(9)O(1)'
mod_dict['HNE[A]'] = 'A NORMAL 156.115030 156.115030 0 H(16)C(9)O(2)'
mod_dict['HNE[C]'] = 'C NORMAL 156.115030 156.115030 0 H(16)C(9)O(2)'
mod_dict['HNE[H]'] = 'H NORMAL 156.115030 156.115030 0 H(16)C(9)O(2)'
mod_dict['HNE[K]'] = 'K NORMAL 156.115030 156.115030 0 H(16)C(9)O(2)'
mod_dict['HNE[L]'] = 'L NORMAL 156.115030 156.115030 0 H(16)C(9)O(2)'
mod_dict['HPG[R]'] = 'R NORMAL 132.021129 132.021129 0 H(4)C(8)O(2)'
mod_dict['Heme[C]'] = 'C NORMAL 616.177295 616.177295 0 H(32)C(34)N(4)O(4)Fe(1)'
mod_dict['Heme[H]'] = 'H NORMAL 616.177295 616.177295 0 H(32)C(34)N(4)O(4)Fe(1)'
mod_dict['Hep[K]'] = 'K NORMAL 192.063388 192.063388 0 Hep(1)'
mod_dict['Hep[N]'] = 'N NORMAL 192.063388 192.063388 0 Hep(1)'
mod_dict['Hep[Q]'] = 'Q NORMAL 192.063388 192.063388 0 Hep(1)'
mod_dict['Hep[R]'] = 'R NORMAL 192.063388 192.063388 0 Hep(1)'
mod_dict['Hep[S]'] = 'S NORMAL 192.063388 192.063388 0 Hep(1)'
mod_dict['Hep[T]'] = 'T NORMAL 192.063388 192.063388 0 Hep(1)'
mod_dict['Hex(1)HexNAc(1)NeuAc(1)[N]'] = 'N NORMAL 656.227613 656.227613 0 Hex(1)HexNAc(1)NeuAc(1)'
mod_dict['Hex(1)HexNAc(1)NeuAc(1)[S]'] = 'S NORMAL 656.227613 656.227613 0 Hex(1)HexNAc(1)NeuAc(1)'
mod_dict['Hex(1)HexNAc(1)NeuAc(1)[T]'] = 'T NORMAL 656.227613 656.227613 0 Hex(1)HexNAc(1)NeuAc(1)'
mod_dict['Hex(1)HexNAc(1)NeuAc(2)[N]'] = 'N NORMAL 947.323029 947.323029 0 Hex(1)HexNAc(1)NeuAc(2)'
mod_dict['Hex(1)HexNAc(1)NeuAc(2)[S]'] = 'S NORMAL 947.323029 947.323029 0 Hex(1)HexNAc(1)NeuAc(2)'
mod_dict['Hex(1)HexNAc(1)NeuAc(2)[T]'] = 'T NORMAL 947.323029 947.323029 0 Hex(1)HexNAc(1)NeuAc(2)'
mod_dict['Hex(1)HexNAc(1)dHex(1)[N]'] = 'N NORMAL 511.190105 511.190105 0 dHex(1)Hex(1)HexNAc(1)'
mod_dict['Hex(1)HexNAc(2)[N]'] = 'N NORMAL 568.211569 568.211569 0 Hex(1)HexNAc(2)'
mod_dict['Hex(1)HexNAc(2)Pent(1)[N]'] = 'N NORMAL 700.253828 700.253828 0 Pent(1)Hex(1)HexNAc(2)'
mod_dict['Hex(1)HexNAc(2)dHex(1)[N]'] = 'N NORMAL 714.269478 714.269478 0 dHex(1)Hex(1)HexNAc(2)'
mod_dict['Hex(1)HexNAc(2)dHex(1)Pent(1)[N]'] = 'N NORMAL 846.311736 846.311736 0 Pent(1)dHex(1)Hex(1)HexNAc(2)'
mod_dict['Hex(1)HexNAc(2)dHex(2)[N]'] = 'N NORMAL 860.327386 860.327386 0 dHex(2)Hex(1)HexNAc(2)'
mod_dict['Hex(2)[K]'] = 'K NORMAL 324.105647 324.105647 0 Hex(2)'
mod_dict['Hex(2)[R]'] = 'R NORMAL 324.105647 324.105647 0 Hex(2)'
mod_dict['Hex(2)HexNAc(2)[N]'] = 'N NORMAL 730.264392 730.264392 0 Hex(2)HexNAc(2)'
mod_dict['Hex(2)HexNAc(2)Pent(1)[N]'] = 'N NORMAL 862.306651 862.306651 0 Pent(1)Hex(2)HexNAc(2)'
mod_dict['Hex(2)HexNAc(2)dHex(1)[N]'] = 'N NORMAL 876.322301 876.322301 0 dHex(1)Hex(2)HexNAc(2)'
mod_dict['Hex(3)[N]'] = 'N NORMAL 486.158471 486.158471 0 Hex(3)'
mod_dict['Hex(3)HexNAc(1)Pent(1)[N]'] = 'N NORMAL 821.280102 821.280102 0 Pent(1)Hex(3)HexNAc(1)'
mod_dict['Hex(3)HexNAc(2)[N]'] = 'N NORMAL 892.317216 892.317216 0 Hex(3)HexNAc(2)'
mod_dict['Hex(3)HexNAc(2)P(1)[N]'] = 'N NORMAL 923.290978 923.290978 0 P(1)Hex(3)HexNAc(2)'
mod_dict['Hex(3)HexNAc(4)[N]'] = 'N NORMAL 1298.475961 1298.475961 0 Hex(3)HexNAc(4)'
mod_dict['Hex(4)HexNAc(4)[N]'] = 'N NORMAL 1460.528784 1460.528784 0 Hex(4)HexNAc(4)'
mod_dict['Hex(5)HexNAc(2)[N]'] = 'N NORMAL 1216.422863 1216.422863 0 Hex(5)HexNAc(2)'
mod_dict['Hex(5)HexNAc(4)[N]'] = 'N NORMAL 1622.581608 1622.581608 0 Hex(5)HexNAc(4)'
mod_dict['Hex[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 162.052824 162.052824 0 Hex(1)'
mod_dict['Hex[C]'] = 'C NORMAL 162.052824 162.052824 0 Hex(1)'
mod_dict['Hex[K]'] = 'K NORMAL 162.052824 162.052824 0 Hex(1)'
mod_dict['Hex[N]'] = 'N NORMAL 162.052824 162.052824 0 Hex(1)'
mod_dict['Hex[R]'] = 'R NORMAL 162.052824 162.052824 0 Hex(1)'
mod_dict['Hex[S]'] = 'S NORMAL 162.052824 162.052824 0 Hex(1)'
mod_dict['Hex[T]'] = 'T NORMAL 162.052824 162.052824 0 Hex(1)'
mod_dict['Hex[W]'] = 'W NORMAL 162.052824 162.052824 0 Hex(1)'
mod_dict['Hex[Y]'] = 'Y NORMAL 162.052824 162.052824 0 Hex(1)'
mod_dict['Hex1HexNAc1[N]'] = 'N NORMAL 365.132196 365.132196 0 Hex(1)HexNAc(1)'
mod_dict['Hex1HexNAc1[S]'] = 'S NORMAL 365.132196 365.132196 0 Hex(1)HexNAc(1)'
mod_dict['Hex1HexNAc1[T]'] = 'T NORMAL 365.132196 365.132196 0 Hex(1)HexNAc(1)'
mod_dict['HexN[K]'] = 'K NORMAL 161.068808 161.068808 0 H(11)C(6)N(1)O(4)'
mod_dict['HexN[N]'] = 'N NORMAL 161.068808 161.068808 0 H(11)C(6)N(1)O(4)'
mod_dict['HexN[T]'] = 'T NORMAL 161.068808 161.068808 0 H(11)C(6)N(1)O(4)'
mod_dict['HexN[W]'] = 'W NORMAL 161.068808 161.068808 0 H(11)C(6)N(1)O(4)'
mod_dict['HexNAc(1)dHex(1)[N]'] = 'N NORMAL 349.137281 349.137281 0 dHex(1)HexNAc(1)'
mod_dict['HexNAc(1)dHex(2)[N]'] = 'N NORMAL 495.195190 495.195190 0 dHex(2)HexNAc(1)'
mod_dict['HexNAc(2)[N]'] = 'N NORMAL 406.158745 406.158745 0 HexNAc(2)'
mod_dict['HexNAc(2)dHex(1)[N]'] = 'N NORMAL 552.216654 552.216654 0 dHex(1)HexNAc(2)'
mod_dict['HexNAc(2)dHex(2)[N]'] = 'N NORMAL 698.274563 698.274563 0 dHex(2)HexNAc(2)'
mod_dict['HexNAc[N]'] = 'N NORMAL 203.079373 203.079373 0 HexNAc(1)'
mod_dict['HexNAc[S]'] = 'S NORMAL 203.079373 203.079373 0 HexNAc(1)'
mod_dict['HexNAc[T]'] = 'T NORMAL 203.079373 203.079373 0 HexNAc(1)'
mod_dict['His->Ala[H]'] = 'H NORMAL -66.021798 -66.021798 0 H(-2)C(-3)N(-2)'
mod_dict['His->Arg[H]'] = 'H NORMAL 19.042199 19.042199 0 H(5)N(1)'
mod_dict['His->Asn[H]'] = 'H NORMAL -23.015984 -23.015984 0 H(-1)C(-2)N(-1)O(1)'
mod_dict['His->Asp[H]'] = 'H NORMAL -22.031969 -22.031969 0 H(-2)C(-2)N(-2)O(2)'
mod_dict['His->Cys[H]'] = 'H NORMAL -34.049727 -34.049727 0 H(-2)C(-3)N(-2)S(1)'
mod_dict['His->Gln[H]'] = 'H NORMAL -9.000334 -9.000334 0 H(1)C(-1)N(-1)O(1)'
mod_dict['His->Glu[H]'] = 'H NORMAL -8.016319 -8.016319 0 C(-1)N(-2)O(2)'
mod_dict['His->Gly[H]'] = 'H NORMAL -80.037448 -80.037448 0 H(-4)C(-4)N(-2)'
mod_dict['His->Lys[H]'] = 'H NORMAL -8.963949 -8.963949 0 H(5)N(-1)'
mod_dict['His->Met[H]'] = 'H NORMAL -6.018427 -6.018427 0 H(2)C(-1)N(-2)S(1)'
mod_dict['His->Phe[H]'] = 'H NORMAL 10.009502 10.009502 0 H(2)C(3)N(-2)'
mod_dict['His->Pro[H]'] = 'H NORMAL -40.006148 -40.006148 0 C(-1)N(-2)'
mod_dict['His->Ser[H]'] = 'H NORMAL -50.026883 -50.026883 0 H(-2)C(-3)N(-2)O(1)'
mod_dict['His->Thr[H]'] = 'H NORMAL -36.011233 -36.011233 0 C(-2)N(-2)O(1)'
mod_dict['His->Trp[H]'] = 'H NORMAL 49.020401 49.020401 0 H(3)C(5)N(-1)'
mod_dict['His->Tyr[H]'] = 'H NORMAL 26.004417 26.004417 0 H(2)C(3)N(-2)O(1)'
mod_dict['His->Val[H]'] = 'H NORMAL -37.990498 -37.990498 0 H(2)C(-1)N(-2)'
mod_dict['His->Xle[H]'] = 'H NORMAL -23.974848 -23.974848 0 H(4)N(-2)'
mod_dict['Homocysteic_acid[M]'] = 'M NORMAL 33.969094 33.969094 0 H(-2)C(-1)O(3)'
mod_dict['Hydroxamic_acid[D]'] = 'D NORMAL 15.010899 15.010899 0 H(1)N(1)'
mod_dict['Hydroxamic_acid[E]'] = 'E NORMAL 15.010899 15.010899 0 H(1)N(1)'
mod_dict['Hydroxycinnamyl[C]'] = 'C NORMAL 146.036779 146.036779 0 H(6)C(9)O(2)'
mod_dict['Hydroxyfarnesyl[C]'] = 'C NORMAL 220.182715 220.182715 0 H(24)C(15)O(1)'
mod_dict['Hydroxyheme[E]'] = 'E NORMAL 614.161645 614.161645 0 H(30)C(34)N(4)O(4)Fe(1)'
mod_dict['Hydroxymethyl[N]'] = 'N NORMAL 30.010565 30.010565 0 H(2)C(1)O(1)'
mod_dict['HydroxymethylOP[K]'] = 'K NORMAL 108.021129 108.021129 0 H(4)C(6)O(2)'
mod_dict['Hydroxytrimethyl[K]'] = 'K NORMAL 59.049690 59.049690 0 H(7)C(3)O(1)'
mod_dict['Hypusine[K]'] = 'K NORMAL 87.068414 87.068414 0 H(9)C(4)N(1)O(1)'
mod_dict['IBTP[C]'] = 'C NORMAL 316.138088 316.138088 0 H(21)C(22)P(1)'
mod_dict['ICAT-C[C]'] = 'C NORMAL 227.126991 227.126991 0 H(17)C(10)N(3)O(3)'
mod_dict['ICAT-C_13C(9)[C]'] = 'C NORMAL 236.157185 236.157185 0 H(17)C(1)13C(9)N(3)O(3)'
mod_dict['ICAT-D[C]'] = 'C NORMAL 442.224991 442.224991 0 H(34)C(20)N(4)O(5)S(1)'
mod_dict['ICAT-D_2H(8)[C]'] = 'C NORMAL 450.275205 450.275205 0 H(26)2H(8)C(20)N(4)O(5)S(1)'
mod_dict['ICAT-G[C]'] = 'C NORMAL 486.251206 486.251206 0 H(38)C(22)N(4)O(6)S(1)'
mod_dict['ICAT-G_2H(8)[C]'] = 'C NORMAL 494.301420 494.301420 0 H(30)2H(8)C(22)N(4)O(6)S(1)'
mod_dict['ICAT-H[C]'] = 'C NORMAL 345.097915 345.097915 0 H(20)C(15)N(1)O(6)Cl(1)'
mod_dict['ICAT-H_13C(6)[C]'] = 'C NORMAL 351.118044 351.118044 0 H(20)C(9)13C(6)N(1)O(6)Cl(1)'
mod_dict['ICDID[C]'] = 'C NORMAL 138.068080 138.068080 0 H(10)C(8)O(2)'
mod_dict['ICDID_2H(6)[C]'] = 'C NORMAL 144.105740 144.105740 0 H(4)2H(6)C(8)O(2)'
mod_dict['ICPL[K]'] = 'K NORMAL 105.021464 105.021464 0 H(3)C(6)N(1)O(1)'
mod_dict['ICPL[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 105.021464 105.021464 0 H(3)C(6)N(1)O(1)'
mod_dict['ICPL_13C(6)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 111.041593 111.041593 0 H(3)13C(6)N(1)O(1)'
mod_dict['ICPL_13C(6)[K]'] = 'K NORMAL 111.041593 111.041593 0 H(3)13C(6)N(1)O(1)'
mod_dict['ICPL_13C(6)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 111.041593 111.041593 0 H(3)13C(6)N(1)O(1)'
mod_dict['ICPL_13C(6)2H(4)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 115.066700 115.066700 0 H(-1)2H(4)13C(6)N(1)O(1)'
mod_dict['ICPL_13C(6)2H(4)[K]'] = 'K NORMAL 115.066700 115.066700 0 H(-1)2H(4)13C(6)N(1)O(1)'
mod_dict['ICPL_13C(6)2H(4)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 115.066700 115.066700 0 H(-1)2H(4)13C(6)N(1)O(1)'
mod_dict['ICPL_2H(4)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 109.046571 109.046571 0 H(-1)2H(4)C(6)N(1)O(1)'
mod_dict['ICPL_2H(4)[K]'] = 'K NORMAL 109.046571 109.046571 0 H(-1)2H(4)C(6)N(1)O(1)'
mod_dict['ICPL_2H(4)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 109.046571 109.046571 0 H(-1)2H(4)C(6)N(1)O(1)'
mod_dict['IDEnT[C]'] = 'C NORMAL 214.990469 214.990469 0 H(7)C(9)N(1)O(1)Cl(2)'
mod_dict['IED-Biotin[C]'] = 'C NORMAL 326.141261 326.141261 0 H(22)C(14)N(4)O(3)S(1)'
mod_dict['IGBP[C]'] = 'C NORMAL 296.016039 296.016039 0 H(13)C(12)N(2)O(2)Br(1)'
mod_dict['IGBP_13C(2)[C]'] = 'C NORMAL 298.022748 298.022748 0 H(13)C(10)13C(2)N(2)O(2)Br(1)'
mod_dict['IMEHex(2)NeuAc[K]'] = 'K NORMAL 688.199683 688.199683 0 H(3)C(2)N(1)S(1)Hex(2)NeuAc(1)'
mod_dict['IMID[K]'] = 'K NORMAL 68.037448 68.037448 0 H(4)C(3)N(2)'
mod_dict['IMID_2H(4)[K]'] = 'K NORMAL 72.062555 72.062555 0 2H(4)C(3)N(2)'
mod_dict['ISD_z+2_ion[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N -15.010899 -15.010899 0 H(-1)N(-1)'
mod_dict['Iminobiotin[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 225.093583 225.093583 0 H(15)C(10)N(3)O(1)S(1)'
mod_dict['Iminobiotin[K]'] = 'K NORMAL 225.093583 225.093583 0 H(15)C(10)N(3)O(1)S(1)'
mod_dict['Iodo[H]'] = 'H NORMAL 125.896648 125.896648 0 H(-1)I(1)'
mod_dict['Iodo[Y]'] = 'Y NORMAL 125.896648 125.896648 0 H(-1)I(1)'
mod_dict['IodoU-AMP[F]'] = 'F NORMAL 322.020217 322.020217 0 H(11)C(9)N(2)O(9)P(1)'
mod_dict['IodoU-AMP[W]'] = 'W NORMAL 322.020217 322.020217 0 H(11)C(9)N(2)O(9)P(1)'
mod_dict['IodoU-AMP[Y]'] = 'Y NORMAL 322.020217 322.020217 0 H(11)C(9)N(2)O(9)P(1)'
mod_dict['Iodoacetanilide[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 133.052764 133.052764 0 H(7)C(8)N(1)O(1)'
mod_dict['Iodoacetanilide[C]'] = 'C NORMAL 133.052764 133.052764 0 H(7)C(8)N(1)O(1)'
mod_dict['Iodoacetanilide[K]'] = 'K NORMAL 133.052764 133.052764 0 H(7)C(8)N(1)O(1)'
mod_dict['Iodoacetanilide_13C(6)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 139.072893 139.072893 0 H(7)C(2)13C(6)N(1)O(1)'
mod_dict['Iodoacetanilide_13C(6)[C]'] = 'C NORMAL 139.072893 139.072893 0 H(7)C(2)13C(6)N(1)O(1)'
mod_dict['Iodoacetanilide_13C(6)[K]'] = 'K NORMAL 139.072893 139.072893 0 H(7)C(2)13C(6)N(1)O(1)'
mod_dict['Isopropylphospho[S]'] = 'S NORMAL 122.013281 122.013281 0 H(7)C(3)O(3)P(1)'
mod_dict['Isopropylphospho[T]'] = 'T NORMAL 122.013281 122.013281 0 H(7)C(3)O(3)P(1)'
mod_dict['Isopropylphospho[Y]'] = 'Y NORMAL 122.013281 122.013281 0 H(7)C(3)O(3)P(1)'
mod_dict['LG-Hlactam-K[K]'] = 'K NORMAL 348.193674 348.193674 0 H(28)C(20)O(5)'
mod_dict['LG-Hlactam-K[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 348.193674 348.193674 0 H(28)C(20)O(5)'
mod_dict['LG-Hlactam-R[R]'] = 'R NORMAL 306.171876 306.171876 0 H(26)C(19)N(-2)O(5)'
mod_dict['LG-anhydrolactam[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 314.188195 314.188195 0 H(26)C(20)O(3)'
mod_dict['LG-anhydrolactam[K]'] = 'K NORMAL 314.188195 314.188195 0 H(26)C(20)O(3)'
mod_dict['LG-anhyropyrrole[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 298.193280 298.193280 0 H(26)C(20)O(2)'
mod_dict['LG-anhyropyrrole[K]'] = 'K NORMAL 298.193280 298.193280 0 H(26)C(20)O(2)'
mod_dict['LG-lactam-K[K]'] = 'K NORMAL 332.198760 332.198760 0 H(28)C(20)O(4)'
mod_dict['LG-lactam-K[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 332.198760 332.198760 0 H(28)C(20)O(4)'
mod_dict['LG-lactam-R[R]'] = 'R NORMAL 290.176961 290.176961 0 H(26)C(19)N(-2)O(4)'
mod_dict['LG-pyrrole[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 316.203845 316.203845 0 H(28)C(20)O(3)'
mod_dict['LG-pyrrole[K]'] = 'K NORMAL 316.203845 316.203845 0 H(28)C(20)O(3)'
mod_dict['Label_13C(1)2H(3)+Oxidation[M]'] = 'M NORMAL 20.017100 20.017100 0 H(-3)2H(3)C(-1)13C(1)O(1)'
mod_dict['Label_13C(1)2H(3)[M]'] = 'M NORMAL 4.022185 4.022185 0 H(-3)2H(3)C(-1)13C(1)'
mod_dict['Label_13C(3)[A]'] = 'A NORMAL 3.010064 3.010064 0 C(-3)13C(3)'
mod_dict['Label_13C(3)15N(1)[A]'] = 'A NORMAL 4.007099 4.007099 0 C(-3)13C(3)N(-1)15N(1)'
mod_dict['Label_13C(4)+Oxidation[M]'] = 'M NORMAL 20.008334 20.008334 0 C(-4)13C(4)O(1)'
mod_dict['Label_13C(4)[M]'] = 'M NORMAL 4.013419 4.013419 0 C(-4)13C(4)'
mod_dict['Label_13C(4)15N(1)[D]'] = 'D NORMAL 5.010454 5.010454 0 C(-4)13C(4)N(-1)15N(1)'
mod_dict['Label_13C(4)15N(2)+GlyGly[K]'] = 'K NORMAL 120.050417 120.050417 0 H(6)13C(4)15N(2)O(2)'
mod_dict['Label_13C(5)[P]'] = 'P NORMAL 5.016774 5.016774 0 C(-5)13C(5)'
mod_dict['Label_13C(5)15N(1)[E]'] = 'E NORMAL 6.013809 6.013809 0 C(-5)13C(5)N(-1)15N(1)'
mod_dict['Label_13C(5)15N(1)[M]'] = 'M NORMAL 6.013809 6.013809 0 C(-5)13C(5)N(-1)15N(1)'
mod_dict['Label_13C(5)15N(1)[P]'] = 'P NORMAL 6.013809 6.013809 0 C(-5)13C(5)N(-1)15N(1)'
mod_dict['Label_13C(5)15N(1)[V]'] = 'V NORMAL 6.013809 6.013809 0 C(-5)13C(5)N(-1)15N(1)'
mod_dict['Label_13C(6)+Acetyl[K]'] = 'K NORMAL 48.030694 48.030694 0 H(2)C(-4)13C(6)O(1)'
mod_dict['Label_13C(6)+Dimethyl[K]'] = 'K NORMAL 34.051429 34.051429 0 H(4)C(-4)13C(6)'
mod_dict['Label_13C(6)+GlyGly[K]'] = 'K NORMAL 120.063056 120.063056 0 H(6)C(-2)13C(6)N(2)O(2)'
mod_dict['Label_13C(6)[I]'] = 'I NORMAL 6.020129 6.020129 0 C(-6)13C(6)'
mod_dict['Label_13C(6)[K]'] = 'K NORMAL 6.020129 6.020129 0 C(-6)13C(6)'
mod_dict['Label_13C(6)[L]'] = 'L NORMAL 6.020129 6.020129 0 C(-6)13C(6)'
mod_dict['Label_13C(6)[R]'] = 'R NORMAL 6.020129 6.020129 0 C(-6)13C(6)'
mod_dict['Label_13C(6)15N(1)[I]'] = 'I NORMAL 7.017164 7.017164 0 C(-6)13C(6)N(-1)15N(1)'
mod_dict['Label_13C(6)15N(1)[L]'] = 'L NORMAL 7.017164 7.017164 0 C(-6)13C(6)N(-1)15N(1)'
mod_dict['Label_13C(6)15N(2)+Acetyl[K]'] = 'K NORMAL 50.024764 50.024764 0 H(2)C(-4)13C(6)N(-2)15N(2)O(1)'
mod_dict['Label_13C(6)15N(2)+Dimethyl[K]'] = 'K NORMAL 36.045499 36.045499 0 H(4)C(-4)13C(6)N(-2)15N(2)'
mod_dict['Label_13C(6)15N(2)+GlyGly[K]'] = 'K NORMAL 122.057126 122.057126 0 H(6)C(-2)13C(6)15N(2)O(2)'
mod_dict['Label_13C(6)15N(2)[K]'] = 'K NORMAL 8.014199 8.014199 0 C(-6)13C(6)N(-2)15N(2)'
mod_dict['Label_13C(6)15N(2)[L]'] = 'L NORMAL 8.014199 8.014199 0 C(-6)13C(6)N(-2)15N(2)'
mod_dict['Label_13C(6)15N(4)+Dimethyl[R]'] = 'R NORMAL 38.039569 38.039569 0 H(4)C(-4)13C(6)N(-4)15N(4)'
mod_dict['Label_13C(6)15N(4)+Dimethyl_2H(6)13C(2)[R]'] = 'R NORMAL 46.083939 46.083939 0 H(-2)2H(6)C(-6)13C(8)N(-4)15N(4)'
mod_dict['Label_13C(6)15N(4)+Methyl[R]'] = 'R NORMAL 24.023919 24.023919 0 H(2)C(-5)13C(6)N(-4)15N(4)'
mod_dict['Label_13C(6)15N(4)+Methyl_2H(3)13C(1)[R]'] = 'R NORMAL 28.046104 28.046104 0 H(-1)2H(3)C(-6)13C(7)N(-4)15N(4)'
mod_dict['Label_13C(6)15N(4)[R]'] = 'R NORMAL 10.008269 10.008269 0 C(-6)13C(6)N(-4)15N(4)'
mod_dict['Label_13C(8)15N(2)[R]'] = 'R NORMAL 10.020909 10.020909 0 C(-8)13C(8)N(-2)15N(2)'
mod_dict['Label_13C(9)+Phospho[Y]'] = 'Y NORMAL 88.996524 88.996524 0 H(1)C(-9)13C(9)O(3)P(1)'
mod_dict['Label_13C(9)[F]'] = 'F NORMAL 9.030193 9.030193 0 C(-9)13C(9)'
mod_dict['Label_13C(9)[Y]'] = 'Y NORMAL 9.030193 9.030193 0 C(-9)13C(9)'
mod_dict['Label_13C(9)15N(1)[F]'] = 'F NORMAL 10.027228 10.027228 0 C(-9)13C(9)N(-1)15N(1)'
mod_dict['Label_15N(1)[A]'] = 'A NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[C]'] = 'C NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[D]'] = 'D NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[E]'] = 'E NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[F]'] = 'F NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[G]'] = 'G NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[I]'] = 'I NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[L]'] = 'L NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[M]'] = 'M NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[P]'] = 'P NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[S]'] = 'S NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[T]'] = 'T NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[V]'] = 'V NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[Y]'] = 'Y NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(2)[K]'] = 'K NORMAL 1.994070 1.994070 0 N(-2)15N(2)'
mod_dict['Label_15N(2)[N]'] = 'N NORMAL 1.994070 1.994070 0 N(-2)15N(2)'
mod_dict['Label_15N(2)[Q]'] = 'Q NORMAL 1.994070 1.994070 0 N(-2)15N(2)'
mod_dict['Label_15N(2)[W]'] = 'W NORMAL 1.994070 1.994070 0 N(-2)15N(2)'
mod_dict['Label_15N(2)2H(9)[K]'] = 'K NORMAL 11.050561 11.050561 0 H(-9)2H(9)N(-2)15N(2)'
mod_dict['Label_15N(3)[H]'] = 'H NORMAL 2.991105 2.991105 0 N(-3)15N(3)'
mod_dict['Label_15N(4)[R]'] = 'R NORMAL 3.988140 3.988140 0 N(-4)15N(4)'
mod_dict['Label_18O(1)[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 2.004246 2.004246 0 O(-1)18O(1)'
mod_dict['Label_18O(1)[S]'] = 'S NORMAL 2.004246 2.004246 0 O(-1)18O(1)'
mod_dict['Label_18O(1)[T]'] = 'T NORMAL 2.004246 2.004246 0 O(-1)18O(1)'
mod_dict['Label_18O(1)[Y]'] = 'Y NORMAL 2.004246 2.004246 0 O(-1)18O(1)'
mod_dict['Label_18O(2)[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 4.008491 4.008491 0 O(-2)18O(2)'
mod_dict['Label_2H(10)[L]'] = 'L NORMAL 10.062767 10.062767 0 H(-10)2H(10)'
mod_dict['Label_2H(3)+Oxidation[M]'] = 'M NORMAL 19.013745 19.013745 0 H(-3)2H(3)O(1)'
mod_dict['Label_2H(3)[L]'] = 'L NORMAL 3.018830 3.018830 0 H(-3)2H(3)'
mod_dict['Label_2H(3)[M]'] = 'M NORMAL 3.018830 3.018830 0 H(-3)2H(3)'
mod_dict['Label_2H(4)+Acetyl[K]'] = 'K NORMAL 46.035672 46.035672 0 H(-2)2H(4)C(2)O(1)'
mod_dict['Label_2H(4)+GlyGly[K]'] = 'K NORMAL 118.068034 118.068034 0 H(2)2H(4)C(4)N(2)O(2)'
mod_dict['Label_2H(4)[F]'] = 'F NORMAL 4.025107 4.025107 0 H(-4)2H(4)'
mod_dict['Label_2H(4)[K]'] = 'K NORMAL 4.025107 4.025107 0 H(-4)2H(4)'
mod_dict['Label_2H(4)[Y]'] = 'Y NORMAL 4.025107 4.025107 0 H(-4)2H(4)'
mod_dict['Label_2H(4)13C(1)[R]'] = 'R NORMAL 5.028462 5.028462 0 H(-4)2H(4)C(-1)13C(1)'
mod_dict['Label_2H(9)13C(6)15N(2)[K]'] = 'K NORMAL 17.070690 17.070690 0 H(-9)2H(9)C(-6)13C(6)N(-2)15N(2)'
mod_dict['Leu->MetOx[L]'] = 'L NORMAL 33.951335 33.951335 0 H(-2)C(-1)O(1)S(1)'
mod_dict['LeuArgGlyGly[K]'] = 'K NORMAL 383.228103 383.228103 0 H(29)C(16)N(7)O(4)'
mod_dict['Lipoyl[K]'] = 'K NORMAL 188.032956 188.032956 0 H(12)C(8)O(1)S(2)'
mod_dict['Lys->Ala[K]'] = 'K NORMAL -57.057849 -57.057849 0 H(-7)C(-3)N(-1)'
mod_dict['Lys->Allysine[K]'] = 'K NORMAL -1.031634 -1.031634 0 H(-3)N(-1)O(1)'
mod_dict['Lys->AminoadipicAcid[K]'] = 'K NORMAL 14.963280 14.963280 0 H(-3)N(-1)O(2)'
mod_dict['Lys->Arg[K]'] = 'K NORMAL 28.006148 28.006148 0 N(2)'
mod_dict['Lys->Asn[K]'] = 'K NORMAL -14.052036 -14.052036 0 H(-6)C(-2)O(1)'
mod_dict['Lys->Asp[K]'] = 'K NORMAL -13.068020 -13.068020 0 H(-7)C(-2)N(-1)O(2)'
mod_dict['Lys->CamCys[K]'] = 'K NORMAL 31.935685 31.935685 0 H(-4)C(-1)O(1)S(1)'
mod_dict['Lys->Cys[K]'] = 'K NORMAL -25.085779 -25.085779 0 H(-7)C(-3)N(-1)S(1)'
mod_dict['Lys->Gln[K]'] = 'K NORMAL -0.036386 -0.036386 0 H(-4)C(-1)O(1)'
mod_dict['Lys->Glu[K]'] = 'K NORMAL 0.947630 0.947630 0 H(-5)C(-1)N(-1)O(2)'
mod_dict['Lys->Gly[K]'] = 'K NORMAL -71.073499 -71.073499 0 H(-9)C(-4)N(-1)'
mod_dict['Lys->His[K]'] = 'K NORMAL 8.963949 8.963949 0 H(-5)N(1)'
mod_dict['Lys->Met[K]'] = 'K NORMAL 2.945522 2.945522 0 H(-3)C(-1)N(-1)S(1)'
mod_dict['Lys->MetOx[K]'] = 'K NORMAL 18.940436 18.940436 0 H(-3)C(-1)N(-1)O(1)S(1)'
mod_dict['Lys->Phe[K]'] = 'K NORMAL 18.973451 18.973451 0 H(-3)C(3)N(-1)'
mod_dict['Lys->Pro[K]'] = 'K NORMAL -31.042199 -31.042199 0 H(-5)C(-1)N(-1)'
mod_dict['Lys->Ser[K]'] = 'K NORMAL -41.062935 -41.062935 0 H(-7)C(-3)N(-1)O(1)'
mod_dict['Lys->Thr[K]'] = 'K NORMAL -27.047285 -27.047285 0 H(-5)C(-2)N(-1)O(1)'
mod_dict['Lys->Trp[K]'] = 'K NORMAL 57.984350 57.984350 0 H(-2)C(5)'
mod_dict['Lys->Tyr[K]'] = 'K NORMAL 34.968366 34.968366 0 H(-3)C(3)N(-1)O(1)'
mod_dict['Lys->Val[K]'] = 'K NORMAL -29.026549 -29.026549 0 H(-3)C(-1)N(-1)'
mod_dict['Lys->Xle[K]'] = 'K NORMAL -15.010899 -15.010899 0 H(-1)N(-1)'
mod_dict['Lys-loss[ProteinC-termK]'] = 'K PRO_C -128.094963 -128.094963 0 H(-12)C(-6)N(-2)O(-1)'
mod_dict['Lys[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 128.094963 128.094963 0 H(12)C(6)N(2)O(1)'
mod_dict['Lysbiotinhydrazide[K]'] = 'K NORMAL 241.088497 241.088497 0 H(15)C(10)N(3)O(2)S(1)'
mod_dict['MDCC[C]'] = 'C NORMAL 383.148121 383.148121 0 H(21)C(20)N(3)O(5)'
mod_dict['MG-H1[R]'] = 'R NORMAL 54.010565 54.010565 0 H(2)C(3)O(1)'
mod_dict['MM-diphenylpentanone[C]'] = 'C NORMAL 265.146664 265.146664 0 H(19)C(18)N(1)O(1)'
mod_dict['MTSL[C]'] = 'C NORMAL 184.079610 184.079610 0 H(14)C(9)N(1)O(1)S(1)'
mod_dict['Maleimide-PEO2-Biotin[C]'] = 'C NORMAL 525.225719 525.225719 0 H(35)C(23)N(5)O(7)S(1)'
mod_dict['Malonyl[C]'] = 'C NORMAL 86.000394 86.000394 0 H(2)C(3)O(3)'
mod_dict['Malonyl[S]'] = 'S NORMAL 86.000394 86.000394 0 H(2)C(3)O(3)'
mod_dict['Menadione-HQ[C]'] = 'C NORMAL 172.052430 172.052430 0 H(8)C(11)O(2)'
mod_dict['Menadione-HQ[K]'] = 'K NORMAL 172.052430 172.052430 0 H(8)C(11)O(2)'
mod_dict['Menadione[C]'] = 'C NORMAL 170.036779 170.036779 0 H(6)C(11)O(2)'
mod_dict['Menadione[K]'] = 'K NORMAL 170.036779 170.036779 0 H(6)C(11)O(2)'
mod_dict['MercaptoEthanol[S]'] = 'S NORMAL 60.003371 60.003371 0 H(4)C(2)S(1)'
mod_dict['MercaptoEthanol[T]'] = 'T NORMAL 60.003371 60.003371 0 H(4)C(2)S(1)'
mod_dict['Met->Aha[M]'] = 'M NORMAL -4.986324 -4.986324 0 H(-3)C(-1)N(3)S(-1)'
mod_dict['Met->Ala[M]'] = 'M NORMAL -60.003371 -60.003371 0 H(-4)C(-2)S(-1)'
mod_dict['Met->Arg[M]'] = 'M NORMAL 25.060626 25.060626 0 H(3)C(1)N(3)S(-1)'
mod_dict['Met->Asn[M]'] = 'M NORMAL -16.997557 -16.997557 0 H(-3)C(-1)N(1)O(1)S(-1)'
mod_dict['Met->Asp[M]'] = 'M NORMAL -16.013542 -16.013542 0 H(-4)C(-1)O(2)S(-1)'
mod_dict['Met->Cys[M]'] = 'M NORMAL -28.031300 -28.031300 0 H(-4)C(-2)'
mod_dict['Met->Gln[M]'] = 'M NORMAL -2.981907 -2.981907 0 H(-1)N(1)O(1)S(-1)'
mod_dict['Met->Glu[M]'] = 'M NORMAL -1.997892 -1.997892 0 H(-2)O(2)S(-1)'
mod_dict['Met->Gly[M]'] = 'M NORMAL -74.019021 -74.019021 0 H(-6)C(-3)S(-1)'
mod_dict['Met->His[M]'] = 'M NORMAL 6.018427 6.018427 0 H(-2)C(1)N(2)S(-1)'
mod_dict['Met->Hpg[M]'] = 'M NORMAL -21.987721 -21.987721 0 H(-2)C(1)S(-1)'
mod_dict['Met->Hse[AnyC-termM]'] = 'M PEP_C -29.992806 -29.992806 0 H(-2)C(-1)O(1)S(-1)'
mod_dict['Met->Hsl[AnyC-termM]'] = 'M PEP_C -48.003371 -48.003371 0 H(-4)C(-1)S(-1)'
mod_dict['Met->Lys[M]'] = 'M NORMAL -2.945522 -2.945522 0 H(3)C(1)N(1)S(-1)'
mod_dict['Met->Phe[M]'] = 'M NORMAL 16.027929 16.027929 0 C(4)S(-1)'
mod_dict['Met->Pro[M]'] = 'M NORMAL -33.987721 -33.987721 0 H(-2)S(-1)'
mod_dict['Met->Ser[M]'] = 'M NORMAL -44.008456 -44.008456 0 H(-4)C(-2)O(1)S(-1)'
mod_dict['Met->Thr[M]'] = 'M NORMAL -29.992806 -29.992806 0 H(-2)C(-1)O(1)S(-1)'
mod_dict['Met->Trp[M]'] = 'M NORMAL 55.038828 55.038828 0 H(1)C(6)N(1)S(-1)'
mod_dict['Met->Tyr[M]'] = 'M NORMAL 32.022844 32.022844 0 C(4)O(1)S(-1)'
mod_dict['Met->Val[M]'] = 'M NORMAL -31.972071 -31.972071 0 S(-1)'
mod_dict['Met->Xle[M]'] = 'M NORMAL -17.956421 -17.956421 0 H(2)C(1)S(-1)'
mod_dict['Met-loss+Acetyl[ProteinN-termM]'] = 'M PRO_N -89.029920 -89.029920 0 H(-7)C(-3)N(-1)S(-1)'
mod_dict['Met-loss[ProteinN-termM]'] = 'M PRO_N -131.040485 -131.040485 0 H(-9)C(-5)N(-1)O(-1)S(-1)'
mod_dict['Methyl+Acetyl_2H(3)[K]'] = 'K NORMAL 59.045045 59.045045 0 H(1)2H(3)C(3)O(1)'
mod_dict['Methyl+Deamidated[N]'] = 'N NORMAL 14.999666 14.999666 0 H(1)C(1)N(-1)O(1)'
mod_dict['Methyl+Deamidated[Q]'] = 'Q NORMAL 14.999666 14.999666 0 H(1)C(1)N(-1)O(1)'
mod_dict['Methyl-PEO12-Maleimide[C]'] = 'C NORMAL 710.383719 710.383719 0 H(58)C(32)N(2)O(15)'
mod_dict['Methyl[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[C]'] = 'C NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[D]'] = 'D NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[E]'] = 'E NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[H]'] = 'H NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[I]'] = 'I NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[K]'] = 'K NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[L]'] = 'L NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[N]'] = 'N NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[Q]'] = 'Q NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[R]'] = 'R NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[S]'] = 'S NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[T]'] = 'T NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl_2H(2)[K]'] = 'K NORMAL 16.028204 16.028204 0 2H(2)C(1)'
mod_dict['Methyl_2H(3)+Acetyl_2H(3)[K]'] = 'K NORMAL 62.063875 62.063875 0 H(-2)2H(6)C(3)O(1)'
mod_dict['Methyl_2H(3)[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 17.034480 17.034480 0 H(-1)2H(3)C(1)'
mod_dict['Methyl_2H(3)[D]'] = 'D NORMAL 17.034480 17.034480 0 H(-1)2H(3)C(1)'
mod_dict['Methyl_2H(3)[E]'] = 'E NORMAL 17.034480 17.034480 0 H(-1)2H(3)C(1)'
mod_dict['Methyl_2H(3)[K]'] = 'K NORMAL 17.034480 17.034480 0 H(-1)2H(3)C(1)'
mod_dict['Methyl_2H(3)[R]'] = 'R NORMAL 17.034480 17.034480 0 H(-1)2H(3)C(1)'
mod_dict['Methyl_2H(3)13C(1)[R]'] = 'R NORMAL 18.037835 18.037835 0 H(-1)2H(3)13C(1)'
mod_dict['Methylamine[S]'] = 'S NORMAL 13.031634 13.031634 0 H(3)C(1)N(1)O(-1)'
mod_dict['Methylamine[T]'] = 'T NORMAL 13.031634 13.031634 0 H(3)C(1)N(1)O(-1)'
mod_dict['Methylmalonylation[S]'] = 'S NORMAL 100.016044 100.016044 0 H(4)C(4)O(3)'
mod_dict['Methylphosphonate[S]'] = 'S NORMAL 77.987066 77.987066 0 H(3)C(1)O(2)P(1)'
mod_dict['Methylphosphonate[T]'] = 'T NORMAL 77.987066 77.987066 0 H(3)C(1)O(2)P(1)'
mod_dict['Methylphosphonate[Y]'] = 'Y NORMAL 77.987066 77.987066 0 H(3)C(1)O(2)P(1)'
mod_dict['Methylpyrroline[K]'] = 'K NORMAL 109.052764 109.052764 0 H(7)C(6)N(1)O(1)'
mod_dict['Methylthio[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 45.987721 45.987721 0 H(2)C(1)S(1)'
mod_dict['Methylthio[C]'] = 'C NORMAL 45.987721 45.987721 0 H(2)C(1)S(1)'
mod_dict['Methylthio[D]'] = 'D NORMAL 45.987721 45.987721 0 H(2)C(1)S(1)'
mod_dict['Methylthio[K]'] = 'K NORMAL 45.987721 45.987721 0 H(2)C(1)S(1)'
mod_dict['Methylthio[N]'] = 'N NORMAL 45.987721 45.987721 0 H(2)C(1)S(1)'
mod_dict['Microcin[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C 831.197041 831.197041 0 H(37)C(36)N(3)O(20)'
mod_dict['MicrocinC7[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C 386.110369 386.110369 0 H(19)C(13)N(6)O(6)P(1)'
mod_dict['Molybdopterin[C]'] = 'C NORMAL 521.884073 521.884073 0 H(11)C(10)N(5)O(8)P(1)S(2)Mo(1)'
mod_dict['MolybdopterinGD+Delta_S(-1)Se(1)[C]'] = 'C NORMAL 1620.930224 1620.930224 0 H(47)C(40)N(20)O(26)P(4)S(3)Se(1)Mo(1)'
mod_dict['MolybdopterinGD[C]'] = 'C NORMAL 1572.985775 1572.985775 0 H(47)C(40)N(20)O(26)P(4)S(4)Mo(1)'
mod_dict['MolybdopterinGD[D]'] = 'D NORMAL 1572.985775 1572.985775 0 H(47)C(40)N(20)O(26)P(4)S(4)Mo(1)'
mod_dict['MurNAc[A]'] = 'A NORMAL 275.100502 275.100502 0 H(17)C(11)N(1)O(7)'
mod_dict['Myristoleyl[ProteinN-termG]'] = 'G PRO_N 208.182715 208.182715 0 H(24)C(14)O(1)'
mod_dict['Myristoyl+Delta_H(-4)[ProteinN-termG]'] = 'G PRO_N 206.167065 206.167065 0 H(22)C(14)O(1)'
mod_dict['Myristoyl[AnyN-termG]'] = 'G PEP_N 210.198366 210.198366 0 H(26)C(14)O(1)'
mod_dict['Myristoyl[C]'] = 'C NORMAL 210.198366 210.198366 0 H(26)C(14)O(1)'
mod_dict['Myristoyl[K]'] = 'K NORMAL 210.198366 210.198366 0 H(26)C(14)O(1)'
mod_dict['N-dimethylphosphate[S]'] = 'S NORMAL 107.013615 107.013615 0 H(6)C(2)N(1)O(2)P(1)'
mod_dict['NA-LNO2[C]'] = 'C NORMAL 325.225309 325.225309 0 H(31)C(18)N(1)O(4)'
mod_dict['NA-LNO2[H]'] = 'H NORMAL 325.225309 325.225309 0 H(31)C(18)N(1)O(4)'
mod_dict['NA-OA-NO2[C]'] = 'C NORMAL 327.240959 327.240959 0 H(33)C(18)N(1)O(4)'
mod_dict['NA-OA-NO2[H]'] = 'H NORMAL 327.240959 327.240959 0 H(33)C(18)N(1)O(4)'
mod_dict['NBS[W]'] = 'W NORMAL 152.988449 152.988449 0 H(3)C(6)N(1)O(2)S(1)'
mod_dict['NBS_13C(6)[W]'] = 'W NORMAL 159.008578 159.008578 0 H(3)13C(6)N(1)O(2)S(1)'
mod_dict['NDA[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 175.042199 175.042199 0 H(5)C(13)N(1)'
mod_dict['NDA[K]'] = 'K NORMAL 175.042199 175.042199 0 H(5)C(13)N(1)'
mod_dict['NEIAA[C]'] = 'C NORMAL 85.052764 85.052764 0 H(7)C(4)N(1)O(1)'
mod_dict['NEIAA[Y]'] = 'Y NORMAL 85.052764 85.052764 0 H(7)C(4)N(1)O(1)'
mod_dict['NEIAA_2H(5)[C]'] = 'C NORMAL 90.084148 90.084148 0 H(2)2H(5)C(4)N(1)O(1)'
mod_dict['NEIAA_2H(5)[Y]'] = 'Y NORMAL 90.084148 90.084148 0 H(2)2H(5)C(4)N(1)O(1)'
mod_dict['NEM_2H(5)+H2O[C]'] = 'C NORMAL 148.089627 148.089627 0 H(4)2H(5)C(6)N(1)O(3)'
mod_dict['NEM_2H(5)[C]'] = 'C NORMAL 130.079062 130.079062 0 H(2)2H(5)C(6)N(1)O(2)'
mod_dict['NEMsulfur[C]'] = 'C NORMAL 157.019749 157.019749 0 H(7)C(6)N(1)O(2)S(1)'
mod_dict['NEMsulfurWater[C]'] = 'C NORMAL 175.030314 175.030314 0 H(9)C(6)N(1)O(3)S(1)'
mod_dict['NHS-LC-Biotin[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 339.161662 339.161662 0 H(25)C(16)N(3)O(3)S(1)'
mod_dict['NHS-LC-Biotin[K]'] = 'K NORMAL 339.161662 339.161662 0 H(25)C(16)N(3)O(3)S(1)'
mod_dict['NHS-fluorescein[K]'] = 'K NORMAL 471.131802 471.131802 0 H(21)C(27)N(1)O(7)'
mod_dict['NIC[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 105.021464 105.021464 0 H(3)C(6)N(1)O(1)'
mod_dict['NIPCAM[C]'] = 'C NORMAL 99.068414 99.068414 0 H(9)C(5)N(1)O(1)'
mod_dict['NO_SMX_SEMD[C]'] = 'C NORMAL 252.044287 252.044287 0 H(10)C(10)N(3)O(3)S(1)'
mod_dict['NO_SMX_SIMD[C]'] = 'C NORMAL 267.031377 267.031377 0 H(9)C(10)N(3)O(4)S(1)'
mod_dict['NO_SMX_SMCT[C]'] = 'C NORMAL 268.039202 268.039202 0 H(10)C(10)N(3)O(4)S(1)'
mod_dict['Nethylmaleimide+water[C]'] = 'C NORMAL 143.058243 143.058243 0 H(9)C(6)N(1)O(3)'
mod_dict['Nethylmaleimide+water[K]'] = 'K NORMAL 143.058243 143.058243 0 H(9)C(6)N(1)O(3)'
mod_dict['Nethylmaleimide[C]'] = 'C NORMAL 125.047679 125.047679 0 H(7)C(6)N(1)O(2)'
mod_dict['NeuAc[N]'] = 'N NORMAL 291.095417 291.095417 0 NeuAc(1)'
mod_dict['NeuAc[S]'] = 'S NORMAL 291.095417 291.095417 0 NeuAc(1)'
mod_dict['NeuAc[T]'] = 'T NORMAL 291.095417 291.095417 0 NeuAc(1)'
mod_dict['NeuGc[N]'] = 'N NORMAL 307.090331 307.090331 0 NeuGc(1)'
mod_dict['NeuGc[S]'] = 'S NORMAL 307.090331 307.090331 0 NeuGc(1)'
mod_dict['NeuGc[T]'] = 'T NORMAL 307.090331 307.090331 0 NeuGc(1)'
mod_dict['Nitro[W]'] = 'W NORMAL 44.985078 44.985078 0 H(-1)N(1)O(2)'
mod_dict['Nitro[Y]'] = 'Y NORMAL 44.985078 44.985078 0 H(-1)N(1)O(2)'
mod_dict['Nitrosyl[C]'] = 'C NORMAL 28.990164 28.990164 0 H(-1)N(1)O(1)'
mod_dict['Nmethylmaleimide+water[C]'] = 'C NORMAL 129.042593 129.042593 0 H(7)C(5)N(1)O(3)'
mod_dict['Nmethylmaleimide[C]'] = 'C NORMAL 111.032028 111.032028 0 H(5)C(5)N(1)O(2)'
mod_dict['Nmethylmaleimide[K]'] = 'K NORMAL 111.032028 111.032028 0 H(5)C(5)N(1)O(2)'
mod_dict['O-Dimethylphosphate[S]'] = 'S NORMAL 107.997631 107.997631 0 H(5)C(2)O(3)P(1)'
mod_dict['O-Dimethylphosphate[T]'] = 'T NORMAL 107.997631 107.997631 0 H(5)C(2)O(3)P(1)'
mod_dict['O-Dimethylphosphate[Y]'] = 'Y NORMAL 107.997631 107.997631 0 H(5)C(2)O(3)P(1)'
mod_dict['O-Et-N-diMePhospho[S]'] = 'S NORMAL 135.044916 135.044916 0 H(10)C(4)N(1)O(2)P(1)'
mod_dict['O-Isopropylmethylphosphonate[S]'] = 'S NORMAL 120.034017 120.034017 0 H(9)C(4)O(2)P(1)'
mod_dict['O-Isopropylmethylphosphonate[T]'] = 'T NORMAL 120.034017 120.034017 0 H(9)C(4)O(2)P(1)'
mod_dict['O-Isopropylmethylphosphonate[Y]'] = 'Y NORMAL 120.034017 120.034017 0 H(9)C(4)O(2)P(1)'
mod_dict['O-Methylphosphate[S]'] = 'S NORMAL 93.981981 93.981981 0 H(3)C(1)O(3)P(1)'
mod_dict['O-Methylphosphate[T]'] = 'T NORMAL 93.981981 93.981981 0 H(3)C(1)O(3)P(1)'
mod_dict['O-Methylphosphate[Y]'] = 'Y NORMAL 93.981981 93.981981 0 H(3)C(1)O(3)P(1)'
mod_dict['O-pinacolylmethylphosphonate[H]'] = 'H NORMAL 162.080967 162.080967 0 H(15)C(7)O(2)P(1)'
mod_dict['O-pinacolylmethylphosphonate[K]'] = 'K NORMAL 162.080967 162.080967 0 H(15)C(7)O(2)P(1)'
mod_dict['O-pinacolylmethylphosphonate[S]'] = 'S NORMAL 162.080967 162.080967 0 H(15)C(7)O(2)P(1)'
mod_dict['O-pinacolylmethylphosphonate[T]'] = 'T NORMAL 162.080967 162.080967 0 H(15)C(7)O(2)P(1)'
mod_dict['O-pinacolylmethylphosphonate[Y]'] = 'Y NORMAL 162.080967 162.080967 0 H(15)C(7)O(2)P(1)'
mod_dict['Octanoyl[C]'] = 'C NORMAL 126.104465 126.104465 0 H(14)C(8)O(1)'
mod_dict['Octanoyl[S]'] = 'S NORMAL 126.104465 126.104465 0 H(14)C(8)O(1)'
mod_dict['Octanoyl[T]'] = 'T NORMAL 126.104465 126.104465 0 H(14)C(8)O(1)'
mod_dict['OxArgBiotin[R]'] = 'R NORMAL 310.135113 310.135113 0 H(22)C(15)N(2)O(3)S(1)'
mod_dict['OxArgBiotinRed[R]'] = 'R NORMAL 312.150763 312.150763 0 H(24)C(15)N(2)O(3)S(1)'
mod_dict['OxLysBiotin[K]'] = 'K NORMAL 352.156911 352.156911 0 H(24)C(16)N(4)O(3)S(1)'
mod_dict['OxLysBiotinRed[K]'] = 'K NORMAL 354.172562 354.172562 0 H(26)C(16)N(4)O(3)S(1)'
mod_dict['OxProBiotin[P]'] = 'P NORMAL 369.183461 369.183461 0 H(27)C(16)N(5)O(3)S(1)'
mod_dict['OxProBiotinRed[P]'] = 'P NORMAL 371.199111 371.199111 0 H(29)C(16)N(5)O(3)S(1)'
mod_dict['Oxidation+NEM[C]'] = 'C NORMAL 141.042593 141.042593 0 H(7)C(6)N(1)O(3)'
mod_dict['Oxidation[AnyC-termG]'] = 'G PEP_C 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[C]'] = 'C NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[D]'] = 'D NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[F]'] = 'F NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[H]'] = 'H NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[K]'] = 'K NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[M]'] = 'M NORMAL 15.994915 15.994915 1 63.998285 63.998285 O(1)'
mod_dict['Oxidation[N]'] = 'N NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[P]'] = 'P NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[R]'] = 'R NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[W]'] = 'W NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[Y]'] = 'Y NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['PEITC[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 163.045570 163.045570 0 H(9)C(9)N(1)S(1)'
mod_dict['PEITC[C]'] = 'C NORMAL 163.045570 163.045570 0 H(9)C(9)N(1)S(1)'
mod_dict['PEITC[K]'] = 'K NORMAL 163.045570 163.045570 0 H(9)C(9)N(1)S(1)'
mod_dict['PEO-Iodoacetyl-LC-Biotin[C]'] = 'C NORMAL 414.193691 414.193691 0 H(30)C(18)N(4)O(5)S(1)'
mod_dict['PET[S]'] = 'S NORMAL 121.035005 121.035005 0 H(7)C(7)N(1)O(-1)S(1)'
mod_dict['PET[T]'] = 'T NORMAL 121.035005 121.035005 0 H(7)C(7)N(1)O(-1)S(1)'
mod_dict['PS_Hapten[C]'] = 'C NORMAL 120.021129 120.021129 0 H(4)C(7)O(2)'
mod_dict['PS_Hapten[H]'] = 'H NORMAL 120.021129 120.021129 0 H(4)C(7)O(2)'
mod_dict['PS_Hapten[K]'] = 'K NORMAL 120.021129 120.021129 0 H(4)C(7)O(2)'
mod_dict['Palmitoleyl[C]'] = 'C NORMAL 236.214016 236.214016 0 H(28)C(16)O(1)'
mod_dict['Palmitoleyl[S]'] = 'S NORMAL 236.214016 236.214016 0 H(28)C(16)O(1)'
mod_dict['Palmitoleyl[T]'] = 'T NORMAL 236.214016 236.214016 0 H(28)C(16)O(1)'
mod_dict['Palmitoyl[C]'] = 'C NORMAL 238.229666 238.229666 0 H(30)C(16)O(1)'
mod_dict['Palmitoyl[K]'] = 'K NORMAL 238.229666 238.229666 0 H(30)C(16)O(1)'
mod_dict['Palmitoyl[S]'] = 'S NORMAL 238.229666 238.229666 0 H(30)C(16)O(1)'
mod_dict['Palmitoyl[T]'] = 'T NORMAL 238.229666 238.229666 0 H(30)C(16)O(1)'
mod_dict['Palmitoyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 238.229666 238.229666 0 H(30)C(16)O(1)'
mod_dict['Pentylamine[Q]'] = 'Q NORMAL 85.089149 85.089149 0 H(11)C(5)N(1)'
mod_dict['Phe->Ala[F]'] = 'F NORMAL -76.031300 -76.031300 0 H(-4)C(-6)'
mod_dict['Phe->Arg[F]'] = 'F NORMAL 9.032697 9.032697 0 H(3)C(-3)N(3)'
mod_dict['Phe->Asn[F]'] = 'F NORMAL -33.025486 -33.025486 0 H(-3)C(-5)N(1)O(1)'
mod_dict['Phe->Asp[F]'] = 'F NORMAL -32.041471 -32.041471 0 H(-4)C(-5)O(2)'
mod_dict['Phe->CamCys[F]'] = 'F NORMAL 12.962234 12.962234 0 H(-1)C(-4)N(1)O(1)S(1)'
mod_dict['Phe->Cys[F]'] = 'F NORMAL -44.059229 -44.059229 0 H(-4)C(-6)S(1)'
mod_dict['Phe->Gln[F]'] = 'F NORMAL -19.009836 -19.009836 0 H(-1)C(-4)N(1)O(1)'
mod_dict['Phe->Glu[F]'] = 'F NORMAL -18.025821 -18.025821 0 H(-2)C(-4)O(2)'
mod_dict['Phe->Gly[F]'] = 'F NORMAL -90.046950 -90.046950 0 H(-6)C(-7)'
mod_dict['Phe->His[F]'] = 'F NORMAL -10.009502 -10.009502 0 H(-2)C(-3)N(2)'
mod_dict['Phe->Lys[F]'] = 'F NORMAL -18.973451 -18.973451 0 H(3)C(-3)N(1)'
mod_dict['Phe->Met[F]'] = 'F NORMAL -16.027929 -16.027929 0 C(-4)S(1)'
mod_dict['Phe->Pro[F]'] = 'F NORMAL -50.015650 -50.015650 0 H(-2)C(-4)'
mod_dict['Phe->Ser[F]'] = 'F NORMAL -60.036386 -60.036386 0 H(-4)C(-6)O(1)'
mod_dict['Phe->Thr[F]'] = 'F NORMAL -46.020735 -46.020735 0 H(-2)C(-5)O(1)'
mod_dict['Phe->Trp[F]'] = 'F NORMAL 39.010899 39.010899 0 H(1)C(2)N(1)'
mod_dict['Phe->Val[F]'] = 'F NORMAL -48.000000 -48.000000 0 C(-4)'
mod_dict['Phe->Xle[F]'] = 'F NORMAL -33.984350 -33.984350 0 H(2)C(-3)'
mod_dict['Phenylisocyanate_2H(5)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 124.068498 124.068498 0 2H(5)C(7)N(1)O(1)'
mod_dict['Phospho[C]'] = 'C NORMAL 79.966331 79.966331 0 H(1)O(3)P(1)'
mod_dict['Phospho[D]'] = 'D NORMAL 79.966331 79.966331 0 H(1)O(3)P(1)'
mod_dict['Phospho[H]'] = 'H NORMAL 79.966331 79.966331 0 H(1)O(3)P(1)'
mod_dict['Phospho[K]'] = 'K NORMAL 79.966331 79.966331 0 H(1)O(3)P(1)'
mod_dict['Phospho[R]'] = 'R NORMAL 79.966331 79.966331 0 H(1)O(3)P(1)'
mod_dict['Phospho[S]'] = 'S NORMAL 79.966331 79.966331 1 97.976896 97.976896 H(1)O(3)P(1)'
mod_dict['Phospho[T]'] = 'T NORMAL 79.966331 79.966331 1 97.976896 97.976896 H(1)O(3)P(1)'
mod_dict['Phospho[Y]'] = 'Y NORMAL 79.966331 79.966331 0 H(1)O(3)P(1)'
mod_dict['PhosphoHex[S]'] = 'S NORMAL 242.019154 242.019154 0 H(1)O(3)P(1)Hex(1)'
mod_dict['PhosphoHexNAc[S]'] = 'S NORMAL 283.045704 283.045704 0 H(1)O(3)P(1)HexNAc(1)'
mod_dict['PhosphoHexNAc[T]'] = 'T NORMAL 283.045704 283.045704 0 H(1)O(3)P(1)HexNAc(1)'
mod_dict['PhosphoUridine[H]'] = 'H NORMAL 306.025302 306.025302 0 H(11)C(9)N(2)O(8)P(1)'
mod_dict['PhosphoUridine[Y]'] = 'Y NORMAL 306.025302 306.025302 0 H(11)C(9)N(2)O(8)P(1)'
mod_dict['Phosphoadenosine[H]'] = 'H NORMAL 329.052520 329.052520 0 H(12)C(10)N(5)O(6)P(1)'
mod_dict['Phosphoadenosine[K]'] = 'K NORMAL 329.052520 329.052520 0 H(12)C(10)N(5)O(6)P(1)'
mod_dict['Phosphoadenosine[T]'] = 'T NORMAL 329.052520 329.052520 0 H(12)C(10)N(5)O(6)P(1)'
mod_dict['Phosphoadenosine[Y]'] = 'Y NORMAL 329.052520 329.052520 0 H(12)C(10)N(5)O(6)P(1)'
mod_dict['Phosphogluconoylation[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 258.014069 258.014069 0 H(11)C(6)O(9)P(1)'
mod_dict['Phosphogluconoylation[K]'] = 'K NORMAL 258.014069 258.014069 0 H(11)C(6)O(9)P(1)'
mod_dict['Phosphoguanosine[H]'] = 'H NORMAL 345.047435 345.047435 0 H(12)C(10)N(5)O(7)P(1)'
mod_dict['Phosphoguanosine[K]'] = 'K NORMAL 345.047435 345.047435 0 H(12)C(10)N(5)O(7)P(1)'
mod_dict['Phosphopantetheine[S]'] = 'S NORMAL 340.085794 340.085794 0 H(21)C(11)N(2)O(6)P(1)S(1)'
mod_dict['Phosphopropargyl[S]'] = 'S NORMAL 116.997965 116.997965 0 H(4)C(3)N(1)O(2)P(1)'
mod_dict['Phosphopropargyl[T]'] = 'T NORMAL 116.997965 116.997965 0 H(4)C(3)N(1)O(2)P(1)'
mod_dict['Phosphopropargyl[Y]'] = 'Y NORMAL 116.997965 116.997965 0 H(4)C(3)N(1)O(2)P(1)'
mod_dict['PhosphoribosyldephosphoCoA[S]'] = 'S NORMAL 881.146904 881.146904 0 H(42)C(26)N(7)O(19)P(3)S(1)'
mod_dict['Phycocyanobilin[C]'] = 'C NORMAL 586.279135 586.279135 0 H(38)C(33)N(4)O(6)'
mod_dict['Phycoerythrobilin[C]'] = 'C NORMAL 588.294785 588.294785 0 H(40)C(33)N(4)O(6)'
mod_dict['Phytochromobilin[C]'] = 'C NORMAL 584.263485 584.263485 0 H(36)C(33)N(4)O(6)'
mod_dict['Piperidine[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 68.062600 68.062600 0 H(8)C(5)'
mod_dict['Piperidine[K]'] = 'K NORMAL 68.062600 68.062600 0 H(8)C(5)'
mod_dict['Pro->Ala[P]'] = 'P NORMAL -26.015650 -26.015650 0 H(-2)C(-2)'
mod_dict['Pro->Arg[P]'] = 'P NORMAL 59.048347 59.048347 0 H(5)C(1)N(3)'
mod_dict['Pro->Asn[P]'] = 'P NORMAL 16.990164 16.990164 0 H(-1)C(-1)N(1)O(1)'
mod_dict['Pro->Asp[P]'] = 'P NORMAL 17.974179 17.974179 0 H(-2)C(-1)O(2)'
mod_dict['Pro->Cys[P]'] = 'P NORMAL 5.956421 5.956421 0 H(-2)C(-2)S(1)'
mod_dict['Pro->Gln[P]'] = 'P NORMAL 31.005814 31.005814 0 H(1)N(1)O(1)'
mod_dict['Pro->Gly[P]'] = 'P NORMAL -40.031300 -40.031300 0 H(-4)C(-3)'
mod_dict['Pro->His[P]'] = 'P NORMAL 40.006148 40.006148 0 C(1)N(2)'
mod_dict['Pro->Lys[P]'] = 'P NORMAL 31.042199 31.042199 0 H(5)C(1)N(1)'
mod_dict['Pro->Met[P]'] = 'P NORMAL 33.987721 33.987721 0 H(2)S(1)'
mod_dict['Pro->Phe[P]'] = 'P NORMAL 50.015650 50.015650 0 H(2)C(4)'
mod_dict['Pro->Pyrrolidinone[P]'] = 'P NORMAL -30.010565 -30.010565 0 H(-2)C(-1)O(-1)'
mod_dict['Pro->Pyrrolidone[P]'] = 'P NORMAL -27.994915 -27.994915 0 C(-1)O(-1)'
mod_dict['Pro->Ser[P]'] = 'P NORMAL -10.020735 -10.020735 0 H(-2)C(-2)O(1)'
mod_dict['Pro->Thr[P]'] = 'P NORMAL 3.994915 3.994915 0 C(-1)O(1)'
mod_dict['Pro->Trp[P]'] = 'P NORMAL 89.026549 89.026549 0 H(3)C(6)N(1)'
mod_dict['Pro->Tyr[P]'] = 'P NORMAL 66.010565 66.010565 0 H(2)C(4)O(1)'
mod_dict['Pro->Val[P]'] = 'P NORMAL 2.015650 2.015650 0 H(2)'
mod_dict['Pro->Xle[P]'] = 'P NORMAL 16.031300 16.031300 0 H(4)C(1)'
mod_dict['Pro->pyro-Glu[P]'] = 'P NORMAL 13.979265 13.979265 0 H(-2)O(1)'
mod_dict['Propargylamine[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 37.031634 37.031634 0 H(3)C(3)N(1)O(-1)'
mod_dict['Propargylamine[D]'] = 'D NORMAL 37.031634 37.031634 0 H(3)C(3)N(1)O(-1)'
mod_dict['Propargylamine[E]'] = 'E NORMAL 37.031634 37.031634 0 H(3)C(3)N(1)O(-1)'
mod_dict['Propionamide[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 71.037114 71.037114 0 H(5)C(3)N(1)O(1)'
mod_dict['Propionamide[C]'] = 'C NORMAL 71.037114 71.037114 0 H(5)C(3)N(1)O(1)'
mod_dict['Propionamide[K]'] = 'K NORMAL 71.037114 71.037114 0 H(5)C(3)N(1)O(1)'
mod_dict['Propionamide_2H(3)[C]'] = 'C NORMAL 74.055944 74.055944 0 H(2)2H(3)C(3)N(1)O(1)'
mod_dict['Propionyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 56.026215 56.026215 0 H(4)C(3)O(1)'
mod_dict['Propionyl[K]'] = 'K NORMAL 56.026215 56.026215 0 H(4)C(3)O(1)'
mod_dict['Propionyl[S]'] = 'S NORMAL 56.026215 56.026215 0 H(4)C(3)O(1)'
mod_dict['Propionyl[T]'] = 'T NORMAL 56.026215 56.026215 0 H(4)C(3)O(1)'
mod_dict['Propionyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 56.026215 56.026215 0 H(4)C(3)O(1)'
mod_dict['Propionyl_13C(3)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 59.036279 59.036279 0 H(4)13C(3)O(1)'
mod_dict['Propionyl_13C(3)[K]'] = 'K NORMAL 59.036279 59.036279 0 H(4)13C(3)O(1)'
mod_dict['Propiophenone[C]'] = 'C NORMAL 132.057515 132.057515 0 H(8)C(9)O(1)'
mod_dict['Propiophenone[H]'] = 'H NORMAL 132.057515 132.057515 0 H(8)C(9)O(1)'
mod_dict['Propiophenone[K]'] = 'K NORMAL 132.057515 132.057515 0 H(8)C(9)O(1)'
mod_dict['Propiophenone[R]'] = 'R NORMAL 132.057515 132.057515 0 H(8)C(9)O(1)'
mod_dict['Propiophenone[S]'] = 'S NORMAL 132.057515 132.057515 0 H(8)C(9)O(1)'
mod_dict['Propiophenone[T]'] = 'T NORMAL 132.057515 132.057515 0 H(8)C(9)O(1)'
mod_dict['Propiophenone[W]'] = 'W NORMAL 132.057515 132.057515 0 H(8)C(9)O(1)'
mod_dict['Propyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 42.046950 42.046950 0 H(6)C(3)'
mod_dict['Propyl[K]'] = 'K NORMAL 42.046950 42.046950 0 H(6)C(3)'
mod_dict['PropylNAGthiazoline[C]'] = 'C NORMAL 232.064354 232.064354 0 H(14)C(9)N(1)O(4)S(1)'
mod_dict['Propyl_2H(6)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 48.084611 48.084611 0 2H(6)C(3)'
mod_dict['Propyl_2H(6)[K]'] = 'K NORMAL 48.084611 48.084611 0 2H(6)C(3)'
mod_dict['Puromycin[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 453.212452 453.212452 0 H(27)C(22)N(7)O(4)'
mod_dict['PyMIC[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 134.048013 134.048013 0 H(6)C(7)N(2)O(1)'
mod_dict['PyridoxalPhosphate[K]'] = 'K NORMAL 229.014009 229.014009 0 H(8)C(8)N(1)O(5)P(1)'
mod_dict['PyridoxalPhosphateH2[K]'] = 'K NORMAL 231.029660 231.029660 0 H(10)C(8)N(1)O(5)P(1)'
mod_dict['Pyridylacetyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 119.037114 119.037114 0 H(5)C(7)N(1)O(1)'
mod_dict['Pyridylacetyl[K]'] = 'K NORMAL 119.037114 119.037114 0 H(5)C(7)N(1)O(1)'
mod_dict['Pyridylethyl[C]'] = 'C NORMAL 105.057849 105.057849 0 H(7)C(7)N(1)'
mod_dict['Pyro-carbamidomethyl[AnyN-termC]'] = 'C PEP_N 39.994915 39.994915 0 C(2)O(1)'
mod_dict['PyruvicAcidIminyl[K]'] = 'K NORMAL 70.005479 70.005479 0 H(2)C(3)O(2)'
mod_dict['PyruvicAcidIminyl[ProteinN-termC]'] = 'C PRO_N 70.005479 70.005479 0 H(2)C(3)O(2)'
mod_dict['PyruvicAcidIminyl[ProteinN-termV]'] = 'V PRO_N 70.005479 70.005479 0 H(2)C(3)O(2)'
mod_dict['QAT[C]'] = 'C NORMAL 171.149738 171.149738 0 H(19)C(9)N(2)O(1)'
mod_dict['QAT_2H(3)[C]'] = 'C NORMAL 174.168569 174.168569 0 H(16)2H(3)C(9)N(2)O(1)'
mod_dict['QEQTGG[K]'] = 'K NORMAL 600.250354 600.250354 0 H(36)C(23)N(8)O(11)'
mod_dict['QQQTGG[K]'] = 'K NORMAL 599.266339 599.266339 0 H(37)C(23)N(9)O(10)'
mod_dict['QTGG[K]'] = 'K NORMAL 343.149184 343.149184 0 H(21)C(13)N(5)O(6)'
mod_dict['Quinone[W]'] = 'W NORMAL 29.974179 29.974179 0 H(-2)O(2)'
mod_dict['Quinone[Y]'] = 'Y NORMAL 29.974179 29.974179 0 H(-2)O(2)'
mod_dict['Retinylidene[K]'] = 'K NORMAL 266.203451 266.203451 0 H(26)C(20)'
mod_dict['SMA[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 127.063329 127.063329 0 H(9)C(6)N(1)O(2)'
mod_dict['SMA[K]'] = 'K NORMAL 127.063329 127.063329 0 H(9)C(6)N(1)O(2)'
mod_dict['SMCC-maleimide[C]'] = 'C NORMAL 321.205242 321.205242 0 H(27)C(17)N(3)O(3)'
mod_dict['SPITC[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 214.971084 214.971084 0 H(5)C(7)N(1)O(3)S(2)'
mod_dict['SPITC[K]'] = 'K NORMAL 214.971084 214.971084 0 H(5)C(7)N(1)O(3)S(2)'
mod_dict['SPITC_13C(6)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 220.991213 220.991213 0 H(5)C(1)13C(6)N(1)O(3)S(2)'
mod_dict['SPITC_13C(6)[K]'] = 'K NORMAL 220.991213 220.991213 0 H(5)C(1)13C(6)N(1)O(3)S(2)'
mod_dict['SUMO2135[K]'] = 'K NORMAL 2135.920496 2135.920496 0 H(137)C(90)N(21)O(37)S(1)'
mod_dict['SUMO3549[K]'] = 'K NORMAL 3549.536568 3549.536568 0 H(224)C(150)N(38)O(60)S(1)'
mod_dict['Saligenin[H]'] = 'H NORMAL 106.041865 106.041865 0 H(6)C(7)O(1)'
mod_dict['Saligenin[K]'] = 'K NORMAL 106.041865 106.041865 0 H(6)C(7)O(1)'
mod_dict['SecCarbamidomethyl[C]'] = 'C NORMAL 104.965913 104.965913 0 H(3)C(2)N(1)O(1)S(-1)Se(1)'
mod_dict['SecNEM[C]'] = 'C NORMAL 172.992127 172.992127 0 H(7)C(6)N(1)O(2)S(-1)Se(1)'
mod_dict['SecNEM_2H(5)[C]'] = 'C NORMAL 178.023511 178.023511 0 H(2)2H(5)C(6)N(1)O(2)S(-1)Se(1)'
mod_dict['Ser->Arg[S]'] = 'S NORMAL 69.069083 69.069083 0 H(7)C(3)N(3)O(-1)'
mod_dict['Ser->Asn[S]'] = 'S NORMAL 27.010899 27.010899 0 H(1)C(1)N(1)'
mod_dict['Ser->Cys[S]'] = 'S NORMAL 15.977156 15.977156 0 O(-1)S(1)'
mod_dict['Ser->Gln[S]'] = 'S NORMAL 41.026549 41.026549 0 H(3)C(2)N(1)'
mod_dict['Ser->Gly[S]'] = 'S NORMAL -30.010565 -30.010565 0 H(-2)C(-1)O(-1)'
mod_dict['Ser->His[S]'] = 'S NORMAL 50.026883 50.026883 0 H(2)C(3)N(2)O(-1)'
mod_dict['Ser->LacticAcid[ProteinN-termS]'] = 'S PRO_N -15.010899 -15.010899 0 H(-1)N(-1)'
mod_dict['Ser->Lys[S]'] = 'S NORMAL 41.062935 41.062935 0 H(7)C(3)N(1)O(-1)'
mod_dict['Ser->Phe[S]'] = 'S NORMAL 60.036386 60.036386 0 H(4)C(6)O(-1)'
mod_dict['Ser->Pro[S]'] = 'S NORMAL 10.020735 10.020735 0 H(2)C(2)O(-1)'
mod_dict['Ser->Trp[S]'] = 'S NORMAL 99.047285 99.047285 0 H(5)C(8)N(1)O(-1)'
mod_dict['Ser->Tyr[S]'] = 'S NORMAL 76.031300 76.031300 0 H(4)C(6)'
mod_dict['Ser->Val[S]'] = 'S NORMAL 12.036386 12.036386 0 H(4)C(2)O(-1)'
mod_dict['Ser->Xle[S]'] = 'S NORMAL 26.052036 26.052036 0 H(6)C(3)O(-1)'
mod_dict['Succinyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 100.016044 100.016044 0 H(4)C(4)O(3)'
mod_dict['Succinyl[K]'] = 'K NORMAL 100.016044 100.016044 0 H(4)C(4)O(3)'
mod_dict['Succinyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 100.016044 100.016044 0 H(4)C(4)O(3)'
mod_dict['Succinyl_13C(4)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 104.029463 104.029463 0 H(4)13C(4)O(3)'
mod_dict['Succinyl_13C(4)[K]'] = 'K NORMAL 104.029463 104.029463 0 H(4)13C(4)O(3)'
mod_dict['Succinyl_2H(4)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 104.041151 104.041151 0 2H(4)C(4)O(3)'
mod_dict['Succinyl_2H(4)[K]'] = 'K NORMAL 104.041151 104.041151 0 2H(4)C(4)O(3)'
mod_dict['SulfanilicAcid[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 155.004099 155.004099 0 H(5)C(6)N(1)O(2)S(1)'
mod_dict['SulfanilicAcid[D]'] = 'D NORMAL 155.004099 155.004099 0 H(5)C(6)N(1)O(2)S(1)'
mod_dict['SulfanilicAcid[E]'] = 'E NORMAL 155.004099 155.004099 0 H(5)C(6)N(1)O(2)S(1)'
mod_dict['SulfanilicAcid_13C(6)[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 161.024228 161.024228 0 H(5)13C(6)N(1)O(2)S(1)'
mod_dict['SulfanilicAcid_13C(6)[D]'] = 'D NORMAL 161.024228 161.024228 0 H(5)13C(6)N(1)O(2)S(1)'
mod_dict['SulfanilicAcid_13C(6)[E]'] = 'E NORMAL 161.024228 161.024228 0 H(5)13C(6)N(1)O(2)S(1)'
mod_dict['Sulfide[C]'] = 'C NORMAL 31.972071 31.972071 0 S(1)'
mod_dict['Sulfide[D]'] = 'D NORMAL 31.972071 31.972071 0 S(1)'
mod_dict['Sulfide[W]'] = 'W NORMAL 31.972071 31.972071 0 S(1)'
mod_dict['Sulfo-NHS-LC-LC-Biotin[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 452.245726 452.245726 0 H(36)C(22)N(4)O(4)S(1)'
mod_dict['Sulfo-NHS-LC-LC-Biotin[K]'] = 'K NORMAL 452.245726 452.245726 0 H(36)C(22)N(4)O(4)S(1)'
mod_dict['Sulfo[C]'] = 'C NORMAL 79.956815 79.956815 0 O(3)S(1)'
mod_dict['Sulfo[S]'] = 'S NORMAL 79.956815 79.956815 1 79.956815 79.956815 O(3)S(1)'
mod_dict['Sulfo[T]'] = 'T NORMAL 79.956815 79.956815 1 79.956815 79.956815 O(3)S(1)'
mod_dict['Sulfo[Y]'] = 'Y NORMAL 79.956815 79.956815 1 79.956815 79.956815 O(3)S(1)'
mod_dict['SulfoGMBS[C]'] = 'C NORMAL 458.162391 458.162391 0 H(26)C(22)N(4)O(5)S(1)'
mod_dict['SulfurDioxide[C]'] = 'C NORMAL 63.961900 63.961900 0 O(2)S(1)'
mod_dict['TAMRA-FP[S]'] = 'S NORMAL 659.312423 659.312423 0 H(46)C(37)N(3)O(6)P(1)'
mod_dict['TAMRA-FP[Y]'] = 'Y NORMAL 659.312423 659.312423 0 H(46)C(37)N(3)O(6)P(1)'
mod_dict['TMAB[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 128.107539 128.107539 1 59.073499 59.073499 H(14)C(7)N(1)O(1)'
mod_dict['TMAB[K]'] = 'K NORMAL 128.107539 128.107539 1 59.073499 59.073499 H(14)C(7)N(1)O(1)'
mod_dict['TMAB_2H(9)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 137.164030 137.164030 1 68.129990 68.129990 H(5)2H(9)C(7)N(1)O(1)'
mod_dict['TMAB_2H(9)[K]'] = 'K NORMAL 137.164030 137.164030 1 68.129990 68.129990 H(5)2H(9)C(7)N(1)O(1)'
mod_dict['TMPP-Ac[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 572.181134 572.181134 0 H(33)C(29)O(10)P(1)'
mod_dict['TMT[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 224.152478 224.152478 0 H(20)C(12)N(2)O(2)'
mod_dict['TMT[H]'] = 'H NORMAL 224.152478 224.152478 0 H(20)C(12)N(2)O(2)'
mod_dict['TMT[K]'] = 'K NORMAL 224.152478 224.152478 0 H(20)C(12)N(2)O(2)'
mod_dict['TMT[S]'] = 'S NORMAL 224.152478 224.152478 0 H(20)C(12)N(2)O(2)'
mod_dict['TMT[T]'] = 'T NORMAL 224.152478 224.152478 0 H(20)C(12)N(2)O(2)'
mod_dict['TMT[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 224.152478 224.152478 0 H(20)C(12)N(2)O(2)'
mod_dict['TMT2plex[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 225.155833 225.155833 0 H(20)C(11)13C(1)N(2)O(2)'
mod_dict['TMT2plex[H]'] = 'H NORMAL 225.155833 225.155833 0 H(20)C(11)13C(1)N(2)O(2)'
mod_dict['TMT2plex[K]'] = 'K NORMAL 225.155833 225.155833 0 H(20)C(11)13C(1)N(2)O(2)'
mod_dict['TMT2plex[S]'] = 'S NORMAL 225.155833 225.155833 0 H(20)C(11)13C(1)N(2)O(2)'
mod_dict['TMT2plex[T]'] = 'T NORMAL 225.155833 225.155833 0 H(20)C(11)13C(1)N(2)O(2)'
mod_dict['TMT2plex[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 225.155833 225.155833 0 H(20)C(11)13C(1)N(2)O(2)'
mod_dict['TMT6plex[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 229.162932 229.162932 0 H(20)C(8)13C(4)N(1)15N(1)O(2)'
mod_dict['TMT6plex[H]'] = 'H NORMAL 229.162932 229.162932 0 H(20)C(8)13C(4)N(1)15N(1)O(2)'
mod_dict['TMT6plex[K]'] = 'K NORMAL 229.162932 229.162932 0 H(20)C(8)13C(4)N(1)15N(1)O(2)'
mod_dict['TMT6plex[S]'] = 'S NORMAL 229.162932 229.162932 0 H(20)C(8)13C(4)N(1)15N(1)O(2)'
mod_dict['TMT6plex[T]'] = 'T NORMAL 229.162932 229.162932 0 H(20)C(8)13C(4)N(1)15N(1)O(2)'
mod_dict['TMT6plex[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 229.162932 229.162932 0 H(20)C(8)13C(4)N(1)15N(1)O(2)'
mod_dict['TNBS[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 210.986535 210.986535 0 H(1)C(6)N(3)O(6)'
mod_dict['TNBS[K]'] = 'K NORMAL 210.986535 210.986535 0 H(1)C(6)N(3)O(6)'
mod_dict['Thiadiazole[C]'] = 'C NORMAL 174.025169 174.025169 0 H(6)C(9)N(2)S(1)'
mod_dict['Thiazolidine[AnyN-termC]'] = 'C PEP_N 12.000000 12.000000 0 C(1)'
mod_dict['Thioacyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 87.998285 87.998285 0 H(4)C(3)O(1)S(1)'
mod_dict['Thioacyl[K]'] = 'K NORMAL 87.998285 87.998285 0 H(4)C(3)O(1)S(1)'
mod_dict['Thiophos-S-S-biotin[S]'] = 'S NORMAL 525.142894 525.142894 1 525.142894 525.142894 H(34)C(19)N(4)O(5)P(1)S(3)'
mod_dict['Thiophos-S-S-biotin[T]'] = 'T NORMAL 525.142894 525.142894 1 525.142894 525.142894 H(34)C(19)N(4)O(5)P(1)S(3)'
mod_dict['Thiophos-S-S-biotin[Y]'] = 'Y NORMAL 525.142894 525.142894 1 525.142894 525.142894 H(34)C(19)N(4)O(5)P(1)S(3)'
mod_dict['Thiophospho[S]'] = 'S NORMAL 95.943487 95.943487 0 H(1)O(2)P(1)S(1)'
mod_dict['Thiophospho[T]'] = 'T NORMAL 95.943487 95.943487 0 H(1)O(2)P(1)S(1)'
mod_dict['Thiophospho[Y]'] = 'Y NORMAL 95.943487 95.943487 0 H(1)O(2)P(1)S(1)'
mod_dict['Thr->Ala[T]'] = 'T NORMAL -30.010565 -30.010565 0 H(-2)C(-1)O(-1)'
mod_dict['Thr->Arg[T]'] = 'T NORMAL 55.053433 55.053433 0 H(5)C(2)N(3)O(-1)'
mod_dict['Thr->Asn[T]'] = 'T NORMAL 12.995249 12.995249 0 H(-1)N(1)'
mod_dict['Thr->Asp[T]'] = 'T NORMAL 13.979265 13.979265 0 H(-2)O(1)'
mod_dict['Thr->Cys[T]'] = 'T NORMAL 1.961506 1.961506 0 H(-2)C(-1)O(-1)S(1)'
mod_dict['Thr->Gln[T]'] = 'T NORMAL 27.010899 27.010899 0 H(1)C(1)N(1)'
mod_dict['Thr->Gly[T]'] = 'T NORMAL -44.026215 -44.026215 0 H(-4)C(-2)O(-1)'
mod_dict['Thr->His[T]'] = 'T NORMAL 36.011233 36.011233 0 C(2)N(2)O(-1)'
mod_dict['Thr->Met[T]'] = 'T NORMAL 29.992806 29.992806 0 H(2)C(1)O(-1)S(1)'
mod_dict['Thr->Phe[T]'] = 'T NORMAL 46.020735 46.020735 0 H(2)C(5)O(-1)'
mod_dict['Thr->Pro[T]'] = 'T NORMAL -3.994915 -3.994915 0 C(1)O(-1)'
mod_dict['Thr->Ser[T]'] = 'T NORMAL -14.015650 -14.015650 0 H(-2)C(-1)'
mod_dict['Thr->Trp[T]'] = 'T NORMAL 85.031634 85.031634 0 H(3)C(7)N(1)O(-1)'
mod_dict['Thr->Tyr[T]'] = 'T NORMAL 62.015650 62.015650 0 H(2)C(5)'
mod_dict['Thr->Val[T]'] = 'T NORMAL -1.979265 -1.979265 0 H(2)C(1)O(-1)'
mod_dict['Thr->Xle[T]'] = 'T NORMAL 12.036386 12.036386 0 H(4)C(2)O(-1)'
mod_dict['Thrbiotinhydrazide[T]'] = 'T NORMAL 240.104482 240.104482 0 H(16)C(10)N(4)O(1)S(1)'
mod_dict['Thyroxine[Y]'] = 'Y NORMAL 595.612807 595.612807 0 C(6)O(1)I(4)'
mod_dict['Triiodo[Y]'] = 'Y NORMAL 377.689944 377.689944 0 H(-3)I(3)'
mod_dict['Triiodothyronine[Y]'] = 'Y NORMAL 469.716159 469.716159 0 H(1)C(6)O(1)I(3)'
mod_dict['Trimethyl[R]'] = 'R NORMAL 42.046950 42.046950 0 H(6)C(3)'
mod_dict['Trimethyl[ProteinN-termA]'] = 'A PRO_N 42.046950 42.046950 0 H(6)C(3)'
mod_dict['Trimethyl_2H(9)[K]'] = 'K NORMAL 51.103441 51.103441 0 H(-3)2H(9)C(3)'
mod_dict['Trimethyl_2H(9)[R]'] = 'R NORMAL 51.103441 51.103441 0 H(-3)2H(9)C(3)'
mod_dict['Trioxidation[C]'] = 'C NORMAL 47.984744 47.984744 0 O(3)'
mod_dict['Trioxidation[W]'] = 'W NORMAL 47.984744 47.984744 0 O(3)'
mod_dict['Trioxidation[Y]'] = 'Y NORMAL 47.984744 47.984744 0 O(3)'
mod_dict['Tripalmitate[ProteinN-termC]'] = 'C PRO_N 788.725777 788.725777 0 H(96)C(51)O(5)'
mod_dict['Trp->Ala[W]'] = 'W NORMAL -115.042199 -115.042199 0 H(-5)C(-8)N(-1)'
mod_dict['Trp->Arg[W]'] = 'W NORMAL -29.978202 -29.978202 0 H(2)C(-5)N(2)'
mod_dict['Trp->Asn[W]'] = 'W NORMAL -72.036386 -72.036386 0 H(-4)C(-7)O(1)'
mod_dict['Trp->Asp[W]'] = 'W NORMAL -71.052370 -71.052370 0 H(-5)C(-7)N(-1)O(2)'
mod_dict['Trp->Cys[W]'] = 'W NORMAL -83.070128 -83.070128 0 H(-5)C(-8)N(-1)S(1)'
mod_dict['Trp->Gln[W]'] = 'W NORMAL -58.020735 -58.020735 0 H(-2)C(-6)O(1)'
mod_dict['Trp->Glu[W]'] = 'W NORMAL -57.036720 -57.036720 0 H(-3)C(-6)N(-1)O(2)'
mod_dict['Trp->Gly[W]'] = 'W NORMAL -129.057849 -129.057849 0 H(-7)C(-9)N(-1)'
mod_dict['Trp->His[W]'] = 'W NORMAL -49.020401 -49.020401 0 H(-3)C(-5)N(1)'
mod_dict['Trp->Hydroxykynurenin[W]'] = 'W NORMAL 19.989829 19.989829 0 C(-1)O(2)'
mod_dict['Trp->Kynurenin[W]'] = 'W NORMAL 3.994915 3.994915 0 C(-1)O(1)'
mod_dict['Trp->Lys[W]'] = 'W NORMAL -57.984350 -57.984350 0 H(2)C(-5)'
mod_dict['Trp->Met[W]'] = 'W NORMAL -55.038828 -55.038828 0 H(-1)C(-6)N(-1)S(1)'
mod_dict['Trp->Oxolactone[W]'] = 'W NORMAL 13.979265 13.979265 0 H(-2)O(1)'
mod_dict['Trp->Phe[W]'] = 'W NORMAL -39.010899 -39.010899 0 H(-1)C(-2)N(-1)'
mod_dict['Trp->Pro[W]'] = 'W NORMAL -89.026549 -89.026549 0 H(-3)C(-6)N(-1)'
mod_dict['Trp->Ser[W]'] = 'W NORMAL -99.047285 -99.047285 0 H(-5)C(-8)N(-1)O(1)'
mod_dict['Trp->Thr[W]'] = 'W NORMAL -85.031634 -85.031634 0 H(-3)C(-7)N(-1)O(1)'
mod_dict['Trp->Tyr[W]'] = 'W NORMAL -23.015984 -23.015984 0 H(-1)C(-2)N(-1)O(1)'
mod_dict['Trp->Val[W]'] = 'W NORMAL -87.010899 -87.010899 0 H(-1)C(-6)N(-1)'
mod_dict['Trp->Xle[W]'] = 'W NORMAL -72.995249 -72.995249 0 H(1)C(-5)N(-1)'
mod_dict['Tyr->Ala[Y]'] = 'Y NORMAL -92.026215 -92.026215 0 H(-4)C(-6)O(-1)'
mod_dict['Tyr->Arg[Y]'] = 'Y NORMAL -6.962218 -6.962218 0 H(3)C(-3)N(3)O(-1)'
mod_dict['Tyr->Asn[Y]'] = 'Y NORMAL -49.020401 -49.020401 0 H(-3)C(-5)N(1)'
mod_dict['Tyr->Asp[Y]'] = 'Y NORMAL -48.036386 -48.036386 0 H(-4)C(-5)O(1)'
mod_dict['Tyr->Cys[Y]'] = 'Y NORMAL -60.054144 -60.054144 0 H(-4)C(-6)O(-1)S(1)'
mod_dict['Tyr->Dha[Y]'] = 'Y NORMAL -94.041865 -94.041865 0 H(-6)C(-6)O(-1)'
mod_dict['Tyr->Gln[Y]'] = 'Y NORMAL -35.004751 -35.004751 0 H(-1)C(-4)N(1)'
mod_dict['Tyr->Glu[Y]'] = 'Y NORMAL -34.020735 -34.020735 0 H(-2)C(-4)O(1)'
mod_dict['Tyr->Gly[Y]'] = 'Y NORMAL -106.041865 -106.041865 0 H(-6)C(-7)O(-1)'
mod_dict['Tyr->His[Y]'] = 'Y NORMAL -26.004417 -26.004417 0 H(-2)C(-3)N(2)O(-1)'
mod_dict['Tyr->Lys[Y]'] = 'Y NORMAL -34.968366 -34.968366 0 H(3)C(-3)N(1)O(-1)'
mod_dict['Tyr->Met[Y]'] = 'Y NORMAL -32.022844 -32.022844 0 C(-4)O(-1)S(1)'
mod_dict['Tyr->Phe[Y]'] = 'Y NORMAL -15.994915 -15.994915 0 O(-1)'
mod_dict['Tyr->Pro[Y]'] = 'Y NORMAL -66.010565 -66.010565 0 H(-2)C(-4)O(-1)'
mod_dict['Tyr->Ser[Y]'] = 'Y NORMAL -76.031300 -76.031300 0 H(-4)C(-6)'
mod_dict['Tyr->Thr[Y]'] = 'Y NORMAL -62.015650 -62.015650 0 H(-2)C(-5)'
mod_dict['Tyr->Trp[Y]'] = 'Y NORMAL 23.015984 23.015984 0 H(1)C(2)N(1)O(-1)'
mod_dict['Tyr->Val[Y]'] = 'Y NORMAL -63.994915 -63.994915 0 C(-4)O(-1)'
mod_dict['Tyr->Xle[Y]'] = 'Y NORMAL -49.979265 -49.979265 0 H(2)C(-3)O(-1)'
mod_dict['Ub-Br2[C]'] = 'C NORMAL 100.063663 100.063663 0 H(8)C(4)N(2)O(1)'
mod_dict['Ub-VME[C]'] = 'C NORMAL 173.092617 173.092617 0 H(13)C(7)N(2)O(3)'
mod_dict['Ub-amide[C]'] = 'C NORMAL 196.108602 196.108602 0 H(14)C(9)N(3)O(2)'
mod_dict['Ub-fluorescein[C]'] = 'C NORMAL 597.209772 597.209772 0 H(29)C(31)N(6)O(7)'
mod_dict['UgiJoullie[D]'] = 'D NORMAL 1106.489350 1106.489350 0 H(60)C(47)N(23)O(10)'
mod_dict['UgiJoullie[E]'] = 'E NORMAL 1106.489350 1106.489350 0 H(60)C(47)N(23)O(10)'
mod_dict['UgiJoullieProGly[D]'] = 'D NORMAL 154.074228 154.074228 0 H(10)C(7)N(2)O(2)'
mod_dict['UgiJoullieProGly[E]'] = 'E NORMAL 154.074228 154.074228 0 H(10)C(7)N(2)O(2)'
mod_dict['UgiJoullieProGlyProGly[D]'] = 'D NORMAL 308.148455 308.148455 0 H(20)C(14)N(4)O(4)'
mod_dict['UgiJoullieProGlyProGly[E]'] = 'E NORMAL 308.148455 308.148455 0 H(20)C(14)N(4)O(4)'
mod_dict['VFQQQTGG[K]'] = 'K NORMAL 845.403166 845.403166 0 H(55)C(37)N(11)O(12)'
mod_dict['VIEVYQEQTGG[K]'] = 'K NORMAL 1203.577168 1203.577168 0 H(81)C(53)N(13)O(19)'
mod_dict['Val->Ala[V]'] = 'V NORMAL -28.031300 -28.031300 0 H(-4)C(-2)'
mod_dict['Val->Arg[V]'] = 'V NORMAL 57.032697 57.032697 0 H(3)C(1)N(3)'
mod_dict['Val->Asn[V]'] = 'V NORMAL 14.974514 14.974514 0 H(-3)C(-1)N(1)O(1)'
mod_dict['Val->Asp[V]'] = 'V NORMAL 15.958529 15.958529 0 H(-4)C(-1)O(2)'
mod_dict['Val->Cys[V]'] = 'V NORMAL 3.940771 3.940771 0 H(-4)C(-2)S(1)'
mod_dict['Val->Gln[V]'] = 'V NORMAL 28.990164 28.990164 0 H(-1)N(1)O(1)'
mod_dict['Val->Glu[V]'] = 'V NORMAL 29.974179 29.974179 0 H(-2)O(2)'
mod_dict['Val->Gly[V]'] = 'V NORMAL -42.046950 -42.046950 0 H(-6)C(-3)'
mod_dict['Val->His[V]'] = 'V NORMAL 37.990498 37.990498 0 H(-2)C(1)N(2)'
mod_dict['Val->Lys[V]'] = 'V NORMAL 29.026549 29.026549 0 H(3)C(1)N(1)'
mod_dict['Val->Met[V]'] = 'V NORMAL 31.972071 31.972071 0 S(1)'
mod_dict['Val->Phe[V]'] = 'V NORMAL 48.000000 48.000000 0 C(4)'
mod_dict['Val->Pro[V]'] = 'V NORMAL -2.015650 -2.015650 0 H(-2)'
mod_dict['Val->Ser[V]'] = 'V NORMAL -12.036386 -12.036386 0 H(-4)C(-2)O(1)'
mod_dict['Val->Thr[V]'] = 'V NORMAL 1.979265 1.979265 0 H(-2)C(-1)O(1)'
mod_dict['Val->Trp[V]'] = 'V NORMAL 87.010899 87.010899 0 H(1)C(6)N(1)'
mod_dict['Val->Tyr[V]'] = 'V NORMAL 63.994915 63.994915 0 C(4)O(1)'
mod_dict['Val->Xle[V]'] = 'V NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Withaferin[C]'] = 'C NORMAL 470.266839 470.266839 0 H(38)C(28)O(6)'
mod_dict['Xle->Ala[I]'] = 'I NORMAL -42.046950 -42.046950 0 H(-6)C(-3)'
mod_dict['Xle->Ala[L]'] = 'L NORMAL -42.046950 -42.046950 0 H(-6)C(-3)'
mod_dict['Xle->Arg[I]'] = 'I NORMAL 43.017047 43.017047 0 H(1)N(3)'
mod_dict['Xle->Arg[L]'] = 'L NORMAL 43.017047 43.017047 0 H(1)N(3)'
mod_dict['Xle->Asn[I]'] = 'I NORMAL 0.958863 0.958863 0 H(-5)C(-2)N(1)O(1)'
mod_dict['Xle->Asn[L]'] = 'L NORMAL 0.958863 0.958863 0 H(-5)C(-2)N(1)O(1)'
mod_dict['Xle->Asp[I]'] = 'I NORMAL 1.942879 1.942879 0 H(-6)C(-2)O(2)'
mod_dict['Xle->Asp[L]'] = 'L NORMAL 1.942879 1.942879 0 H(-6)C(-2)O(2)'
mod_dict['Xle->Cys[I]'] = 'I NORMAL -10.074880 -10.074880 0 H(-6)C(-3)S(1)'
mod_dict['Xle->Cys[L]'] = 'L NORMAL -10.074880 -10.074880 0 H(-6)C(-3)S(1)'
mod_dict['Xle->Gln[I]'] = 'I NORMAL 14.974514 14.974514 0 H(-3)C(-1)N(1)O(1)'
mod_dict['Xle->Gln[L]'] = 'L NORMAL 14.974514 14.974514 0 H(-3)C(-1)N(1)O(1)'
mod_dict['Xle->Glu[I]'] = 'I NORMAL 15.958529 15.958529 0 H(-4)C(-1)O(2)'
mod_dict['Xle->Glu[L]'] = 'L NORMAL 15.958529 15.958529 0 H(-4)C(-1)O(2)'
mod_dict['Xle->Gly[I]'] = 'I NORMAL -56.062600 -56.062600 0 H(-8)C(-4)'
mod_dict['Xle->Gly[L]'] = 'L NORMAL -56.062600 -56.062600 0 H(-8)C(-4)'
mod_dict['Xle->His[I]'] = 'I NORMAL 23.974848 23.974848 0 H(-4)N(2)'
mod_dict['Xle->His[L]'] = 'L NORMAL 23.974848 23.974848 0 H(-4)N(2)'
mod_dict['Xle->Lys[I]'] = 'I NORMAL 15.010899 15.010899 0 H(1)N(1)'
mod_dict['Xle->Lys[L]'] = 'L NORMAL 15.010899 15.010899 0 H(1)N(1)'
mod_dict['Xle->Met[I]'] = 'I NORMAL 17.956421 17.956421 0 H(-2)C(-1)S(1)'
mod_dict['Xle->Met[L]'] = 'L NORMAL 17.956421 17.956421 0 H(-2)C(-1)S(1)'
mod_dict['Xle->Phe[I]'] = 'I NORMAL 33.984350 33.984350 0 H(-2)C(3)'
mod_dict['Xle->Phe[L]'] = 'L NORMAL 33.984350 33.984350 0 H(-2)C(3)'
mod_dict['Xle->Pro[I]'] = 'I NORMAL -16.031300 -16.031300 0 H(-4)C(-1)'
mod_dict['Xle->Pro[L]'] = 'L NORMAL -16.031300 -16.031300 0 H(-4)C(-1)'
mod_dict['Xle->Ser[I]'] = 'I NORMAL -26.052036 -26.052036 0 H(-6)C(-3)O(1)'
mod_dict['Xle->Ser[L]'] = 'L NORMAL -26.052036 -26.052036 0 H(-6)C(-3)O(1)'
mod_dict['Xle->Thr[I]'] = 'I NORMAL -12.036386 -12.036386 0 H(-4)C(-2)O(1)'
mod_dict['Xle->Thr[L]'] = 'L NORMAL -12.036386 -12.036386 0 H(-4)C(-2)O(1)'
mod_dict['Xle->Trp[I]'] = 'I NORMAL 72.995249 72.995249 0 H(-1)C(5)N(1)'
mod_dict['Xle->Trp[L]'] = 'L NORMAL 72.995249 72.995249 0 H(-1)C(5)N(1)'
mod_dict['Xle->Tyr[I]'] = 'I NORMAL 49.979265 49.979265 0 H(-2)C(3)O(1)'
mod_dict['Xle->Tyr[L]'] = 'L NORMAL 49.979265 49.979265 0 H(-2)C(3)O(1)'
mod_dict['Xle->Val[I]'] = 'I NORMAL -14.015650 -14.015650 0 H(-2)C(-1)'
mod_dict['Xle->Val[L]'] = 'L NORMAL -14.015650 -14.015650 0 H(-2)C(-1)'
mod_dict['Xlink_B10621[C]'] = 'C NORMAL 713.093079 713.093079 0 H(30)C(31)N(4)O(6)S(1)I(1)'
mod_dict['Xlink_DMP-de[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 140.094963 140.094963 0 H(12)C(7)N(2)O(1)'
mod_dict['Xlink_DMP-s[K]'] = 'K NORMAL 154.110613 154.110613 0 H(14)C(8)N(2)O(1)'
mod_dict['Xlink_DMP-s[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 154.110613 154.110613 0 H(14)C(8)N(2)O(1)'
mod_dict['Xlink_DMP[K]'] = 'K NORMAL 122.084398 122.084398 0 H(10)C(7)N(2)'
mod_dict['Xlink_DMP[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 122.084398 122.084398 0 H(10)C(7)N(2)'
mod_dict['Xlink_DSS[K]'] = 'K NORMAL 156.078644 156.078644 0 H(12)C(8)O(3)'
mod_dict['Xlink_DSS[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 156.078644 156.078644 0 H(12)C(8)O(3)'
mod_dict['Xlink_DST[K]'] = 'K NORMAL 132.005873 132.005873 0 H(4)C(4)O(5)'
mod_dict['Xlink_DST[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 132.005873 132.005873 0 H(4)C(4)O(5)'
mod_dict['Xlink_DTSSP[K]'] = 'K NORMAL 191.991486 191.991486 0 H(8)C(6)O(3)S(2)'
mod_dict['Xlink_DTSSP[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 191.991486 191.991486 0 H(8)C(6)O(3)S(2)'
mod_dict['Xlink_EGS[K]'] = 'K NORMAL 244.058303 244.058303 0 H(12)C(10)O(7)'
mod_dict['Xlink_EGS[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 244.058303 244.058303 0 H(12)C(10)O(7)'
mod_dict['Xlink_EGScleaved[K]'] = 'K NORMAL 99.032028 99.032028 0 H(5)C(4)N(1)O(2)'
mod_dict['Xlink_EGScleaved[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 99.032028 99.032028 0 H(5)C(4)N(1)O(2)'
mod_dict['Xlink_SMCC[C]'] = 'C NORMAL 237.100108 237.100108 0 H(15)C(12)N(1)O(4)'
mod_dict['Xlink_SSD[K]'] = 'K NORMAL 253.095023 253.095023 0 H(15)C(12)N(1)O(5)'
mod_dict['ZGB[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 758.380841 758.380841 0 H(53)B(1)C(37)N(6)O(6)F(2)S(1)'
mod_dict['ZGB[K]'] = 'K NORMAL 758.380841 758.380841 0 H(53)B(1)C(37)N(6)O(6)F(2)S(1)'
mod_dict['a-type-ion[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C -46.005479 -46.005479 0 H(-2)C(-1)O(-2)'
mod_dict['azole[C]'] = 'C NORMAL -20.026215 -20.026215 0 H(-4)O(-1)'
mod_dict['azole[S]'] = 'S NORMAL -20.026215 -20.026215 0 H(-4)O(-1)'
mod_dict['benzylguanidine[K]'] = 'K NORMAL 132.068748 132.068748 0 H(8)C(8)N(2)'
mod_dict['biotinAcrolein298[C]'] = 'C NORMAL 298.146347 298.146347 0 H(22)C(13)N(4)O(2)S(1)'
mod_dict['biotinAcrolein298[H]'] = 'H NORMAL 298.146347 298.146347 0 H(22)C(13)N(4)O(2)S(1)'
mod_dict['biotinAcrolein298[K]'] = 'K NORMAL 298.146347 298.146347 0 H(22)C(13)N(4)O(2)S(1)'
mod_dict['biotinAcrolein298[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 298.146347 298.146347 0 H(22)C(13)N(4)O(2)S(1)'
mod_dict['bisANS-sulfonates[K]'] = 'K NORMAL 437.201774 437.201774 0 H(25)C(32)N(2)'
mod_dict['bisANS-sulfonates[S]'] = 'S NORMAL 437.201774 437.201774 0 H(25)C(32)N(2)'
mod_dict['bisANS-sulfonates[T]'] = 'T NORMAL 437.201774 437.201774 0 H(25)C(32)N(2)'
mod_dict['cGMP+RMP-loss[C]'] = 'C NORMAL 150.041585 150.041585 0 H(4)C(5)N(5)O(1)'
mod_dict['cGMP+RMP-loss[S]'] = 'S NORMAL 150.041585 150.041585 0 H(4)C(5)N(5)O(1)'
mod_dict['cGMP[C]'] = 'C NORMAL 343.031785 343.031785 0 H(10)C(10)N(5)O(7)P(1)'
mod_dict['cGMP[S]'] = 'S NORMAL 343.031785 343.031785 0 H(10)C(10)N(5)O(7)P(1)'
mod_dict['cysTMT[C]'] = 'C NORMAL 299.166748 299.166748 0 H(25)C(14)N(3)O(2)S(1)'
mod_dict['cysTMT6plex[C]'] = 'C NORMAL 304.177202 304.177202 0 H(25)C(10)13C(4)N(2)15N(1)O(2)S(1)'
mod_dict['dHex(1)Hex(1)[S]'] = 'S NORMAL 308.110732 308.110732 0 dHex(1)Hex(1)'
mod_dict['dHex(1)Hex(1)[T]'] = 'T NORMAL 308.110732 308.110732 0 dHex(1)Hex(1)'
mod_dict['dHex(1)Hex(2)[S]'] = 'S NORMAL 470.163556 470.163556 0 dHex(1)Hex(2)'
mod_dict['dHex(1)Hex(2)[T]'] = 'T NORMAL 470.163556 470.163556 0 dHex(1)Hex(2)'
mod_dict['dHex(1)Hex(3)[S]'] = 'S NORMAL 632.216379 632.216379 0 dHex(1)Hex(3)'
mod_dict['dHex(1)Hex(3)[T]'] = 'T NORMAL 632.216379 632.216379 0 dHex(1)Hex(3)'
mod_dict['dHex(1)Hex(3)HexNAc(4)[N]'] = 'N NORMAL 1444.533870 1444.533870 0 dHex(1)Hex(3)HexNAc(4)'
mod_dict['dHex(1)Hex(4)[S]'] = 'S NORMAL 794.269203 794.269203 0 dHex(1)Hex(4)'
mod_dict['dHex(1)Hex(4)[T]'] = 'T NORMAL 794.269203 794.269203 0 dHex(1)Hex(4)'
mod_dict['dHex(1)Hex(4)HexNAc(4)[N]'] = 'N NORMAL 1606.586693 1606.586693 0 dHex(1)Hex(4)HexNAc(4)'
mod_dict['dHex(1)Hex(5)[S]'] = 'S NORMAL 956.322026 956.322026 0 dHex(1)Hex(5)'
mod_dict['dHex(1)Hex(5)[T]'] = 'T NORMAL 956.322026 956.322026 0 dHex(1)Hex(5)'
mod_dict['dHex(1)Hex(5)HexNAc(4)[N]'] = 'N NORMAL 1768.639517 1768.639517 0 dHex(1)Hex(5)HexNAc(4)'
mod_dict['dHex(1)Hex(6)[S]'] = 'S NORMAL 1118.374850 1118.374850 0 dHex(1)Hex(6)'
mod_dict['dHex(1)Hex(6)[T]'] = 'T NORMAL 1118.374850 1118.374850 0 dHex(1)Hex(6)'
mod_dict['dHex[N]'] = 'N NORMAL 146.057909 146.057909 0 dHex(1)'
mod_dict['dHex[S]'] = 'S NORMAL 146.057909 146.057909 0 dHex(1)'
mod_dict['dHex[T]'] = 'T NORMAL 146.057909 146.057909 0 dHex(1)'
mod_dict['dNIC[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 109.048119 109.048119 0 H(1)2H(3)C(6)N(1)O(1)'
mod_dict['dichlorination[C]'] = 'C NORMAL 69.937705 69.937705 0 Cl(2)'
mod_dict['dichlorination[Y]'] = 'Y NORMAL 69.937705 69.937705 0 Cl(2)'
mod_dict['ethylamino[S]'] = 'S NORMAL 27.047285 27.047285 0 H(5)C(2)N(1)O(-1)'
mod_dict['ethylamino[T]'] = 'T NORMAL 27.047285 27.047285 0 H(5)C(2)N(1)O(-1)'
mod_dict['ethylsulfonylethyl[C]'] = 'C NORMAL 120.024500 120.024500 0 H(8)C(4)O(2)S(1)'
mod_dict['ethylsulfonylethyl[H]'] = 'H NORMAL 120.024500 120.024500 0 H(8)C(4)O(2)S(1)'
mod_dict['ethylsulfonylethyl[K]'] = 'K NORMAL 120.024500 120.024500 0 H(8)C(4)O(2)S(1)'
mod_dict['glucosone[R]'] = 'R NORMAL 160.037173 160.037173 0 H(8)C(6)O(5)'
mod_dict['glycidamide[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 87.032028 87.032028 0 H(5)C(3)N(1)O(2)'
mod_dict['glycidamide[K]'] = 'K NORMAL 87.032028 87.032028 0 H(5)C(3)N(1)O(2)'
mod_dict['iTRAQ4plex[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 144.102063 144.102063 0 H(12)C(4)13C(3)N(1)15N(1)O(1)'
mod_dict['iTRAQ4plex114[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 144.105918 144.105918 0 H(12)C(5)13C(2)N(2)18O(1)'
mod_dict['iTRAQ4plex114[K]'] = 'K NORMAL 144.105918 144.105918 0 H(12)C(5)13C(2)N(2)18O(1)'
mod_dict['iTRAQ4plex114[Y]'] = 'Y NORMAL 144.105918 144.105918 0 H(12)C(5)13C(2)N(2)18O(1)'
mod_dict['iTRAQ4plex115[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 144.099599 144.099599 0 H(12)C(6)13C(1)N(1)15N(1)18O(1)'
mod_dict['iTRAQ4plex115[K]'] = 'K NORMAL 144.099599 144.099599 0 H(12)C(6)13C(1)N(1)15N(1)18O(1)'
mod_dict['iTRAQ4plex115[Y]'] = 'Y NORMAL 144.099599 144.099599 0 H(12)C(6)13C(1)N(1)15N(1)18O(1)'
mod_dict['iTRAQ8plex[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 304.205360 304.205360 0 H(24)C(7)13C(7)N(3)15N(1)O(3)'
mod_dict['iTRAQ8plex[H]'] = 'H NORMAL 304.205360 304.205360 0 H(24)C(7)13C(7)N(3)15N(1)O(3)'
mod_dict['iTRAQ8plex[K]'] = 'K NORMAL 304.205360 304.205360 0 H(24)C(7)13C(7)N(3)15N(1)O(3)'
mod_dict['iTRAQ8plex[S]'] = 'S NORMAL 304.205360 304.205360 0 H(24)C(7)13C(7)N(3)15N(1)O(3)'
mod_dict['iTRAQ8plex[T]'] = 'T NORMAL 304.205360 304.205360 0 H(24)C(7)13C(7)N(3)15N(1)O(3)'
mod_dict['iTRAQ8plex[Y]'] = 'Y NORMAL 304.205360 304.205360 0 H(24)C(7)13C(7)N(3)15N(1)O(3)'
mod_dict['iTRAQ8plex[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 304.205360 304.205360 0 H(24)C(7)13C(7)N(3)15N(1)O(3)'
mod_dict['iTRAQ8plex_13C(6)15N(2)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 304.199040 304.199040 0 H(24)C(8)13C(6)N(2)15N(2)O(3)'
mod_dict['iTRAQ8plex_13C(6)15N(2)[K]'] = 'K NORMAL 304.199040 304.199040 0 H(24)C(8)13C(6)N(2)15N(2)O(3)'
mod_dict['iTRAQ8plex_13C(6)15N(2)[Y]'] = 'Y NORMAL 304.199040 304.199040 0 H(24)C(8)13C(6)N(2)15N(2)O(3)'
mod_dict['iodoTMT[C]'] = 'C NORMAL 324.216141 324.216141 0 H(28)C(16)N(4)O(3)'
mod_dict['iodoTMT[D]'] = 'D NORMAL 324.216141 324.216141 0 H(28)C(16)N(4)O(3)'
mod_dict['iodoTMT[E]'] = 'E NORMAL 324.216141 324.216141 0 H(28)C(16)N(4)O(3)'
mod_dict['iodoTMT[H]'] = 'H NORMAL 324.216141 324.216141 0 H(28)C(16)N(4)O(3)'
mod_dict['iodoTMT[K]'] = 'K NORMAL 324.216141 324.216141 0 H(28)C(16)N(4)O(3)'
mod_dict['iodoTMT6plex[C]'] = 'C NORMAL 329.226595 329.226595 0 H(28)C(12)13C(4)N(3)15N(1)O(3)'
mod_dict['iodoTMT6plex[D]'] = 'D NORMAL 329.226595 329.226595 0 H(28)C(12)13C(4)N(3)15N(1)O(3)'
mod_dict['iodoTMT6plex[E]'] = 'E NORMAL 329.226595 329.226595 0 H(28)C(12)13C(4)N(3)15N(1)O(3)'
mod_dict['iodoTMT6plex[H]'] = 'H NORMAL 329.226595 329.226595 0 H(28)C(12)13C(4)N(3)15N(1)O(3)'
mod_dict['iodoTMT6plex[K]'] = 'K NORMAL 329.226595 329.226595 0 H(28)C(12)13C(4)N(3)15N(1)O(3)'
mod_dict['lapachenole[C]'] = 'C NORMAL 240.115030 240.115030 0 H(16)C(16)O(2)'
mod_dict['mTRAQ[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 140.094963 140.094963 0 H(12)C(7)N(2)O(1)'
mod_dict['mTRAQ[H]'] = 'H NORMAL 140.094963 140.094963 0 H(12)C(7)N(2)O(1)'
mod_dict['mTRAQ[K]'] = 'K NORMAL 140.094963 140.094963 0 H(12)C(7)N(2)O(1)'
mod_dict['mTRAQ[S]'] = 'S NORMAL 140.094963 140.094963 0 H(12)C(7)N(2)O(1)'
mod_dict['mTRAQ[T]'] = 'T NORMAL 140.094963 140.094963 0 H(12)C(7)N(2)O(1)'
mod_dict['mTRAQ[Y]'] = 'Y NORMAL 140.094963 140.094963 0 H(12)C(7)N(2)O(1)'
mod_dict['mTRAQ_13C(3)15N(1)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 144.102063 144.102063 0 H(12)C(4)13C(3)N(1)15N(1)O(1)'
mod_dict['mTRAQ_13C(3)15N(1)[H]'] = 'H NORMAL 144.102063 144.102063 0 H(12)C(4)13C(3)N(1)15N(1)O(1)'
mod_dict['mTRAQ_13C(3)15N(1)[K]'] = 'K NORMAL 144.102063 144.102063 0 H(12)C(4)13C(3)N(1)15N(1)O(1)'
mod_dict['mTRAQ_13C(3)15N(1)[S]'] = 'S NORMAL 144.102063 144.102063 0 H(12)C(4)13C(3)N(1)15N(1)O(1)'
mod_dict['mTRAQ_13C(3)15N(1)[T]'] = 'T NORMAL 144.102063 144.102063 0 H(12)C(4)13C(3)N(1)15N(1)O(1)'
mod_dict['mTRAQ_13C(3)15N(1)[Y]'] = 'Y NORMAL 144.102063 144.102063 0 H(12)C(4)13C(3)N(1)15N(1)O(1)'
mod_dict['mTRAQ_13C(6)15N(2)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 148.109162 148.109162 0 H(12)C(1)13C(6)15N(2)O(1)'
mod_dict['mTRAQ_13C(6)15N(2)[H]'] = 'H NORMAL 148.109162 148.109162 0 H(12)C(1)13C(6)15N(2)O(1)'
mod_dict['mTRAQ_13C(6)15N(2)[K]'] = 'K NORMAL 148.109162 148.109162 0 H(12)C(1)13C(6)15N(2)O(1)'
mod_dict['mTRAQ_13C(6)15N(2)[S]'] = 'S NORMAL 148.109162 148.109162 0 H(12)C(1)13C(6)15N(2)O(1)'
mod_dict['mTRAQ_13C(6)15N(2)[T]'] = 'T NORMAL 148.109162 148.109162 0 H(12)C(1)13C(6)15N(2)O(1)'
mod_dict['mTRAQ_13C(6)15N(2)[Y]'] = 'Y NORMAL 148.109162 148.109162 0 H(12)C(1)13C(6)15N(2)O(1)'
mod_dict['maleimide[C]'] = 'C NORMAL 97.016378 97.016378 0 H(3)C(4)N(1)O(2)'
mod_dict['maleimide[K]'] = 'K NORMAL 97.016378 97.016378 0 H(3)C(4)N(1)O(2)'
mod_dict['maleimide3[C]'] = 'C NORMAL 969.366232 969.366232 0 H(59)C(37)N(7)O(23)'
mod_dict['maleimide3[K]'] = 'K NORMAL 969.366232 969.366232 0 H(59)C(37)N(7)O(23)'
mod_dict['maleimide5[C]'] = 'C NORMAL 1293.471879 1293.471879 0 H(79)C(49)N(7)O(33)'
mod_dict['maleimide5[K]'] = 'K NORMAL 1293.471879 1293.471879 0 H(79)C(49)N(7)O(33)'
mod_dict['methylsulfonylethyl[C]'] = 'C NORMAL 106.008850 106.008850 0 H(6)C(3)O(2)S(1)'
mod_dict['methylsulfonylethyl[H]'] = 'H NORMAL 106.008850 106.008850 0 H(6)C(3)O(2)S(1)'
mod_dict['methylsulfonylethyl[K]'] = 'K NORMAL 106.008850 106.008850 0 H(6)C(3)O(2)S(1)'
mod_dict['phenylsulfonylethyl[C]'] = 'C NORMAL 168.024500 168.024500 0 H(8)C(8)O(2)S(1)'
mod_dict['phosphoRibosyl[D]'] = 'D NORMAL 282.023960 282.023960 0 H(9)C(5)N(5)O(7)P(1)'
mod_dict['phosphoRibosyl[E]'] = 'E NORMAL 282.023960 282.023960 0 H(9)C(5)N(5)O(7)P(1)'
mod_dict['phosphoRibosyl[R]'] = 'R NORMAL 282.023960 282.023960 0 H(9)C(5)N(5)O(7)P(1)'
mod_dict['probiotinhydrazide[P]'] = 'P NORMAL 258.115047 258.115047 0 H(18)C(10)N(4)O(2)S(1)'
mod_dict['pupylation[K]'] = 'K NORMAL 243.085521 243.085521 0 H(13)C(9)N(3)O(5)'
mod_dict['pyrophospho[S]'] = 'S NORMAL 159.932662 159.932662 1 176.935402 176.935402 H(2)O(6)P(2)'
mod_dict['pyrophospho[T]'] = 'T NORMAL 159.932662 159.932662 1 176.935402 176.935402 H(2)O(6)P(2)'
mod_dict['sulfo+amino[Y]'] = 'Y NORMAL 94.967714 94.967714 0 H(1)N(1)O(3)S(1)'
mod_dict['thioacylPA[K]'] = 'K NORMAL 159.035399 159.035399 0 H(9)C(6)N(1)O(2)S(1)'
mod_dict['trifluoro[L]'] = 'L NORMAL 53.971735 53.971735 0 H(-3)F(3)'
mod_dict['Glutaryl[K]'] = 'K NORMAL 114.031694 114.031694 0 H(6)C(5)O(3)'
mod_dict['Hydroxyisobutyryl[K]'] = 'K NORMAL 86.036779 86.036779 0 H(6)C(4)O(2)'
mod_dict['Malonyl[K]'] = 'K NORMAL 86.000394 86.000394 1 43.9898 43.9898 H(2)C(3)O(3)'
mod_dict['Trimethyl[K]'] = 'K NORMAL 42.046950 42.046950 0 H(6)C(3)'
mod_dict['Hydroxyproline[P]'] = 'P NORMAL 148.037173 148.037173 0 H(6)C(3)'
mod_dict['Dimethyl[K]'] = 'K NORMAL 28.031300 28.031300 0 H(4)C(2)'
return mod_dict | def get_modification():
mod_dict = dict()
mod_dict['2-dimethylsuccinyl[C]'] = 'C NORMAL 144.042259 144.042259 0 H(8)C(6)O(4)'
mod_dict['2-monomethylsuccinyl[C]'] = 'C NORMAL 130.026609 130.026609 0 H(6)C(5)O(4)'
mod_dict['2-nitrobenzyl[Y]'] = 'Y NORMAL 135.032028 135.032028 0 H(5)C(7)N(1)O(2)'
mod_dict['2-succinyl[C]'] = 'C NORMAL 116.010959 116.010959 0 H(4)C(4)O(4)'
mod_dict['2HPG[R]'] = 'R NORMAL 282.052824 282.052824 0 H(10)C(16)O(5)'
mod_dict['3-deoxyglucosone[R]'] = 'R NORMAL 144.042259 144.042259 0 H(8)C(6)O(4)'
mod_dict['3-phosphoglyceryl[K]'] = 'K NORMAL 167.982375 167.982375 0 H(5)C(3)O(6)P(1)'
mod_dict['3sulfo[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 183.983029 183.983029 0 H(4)C(7)O(4)S(1)'
mod_dict['4-ONE+Delta_H(-2)O(-1)[C]'] = 'C NORMAL 136.088815 136.088815 0 H(12)C(9)O(1)'
mod_dict['4-ONE+Delta_H(-2)O(-1)[H]'] = 'H NORMAL 136.088815 136.088815 0 H(12)C(9)O(1)'
mod_dict['4-ONE+Delta_H(-2)O(-1)[K]'] = 'K NORMAL 136.088815 136.088815 0 H(12)C(9)O(1)'
mod_dict['4-ONE[C]'] = 'C NORMAL 154.099380 154.099380 0 H(14)C(9)O(2)'
mod_dict['4-ONE[H]'] = 'H NORMAL 154.099380 154.099380 0 H(14)C(9)O(2)'
mod_dict['4-ONE[K]'] = 'K NORMAL 154.099380 154.099380 0 H(14)C(9)O(2)'
mod_dict['4AcAllylGal[C]'] = 'C NORMAL 372.142033 372.142033 0 H(24)C(17)O(9)'
mod_dict['ADP-Ribosyl[C]'] = 'C NORMAL 541.061110 541.061110 0 H(21)C(15)N(5)O(13)P(2)'
mod_dict['ADP-Ribosyl[D]'] = 'D NORMAL 541.061110 541.061110 0 H(21)C(15)N(5)O(13)P(2)'
mod_dict['ADP-Ribosyl[E]'] = 'E NORMAL 541.061110 541.061110 0 H(21)C(15)N(5)O(13)P(2)'
mod_dict['ADP-Ribosyl[K]'] = 'K NORMAL 541.061110 541.061110 0 H(21)C(15)N(5)O(13)P(2)'
mod_dict['ADP-Ribosyl[N]'] = 'N NORMAL 541.061110 541.061110 0 H(21)C(15)N(5)O(13)P(2)'
mod_dict['ADP-Ribosyl[R]'] = 'R NORMAL 541.061110 541.061110 0 H(21)C(15)N(5)O(13)P(2)'
mod_dict['ADP-Ribosyl[S]'] = 'S NORMAL 541.061110 541.061110 0 H(21)C(15)N(5)O(13)P(2)'
mod_dict['AEBS[H]'] = 'H NORMAL 183.035399 183.035399 0 H(9)C(8)N(1)O(2)S(1)'
mod_dict['AEBS[K]'] = 'K NORMAL 183.035399 183.035399 0 H(9)C(8)N(1)O(2)S(1)'
mod_dict['AEBS[S]'] = 'S NORMAL 183.035399 183.035399 0 H(9)C(8)N(1)O(2)S(1)'
mod_dict['AEBS[Y]'] = 'Y NORMAL 183.035399 183.035399 0 H(9)C(8)N(1)O(2)S(1)'
mod_dict['AEBS[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 183.035399 183.035399 0 H(9)C(8)N(1)O(2)S(1)'
mod_dict['AEC-MAEC[S]'] = 'S NORMAL 59.019355 59.019355 0 H(5)C(2)N(1)O(-1)S(1)'
mod_dict['AEC-MAEC[T]'] = 'T NORMAL 59.019355 59.019355 0 H(5)C(2)N(1)O(-1)S(1)'
mod_dict['AEC-MAEC_2H(4)[S]'] = 'S NORMAL 63.044462 63.044462 0 H(1)2H(4)C(2)N(1)O(-1)S(1)'
mod_dict['AEC-MAEC_2H(4)[T]'] = 'T NORMAL 63.044462 63.044462 0 H(1)2H(4)C(2)N(1)O(-1)S(1)'
mod_dict['AHA-Alkyne-KDDDD[M]'] = 'M NORMAL 695.280074 695.280074 0 H(37)C(26)N(11)O(14)S(-1)'
mod_dict['AHA-Alkyne[M]'] = 'M NORMAL 107.077339 107.077339 0 H(5)C(4)N(5)O(1)S(-1)'
mod_dict['AHA-SS[M]'] = 'M NORMAL 195.075625 195.075625 0 H(9)C(7)N(5)O(2)'
mod_dict['AHA-SS_CAM[M]'] = 'M NORMAL 252.097088 252.097088 0 H(12)C(9)N(6)O(3)'
mod_dict['AMTzHexNAc2[N]'] = 'N NORMAL 502.202341 502.202341 0 H(30)C(19)N(6)O(10)'
mod_dict['AMTzHexNAc2[S]'] = 'S NORMAL 502.202341 502.202341 0 H(30)C(19)N(6)O(10)'
mod_dict['AMTzHexNAc2[T]'] = 'T NORMAL 502.202341 502.202341 0 H(30)C(19)N(6)O(10)'
mod_dict['AROD[C]'] = 'C NORMAL 820.336015 820.336015 0 H(52)C(35)N(10)O(9)S(2)'
mod_dict['AccQTag[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 170.048013 170.048013 0 H(6)C(10)N(2)O(1)'
mod_dict['AccQTag[K]'] = 'K NORMAL 170.048013 170.048013 0 H(6)C(10)N(2)O(1)'
mod_dict['Acetyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 42.010565 42.010565 0 H(2)C(2)O(1)'
mod_dict['Acetyl[C]'] = 'C NORMAL 42.010565 42.010565 0 H(2)C(2)O(1)'
mod_dict['Acetyl[H]'] = 'H NORMAL 42.010565 42.010565 0 H(2)C(2)O(1)'
mod_dict['Acetyl[K]'] = 'K NORMAL 42.010565 42.010565 0 H(2)C(2)O(1)'
mod_dict['Acetyl[S]'] = 'S NORMAL 42.010565 42.010565 0 H(2)C(2)O(1)'
mod_dict['Acetyl[T]'] = 'T NORMAL 42.010565 42.010565 0 H(2)C(2)O(1)'
mod_dict['Acetyl[Y]'] = 'Y NORMAL 42.010565 42.010565 0 H(2)C(2)O(1)'
mod_dict['Acetyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 42.010565 42.010565 0 H(2)C(2)O(1)'
mod_dict['Acetyl_13C(2)[K]'] = 'K NORMAL 44.017274 44.017274 0 H(2)13C(2)O(1)'
mod_dict['Acetyl_13C(2)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 44.017274 44.017274 0 H(2)13C(2)O(1)'
mod_dict['Acetyl_2H(3)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 45.029395 45.029395 0 H(-1)2H(3)C(2)O(1)'
mod_dict['Acetyl_2H(3)[H]'] = 'H NORMAL 45.029395 45.029395 0 H(-1)2H(3)C(2)O(1)'
mod_dict['Acetyl_2H(3)[K]'] = 'K NORMAL 45.029395 45.029395 0 H(-1)2H(3)C(2)O(1)'
mod_dict['Acetyl_2H(3)[S]'] = 'S NORMAL 45.029395 45.029395 0 H(-1)2H(3)C(2)O(1)'
mod_dict['Acetyl_2H(3)[T]'] = 'T NORMAL 45.029395 45.029395 0 H(-1)2H(3)C(2)O(1)'
mod_dict['Acetyl_2H(3)[Y]'] = 'Y NORMAL 45.029395 45.029395 0 H(-1)2H(3)C(2)O(1)'
mod_dict['Acetyl_2H(3)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 45.029395 45.029395 0 H(-1)2H(3)C(2)O(1)'
mod_dict['Acetyldeoxyhypusine[K]'] = 'K NORMAL 97.089149 97.089149 0 H(11)C(6)N(1)'
mod_dict['Acetylhypusine[K]'] = 'K NORMAL 113.084064 113.084064 0 H(11)C(6)N(1)O(1)'
mod_dict['Ahx2+Hsl[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 309.205242 309.205242 0 H(27)C(16)N(3)O(3)'
mod_dict['Ala->Arg[A]'] = 'A NORMAL 85.063997 85.063997 0 H(7)C(3)N(3)'
mod_dict['Ala->Asn[A]'] = 'A NORMAL 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Ala->Asp[A]'] = 'A NORMAL 43.989829 43.989829 0 C(1)O(2)'
mod_dict['Ala->Cys[A]'] = 'A NORMAL 31.972071 31.972071 0 S(1)'
mod_dict['Ala->Gln[A]'] = 'A NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Ala->Glu[A]'] = 'A NORMAL 58.005479 58.005479 0 H(2)C(2)O(2)'
mod_dict['Ala->Gly[A]'] = 'A NORMAL -14.015650 -14.015650 0 H(-2)C(-1)'
mod_dict['Ala->His[A]'] = 'A NORMAL 66.021798 66.021798 0 H(2)C(3)N(2)'
mod_dict['Ala->Lys[A]'] = 'A NORMAL 57.057849 57.057849 0 H(7)C(3)N(1)'
mod_dict['Ala->Met[A]'] = 'A NORMAL 60.003371 60.003371 0 H(4)C(2)S(1)'
mod_dict['Ala->Phe[A]'] = 'A NORMAL 76.031300 76.031300 0 H(4)C(6)'
mod_dict['Ala->Pro[A]'] = 'A NORMAL 26.015650 26.015650 0 H(2)C(2)'
mod_dict['Ala->Ser[A]'] = 'A NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Ala->Thr[A]'] = 'A NORMAL 30.010565 30.010565 0 H(2)C(1)O(1)'
mod_dict['Ala->Trp[A]'] = 'A NORMAL 115.042199 115.042199 0 H(5)C(8)N(1)'
mod_dict['Ala->Tyr[A]'] = 'A NORMAL 92.026215 92.026215 0 H(4)C(6)O(1)'
mod_dict['Ala->Val[A]'] = 'A NORMAL 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Ala->Xle[A]'] = 'A NORMAL 42.046950 42.046950 0 H(6)C(3)'
mod_dict['Amidated[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C -0.984016 -0.984016 0 H(1)N(1)O(-1)'
mod_dict['Amidated[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C -0.984016 -0.984016 0 H(1)N(1)O(-1)'
mod_dict['Amidine[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 41.026549 41.026549 0 H(3)C(2)N(1)'
mod_dict['Amidine[K]'] = 'K NORMAL 41.026549 41.026549 0 H(3)C(2)N(1)'
mod_dict['Amidino[C]'] = 'C NORMAL 42.021798 42.021798 0 H(2)C(1)N(2)'
mod_dict['Amino[Y]'] = 'Y NORMAL 15.010899 15.010899 0 H(1)N(1)'
mod_dict['Ammonia-loss[AnyN-termC]'] = 'C PEP_N -17.026549 -17.026549 0 H(-3)N(-1)'
mod_dict['Ammonia-loss[N]'] = 'N NORMAL -17.026549 -17.026549 0 H(-3)N(-1)'
mod_dict['Ammonia-loss[ProteinN-termS]'] = 'S PRO_N -17.026549 -17.026549 0 H(-3)N(-1)'
mod_dict['Ammonia-loss[ProteinN-termT]'] = 'T PRO_N -17.026549 -17.026549 0 H(-3)N(-1)'
mod_dict['Ammonium[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 17.026549 17.026549 0 H(3)N(1)'
mod_dict['Ammonium[D]'] = 'D NORMAL 17.026549 17.026549 0 H(3)N(1)'
mod_dict['Ammonium[E]'] = 'E NORMAL 17.026549 17.026549 0 H(3)N(1)'
mod_dict['Archaeol[C]'] = 'C NORMAL 634.662782 634.662782 0 H(86)C(43)O(2)'
mod_dict['Arg->Ala[R]'] = 'R NORMAL -85.063997 -85.063997 0 H(-7)C(-3)N(-3)'
mod_dict['Arg->Asn[R]'] = 'R NORMAL -42.058184 -42.058184 0 H(-6)C(-2)N(-2)O(1)'
mod_dict['Arg->Asp[R]'] = 'R NORMAL -41.074168 -41.074168 0 H(-7)C(-2)N(-3)O(2)'
mod_dict['Arg->Cys[R]'] = 'R NORMAL -53.091927 -53.091927 0 H(-7)C(-3)N(-3)S(1)'
mod_dict['Arg->Gln[R]'] = 'R NORMAL -28.042534 -28.042534 0 H(-4)C(-1)N(-2)O(1)'
mod_dict['Arg->Glu[R]'] = 'R NORMAL -27.058518 -27.058518 0 H(-5)C(-1)N(-3)O(2)'
mod_dict['Arg->GluSA[R]'] = 'R NORMAL -43.053433 -43.053433 0 H(-5)C(-1)N(-3)O(1)'
mod_dict['Arg->Gly[R]'] = 'R NORMAL -99.079647 -99.079647 0 H(-9)C(-4)N(-3)'
mod_dict['Arg->His[R]'] = 'R NORMAL -19.042199 -19.042199 0 H(-5)N(-1)'
mod_dict['Arg->Lys[R]'] = 'R NORMAL -28.006148 -28.006148 0 N(-2)'
mod_dict['Arg->Met[R]'] = 'R NORMAL -25.060626 -25.060626 0 H(-3)C(-1)N(-3)S(1)'
mod_dict['Arg->Npo[R]'] = 'R NORMAL 80.985078 80.985078 0 H(-1)C(3)N(1)O(2)'
mod_dict['Arg->Orn[R]'] = 'R NORMAL -42.021798 -42.021798 0 H(-2)C(-1)N(-2)'
mod_dict['Arg->Phe[R]'] = 'R NORMAL -9.032697 -9.032697 0 H(-3)C(3)N(-3)'
mod_dict['Arg->Pro[R]'] = 'R NORMAL -59.048347 -59.048347 0 H(-5)C(-1)N(-3)'
mod_dict['Arg->Ser[R]'] = 'R NORMAL -69.069083 -69.069083 0 H(-7)C(-3)N(-3)O(1)'
mod_dict['Arg->Thr[R]'] = 'R NORMAL -55.053433 -55.053433 0 H(-5)C(-2)N(-3)O(1)'
mod_dict['Arg->Trp[R]'] = 'R NORMAL 29.978202 29.978202 0 H(-2)C(5)N(-2)'
mod_dict['Arg->Tyr[R]'] = 'R NORMAL 6.962218 6.962218 0 H(-3)C(3)N(-3)O(1)'
mod_dict['Arg->Val[R]'] = 'R NORMAL -57.032697 -57.032697 0 H(-3)C(-1)N(-3)'
mod_dict['Arg->Xle[R]'] = 'R NORMAL -43.017047 -43.017047 0 H(-1)N(-3)'
mod_dict['Arg-loss[AnyC-termR]'] = 'R PEP_C -156.101111 -156.101111 0 H(-12)C(-6)N(-4)O(-1)'
mod_dict['Arg[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 156.101111 156.101111 0 H(12)C(6)N(4)O(1)'
mod_dict['Arg2PG[R]'] = 'R NORMAL 266.057909 266.057909 0 H(10)C(16)O(4)'
mod_dict['Argbiotinhydrazide[R]'] = 'R NORMAL 199.066699 199.066699 0 H(13)C(9)N(1)O(2)S(1)'
mod_dict['Asn->Ala[N]'] = 'N NORMAL -43.005814 -43.005814 0 H(-1)C(-1)N(-1)O(-1)'
mod_dict['Asn->Arg[N]'] = 'N NORMAL 42.058184 42.058184 0 H(6)C(2)N(2)O(-1)'
mod_dict['Asn->Cys[N]'] = 'N NORMAL -11.033743 -11.033743 0 H(-1)C(-1)N(-1)O(-1)S(1)'
mod_dict['Asn->Gly[N]'] = 'N NORMAL -57.021464 -57.021464 0 H(-3)C(-2)N(-1)O(-1)'
mod_dict['Asn->His[N]'] = 'N NORMAL 23.015984 23.015984 0 H(1)C(2)N(1)O(-1)'
mod_dict['Asn->Lys[N]'] = 'N NORMAL 14.052036 14.052036 0 H(6)C(2)O(-1)'
mod_dict['Asn->Met[N]'] = 'N NORMAL 16.997557 16.997557 0 H(3)C(1)N(-1)O(-1)S(1)'
mod_dict['Asn->Phe[N]'] = 'N NORMAL 33.025486 33.025486 0 H(3)C(5)N(-1)O(-1)'
mod_dict['Asn->Pro[N]'] = 'N NORMAL -16.990164 -16.990164 0 H(1)C(1)N(-1)O(-1)'
mod_dict['Asn->Ser[N]'] = 'N NORMAL -27.010899 -27.010899 0 H(-1)C(-1)N(-1)'
mod_dict['Asn->Thr[N]'] = 'N NORMAL -12.995249 -12.995249 0 H(1)N(-1)'
mod_dict['Asn->Trp[N]'] = 'N NORMAL 72.036386 72.036386 0 H(4)C(7)O(-1)'
mod_dict['Asn->Tyr[N]'] = 'N NORMAL 49.020401 49.020401 0 H(3)C(5)N(-1)'
mod_dict['Asn->Val[N]'] = 'N NORMAL -14.974514 -14.974514 0 H(3)C(1)N(-1)O(-1)'
mod_dict['Asn->Xle[N]'] = 'N NORMAL -0.958863 -0.958863 0 H(5)C(2)N(-1)O(-1)'
mod_dict['Asp->Ala[D]'] = 'D NORMAL -43.989829 -43.989829 0 C(-1)O(-2)'
mod_dict['Asp->Arg[D]'] = 'D NORMAL 41.074168 41.074168 0 H(7)C(2)N(3)O(-2)'
mod_dict['Asp->Asn[D]'] = 'D NORMAL -0.984016 -0.984016 0 H(1)N(1)O(-1)'
mod_dict['Asp->Cys[D]'] = 'D NORMAL -12.017759 -12.017759 0 C(-1)O(-2)S(1)'
mod_dict['Asp->Gln[D]'] = 'D NORMAL 13.031634 13.031634 0 H(3)C(1)N(1)O(-1)'
mod_dict['Asp->Gly[D]'] = 'D NORMAL -58.005479 -58.005479 0 H(-2)C(-2)O(-2)'
mod_dict['Asp->His[D]'] = 'D NORMAL 22.031969 22.031969 0 H(2)C(2)N(2)O(-2)'
mod_dict['Asp->Lys[D]'] = 'D NORMAL 13.068020 13.068020 0 H(7)C(2)N(1)O(-2)'
mod_dict['Asp->Met[D]'] = 'D NORMAL 16.013542 16.013542 0 H(4)C(1)O(-2)S(1)'
mod_dict['Asp->Phe[D]'] = 'D NORMAL 32.041471 32.041471 0 H(4)C(5)O(-2)'
mod_dict['Asp->Pro[D]'] = 'D NORMAL -17.974179 -17.974179 0 H(2)C(1)O(-2)'
mod_dict['Asp->Ser[D]'] = 'D NORMAL -27.994915 -27.994915 0 C(-1)O(-1)'
mod_dict['Asp->Thr[D]'] = 'D NORMAL -13.979265 -13.979265 0 H(2)O(-1)'
mod_dict['Asp->Trp[D]'] = 'D NORMAL 71.052370 71.052370 0 H(5)C(7)N(1)O(-2)'
mod_dict['Asp->Tyr[D]'] = 'D NORMAL 48.036386 48.036386 0 H(4)C(5)O(-1)'
mod_dict['Asp->Val[D]'] = 'D NORMAL -15.958529 -15.958529 0 H(4)C(1)O(-2)'
mod_dict['Asp->Xle[D]'] = 'D NORMAL -1.942879 -1.942879 0 H(6)C(2)O(-2)'
mod_dict['Atto495Maleimide[C]'] = 'C NORMAL 474.250515 474.250515 0 H(32)C(27)N(5)O(3)'
mod_dict['BADGE[C]'] = 'C NORMAL 340.167459 340.167459 0 H(24)C(21)O(4)'
mod_dict['BDMAPP[H]'] = 'H NORMAL 253.010225 253.010225 0 H(12)C(11)N(1)O(1)Br(1)'
mod_dict['BDMAPP[K]'] = 'K NORMAL 253.010225 253.010225 0 H(12)C(11)N(1)O(1)Br(1)'
mod_dict['BDMAPP[W]'] = 'W NORMAL 253.010225 253.010225 0 H(12)C(11)N(1)O(1)Br(1)'
mod_dict['BDMAPP[Y]'] = 'Y NORMAL 253.010225 253.010225 0 H(12)C(11)N(1)O(1)Br(1)'
mod_dict['BDMAPP[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 253.010225 253.010225 0 H(12)C(11)N(1)O(1)Br(1)'
mod_dict['BHT[C]'] = 'C NORMAL 218.167065 218.167065 0 H(22)C(15)O(1)'
mod_dict['BHT[H]'] = 'H NORMAL 218.167065 218.167065 0 H(22)C(15)O(1)'
mod_dict['BHT[K]'] = 'K NORMAL 218.167065 218.167065 0 H(22)C(15)O(1)'
mod_dict['BHTOH[C]'] = 'C NORMAL 234.161980 234.161980 0 H(22)C(15)O(2)'
mod_dict['BHTOH[H]'] = 'H NORMAL 234.161980 234.161980 0 H(22)C(15)O(2)'
mod_dict['BHTOH[K]'] = 'K NORMAL 234.161980 234.161980 0 H(22)C(15)O(2)'
mod_dict['BITC[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 149.029920 149.029920 0 H(7)C(8)N(1)S(1)'
mod_dict['BITC[C]'] = 'C NORMAL 149.029920 149.029920 0 H(7)C(8)N(1)S(1)'
mod_dict['BITC[K]'] = 'K NORMAL 149.029920 149.029920 0 H(7)C(8)N(1)S(1)'
mod_dict['BMOE[C]'] = 'C NORMAL 220.048407 220.048407 0 H(8)C(10)N(2)O(4)'
mod_dict['BMP-piperidinol[C]'] = 'C NORMAL 263.131014 263.131014 0 H(17)C(18)N(1)O(1)'
mod_dict['BMP-piperidinol[M]'] = 'M NORMAL 263.131014 263.131014 0 H(17)C(18)N(1)O(1)'
mod_dict['Bacillosamine[N]'] = 'N NORMAL 228.111007 228.111007 0 H(16)C(10)N(2)O(4)'
mod_dict['Benzoyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 104.026215 104.026215 0 H(4)C(7)O(1)'
mod_dict['Benzoyl[K]'] = 'K NORMAL 104.026215 104.026215 0 H(4)C(7)O(1)'
mod_dict['Biotin-HPDP[C]'] = 'C NORMAL 428.191582 428.191582 0 H(32)C(19)N(4)O(3)S(2)'
mod_dict['Biotin-PEG-PRA[M]'] = 'M NORMAL 578.317646 578.317646 0 H(42)C(26)N(8)O(7)'
mod_dict['Biotin-PEO-Amine[D]'] = 'D NORMAL 356.188212 356.188212 0 H(28)C(16)N(4)O(3)S(1)'
mod_dict['Biotin-PEO-Amine[E]'] = 'E NORMAL 356.188212 356.188212 0 H(28)C(16)N(4)O(3)S(1)'
mod_dict['Biotin-PEO-Amine[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C 356.188212 356.188212 0 H(28)C(16)N(4)O(3)S(1)'
mod_dict['Biotin-phenacyl[C]'] = 'C NORMAL 626.263502 626.263502 0 H(38)C(29)N(8)O(6)S(1)'
mod_dict['Biotin-phenacyl[H]'] = 'H NORMAL 626.263502 626.263502 0 H(38)C(29)N(8)O(6)S(1)'
mod_dict['Biotin-phenacyl[S]'] = 'S NORMAL 626.263502 626.263502 0 H(38)C(29)N(8)O(6)S(1)'
mod_dict['Biotin[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 226.077598 226.077598 0 H(14)C(10)N(2)O(2)S(1)'
mod_dict['Biotin[K]'] = 'K NORMAL 226.077598 226.077598 0 H(14)C(10)N(2)O(2)S(1)'
mod_dict['Biotin_Cayman-10013[C]'] = 'C NORMAL 660.428442 660.428442 0 H(60)C(36)N(4)O(5)S(1)'
mod_dict['Biotin_Cayman-10141[C]'] = 'C NORMAL 626.386577 626.386577 0 H(54)C(35)N(4)O(4)S(1)'
mod_dict['Biotin_Invitrogen-M1602[C]'] = 'C NORMAL 523.210069 523.210069 0 H(33)C(23)N(5)O(7)S(1)'
mod_dict['Biotin_Sigma-B1267[C]'] = 'C NORMAL 449.173290 449.173290 0 H(27)C(20)N(5)O(5)S(1)'
mod_dict['Biotin_Thermo-21325[K]'] = 'K NORMAL 695.310118 695.310118 0 H(45)C(34)N(7)O(7)S(1)'
mod_dict['Biotin_Thermo-21345[Q]'] = 'Q NORMAL 311.166748 311.166748 0 H(25)C(15)N(3)O(2)S(1)'
mod_dict['Biotin_Thermo-21360[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 487.246455 487.246455 0 H(37)C(21)N(5)O(6)S(1)'
mod_dict['Biotin_Thermo-21901+2H2O[C]'] = 'C NORMAL 561.246849 561.246849 0 H(39)C(23)N(5)O(9)S(1)'
mod_dict['Biotin_Thermo-21901+H2O[C]'] = 'C NORMAL 543.236284 543.236284 0 H(37)C(23)N(5)O(8)S(1)'
mod_dict['Biotin_Thermo-21911[C]'] = 'C NORMAL 921.461652 921.461652 0 H(71)C(41)N(5)O(16)S(1)'
mod_dict['Biotin_Thermo-33033-H[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 546.208295 546.208295 0 H(34)C(25)N(6)O(4)S(2)'
mod_dict['Biotin_Thermo-33033[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 548.223945 548.223945 0 H(36)C(25)N(6)O(4)S(2)'
mod_dict['Biotin_Thermo-88310[K]'] = 'K NORMAL 196.121178 196.121178 0 H(16)C(10)N(2)O(2)'
mod_dict['Biotin_Thermo-88317[S]'] = 'S NORMAL 443.291294 443.291294 0 H(42)C(22)N(3)O(4)P(1)'
mod_dict['Biotin_Thermo-88317[Y]'] = 'Y NORMAL 443.291294 443.291294 0 H(42)C(22)N(3)O(4)P(1)'
mod_dict['BisANS[K]'] = 'K NORMAL 594.091928 594.091928 0 H(22)C(32)N(2)O(6)S(2)'
mod_dict['Bodipy[C]'] = 'C NORMAL 414.167478 414.167478 0 H(21)B(1)C(20)N(4)O(3)F(2)'
mod_dict['Bromo[F]'] = 'F NORMAL 77.910511 77.910511 0 H(-1)Br(1)'
mod_dict['Bromo[H]'] = 'H NORMAL 77.910511 77.910511 0 H(-1)Br(1)'
mod_dict['Bromo[W]'] = 'W NORMAL 77.910511 77.910511 0 H(-1)Br(1)'
mod_dict['Bromo[Y]'] = 'Y NORMAL 77.910511 77.910511 0 H(-1)Br(1)'
mod_dict['Bromobimane[C]'] = 'C NORMAL 190.074228 190.074228 0 H(10)C(10)N(2)O(2)'
mod_dict['Butyryl[K]'] = 'K NORMAL 70.041865 70.041865 0 H(6)C(4)O(1)'
mod_dict['C+12[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 12.000000 12.000000 0 C(1)'
mod_dict['C8-QAT[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 227.224915 227.224915 0 H(29)C(14)N(1)O(1)'
mod_dict['C8-QAT[K]'] = 'K NORMAL 227.224915 227.224915 0 H(29)C(14)N(1)O(1)'
mod_dict['CAF[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 135.983029 135.983029 0 H(4)C(3)O(4)S(1)'
mod_dict['CAMthiopropanoyl[K]'] = 'K NORMAL 145.019749 145.019749 0 H(7)C(5)N(1)O(2)S(1)'
mod_dict['CAMthiopropanoyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 145.019749 145.019749 0 H(7)C(5)N(1)O(2)S(1)'
mod_dict['CHDH[D]'] = 'D NORMAL 294.183109 294.183109 0 H(26)C(17)O(4)'
mod_dict['CLIP_TRAQ_2[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 141.098318 141.098318 0 H(12)C(6)13C(1)N(2)O(1)'
mod_dict['CLIP_TRAQ_2[K]'] = 'K NORMAL 141.098318 141.098318 0 H(12)C(6)13C(1)N(2)O(1)'
mod_dict['CLIP_TRAQ_2[Y]'] = 'Y NORMAL 141.098318 141.098318 0 H(12)C(6)13C(1)N(2)O(1)'
mod_dict['CLIP_TRAQ_3[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 271.148736 271.148736 0 H(20)C(11)13C(1)N(3)O(4)'
mod_dict['CLIP_TRAQ_3[K]'] = 'K NORMAL 271.148736 271.148736 0 H(20)C(11)13C(1)N(3)O(4)'
mod_dict['CLIP_TRAQ_3[Y]'] = 'Y NORMAL 271.148736 271.148736 0 H(20)C(11)13C(1)N(3)O(4)'
mod_dict['CLIP_TRAQ_4[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 244.101452 244.101452 0 H(15)C(9)13C(1)N(2)O(5)'
mod_dict['CLIP_TRAQ_4[K]'] = 'K NORMAL 244.101452 244.101452 0 H(15)C(9)13C(1)N(2)O(5)'
mod_dict['CLIP_TRAQ_4[Y]'] = 'Y NORMAL 244.101452 244.101452 0 H(15)C(9)13C(1)N(2)O(5)'
mod_dict['Can-FP-biotin[S]'] = 'S NORMAL 447.195679 447.195679 0 H(34)C(19)N(3)O(5)P(1)S(1)'
mod_dict['Can-FP-biotin[T]'] = 'T NORMAL 447.195679 447.195679 0 H(34)C(19)N(3)O(5)P(1)S(1)'
mod_dict['Can-FP-biotin[Y]'] = 'Y NORMAL 447.195679 447.195679 0 H(34)C(19)N(3)O(5)P(1)S(1)'
mod_dict['Carbamidomethyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Carbamidomethyl[C]'] = 'C NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Carbamidomethyl[D]'] = 'D NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Carbamidomethyl[E]'] = 'E NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Carbamidomethyl[H]'] = 'H NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Carbamidomethyl[K]'] = 'K NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Carbamidomethyl[S]'] = 'S NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Carbamidomethyl[T]'] = 'T NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Carbamidomethyl[Y]'] = 'Y NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['CarbamidomethylDTT[C]'] = 'C NORMAL 209.018035 209.018035 0 H(11)C(6)N(1)O(3)S(2)'
mod_dict['Carbamyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Carbamyl[C]'] = 'C NORMAL 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Carbamyl[K]'] = 'K NORMAL 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Carbamyl[M]'] = 'M NORMAL 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Carbamyl[R]'] = 'R NORMAL 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Carbamyl[S]'] = 'S NORMAL 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Carbamyl[T]'] = 'T NORMAL 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Carbamyl[Y]'] = 'Y NORMAL 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Carbamyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 43.005814 43.005814 0 H(1)C(1)N(1)O(1)'
mod_dict['Carbofuran[S]'] = 'S NORMAL 58.029289 58.029289 0 H(4)C(2)N(1)O(1)'
mod_dict['Carboxy->Thiocarboxy[ProteinC-termG]'] = 'G PRO_C 15.977156 15.977156 0 O(-1)S(1)'
mod_dict['Carboxy[D]'] = 'D NORMAL 43.989829 43.989829 0 C(1)O(2)'
mod_dict['Carboxy[E]'] = 'E NORMAL 43.989829 43.989829 0 C(1)O(2)'
mod_dict['Carboxy[K]'] = 'K NORMAL 43.989829 43.989829 0 C(1)O(2)'
mod_dict['Carboxy[W]'] = 'W NORMAL 43.989829 43.989829 0 C(1)O(2)'
mod_dict['Carboxy[ProteinN-termM]'] = 'M PRO_N 43.989829 43.989829 0 C(1)O(2)'
mod_dict['Carboxyethyl[H]'] = 'H NORMAL 72.021129 72.021129 0 H(4)C(3)O(2)'
mod_dict['Carboxyethyl[K]'] = 'K NORMAL 72.021129 72.021129 0 H(4)C(3)O(2)'
mod_dict['Carboxymethyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 58.005479 58.005479 0 H(2)C(2)O(2)'
mod_dict['Carboxymethyl[C]'] = 'C NORMAL 58.005479 58.005479 0 H(2)C(2)O(2)'
mod_dict['Carboxymethyl[K]'] = 'K NORMAL 58.005479 58.005479 0 H(2)C(2)O(2)'
mod_dict['Carboxymethyl[W]'] = 'W NORMAL 58.005479 58.005479 0 H(2)C(2)O(2)'
mod_dict['CarboxymethylDMAP[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 162.079313 162.079313 0 H(10)C(9)N(2)O(1)'
mod_dict['CarboxymethylDTT[C]'] = 'C NORMAL 210.002050 210.002050 0 H(10)C(6)O(4)S(2)'
mod_dict['Carboxymethyl_13C(2)[C]'] = 'C NORMAL 60.012189 60.012189 0 H(2)13C(2)O(2)'
mod_dict['Cation_Ag[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 105.897267 105.897267 0 H(-1)Ag(1)'
mod_dict['Cation_Ag[D]'] = 'D NORMAL 105.897267 105.897267 0 H(-1)Ag(1)'
mod_dict['Cation_Ag[E]'] = 'E NORMAL 105.897267 105.897267 0 H(-1)Ag(1)'
mod_dict['Cation_Ca[II][AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 37.946941 37.946941 0 H(-2)Ca(1)'
mod_dict['Cation_Ca[II][D]'] = 'D NORMAL 37.946941 37.946941 0 H(-2)Ca(1)'
mod_dict['Cation_Ca[II][E]'] = 'E NORMAL 37.946941 37.946941 0 H(-2)Ca(1)'
mod_dict['Cation_Cu[I][AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 61.921774 61.921774 0 H(-1)Cu(1)'
mod_dict['Cation_Cu[I][D]'] = 'D NORMAL 61.921774 61.921774 0 H(-1)Cu(1)'
mod_dict['Cation_Cu[I][E]'] = 'E NORMAL 61.921774 61.921774 0 H(-1)Cu(1)'
mod_dict['Cation_Fe[II][AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 53.919289 53.919289 0 H(-2)Fe(1)'
mod_dict['Cation_Fe[II][D]'] = 'D NORMAL 53.919289 53.919289 0 H(-2)Fe(1)'
mod_dict['Cation_Fe[II][E]'] = 'E NORMAL 53.919289 53.919289 0 H(-2)Fe(1)'
mod_dict['Cation_K[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 37.955882 37.955882 0 H(-1)K(1)'
mod_dict['Cation_K[D]'] = 'D NORMAL 37.955882 37.955882 0 H(-1)K(1)'
mod_dict['Cation_K[E]'] = 'E NORMAL 37.955882 37.955882 0 H(-1)K(1)'
mod_dict['Cation_Li[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 6.008178 6.008178 0 H(-1)Li(1)'
mod_dict['Cation_Li[D]'] = 'D NORMAL 6.008178 6.008178 0 H(-1)Li(1)'
mod_dict['Cation_Li[E]'] = 'E NORMAL 6.008178 6.008178 0 H(-1)Li(1)'
mod_dict['Cation_Mg[II][AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 21.969392 21.969392 0 H(-2)Mg(1)'
mod_dict['Cation_Mg[II][D]'] = 'D NORMAL 21.969392 21.969392 0 H(-2)Mg(1)'
mod_dict['Cation_Mg[II][E]'] = 'E NORMAL 21.969392 21.969392 0 H(-2)Mg(1)'
mod_dict['Cation_Na[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 21.981943 21.981943 0 H(-1)Na(1)'
mod_dict['Cation_Na[D]'] = 'D NORMAL 21.981943 21.981943 0 H(-1)Na(1)'
mod_dict['Cation_Na[E]'] = 'E NORMAL 21.981943 21.981943 0 H(-1)Na(1)'
mod_dict['Cation_Ni[II][AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 55.919696 55.919696 0 H(-2)Ni(1)'
mod_dict['Cation_Ni[II][D]'] = 'D NORMAL 55.919696 55.919696 0 H(-2)Ni(1)'
mod_dict['Cation_Ni[II][E]'] = 'E NORMAL 55.919696 55.919696 0 H(-2)Ni(1)'
mod_dict['Cation_Zn[II][AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 61.913495 61.913495 0 H(-2)Zn(1)'
mod_dict['Cation_Zn[II][D]'] = 'D NORMAL 61.913495 61.913495 0 H(-2)Zn(1)'
mod_dict['Cation_Zn[II][E]'] = 'E NORMAL 61.913495 61.913495 0 H(-2)Zn(1)'
mod_dict['Chlorination[Y]'] = 'Y NORMAL 34.968853 34.968853 0 Cl(1)'
mod_dict['Chlorpyrifos[S]'] = 'S NORMAL 153.013912 153.013912 0 H(10)C(4)O(2)P(1)S(1)'
mod_dict['Chlorpyrifos[T]'] = 'T NORMAL 153.013912 153.013912 0 H(10)C(4)O(2)P(1)S(1)'
mod_dict['Chlorpyrifos[Y]'] = 'Y NORMAL 153.013912 153.013912 0 H(10)C(4)O(2)P(1)S(1)'
mod_dict['Cholesterol[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C 368.344302 368.344302 0 H(44)C(27)'
mod_dict['CoenzymeA[C]'] = 'C NORMAL 765.099560 765.099560 0 H(34)C(21)N(7)O(16)P(3)S(1)'
mod_dict['CresylSaligeninPhosphate[H]'] = 'H NORMAL 276.055146 276.055146 0 H(13)C(14)O(4)P(1)'
mod_dict['CresylSaligeninPhosphate[K]'] = 'K NORMAL 276.055146 276.055146 0 H(13)C(14)O(4)P(1)'
mod_dict['CresylSaligeninPhosphate[R]'] = 'R NORMAL 276.055146 276.055146 0 H(13)C(14)O(4)P(1)'
mod_dict['CresylSaligeninPhosphate[S]'] = 'S NORMAL 276.055146 276.055146 0 H(13)C(14)O(4)P(1)'
mod_dict['CresylSaligeninPhosphate[T]'] = 'T NORMAL 276.055146 276.055146 0 H(13)C(14)O(4)P(1)'
mod_dict['CresylSaligeninPhosphate[Y]'] = 'Y NORMAL 276.055146 276.055146 0 H(13)C(14)O(4)P(1)'
mod_dict['Cresylphosphate[H]'] = 'H NORMAL 170.013281 170.013281 0 H(7)C(7)O(3)P(1)'
mod_dict['Cresylphosphate[K]'] = 'K NORMAL 170.013281 170.013281 0 H(7)C(7)O(3)P(1)'
mod_dict['Cresylphosphate[R]'] = 'R NORMAL 170.013281 170.013281 0 H(7)C(7)O(3)P(1)'
mod_dict['Cresylphosphate[S]'] = 'S NORMAL 170.013281 170.013281 0 H(7)C(7)O(3)P(1)'
mod_dict['Cresylphosphate[T]'] = 'T NORMAL 170.013281 170.013281 0 H(7)C(7)O(3)P(1)'
mod_dict['Cresylphosphate[Y]'] = 'Y NORMAL 170.013281 170.013281 0 H(7)C(7)O(3)P(1)'
mod_dict['Crotonaldehyde[C]'] = 'C NORMAL 70.041865 70.041865 0 H(6)C(4)O(1)'
mod_dict['Crotonaldehyde[H]'] = 'H NORMAL 70.041865 70.041865 0 H(6)C(4)O(1)'
mod_dict['Crotonyl[K]'] = 'K NORMAL 68.026215 68.026215 0 H(4)C(4)O(1)'
mod_dict['CuSMo[C]'] = 'C NORMAL 922.834855 922.834855 0 H(24)C(19)N(8)O(15)P(2)S(3)Cu(1)Mo(1)'
mod_dict['Cy3-maleimide[C]'] = 'C NORMAL 753.262796 753.262796 0 H(45)C(37)N(4)O(9)S(2)'
mod_dict['Cy3b-maleimide[C]'] = 'C NORMAL 682.246120 682.246120 0 H(38)C(37)N(4)O(7)S(1)'
mod_dict['CyDye-Cy3[C]'] = 'C NORMAL 672.298156 672.298156 0 H(44)C(37)N(4)O(6)S(1)'
mod_dict['CyDye-Cy5[C]'] = 'C NORMAL 684.298156 684.298156 0 H(44)C(38)N(4)O(6)S(1)'
mod_dict['Cyano[C]'] = 'C NORMAL 24.995249 24.995249 0 H(-1)C(1)N(1)'
mod_dict['Cys->Ala[C]'] = 'C NORMAL -31.972071 -31.972071 0 S(-1)'
mod_dict['Cys->Arg[C]'] = 'C NORMAL 53.091927 53.091927 0 H(7)C(3)N(3)S(-1)'
mod_dict['Cys->Asn[C]'] = 'C NORMAL 11.033743 11.033743 0 H(1)C(1)N(1)O(1)S(-1)'
mod_dict['Cys->Asp[C]'] = 'C NORMAL 12.017759 12.017759 0 C(1)O(2)S(-1)'
mod_dict['Cys->Dha[C]'] = 'C NORMAL -33.987721 -33.987721 0 H(-2)S(-1)'
mod_dict['Cys->Gln[C]'] = 'C NORMAL 25.049393 25.049393 0 H(3)C(2)N(1)O(1)S(-1)'
mod_dict['Cys->Glu[C]'] = 'C NORMAL 26.033409 26.033409 0 H(2)C(2)O(2)S(-1)'
mod_dict['Cys->Gly[C]'] = 'C NORMAL -45.987721 -45.987721 0 H(-2)C(-1)S(-1)'
mod_dict['Cys->His[C]'] = 'C NORMAL 34.049727 34.049727 0 H(2)C(3)N(2)S(-1)'
mod_dict['Cys->Lys[C]'] = 'C NORMAL 25.085779 25.085779 0 H(7)C(3)N(1)S(-1)'
mod_dict['Cys->Met[C]'] = 'C NORMAL 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Cys->Oxoalanine[C]'] = 'C NORMAL -17.992806 -17.992806 0 H(-2)O(1)S(-1)'
mod_dict['Cys->Phe[C]'] = 'C NORMAL 44.059229 44.059229 0 H(4)C(6)S(-1)'
mod_dict['Cys->Pro[C]'] = 'C NORMAL -5.956421 -5.956421 0 H(2)C(2)S(-1)'
mod_dict['Cys->PyruvicAcid[ProteinN-termC]'] = 'C PRO_N -33.003705 -33.003705 0 H(-3)N(-1)O(1)S(-1)'
mod_dict['Cys->Ser[C]'] = 'C NORMAL -15.977156 -15.977156 0 O(1)S(-1)'
mod_dict['Cys->Thr[C]'] = 'C NORMAL -1.961506 -1.961506 0 H(2)C(1)O(1)S(-1)'
mod_dict['Cys->Trp[C]'] = 'C NORMAL 83.070128 83.070128 0 H(5)C(8)N(1)S(-1)'
mod_dict['Cys->Tyr[C]'] = 'C NORMAL 60.054144 60.054144 0 H(4)C(6)O(1)S(-1)'
mod_dict['Cys->Val[C]'] = 'C NORMAL -3.940771 -3.940771 0 H(4)C(2)S(-1)'
mod_dict['Cys->Xle[C]'] = 'C NORMAL 10.074880 10.074880 0 H(6)C(3)S(-1)'
mod_dict['Cys->ethylaminoAla[C]'] = 'C NORMAL 11.070128 11.070128 0 H(5)C(2)N(1)S(-1)'
mod_dict['Cys->methylaminoAla[C]'] = 'C NORMAL -2.945522 -2.945522 0 H(3)C(1)N(1)S(-1)'
mod_dict['Cysteinyl[C]'] = 'C NORMAL 119.004099 119.004099 0 H(5)C(3)N(1)O(2)S(1)'
mod_dict['Cytopiloyne+water[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 380.147118 380.147118 0 H(24)C(19)O(8)'
mod_dict['Cytopiloyne+water[C]'] = 'C NORMAL 380.147118 380.147118 0 H(24)C(19)O(8)'
mod_dict['Cytopiloyne+water[K]'] = 'K NORMAL 380.147118 380.147118 0 H(24)C(19)O(8)'
mod_dict['Cytopiloyne+water[R]'] = 'R NORMAL 380.147118 380.147118 0 H(24)C(19)O(8)'
mod_dict['Cytopiloyne+water[S]'] = 'S NORMAL 380.147118 380.147118 0 H(24)C(19)O(8)'
mod_dict['Cytopiloyne+water[T]'] = 'T NORMAL 380.147118 380.147118 0 H(24)C(19)O(8)'
mod_dict['Cytopiloyne+water[Y]'] = 'Y NORMAL 380.147118 380.147118 0 H(24)C(19)O(8)'
mod_dict['Cytopiloyne[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 362.136553 362.136553 0 H(22)C(19)O(7)'
mod_dict['Cytopiloyne[C]'] = 'C NORMAL 362.136553 362.136553 0 H(22)C(19)O(7)'
mod_dict['Cytopiloyne[K]'] = 'K NORMAL 362.136553 362.136553 0 H(22)C(19)O(7)'
mod_dict['Cytopiloyne[P]'] = 'P NORMAL 362.136553 362.136553 0 H(22)C(19)O(7)'
mod_dict['Cytopiloyne[R]'] = 'R NORMAL 362.136553 362.136553 0 H(22)C(19)O(7)'
mod_dict['Cytopiloyne[S]'] = 'S NORMAL 362.136553 362.136553 0 H(22)C(19)O(7)'
mod_dict['Cytopiloyne[Y]'] = 'Y NORMAL 362.136553 362.136553 0 H(22)C(19)O(7)'
mod_dict['DAET[S]'] = 'S NORMAL 87.050655 87.050655 0 H(9)C(4)N(1)O(-1)S(1)'
mod_dict['DAET[T]'] = 'T NORMAL 87.050655 87.050655 0 H(9)C(4)N(1)O(-1)S(1)'
mod_dict['DEDGFLYMVYASQETFG[K]'] = 'K NORMAL 1970.824411 1970.824411 1 18.010565 18.010565 H(122)C(89)N(18)O(31)S(1)'
mod_dict['DFDNB[K]'] = 'K NORMAL 203.998263 203.998263 0 H(2)C(6)N(2)O(4)F(2)'
mod_dict['DFDNB[N]'] = 'N NORMAL 203.998263 203.998263 0 H(2)C(6)N(2)O(4)F(2)'
mod_dict['DFDNB[Q]'] = 'Q NORMAL 203.998263 203.998263 0 H(2)C(6)N(2)O(4)F(2)'
mod_dict['DFDNB[R]'] = 'R NORMAL 203.998263 203.998263 0 H(2)C(6)N(2)O(4)F(2)'
mod_dict['DHP[C]'] = 'C NORMAL 118.065674 118.065674 0 H(8)C(8)N(1)'
mod_dict['DMPO[C]'] = 'C NORMAL 111.068414 111.068414 0 H(9)C(6)N(1)O(1)'
mod_dict['DMPO[H]'] = 'H NORMAL 111.068414 111.068414 0 H(9)C(6)N(1)O(1)'
mod_dict['DMPO[Y]'] = 'Y NORMAL 111.068414 111.068414 0 H(9)C(6)N(1)O(1)'
mod_dict['DNCB_hapten[C]'] = 'C NORMAL 166.001457 166.001457 0 H(2)C(6)N(2)O(4)'
mod_dict['DNCB_hapten[H]'] = 'H NORMAL 166.001457 166.001457 0 H(2)C(6)N(2)O(4)'
mod_dict['DNCB_hapten[K]'] = 'K NORMAL 166.001457 166.001457 0 H(2)C(6)N(2)O(4)'
mod_dict['DNCB_hapten[Y]'] = 'Y NORMAL 166.001457 166.001457 0 H(2)C(6)N(2)O(4)'
mod_dict['DNPS[C]'] = 'C NORMAL 198.981352 198.981352 0 H(3)C(6)N(2)O(4)S(1)'
mod_dict['DNPS[W]'] = 'W NORMAL 198.981352 198.981352 0 H(3)C(6)N(2)O(4)S(1)'
mod_dict['DTBP[K]'] = 'K NORMAL 87.014270 87.014270 0 H(5)C(3)N(1)S(1)'
mod_dict['DTBP[N]'] = 'N NORMAL 87.014270 87.014270 0 H(5)C(3)N(1)S(1)'
mod_dict['DTBP[Q]'] = 'Q NORMAL 87.014270 87.014270 0 H(5)C(3)N(1)S(1)'
mod_dict['DTBP[R]'] = 'R NORMAL 87.014270 87.014270 0 H(5)C(3)N(1)S(1)'
mod_dict['DTBP[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 87.014270 87.014270 0 H(5)C(3)N(1)S(1)'
mod_dict['DTT_C_2H(6)[C]'] = 'C NORMAL 126.062161 126.062161 0 H(2)2H(6)C(4)O(2)S(1)'
mod_dict['DTT_ST[S]'] = 'S NORMAL 136.001656 136.001656 0 H(8)C(4)O(1)S(2)'
mod_dict['DTT_ST[T]'] = 'T NORMAL 136.001656 136.001656 0 H(8)C(4)O(1)S(2)'
mod_dict['DTT_ST_2H(6)[S]'] = 'S NORMAL 142.039317 142.039317 0 H(2)2H(6)C(4)O(1)S(2)'
mod_dict['DTT_ST_2H(6)[T]'] = 'T NORMAL 142.039317 142.039317 0 H(2)2H(6)C(4)O(1)S(2)'
mod_dict['Dansyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 233.051049 233.051049 0 H(11)C(12)N(1)O(2)S(1)'
mod_dict['Dansyl[K]'] = 'K NORMAL 233.051049 233.051049 0 H(11)C(12)N(1)O(2)S(1)'
mod_dict['Dap-DSP[A]'] = 'A NORMAL 328.055148 328.055148 0 H(16)C(13)N(2)O(4)S(2)'
mod_dict['Dap-DSP[E]'] = 'E NORMAL 328.055148 328.055148 0 H(16)C(13)N(2)O(4)S(2)'
mod_dict['Dap-DSP[K]'] = 'K NORMAL 328.055148 328.055148 0 H(16)C(13)N(2)O(4)S(2)'
mod_dict['DeStreak[C]'] = 'C NORMAL 75.998285 75.998285 0 H(4)C(2)O(1)S(1)'
mod_dict['Deamidated[N]'] = 'N NORMAL 0.984016 0.984016 0 H(-1)N(-1)O(1)'
mod_dict['Deamidated[Q]'] = 'Q NORMAL 0.984016 0.984016 0 H(-1)N(-1)O(1)'
mod_dict['Deamidated[R]'] = 'R NORMAL 0.984016 0.984016 0 H(-1)N(-1)O(1)'
mod_dict['Deamidated[ProteinN-termF]'] = 'F PRO_N 0.984016 0.984016 0 H(-1)N(-1)O(1)'
mod_dict['Deamidated_18O(1)[Q]'] = 'Q NORMAL 2.988261 2.988261 0 H(-1)N(-1)18O(1)'
mod_dict['Decanoyl[S]'] = 'S NORMAL 154.135765 154.135765 0 H(18)C(10)O(1)'
mod_dict['Decanoyl[T]'] = 'T NORMAL 154.135765 154.135765 0 H(18)C(10)O(1)'
mod_dict['Dehydrated[AnyN-termC]'] = 'C PEP_N -18.010565 -18.010565 0 H(-2)O(-1)'
mod_dict['Dehydrated[D]'] = 'D NORMAL -18.010565 -18.010565 0 H(-2)O(-1)'
mod_dict['Dehydrated[S]'] = 'S NORMAL -18.010565 -18.010565 0 H(-2)O(-1)'
mod_dict['Dehydrated[T]'] = 'T NORMAL -18.010565 -18.010565 0 H(-2)O(-1)'
mod_dict['Dehydrated[Y]'] = 'Y NORMAL -18.010565 -18.010565 0 H(-2)O(-1)'
mod_dict['Dehydrated[ProteinC-termN]'] = 'N PRO_C -18.010565 -18.010565 0 H(-2)O(-1)'
mod_dict['Dehydrated[ProteinC-termQ]'] = 'Q PRO_C -18.010565 -18.010565 0 H(-2)O(-1)'
mod_dict['Dehydro[C]'] = 'C NORMAL -1.007825 -1.007825 0 H(-1)'
mod_dict['Delta_H(1)O(-1)18O(1)[N]'] = 'N NORMAL 2.988261 2.988261 0 H(-1)N(-1)18O(1)'
mod_dict['Delta_H(2)C(2)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 26.015650 26.015650 0 H(2)C(2)'
mod_dict['Delta_H(2)C(2)[H]'] = 'H NORMAL 26.015650 26.015650 0 H(2)C(2)'
mod_dict['Delta_H(2)C(2)[K]'] = 'K NORMAL 26.015650 26.015650 0 H(2)C(2)'
mod_dict['Delta_H(2)C(2)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 26.015650 26.015650 0 H(2)C(2)'
mod_dict['Delta_H(2)C(3)[K]'] = 'K NORMAL 38.015650 38.015650 0 H(2)C(3)'
mod_dict['Delta_H(2)C(3)O(1)[K]'] = 'K NORMAL 54.010565 54.010565 0 H(2)C(3)O(1)'
mod_dict['Delta_H(2)C(5)[K]'] = 'K NORMAL 62.015650 62.015650 0 H(2)C(5)'
mod_dict['Delta_H(4)C(2)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Delta_H(4)C(2)[H]'] = 'H NORMAL 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Delta_H(4)C(2)[K]'] = 'K NORMAL 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Delta_H(4)C(2)O(-1)S(1)[S]'] = 'S NORMAL 44.008456 44.008456 0 H(4)C(2)O(-1)S(1)'
mod_dict['Delta_H(4)C(3)[H]'] = 'H NORMAL 40.031300 40.031300 0 H(4)C(3)'
mod_dict['Delta_H(4)C(3)[K]'] = 'K NORMAL 40.031300 40.031300 0 H(4)C(3)'
mod_dict['Delta_H(4)C(3)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 40.031300 40.031300 0 H(4)C(3)'
mod_dict['Delta_H(4)C(3)O(1)[C]'] = 'C NORMAL 56.026215 56.026215 0 H(4)C(3)O(1)'
mod_dict['Delta_H(4)C(3)O(1)[H]'] = 'H NORMAL 56.026215 56.026215 0 H(4)C(3)O(1)'
mod_dict['Delta_H(4)C(6)[K]'] = 'K NORMAL 76.031300 76.031300 0 H(4)C(6)'
mod_dict['Delta_H(5)C(2)[P]'] = 'P NORMAL 29.039125 29.039125 0 H(5)C(2)'
mod_dict['Delta_H(6)C(3)O(1)[C]'] = 'C NORMAL 58.041865 58.041865 0 H(6)C(3)O(1)'
mod_dict['Delta_H(6)C(3)O(1)[H]'] = 'H NORMAL 58.041865 58.041865 0 H(6)C(3)O(1)'
mod_dict['Delta_H(6)C(3)O(1)[K]'] = 'K NORMAL 58.041865 58.041865 0 H(6)C(3)O(1)'
mod_dict['Delta_H(6)C(3)O(1)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 58.041865 58.041865 0 H(6)C(3)O(1)'
mod_dict['Delta_H(6)C(6)O(1)[K]'] = 'K NORMAL 94.041865 94.041865 0 H(6)C(6)O(1)'
mod_dict['Delta_H(8)C(6)O(1)[L]'] = 'L NORMAL 96.057515 96.057515 0 H(8)C(6)O(1)'
mod_dict['Delta_H(8)C(6)O(1)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 96.057515 96.057515 0 H(8)C(6)O(1)'
mod_dict['Delta_H(8)C(6)O(2)[K]'] = 'K NORMAL 112.052430 112.052430 0 H(8)C(6)O(2)'
mod_dict['Delta_Hg(1)[C]'] = 'C NORMAL 201.970617 201.970617 0 Hg(1)'
mod_dict['Delta_S(-1)Se(1)[C]'] = 'C NORMAL 47.944449 47.944449 0 S(-1)Se(1)'
mod_dict['Delta_S(-1)Se(1)[M]'] = 'M NORMAL 47.944449 47.944449 0 S(-1)Se(1)'
mod_dict['Delta_Se(1)[C]'] = 'C NORMAL 79.916520 79.916520 0 Se(1)'
mod_dict['Deoxy[D]'] = 'D NORMAL -15.994915 -15.994915 0 O(-1)'
mod_dict['Deoxy[S]'] = 'S NORMAL -15.994915 -15.994915 0 O(-1)'
mod_dict['Deoxy[T]'] = 'T NORMAL -15.994915 -15.994915 0 O(-1)'
mod_dict['Deoxyhypusine[K]'] = 'K NORMAL 71.073499 71.073499 0 H(9)C(4)N(1)'
mod_dict['Dethiomethyl[M]'] = 'M NORMAL -48.003371 -48.003371 0 H(-4)C(-1)S(-1)'
mod_dict['DiART6plex[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 217.162932 217.162932 0 H(20)C(7)13C(4)N(1)15N(1)O(2)'
mod_dict['DiART6plex[K]'] = 'K NORMAL 217.162932 217.162932 0 H(20)C(7)13C(4)N(1)15N(1)O(2)'
mod_dict['DiART6plex[Y]'] = 'Y NORMAL 217.162932 217.162932 0 H(20)C(7)13C(4)N(1)15N(1)O(2)'
mod_dict['DiART6plex[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 217.162932 217.162932 0 H(20)C(7)13C(4)N(1)15N(1)O(2)'
mod_dict['DiART6plex115[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 217.156612 217.156612 0 H(20)C(8)13C(3)15N(2)O(2)'
mod_dict['DiART6plex115[K]'] = 'K NORMAL 217.156612 217.156612 0 H(20)C(8)13C(3)15N(2)O(2)'
mod_dict['DiART6plex115[Y]'] = 'Y NORMAL 217.156612 217.156612 0 H(20)C(8)13C(3)15N(2)O(2)'
mod_dict['DiART6plex115[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 217.156612 217.156612 0 H(20)C(8)13C(3)15N(2)O(2)'
mod_dict['DiART6plex116/119[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 217.168776 217.168776 0 H(18)2H(2)C(9)13C(2)N(1)15N(1)O(2)'
mod_dict['DiART6plex116/119[K]'] = 'K NORMAL 217.168776 217.168776 0 H(18)2H(2)C(9)13C(2)N(1)15N(1)O(2)'
mod_dict['DiART6plex116/119[Y]'] = 'Y NORMAL 217.168776 217.168776 0 H(18)2H(2)C(9)13C(2)N(1)15N(1)O(2)'
mod_dict['DiART6plex116/119[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 217.168776 217.168776 0 H(18)2H(2)C(9)13C(2)N(1)15N(1)O(2)'
mod_dict['DiART6plex117[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 217.162456 217.162456 0 H(18)2H(2)C(10)13C(1)15N(2)O(2)'
mod_dict['DiART6plex117[K]'] = 'K NORMAL 217.162456 217.162456 0 H(18)2H(2)C(10)13C(1)15N(2)O(2)'
mod_dict['DiART6plex117[Y]'] = 'Y NORMAL 217.162456 217.162456 0 H(18)2H(2)C(10)13C(1)15N(2)O(2)'
mod_dict['DiART6plex117[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 217.162456 217.162456 0 H(18)2H(2)C(10)13C(1)15N(2)O(2)'
mod_dict['DiART6plex118[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 217.175096 217.175096 0 H(18)2H(2)C(8)13C(3)N(2)O(2)'
mod_dict['DiART6plex118[K]'] = 'K NORMAL 217.175096 217.175096 0 H(18)2H(2)C(8)13C(3)N(2)O(2)'
mod_dict['DiART6plex118[Y]'] = 'Y NORMAL 217.175096 217.175096 0 H(18)2H(2)C(8)13C(3)N(2)O(2)'
mod_dict['DiART6plex118[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 217.175096 217.175096 0 H(18)2H(2)C(8)13C(3)N(2)O(2)'
mod_dict['DiDehydro[C]'] = 'C NORMAL -2.015650 -2.015650 0 H(-2)'
mod_dict['DiLeu4plex[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 145.132163 145.132163 0 H(13)2H(2)C(8)N(1)18O(1)'
mod_dict['DiLeu4plex[K]'] = 'K NORMAL 145.132163 145.132163 0 H(13)2H(2)C(8)N(1)18O(1)'
mod_dict['DiLeu4plex[Y]'] = 'Y NORMAL 145.132163 145.132163 0 H(13)2H(2)C(8)N(1)18O(1)'
mod_dict['DiLeu4plex115[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 145.120000 145.120000 0 H(15)C(7)13C(1)15N(1)18O(1)'
mod_dict['DiLeu4plex115[K]'] = 'K NORMAL 145.120000 145.120000 0 H(15)C(7)13C(1)15N(1)18O(1)'
mod_dict['DiLeu4plex115[Y]'] = 'Y NORMAL 145.120000 145.120000 0 H(15)C(7)13C(1)15N(1)18O(1)'
mod_dict['DiLeu4plex117[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 145.128307 145.128307 0 H(13)2H(2)C(7)13C(1)15N(1)O(1)'
mod_dict['DiLeu4plex117[K]'] = 'K NORMAL 145.128307 145.128307 0 H(13)2H(2)C(7)13C(1)15N(1)O(1)'
mod_dict['DiLeu4plex117[Y]'] = 'Y NORMAL 145.128307 145.128307 0 H(13)2H(2)C(7)13C(1)15N(1)O(1)'
mod_dict['DiLeu4plex118[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 145.140471 145.140471 0 H(11)2H(4)C(8)N(1)O(1)'
mod_dict['DiLeu4plex118[K]'] = 'K NORMAL 145.140471 145.140471 0 H(11)2H(4)C(8)N(1)O(1)'
mod_dict['DiLeu4plex118[Y]'] = 'Y NORMAL 145.140471 145.140471 0 H(11)2H(4)C(8)N(1)O(1)'
mod_dict['Diacylglycerol[C]'] = 'C NORMAL 576.511761 576.511761 0 H(68)C(37)O(4)'
mod_dict['Dibromo[Y]'] = 'Y NORMAL 155.821022 155.821022 0 H(-2)Br(2)'
mod_dict['Dicarbamidomethyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 114.042927 114.042927 0 H(6)C(4)N(2)O(2)'
mod_dict['Dicarbamidomethyl[C]'] = 'C NORMAL 114.042927 114.042927 0 H(6)C(4)N(2)O(2)'
mod_dict['Dicarbamidomethyl[H]'] = 'H NORMAL 114.042927 114.042927 0 H(6)C(4)N(2)O(2)'
mod_dict['Dicarbamidomethyl[K]'] = 'K NORMAL 114.042927 114.042927 0 H(6)C(4)N(2)O(2)'
mod_dict['Dicarbamidomethyl[R]'] = 'R NORMAL 114.042927 114.042927 0 H(6)C(4)N(2)O(2)'
mod_dict['Didehydro[AnyC-termK]'] = 'K PEP_C -2.015650 -2.015650 0 H(-2)'
mod_dict['Didehydro[S]'] = 'S NORMAL -2.015650 -2.015650 0 H(-2)'
mod_dict['Didehydro[T]'] = 'T NORMAL -2.015650 -2.015650 0 H(-2)'
mod_dict['Didehydro[Y]'] = 'Y NORMAL -2.015650 -2.015650 0 H(-2)'
mod_dict['Didehydroretinylidene[K]'] = 'K NORMAL 264.187801 264.187801 0 H(24)C(20)'
mod_dict['Diethyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 56.062600 56.062600 0 H(8)C(4)'
mod_dict['Diethyl[K]'] = 'K NORMAL 56.062600 56.062600 0 H(8)C(4)'
mod_dict['Diethylphosphate[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 136.028931 136.028931 0 H(9)C(4)O(3)P(1)'
mod_dict['Diethylphosphate[C]'] = 'C NORMAL 136.028931 136.028931 0 H(9)C(4)O(3)P(1)'
mod_dict['Diethylphosphate[H]'] = 'H NORMAL 136.028931 136.028931 0 H(9)C(4)O(3)P(1)'
mod_dict['Diethylphosphate[K]'] = 'K NORMAL 136.028931 136.028931 0 H(9)C(4)O(3)P(1)'
mod_dict['Diethylphosphate[S]'] = 'S NORMAL 136.028931 136.028931 0 H(9)C(4)O(3)P(1)'
mod_dict['Diethylphosphate[T]'] = 'T NORMAL 136.028931 136.028931 0 H(9)C(4)O(3)P(1)'
mod_dict['Diethylphosphate[Y]'] = 'Y NORMAL 136.028931 136.028931 0 H(9)C(4)O(3)P(1)'
mod_dict['Difuran[Y]'] = 'Y NORMAL 132.021129 132.021129 0 H(4)C(8)O(2)'
mod_dict['Dihydroxyimidazolidine[R]'] = 'R NORMAL 72.021129 72.021129 0 H(4)C(3)O(2)'
mod_dict['Diiodo[H]'] = 'H NORMAL 251.793296 251.793296 0 H(-2)I(2)'
mod_dict['Diiodo[Y]'] = 'Y NORMAL 251.793296 251.793296 0 H(-2)I(2)'
mod_dict['Diironsubcluster[C]'] = 'C NORMAL 342.786916 342.786916 0 H(-1)C(5)N(2)O(5)S(2)Fe(2)'
mod_dict['Diisopropylphosphate[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 164.060231 164.060231 0 H(13)C(6)O(3)P(1)'
mod_dict['Diisopropylphosphate[K]'] = 'K NORMAL 164.060231 164.060231 0 H(13)C(6)O(3)P(1)'
mod_dict['Diisopropylphosphate[S]'] = 'S NORMAL 164.060231 164.060231 0 H(13)C(6)O(3)P(1)'
mod_dict['Diisopropylphosphate[T]'] = 'T NORMAL 164.060231 164.060231 0 H(13)C(6)O(3)P(1)'
mod_dict['Diisopropylphosphate[Y]'] = 'Y NORMAL 164.060231 164.060231 0 H(13)C(6)O(3)P(1)'
mod_dict['Dimethyl[N]'] = 'N NORMAL 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Dimethyl[R]'] = 'R NORMAL 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Dimethyl[ProteinN-termP]'] = 'P PRO_N 28.031300 28.031300 0 H(4)C(2)'
mod_dict['DimethylArsino[C]'] = 'C NORMAL 103.960719 103.960719 0 H(5)C(2)As(1)'
mod_dict['Dimethyl_2H(4)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 32.056407 32.056407 0 2H(4)C(2)'
mod_dict['Dimethyl_2H(4)[K]'] = 'K NORMAL 32.056407 32.056407 0 2H(4)C(2)'
mod_dict['Dimethyl_2H(4)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 32.056407 32.056407 0 2H(4)C(2)'
mod_dict['Dimethyl_2H(4)13C(2)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 34.063117 34.063117 0 2H(4)13C(2)'
mod_dict['Dimethyl_2H(4)13C(2)[K]'] = 'K NORMAL 34.063117 34.063117 0 2H(4)13C(2)'
mod_dict['Dimethyl_2H(6)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 34.068961 34.068961 0 H(-2)2H(6)C(2)'
mod_dict['Dimethyl_2H(6)[K]'] = 'K NORMAL 34.068961 34.068961 0 H(-2)2H(6)C(2)'
mod_dict['Dimethyl_2H(6)[R]'] = 'R NORMAL 34.068961 34.068961 0 H(-2)2H(6)C(2)'
mod_dict['Dimethyl_2H(6)13C(2)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 36.075670 36.075670 0 H(-2)2H(6)13C(2)'
mod_dict['Dimethyl_2H(6)13C(2)[K]'] = 'K NORMAL 36.075670 36.075670 0 H(-2)2H(6)13C(2)'
mod_dict['Dimethyl_2H(6)13C(2)[R]'] = 'R NORMAL 36.075670 36.075670 0 H(-2)2H(6)13C(2)'
mod_dict['DimethylamineGMBS[C]'] = 'C NORMAL 267.158292 267.158292 0 H(21)C(13)N(3)O(3)'
mod_dict['DimethylpyrroleAdduct[K]'] = 'K NORMAL 78.046950 78.046950 0 H(6)C(6)'
mod_dict['Dioxidation[C]'] = 'C NORMAL 31.989829 31.989829 0 O(2)'
mod_dict['Dioxidation[F]'] = 'F NORMAL 31.989829 31.989829 0 O(2)'
mod_dict['Dioxidation[K]'] = 'K NORMAL 31.989829 31.989829 0 O(2)'
mod_dict['Dioxidation[M]'] = 'M NORMAL 31.989829 31.989829 0 O(2)'
mod_dict['Dioxidation[P]'] = 'P NORMAL 31.989829 31.989829 0 O(2)'
mod_dict['Dioxidation[R]'] = 'R NORMAL 31.989829 31.989829 0 O(2)'
mod_dict['Dioxidation[W]'] = 'W NORMAL 31.989829 31.989829 0 O(2)'
mod_dict['Dioxidation[Y]'] = 'Y NORMAL 31.989829 31.989829 0 O(2)'
mod_dict['Diphthamide[H]'] = 'H NORMAL 143.118438 143.118438 0 H(15)C(7)N(2)O(1)'
mod_dict['Dipyridyl[C]'] = 'C NORMAL 225.090212 225.090212 0 H(11)C(13)N(3)O(1)'
mod_dict['Dipyrrolylmethanemethyl[C]'] = 'C NORMAL 418.137616 418.137616 0 H(22)C(20)N(2)O(8)'
mod_dict['DyLight-maleimide[C]'] = 'C NORMAL 940.199900 940.199900 0 H(48)C(39)N(4)O(15)S(4)'
mod_dict['EDT-iodoacetyl-PEO-biotin[S]'] = 'S NORMAL 490.174218 490.174218 0 H(34)C(20)N(4)O(4)S(3)'
mod_dict['EDT-iodoacetyl-PEO-biotin[T]'] = 'T NORMAL 490.174218 490.174218 0 H(34)C(20)N(4)O(4)S(3)'
mod_dict['EDT-maleimide-PEO-biotin[S]'] = 'S NORMAL 601.206246 601.206246 0 H(39)C(25)N(5)O(6)S(3)'
mod_dict['EDT-maleimide-PEO-biotin[T]'] = 'T NORMAL 601.206246 601.206246 0 H(39)C(25)N(5)O(6)S(3)'
mod_dict['EGCG1[C]'] = 'C NORMAL 456.069261 456.069261 0 H(16)C(22)O(11)'
mod_dict['EGCG2[C]'] = 'C NORMAL 287.055563 287.055563 0 H(11)C(15)O(6)'
mod_dict['EHD-diphenylpentanone[C]'] = 'C NORMAL 266.130680 266.130680 0 H(18)C(18)O(2)'
mod_dict['EHD-diphenylpentanone[M]'] = 'M NORMAL 266.130680 266.130680 0 H(18)C(18)O(2)'
mod_dict['EQAT[C]'] = 'C NORMAL 184.157563 184.157563 0 H(20)C(10)N(2)O(1)'
mod_dict['EQAT_2H(5)[C]'] = 'C NORMAL 189.188947 189.188947 0 H(15)2H(5)C(10)N(2)O(1)'
mod_dict['EQIGG[K]'] = 'K NORMAL 484.228162 484.228162 0 H(32)C(20)N(6)O(8)'
mod_dict['ESP[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 338.177647 338.177647 0 H(26)C(16)N(4)O(2)S(1)'
mod_dict['ESP[K]'] = 'K NORMAL 338.177647 338.177647 0 H(26)C(16)N(4)O(2)S(1)'
mod_dict['ESP_2H(10)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 348.240414 348.240414 0 H(16)2H(10)C(16)N(4)O(2)S(1)'
mod_dict['ESP_2H(10)[K]'] = 'K NORMAL 348.240414 348.240414 0 H(16)2H(10)C(16)N(4)O(2)S(1)'
mod_dict['Ethanedithiol[S]'] = 'S NORMAL 75.980527 75.980527 0 H(4)C(2)O(-1)S(2)'
mod_dict['Ethanedithiol[T]'] = 'T NORMAL 75.980527 75.980527 0 H(4)C(2)O(-1)S(2)'
mod_dict['Ethanolamine[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 43.042199 43.042199 0 H(5)C(2)N(1)'
mod_dict['Ethanolamine[C]'] = 'C NORMAL 43.042199 43.042199 0 H(5)C(2)N(1)'
mod_dict['Ethanolamine[D]'] = 'D NORMAL 43.042199 43.042199 0 H(5)C(2)N(1)'
mod_dict['Ethanolamine[E]'] = 'E NORMAL 43.042199 43.042199 0 H(5)C(2)N(1)'
mod_dict['Ethanolyl[C]'] = 'C NORMAL 44.026215 44.026215 0 H(4)C(2)O(1)'
mod_dict['Ethanolyl[K]'] = 'K NORMAL 44.026215 44.026215 0 H(4)C(2)O(1)'
mod_dict['Ethanolyl[R]'] = 'R NORMAL 44.026215 44.026215 0 H(4)C(2)O(1)'
mod_dict['Ethoxyformyl[H]'] = 'H NORMAL 73.028954 73.028954 0 H(5)C(3)O(2)'
mod_dict['Ethyl+Deamidated[N]'] = 'N NORMAL 29.015316 29.015316 0 H(3)C(2)N(-1)O(1)'
mod_dict['Ethyl+Deamidated[Q]'] = 'Q NORMAL 29.015316 29.015316 0 H(3)C(2)N(-1)O(1)'
mod_dict['Ethyl[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Ethyl[D]'] = 'D NORMAL 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Ethyl[E]'] = 'E NORMAL 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Ethyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 28.031300 28.031300 0 H(4)C(2)'
mod_dict['Ethylphosphate[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 107.997631 107.997631 0 H(5)C(2)O(3)P(1)'
mod_dict['Ethylphosphate[K]'] = 'K NORMAL 107.997631 107.997631 0 H(5)C(2)O(3)P(1)'
mod_dict['ExacTagAmine[K]'] = 'K NORMAL 1046.347854 1046.347854 0 H(52)C(25)13C(12)N(8)15N(6)O(19)S(1)'
mod_dict['ExacTagThiol[C]'] = 'C NORMAL 972.365219 972.365219 0 H(50)C(23)13C(12)N(8)15N(6)O(18)'
mod_dict['FAD[C]'] = 'C NORMAL 783.141486 783.141486 0 H(31)C(27)N(9)O(15)P(2)'
mod_dict['FAD[H]'] = 'H NORMAL 783.141486 783.141486 0 H(31)C(27)N(9)O(15)P(2)'
mod_dict['FAD[Y]'] = 'Y NORMAL 783.141486 783.141486 0 H(31)C(27)N(9)O(15)P(2)'
mod_dict['FMN[S]'] = 'S NORMAL 438.094051 438.094051 0 H(19)C(17)N(4)O(8)P(1)'
mod_dict['FMN[T]'] = 'T NORMAL 438.094051 438.094051 0 H(19)C(17)N(4)O(8)P(1)'
mod_dict['FMNC[C]'] = 'C NORMAL 456.104615 456.104615 0 H(21)C(17)N(4)O(9)P(1)'
mod_dict['FMNH[C]'] = 'C NORMAL 454.088965 454.088965 0 H(19)C(17)N(4)O(9)P(1)'
mod_dict['FMNH[H]'] = 'H NORMAL 454.088965 454.088965 0 H(19)C(17)N(4)O(9)P(1)'
mod_dict['FNEM[C]'] = 'C NORMAL 427.069202 427.069202 0 H(13)C(24)N(1)O(7)'
mod_dict['FP-Biotin[K]'] = 'K NORMAL 572.316129 572.316129 0 H(49)C(27)N(4)O(5)P(1)S(1)'
mod_dict['FP-Biotin[S]'] = 'S NORMAL 572.316129 572.316129 0 H(49)C(27)N(4)O(5)P(1)S(1)'
mod_dict['FP-Biotin[T]'] = 'T NORMAL 572.316129 572.316129 0 H(49)C(27)N(4)O(5)P(1)S(1)'
mod_dict['FP-Biotin[Y]'] = 'Y NORMAL 572.316129 572.316129 0 H(49)C(27)N(4)O(5)P(1)S(1)'
mod_dict['FTC[C]'] = 'C NORMAL 421.073241 421.073241 0 H(15)C(21)N(3)O(5)S(1)'
mod_dict['FTC[K]'] = 'K NORMAL 421.073241 421.073241 0 H(15)C(21)N(3)O(5)S(1)'
mod_dict['FTC[P]'] = 'P NORMAL 421.073241 421.073241 0 H(15)C(21)N(3)O(5)S(1)'
mod_dict['FTC[R]'] = 'R NORMAL 421.073241 421.073241 0 H(15)C(21)N(3)O(5)S(1)'
mod_dict['FTC[S]'] = 'S NORMAL 421.073241 421.073241 0 H(15)C(21)N(3)O(5)S(1)'
mod_dict['Farnesyl[C]'] = 'C NORMAL 204.187801 204.187801 0 H(24)C(15)'
mod_dict['Fluorescein[C]'] = 'C NORMAL 388.082112 388.082112 0 H(14)C(22)N(1)O(6)'
mod_dict['Fluoro[A]'] = 'A NORMAL 17.990578 17.990578 0 H(-1)F(1)'
mod_dict['Fluoro[F]'] = 'F NORMAL 17.990578 17.990578 0 H(-1)F(1)'
mod_dict['Fluoro[W]'] = 'W NORMAL 17.990578 17.990578 0 H(-1)F(1)'
mod_dict['Fluoro[Y]'] = 'Y NORMAL 17.990578 17.990578 0 H(-1)F(1)'
mod_dict['Formyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 27.994915 27.994915 0 C(1)O(1)'
mod_dict['Formyl[K]'] = 'K NORMAL 27.994915 27.994915 0 C(1)O(1)'
mod_dict['Formyl[S]'] = 'S NORMAL 27.994915 27.994915 0 C(1)O(1)'
mod_dict['Formyl[T]'] = 'T NORMAL 27.994915 27.994915 0 C(1)O(1)'
mod_dict['Formyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 27.994915 27.994915 0 C(1)O(1)'
mod_dict['FormylMet[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 159.035399 159.035399 0 H(9)C(6)N(1)O(2)S(1)'
mod_dict['Furan[Y]'] = 'Y NORMAL 66.010565 66.010565 0 H(2)C(4)O(1)'
mod_dict['G-H1[R]'] = 'R NORMAL 39.994915 39.994915 0 C(2)O(1)'
mod_dict['GGQ[K]'] = 'K NORMAL 242.101505 242.101505 0 H(14)C(9)N(4)O(4)'
mod_dict['GIST-Quat[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 127.099714 127.099714 1 59.073499 59.073499 H(13)C(7)N(1)O(1)'
mod_dict['GIST-Quat[K]'] = 'K NORMAL 127.099714 127.099714 1 59.073499 59.073499 H(13)C(7)N(1)O(1)'
mod_dict['GIST-Quat_2H(3)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 130.118544 130.118544 1 62.092330 62.092330 H(10)2H(3)C(7)N(1)O(1)'
mod_dict['GIST-Quat_2H(3)[K]'] = 'K NORMAL 130.118544 130.118544 1 62.092330 62.092330 H(10)2H(3)C(7)N(1)O(1)'
mod_dict['GIST-Quat_2H(6)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 133.137375 133.137375 1 65.111160 65.111160 H(7)2H(6)C(7)N(1)O(1)'
mod_dict['GIST-Quat_2H(6)[K]'] = 'K NORMAL 133.137375 133.137375 1 65.111160 65.111160 H(7)2H(6)C(7)N(1)O(1)'
mod_dict['GIST-Quat_2H(9)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 136.156205 136.156205 1 68.129990 68.129990 H(4)2H(9)C(7)N(1)O(1)'
mod_dict['GIST-Quat_2H(9)[K]'] = 'K NORMAL 136.156205 136.156205 1 68.129990 68.129990 H(4)2H(9)C(7)N(1)O(1)'
mod_dict['GPIanchor[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C 123.008530 123.008530 0 H(6)C(2)N(1)O(3)P(1)'
mod_dict['GeranylGeranyl[C]'] = 'C NORMAL 272.250401 272.250401 0 H(32)C(20)'
mod_dict['Gln->Ala[Q]'] = 'Q NORMAL -57.021464 -57.021464 0 H(-3)C(-2)N(-1)O(-1)'
mod_dict['Gln->Arg[Q]'] = 'Q NORMAL 28.042534 28.042534 0 H(4)C(1)N(2)O(-1)'
mod_dict['Gln->Asn[Q]'] = 'Q NORMAL -14.015650 -14.015650 0 H(-2)C(-1)'
mod_dict['Gln->Asp[Q]'] = 'Q NORMAL -13.031634 -13.031634 0 H(-3)C(-1)N(-1)O(1)'
mod_dict['Gln->Cys[Q]'] = 'Q NORMAL -25.049393 -25.049393 0 H(-3)C(-2)N(-1)O(-1)S(1)'
mod_dict['Gln->Gly[Q]'] = 'Q NORMAL -71.037114 -71.037114 0 H(-5)C(-3)N(-1)O(-1)'
mod_dict['Gln->His[Q]'] = 'Q NORMAL 9.000334 9.000334 0 H(-1)C(1)N(1)O(-1)'
mod_dict['Gln->Lys[Q]'] = 'Q NORMAL 0.036386 0.036386 0 H(4)C(1)O(-1)'
mod_dict['Gln->Met[Q]'] = 'Q NORMAL 2.981907 2.981907 0 H(1)N(-1)O(-1)S(1)'
mod_dict['Gln->Phe[Q]'] = 'Q NORMAL 19.009836 19.009836 0 H(1)C(4)N(-1)O(-1)'
mod_dict['Gln->Pro[Q]'] = 'Q NORMAL -31.005814 -31.005814 0 H(-1)N(-1)O(-1)'
mod_dict['Gln->Ser[Q]'] = 'Q NORMAL -41.026549 -41.026549 0 H(-3)C(-2)N(-1)'
mod_dict['Gln->Thr[Q]'] = 'Q NORMAL -27.010899 -27.010899 0 H(-1)C(-1)N(-1)'
mod_dict['Gln->Trp[Q]'] = 'Q NORMAL 58.020735 58.020735 0 H(2)C(6)O(-1)'
mod_dict['Gln->Tyr[Q]'] = 'Q NORMAL 35.004751 35.004751 0 H(1)C(4)N(-1)'
mod_dict['Gln->Val[Q]'] = 'Q NORMAL -28.990164 -28.990164 0 H(1)N(-1)O(-1)'
mod_dict['Gln->Xle[Q]'] = 'Q NORMAL -14.974514 -14.974514 0 H(3)C(1)N(-1)O(-1)'
mod_dict['Gln->pyro-Glu[AnyN-termQ]'] = 'Q PEP_N -17.026549 -17.026549 0 H(-3)N(-1)'
mod_dict['Glu->Ala[E]'] = 'E NORMAL -58.005479 -58.005479 0 H(-2)C(-2)O(-2)'
mod_dict['Glu->Arg[E]'] = 'E NORMAL 27.058518 27.058518 0 H(5)C(1)N(3)O(-2)'
mod_dict['Glu->Asn[E]'] = 'E NORMAL -14.999666 -14.999666 0 H(-1)C(-1)N(1)O(-1)'
mod_dict['Glu->Asp[E]'] = 'E NORMAL -14.015650 -14.015650 0 H(-2)C(-1)'
mod_dict['Glu->Cys[E]'] = 'E NORMAL -26.033409 -26.033409 0 H(-2)C(-2)O(-2)S(1)'
mod_dict['Glu->Gln[E]'] = 'E NORMAL -0.984016 -0.984016 0 H(1)N(1)O(-1)'
mod_dict['Glu->Gly[E]'] = 'E NORMAL -72.021129 -72.021129 0 H(-4)C(-3)O(-2)'
mod_dict['Glu->His[E]'] = 'E NORMAL 8.016319 8.016319 0 C(1)N(2)O(-2)'
mod_dict['Glu->Lys[E]'] = 'E NORMAL -0.947630 -0.947630 0 H(5)C(1)N(1)O(-2)'
mod_dict['Glu->Met[E]'] = 'E NORMAL 1.997892 1.997892 0 H(2)O(-2)S(1)'
mod_dict['Glu->Phe[E]'] = 'E NORMAL 18.025821 18.025821 0 H(2)C(4)O(-2)'
mod_dict['Glu->Pro[E]'] = 'E NORMAL -31.989829 -31.989829 0 O(-2)'
mod_dict['Glu->Ser[E]'] = 'E NORMAL -42.010565 -42.010565 0 H(-2)C(-2)O(-1)'
mod_dict['Glu->Thr[E]'] = 'E NORMAL -27.994915 -27.994915 0 C(-1)O(-1)'
mod_dict['Glu->Trp[E]'] = 'E NORMAL 57.036720 57.036720 0 H(3)C(6)N(1)O(-2)'
mod_dict['Glu->Tyr[E]'] = 'E NORMAL 34.020735 34.020735 0 H(2)C(4)O(-1)'
mod_dict['Glu->Val[E]'] = 'E NORMAL -29.974179 -29.974179 0 H(2)O(-2)'
mod_dict['Glu->Xle[E]'] = 'E NORMAL -15.958529 -15.958529 0 H(4)C(1)O(-2)'
mod_dict['Glu->pyro-Glu[AnyN-termE]'] = 'E PEP_N -18.010565 -18.010565 0 H(-2)O(-1)'
mod_dict['Glu[E]'] = 'E NORMAL 129.042593 129.042593 0 H(7)C(5)N(1)O(3)'
mod_dict['Glu[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C 129.042593 129.042593 0 H(7)C(5)N(1)O(3)'
mod_dict['GluGlu[E]'] = 'E NORMAL 258.085186 258.085186 0 H(14)C(10)N(2)O(6)'
mod_dict['GluGlu[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C 258.085186 258.085186 0 H(14)C(10)N(2)O(6)'
mod_dict['GluGluGlu[E]'] = 'E NORMAL 387.127779 387.127779 0 H(21)C(15)N(3)O(9)'
mod_dict['GluGluGlu[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C 387.127779 387.127779 0 H(21)C(15)N(3)O(9)'
mod_dict['GluGluGluGlu[E]'] = 'E NORMAL 516.170373 516.170373 0 H(28)C(20)N(4)O(12)'
mod_dict['GluGluGluGlu[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C 516.170373 516.170373 0 H(28)C(20)N(4)O(12)'
mod_dict['Gluconoylation[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 178.047738 178.047738 0 H(10)C(6)O(6)'
mod_dict['Gluconoylation[K]'] = 'K NORMAL 178.047738 178.047738 0 H(10)C(6)O(6)'
mod_dict['Glucosylgalactosyl[K]'] = 'K NORMAL 340.100562 340.100562 2 324.105647 324.105647 162.052823 162.052823 O(1)Hex(2)'
mod_dict['Glucuronyl[S]'] = 'S NORMAL 176.032088 176.032088 0 H(8)C(6)O(6)'
mod_dict['Glucuronyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 176.032088 176.032088 0 H(8)C(6)O(6)'
mod_dict['Glutathione[C]'] = 'C NORMAL 305.068156 305.068156 0 H(15)C(10)N(3)O(6)S(1)'
mod_dict['Gly->Ala[G]'] = 'G NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Gly->Arg[G]'] = 'G NORMAL 99.079647 99.079647 0 H(9)C(4)N(3)'
mod_dict['Gly->Asn[G]'] = 'G NORMAL 57.021464 57.021464 0 H(3)C(2)N(1)O(1)'
mod_dict['Gly->Asp[G]'] = 'G NORMAL 58.005479 58.005479 0 H(2)C(2)O(2)'
mod_dict['Gly->Cys[G]'] = 'G NORMAL 45.987721 45.987721 0 H(2)C(1)S(1)'
mod_dict['Gly->Gln[G]'] = 'G NORMAL 71.037114 71.037114 0 H(5)C(3)N(1)O(1)'
mod_dict['Gly->Glu[G]'] = 'G NORMAL 72.021129 72.021129 0 H(4)C(3)O(2)'
mod_dict['Gly->His[G]'] = 'G NORMAL 80.037448 80.037448 0 H(4)C(4)N(2)'
mod_dict['Gly->Lys[G]'] = 'G NORMAL 71.073499 71.073499 0 H(9)C(4)N(1)'
mod_dict['Gly->Met[G]'] = 'G NORMAL 74.019021 74.019021 0 H(6)C(3)S(1)'
mod_dict['Gly->Phe[G]'] = 'G NORMAL 90.046950 90.046950 0 H(6)C(7)'
mod_dict['Gly->Pro[G]'] = 'G NORMAL 40.031300 40.031300 0 H(4)C(3)'
mod_dict['Gly->Ser[G]'] = 'G NORMAL 30.010565 30.010565 0 H(2)C(1)O(1)'
mod_dict['Gly->Thr[G]'] = 'G NORMAL 44.026215 44.026215 0 H(4)C(2)O(1)'
mod_dict['Gly->Trp[G]'] = 'G NORMAL 129.057849 129.057849 0 H(7)C(9)N(1)'
mod_dict['Gly->Tyr[G]'] = 'G NORMAL 106.041865 106.041865 0 H(6)C(7)O(1)'
mod_dict['Gly->Val[G]'] = 'G NORMAL 42.046950 42.046950 0 H(6)C(3)'
mod_dict['Gly->Xle[G]'] = 'G NORMAL 56.062600 56.062600 0 H(8)C(4)'
mod_dict['Gly-loss+Amide[AnyC-termG]'] = 'G PEP_C -58.005479 -58.005479 0 H(-2)C(-2)O(-2)'
mod_dict['GlyGly[S]'] = 'S NORMAL 114.042927 114.042927 0 H(6)C(4)N(2)O(2)'
mod_dict['GlyGly[T]'] = 'T NORMAL 114.042927 114.042927 0 H(6)C(4)N(2)O(2)'
mod_dict['Glycerophospho[S]'] = 'S NORMAL 154.003110 154.003110 0 H(7)C(3)O(5)P(1)'
mod_dict['GlycerylPE[E]'] = 'E NORMAL 197.045310 197.045310 0 H(12)C(5)N(1)O(5)P(1)'
mod_dict['Glycosyl[P]'] = 'P NORMAL 148.037173 148.037173 0 H(8)C(5)O(5)'
mod_dict['Guanidinyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 42.021798 42.021798 0 H(2)C(1)N(2)'
mod_dict['Guanidinyl[K]'] = 'K NORMAL 42.021798 42.021798 0 H(2)C(1)N(2)'
mod_dict['HCysThiolactone[K]'] = 'K NORMAL 117.024835 117.024835 0 H(7)C(4)N(1)O(1)S(1)'
mod_dict['HCysteinyl[C]'] = 'C NORMAL 133.019749 133.019749 0 H(7)C(4)N(1)O(2)S(1)'
mod_dict['HMVK[C]'] = 'C NORMAL 86.036779 86.036779 0 H(6)C(4)O(2)'
mod_dict['HN2_mustard[C]'] = 'C NORMAL 101.084064 101.084064 0 H(11)C(5)N(1)O(1)'
mod_dict['HN2_mustard[H]'] = 'H NORMAL 101.084064 101.084064 0 H(11)C(5)N(1)O(1)'
mod_dict['HN2_mustard[K]'] = 'K NORMAL 101.084064 101.084064 0 H(11)C(5)N(1)O(1)'
mod_dict['HN3_mustard[C]'] = 'C NORMAL 131.094629 131.094629 0 H(13)C(6)N(1)O(2)'
mod_dict['HN3_mustard[H]'] = 'H NORMAL 131.094629 131.094629 0 H(13)C(6)N(1)O(2)'
mod_dict['HN3_mustard[K]'] = 'K NORMAL 131.094629 131.094629 0 H(13)C(6)N(1)O(2)'
mod_dict['HNE+Delta_H(2)[C]'] = 'C NORMAL 158.130680 158.130680 0 H(18)C(9)O(2)'
mod_dict['HNE+Delta_H(2)[H]'] = 'H NORMAL 158.130680 158.130680 0 H(18)C(9)O(2)'
mod_dict['HNE+Delta_H(2)[K]'] = 'K NORMAL 158.130680 158.130680 0 H(18)C(9)O(2)'
mod_dict['HNE-BAHAH[C]'] = 'C NORMAL 511.319226 511.319226 0 H(45)C(25)N(5)O(4)S(1)'
mod_dict['HNE-BAHAH[H]'] = 'H NORMAL 511.319226 511.319226 0 H(45)C(25)N(5)O(4)S(1)'
mod_dict['HNE-BAHAH[K]'] = 'K NORMAL 511.319226 511.319226 0 H(45)C(25)N(5)O(4)S(1)'
mod_dict['HNE-Delta_H(2)O[C]'] = 'C NORMAL 138.104465 138.104465 0 H(14)C(9)O(1)'
mod_dict['HNE-Delta_H(2)O[H]'] = 'H NORMAL 138.104465 138.104465 0 H(14)C(9)O(1)'
mod_dict['HNE-Delta_H(2)O[K]'] = 'K NORMAL 138.104465 138.104465 0 H(14)C(9)O(1)'
mod_dict['HNE[A]'] = 'A NORMAL 156.115030 156.115030 0 H(16)C(9)O(2)'
mod_dict['HNE[C]'] = 'C NORMAL 156.115030 156.115030 0 H(16)C(9)O(2)'
mod_dict['HNE[H]'] = 'H NORMAL 156.115030 156.115030 0 H(16)C(9)O(2)'
mod_dict['HNE[K]'] = 'K NORMAL 156.115030 156.115030 0 H(16)C(9)O(2)'
mod_dict['HNE[L]'] = 'L NORMAL 156.115030 156.115030 0 H(16)C(9)O(2)'
mod_dict['HPG[R]'] = 'R NORMAL 132.021129 132.021129 0 H(4)C(8)O(2)'
mod_dict['Heme[C]'] = 'C NORMAL 616.177295 616.177295 0 H(32)C(34)N(4)O(4)Fe(1)'
mod_dict['Heme[H]'] = 'H NORMAL 616.177295 616.177295 0 H(32)C(34)N(4)O(4)Fe(1)'
mod_dict['Hep[K]'] = 'K NORMAL 192.063388 192.063388 0 Hep(1)'
mod_dict['Hep[N]'] = 'N NORMAL 192.063388 192.063388 0 Hep(1)'
mod_dict['Hep[Q]'] = 'Q NORMAL 192.063388 192.063388 0 Hep(1)'
mod_dict['Hep[R]'] = 'R NORMAL 192.063388 192.063388 0 Hep(1)'
mod_dict['Hep[S]'] = 'S NORMAL 192.063388 192.063388 0 Hep(1)'
mod_dict['Hep[T]'] = 'T NORMAL 192.063388 192.063388 0 Hep(1)'
mod_dict['Hex(1)HexNAc(1)NeuAc(1)[N]'] = 'N NORMAL 656.227613 656.227613 0 Hex(1)HexNAc(1)NeuAc(1)'
mod_dict['Hex(1)HexNAc(1)NeuAc(1)[S]'] = 'S NORMAL 656.227613 656.227613 0 Hex(1)HexNAc(1)NeuAc(1)'
mod_dict['Hex(1)HexNAc(1)NeuAc(1)[T]'] = 'T NORMAL 656.227613 656.227613 0 Hex(1)HexNAc(1)NeuAc(1)'
mod_dict['Hex(1)HexNAc(1)NeuAc(2)[N]'] = 'N NORMAL 947.323029 947.323029 0 Hex(1)HexNAc(1)NeuAc(2)'
mod_dict['Hex(1)HexNAc(1)NeuAc(2)[S]'] = 'S NORMAL 947.323029 947.323029 0 Hex(1)HexNAc(1)NeuAc(2)'
mod_dict['Hex(1)HexNAc(1)NeuAc(2)[T]'] = 'T NORMAL 947.323029 947.323029 0 Hex(1)HexNAc(1)NeuAc(2)'
mod_dict['Hex(1)HexNAc(1)dHex(1)[N]'] = 'N NORMAL 511.190105 511.190105 0 dHex(1)Hex(1)HexNAc(1)'
mod_dict['Hex(1)HexNAc(2)[N]'] = 'N NORMAL 568.211569 568.211569 0 Hex(1)HexNAc(2)'
mod_dict['Hex(1)HexNAc(2)Pent(1)[N]'] = 'N NORMAL 700.253828 700.253828 0 Pent(1)Hex(1)HexNAc(2)'
mod_dict['Hex(1)HexNAc(2)dHex(1)[N]'] = 'N NORMAL 714.269478 714.269478 0 dHex(1)Hex(1)HexNAc(2)'
mod_dict['Hex(1)HexNAc(2)dHex(1)Pent(1)[N]'] = 'N NORMAL 846.311736 846.311736 0 Pent(1)dHex(1)Hex(1)HexNAc(2)'
mod_dict['Hex(1)HexNAc(2)dHex(2)[N]'] = 'N NORMAL 860.327386 860.327386 0 dHex(2)Hex(1)HexNAc(2)'
mod_dict['Hex(2)[K]'] = 'K NORMAL 324.105647 324.105647 0 Hex(2)'
mod_dict['Hex(2)[R]'] = 'R NORMAL 324.105647 324.105647 0 Hex(2)'
mod_dict['Hex(2)HexNAc(2)[N]'] = 'N NORMAL 730.264392 730.264392 0 Hex(2)HexNAc(2)'
mod_dict['Hex(2)HexNAc(2)Pent(1)[N]'] = 'N NORMAL 862.306651 862.306651 0 Pent(1)Hex(2)HexNAc(2)'
mod_dict['Hex(2)HexNAc(2)dHex(1)[N]'] = 'N NORMAL 876.322301 876.322301 0 dHex(1)Hex(2)HexNAc(2)'
mod_dict['Hex(3)[N]'] = 'N NORMAL 486.158471 486.158471 0 Hex(3)'
mod_dict['Hex(3)HexNAc(1)Pent(1)[N]'] = 'N NORMAL 821.280102 821.280102 0 Pent(1)Hex(3)HexNAc(1)'
mod_dict['Hex(3)HexNAc(2)[N]'] = 'N NORMAL 892.317216 892.317216 0 Hex(3)HexNAc(2)'
mod_dict['Hex(3)HexNAc(2)P(1)[N]'] = 'N NORMAL 923.290978 923.290978 0 P(1)Hex(3)HexNAc(2)'
mod_dict['Hex(3)HexNAc(4)[N]'] = 'N NORMAL 1298.475961 1298.475961 0 Hex(3)HexNAc(4)'
mod_dict['Hex(4)HexNAc(4)[N]'] = 'N NORMAL 1460.528784 1460.528784 0 Hex(4)HexNAc(4)'
mod_dict['Hex(5)HexNAc(2)[N]'] = 'N NORMAL 1216.422863 1216.422863 0 Hex(5)HexNAc(2)'
mod_dict['Hex(5)HexNAc(4)[N]'] = 'N NORMAL 1622.581608 1622.581608 0 Hex(5)HexNAc(4)'
mod_dict['Hex[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 162.052824 162.052824 0 Hex(1)'
mod_dict['Hex[C]'] = 'C NORMAL 162.052824 162.052824 0 Hex(1)'
mod_dict['Hex[K]'] = 'K NORMAL 162.052824 162.052824 0 Hex(1)'
mod_dict['Hex[N]'] = 'N NORMAL 162.052824 162.052824 0 Hex(1)'
mod_dict['Hex[R]'] = 'R NORMAL 162.052824 162.052824 0 Hex(1)'
mod_dict['Hex[S]'] = 'S NORMAL 162.052824 162.052824 0 Hex(1)'
mod_dict['Hex[T]'] = 'T NORMAL 162.052824 162.052824 0 Hex(1)'
mod_dict['Hex[W]'] = 'W NORMAL 162.052824 162.052824 0 Hex(1)'
mod_dict['Hex[Y]'] = 'Y NORMAL 162.052824 162.052824 0 Hex(1)'
mod_dict['Hex1HexNAc1[N]'] = 'N NORMAL 365.132196 365.132196 0 Hex(1)HexNAc(1)'
mod_dict['Hex1HexNAc1[S]'] = 'S NORMAL 365.132196 365.132196 0 Hex(1)HexNAc(1)'
mod_dict['Hex1HexNAc1[T]'] = 'T NORMAL 365.132196 365.132196 0 Hex(1)HexNAc(1)'
mod_dict['HexN[K]'] = 'K NORMAL 161.068808 161.068808 0 H(11)C(6)N(1)O(4)'
mod_dict['HexN[N]'] = 'N NORMAL 161.068808 161.068808 0 H(11)C(6)N(1)O(4)'
mod_dict['HexN[T]'] = 'T NORMAL 161.068808 161.068808 0 H(11)C(6)N(1)O(4)'
mod_dict['HexN[W]'] = 'W NORMAL 161.068808 161.068808 0 H(11)C(6)N(1)O(4)'
mod_dict['HexNAc(1)dHex(1)[N]'] = 'N NORMAL 349.137281 349.137281 0 dHex(1)HexNAc(1)'
mod_dict['HexNAc(1)dHex(2)[N]'] = 'N NORMAL 495.195190 495.195190 0 dHex(2)HexNAc(1)'
mod_dict['HexNAc(2)[N]'] = 'N NORMAL 406.158745 406.158745 0 HexNAc(2)'
mod_dict['HexNAc(2)dHex(1)[N]'] = 'N NORMAL 552.216654 552.216654 0 dHex(1)HexNAc(2)'
mod_dict['HexNAc(2)dHex(2)[N]'] = 'N NORMAL 698.274563 698.274563 0 dHex(2)HexNAc(2)'
mod_dict['HexNAc[N]'] = 'N NORMAL 203.079373 203.079373 0 HexNAc(1)'
mod_dict['HexNAc[S]'] = 'S NORMAL 203.079373 203.079373 0 HexNAc(1)'
mod_dict['HexNAc[T]'] = 'T NORMAL 203.079373 203.079373 0 HexNAc(1)'
mod_dict['His->Ala[H]'] = 'H NORMAL -66.021798 -66.021798 0 H(-2)C(-3)N(-2)'
mod_dict['His->Arg[H]'] = 'H NORMAL 19.042199 19.042199 0 H(5)N(1)'
mod_dict['His->Asn[H]'] = 'H NORMAL -23.015984 -23.015984 0 H(-1)C(-2)N(-1)O(1)'
mod_dict['His->Asp[H]'] = 'H NORMAL -22.031969 -22.031969 0 H(-2)C(-2)N(-2)O(2)'
mod_dict['His->Cys[H]'] = 'H NORMAL -34.049727 -34.049727 0 H(-2)C(-3)N(-2)S(1)'
mod_dict['His->Gln[H]'] = 'H NORMAL -9.000334 -9.000334 0 H(1)C(-1)N(-1)O(1)'
mod_dict['His->Glu[H]'] = 'H NORMAL -8.016319 -8.016319 0 C(-1)N(-2)O(2)'
mod_dict['His->Gly[H]'] = 'H NORMAL -80.037448 -80.037448 0 H(-4)C(-4)N(-2)'
mod_dict['His->Lys[H]'] = 'H NORMAL -8.963949 -8.963949 0 H(5)N(-1)'
mod_dict['His->Met[H]'] = 'H NORMAL -6.018427 -6.018427 0 H(2)C(-1)N(-2)S(1)'
mod_dict['His->Phe[H]'] = 'H NORMAL 10.009502 10.009502 0 H(2)C(3)N(-2)'
mod_dict['His->Pro[H]'] = 'H NORMAL -40.006148 -40.006148 0 C(-1)N(-2)'
mod_dict['His->Ser[H]'] = 'H NORMAL -50.026883 -50.026883 0 H(-2)C(-3)N(-2)O(1)'
mod_dict['His->Thr[H]'] = 'H NORMAL -36.011233 -36.011233 0 C(-2)N(-2)O(1)'
mod_dict['His->Trp[H]'] = 'H NORMAL 49.020401 49.020401 0 H(3)C(5)N(-1)'
mod_dict['His->Tyr[H]'] = 'H NORMAL 26.004417 26.004417 0 H(2)C(3)N(-2)O(1)'
mod_dict['His->Val[H]'] = 'H NORMAL -37.990498 -37.990498 0 H(2)C(-1)N(-2)'
mod_dict['His->Xle[H]'] = 'H NORMAL -23.974848 -23.974848 0 H(4)N(-2)'
mod_dict['Homocysteic_acid[M]'] = 'M NORMAL 33.969094 33.969094 0 H(-2)C(-1)O(3)'
mod_dict['Hydroxamic_acid[D]'] = 'D NORMAL 15.010899 15.010899 0 H(1)N(1)'
mod_dict['Hydroxamic_acid[E]'] = 'E NORMAL 15.010899 15.010899 0 H(1)N(1)'
mod_dict['Hydroxycinnamyl[C]'] = 'C NORMAL 146.036779 146.036779 0 H(6)C(9)O(2)'
mod_dict['Hydroxyfarnesyl[C]'] = 'C NORMAL 220.182715 220.182715 0 H(24)C(15)O(1)'
mod_dict['Hydroxyheme[E]'] = 'E NORMAL 614.161645 614.161645 0 H(30)C(34)N(4)O(4)Fe(1)'
mod_dict['Hydroxymethyl[N]'] = 'N NORMAL 30.010565 30.010565 0 H(2)C(1)O(1)'
mod_dict['HydroxymethylOP[K]'] = 'K NORMAL 108.021129 108.021129 0 H(4)C(6)O(2)'
mod_dict['Hydroxytrimethyl[K]'] = 'K NORMAL 59.049690 59.049690 0 H(7)C(3)O(1)'
mod_dict['Hypusine[K]'] = 'K NORMAL 87.068414 87.068414 0 H(9)C(4)N(1)O(1)'
mod_dict['IBTP[C]'] = 'C NORMAL 316.138088 316.138088 0 H(21)C(22)P(1)'
mod_dict['ICAT-C[C]'] = 'C NORMAL 227.126991 227.126991 0 H(17)C(10)N(3)O(3)'
mod_dict['ICAT-C_13C(9)[C]'] = 'C NORMAL 236.157185 236.157185 0 H(17)C(1)13C(9)N(3)O(3)'
mod_dict['ICAT-D[C]'] = 'C NORMAL 442.224991 442.224991 0 H(34)C(20)N(4)O(5)S(1)'
mod_dict['ICAT-D_2H(8)[C]'] = 'C NORMAL 450.275205 450.275205 0 H(26)2H(8)C(20)N(4)O(5)S(1)'
mod_dict['ICAT-G[C]'] = 'C NORMAL 486.251206 486.251206 0 H(38)C(22)N(4)O(6)S(1)'
mod_dict['ICAT-G_2H(8)[C]'] = 'C NORMAL 494.301420 494.301420 0 H(30)2H(8)C(22)N(4)O(6)S(1)'
mod_dict['ICAT-H[C]'] = 'C NORMAL 345.097915 345.097915 0 H(20)C(15)N(1)O(6)Cl(1)'
mod_dict['ICAT-H_13C(6)[C]'] = 'C NORMAL 351.118044 351.118044 0 H(20)C(9)13C(6)N(1)O(6)Cl(1)'
mod_dict['ICDID[C]'] = 'C NORMAL 138.068080 138.068080 0 H(10)C(8)O(2)'
mod_dict['ICDID_2H(6)[C]'] = 'C NORMAL 144.105740 144.105740 0 H(4)2H(6)C(8)O(2)'
mod_dict['ICPL[K]'] = 'K NORMAL 105.021464 105.021464 0 H(3)C(6)N(1)O(1)'
mod_dict['ICPL[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 105.021464 105.021464 0 H(3)C(6)N(1)O(1)'
mod_dict['ICPL_13C(6)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 111.041593 111.041593 0 H(3)13C(6)N(1)O(1)'
mod_dict['ICPL_13C(6)[K]'] = 'K NORMAL 111.041593 111.041593 0 H(3)13C(6)N(1)O(1)'
mod_dict['ICPL_13C(6)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 111.041593 111.041593 0 H(3)13C(6)N(1)O(1)'
mod_dict['ICPL_13C(6)2H(4)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 115.066700 115.066700 0 H(-1)2H(4)13C(6)N(1)O(1)'
mod_dict['ICPL_13C(6)2H(4)[K]'] = 'K NORMAL 115.066700 115.066700 0 H(-1)2H(4)13C(6)N(1)O(1)'
mod_dict['ICPL_13C(6)2H(4)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 115.066700 115.066700 0 H(-1)2H(4)13C(6)N(1)O(1)'
mod_dict['ICPL_2H(4)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 109.046571 109.046571 0 H(-1)2H(4)C(6)N(1)O(1)'
mod_dict['ICPL_2H(4)[K]'] = 'K NORMAL 109.046571 109.046571 0 H(-1)2H(4)C(6)N(1)O(1)'
mod_dict['ICPL_2H(4)[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 109.046571 109.046571 0 H(-1)2H(4)C(6)N(1)O(1)'
mod_dict['IDEnT[C]'] = 'C NORMAL 214.990469 214.990469 0 H(7)C(9)N(1)O(1)Cl(2)'
mod_dict['IED-Biotin[C]'] = 'C NORMAL 326.141261 326.141261 0 H(22)C(14)N(4)O(3)S(1)'
mod_dict['IGBP[C]'] = 'C NORMAL 296.016039 296.016039 0 H(13)C(12)N(2)O(2)Br(1)'
mod_dict['IGBP_13C(2)[C]'] = 'C NORMAL 298.022748 298.022748 0 H(13)C(10)13C(2)N(2)O(2)Br(1)'
mod_dict['IMEHex(2)NeuAc[K]'] = 'K NORMAL 688.199683 688.199683 0 H(3)C(2)N(1)S(1)Hex(2)NeuAc(1)'
mod_dict['IMID[K]'] = 'K NORMAL 68.037448 68.037448 0 H(4)C(3)N(2)'
mod_dict['IMID_2H(4)[K]'] = 'K NORMAL 72.062555 72.062555 0 2H(4)C(3)N(2)'
mod_dict['ISD_z+2_ion[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N -15.010899 -15.010899 0 H(-1)N(-1)'
mod_dict['Iminobiotin[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 225.093583 225.093583 0 H(15)C(10)N(3)O(1)S(1)'
mod_dict['Iminobiotin[K]'] = 'K NORMAL 225.093583 225.093583 0 H(15)C(10)N(3)O(1)S(1)'
mod_dict['Iodo[H]'] = 'H NORMAL 125.896648 125.896648 0 H(-1)I(1)'
mod_dict['Iodo[Y]'] = 'Y NORMAL 125.896648 125.896648 0 H(-1)I(1)'
mod_dict['IodoU-AMP[F]'] = 'F NORMAL 322.020217 322.020217 0 H(11)C(9)N(2)O(9)P(1)'
mod_dict['IodoU-AMP[W]'] = 'W NORMAL 322.020217 322.020217 0 H(11)C(9)N(2)O(9)P(1)'
mod_dict['IodoU-AMP[Y]'] = 'Y NORMAL 322.020217 322.020217 0 H(11)C(9)N(2)O(9)P(1)'
mod_dict['Iodoacetanilide[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 133.052764 133.052764 0 H(7)C(8)N(1)O(1)'
mod_dict['Iodoacetanilide[C]'] = 'C NORMAL 133.052764 133.052764 0 H(7)C(8)N(1)O(1)'
mod_dict['Iodoacetanilide[K]'] = 'K NORMAL 133.052764 133.052764 0 H(7)C(8)N(1)O(1)'
mod_dict['Iodoacetanilide_13C(6)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 139.072893 139.072893 0 H(7)C(2)13C(6)N(1)O(1)'
mod_dict['Iodoacetanilide_13C(6)[C]'] = 'C NORMAL 139.072893 139.072893 0 H(7)C(2)13C(6)N(1)O(1)'
mod_dict['Iodoacetanilide_13C(6)[K]'] = 'K NORMAL 139.072893 139.072893 0 H(7)C(2)13C(6)N(1)O(1)'
mod_dict['Isopropylphospho[S]'] = 'S NORMAL 122.013281 122.013281 0 H(7)C(3)O(3)P(1)'
mod_dict['Isopropylphospho[T]'] = 'T NORMAL 122.013281 122.013281 0 H(7)C(3)O(3)P(1)'
mod_dict['Isopropylphospho[Y]'] = 'Y NORMAL 122.013281 122.013281 0 H(7)C(3)O(3)P(1)'
mod_dict['LG-Hlactam-K[K]'] = 'K NORMAL 348.193674 348.193674 0 H(28)C(20)O(5)'
mod_dict['LG-Hlactam-K[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 348.193674 348.193674 0 H(28)C(20)O(5)'
mod_dict['LG-Hlactam-R[R]'] = 'R NORMAL 306.171876 306.171876 0 H(26)C(19)N(-2)O(5)'
mod_dict['LG-anhydrolactam[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 314.188195 314.188195 0 H(26)C(20)O(3)'
mod_dict['LG-anhydrolactam[K]'] = 'K NORMAL 314.188195 314.188195 0 H(26)C(20)O(3)'
mod_dict['LG-anhyropyrrole[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 298.193280 298.193280 0 H(26)C(20)O(2)'
mod_dict['LG-anhyropyrrole[K]'] = 'K NORMAL 298.193280 298.193280 0 H(26)C(20)O(2)'
mod_dict['LG-lactam-K[K]'] = 'K NORMAL 332.198760 332.198760 0 H(28)C(20)O(4)'
mod_dict['LG-lactam-K[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 332.198760 332.198760 0 H(28)C(20)O(4)'
mod_dict['LG-lactam-R[R]'] = 'R NORMAL 290.176961 290.176961 0 H(26)C(19)N(-2)O(4)'
mod_dict['LG-pyrrole[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 316.203845 316.203845 0 H(28)C(20)O(3)'
mod_dict['LG-pyrrole[K]'] = 'K NORMAL 316.203845 316.203845 0 H(28)C(20)O(3)'
mod_dict['Label_13C(1)2H(3)+Oxidation[M]'] = 'M NORMAL 20.017100 20.017100 0 H(-3)2H(3)C(-1)13C(1)O(1)'
mod_dict['Label_13C(1)2H(3)[M]'] = 'M NORMAL 4.022185 4.022185 0 H(-3)2H(3)C(-1)13C(1)'
mod_dict['Label_13C(3)[A]'] = 'A NORMAL 3.010064 3.010064 0 C(-3)13C(3)'
mod_dict['Label_13C(3)15N(1)[A]'] = 'A NORMAL 4.007099 4.007099 0 C(-3)13C(3)N(-1)15N(1)'
mod_dict['Label_13C(4)+Oxidation[M]'] = 'M NORMAL 20.008334 20.008334 0 C(-4)13C(4)O(1)'
mod_dict['Label_13C(4)[M]'] = 'M NORMAL 4.013419 4.013419 0 C(-4)13C(4)'
mod_dict['Label_13C(4)15N(1)[D]'] = 'D NORMAL 5.010454 5.010454 0 C(-4)13C(4)N(-1)15N(1)'
mod_dict['Label_13C(4)15N(2)+GlyGly[K]'] = 'K NORMAL 120.050417 120.050417 0 H(6)13C(4)15N(2)O(2)'
mod_dict['Label_13C(5)[P]'] = 'P NORMAL 5.016774 5.016774 0 C(-5)13C(5)'
mod_dict['Label_13C(5)15N(1)[E]'] = 'E NORMAL 6.013809 6.013809 0 C(-5)13C(5)N(-1)15N(1)'
mod_dict['Label_13C(5)15N(1)[M]'] = 'M NORMAL 6.013809 6.013809 0 C(-5)13C(5)N(-1)15N(1)'
mod_dict['Label_13C(5)15N(1)[P]'] = 'P NORMAL 6.013809 6.013809 0 C(-5)13C(5)N(-1)15N(1)'
mod_dict['Label_13C(5)15N(1)[V]'] = 'V NORMAL 6.013809 6.013809 0 C(-5)13C(5)N(-1)15N(1)'
mod_dict['Label_13C(6)+Acetyl[K]'] = 'K NORMAL 48.030694 48.030694 0 H(2)C(-4)13C(6)O(1)'
mod_dict['Label_13C(6)+Dimethyl[K]'] = 'K NORMAL 34.051429 34.051429 0 H(4)C(-4)13C(6)'
mod_dict['Label_13C(6)+GlyGly[K]'] = 'K NORMAL 120.063056 120.063056 0 H(6)C(-2)13C(6)N(2)O(2)'
mod_dict['Label_13C(6)[I]'] = 'I NORMAL 6.020129 6.020129 0 C(-6)13C(6)'
mod_dict['Label_13C(6)[K]'] = 'K NORMAL 6.020129 6.020129 0 C(-6)13C(6)'
mod_dict['Label_13C(6)[L]'] = 'L NORMAL 6.020129 6.020129 0 C(-6)13C(6)'
mod_dict['Label_13C(6)[R]'] = 'R NORMAL 6.020129 6.020129 0 C(-6)13C(6)'
mod_dict['Label_13C(6)15N(1)[I]'] = 'I NORMAL 7.017164 7.017164 0 C(-6)13C(6)N(-1)15N(1)'
mod_dict['Label_13C(6)15N(1)[L]'] = 'L NORMAL 7.017164 7.017164 0 C(-6)13C(6)N(-1)15N(1)'
mod_dict['Label_13C(6)15N(2)+Acetyl[K]'] = 'K NORMAL 50.024764 50.024764 0 H(2)C(-4)13C(6)N(-2)15N(2)O(1)'
mod_dict['Label_13C(6)15N(2)+Dimethyl[K]'] = 'K NORMAL 36.045499 36.045499 0 H(4)C(-4)13C(6)N(-2)15N(2)'
mod_dict['Label_13C(6)15N(2)+GlyGly[K]'] = 'K NORMAL 122.057126 122.057126 0 H(6)C(-2)13C(6)15N(2)O(2)'
mod_dict['Label_13C(6)15N(2)[K]'] = 'K NORMAL 8.014199 8.014199 0 C(-6)13C(6)N(-2)15N(2)'
mod_dict['Label_13C(6)15N(2)[L]'] = 'L NORMAL 8.014199 8.014199 0 C(-6)13C(6)N(-2)15N(2)'
mod_dict['Label_13C(6)15N(4)+Dimethyl[R]'] = 'R NORMAL 38.039569 38.039569 0 H(4)C(-4)13C(6)N(-4)15N(4)'
mod_dict['Label_13C(6)15N(4)+Dimethyl_2H(6)13C(2)[R]'] = 'R NORMAL 46.083939 46.083939 0 H(-2)2H(6)C(-6)13C(8)N(-4)15N(4)'
mod_dict['Label_13C(6)15N(4)+Methyl[R]'] = 'R NORMAL 24.023919 24.023919 0 H(2)C(-5)13C(6)N(-4)15N(4)'
mod_dict['Label_13C(6)15N(4)+Methyl_2H(3)13C(1)[R]'] = 'R NORMAL 28.046104 28.046104 0 H(-1)2H(3)C(-6)13C(7)N(-4)15N(4)'
mod_dict['Label_13C(6)15N(4)[R]'] = 'R NORMAL 10.008269 10.008269 0 C(-6)13C(6)N(-4)15N(4)'
mod_dict['Label_13C(8)15N(2)[R]'] = 'R NORMAL 10.020909 10.020909 0 C(-8)13C(8)N(-2)15N(2)'
mod_dict['Label_13C(9)+Phospho[Y]'] = 'Y NORMAL 88.996524 88.996524 0 H(1)C(-9)13C(9)O(3)P(1)'
mod_dict['Label_13C(9)[F]'] = 'F NORMAL 9.030193 9.030193 0 C(-9)13C(9)'
mod_dict['Label_13C(9)[Y]'] = 'Y NORMAL 9.030193 9.030193 0 C(-9)13C(9)'
mod_dict['Label_13C(9)15N(1)[F]'] = 'F NORMAL 10.027228 10.027228 0 C(-9)13C(9)N(-1)15N(1)'
mod_dict['Label_15N(1)[A]'] = 'A NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[C]'] = 'C NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[D]'] = 'D NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[E]'] = 'E NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[F]'] = 'F NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[G]'] = 'G NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[I]'] = 'I NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[L]'] = 'L NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[M]'] = 'M NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[P]'] = 'P NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[S]'] = 'S NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[T]'] = 'T NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[V]'] = 'V NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(1)[Y]'] = 'Y NORMAL 0.997035 0.997035 0 N(-1)15N(1)'
mod_dict['Label_15N(2)[K]'] = 'K NORMAL 1.994070 1.994070 0 N(-2)15N(2)'
mod_dict['Label_15N(2)[N]'] = 'N NORMAL 1.994070 1.994070 0 N(-2)15N(2)'
mod_dict['Label_15N(2)[Q]'] = 'Q NORMAL 1.994070 1.994070 0 N(-2)15N(2)'
mod_dict['Label_15N(2)[W]'] = 'W NORMAL 1.994070 1.994070 0 N(-2)15N(2)'
mod_dict['Label_15N(2)2H(9)[K]'] = 'K NORMAL 11.050561 11.050561 0 H(-9)2H(9)N(-2)15N(2)'
mod_dict['Label_15N(3)[H]'] = 'H NORMAL 2.991105 2.991105 0 N(-3)15N(3)'
mod_dict['Label_15N(4)[R]'] = 'R NORMAL 3.988140 3.988140 0 N(-4)15N(4)'
mod_dict['Label_18O(1)[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 2.004246 2.004246 0 O(-1)18O(1)'
mod_dict['Label_18O(1)[S]'] = 'S NORMAL 2.004246 2.004246 0 O(-1)18O(1)'
mod_dict['Label_18O(1)[T]'] = 'T NORMAL 2.004246 2.004246 0 O(-1)18O(1)'
mod_dict['Label_18O(1)[Y]'] = 'Y NORMAL 2.004246 2.004246 0 O(-1)18O(1)'
mod_dict['Label_18O(2)[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 4.008491 4.008491 0 O(-2)18O(2)'
mod_dict['Label_2H(10)[L]'] = 'L NORMAL 10.062767 10.062767 0 H(-10)2H(10)'
mod_dict['Label_2H(3)+Oxidation[M]'] = 'M NORMAL 19.013745 19.013745 0 H(-3)2H(3)O(1)'
mod_dict['Label_2H(3)[L]'] = 'L NORMAL 3.018830 3.018830 0 H(-3)2H(3)'
mod_dict['Label_2H(3)[M]'] = 'M NORMAL 3.018830 3.018830 0 H(-3)2H(3)'
mod_dict['Label_2H(4)+Acetyl[K]'] = 'K NORMAL 46.035672 46.035672 0 H(-2)2H(4)C(2)O(1)'
mod_dict['Label_2H(4)+GlyGly[K]'] = 'K NORMAL 118.068034 118.068034 0 H(2)2H(4)C(4)N(2)O(2)'
mod_dict['Label_2H(4)[F]'] = 'F NORMAL 4.025107 4.025107 0 H(-4)2H(4)'
mod_dict['Label_2H(4)[K]'] = 'K NORMAL 4.025107 4.025107 0 H(-4)2H(4)'
mod_dict['Label_2H(4)[Y]'] = 'Y NORMAL 4.025107 4.025107 0 H(-4)2H(4)'
mod_dict['Label_2H(4)13C(1)[R]'] = 'R NORMAL 5.028462 5.028462 0 H(-4)2H(4)C(-1)13C(1)'
mod_dict['Label_2H(9)13C(6)15N(2)[K]'] = 'K NORMAL 17.070690 17.070690 0 H(-9)2H(9)C(-6)13C(6)N(-2)15N(2)'
mod_dict['Leu->MetOx[L]'] = 'L NORMAL 33.951335 33.951335 0 H(-2)C(-1)O(1)S(1)'
mod_dict['LeuArgGlyGly[K]'] = 'K NORMAL 383.228103 383.228103 0 H(29)C(16)N(7)O(4)'
mod_dict['Lipoyl[K]'] = 'K NORMAL 188.032956 188.032956 0 H(12)C(8)O(1)S(2)'
mod_dict['Lys->Ala[K]'] = 'K NORMAL -57.057849 -57.057849 0 H(-7)C(-3)N(-1)'
mod_dict['Lys->Allysine[K]'] = 'K NORMAL -1.031634 -1.031634 0 H(-3)N(-1)O(1)'
mod_dict['Lys->AminoadipicAcid[K]'] = 'K NORMAL 14.963280 14.963280 0 H(-3)N(-1)O(2)'
mod_dict['Lys->Arg[K]'] = 'K NORMAL 28.006148 28.006148 0 N(2)'
mod_dict['Lys->Asn[K]'] = 'K NORMAL -14.052036 -14.052036 0 H(-6)C(-2)O(1)'
mod_dict['Lys->Asp[K]'] = 'K NORMAL -13.068020 -13.068020 0 H(-7)C(-2)N(-1)O(2)'
mod_dict['Lys->CamCys[K]'] = 'K NORMAL 31.935685 31.935685 0 H(-4)C(-1)O(1)S(1)'
mod_dict['Lys->Cys[K]'] = 'K NORMAL -25.085779 -25.085779 0 H(-7)C(-3)N(-1)S(1)'
mod_dict['Lys->Gln[K]'] = 'K NORMAL -0.036386 -0.036386 0 H(-4)C(-1)O(1)'
mod_dict['Lys->Glu[K]'] = 'K NORMAL 0.947630 0.947630 0 H(-5)C(-1)N(-1)O(2)'
mod_dict['Lys->Gly[K]'] = 'K NORMAL -71.073499 -71.073499 0 H(-9)C(-4)N(-1)'
mod_dict['Lys->His[K]'] = 'K NORMAL 8.963949 8.963949 0 H(-5)N(1)'
mod_dict['Lys->Met[K]'] = 'K NORMAL 2.945522 2.945522 0 H(-3)C(-1)N(-1)S(1)'
mod_dict['Lys->MetOx[K]'] = 'K NORMAL 18.940436 18.940436 0 H(-3)C(-1)N(-1)O(1)S(1)'
mod_dict['Lys->Phe[K]'] = 'K NORMAL 18.973451 18.973451 0 H(-3)C(3)N(-1)'
mod_dict['Lys->Pro[K]'] = 'K NORMAL -31.042199 -31.042199 0 H(-5)C(-1)N(-1)'
mod_dict['Lys->Ser[K]'] = 'K NORMAL -41.062935 -41.062935 0 H(-7)C(-3)N(-1)O(1)'
mod_dict['Lys->Thr[K]'] = 'K NORMAL -27.047285 -27.047285 0 H(-5)C(-2)N(-1)O(1)'
mod_dict['Lys->Trp[K]'] = 'K NORMAL 57.984350 57.984350 0 H(-2)C(5)'
mod_dict['Lys->Tyr[K]'] = 'K NORMAL 34.968366 34.968366 0 H(-3)C(3)N(-1)O(1)'
mod_dict['Lys->Val[K]'] = 'K NORMAL -29.026549 -29.026549 0 H(-3)C(-1)N(-1)'
mod_dict['Lys->Xle[K]'] = 'K NORMAL -15.010899 -15.010899 0 H(-1)N(-1)'
mod_dict['Lys-loss[ProteinC-termK]'] = 'K PRO_C -128.094963 -128.094963 0 H(-12)C(-6)N(-2)O(-1)'
mod_dict['Lys[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 128.094963 128.094963 0 H(12)C(6)N(2)O(1)'
mod_dict['Lysbiotinhydrazide[K]'] = 'K NORMAL 241.088497 241.088497 0 H(15)C(10)N(3)O(2)S(1)'
mod_dict['MDCC[C]'] = 'C NORMAL 383.148121 383.148121 0 H(21)C(20)N(3)O(5)'
mod_dict['MG-H1[R]'] = 'R NORMAL 54.010565 54.010565 0 H(2)C(3)O(1)'
mod_dict['MM-diphenylpentanone[C]'] = 'C NORMAL 265.146664 265.146664 0 H(19)C(18)N(1)O(1)'
mod_dict['MTSL[C]'] = 'C NORMAL 184.079610 184.079610 0 H(14)C(9)N(1)O(1)S(1)'
mod_dict['Maleimide-PEO2-Biotin[C]'] = 'C NORMAL 525.225719 525.225719 0 H(35)C(23)N(5)O(7)S(1)'
mod_dict['Malonyl[C]'] = 'C NORMAL 86.000394 86.000394 0 H(2)C(3)O(3)'
mod_dict['Malonyl[S]'] = 'S NORMAL 86.000394 86.000394 0 H(2)C(3)O(3)'
mod_dict['Menadione-HQ[C]'] = 'C NORMAL 172.052430 172.052430 0 H(8)C(11)O(2)'
mod_dict['Menadione-HQ[K]'] = 'K NORMAL 172.052430 172.052430 0 H(8)C(11)O(2)'
mod_dict['Menadione[C]'] = 'C NORMAL 170.036779 170.036779 0 H(6)C(11)O(2)'
mod_dict['Menadione[K]'] = 'K NORMAL 170.036779 170.036779 0 H(6)C(11)O(2)'
mod_dict['MercaptoEthanol[S]'] = 'S NORMAL 60.003371 60.003371 0 H(4)C(2)S(1)'
mod_dict['MercaptoEthanol[T]'] = 'T NORMAL 60.003371 60.003371 0 H(4)C(2)S(1)'
mod_dict['Met->Aha[M]'] = 'M NORMAL -4.986324 -4.986324 0 H(-3)C(-1)N(3)S(-1)'
mod_dict['Met->Ala[M]'] = 'M NORMAL -60.003371 -60.003371 0 H(-4)C(-2)S(-1)'
mod_dict['Met->Arg[M]'] = 'M NORMAL 25.060626 25.060626 0 H(3)C(1)N(3)S(-1)'
mod_dict['Met->Asn[M]'] = 'M NORMAL -16.997557 -16.997557 0 H(-3)C(-1)N(1)O(1)S(-1)'
mod_dict['Met->Asp[M]'] = 'M NORMAL -16.013542 -16.013542 0 H(-4)C(-1)O(2)S(-1)'
mod_dict['Met->Cys[M]'] = 'M NORMAL -28.031300 -28.031300 0 H(-4)C(-2)'
mod_dict['Met->Gln[M]'] = 'M NORMAL -2.981907 -2.981907 0 H(-1)N(1)O(1)S(-1)'
mod_dict['Met->Glu[M]'] = 'M NORMAL -1.997892 -1.997892 0 H(-2)O(2)S(-1)'
mod_dict['Met->Gly[M]'] = 'M NORMAL -74.019021 -74.019021 0 H(-6)C(-3)S(-1)'
mod_dict['Met->His[M]'] = 'M NORMAL 6.018427 6.018427 0 H(-2)C(1)N(2)S(-1)'
mod_dict['Met->Hpg[M]'] = 'M NORMAL -21.987721 -21.987721 0 H(-2)C(1)S(-1)'
mod_dict['Met->Hse[AnyC-termM]'] = 'M PEP_C -29.992806 -29.992806 0 H(-2)C(-1)O(1)S(-1)'
mod_dict['Met->Hsl[AnyC-termM]'] = 'M PEP_C -48.003371 -48.003371 0 H(-4)C(-1)S(-1)'
mod_dict['Met->Lys[M]'] = 'M NORMAL -2.945522 -2.945522 0 H(3)C(1)N(1)S(-1)'
mod_dict['Met->Phe[M]'] = 'M NORMAL 16.027929 16.027929 0 C(4)S(-1)'
mod_dict['Met->Pro[M]'] = 'M NORMAL -33.987721 -33.987721 0 H(-2)S(-1)'
mod_dict['Met->Ser[M]'] = 'M NORMAL -44.008456 -44.008456 0 H(-4)C(-2)O(1)S(-1)'
mod_dict['Met->Thr[M]'] = 'M NORMAL -29.992806 -29.992806 0 H(-2)C(-1)O(1)S(-1)'
mod_dict['Met->Trp[M]'] = 'M NORMAL 55.038828 55.038828 0 H(1)C(6)N(1)S(-1)'
mod_dict['Met->Tyr[M]'] = 'M NORMAL 32.022844 32.022844 0 C(4)O(1)S(-1)'
mod_dict['Met->Val[M]'] = 'M NORMAL -31.972071 -31.972071 0 S(-1)'
mod_dict['Met->Xle[M]'] = 'M NORMAL -17.956421 -17.956421 0 H(2)C(1)S(-1)'
mod_dict['Met-loss+Acetyl[ProteinN-termM]'] = 'M PRO_N -89.029920 -89.029920 0 H(-7)C(-3)N(-1)S(-1)'
mod_dict['Met-loss[ProteinN-termM]'] = 'M PRO_N -131.040485 -131.040485 0 H(-9)C(-5)N(-1)O(-1)S(-1)'
mod_dict['Methyl+Acetyl_2H(3)[K]'] = 'K NORMAL 59.045045 59.045045 0 H(1)2H(3)C(3)O(1)'
mod_dict['Methyl+Deamidated[N]'] = 'N NORMAL 14.999666 14.999666 0 H(1)C(1)N(-1)O(1)'
mod_dict['Methyl+Deamidated[Q]'] = 'Q NORMAL 14.999666 14.999666 0 H(1)C(1)N(-1)O(1)'
mod_dict['Methyl-PEO12-Maleimide[C]'] = 'C NORMAL 710.383719 710.383719 0 H(58)C(32)N(2)O(15)'
mod_dict['Methyl[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[C]'] = 'C NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[D]'] = 'D NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[E]'] = 'E NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[H]'] = 'H NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[I]'] = 'I NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[K]'] = 'K NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[L]'] = 'L NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[N]'] = 'N NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[Q]'] = 'Q NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[R]'] = 'R NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[S]'] = 'S NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[T]'] = 'T NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Methyl_2H(2)[K]'] = 'K NORMAL 16.028204 16.028204 0 2H(2)C(1)'
mod_dict['Methyl_2H(3)+Acetyl_2H(3)[K]'] = 'K NORMAL 62.063875 62.063875 0 H(-2)2H(6)C(3)O(1)'
mod_dict['Methyl_2H(3)[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 17.034480 17.034480 0 H(-1)2H(3)C(1)'
mod_dict['Methyl_2H(3)[D]'] = 'D NORMAL 17.034480 17.034480 0 H(-1)2H(3)C(1)'
mod_dict['Methyl_2H(3)[E]'] = 'E NORMAL 17.034480 17.034480 0 H(-1)2H(3)C(1)'
mod_dict['Methyl_2H(3)[K]'] = 'K NORMAL 17.034480 17.034480 0 H(-1)2H(3)C(1)'
mod_dict['Methyl_2H(3)[R]'] = 'R NORMAL 17.034480 17.034480 0 H(-1)2H(3)C(1)'
mod_dict['Methyl_2H(3)13C(1)[R]'] = 'R NORMAL 18.037835 18.037835 0 H(-1)2H(3)13C(1)'
mod_dict['Methylamine[S]'] = 'S NORMAL 13.031634 13.031634 0 H(3)C(1)N(1)O(-1)'
mod_dict['Methylamine[T]'] = 'T NORMAL 13.031634 13.031634 0 H(3)C(1)N(1)O(-1)'
mod_dict['Methylmalonylation[S]'] = 'S NORMAL 100.016044 100.016044 0 H(4)C(4)O(3)'
mod_dict['Methylphosphonate[S]'] = 'S NORMAL 77.987066 77.987066 0 H(3)C(1)O(2)P(1)'
mod_dict['Methylphosphonate[T]'] = 'T NORMAL 77.987066 77.987066 0 H(3)C(1)O(2)P(1)'
mod_dict['Methylphosphonate[Y]'] = 'Y NORMAL 77.987066 77.987066 0 H(3)C(1)O(2)P(1)'
mod_dict['Methylpyrroline[K]'] = 'K NORMAL 109.052764 109.052764 0 H(7)C(6)N(1)O(1)'
mod_dict['Methylthio[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 45.987721 45.987721 0 H(2)C(1)S(1)'
mod_dict['Methylthio[C]'] = 'C NORMAL 45.987721 45.987721 0 H(2)C(1)S(1)'
mod_dict['Methylthio[D]'] = 'D NORMAL 45.987721 45.987721 0 H(2)C(1)S(1)'
mod_dict['Methylthio[K]'] = 'K NORMAL 45.987721 45.987721 0 H(2)C(1)S(1)'
mod_dict['Methylthio[N]'] = 'N NORMAL 45.987721 45.987721 0 H(2)C(1)S(1)'
mod_dict['Microcin[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C 831.197041 831.197041 0 H(37)C(36)N(3)O(20)'
mod_dict['MicrocinC7[ProteinC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_C 386.110369 386.110369 0 H(19)C(13)N(6)O(6)P(1)'
mod_dict['Molybdopterin[C]'] = 'C NORMAL 521.884073 521.884073 0 H(11)C(10)N(5)O(8)P(1)S(2)Mo(1)'
mod_dict['MolybdopterinGD+Delta_S(-1)Se(1)[C]'] = 'C NORMAL 1620.930224 1620.930224 0 H(47)C(40)N(20)O(26)P(4)S(3)Se(1)Mo(1)'
mod_dict['MolybdopterinGD[C]'] = 'C NORMAL 1572.985775 1572.985775 0 H(47)C(40)N(20)O(26)P(4)S(4)Mo(1)'
mod_dict['MolybdopterinGD[D]'] = 'D NORMAL 1572.985775 1572.985775 0 H(47)C(40)N(20)O(26)P(4)S(4)Mo(1)'
mod_dict['MurNAc[A]'] = 'A NORMAL 275.100502 275.100502 0 H(17)C(11)N(1)O(7)'
mod_dict['Myristoleyl[ProteinN-termG]'] = 'G PRO_N 208.182715 208.182715 0 H(24)C(14)O(1)'
mod_dict['Myristoyl+Delta_H(-4)[ProteinN-termG]'] = 'G PRO_N 206.167065 206.167065 0 H(22)C(14)O(1)'
mod_dict['Myristoyl[AnyN-termG]'] = 'G PEP_N 210.198366 210.198366 0 H(26)C(14)O(1)'
mod_dict['Myristoyl[C]'] = 'C NORMAL 210.198366 210.198366 0 H(26)C(14)O(1)'
mod_dict['Myristoyl[K]'] = 'K NORMAL 210.198366 210.198366 0 H(26)C(14)O(1)'
mod_dict['N-dimethylphosphate[S]'] = 'S NORMAL 107.013615 107.013615 0 H(6)C(2)N(1)O(2)P(1)'
mod_dict['NA-LNO2[C]'] = 'C NORMAL 325.225309 325.225309 0 H(31)C(18)N(1)O(4)'
mod_dict['NA-LNO2[H]'] = 'H NORMAL 325.225309 325.225309 0 H(31)C(18)N(1)O(4)'
mod_dict['NA-OA-NO2[C]'] = 'C NORMAL 327.240959 327.240959 0 H(33)C(18)N(1)O(4)'
mod_dict['NA-OA-NO2[H]'] = 'H NORMAL 327.240959 327.240959 0 H(33)C(18)N(1)O(4)'
mod_dict['NBS[W]'] = 'W NORMAL 152.988449 152.988449 0 H(3)C(6)N(1)O(2)S(1)'
mod_dict['NBS_13C(6)[W]'] = 'W NORMAL 159.008578 159.008578 0 H(3)13C(6)N(1)O(2)S(1)'
mod_dict['NDA[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 175.042199 175.042199 0 H(5)C(13)N(1)'
mod_dict['NDA[K]'] = 'K NORMAL 175.042199 175.042199 0 H(5)C(13)N(1)'
mod_dict['NEIAA[C]'] = 'C NORMAL 85.052764 85.052764 0 H(7)C(4)N(1)O(1)'
mod_dict['NEIAA[Y]'] = 'Y NORMAL 85.052764 85.052764 0 H(7)C(4)N(1)O(1)'
mod_dict['NEIAA_2H(5)[C]'] = 'C NORMAL 90.084148 90.084148 0 H(2)2H(5)C(4)N(1)O(1)'
mod_dict['NEIAA_2H(5)[Y]'] = 'Y NORMAL 90.084148 90.084148 0 H(2)2H(5)C(4)N(1)O(1)'
mod_dict['NEM_2H(5)+H2O[C]'] = 'C NORMAL 148.089627 148.089627 0 H(4)2H(5)C(6)N(1)O(3)'
mod_dict['NEM_2H(5)[C]'] = 'C NORMAL 130.079062 130.079062 0 H(2)2H(5)C(6)N(1)O(2)'
mod_dict['NEMsulfur[C]'] = 'C NORMAL 157.019749 157.019749 0 H(7)C(6)N(1)O(2)S(1)'
mod_dict['NEMsulfurWater[C]'] = 'C NORMAL 175.030314 175.030314 0 H(9)C(6)N(1)O(3)S(1)'
mod_dict['NHS-LC-Biotin[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 339.161662 339.161662 0 H(25)C(16)N(3)O(3)S(1)'
mod_dict['NHS-LC-Biotin[K]'] = 'K NORMAL 339.161662 339.161662 0 H(25)C(16)N(3)O(3)S(1)'
mod_dict['NHS-fluorescein[K]'] = 'K NORMAL 471.131802 471.131802 0 H(21)C(27)N(1)O(7)'
mod_dict['NIC[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 105.021464 105.021464 0 H(3)C(6)N(1)O(1)'
mod_dict['NIPCAM[C]'] = 'C NORMAL 99.068414 99.068414 0 H(9)C(5)N(1)O(1)'
mod_dict['NO_SMX_SEMD[C]'] = 'C NORMAL 252.044287 252.044287 0 H(10)C(10)N(3)O(3)S(1)'
mod_dict['NO_SMX_SIMD[C]'] = 'C NORMAL 267.031377 267.031377 0 H(9)C(10)N(3)O(4)S(1)'
mod_dict['NO_SMX_SMCT[C]'] = 'C NORMAL 268.039202 268.039202 0 H(10)C(10)N(3)O(4)S(1)'
mod_dict['Nethylmaleimide+water[C]'] = 'C NORMAL 143.058243 143.058243 0 H(9)C(6)N(1)O(3)'
mod_dict['Nethylmaleimide+water[K]'] = 'K NORMAL 143.058243 143.058243 0 H(9)C(6)N(1)O(3)'
mod_dict['Nethylmaleimide[C]'] = 'C NORMAL 125.047679 125.047679 0 H(7)C(6)N(1)O(2)'
mod_dict['NeuAc[N]'] = 'N NORMAL 291.095417 291.095417 0 NeuAc(1)'
mod_dict['NeuAc[S]'] = 'S NORMAL 291.095417 291.095417 0 NeuAc(1)'
mod_dict['NeuAc[T]'] = 'T NORMAL 291.095417 291.095417 0 NeuAc(1)'
mod_dict['NeuGc[N]'] = 'N NORMAL 307.090331 307.090331 0 NeuGc(1)'
mod_dict['NeuGc[S]'] = 'S NORMAL 307.090331 307.090331 0 NeuGc(1)'
mod_dict['NeuGc[T]'] = 'T NORMAL 307.090331 307.090331 0 NeuGc(1)'
mod_dict['Nitro[W]'] = 'W NORMAL 44.985078 44.985078 0 H(-1)N(1)O(2)'
mod_dict['Nitro[Y]'] = 'Y NORMAL 44.985078 44.985078 0 H(-1)N(1)O(2)'
mod_dict['Nitrosyl[C]'] = 'C NORMAL 28.990164 28.990164 0 H(-1)N(1)O(1)'
mod_dict['Nmethylmaleimide+water[C]'] = 'C NORMAL 129.042593 129.042593 0 H(7)C(5)N(1)O(3)'
mod_dict['Nmethylmaleimide[C]'] = 'C NORMAL 111.032028 111.032028 0 H(5)C(5)N(1)O(2)'
mod_dict['Nmethylmaleimide[K]'] = 'K NORMAL 111.032028 111.032028 0 H(5)C(5)N(1)O(2)'
mod_dict['O-Dimethylphosphate[S]'] = 'S NORMAL 107.997631 107.997631 0 H(5)C(2)O(3)P(1)'
mod_dict['O-Dimethylphosphate[T]'] = 'T NORMAL 107.997631 107.997631 0 H(5)C(2)O(3)P(1)'
mod_dict['O-Dimethylphosphate[Y]'] = 'Y NORMAL 107.997631 107.997631 0 H(5)C(2)O(3)P(1)'
mod_dict['O-Et-N-diMePhospho[S]'] = 'S NORMAL 135.044916 135.044916 0 H(10)C(4)N(1)O(2)P(1)'
mod_dict['O-Isopropylmethylphosphonate[S]'] = 'S NORMAL 120.034017 120.034017 0 H(9)C(4)O(2)P(1)'
mod_dict['O-Isopropylmethylphosphonate[T]'] = 'T NORMAL 120.034017 120.034017 0 H(9)C(4)O(2)P(1)'
mod_dict['O-Isopropylmethylphosphonate[Y]'] = 'Y NORMAL 120.034017 120.034017 0 H(9)C(4)O(2)P(1)'
mod_dict['O-Methylphosphate[S]'] = 'S NORMAL 93.981981 93.981981 0 H(3)C(1)O(3)P(1)'
mod_dict['O-Methylphosphate[T]'] = 'T NORMAL 93.981981 93.981981 0 H(3)C(1)O(3)P(1)'
mod_dict['O-Methylphosphate[Y]'] = 'Y NORMAL 93.981981 93.981981 0 H(3)C(1)O(3)P(1)'
mod_dict['O-pinacolylmethylphosphonate[H]'] = 'H NORMAL 162.080967 162.080967 0 H(15)C(7)O(2)P(1)'
mod_dict['O-pinacolylmethylphosphonate[K]'] = 'K NORMAL 162.080967 162.080967 0 H(15)C(7)O(2)P(1)'
mod_dict['O-pinacolylmethylphosphonate[S]'] = 'S NORMAL 162.080967 162.080967 0 H(15)C(7)O(2)P(1)'
mod_dict['O-pinacolylmethylphosphonate[T]'] = 'T NORMAL 162.080967 162.080967 0 H(15)C(7)O(2)P(1)'
mod_dict['O-pinacolylmethylphosphonate[Y]'] = 'Y NORMAL 162.080967 162.080967 0 H(15)C(7)O(2)P(1)'
mod_dict['Octanoyl[C]'] = 'C NORMAL 126.104465 126.104465 0 H(14)C(8)O(1)'
mod_dict['Octanoyl[S]'] = 'S NORMAL 126.104465 126.104465 0 H(14)C(8)O(1)'
mod_dict['Octanoyl[T]'] = 'T NORMAL 126.104465 126.104465 0 H(14)C(8)O(1)'
mod_dict['OxArgBiotin[R]'] = 'R NORMAL 310.135113 310.135113 0 H(22)C(15)N(2)O(3)S(1)'
mod_dict['OxArgBiotinRed[R]'] = 'R NORMAL 312.150763 312.150763 0 H(24)C(15)N(2)O(3)S(1)'
mod_dict['OxLysBiotin[K]'] = 'K NORMAL 352.156911 352.156911 0 H(24)C(16)N(4)O(3)S(1)'
mod_dict['OxLysBiotinRed[K]'] = 'K NORMAL 354.172562 354.172562 0 H(26)C(16)N(4)O(3)S(1)'
mod_dict['OxProBiotin[P]'] = 'P NORMAL 369.183461 369.183461 0 H(27)C(16)N(5)O(3)S(1)'
mod_dict['OxProBiotinRed[P]'] = 'P NORMAL 371.199111 371.199111 0 H(29)C(16)N(5)O(3)S(1)'
mod_dict['Oxidation+NEM[C]'] = 'C NORMAL 141.042593 141.042593 0 H(7)C(6)N(1)O(3)'
mod_dict['Oxidation[AnyC-termG]'] = 'G PEP_C 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[C]'] = 'C NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[D]'] = 'D NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[F]'] = 'F NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[H]'] = 'H NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[K]'] = 'K NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[M]'] = 'M NORMAL 15.994915 15.994915 1 63.998285 63.998285 O(1)'
mod_dict['Oxidation[N]'] = 'N NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[P]'] = 'P NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[R]'] = 'R NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[W]'] = 'W NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['Oxidation[Y]'] = 'Y NORMAL 15.994915 15.994915 0 O(1)'
mod_dict['PEITC[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 163.045570 163.045570 0 H(9)C(9)N(1)S(1)'
mod_dict['PEITC[C]'] = 'C NORMAL 163.045570 163.045570 0 H(9)C(9)N(1)S(1)'
mod_dict['PEITC[K]'] = 'K NORMAL 163.045570 163.045570 0 H(9)C(9)N(1)S(1)'
mod_dict['PEO-Iodoacetyl-LC-Biotin[C]'] = 'C NORMAL 414.193691 414.193691 0 H(30)C(18)N(4)O(5)S(1)'
mod_dict['PET[S]'] = 'S NORMAL 121.035005 121.035005 0 H(7)C(7)N(1)O(-1)S(1)'
mod_dict['PET[T]'] = 'T NORMAL 121.035005 121.035005 0 H(7)C(7)N(1)O(-1)S(1)'
mod_dict['PS_Hapten[C]'] = 'C NORMAL 120.021129 120.021129 0 H(4)C(7)O(2)'
mod_dict['PS_Hapten[H]'] = 'H NORMAL 120.021129 120.021129 0 H(4)C(7)O(2)'
mod_dict['PS_Hapten[K]'] = 'K NORMAL 120.021129 120.021129 0 H(4)C(7)O(2)'
mod_dict['Palmitoleyl[C]'] = 'C NORMAL 236.214016 236.214016 0 H(28)C(16)O(1)'
mod_dict['Palmitoleyl[S]'] = 'S NORMAL 236.214016 236.214016 0 H(28)C(16)O(1)'
mod_dict['Palmitoleyl[T]'] = 'T NORMAL 236.214016 236.214016 0 H(28)C(16)O(1)'
mod_dict['Palmitoyl[C]'] = 'C NORMAL 238.229666 238.229666 0 H(30)C(16)O(1)'
mod_dict['Palmitoyl[K]'] = 'K NORMAL 238.229666 238.229666 0 H(30)C(16)O(1)'
mod_dict['Palmitoyl[S]'] = 'S NORMAL 238.229666 238.229666 0 H(30)C(16)O(1)'
mod_dict['Palmitoyl[T]'] = 'T NORMAL 238.229666 238.229666 0 H(30)C(16)O(1)'
mod_dict['Palmitoyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 238.229666 238.229666 0 H(30)C(16)O(1)'
mod_dict['Pentylamine[Q]'] = 'Q NORMAL 85.089149 85.089149 0 H(11)C(5)N(1)'
mod_dict['Phe->Ala[F]'] = 'F NORMAL -76.031300 -76.031300 0 H(-4)C(-6)'
mod_dict['Phe->Arg[F]'] = 'F NORMAL 9.032697 9.032697 0 H(3)C(-3)N(3)'
mod_dict['Phe->Asn[F]'] = 'F NORMAL -33.025486 -33.025486 0 H(-3)C(-5)N(1)O(1)'
mod_dict['Phe->Asp[F]'] = 'F NORMAL -32.041471 -32.041471 0 H(-4)C(-5)O(2)'
mod_dict['Phe->CamCys[F]'] = 'F NORMAL 12.962234 12.962234 0 H(-1)C(-4)N(1)O(1)S(1)'
mod_dict['Phe->Cys[F]'] = 'F NORMAL -44.059229 -44.059229 0 H(-4)C(-6)S(1)'
mod_dict['Phe->Gln[F]'] = 'F NORMAL -19.009836 -19.009836 0 H(-1)C(-4)N(1)O(1)'
mod_dict['Phe->Glu[F]'] = 'F NORMAL -18.025821 -18.025821 0 H(-2)C(-4)O(2)'
mod_dict['Phe->Gly[F]'] = 'F NORMAL -90.046950 -90.046950 0 H(-6)C(-7)'
mod_dict['Phe->His[F]'] = 'F NORMAL -10.009502 -10.009502 0 H(-2)C(-3)N(2)'
mod_dict['Phe->Lys[F]'] = 'F NORMAL -18.973451 -18.973451 0 H(3)C(-3)N(1)'
mod_dict['Phe->Met[F]'] = 'F NORMAL -16.027929 -16.027929 0 C(-4)S(1)'
mod_dict['Phe->Pro[F]'] = 'F NORMAL -50.015650 -50.015650 0 H(-2)C(-4)'
mod_dict['Phe->Ser[F]'] = 'F NORMAL -60.036386 -60.036386 0 H(-4)C(-6)O(1)'
mod_dict['Phe->Thr[F]'] = 'F NORMAL -46.020735 -46.020735 0 H(-2)C(-5)O(1)'
mod_dict['Phe->Trp[F]'] = 'F NORMAL 39.010899 39.010899 0 H(1)C(2)N(1)'
mod_dict['Phe->Val[F]'] = 'F NORMAL -48.000000 -48.000000 0 C(-4)'
mod_dict['Phe->Xle[F]'] = 'F NORMAL -33.984350 -33.984350 0 H(2)C(-3)'
mod_dict['Phenylisocyanate_2H(5)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 124.068498 124.068498 0 2H(5)C(7)N(1)O(1)'
mod_dict['Phospho[C]'] = 'C NORMAL 79.966331 79.966331 0 H(1)O(3)P(1)'
mod_dict['Phospho[D]'] = 'D NORMAL 79.966331 79.966331 0 H(1)O(3)P(1)'
mod_dict['Phospho[H]'] = 'H NORMAL 79.966331 79.966331 0 H(1)O(3)P(1)'
mod_dict['Phospho[K]'] = 'K NORMAL 79.966331 79.966331 0 H(1)O(3)P(1)'
mod_dict['Phospho[R]'] = 'R NORMAL 79.966331 79.966331 0 H(1)O(3)P(1)'
mod_dict['Phospho[S]'] = 'S NORMAL 79.966331 79.966331 1 97.976896 97.976896 H(1)O(3)P(1)'
mod_dict['Phospho[T]'] = 'T NORMAL 79.966331 79.966331 1 97.976896 97.976896 H(1)O(3)P(1)'
mod_dict['Phospho[Y]'] = 'Y NORMAL 79.966331 79.966331 0 H(1)O(3)P(1)'
mod_dict['PhosphoHex[S]'] = 'S NORMAL 242.019154 242.019154 0 H(1)O(3)P(1)Hex(1)'
mod_dict['PhosphoHexNAc[S]'] = 'S NORMAL 283.045704 283.045704 0 H(1)O(3)P(1)HexNAc(1)'
mod_dict['PhosphoHexNAc[T]'] = 'T NORMAL 283.045704 283.045704 0 H(1)O(3)P(1)HexNAc(1)'
mod_dict['PhosphoUridine[H]'] = 'H NORMAL 306.025302 306.025302 0 H(11)C(9)N(2)O(8)P(1)'
mod_dict['PhosphoUridine[Y]'] = 'Y NORMAL 306.025302 306.025302 0 H(11)C(9)N(2)O(8)P(1)'
mod_dict['Phosphoadenosine[H]'] = 'H NORMAL 329.052520 329.052520 0 H(12)C(10)N(5)O(6)P(1)'
mod_dict['Phosphoadenosine[K]'] = 'K NORMAL 329.052520 329.052520 0 H(12)C(10)N(5)O(6)P(1)'
mod_dict['Phosphoadenosine[T]'] = 'T NORMAL 329.052520 329.052520 0 H(12)C(10)N(5)O(6)P(1)'
mod_dict['Phosphoadenosine[Y]'] = 'Y NORMAL 329.052520 329.052520 0 H(12)C(10)N(5)O(6)P(1)'
mod_dict['Phosphogluconoylation[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 258.014069 258.014069 0 H(11)C(6)O(9)P(1)'
mod_dict['Phosphogluconoylation[K]'] = 'K NORMAL 258.014069 258.014069 0 H(11)C(6)O(9)P(1)'
mod_dict['Phosphoguanosine[H]'] = 'H NORMAL 345.047435 345.047435 0 H(12)C(10)N(5)O(7)P(1)'
mod_dict['Phosphoguanosine[K]'] = 'K NORMAL 345.047435 345.047435 0 H(12)C(10)N(5)O(7)P(1)'
mod_dict['Phosphopantetheine[S]'] = 'S NORMAL 340.085794 340.085794 0 H(21)C(11)N(2)O(6)P(1)S(1)'
mod_dict['Phosphopropargyl[S]'] = 'S NORMAL 116.997965 116.997965 0 H(4)C(3)N(1)O(2)P(1)'
mod_dict['Phosphopropargyl[T]'] = 'T NORMAL 116.997965 116.997965 0 H(4)C(3)N(1)O(2)P(1)'
mod_dict['Phosphopropargyl[Y]'] = 'Y NORMAL 116.997965 116.997965 0 H(4)C(3)N(1)O(2)P(1)'
mod_dict['PhosphoribosyldephosphoCoA[S]'] = 'S NORMAL 881.146904 881.146904 0 H(42)C(26)N(7)O(19)P(3)S(1)'
mod_dict['Phycocyanobilin[C]'] = 'C NORMAL 586.279135 586.279135 0 H(38)C(33)N(4)O(6)'
mod_dict['Phycoerythrobilin[C]'] = 'C NORMAL 588.294785 588.294785 0 H(40)C(33)N(4)O(6)'
mod_dict['Phytochromobilin[C]'] = 'C NORMAL 584.263485 584.263485 0 H(36)C(33)N(4)O(6)'
mod_dict['Piperidine[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 68.062600 68.062600 0 H(8)C(5)'
mod_dict['Piperidine[K]'] = 'K NORMAL 68.062600 68.062600 0 H(8)C(5)'
mod_dict['Pro->Ala[P]'] = 'P NORMAL -26.015650 -26.015650 0 H(-2)C(-2)'
mod_dict['Pro->Arg[P]'] = 'P NORMAL 59.048347 59.048347 0 H(5)C(1)N(3)'
mod_dict['Pro->Asn[P]'] = 'P NORMAL 16.990164 16.990164 0 H(-1)C(-1)N(1)O(1)'
mod_dict['Pro->Asp[P]'] = 'P NORMAL 17.974179 17.974179 0 H(-2)C(-1)O(2)'
mod_dict['Pro->Cys[P]'] = 'P NORMAL 5.956421 5.956421 0 H(-2)C(-2)S(1)'
mod_dict['Pro->Gln[P]'] = 'P NORMAL 31.005814 31.005814 0 H(1)N(1)O(1)'
mod_dict['Pro->Gly[P]'] = 'P NORMAL -40.031300 -40.031300 0 H(-4)C(-3)'
mod_dict['Pro->His[P]'] = 'P NORMAL 40.006148 40.006148 0 C(1)N(2)'
mod_dict['Pro->Lys[P]'] = 'P NORMAL 31.042199 31.042199 0 H(5)C(1)N(1)'
mod_dict['Pro->Met[P]'] = 'P NORMAL 33.987721 33.987721 0 H(2)S(1)'
mod_dict['Pro->Phe[P]'] = 'P NORMAL 50.015650 50.015650 0 H(2)C(4)'
mod_dict['Pro->Pyrrolidinone[P]'] = 'P NORMAL -30.010565 -30.010565 0 H(-2)C(-1)O(-1)'
mod_dict['Pro->Pyrrolidone[P]'] = 'P NORMAL -27.994915 -27.994915 0 C(-1)O(-1)'
mod_dict['Pro->Ser[P]'] = 'P NORMAL -10.020735 -10.020735 0 H(-2)C(-2)O(1)'
mod_dict['Pro->Thr[P]'] = 'P NORMAL 3.994915 3.994915 0 C(-1)O(1)'
mod_dict['Pro->Trp[P]'] = 'P NORMAL 89.026549 89.026549 0 H(3)C(6)N(1)'
mod_dict['Pro->Tyr[P]'] = 'P NORMAL 66.010565 66.010565 0 H(2)C(4)O(1)'
mod_dict['Pro->Val[P]'] = 'P NORMAL 2.015650 2.015650 0 H(2)'
mod_dict['Pro->Xle[P]'] = 'P NORMAL 16.031300 16.031300 0 H(4)C(1)'
mod_dict['Pro->pyro-Glu[P]'] = 'P NORMAL 13.979265 13.979265 0 H(-2)O(1)'
mod_dict['Propargylamine[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 37.031634 37.031634 0 H(3)C(3)N(1)O(-1)'
mod_dict['Propargylamine[D]'] = 'D NORMAL 37.031634 37.031634 0 H(3)C(3)N(1)O(-1)'
mod_dict['Propargylamine[E]'] = 'E NORMAL 37.031634 37.031634 0 H(3)C(3)N(1)O(-1)'
mod_dict['Propionamide[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 71.037114 71.037114 0 H(5)C(3)N(1)O(1)'
mod_dict['Propionamide[C]'] = 'C NORMAL 71.037114 71.037114 0 H(5)C(3)N(1)O(1)'
mod_dict['Propionamide[K]'] = 'K NORMAL 71.037114 71.037114 0 H(5)C(3)N(1)O(1)'
mod_dict['Propionamide_2H(3)[C]'] = 'C NORMAL 74.055944 74.055944 0 H(2)2H(3)C(3)N(1)O(1)'
mod_dict['Propionyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 56.026215 56.026215 0 H(4)C(3)O(1)'
mod_dict['Propionyl[K]'] = 'K NORMAL 56.026215 56.026215 0 H(4)C(3)O(1)'
mod_dict['Propionyl[S]'] = 'S NORMAL 56.026215 56.026215 0 H(4)C(3)O(1)'
mod_dict['Propionyl[T]'] = 'T NORMAL 56.026215 56.026215 0 H(4)C(3)O(1)'
mod_dict['Propionyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 56.026215 56.026215 0 H(4)C(3)O(1)'
mod_dict['Propionyl_13C(3)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 59.036279 59.036279 0 H(4)13C(3)O(1)'
mod_dict['Propionyl_13C(3)[K]'] = 'K NORMAL 59.036279 59.036279 0 H(4)13C(3)O(1)'
mod_dict['Propiophenone[C]'] = 'C NORMAL 132.057515 132.057515 0 H(8)C(9)O(1)'
mod_dict['Propiophenone[H]'] = 'H NORMAL 132.057515 132.057515 0 H(8)C(9)O(1)'
mod_dict['Propiophenone[K]'] = 'K NORMAL 132.057515 132.057515 0 H(8)C(9)O(1)'
mod_dict['Propiophenone[R]'] = 'R NORMAL 132.057515 132.057515 0 H(8)C(9)O(1)'
mod_dict['Propiophenone[S]'] = 'S NORMAL 132.057515 132.057515 0 H(8)C(9)O(1)'
mod_dict['Propiophenone[T]'] = 'T NORMAL 132.057515 132.057515 0 H(8)C(9)O(1)'
mod_dict['Propiophenone[W]'] = 'W NORMAL 132.057515 132.057515 0 H(8)C(9)O(1)'
mod_dict['Propyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 42.046950 42.046950 0 H(6)C(3)'
mod_dict['Propyl[K]'] = 'K NORMAL 42.046950 42.046950 0 H(6)C(3)'
mod_dict['PropylNAGthiazoline[C]'] = 'C NORMAL 232.064354 232.064354 0 H(14)C(9)N(1)O(4)S(1)'
mod_dict['Propyl_2H(6)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 48.084611 48.084611 0 2H(6)C(3)'
mod_dict['Propyl_2H(6)[K]'] = 'K NORMAL 48.084611 48.084611 0 2H(6)C(3)'
mod_dict['Puromycin[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 453.212452 453.212452 0 H(27)C(22)N(7)O(4)'
mod_dict['PyMIC[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 134.048013 134.048013 0 H(6)C(7)N(2)O(1)'
mod_dict['PyridoxalPhosphate[K]'] = 'K NORMAL 229.014009 229.014009 0 H(8)C(8)N(1)O(5)P(1)'
mod_dict['PyridoxalPhosphateH2[K]'] = 'K NORMAL 231.029660 231.029660 0 H(10)C(8)N(1)O(5)P(1)'
mod_dict['Pyridylacetyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 119.037114 119.037114 0 H(5)C(7)N(1)O(1)'
mod_dict['Pyridylacetyl[K]'] = 'K NORMAL 119.037114 119.037114 0 H(5)C(7)N(1)O(1)'
mod_dict['Pyridylethyl[C]'] = 'C NORMAL 105.057849 105.057849 0 H(7)C(7)N(1)'
mod_dict['Pyro-carbamidomethyl[AnyN-termC]'] = 'C PEP_N 39.994915 39.994915 0 C(2)O(1)'
mod_dict['PyruvicAcidIminyl[K]'] = 'K NORMAL 70.005479 70.005479 0 H(2)C(3)O(2)'
mod_dict['PyruvicAcidIminyl[ProteinN-termC]'] = 'C PRO_N 70.005479 70.005479 0 H(2)C(3)O(2)'
mod_dict['PyruvicAcidIminyl[ProteinN-termV]'] = 'V PRO_N 70.005479 70.005479 0 H(2)C(3)O(2)'
mod_dict['QAT[C]'] = 'C NORMAL 171.149738 171.149738 0 H(19)C(9)N(2)O(1)'
mod_dict['QAT_2H(3)[C]'] = 'C NORMAL 174.168569 174.168569 0 H(16)2H(3)C(9)N(2)O(1)'
mod_dict['QEQTGG[K]'] = 'K NORMAL 600.250354 600.250354 0 H(36)C(23)N(8)O(11)'
mod_dict['QQQTGG[K]'] = 'K NORMAL 599.266339 599.266339 0 H(37)C(23)N(9)O(10)'
mod_dict['QTGG[K]'] = 'K NORMAL 343.149184 343.149184 0 H(21)C(13)N(5)O(6)'
mod_dict['Quinone[W]'] = 'W NORMAL 29.974179 29.974179 0 H(-2)O(2)'
mod_dict['Quinone[Y]'] = 'Y NORMAL 29.974179 29.974179 0 H(-2)O(2)'
mod_dict['Retinylidene[K]'] = 'K NORMAL 266.203451 266.203451 0 H(26)C(20)'
mod_dict['SMA[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 127.063329 127.063329 0 H(9)C(6)N(1)O(2)'
mod_dict['SMA[K]'] = 'K NORMAL 127.063329 127.063329 0 H(9)C(6)N(1)O(2)'
mod_dict['SMCC-maleimide[C]'] = 'C NORMAL 321.205242 321.205242 0 H(27)C(17)N(3)O(3)'
mod_dict['SPITC[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 214.971084 214.971084 0 H(5)C(7)N(1)O(3)S(2)'
mod_dict['SPITC[K]'] = 'K NORMAL 214.971084 214.971084 0 H(5)C(7)N(1)O(3)S(2)'
mod_dict['SPITC_13C(6)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 220.991213 220.991213 0 H(5)C(1)13C(6)N(1)O(3)S(2)'
mod_dict['SPITC_13C(6)[K]'] = 'K NORMAL 220.991213 220.991213 0 H(5)C(1)13C(6)N(1)O(3)S(2)'
mod_dict['SUMO2135[K]'] = 'K NORMAL 2135.920496 2135.920496 0 H(137)C(90)N(21)O(37)S(1)'
mod_dict['SUMO3549[K]'] = 'K NORMAL 3549.536568 3549.536568 0 H(224)C(150)N(38)O(60)S(1)'
mod_dict['Saligenin[H]'] = 'H NORMAL 106.041865 106.041865 0 H(6)C(7)O(1)'
mod_dict['Saligenin[K]'] = 'K NORMAL 106.041865 106.041865 0 H(6)C(7)O(1)'
mod_dict['SecCarbamidomethyl[C]'] = 'C NORMAL 104.965913 104.965913 0 H(3)C(2)N(1)O(1)S(-1)Se(1)'
mod_dict['SecNEM[C]'] = 'C NORMAL 172.992127 172.992127 0 H(7)C(6)N(1)O(2)S(-1)Se(1)'
mod_dict['SecNEM_2H(5)[C]'] = 'C NORMAL 178.023511 178.023511 0 H(2)2H(5)C(6)N(1)O(2)S(-1)Se(1)'
mod_dict['Ser->Arg[S]'] = 'S NORMAL 69.069083 69.069083 0 H(7)C(3)N(3)O(-1)'
mod_dict['Ser->Asn[S]'] = 'S NORMAL 27.010899 27.010899 0 H(1)C(1)N(1)'
mod_dict['Ser->Cys[S]'] = 'S NORMAL 15.977156 15.977156 0 O(-1)S(1)'
mod_dict['Ser->Gln[S]'] = 'S NORMAL 41.026549 41.026549 0 H(3)C(2)N(1)'
mod_dict['Ser->Gly[S]'] = 'S NORMAL -30.010565 -30.010565 0 H(-2)C(-1)O(-1)'
mod_dict['Ser->His[S]'] = 'S NORMAL 50.026883 50.026883 0 H(2)C(3)N(2)O(-1)'
mod_dict['Ser->LacticAcid[ProteinN-termS]'] = 'S PRO_N -15.010899 -15.010899 0 H(-1)N(-1)'
mod_dict['Ser->Lys[S]'] = 'S NORMAL 41.062935 41.062935 0 H(7)C(3)N(1)O(-1)'
mod_dict['Ser->Phe[S]'] = 'S NORMAL 60.036386 60.036386 0 H(4)C(6)O(-1)'
mod_dict['Ser->Pro[S]'] = 'S NORMAL 10.020735 10.020735 0 H(2)C(2)O(-1)'
mod_dict['Ser->Trp[S]'] = 'S NORMAL 99.047285 99.047285 0 H(5)C(8)N(1)O(-1)'
mod_dict['Ser->Tyr[S]'] = 'S NORMAL 76.031300 76.031300 0 H(4)C(6)'
mod_dict['Ser->Val[S]'] = 'S NORMAL 12.036386 12.036386 0 H(4)C(2)O(-1)'
mod_dict['Ser->Xle[S]'] = 'S NORMAL 26.052036 26.052036 0 H(6)C(3)O(-1)'
mod_dict['Succinyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 100.016044 100.016044 0 H(4)C(4)O(3)'
mod_dict['Succinyl[K]'] = 'K NORMAL 100.016044 100.016044 0 H(4)C(4)O(3)'
mod_dict['Succinyl[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 100.016044 100.016044 0 H(4)C(4)O(3)'
mod_dict['Succinyl_13C(4)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 104.029463 104.029463 0 H(4)13C(4)O(3)'
mod_dict['Succinyl_13C(4)[K]'] = 'K NORMAL 104.029463 104.029463 0 H(4)13C(4)O(3)'
mod_dict['Succinyl_2H(4)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 104.041151 104.041151 0 2H(4)C(4)O(3)'
mod_dict['Succinyl_2H(4)[K]'] = 'K NORMAL 104.041151 104.041151 0 2H(4)C(4)O(3)'
mod_dict['SulfanilicAcid[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 155.004099 155.004099 0 H(5)C(6)N(1)O(2)S(1)'
mod_dict['SulfanilicAcid[D]'] = 'D NORMAL 155.004099 155.004099 0 H(5)C(6)N(1)O(2)S(1)'
mod_dict['SulfanilicAcid[E]'] = 'E NORMAL 155.004099 155.004099 0 H(5)C(6)N(1)O(2)S(1)'
mod_dict['SulfanilicAcid_13C(6)[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C 161.024228 161.024228 0 H(5)13C(6)N(1)O(2)S(1)'
mod_dict['SulfanilicAcid_13C(6)[D]'] = 'D NORMAL 161.024228 161.024228 0 H(5)13C(6)N(1)O(2)S(1)'
mod_dict['SulfanilicAcid_13C(6)[E]'] = 'E NORMAL 161.024228 161.024228 0 H(5)13C(6)N(1)O(2)S(1)'
mod_dict['Sulfide[C]'] = 'C NORMAL 31.972071 31.972071 0 S(1)'
mod_dict['Sulfide[D]'] = 'D NORMAL 31.972071 31.972071 0 S(1)'
mod_dict['Sulfide[W]'] = 'W NORMAL 31.972071 31.972071 0 S(1)'
mod_dict['Sulfo-NHS-LC-LC-Biotin[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 452.245726 452.245726 0 H(36)C(22)N(4)O(4)S(1)'
mod_dict['Sulfo-NHS-LC-LC-Biotin[K]'] = 'K NORMAL 452.245726 452.245726 0 H(36)C(22)N(4)O(4)S(1)'
mod_dict['Sulfo[C]'] = 'C NORMAL 79.956815 79.956815 0 O(3)S(1)'
mod_dict['Sulfo[S]'] = 'S NORMAL 79.956815 79.956815 1 79.956815 79.956815 O(3)S(1)'
mod_dict['Sulfo[T]'] = 'T NORMAL 79.956815 79.956815 1 79.956815 79.956815 O(3)S(1)'
mod_dict['Sulfo[Y]'] = 'Y NORMAL 79.956815 79.956815 1 79.956815 79.956815 O(3)S(1)'
mod_dict['SulfoGMBS[C]'] = 'C NORMAL 458.162391 458.162391 0 H(26)C(22)N(4)O(5)S(1)'
mod_dict['SulfurDioxide[C]'] = 'C NORMAL 63.961900 63.961900 0 O(2)S(1)'
mod_dict['TAMRA-FP[S]'] = 'S NORMAL 659.312423 659.312423 0 H(46)C(37)N(3)O(6)P(1)'
mod_dict['TAMRA-FP[Y]'] = 'Y NORMAL 659.312423 659.312423 0 H(46)C(37)N(3)O(6)P(1)'
mod_dict['TMAB[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 128.107539 128.107539 1 59.073499 59.073499 H(14)C(7)N(1)O(1)'
mod_dict['TMAB[K]'] = 'K NORMAL 128.107539 128.107539 1 59.073499 59.073499 H(14)C(7)N(1)O(1)'
mod_dict['TMAB_2H(9)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 137.164030 137.164030 1 68.129990 68.129990 H(5)2H(9)C(7)N(1)O(1)'
mod_dict['TMAB_2H(9)[K]'] = 'K NORMAL 137.164030 137.164030 1 68.129990 68.129990 H(5)2H(9)C(7)N(1)O(1)'
mod_dict['TMPP-Ac[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 572.181134 572.181134 0 H(33)C(29)O(10)P(1)'
mod_dict['TMT[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 224.152478 224.152478 0 H(20)C(12)N(2)O(2)'
mod_dict['TMT[H]'] = 'H NORMAL 224.152478 224.152478 0 H(20)C(12)N(2)O(2)'
mod_dict['TMT[K]'] = 'K NORMAL 224.152478 224.152478 0 H(20)C(12)N(2)O(2)'
mod_dict['TMT[S]'] = 'S NORMAL 224.152478 224.152478 0 H(20)C(12)N(2)O(2)'
mod_dict['TMT[T]'] = 'T NORMAL 224.152478 224.152478 0 H(20)C(12)N(2)O(2)'
mod_dict['TMT[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 224.152478 224.152478 0 H(20)C(12)N(2)O(2)'
mod_dict['TMT2plex[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 225.155833 225.155833 0 H(20)C(11)13C(1)N(2)O(2)'
mod_dict['TMT2plex[H]'] = 'H NORMAL 225.155833 225.155833 0 H(20)C(11)13C(1)N(2)O(2)'
mod_dict['TMT2plex[K]'] = 'K NORMAL 225.155833 225.155833 0 H(20)C(11)13C(1)N(2)O(2)'
mod_dict['TMT2plex[S]'] = 'S NORMAL 225.155833 225.155833 0 H(20)C(11)13C(1)N(2)O(2)'
mod_dict['TMT2plex[T]'] = 'T NORMAL 225.155833 225.155833 0 H(20)C(11)13C(1)N(2)O(2)'
mod_dict['TMT2plex[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 225.155833 225.155833 0 H(20)C(11)13C(1)N(2)O(2)'
mod_dict['TMT6plex[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 229.162932 229.162932 0 H(20)C(8)13C(4)N(1)15N(1)O(2)'
mod_dict['TMT6plex[H]'] = 'H NORMAL 229.162932 229.162932 0 H(20)C(8)13C(4)N(1)15N(1)O(2)'
mod_dict['TMT6plex[K]'] = 'K NORMAL 229.162932 229.162932 0 H(20)C(8)13C(4)N(1)15N(1)O(2)'
mod_dict['TMT6plex[S]'] = 'S NORMAL 229.162932 229.162932 0 H(20)C(8)13C(4)N(1)15N(1)O(2)'
mod_dict['TMT6plex[T]'] = 'T NORMAL 229.162932 229.162932 0 H(20)C(8)13C(4)N(1)15N(1)O(2)'
mod_dict['TMT6plex[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 229.162932 229.162932 0 H(20)C(8)13C(4)N(1)15N(1)O(2)'
mod_dict['TNBS[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 210.986535 210.986535 0 H(1)C(6)N(3)O(6)'
mod_dict['TNBS[K]'] = 'K NORMAL 210.986535 210.986535 0 H(1)C(6)N(3)O(6)'
mod_dict['Thiadiazole[C]'] = 'C NORMAL 174.025169 174.025169 0 H(6)C(9)N(2)S(1)'
mod_dict['Thiazolidine[AnyN-termC]'] = 'C PEP_N 12.000000 12.000000 0 C(1)'
mod_dict['Thioacyl[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 87.998285 87.998285 0 H(4)C(3)O(1)S(1)'
mod_dict['Thioacyl[K]'] = 'K NORMAL 87.998285 87.998285 0 H(4)C(3)O(1)S(1)'
mod_dict['Thiophos-S-S-biotin[S]'] = 'S NORMAL 525.142894 525.142894 1 525.142894 525.142894 H(34)C(19)N(4)O(5)P(1)S(3)'
mod_dict['Thiophos-S-S-biotin[T]'] = 'T NORMAL 525.142894 525.142894 1 525.142894 525.142894 H(34)C(19)N(4)O(5)P(1)S(3)'
mod_dict['Thiophos-S-S-biotin[Y]'] = 'Y NORMAL 525.142894 525.142894 1 525.142894 525.142894 H(34)C(19)N(4)O(5)P(1)S(3)'
mod_dict['Thiophospho[S]'] = 'S NORMAL 95.943487 95.943487 0 H(1)O(2)P(1)S(1)'
mod_dict['Thiophospho[T]'] = 'T NORMAL 95.943487 95.943487 0 H(1)O(2)P(1)S(1)'
mod_dict['Thiophospho[Y]'] = 'Y NORMAL 95.943487 95.943487 0 H(1)O(2)P(1)S(1)'
mod_dict['Thr->Ala[T]'] = 'T NORMAL -30.010565 -30.010565 0 H(-2)C(-1)O(-1)'
mod_dict['Thr->Arg[T]'] = 'T NORMAL 55.053433 55.053433 0 H(5)C(2)N(3)O(-1)'
mod_dict['Thr->Asn[T]'] = 'T NORMAL 12.995249 12.995249 0 H(-1)N(1)'
mod_dict['Thr->Asp[T]'] = 'T NORMAL 13.979265 13.979265 0 H(-2)O(1)'
mod_dict['Thr->Cys[T]'] = 'T NORMAL 1.961506 1.961506 0 H(-2)C(-1)O(-1)S(1)'
mod_dict['Thr->Gln[T]'] = 'T NORMAL 27.010899 27.010899 0 H(1)C(1)N(1)'
mod_dict['Thr->Gly[T]'] = 'T NORMAL -44.026215 -44.026215 0 H(-4)C(-2)O(-1)'
mod_dict['Thr->His[T]'] = 'T NORMAL 36.011233 36.011233 0 C(2)N(2)O(-1)'
mod_dict['Thr->Met[T]'] = 'T NORMAL 29.992806 29.992806 0 H(2)C(1)O(-1)S(1)'
mod_dict['Thr->Phe[T]'] = 'T NORMAL 46.020735 46.020735 0 H(2)C(5)O(-1)'
mod_dict['Thr->Pro[T]'] = 'T NORMAL -3.994915 -3.994915 0 C(1)O(-1)'
mod_dict['Thr->Ser[T]'] = 'T NORMAL -14.015650 -14.015650 0 H(-2)C(-1)'
mod_dict['Thr->Trp[T]'] = 'T NORMAL 85.031634 85.031634 0 H(3)C(7)N(1)O(-1)'
mod_dict['Thr->Tyr[T]'] = 'T NORMAL 62.015650 62.015650 0 H(2)C(5)'
mod_dict['Thr->Val[T]'] = 'T NORMAL -1.979265 -1.979265 0 H(2)C(1)O(-1)'
mod_dict['Thr->Xle[T]'] = 'T NORMAL 12.036386 12.036386 0 H(4)C(2)O(-1)'
mod_dict['Thrbiotinhydrazide[T]'] = 'T NORMAL 240.104482 240.104482 0 H(16)C(10)N(4)O(1)S(1)'
mod_dict['Thyroxine[Y]'] = 'Y NORMAL 595.612807 595.612807 0 C(6)O(1)I(4)'
mod_dict['Triiodo[Y]'] = 'Y NORMAL 377.689944 377.689944 0 H(-3)I(3)'
mod_dict['Triiodothyronine[Y]'] = 'Y NORMAL 469.716159 469.716159 0 H(1)C(6)O(1)I(3)'
mod_dict['Trimethyl[R]'] = 'R NORMAL 42.046950 42.046950 0 H(6)C(3)'
mod_dict['Trimethyl[ProteinN-termA]'] = 'A PRO_N 42.046950 42.046950 0 H(6)C(3)'
mod_dict['Trimethyl_2H(9)[K]'] = 'K NORMAL 51.103441 51.103441 0 H(-3)2H(9)C(3)'
mod_dict['Trimethyl_2H(9)[R]'] = 'R NORMAL 51.103441 51.103441 0 H(-3)2H(9)C(3)'
mod_dict['Trioxidation[C]'] = 'C NORMAL 47.984744 47.984744 0 O(3)'
mod_dict['Trioxidation[W]'] = 'W NORMAL 47.984744 47.984744 0 O(3)'
mod_dict['Trioxidation[Y]'] = 'Y NORMAL 47.984744 47.984744 0 O(3)'
mod_dict['Tripalmitate[ProteinN-termC]'] = 'C PRO_N 788.725777 788.725777 0 H(96)C(51)O(5)'
mod_dict['Trp->Ala[W]'] = 'W NORMAL -115.042199 -115.042199 0 H(-5)C(-8)N(-1)'
mod_dict['Trp->Arg[W]'] = 'W NORMAL -29.978202 -29.978202 0 H(2)C(-5)N(2)'
mod_dict['Trp->Asn[W]'] = 'W NORMAL -72.036386 -72.036386 0 H(-4)C(-7)O(1)'
mod_dict['Trp->Asp[W]'] = 'W NORMAL -71.052370 -71.052370 0 H(-5)C(-7)N(-1)O(2)'
mod_dict['Trp->Cys[W]'] = 'W NORMAL -83.070128 -83.070128 0 H(-5)C(-8)N(-1)S(1)'
mod_dict['Trp->Gln[W]'] = 'W NORMAL -58.020735 -58.020735 0 H(-2)C(-6)O(1)'
mod_dict['Trp->Glu[W]'] = 'W NORMAL -57.036720 -57.036720 0 H(-3)C(-6)N(-1)O(2)'
mod_dict['Trp->Gly[W]'] = 'W NORMAL -129.057849 -129.057849 0 H(-7)C(-9)N(-1)'
mod_dict['Trp->His[W]'] = 'W NORMAL -49.020401 -49.020401 0 H(-3)C(-5)N(1)'
mod_dict['Trp->Hydroxykynurenin[W]'] = 'W NORMAL 19.989829 19.989829 0 C(-1)O(2)'
mod_dict['Trp->Kynurenin[W]'] = 'W NORMAL 3.994915 3.994915 0 C(-1)O(1)'
mod_dict['Trp->Lys[W]'] = 'W NORMAL -57.984350 -57.984350 0 H(2)C(-5)'
mod_dict['Trp->Met[W]'] = 'W NORMAL -55.038828 -55.038828 0 H(-1)C(-6)N(-1)S(1)'
mod_dict['Trp->Oxolactone[W]'] = 'W NORMAL 13.979265 13.979265 0 H(-2)O(1)'
mod_dict['Trp->Phe[W]'] = 'W NORMAL -39.010899 -39.010899 0 H(-1)C(-2)N(-1)'
mod_dict['Trp->Pro[W]'] = 'W NORMAL -89.026549 -89.026549 0 H(-3)C(-6)N(-1)'
mod_dict['Trp->Ser[W]'] = 'W NORMAL -99.047285 -99.047285 0 H(-5)C(-8)N(-1)O(1)'
mod_dict['Trp->Thr[W]'] = 'W NORMAL -85.031634 -85.031634 0 H(-3)C(-7)N(-1)O(1)'
mod_dict['Trp->Tyr[W]'] = 'W NORMAL -23.015984 -23.015984 0 H(-1)C(-2)N(-1)O(1)'
mod_dict['Trp->Val[W]'] = 'W NORMAL -87.010899 -87.010899 0 H(-1)C(-6)N(-1)'
mod_dict['Trp->Xle[W]'] = 'W NORMAL -72.995249 -72.995249 0 H(1)C(-5)N(-1)'
mod_dict['Tyr->Ala[Y]'] = 'Y NORMAL -92.026215 -92.026215 0 H(-4)C(-6)O(-1)'
mod_dict['Tyr->Arg[Y]'] = 'Y NORMAL -6.962218 -6.962218 0 H(3)C(-3)N(3)O(-1)'
mod_dict['Tyr->Asn[Y]'] = 'Y NORMAL -49.020401 -49.020401 0 H(-3)C(-5)N(1)'
mod_dict['Tyr->Asp[Y]'] = 'Y NORMAL -48.036386 -48.036386 0 H(-4)C(-5)O(1)'
mod_dict['Tyr->Cys[Y]'] = 'Y NORMAL -60.054144 -60.054144 0 H(-4)C(-6)O(-1)S(1)'
mod_dict['Tyr->Dha[Y]'] = 'Y NORMAL -94.041865 -94.041865 0 H(-6)C(-6)O(-1)'
mod_dict['Tyr->Gln[Y]'] = 'Y NORMAL -35.004751 -35.004751 0 H(-1)C(-4)N(1)'
mod_dict['Tyr->Glu[Y]'] = 'Y NORMAL -34.020735 -34.020735 0 H(-2)C(-4)O(1)'
mod_dict['Tyr->Gly[Y]'] = 'Y NORMAL -106.041865 -106.041865 0 H(-6)C(-7)O(-1)'
mod_dict['Tyr->His[Y]'] = 'Y NORMAL -26.004417 -26.004417 0 H(-2)C(-3)N(2)O(-1)'
mod_dict['Tyr->Lys[Y]'] = 'Y NORMAL -34.968366 -34.968366 0 H(3)C(-3)N(1)O(-1)'
mod_dict['Tyr->Met[Y]'] = 'Y NORMAL -32.022844 -32.022844 0 C(-4)O(-1)S(1)'
mod_dict['Tyr->Phe[Y]'] = 'Y NORMAL -15.994915 -15.994915 0 O(-1)'
mod_dict['Tyr->Pro[Y]'] = 'Y NORMAL -66.010565 -66.010565 0 H(-2)C(-4)O(-1)'
mod_dict['Tyr->Ser[Y]'] = 'Y NORMAL -76.031300 -76.031300 0 H(-4)C(-6)'
mod_dict['Tyr->Thr[Y]'] = 'Y NORMAL -62.015650 -62.015650 0 H(-2)C(-5)'
mod_dict['Tyr->Trp[Y]'] = 'Y NORMAL 23.015984 23.015984 0 H(1)C(2)N(1)O(-1)'
mod_dict['Tyr->Val[Y]'] = 'Y NORMAL -63.994915 -63.994915 0 C(-4)O(-1)'
mod_dict['Tyr->Xle[Y]'] = 'Y NORMAL -49.979265 -49.979265 0 H(2)C(-3)O(-1)'
mod_dict['Ub-Br2[C]'] = 'C NORMAL 100.063663 100.063663 0 H(8)C(4)N(2)O(1)'
mod_dict['Ub-VME[C]'] = 'C NORMAL 173.092617 173.092617 0 H(13)C(7)N(2)O(3)'
mod_dict['Ub-amide[C]'] = 'C NORMAL 196.108602 196.108602 0 H(14)C(9)N(3)O(2)'
mod_dict['Ub-fluorescein[C]'] = 'C NORMAL 597.209772 597.209772 0 H(29)C(31)N(6)O(7)'
mod_dict['UgiJoullie[D]'] = 'D NORMAL 1106.489350 1106.489350 0 H(60)C(47)N(23)O(10)'
mod_dict['UgiJoullie[E]'] = 'E NORMAL 1106.489350 1106.489350 0 H(60)C(47)N(23)O(10)'
mod_dict['UgiJoullieProGly[D]'] = 'D NORMAL 154.074228 154.074228 0 H(10)C(7)N(2)O(2)'
mod_dict['UgiJoullieProGly[E]'] = 'E NORMAL 154.074228 154.074228 0 H(10)C(7)N(2)O(2)'
mod_dict['UgiJoullieProGlyProGly[D]'] = 'D NORMAL 308.148455 308.148455 0 H(20)C(14)N(4)O(4)'
mod_dict['UgiJoullieProGlyProGly[E]'] = 'E NORMAL 308.148455 308.148455 0 H(20)C(14)N(4)O(4)'
mod_dict['VFQQQTGG[K]'] = 'K NORMAL 845.403166 845.403166 0 H(55)C(37)N(11)O(12)'
mod_dict['VIEVYQEQTGG[K]'] = 'K NORMAL 1203.577168 1203.577168 0 H(81)C(53)N(13)O(19)'
mod_dict['Val->Ala[V]'] = 'V NORMAL -28.031300 -28.031300 0 H(-4)C(-2)'
mod_dict['Val->Arg[V]'] = 'V NORMAL 57.032697 57.032697 0 H(3)C(1)N(3)'
mod_dict['Val->Asn[V]'] = 'V NORMAL 14.974514 14.974514 0 H(-3)C(-1)N(1)O(1)'
mod_dict['Val->Asp[V]'] = 'V NORMAL 15.958529 15.958529 0 H(-4)C(-1)O(2)'
mod_dict['Val->Cys[V]'] = 'V NORMAL 3.940771 3.940771 0 H(-4)C(-2)S(1)'
mod_dict['Val->Gln[V]'] = 'V NORMAL 28.990164 28.990164 0 H(-1)N(1)O(1)'
mod_dict['Val->Glu[V]'] = 'V NORMAL 29.974179 29.974179 0 H(-2)O(2)'
mod_dict['Val->Gly[V]'] = 'V NORMAL -42.046950 -42.046950 0 H(-6)C(-3)'
mod_dict['Val->His[V]'] = 'V NORMAL 37.990498 37.990498 0 H(-2)C(1)N(2)'
mod_dict['Val->Lys[V]'] = 'V NORMAL 29.026549 29.026549 0 H(3)C(1)N(1)'
mod_dict['Val->Met[V]'] = 'V NORMAL 31.972071 31.972071 0 S(1)'
mod_dict['Val->Phe[V]'] = 'V NORMAL 48.000000 48.000000 0 C(4)'
mod_dict['Val->Pro[V]'] = 'V NORMAL -2.015650 -2.015650 0 H(-2)'
mod_dict['Val->Ser[V]'] = 'V NORMAL -12.036386 -12.036386 0 H(-4)C(-2)O(1)'
mod_dict['Val->Thr[V]'] = 'V NORMAL 1.979265 1.979265 0 H(-2)C(-1)O(1)'
mod_dict['Val->Trp[V]'] = 'V NORMAL 87.010899 87.010899 0 H(1)C(6)N(1)'
mod_dict['Val->Tyr[V]'] = 'V NORMAL 63.994915 63.994915 0 C(4)O(1)'
mod_dict['Val->Xle[V]'] = 'V NORMAL 14.015650 14.015650 0 H(2)C(1)'
mod_dict['Withaferin[C]'] = 'C NORMAL 470.266839 470.266839 0 H(38)C(28)O(6)'
mod_dict['Xle->Ala[I]'] = 'I NORMAL -42.046950 -42.046950 0 H(-6)C(-3)'
mod_dict['Xle->Ala[L]'] = 'L NORMAL -42.046950 -42.046950 0 H(-6)C(-3)'
mod_dict['Xle->Arg[I]'] = 'I NORMAL 43.017047 43.017047 0 H(1)N(3)'
mod_dict['Xle->Arg[L]'] = 'L NORMAL 43.017047 43.017047 0 H(1)N(3)'
mod_dict['Xle->Asn[I]'] = 'I NORMAL 0.958863 0.958863 0 H(-5)C(-2)N(1)O(1)'
mod_dict['Xle->Asn[L]'] = 'L NORMAL 0.958863 0.958863 0 H(-5)C(-2)N(1)O(1)'
mod_dict['Xle->Asp[I]'] = 'I NORMAL 1.942879 1.942879 0 H(-6)C(-2)O(2)'
mod_dict['Xle->Asp[L]'] = 'L NORMAL 1.942879 1.942879 0 H(-6)C(-2)O(2)'
mod_dict['Xle->Cys[I]'] = 'I NORMAL -10.074880 -10.074880 0 H(-6)C(-3)S(1)'
mod_dict['Xle->Cys[L]'] = 'L NORMAL -10.074880 -10.074880 0 H(-6)C(-3)S(1)'
mod_dict['Xle->Gln[I]'] = 'I NORMAL 14.974514 14.974514 0 H(-3)C(-1)N(1)O(1)'
mod_dict['Xle->Gln[L]'] = 'L NORMAL 14.974514 14.974514 0 H(-3)C(-1)N(1)O(1)'
mod_dict['Xle->Glu[I]'] = 'I NORMAL 15.958529 15.958529 0 H(-4)C(-1)O(2)'
mod_dict['Xle->Glu[L]'] = 'L NORMAL 15.958529 15.958529 0 H(-4)C(-1)O(2)'
mod_dict['Xle->Gly[I]'] = 'I NORMAL -56.062600 -56.062600 0 H(-8)C(-4)'
mod_dict['Xle->Gly[L]'] = 'L NORMAL -56.062600 -56.062600 0 H(-8)C(-4)'
mod_dict['Xle->His[I]'] = 'I NORMAL 23.974848 23.974848 0 H(-4)N(2)'
mod_dict['Xle->His[L]'] = 'L NORMAL 23.974848 23.974848 0 H(-4)N(2)'
mod_dict['Xle->Lys[I]'] = 'I NORMAL 15.010899 15.010899 0 H(1)N(1)'
mod_dict['Xle->Lys[L]'] = 'L NORMAL 15.010899 15.010899 0 H(1)N(1)'
mod_dict['Xle->Met[I]'] = 'I NORMAL 17.956421 17.956421 0 H(-2)C(-1)S(1)'
mod_dict['Xle->Met[L]'] = 'L NORMAL 17.956421 17.956421 0 H(-2)C(-1)S(1)'
mod_dict['Xle->Phe[I]'] = 'I NORMAL 33.984350 33.984350 0 H(-2)C(3)'
mod_dict['Xle->Phe[L]'] = 'L NORMAL 33.984350 33.984350 0 H(-2)C(3)'
mod_dict['Xle->Pro[I]'] = 'I NORMAL -16.031300 -16.031300 0 H(-4)C(-1)'
mod_dict['Xle->Pro[L]'] = 'L NORMAL -16.031300 -16.031300 0 H(-4)C(-1)'
mod_dict['Xle->Ser[I]'] = 'I NORMAL -26.052036 -26.052036 0 H(-6)C(-3)O(1)'
mod_dict['Xle->Ser[L]'] = 'L NORMAL -26.052036 -26.052036 0 H(-6)C(-3)O(1)'
mod_dict['Xle->Thr[I]'] = 'I NORMAL -12.036386 -12.036386 0 H(-4)C(-2)O(1)'
mod_dict['Xle->Thr[L]'] = 'L NORMAL -12.036386 -12.036386 0 H(-4)C(-2)O(1)'
mod_dict['Xle->Trp[I]'] = 'I NORMAL 72.995249 72.995249 0 H(-1)C(5)N(1)'
mod_dict['Xle->Trp[L]'] = 'L NORMAL 72.995249 72.995249 0 H(-1)C(5)N(1)'
mod_dict['Xle->Tyr[I]'] = 'I NORMAL 49.979265 49.979265 0 H(-2)C(3)O(1)'
mod_dict['Xle->Tyr[L]'] = 'L NORMAL 49.979265 49.979265 0 H(-2)C(3)O(1)'
mod_dict['Xle->Val[I]'] = 'I NORMAL -14.015650 -14.015650 0 H(-2)C(-1)'
mod_dict['Xle->Val[L]'] = 'L NORMAL -14.015650 -14.015650 0 H(-2)C(-1)'
mod_dict['Xlink_B10621[C]'] = 'C NORMAL 713.093079 713.093079 0 H(30)C(31)N(4)O(6)S(1)I(1)'
mod_dict['Xlink_DMP-de[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 140.094963 140.094963 0 H(12)C(7)N(2)O(1)'
mod_dict['Xlink_DMP-s[K]'] = 'K NORMAL 154.110613 154.110613 0 H(14)C(8)N(2)O(1)'
mod_dict['Xlink_DMP-s[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 154.110613 154.110613 0 H(14)C(8)N(2)O(1)'
mod_dict['Xlink_DMP[K]'] = 'K NORMAL 122.084398 122.084398 0 H(10)C(7)N(2)'
mod_dict['Xlink_DMP[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 122.084398 122.084398 0 H(10)C(7)N(2)'
mod_dict['Xlink_DSS[K]'] = 'K NORMAL 156.078644 156.078644 0 H(12)C(8)O(3)'
mod_dict['Xlink_DSS[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 156.078644 156.078644 0 H(12)C(8)O(3)'
mod_dict['Xlink_DST[K]'] = 'K NORMAL 132.005873 132.005873 0 H(4)C(4)O(5)'
mod_dict['Xlink_DST[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 132.005873 132.005873 0 H(4)C(4)O(5)'
mod_dict['Xlink_DTSSP[K]'] = 'K NORMAL 191.991486 191.991486 0 H(8)C(6)O(3)S(2)'
mod_dict['Xlink_DTSSP[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 191.991486 191.991486 0 H(8)C(6)O(3)S(2)'
mod_dict['Xlink_EGS[K]'] = 'K NORMAL 244.058303 244.058303 0 H(12)C(10)O(7)'
mod_dict['Xlink_EGS[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 244.058303 244.058303 0 H(12)C(10)O(7)'
mod_dict['Xlink_EGScleaved[K]'] = 'K NORMAL 99.032028 99.032028 0 H(5)C(4)N(1)O(2)'
mod_dict['Xlink_EGScleaved[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 99.032028 99.032028 0 H(5)C(4)N(1)O(2)'
mod_dict['Xlink_SMCC[C]'] = 'C NORMAL 237.100108 237.100108 0 H(15)C(12)N(1)O(4)'
mod_dict['Xlink_SSD[K]'] = 'K NORMAL 253.095023 253.095023 0 H(15)C(12)N(1)O(5)'
mod_dict['ZGB[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 758.380841 758.380841 0 H(53)B(1)C(37)N(6)O(6)F(2)S(1)'
mod_dict['ZGB[K]'] = 'K NORMAL 758.380841 758.380841 0 H(53)B(1)C(37)N(6)O(6)F(2)S(1)'
mod_dict['a-type-ion[AnyC-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_C -46.005479 -46.005479 0 H(-2)C(-1)O(-2)'
mod_dict['azole[C]'] = 'C NORMAL -20.026215 -20.026215 0 H(-4)O(-1)'
mod_dict['azole[S]'] = 'S NORMAL -20.026215 -20.026215 0 H(-4)O(-1)'
mod_dict['benzylguanidine[K]'] = 'K NORMAL 132.068748 132.068748 0 H(8)C(8)N(2)'
mod_dict['biotinAcrolein298[C]'] = 'C NORMAL 298.146347 298.146347 0 H(22)C(13)N(4)O(2)S(1)'
mod_dict['biotinAcrolein298[H]'] = 'H NORMAL 298.146347 298.146347 0 H(22)C(13)N(4)O(2)S(1)'
mod_dict['biotinAcrolein298[K]'] = 'K NORMAL 298.146347 298.146347 0 H(22)C(13)N(4)O(2)S(1)'
mod_dict['biotinAcrolein298[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 298.146347 298.146347 0 H(22)C(13)N(4)O(2)S(1)'
mod_dict['bisANS-sulfonates[K]'] = 'K NORMAL 437.201774 437.201774 0 H(25)C(32)N(2)'
mod_dict['bisANS-sulfonates[S]'] = 'S NORMAL 437.201774 437.201774 0 H(25)C(32)N(2)'
mod_dict['bisANS-sulfonates[T]'] = 'T NORMAL 437.201774 437.201774 0 H(25)C(32)N(2)'
mod_dict['cGMP+RMP-loss[C]'] = 'C NORMAL 150.041585 150.041585 0 H(4)C(5)N(5)O(1)'
mod_dict['cGMP+RMP-loss[S]'] = 'S NORMAL 150.041585 150.041585 0 H(4)C(5)N(5)O(1)'
mod_dict['cGMP[C]'] = 'C NORMAL 343.031785 343.031785 0 H(10)C(10)N(5)O(7)P(1)'
mod_dict['cGMP[S]'] = 'S NORMAL 343.031785 343.031785 0 H(10)C(10)N(5)O(7)P(1)'
mod_dict['cysTMT[C]'] = 'C NORMAL 299.166748 299.166748 0 H(25)C(14)N(3)O(2)S(1)'
mod_dict['cysTMT6plex[C]'] = 'C NORMAL 304.177202 304.177202 0 H(25)C(10)13C(4)N(2)15N(1)O(2)S(1)'
mod_dict['dHex(1)Hex(1)[S]'] = 'S NORMAL 308.110732 308.110732 0 dHex(1)Hex(1)'
mod_dict['dHex(1)Hex(1)[T]'] = 'T NORMAL 308.110732 308.110732 0 dHex(1)Hex(1)'
mod_dict['dHex(1)Hex(2)[S]'] = 'S NORMAL 470.163556 470.163556 0 dHex(1)Hex(2)'
mod_dict['dHex(1)Hex(2)[T]'] = 'T NORMAL 470.163556 470.163556 0 dHex(1)Hex(2)'
mod_dict['dHex(1)Hex(3)[S]'] = 'S NORMAL 632.216379 632.216379 0 dHex(1)Hex(3)'
mod_dict['dHex(1)Hex(3)[T]'] = 'T NORMAL 632.216379 632.216379 0 dHex(1)Hex(3)'
mod_dict['dHex(1)Hex(3)HexNAc(4)[N]'] = 'N NORMAL 1444.533870 1444.533870 0 dHex(1)Hex(3)HexNAc(4)'
mod_dict['dHex(1)Hex(4)[S]'] = 'S NORMAL 794.269203 794.269203 0 dHex(1)Hex(4)'
mod_dict['dHex(1)Hex(4)[T]'] = 'T NORMAL 794.269203 794.269203 0 dHex(1)Hex(4)'
mod_dict['dHex(1)Hex(4)HexNAc(4)[N]'] = 'N NORMAL 1606.586693 1606.586693 0 dHex(1)Hex(4)HexNAc(4)'
mod_dict['dHex(1)Hex(5)[S]'] = 'S NORMAL 956.322026 956.322026 0 dHex(1)Hex(5)'
mod_dict['dHex(1)Hex(5)[T]'] = 'T NORMAL 956.322026 956.322026 0 dHex(1)Hex(5)'
mod_dict['dHex(1)Hex(5)HexNAc(4)[N]'] = 'N NORMAL 1768.639517 1768.639517 0 dHex(1)Hex(5)HexNAc(4)'
mod_dict['dHex(1)Hex(6)[S]'] = 'S NORMAL 1118.374850 1118.374850 0 dHex(1)Hex(6)'
mod_dict['dHex(1)Hex(6)[T]'] = 'T NORMAL 1118.374850 1118.374850 0 dHex(1)Hex(6)'
mod_dict['dHex[N]'] = 'N NORMAL 146.057909 146.057909 0 dHex(1)'
mod_dict['dHex[S]'] = 'S NORMAL 146.057909 146.057909 0 dHex(1)'
mod_dict['dHex[T]'] = 'T NORMAL 146.057909 146.057909 0 dHex(1)'
mod_dict['dNIC[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 109.048119 109.048119 0 H(1)2H(3)C(6)N(1)O(1)'
mod_dict['dichlorination[C]'] = 'C NORMAL 69.937705 69.937705 0 Cl(2)'
mod_dict['dichlorination[Y]'] = 'Y NORMAL 69.937705 69.937705 0 Cl(2)'
mod_dict['ethylamino[S]'] = 'S NORMAL 27.047285 27.047285 0 H(5)C(2)N(1)O(-1)'
mod_dict['ethylamino[T]'] = 'T NORMAL 27.047285 27.047285 0 H(5)C(2)N(1)O(-1)'
mod_dict['ethylsulfonylethyl[C]'] = 'C NORMAL 120.024500 120.024500 0 H(8)C(4)O(2)S(1)'
mod_dict['ethylsulfonylethyl[H]'] = 'H NORMAL 120.024500 120.024500 0 H(8)C(4)O(2)S(1)'
mod_dict['ethylsulfonylethyl[K]'] = 'K NORMAL 120.024500 120.024500 0 H(8)C(4)O(2)S(1)'
mod_dict['glucosone[R]'] = 'R NORMAL 160.037173 160.037173 0 H(8)C(6)O(5)'
mod_dict['glycidamide[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 87.032028 87.032028 0 H(5)C(3)N(1)O(2)'
mod_dict['glycidamide[K]'] = 'K NORMAL 87.032028 87.032028 0 H(5)C(3)N(1)O(2)'
mod_dict['iTRAQ4plex[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 144.102063 144.102063 0 H(12)C(4)13C(3)N(1)15N(1)O(1)'
mod_dict['iTRAQ4plex114[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 144.105918 144.105918 0 H(12)C(5)13C(2)N(2)18O(1)'
mod_dict['iTRAQ4plex114[K]'] = 'K NORMAL 144.105918 144.105918 0 H(12)C(5)13C(2)N(2)18O(1)'
mod_dict['iTRAQ4plex114[Y]'] = 'Y NORMAL 144.105918 144.105918 0 H(12)C(5)13C(2)N(2)18O(1)'
mod_dict['iTRAQ4plex115[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 144.099599 144.099599 0 H(12)C(6)13C(1)N(1)15N(1)18O(1)'
mod_dict['iTRAQ4plex115[K]'] = 'K NORMAL 144.099599 144.099599 0 H(12)C(6)13C(1)N(1)15N(1)18O(1)'
mod_dict['iTRAQ4plex115[Y]'] = 'Y NORMAL 144.099599 144.099599 0 H(12)C(6)13C(1)N(1)15N(1)18O(1)'
mod_dict['iTRAQ8plex[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 304.205360 304.205360 0 H(24)C(7)13C(7)N(3)15N(1)O(3)'
mod_dict['iTRAQ8plex[H]'] = 'H NORMAL 304.205360 304.205360 0 H(24)C(7)13C(7)N(3)15N(1)O(3)'
mod_dict['iTRAQ8plex[K]'] = 'K NORMAL 304.205360 304.205360 0 H(24)C(7)13C(7)N(3)15N(1)O(3)'
mod_dict['iTRAQ8plex[S]'] = 'S NORMAL 304.205360 304.205360 0 H(24)C(7)13C(7)N(3)15N(1)O(3)'
mod_dict['iTRAQ8plex[T]'] = 'T NORMAL 304.205360 304.205360 0 H(24)C(7)13C(7)N(3)15N(1)O(3)'
mod_dict['iTRAQ8plex[Y]'] = 'Y NORMAL 304.205360 304.205360 0 H(24)C(7)13C(7)N(3)15N(1)O(3)'
mod_dict['iTRAQ8plex[ProteinN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PRO_N 304.205360 304.205360 0 H(24)C(7)13C(7)N(3)15N(1)O(3)'
mod_dict['iTRAQ8plex_13C(6)15N(2)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 304.199040 304.199040 0 H(24)C(8)13C(6)N(2)15N(2)O(3)'
mod_dict['iTRAQ8plex_13C(6)15N(2)[K]'] = 'K NORMAL 304.199040 304.199040 0 H(24)C(8)13C(6)N(2)15N(2)O(3)'
mod_dict['iTRAQ8plex_13C(6)15N(2)[Y]'] = 'Y NORMAL 304.199040 304.199040 0 H(24)C(8)13C(6)N(2)15N(2)O(3)'
mod_dict['iodoTMT[C]'] = 'C NORMAL 324.216141 324.216141 0 H(28)C(16)N(4)O(3)'
mod_dict['iodoTMT[D]'] = 'D NORMAL 324.216141 324.216141 0 H(28)C(16)N(4)O(3)'
mod_dict['iodoTMT[E]'] = 'E NORMAL 324.216141 324.216141 0 H(28)C(16)N(4)O(3)'
mod_dict['iodoTMT[H]'] = 'H NORMAL 324.216141 324.216141 0 H(28)C(16)N(4)O(3)'
mod_dict['iodoTMT[K]'] = 'K NORMAL 324.216141 324.216141 0 H(28)C(16)N(4)O(3)'
mod_dict['iodoTMT6plex[C]'] = 'C NORMAL 329.226595 329.226595 0 H(28)C(12)13C(4)N(3)15N(1)O(3)'
mod_dict['iodoTMT6plex[D]'] = 'D NORMAL 329.226595 329.226595 0 H(28)C(12)13C(4)N(3)15N(1)O(3)'
mod_dict['iodoTMT6plex[E]'] = 'E NORMAL 329.226595 329.226595 0 H(28)C(12)13C(4)N(3)15N(1)O(3)'
mod_dict['iodoTMT6plex[H]'] = 'H NORMAL 329.226595 329.226595 0 H(28)C(12)13C(4)N(3)15N(1)O(3)'
mod_dict['iodoTMT6plex[K]'] = 'K NORMAL 329.226595 329.226595 0 H(28)C(12)13C(4)N(3)15N(1)O(3)'
mod_dict['lapachenole[C]'] = 'C NORMAL 240.115030 240.115030 0 H(16)C(16)O(2)'
mod_dict['mTRAQ[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 140.094963 140.094963 0 H(12)C(7)N(2)O(1)'
mod_dict['mTRAQ[H]'] = 'H NORMAL 140.094963 140.094963 0 H(12)C(7)N(2)O(1)'
mod_dict['mTRAQ[K]'] = 'K NORMAL 140.094963 140.094963 0 H(12)C(7)N(2)O(1)'
mod_dict['mTRAQ[S]'] = 'S NORMAL 140.094963 140.094963 0 H(12)C(7)N(2)O(1)'
mod_dict['mTRAQ[T]'] = 'T NORMAL 140.094963 140.094963 0 H(12)C(7)N(2)O(1)'
mod_dict['mTRAQ[Y]'] = 'Y NORMAL 140.094963 140.094963 0 H(12)C(7)N(2)O(1)'
mod_dict['mTRAQ_13C(3)15N(1)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 144.102063 144.102063 0 H(12)C(4)13C(3)N(1)15N(1)O(1)'
mod_dict['mTRAQ_13C(3)15N(1)[H]'] = 'H NORMAL 144.102063 144.102063 0 H(12)C(4)13C(3)N(1)15N(1)O(1)'
mod_dict['mTRAQ_13C(3)15N(1)[K]'] = 'K NORMAL 144.102063 144.102063 0 H(12)C(4)13C(3)N(1)15N(1)O(1)'
mod_dict['mTRAQ_13C(3)15N(1)[S]'] = 'S NORMAL 144.102063 144.102063 0 H(12)C(4)13C(3)N(1)15N(1)O(1)'
mod_dict['mTRAQ_13C(3)15N(1)[T]'] = 'T NORMAL 144.102063 144.102063 0 H(12)C(4)13C(3)N(1)15N(1)O(1)'
mod_dict['mTRAQ_13C(3)15N(1)[Y]'] = 'Y NORMAL 144.102063 144.102063 0 H(12)C(4)13C(3)N(1)15N(1)O(1)'
mod_dict['mTRAQ_13C(6)15N(2)[AnyN-term]'] = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ PEP_N 148.109162 148.109162 0 H(12)C(1)13C(6)15N(2)O(1)'
mod_dict['mTRAQ_13C(6)15N(2)[H]'] = 'H NORMAL 148.109162 148.109162 0 H(12)C(1)13C(6)15N(2)O(1)'
mod_dict['mTRAQ_13C(6)15N(2)[K]'] = 'K NORMAL 148.109162 148.109162 0 H(12)C(1)13C(6)15N(2)O(1)'
mod_dict['mTRAQ_13C(6)15N(2)[S]'] = 'S NORMAL 148.109162 148.109162 0 H(12)C(1)13C(6)15N(2)O(1)'
mod_dict['mTRAQ_13C(6)15N(2)[T]'] = 'T NORMAL 148.109162 148.109162 0 H(12)C(1)13C(6)15N(2)O(1)'
mod_dict['mTRAQ_13C(6)15N(2)[Y]'] = 'Y NORMAL 148.109162 148.109162 0 H(12)C(1)13C(6)15N(2)O(1)'
mod_dict['maleimide[C]'] = 'C NORMAL 97.016378 97.016378 0 H(3)C(4)N(1)O(2)'
mod_dict['maleimide[K]'] = 'K NORMAL 97.016378 97.016378 0 H(3)C(4)N(1)O(2)'
mod_dict['maleimide3[C]'] = 'C NORMAL 969.366232 969.366232 0 H(59)C(37)N(7)O(23)'
mod_dict['maleimide3[K]'] = 'K NORMAL 969.366232 969.366232 0 H(59)C(37)N(7)O(23)'
mod_dict['maleimide5[C]'] = 'C NORMAL 1293.471879 1293.471879 0 H(79)C(49)N(7)O(33)'
mod_dict['maleimide5[K]'] = 'K NORMAL 1293.471879 1293.471879 0 H(79)C(49)N(7)O(33)'
mod_dict['methylsulfonylethyl[C]'] = 'C NORMAL 106.008850 106.008850 0 H(6)C(3)O(2)S(1)'
mod_dict['methylsulfonylethyl[H]'] = 'H NORMAL 106.008850 106.008850 0 H(6)C(3)O(2)S(1)'
mod_dict['methylsulfonylethyl[K]'] = 'K NORMAL 106.008850 106.008850 0 H(6)C(3)O(2)S(1)'
mod_dict['phenylsulfonylethyl[C]'] = 'C NORMAL 168.024500 168.024500 0 H(8)C(8)O(2)S(1)'
mod_dict['phosphoRibosyl[D]'] = 'D NORMAL 282.023960 282.023960 0 H(9)C(5)N(5)O(7)P(1)'
mod_dict['phosphoRibosyl[E]'] = 'E NORMAL 282.023960 282.023960 0 H(9)C(5)N(5)O(7)P(1)'
mod_dict['phosphoRibosyl[R]'] = 'R NORMAL 282.023960 282.023960 0 H(9)C(5)N(5)O(7)P(1)'
mod_dict['probiotinhydrazide[P]'] = 'P NORMAL 258.115047 258.115047 0 H(18)C(10)N(4)O(2)S(1)'
mod_dict['pupylation[K]'] = 'K NORMAL 243.085521 243.085521 0 H(13)C(9)N(3)O(5)'
mod_dict['pyrophospho[S]'] = 'S NORMAL 159.932662 159.932662 1 176.935402 176.935402 H(2)O(6)P(2)'
mod_dict['pyrophospho[T]'] = 'T NORMAL 159.932662 159.932662 1 176.935402 176.935402 H(2)O(6)P(2)'
mod_dict['sulfo+amino[Y]'] = 'Y NORMAL 94.967714 94.967714 0 H(1)N(1)O(3)S(1)'
mod_dict['thioacylPA[K]'] = 'K NORMAL 159.035399 159.035399 0 H(9)C(6)N(1)O(2)S(1)'
mod_dict['trifluoro[L]'] = 'L NORMAL 53.971735 53.971735 0 H(-3)F(3)'
mod_dict['Glutaryl[K]'] = 'K NORMAL 114.031694 114.031694 0 H(6)C(5)O(3)'
mod_dict['Hydroxyisobutyryl[K]'] = 'K NORMAL 86.036779 86.036779 0 H(6)C(4)O(2)'
mod_dict['Malonyl[K]'] = 'K NORMAL 86.000394 86.000394 1 43.9898 43.9898 H(2)C(3)O(3)'
mod_dict['Trimethyl[K]'] = 'K NORMAL 42.046950 42.046950 0 H(6)C(3)'
mod_dict['Hydroxyproline[P]'] = 'P NORMAL 148.037173 148.037173 0 H(6)C(3)'
mod_dict['Dimethyl[K]'] = 'K NORMAL 28.031300 28.031300 0 H(4)C(2)'
return mod_dict |
#
# @lc app=leetcode id=1108 lang=python3
#
# [1108] Defanging an IP Address
#
# @lc code=start
class Solution:
def defangIPaddr(self, address: str) -> str:
return ''.join('[.]' if c == '.' else c for c in address)
# @lc code=end
| class Solution:
def defang_i_paddr(self, address: str) -> str:
return ''.join(('[.]' if c == '.' else c for c in address)) |
#
# PySNMP MIB module VERILINK-ENTERPRISE-NCMIDCSU-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/VERILINK-ENTERPRISE-NCMIDCSU-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 21:26:50 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ValueSizeConstraint, ConstraintsIntersection, ValueRangeConstraint, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ValueSizeConstraint", "ConstraintsIntersection", "ValueRangeConstraint", "SingleValueConstraint")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
NotificationType, ModuleIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, IpAddress, ObjectIdentity, TimeTicks, Counter64, Counter32, Unsigned32, iso, Bits, Integer32, MibIdentifier, Gauge32 = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "ModuleIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "IpAddress", "ObjectIdentity", "TimeTicks", "Counter64", "Counter32", "Unsigned32", "iso", "Bits", "Integer32", "MibIdentifier", "Gauge32")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
ncm_idcsu, = mibBuilder.importSymbols("VERILINK-ENTERPRISE-NCMALARM-MIB", "ncm-idcsu")
ncmidcsuConfigTable = MibTable((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000), )
if mibBuilder.loadTexts: ncmidcsuConfigTable.setStatus('mandatory')
ncmidcsuConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1), ).setIndexNames((0, "VERILINK-ENTERPRISE-NCMIDCSU-MIB", "ncmidcsucfgNIDIndex"), (0, "VERILINK-ENTERPRISE-NCMIDCSU-MIB", "ncmidcsuLineIndex"))
if mibBuilder.loadTexts: ncmidcsuConfigEntry.setStatus('mandatory')
ncmidcsucfgNIDIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ncmidcsucfgNIDIndex.setStatus('mandatory')
ncmidcsuLineIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ncmidcsuLineIndex.setStatus('mandatory')
ncmidcsuNetLineBuildOut = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("db-Zero", 1), ("db-Seven-point-five", 2), ("db-Fifteen", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuNetLineBuildOut.setStatus('mandatory')
ncmidcsuNetworkKeepAlive = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("none", 1), ("loop", 2), ("ais", 3), ("framed-all-ones", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuNetworkKeepAlive.setStatus('mandatory')
ncmidcsuExcessiveError = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("signal", 1), ("ais", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuExcessiveError.setStatus('mandatory')
ncmidcsuOutOfFrame = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("signal", 1), ("ais", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuOutOfFrame.setStatus('mandatory')
ncmidcsuFormat = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("unframed", 1), ("sf", 2), ("esf", 3), ("zbtsi", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuFormat.setStatus('mandatory')
ncmidcsuNetDensityEnforcement = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("none", 1), ("fcc-part-68", 2), ("pub-62411", 3), ("eighty-zeroes", 4), ("fifteen-zeroes", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuNetDensityEnforcement.setStatus('mandatory')
ncmidcsuNetLossOfSignal = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ncmidcsuNetLossOfSignal.setStatus('mandatory')
ncmidcsuJitterBuf = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("eq-Net-16-16", 1), ("eq-Net-40-16", 2), ("eq-Net-16-40", 3), ("eq-Net-40-40", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuJitterBuf.setStatus('mandatory')
ncmidcsuTestSigCfgEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuTestSigCfgEnable.setStatus('mandatory')
ncmidcsuTestSigCfgFrameSignal = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuTestSigCfgFrameSignal.setStatus('mandatory')
ncmidcsuCfgRptSendPRM = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgRptSendPRM.setStatus('mandatory')
ncmidcsuCfgRptPollFarEnd = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgRptPollFarEnd.setStatus('mandatory')
ncmidcsuCfgRptDataLinkUnsolicit = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgRptDataLinkUnsolicit.setStatus('mandatory')
ncmidcsuCfgRptAlmReporting = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgRptAlmReporting.setStatus('mandatory')
ncmidcsuCfgRptPRMType = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("tELCO", 1), ("uSER", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgRptPRMType.setStatus('mandatory')
ncmidcsuCfgCodeRegenCRC = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("pass", 1), ("net-to-Eq", 2), ("eq-to-Net", 3), ("both", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgCodeRegenCRC.setStatus('mandatory')
ncmidcsuCfgCodeXYellowAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("off", 1), ("net-to-Eq", 2), ("eq-to-Net", 3), ("both", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgCodeXYellowAlarm.setStatus('mandatory')
ncmidcsuCfgCodeEQFIFO = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("fifteen-bits", 1), ("forty-bits", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgCodeEQFIFO.setStatus('mandatory')
ncmidcsuCfgCodeNETFIFO = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("fifteen-bits", 1), ("forty-bits", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgCodeNETFIFO.setStatus('mandatory')
ncmidcsuCfgCodeTranMode = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgCodeTranMode.setStatus('mandatory')
ncmidcsuCfgCodeSend1sLnkIdle = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 23), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgCodeSend1sLnkIdle.setStatus('mandatory')
ncmidcsuCfgAlmSelfTest = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 24), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgAlmSelfTest.setStatus('mandatory')
ncmidcsuCfgAlmEnableTestState = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgAlmEnableTestState.setStatus('mandatory')
ncmidcsuCfgAlmUnframedMode = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 26), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgAlmUnframedMode.setStatus('mandatory')
ncmidcsuCfgAlmOnEqLoop = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 27), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgAlmOnEqLoop.setStatus('mandatory')
ncmidcsuCfgAlmOnNetLoop = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 28), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgAlmOnNetLoop.setStatus('mandatory')
ncmidcsuCfgAlmOnPowerUpLoop = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgAlmOnPowerUpLoop.setStatus('mandatory')
ncmidcsuCfgLoopRespLLB = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgLoopRespLLB.setStatus('mandatory')
ncmidcsuCfgLoopRespPLB = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgLoopRespPLB.setStatus('mandatory')
ncmidcsuCfgLoopRespELB = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgLoopRespELB.setStatus('mandatory')
ncmidcsuCfgLoopRespRLB = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgLoopRespRLB.setStatus('mandatory')
ncmidcsuCfgLoopRespLLBTONE = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 34), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgLoopRespLLBTONE.setStatus('mandatory')
ncmidcsuCfgLoopRespPLBTONE = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 35), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgLoopRespPLBTONE.setStatus('mandatory')
ncmidcsuCfgSendReceiveInBandCode = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 36), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuCfgSendReceiveInBandCode.setStatus('mandatory')
ncmidcsuThresholdIntervalTable = MibTable((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001), )
if mibBuilder.loadTexts: ncmidcsuThresholdIntervalTable.setStatus('mandatory')
ncmidcsuThresholdIntervalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1), ).setIndexNames((0, "VERILINK-ENTERPRISE-NCMIDCSU-MIB", "ncmidcsuThresholdNIDIndex"), (0, "VERILINK-ENTERPRISE-NCMIDCSU-MIB", "ncmidcsuThresholdIntervalIndex"))
if mibBuilder.loadTexts: ncmidcsuThresholdIntervalEntry.setStatus('mandatory')
ncmidcsuThresholdNIDIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ncmidcsuThresholdNIDIndex.setStatus('mandatory')
ncmidcsuThresholdIntervalIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ncmidcsuThresholdIntervalIndex.setStatus('mandatory')
ncmidcsuBERThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("disable", 1), ("ten-to-Four", 2), ("ten-to-Five", 3), ("ten-to-Six", 4), ("ten-to-Seven", 5), ("ten-to-Eight", 6), ("ten-to-Nine", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuBERThreshold.setStatus('mandatory')
ncmidcsubpvSecThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsubpvSecThreshold.setStatus('mandatory')
ncmidcsubpvSecInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsubpvSecInterval.setStatus('mandatory')
ncmidcsuESThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuESThreshold.setStatus('mandatory')
ncmidcsuESInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuESInterval.setStatus('mandatory')
ncmidcsuUASThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuUASThreshold.setStatus('mandatory')
ncmidcsuUASInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuUASInterval.setStatus('mandatory')
ncmidcsuConfigOneTable = MibTable((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002), )
if mibBuilder.loadTexts: ncmidcsuConfigOneTable.setStatus('mandatory')
ncmidcsuConfigOneEntry = MibTableRow((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1), ).setIndexNames((0, "VERILINK-ENTERPRISE-NCMIDCSU-MIB", "ncmidcsucfg1NIDIndex"), (0, "VERILINK-ENTERPRISE-NCMIDCSU-MIB", "ncmidcsuLineIndex1"))
if mibBuilder.loadTexts: ncmidcsuConfigOneEntry.setStatus('mandatory')
ncmidcsucfg1NIDIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ncmidcsucfg1NIDIndex.setStatus('mandatory')
ncmidcsuLineIndex1 = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ncmidcsuLineIndex1.setStatus('mandatory')
ncmidcsuDS0Channel = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuDS0Channel.setStatus('mandatory')
ncmidcsuRLBTimeoutIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuRLBTimeoutIndex.setStatus('mandatory')
ncmidcsuNetLofcIndexTime = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuNetLofcIndexTime.setStatus('mandatory')
ncmidcsuTiming = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("timing", 1), ("internal", 2), ("external-422", 3), ("reserved", 4), ("net", 5), ("eq", 6), ("reserved-two", 7), ("dsu", 8)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuTiming.setStatus('mandatory')
ncmidcsuLineCode = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ami", 1), ("b8zs", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuLineCode.setStatus('mandatory')
ncmidcsuMode = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("mode-56k", 1), ("mode-64k", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuMode.setStatus('mandatory')
ncmidcsuClock = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("sT", 1), ("iNVST", 2), ("tT", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuClock.setStatus('mandatory')
ncmidcsuScramble = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("off", 1), ("on", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuScramble.setStatus('mandatory')
ncmidcsuLosLead = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuLosLead.setStatus('mandatory')
ncmidcsuPortLoopEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuPortLoopEnable.setStatus('mandatory')
ncmidcsuDataInvert = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuDataInvert.setStatus('mandatory')
ncmidcsuTimingUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuTimingUnit.setStatus('mandatory')
ncmidcsuAlarmReporting = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuAlarmReporting.setStatus('mandatory')
ncmidcsuDiagnosticTable = MibTable((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003), )
if mibBuilder.loadTexts: ncmidcsuDiagnosticTable.setStatus('mandatory')
ncmidcsuDiagnosticEntry = MibTableRow((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1), ).setIndexNames((0, "VERILINK-ENTERPRISE-NCMIDCSU-MIB", "ncmidcsuDiagNIDIndex"), (0, "VERILINK-ENTERPRISE-NCMIDCSU-MIB", "ncmidcsuDiagnosticIndex"))
if mibBuilder.loadTexts: ncmidcsuDiagnosticEntry.setStatus('mandatory')
ncmidcsuDiagNIDIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ncmidcsuDiagNIDIndex.setStatus('mandatory')
ncmidcsuDiagnosticIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ncmidcsuDiagnosticIndex.setStatus('mandatory')
ncmidcsuAlarmSetDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuAlarmSetDelay.setStatus('mandatory')
ncmidcsuAlarmClearDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuAlarmClearDelay.setStatus('mandatory')
ncmidcsuAlarmEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disable", 1), ("enable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuAlarmEnable.setStatus('mandatory')
ncmidcsuLoopback = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("csu-Payload-Loop-Back", 1), ("line-Loop-Back", 2), ("repeater-Loop-Back", 3), ("csu-Equip-Loop-Back", 4), ("csu-No-Loop-Back", 5), ("deactivate-LLB-and-PLB", 6), ("deactivate-ELB-and-RLB", 7), ("deactivate-Payload-Loop-Back", 8), ("send-Inband-Loop-Up", 9), ("send-Inband-Loop-Down", 10)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuLoopback.setStatus('mandatory')
ncmdteloops = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("no-loop", 1), ("near-on", 2), ("near-off", 3), ("far-on", 4), ("far-off", 5), ("repeater-loopback", 6)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmdteloops.setStatus('mandatory')
ncmidcsuTestPattern = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("no-test", 1), ("qrss", 2), ("one-in-eight", 3), ("three-in-twenty-four", 4), ("all-ones", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuTestPattern.setStatus('mandatory')
ncmidcsuResetPerfReg = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuResetPerfReg.setStatus('mandatory')
ncmidcsuTestErrorCounter = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 10), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ncmidcsuTestErrorCounter.setStatus('mandatory')
ncmidcsuTestSecondsRemain = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 11), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ncmidcsuTestSecondsRemain.setStatus('mandatory')
ncmidcsuTestTimeSeconds = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 12), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuTestTimeSeconds.setStatus('mandatory')
ncmidcsuNetLOFCIndexTime = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 13), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuNetLOFCIndexTime.setStatus('mandatory')
ncmidcsuChannelMask = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 14), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuChannelMask.setStatus('mandatory')
ncmidcsuApplication = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("csu", 2), ("smds", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuApplication.setStatus('mandatory')
ncmidcsuTestIntervalIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 16), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ncmidcsuTestIntervalIndex.setStatus('mandatory')
mibBuilder.exportSymbols("VERILINK-ENTERPRISE-NCMIDCSU-MIB", ncmidcsuCfgLoopRespLLB=ncmidcsuCfgLoopRespLLB, ncmidcsuAlarmReporting=ncmidcsuAlarmReporting, ncmidcsuUASInterval=ncmidcsuUASInterval, ncmidcsuTiming=ncmidcsuTiming, ncmidcsuBERThreshold=ncmidcsuBERThreshold, ncmidcsuLineIndex1=ncmidcsuLineIndex1, ncmidcsuESThreshold=ncmidcsuESThreshold, ncmidcsuCfgLoopRespLLBTONE=ncmidcsuCfgLoopRespLLBTONE, ncmidcsuConfigOneTable=ncmidcsuConfigOneTable, ncmidcsuScramble=ncmidcsuScramble, ncmidcsuCfgCodeXYellowAlarm=ncmidcsuCfgCodeXYellowAlarm, ncmidcsuDiagNIDIndex=ncmidcsuDiagNIDIndex, ncmidcsuExcessiveError=ncmidcsuExcessiveError, ncmidcsuPortLoopEnable=ncmidcsuPortLoopEnable, ncmidcsuThresholdIntervalIndex=ncmidcsuThresholdIntervalIndex, ncmidcsubpvSecThreshold=ncmidcsubpvSecThreshold, ncmidcsuDiagnosticEntry=ncmidcsuDiagnosticEntry, ncmidcsuConfigTable=ncmidcsuConfigTable, ncmidcsuESInterval=ncmidcsuESInterval, ncmidcsuCfgRptPRMType=ncmidcsuCfgRptPRMType, ncmidcsuTestTimeSeconds=ncmidcsuTestTimeSeconds, ncmidcsuCfgRptAlmReporting=ncmidcsuCfgRptAlmReporting, ncmidcsuRLBTimeoutIndex=ncmidcsuRLBTimeoutIndex, ncmdteloops=ncmdteloops, ncmidcsuOutOfFrame=ncmidcsuOutOfFrame, ncmidcsuApplication=ncmidcsuApplication, ncmidcsuAlarmSetDelay=ncmidcsuAlarmSetDelay, ncmidcsuLineIndex=ncmidcsuLineIndex, ncmidcsuConfigEntry=ncmidcsuConfigEntry, ncmidcsuUASThreshold=ncmidcsuUASThreshold, ncmidcsuCfgCodeEQFIFO=ncmidcsuCfgCodeEQFIFO, ncmidcsuCfgRptDataLinkUnsolicit=ncmidcsuCfgRptDataLinkUnsolicit, ncmidcsucfg1NIDIndex=ncmidcsucfg1NIDIndex, ncmidcsuNetLOFCIndexTime=ncmidcsuNetLOFCIndexTime, ncmidcsuCfgLoopRespPLB=ncmidcsuCfgLoopRespPLB, ncmidcsuCfgCodeNETFIFO=ncmidcsuCfgCodeNETFIFO, ncmidcsucfgNIDIndex=ncmidcsucfgNIDIndex, ncmidcsuThresholdNIDIndex=ncmidcsuThresholdNIDIndex, ncmidcsuTestIntervalIndex=ncmidcsuTestIntervalIndex, ncmidcsubpvSecInterval=ncmidcsubpvSecInterval, ncmidcsuCfgAlmSelfTest=ncmidcsuCfgAlmSelfTest, ncmidcsuDiagnosticIndex=ncmidcsuDiagnosticIndex, ncmidcsuConfigOneEntry=ncmidcsuConfigOneEntry, ncmidcsuLosLead=ncmidcsuLosLead, ncmidcsuNetworkKeepAlive=ncmidcsuNetworkKeepAlive, ncmidcsuCfgAlmOnPowerUpLoop=ncmidcsuCfgAlmOnPowerUpLoop, ncmidcsuTimingUnit=ncmidcsuTimingUnit, ncmidcsuAlarmClearDelay=ncmidcsuAlarmClearDelay, ncmidcsuFormat=ncmidcsuFormat, ncmidcsuLoopback=ncmidcsuLoopback, ncmidcsuDiagnosticTable=ncmidcsuDiagnosticTable, ncmidcsuCfgRptSendPRM=ncmidcsuCfgRptSendPRM, ncmidcsuTestPattern=ncmidcsuTestPattern, ncmidcsuCfgLoopRespELB=ncmidcsuCfgLoopRespELB, ncmidcsuNetLofcIndexTime=ncmidcsuNetLofcIndexTime, ncmidcsuNetDensityEnforcement=ncmidcsuNetDensityEnforcement, ncmidcsuTestSigCfgEnable=ncmidcsuTestSigCfgEnable, ncmidcsuCfgCodeSend1sLnkIdle=ncmidcsuCfgCodeSend1sLnkIdle, ncmidcsuMode=ncmidcsuMode, ncmidcsuJitterBuf=ncmidcsuJitterBuf, ncmidcsuLineCode=ncmidcsuLineCode, ncmidcsuCfgCodeRegenCRC=ncmidcsuCfgCodeRegenCRC, ncmidcsuClock=ncmidcsuClock, ncmidcsuNetLossOfSignal=ncmidcsuNetLossOfSignal, ncmidcsuCfgAlmEnableTestState=ncmidcsuCfgAlmEnableTestState, ncmidcsuCfgLoopRespRLB=ncmidcsuCfgLoopRespRLB, ncmidcsuCfgRptPollFarEnd=ncmidcsuCfgRptPollFarEnd, ncmidcsuCfgLoopRespPLBTONE=ncmidcsuCfgLoopRespPLBTONE, ncmidcsuThresholdIntervalEntry=ncmidcsuThresholdIntervalEntry, ncmidcsuDS0Channel=ncmidcsuDS0Channel, ncmidcsuTestSigCfgFrameSignal=ncmidcsuTestSigCfgFrameSignal, ncmidcsuDataInvert=ncmidcsuDataInvert, ncmidcsuNetLineBuildOut=ncmidcsuNetLineBuildOut, ncmidcsuResetPerfReg=ncmidcsuResetPerfReg, ncmidcsuCfgCodeTranMode=ncmidcsuCfgCodeTranMode, ncmidcsuCfgAlmUnframedMode=ncmidcsuCfgAlmUnframedMode, ncmidcsuCfgSendReceiveInBandCode=ncmidcsuCfgSendReceiveInBandCode, ncmidcsuTestErrorCounter=ncmidcsuTestErrorCounter, ncmidcsuChannelMask=ncmidcsuChannelMask, ncmidcsuCfgAlmOnEqLoop=ncmidcsuCfgAlmOnEqLoop, ncmidcsuCfgAlmOnNetLoop=ncmidcsuCfgAlmOnNetLoop, ncmidcsuThresholdIntervalTable=ncmidcsuThresholdIntervalTable, ncmidcsuTestSecondsRemain=ncmidcsuTestSecondsRemain, ncmidcsuAlarmEnable=ncmidcsuAlarmEnable)
| (octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, value_size_constraint, constraints_intersection, value_range_constraint, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ValueSizeConstraint', 'ConstraintsIntersection', 'ValueRangeConstraint', 'SingleValueConstraint')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(notification_type, module_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, ip_address, object_identity, time_ticks, counter64, counter32, unsigned32, iso, bits, integer32, mib_identifier, gauge32) = mibBuilder.importSymbols('SNMPv2-SMI', 'NotificationType', 'ModuleIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'IpAddress', 'ObjectIdentity', 'TimeTicks', 'Counter64', 'Counter32', 'Unsigned32', 'iso', 'Bits', 'Integer32', 'MibIdentifier', 'Gauge32')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
(ncm_idcsu,) = mibBuilder.importSymbols('VERILINK-ENTERPRISE-NCMALARM-MIB', 'ncm-idcsu')
ncmidcsu_config_table = mib_table((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000))
if mibBuilder.loadTexts:
ncmidcsuConfigTable.setStatus('mandatory')
ncmidcsu_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1)).setIndexNames((0, 'VERILINK-ENTERPRISE-NCMIDCSU-MIB', 'ncmidcsucfgNIDIndex'), (0, 'VERILINK-ENTERPRISE-NCMIDCSU-MIB', 'ncmidcsuLineIndex'))
if mibBuilder.loadTexts:
ncmidcsuConfigEntry.setStatus('mandatory')
ncmidcsucfg_nid_index = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ncmidcsucfgNIDIndex.setStatus('mandatory')
ncmidcsu_line_index = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ncmidcsuLineIndex.setStatus('mandatory')
ncmidcsu_net_line_build_out = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('db-Zero', 1), ('db-Seven-point-five', 2), ('db-Fifteen', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuNetLineBuildOut.setStatus('mandatory')
ncmidcsu_network_keep_alive = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('none', 1), ('loop', 2), ('ais', 3), ('framed-all-ones', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuNetworkKeepAlive.setStatus('mandatory')
ncmidcsu_excessive_error = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('signal', 1), ('ais', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuExcessiveError.setStatus('mandatory')
ncmidcsu_out_of_frame = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('signal', 1), ('ais', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuOutOfFrame.setStatus('mandatory')
ncmidcsu_format = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('unframed', 1), ('sf', 2), ('esf', 3), ('zbtsi', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuFormat.setStatus('mandatory')
ncmidcsu_net_density_enforcement = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('none', 1), ('fcc-part-68', 2), ('pub-62411', 3), ('eighty-zeroes', 4), ('fifteen-zeroes', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuNetDensityEnforcement.setStatus('mandatory')
ncmidcsu_net_loss_of_signal = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ncmidcsuNetLossOfSignal.setStatus('mandatory')
ncmidcsu_jitter_buf = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('eq-Net-16-16', 1), ('eq-Net-40-16', 2), ('eq-Net-16-40', 3), ('eq-Net-40-40', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuJitterBuf.setStatus('mandatory')
ncmidcsu_test_sig_cfg_enable = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuTestSigCfgEnable.setStatus('mandatory')
ncmidcsu_test_sig_cfg_frame_signal = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuTestSigCfgFrameSignal.setStatus('mandatory')
ncmidcsu_cfg_rpt_send_prm = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgRptSendPRM.setStatus('mandatory')
ncmidcsu_cfg_rpt_poll_far_end = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgRptPollFarEnd.setStatus('mandatory')
ncmidcsu_cfg_rpt_data_link_unsolicit = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgRptDataLinkUnsolicit.setStatus('mandatory')
ncmidcsu_cfg_rpt_alm_reporting = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgRptAlmReporting.setStatus('mandatory')
ncmidcsu_cfg_rpt_prm_type = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('tELCO', 1), ('uSER', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgRptPRMType.setStatus('mandatory')
ncmidcsu_cfg_code_regen_crc = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('pass', 1), ('net-to-Eq', 2), ('eq-to-Net', 3), ('both', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgCodeRegenCRC.setStatus('mandatory')
ncmidcsu_cfg_code_x_yellow_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('off', 1), ('net-to-Eq', 2), ('eq-to-Net', 3), ('both', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgCodeXYellowAlarm.setStatus('mandatory')
ncmidcsu_cfg_code_eqfifo = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('fifteen-bits', 1), ('forty-bits', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgCodeEQFIFO.setStatus('mandatory')
ncmidcsu_cfg_code_netfifo = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('fifteen-bits', 1), ('forty-bits', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgCodeNETFIFO.setStatus('mandatory')
ncmidcsu_cfg_code_tran_mode = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgCodeTranMode.setStatus('mandatory')
ncmidcsu_cfg_code_send1s_lnk_idle = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 23), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgCodeSend1sLnkIdle.setStatus('mandatory')
ncmidcsu_cfg_alm_self_test = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 24), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgAlmSelfTest.setStatus('mandatory')
ncmidcsu_cfg_alm_enable_test_state = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgAlmEnableTestState.setStatus('mandatory')
ncmidcsu_cfg_alm_unframed_mode = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 26), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgAlmUnframedMode.setStatus('mandatory')
ncmidcsu_cfg_alm_on_eq_loop = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 27), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgAlmOnEqLoop.setStatus('mandatory')
ncmidcsu_cfg_alm_on_net_loop = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 28), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgAlmOnNetLoop.setStatus('mandatory')
ncmidcsu_cfg_alm_on_power_up_loop = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgAlmOnPowerUpLoop.setStatus('mandatory')
ncmidcsu_cfg_loop_resp_llb = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgLoopRespLLB.setStatus('mandatory')
ncmidcsu_cfg_loop_resp_plb = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgLoopRespPLB.setStatus('mandatory')
ncmidcsu_cfg_loop_resp_elb = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 32), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgLoopRespELB.setStatus('mandatory')
ncmidcsu_cfg_loop_resp_rlb = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgLoopRespRLB.setStatus('mandatory')
ncmidcsu_cfg_loop_resp_llbtone = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 34), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgLoopRespLLBTONE.setStatus('mandatory')
ncmidcsu_cfg_loop_resp_plbtone = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 35), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgLoopRespPLBTONE.setStatus('mandatory')
ncmidcsu_cfg_send_receive_in_band_code = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10000, 1, 36), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disable', 1), ('enable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuCfgSendReceiveInBandCode.setStatus('mandatory')
ncmidcsu_threshold_interval_table = mib_table((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001))
if mibBuilder.loadTexts:
ncmidcsuThresholdIntervalTable.setStatus('mandatory')
ncmidcsu_threshold_interval_entry = mib_table_row((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1)).setIndexNames((0, 'VERILINK-ENTERPRISE-NCMIDCSU-MIB', 'ncmidcsuThresholdNIDIndex'), (0, 'VERILINK-ENTERPRISE-NCMIDCSU-MIB', 'ncmidcsuThresholdIntervalIndex'))
if mibBuilder.loadTexts:
ncmidcsuThresholdIntervalEntry.setStatus('mandatory')
ncmidcsu_threshold_nid_index = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ncmidcsuThresholdNIDIndex.setStatus('mandatory')
ncmidcsu_threshold_interval_index = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ncmidcsuThresholdIntervalIndex.setStatus('mandatory')
ncmidcsu_ber_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('disable', 1), ('ten-to-Four', 2), ('ten-to-Five', 3), ('ten-to-Six', 4), ('ten-to-Seven', 5), ('ten-to-Eight', 6), ('ten-to-Nine', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuBERThreshold.setStatus('mandatory')
ncmidcsubpv_sec_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsubpvSecThreshold.setStatus('mandatory')
ncmidcsubpv_sec_interval = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsubpvSecInterval.setStatus('mandatory')
ncmidcsu_es_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuESThreshold.setStatus('mandatory')
ncmidcsu_es_interval = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuESInterval.setStatus('mandatory')
ncmidcsu_uas_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuUASThreshold.setStatus('mandatory')
ncmidcsu_uas_interval = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10001, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuUASInterval.setStatus('mandatory')
ncmidcsu_config_one_table = mib_table((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002))
if mibBuilder.loadTexts:
ncmidcsuConfigOneTable.setStatus('mandatory')
ncmidcsu_config_one_entry = mib_table_row((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1)).setIndexNames((0, 'VERILINK-ENTERPRISE-NCMIDCSU-MIB', 'ncmidcsucfg1NIDIndex'), (0, 'VERILINK-ENTERPRISE-NCMIDCSU-MIB', 'ncmidcsuLineIndex1'))
if mibBuilder.loadTexts:
ncmidcsuConfigOneEntry.setStatus('mandatory')
ncmidcsucfg1_nid_index = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ncmidcsucfg1NIDIndex.setStatus('mandatory')
ncmidcsu_line_index1 = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ncmidcsuLineIndex1.setStatus('mandatory')
ncmidcsu_ds0_channel = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuDS0Channel.setStatus('mandatory')
ncmidcsu_rlb_timeout_index = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuRLBTimeoutIndex.setStatus('mandatory')
ncmidcsu_net_lofc_index_time = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuNetLofcIndexTime.setStatus('mandatory')
ncmidcsu_timing = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('timing', 1), ('internal', 2), ('external-422', 3), ('reserved', 4), ('net', 5), ('eq', 6), ('reserved-two', 7), ('dsu', 8)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuTiming.setStatus('mandatory')
ncmidcsu_line_code = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ami', 1), ('b8zs', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuLineCode.setStatus('mandatory')
ncmidcsu_mode = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('mode-56k', 1), ('mode-64k', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuMode.setStatus('mandatory')
ncmidcsu_clock = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('sT', 1), ('iNVST', 2), ('tT', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuClock.setStatus('mandatory')
ncmidcsu_scramble = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('off', 1), ('on', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuScramble.setStatus('mandatory')
ncmidcsu_los_lead = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuLosLead.setStatus('mandatory')
ncmidcsu_port_loop_enable = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuPortLoopEnable.setStatus('mandatory')
ncmidcsu_data_invert = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disable', 1), ('enable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuDataInvert.setStatus('mandatory')
ncmidcsu_timing_unit = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disable', 1), ('enable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuTimingUnit.setStatus('mandatory')
ncmidcsu_alarm_reporting = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10002, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuAlarmReporting.setStatus('mandatory')
ncmidcsu_diagnostic_table = mib_table((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003))
if mibBuilder.loadTexts:
ncmidcsuDiagnosticTable.setStatus('mandatory')
ncmidcsu_diagnostic_entry = mib_table_row((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1)).setIndexNames((0, 'VERILINK-ENTERPRISE-NCMIDCSU-MIB', 'ncmidcsuDiagNIDIndex'), (0, 'VERILINK-ENTERPRISE-NCMIDCSU-MIB', 'ncmidcsuDiagnosticIndex'))
if mibBuilder.loadTexts:
ncmidcsuDiagnosticEntry.setStatus('mandatory')
ncmidcsu_diag_nid_index = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ncmidcsuDiagNIDIndex.setStatus('mandatory')
ncmidcsu_diagnostic_index = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ncmidcsuDiagnosticIndex.setStatus('mandatory')
ncmidcsu_alarm_set_delay = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuAlarmSetDelay.setStatus('mandatory')
ncmidcsu_alarm_clear_delay = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuAlarmClearDelay.setStatus('mandatory')
ncmidcsu_alarm_enable = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disable', 1), ('enable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuAlarmEnable.setStatus('mandatory')
ncmidcsu_loopback = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('csu-Payload-Loop-Back', 1), ('line-Loop-Back', 2), ('repeater-Loop-Back', 3), ('csu-Equip-Loop-Back', 4), ('csu-No-Loop-Back', 5), ('deactivate-LLB-and-PLB', 6), ('deactivate-ELB-and-RLB', 7), ('deactivate-Payload-Loop-Back', 8), ('send-Inband-Loop-Up', 9), ('send-Inband-Loop-Down', 10)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuLoopback.setStatus('mandatory')
ncmdteloops = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('no-loop', 1), ('near-on', 2), ('near-off', 3), ('far-on', 4), ('far-off', 5), ('repeater-loopback', 6)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmdteloops.setStatus('mandatory')
ncmidcsu_test_pattern = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('no-test', 1), ('qrss', 2), ('one-in-eight', 3), ('three-in-twenty-four', 4), ('all-ones', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuTestPattern.setStatus('mandatory')
ncmidcsu_reset_perf_reg = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuResetPerfReg.setStatus('mandatory')
ncmidcsu_test_error_counter = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 10), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ncmidcsuTestErrorCounter.setStatus('mandatory')
ncmidcsu_test_seconds_remain = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 11), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ncmidcsuTestSecondsRemain.setStatus('mandatory')
ncmidcsu_test_time_seconds = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 12), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuTestTimeSeconds.setStatus('mandatory')
ncmidcsu_net_lofc_index_time = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 13), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuNetLOFCIndexTime.setStatus('mandatory')
ncmidcsu_channel_mask = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 14), display_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuChannelMask.setStatus('mandatory')
ncmidcsu_application = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('csu', 2), ('smds', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuApplication.setStatus('mandatory')
ncmidcsu_test_interval_index = mib_table_column((1, 3, 6, 1, 4, 1, 321, 1, 3027, 10003, 1, 16), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ncmidcsuTestIntervalIndex.setStatus('mandatory')
mibBuilder.exportSymbols('VERILINK-ENTERPRISE-NCMIDCSU-MIB', ncmidcsuCfgLoopRespLLB=ncmidcsuCfgLoopRespLLB, ncmidcsuAlarmReporting=ncmidcsuAlarmReporting, ncmidcsuUASInterval=ncmidcsuUASInterval, ncmidcsuTiming=ncmidcsuTiming, ncmidcsuBERThreshold=ncmidcsuBERThreshold, ncmidcsuLineIndex1=ncmidcsuLineIndex1, ncmidcsuESThreshold=ncmidcsuESThreshold, ncmidcsuCfgLoopRespLLBTONE=ncmidcsuCfgLoopRespLLBTONE, ncmidcsuConfigOneTable=ncmidcsuConfigOneTable, ncmidcsuScramble=ncmidcsuScramble, ncmidcsuCfgCodeXYellowAlarm=ncmidcsuCfgCodeXYellowAlarm, ncmidcsuDiagNIDIndex=ncmidcsuDiagNIDIndex, ncmidcsuExcessiveError=ncmidcsuExcessiveError, ncmidcsuPortLoopEnable=ncmidcsuPortLoopEnable, ncmidcsuThresholdIntervalIndex=ncmidcsuThresholdIntervalIndex, ncmidcsubpvSecThreshold=ncmidcsubpvSecThreshold, ncmidcsuDiagnosticEntry=ncmidcsuDiagnosticEntry, ncmidcsuConfigTable=ncmidcsuConfigTable, ncmidcsuESInterval=ncmidcsuESInterval, ncmidcsuCfgRptPRMType=ncmidcsuCfgRptPRMType, ncmidcsuTestTimeSeconds=ncmidcsuTestTimeSeconds, ncmidcsuCfgRptAlmReporting=ncmidcsuCfgRptAlmReporting, ncmidcsuRLBTimeoutIndex=ncmidcsuRLBTimeoutIndex, ncmdteloops=ncmdteloops, ncmidcsuOutOfFrame=ncmidcsuOutOfFrame, ncmidcsuApplication=ncmidcsuApplication, ncmidcsuAlarmSetDelay=ncmidcsuAlarmSetDelay, ncmidcsuLineIndex=ncmidcsuLineIndex, ncmidcsuConfigEntry=ncmidcsuConfigEntry, ncmidcsuUASThreshold=ncmidcsuUASThreshold, ncmidcsuCfgCodeEQFIFO=ncmidcsuCfgCodeEQFIFO, ncmidcsuCfgRptDataLinkUnsolicit=ncmidcsuCfgRptDataLinkUnsolicit, ncmidcsucfg1NIDIndex=ncmidcsucfg1NIDIndex, ncmidcsuNetLOFCIndexTime=ncmidcsuNetLOFCIndexTime, ncmidcsuCfgLoopRespPLB=ncmidcsuCfgLoopRespPLB, ncmidcsuCfgCodeNETFIFO=ncmidcsuCfgCodeNETFIFO, ncmidcsucfgNIDIndex=ncmidcsucfgNIDIndex, ncmidcsuThresholdNIDIndex=ncmidcsuThresholdNIDIndex, ncmidcsuTestIntervalIndex=ncmidcsuTestIntervalIndex, ncmidcsubpvSecInterval=ncmidcsubpvSecInterval, ncmidcsuCfgAlmSelfTest=ncmidcsuCfgAlmSelfTest, ncmidcsuDiagnosticIndex=ncmidcsuDiagnosticIndex, ncmidcsuConfigOneEntry=ncmidcsuConfigOneEntry, ncmidcsuLosLead=ncmidcsuLosLead, ncmidcsuNetworkKeepAlive=ncmidcsuNetworkKeepAlive, ncmidcsuCfgAlmOnPowerUpLoop=ncmidcsuCfgAlmOnPowerUpLoop, ncmidcsuTimingUnit=ncmidcsuTimingUnit, ncmidcsuAlarmClearDelay=ncmidcsuAlarmClearDelay, ncmidcsuFormat=ncmidcsuFormat, ncmidcsuLoopback=ncmidcsuLoopback, ncmidcsuDiagnosticTable=ncmidcsuDiagnosticTable, ncmidcsuCfgRptSendPRM=ncmidcsuCfgRptSendPRM, ncmidcsuTestPattern=ncmidcsuTestPattern, ncmidcsuCfgLoopRespELB=ncmidcsuCfgLoopRespELB, ncmidcsuNetLofcIndexTime=ncmidcsuNetLofcIndexTime, ncmidcsuNetDensityEnforcement=ncmidcsuNetDensityEnforcement, ncmidcsuTestSigCfgEnable=ncmidcsuTestSigCfgEnable, ncmidcsuCfgCodeSend1sLnkIdle=ncmidcsuCfgCodeSend1sLnkIdle, ncmidcsuMode=ncmidcsuMode, ncmidcsuJitterBuf=ncmidcsuJitterBuf, ncmidcsuLineCode=ncmidcsuLineCode, ncmidcsuCfgCodeRegenCRC=ncmidcsuCfgCodeRegenCRC, ncmidcsuClock=ncmidcsuClock, ncmidcsuNetLossOfSignal=ncmidcsuNetLossOfSignal, ncmidcsuCfgAlmEnableTestState=ncmidcsuCfgAlmEnableTestState, ncmidcsuCfgLoopRespRLB=ncmidcsuCfgLoopRespRLB, ncmidcsuCfgRptPollFarEnd=ncmidcsuCfgRptPollFarEnd, ncmidcsuCfgLoopRespPLBTONE=ncmidcsuCfgLoopRespPLBTONE, ncmidcsuThresholdIntervalEntry=ncmidcsuThresholdIntervalEntry, ncmidcsuDS0Channel=ncmidcsuDS0Channel, ncmidcsuTestSigCfgFrameSignal=ncmidcsuTestSigCfgFrameSignal, ncmidcsuDataInvert=ncmidcsuDataInvert, ncmidcsuNetLineBuildOut=ncmidcsuNetLineBuildOut, ncmidcsuResetPerfReg=ncmidcsuResetPerfReg, ncmidcsuCfgCodeTranMode=ncmidcsuCfgCodeTranMode, ncmidcsuCfgAlmUnframedMode=ncmidcsuCfgAlmUnframedMode, ncmidcsuCfgSendReceiveInBandCode=ncmidcsuCfgSendReceiveInBandCode, ncmidcsuTestErrorCounter=ncmidcsuTestErrorCounter, ncmidcsuChannelMask=ncmidcsuChannelMask, ncmidcsuCfgAlmOnEqLoop=ncmidcsuCfgAlmOnEqLoop, ncmidcsuCfgAlmOnNetLoop=ncmidcsuCfgAlmOnNetLoop, ncmidcsuThresholdIntervalTable=ncmidcsuThresholdIntervalTable, ncmidcsuTestSecondsRemain=ncmidcsuTestSecondsRemain, ncmidcsuAlarmEnable=ncmidcsuAlarmEnable) |
# coding: utf-8
# Copyright 2015 Donne Martin. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"). You
# may not use this file except in compliance with the License. A copy of
# the License is located at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# or in the "license" file accompanying this file. This file is
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
# ANY KIND, either express or implied. See the License for the specific
# language governing permissions and limitations under the License.
class User(object):
"""GitHub user.
:type id: str
:param id: The user's id or login name.
:type name: str (optional)
:param name: The user's name.
:type type: str (optional)
:param type: The user type: 'User' or 'Organization'.
:type location: str (optional)
:param location: The user's location.
:type stars: int (optional)
:param stars: The user's total repo stars.
"""
def __init__(self, id, name=None, type=None, location=None, stars=None):
self.id = id
self.name = name
self.type = type
self.location = location
self.stars = stars
def __lt__(self, other):
return self.stars < other.stars
| class User(object):
"""GitHub user.
:type id: str
:param id: The user's id or login name.
:type name: str (optional)
:param name: The user's name.
:type type: str (optional)
:param type: The user type: 'User' or 'Organization'.
:type location: str (optional)
:param location: The user's location.
:type stars: int (optional)
:param stars: The user's total repo stars.
"""
def __init__(self, id, name=None, type=None, location=None, stars=None):
self.id = id
self.name = name
self.type = type
self.location = location
self.stars = stars
def __lt__(self, other):
return self.stars < other.stars |
class Solution:
def countPrimes(self, n: int) -> int:
if n <= 2:
return 0
isPrime = [False] * 2 + [True] * (n - 2)
for i in range(2, int(n**0.5) + 1):
if isPrime[i]:
for j in range(i * i, n, i):
isPrime[j] = False
return sum(isPrime)
| class Solution:
def count_primes(self, n: int) -> int:
if n <= 2:
return 0
is_prime = [False] * 2 + [True] * (n - 2)
for i in range(2, int(n ** 0.5) + 1):
if isPrime[i]:
for j in range(i * i, n, i):
isPrime[j] = False
return sum(isPrime) |
power = {'BUSES': {'Area': 1.33155,
'Bus/Area': 1.33155,
'Bus/Gate Leakage': 0.00662954,
'Bus/Peak Dynamic': 0.0,
'Bus/Runtime Dynamic': 0.0,
'Bus/Subthreshold Leakage': 0.0691322,
'Bus/Subthreshold Leakage with power gating': 0.0259246,
'Gate Leakage': 0.00662954,
'Peak Dynamic': 0.0,
'Runtime Dynamic': 0.0,
'Subthreshold Leakage': 0.0691322,
'Subthreshold Leakage with power gating': 0.0259246},
'Core': [{'Area': 32.6082,
'Execution Unit/Area': 8.2042,
'Execution Unit/Complex ALUs/Area': 0.235435,
'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646,
'Execution Unit/Complex ALUs/Peak Dynamic': 0.17631,
'Execution Unit/Complex ALUs/Runtime Dynamic': 0.341171,
'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111,
'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163,
'Execution Unit/Floating Point Units/Area': 4.6585,
'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156,
'Execution Unit/Floating Point Units/Peak Dynamic': 0.806988,
'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033,
'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829,
'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061,
'Execution Unit/Gate Leakage': 0.122718,
'Execution Unit/Instruction Scheduler/Area': 2.17927,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.328073,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.00115349,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.20978,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.678107,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.017004,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00962066,
'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00730101,
'Execution Unit/Instruction Scheduler/Instruction Window/Area': 1.00996,
'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00529112,
'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 2.07911,
'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 1.17424,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0800117,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0455351,
'Execution Unit/Instruction Scheduler/Peak Dynamic': 4.84781,
'Execution Unit/Instruction Scheduler/ROB/Area': 0.841232,
'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.000856399,
'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.55892,
'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.673457,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.0178624,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00897339,
'Execution Unit/Instruction Scheduler/Runtime Dynamic': 2.5258,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.114878,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.0641291,
'Execution Unit/Integer ALUs/Area': 0.47087,
'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291,
'Execution Unit/Integer ALUs/Peak Dynamic': 0.546557,
'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344,
'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222,
'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833,
'Execution Unit/Peak Dynamic': 7.50583,
'Execution Unit/Register Files/Area': 0.570804,
'Execution Unit/Register Files/Floating Point RF/Area': 0.208131,
'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788,
'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.152457,
'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.0245819,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968,
'Execution Unit/Register Files/Gate Leakage': 0.000622708,
'Execution Unit/Register Files/Integer RF/Area': 0.362673,
'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992,
'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.249667,
'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.181798,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675,
'Execution Unit/Register Files/Peak Dynamic': 0.402124,
'Execution Unit/Register Files/Runtime Dynamic': 0.20638,
'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387,
'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643,
'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0442632,
'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00607074,
'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.6516,
'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 1.66803,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.0920413,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0345155,
'Execution Unit/Runtime Dynamic': 5.14676,
'Execution Unit/Subthreshold Leakage': 1.83518,
'Execution Unit/Subthreshold Leakage with power gating': 0.709678,
'Gate Leakage': 0.372997,
'Instruction Fetch Unit/Area': 5.86007,
'Instruction Fetch Unit/Branch Predictor/Area': 0.138516,
'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00323952,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00323952,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00281254,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.00108381,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045,
'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838,
'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732,
'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05,
'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602,
'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.00261155,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733,
'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.0119031,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282,
'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954,
'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758,
'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867,
'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0313847,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357,
'Instruction Fetch Unit/Gate Leakage': 0.0590479,
'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323,
'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05,
'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827,
'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.174767,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682,
'Instruction Fetch Unit/Instruction Cache/Area': 3.14635,
'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931,
'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 6.43323,
'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.498264,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386,
'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799,
'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493,
'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404,
'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.593588,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104,
'Instruction Fetch Unit/Peak Dynamic': 8.96874,
'Instruction Fetch Unit/Runtime Dynamic': 1.30991,
'Instruction Fetch Unit/Subthreshold Leakage': 0.932587,
'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.408542,
'L2/Area': 4.53318,
'L2/Gate Leakage': 0.015464,
'L2/Peak Dynamic': 0.0417119,
'L2/Runtime Dynamic': 0.00895503,
'L2/Subthreshold Leakage': 0.834142,
'L2/Subthreshold Leakage with power gating': 0.401066,
'Load Store Unit/Area': 8.80969,
'Load Store Unit/Data Cache/Area': 6.84535,
'Load Store Unit/Data Cache/Gate Leakage': 0.0279261,
'Load Store Unit/Data Cache/Peak Dynamic': 7.65323,
'Load Store Unit/Data Cache/Runtime Dynamic': 3.09794,
'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675,
'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085,
'Load Store Unit/Gate Leakage': 0.0351387,
'Load Store Unit/LoadQ/Area': 0.0836782,
'Load Store Unit/LoadQ/Gate Leakage': 0.00059896,
'Load Store Unit/LoadQ/Peak Dynamic': 0.207576,
'Load Store Unit/LoadQ/Runtime Dynamic': 0.207577,
'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961,
'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918,
'Load Store Unit/Peak Dynamic': 8.63744,
'Load Store Unit/Runtime Dynamic': 4.32921,
'Load Store Unit/StoreQ/Area': 0.322079,
'Load Store Unit/StoreQ/Gate Leakage': 0.00329971,
'Load Store Unit/StoreQ/Peak Dynamic': 0.511848,
'Load Store Unit/StoreQ/Runtime Dynamic': 1.0237,
'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621,
'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004,
'Load Store Unit/Subthreshold Leakage': 0.591622,
'Load Store Unit/Subthreshold Leakage with power gating': 0.283406,
'Memory Management Unit/Area': 0.434579,
'Memory Management Unit/Dtlb/Area': 0.0879726,
'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729,
'Memory Management Unit/Dtlb/Peak Dynamic': 0.181657,
'Memory Management Unit/Dtlb/Runtime Dynamic': 0.182043,
'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699,
'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485,
'Memory Management Unit/Gate Leakage': 0.00813591,
'Memory Management Unit/Itlb/Area': 0.301552,
'Memory Management Unit/Itlb/Gate Leakage': 0.00393464,
'Memory Management Unit/Itlb/Peak Dynamic': 0.399995,
'Memory Management Unit/Itlb/Runtime Dynamic': 0.0823927,
'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758,
'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842,
'Memory Management Unit/Peak Dynamic': 0.872543,
'Memory Management Unit/Runtime Dynamic': 0.264436,
'Memory Management Unit/Subthreshold Leakage': 0.0769113,
'Memory Management Unit/Subthreshold Leakage with power gating': 0.0399462,
'Peak Dynamic': 30.588,
'Renaming Unit/Area': 0.369768,
'Renaming Unit/FP Front End RAT/Area': 0.168486,
'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00489731,
'Renaming Unit/FP Front End RAT/Peak Dynamic': 3.33511,
'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.531889,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0437281,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.024925,
'Renaming Unit/Free List/Area': 0.0414755,
'Renaming Unit/Free List/Gate Leakage': 4.15911e-05,
'Renaming Unit/Free List/Peak Dynamic': 0.0401324,
'Renaming Unit/Free List/Runtime Dynamic': 0.041075,
'Renaming Unit/Free List/Subthreshold Leakage': 0.000670426,
'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000377987,
'Renaming Unit/Gate Leakage': 0.00863632,
'Renaming Unit/Int Front End RAT/Area': 0.114751,
'Renaming Unit/Int Front End RAT/Gate Leakage': 0.00038343,
'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.86945,
'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.345677,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00611897,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00348781,
'Renaming Unit/Peak Dynamic': 4.56169,
'Renaming Unit/Runtime Dynamic': 0.918641,
'Renaming Unit/Subthreshold Leakage': 0.070483,
'Renaming Unit/Subthreshold Leakage with power gating': 0.0362779,
'Runtime Dynamic': 11.9779,
'Subthreshold Leakage': 6.21877,
'Subthreshold Leakage with power gating': 2.58311},
{'Area': 32.0201,
'Execution Unit/Area': 7.68434,
'Execution Unit/Complex ALUs/Area': 0.235435,
'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646,
'Execution Unit/Complex ALUs/Peak Dynamic': 0.09189,
'Execution Unit/Complex ALUs/Runtime Dynamic': 0.274863,
'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111,
'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163,
'Execution Unit/Floating Point Units/Area': 4.6585,
'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156,
'Execution Unit/Floating Point Units/Peak Dynamic': 0.419705,
'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033,
'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829,
'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061,
'Execution Unit/Gate Leakage': 0.120359,
'Execution Unit/Instruction Scheduler/Area': 1.66526,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.253039,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519,
'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913,
'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223,
'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562,
'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763,
'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.408142,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964,
'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262,
'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388,
'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608,
'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451,
'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.206016,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446,
'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.867197,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346,
'Execution Unit/Integer ALUs/Area': 0.47087,
'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291,
'Execution Unit/Integer ALUs/Peak Dynamic': 0.225057,
'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344,
'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222,
'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833,
'Execution Unit/Peak Dynamic': 5.04672,
'Execution Unit/Register Files/Area': 0.570804,
'Execution Unit/Register Files/Floating Point RF/Area': 0.208131,
'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788,
'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.0792913,
'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.0106136,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968,
'Execution Unit/Register Files/Gate Leakage': 0.000622708,
'Execution Unit/Register Files/Integer RF/Area': 0.362673,
'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992,
'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.114263,
'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0784939,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675,
'Execution Unit/Register Files/Peak Dynamic': 0.193555,
'Execution Unit/Register Files/Runtime Dynamic': 0.0891075,
'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387,
'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643,
'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912,
'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402,
'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.263699,
'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.653585,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543,
'Execution Unit/Runtime Dynamic': 2.29013,
'Execution Unit/Subthreshold Leakage': 1.79543,
'Execution Unit/Subthreshold Leakage with power gating': 0.688821,
'Gate Leakage': 0.368936,
'Instruction Fetch Unit/Area': 5.85939,
'Instruction Fetch Unit/Branch Predictor/Area': 0.138516,
'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.0013419,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.0013419,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.0012059,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.00048712,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045,
'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838,
'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732,
'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05,
'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602,
'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.00112757,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733,
'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00501726,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282,
'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954,
'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758,
'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867,
'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0115401,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357,
'Instruction Fetch Unit/Gate Leakage': 0.0589979,
'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323,
'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05,
'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827,
'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0754582,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682,
'Instruction Fetch Unit/Instruction Cache/Area': 3.14635,
'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931,
'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 4.79979,
'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.212928,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386,
'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799,
'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493,
'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404,
'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.25629,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104,
'Instruction Fetch Unit/Peak Dynamic': 7.25125,
'Instruction Fetch Unit/Runtime Dynamic': 0.561233,
'Instruction Fetch Unit/Subthreshold Leakage': 0.932286,
'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843,
'L2/Area': 4.53318,
'L2/Gate Leakage': 0.015464,
'L2/Peak Dynamic': 0.0199704,
'L2/Runtime Dynamic': 0.00446198,
'L2/Subthreshold Leakage': 0.834142,
'L2/Subthreshold Leakage with power gating': 0.401066,
'Load Store Unit/Area': 8.80901,
'Load Store Unit/Data Cache/Area': 6.84535,
'Load Store Unit/Data Cache/Gate Leakage': 0.0279261,
'Load Store Unit/Data Cache/Peak Dynamic': 3.99851,
'Load Store Unit/Data Cache/Runtime Dynamic': 1.33528,
'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675,
'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085,
'Load Store Unit/Gate Leakage': 0.0350888,
'Load Store Unit/LoadQ/Area': 0.0836782,
'Load Store Unit/LoadQ/Gate Leakage': 0.00059896,
'Load Store Unit/LoadQ/Peak Dynamic': 0.0893374,
'Load Store Unit/LoadQ/Runtime Dynamic': 0.0893374,
'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961,
'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918,
'Load Store Unit/Peak Dynamic': 4.42038,
'Load Store Unit/Runtime Dynamic': 1.86519,
'Load Store Unit/StoreQ/Area': 0.322079,
'Load Store Unit/StoreQ/Gate Leakage': 0.00329971,
'Load Store Unit/StoreQ/Peak Dynamic': 0.220291,
'Load Store Unit/StoreQ/Runtime Dynamic': 0.440582,
'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621,
'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004,
'Load Store Unit/Subthreshold Leakage': 0.591321,
'Load Store Unit/Subthreshold Leakage with power gating': 0.283293,
'Memory Management Unit/Area': 0.4339,
'Memory Management Unit/Dtlb/Area': 0.0879726,
'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729,
'Memory Management Unit/Dtlb/Peak Dynamic': 0.0781819,
'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0783831,
'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699,
'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485,
'Memory Management Unit/Gate Leakage': 0.00808595,
'Memory Management Unit/Itlb/Area': 0.301552,
'Memory Management Unit/Itlb/Gate Leakage': 0.00393464,
'Memory Management Unit/Itlb/Peak Dynamic': 0.298433,
'Memory Management Unit/Itlb/Runtime Dynamic': 0.0351985,
'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758,
'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842,
'Memory Management Unit/Peak Dynamic': 0.588845,
'Memory Management Unit/Runtime Dynamic': 0.113582,
'Memory Management Unit/Subthreshold Leakage': 0.0766103,
'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333,
'Peak Dynamic': 20.9166,
'Renaming Unit/Area': 0.303608,
'Renaming Unit/FP Front End RAT/Area': 0.131045,
'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123,
'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468,
'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.208579,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885,
'Renaming Unit/Free List/Area': 0.0340654,
'Renaming Unit/Free List/Gate Leakage': 2.5481e-05,
'Renaming Unit/Free List/Peak Dynamic': 0.0306032,
'Renaming Unit/Free List/Runtime Dynamic': 0.0139548,
'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144,
'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064,
'Renaming Unit/Gate Leakage': 0.00708398,
'Renaming Unit/Int Front End RAT/Area': 0.0941223,
'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242,
'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965,
'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.125795,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228,
'Renaming Unit/Peak Dynamic': 3.58947,
'Renaming Unit/Runtime Dynamic': 0.348329,
'Renaming Unit/Subthreshold Leakage': 0.0552466,
'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461,
'Runtime Dynamic': 5.18293,
'Subthreshold Leakage': 6.16288,
'Subthreshold Leakage with power gating': 2.55328},
{'Area': 32.0201,
'Execution Unit/Area': 7.68434,
'Execution Unit/Complex ALUs/Area': 0.235435,
'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646,
'Execution Unit/Complex ALUs/Peak Dynamic': 0.0796071,
'Execution Unit/Complex ALUs/Runtime Dynamic': 0.265215,
'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111,
'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163,
'Execution Unit/Floating Point Units/Area': 4.6585,
'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156,
'Execution Unit/Floating Point Units/Peak Dynamic': 0.368265,
'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033,
'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829,
'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061,
'Execution Unit/Gate Leakage': 0.120359,
'Execution Unit/Instruction Scheduler/Area': 1.66526,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.242529,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519,
'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913,
'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223,
'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562,
'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763,
'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.39119,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964,
'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262,
'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388,
'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608,
'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451,
'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.197459,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446,
'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.831177,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346,
'Execution Unit/Integer ALUs/Area': 0.47087,
'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291,
'Execution Unit/Integer ALUs/Peak Dynamic': 0.220921,
'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344,
'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222,
'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833,
'Execution Unit/Peak Dynamic': 4.93944,
'Execution Unit/Register Files/Area': 0.570804,
'Execution Unit/Register Files/Floating Point RF/Area': 0.208131,
'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788,
'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.0695731,
'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.0101727,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968,
'Execution Unit/Register Files/Gate Leakage': 0.000622708,
'Execution Unit/Register Files/Integer RF/Area': 0.362673,
'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992,
'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.105871,
'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0752336,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675,
'Execution Unit/Register Files/Peak Dynamic': 0.175444,
'Execution Unit/Register Files/Runtime Dynamic': 0.0854064,
'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387,
'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643,
'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912,
'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402,
'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.242947,
'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.6168,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543,
'Execution Unit/Runtime Dynamic': 2.20398,
'Execution Unit/Subthreshold Leakage': 1.79543,
'Execution Unit/Subthreshold Leakage with power gating': 0.688821,
'Gate Leakage': 0.368936,
'Instruction Fetch Unit/Area': 5.85939,
'Instruction Fetch Unit/Branch Predictor/Area': 0.138516,
'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00137678,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00137678,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.0012417,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000503941,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045,
'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838,
'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732,
'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05,
'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602,
'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.00108074,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733,
'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.005076,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282,
'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954,
'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758,
'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867,
'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0116811,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357,
'Instruction Fetch Unit/Gate Leakage': 0.0589979,
'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323,
'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05,
'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827,
'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.072324,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682,
'Instruction Fetch Unit/Instruction Cache/Area': 3.14635,
'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931,
'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 4.60043,
'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.201174,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386,
'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799,
'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493,
'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404,
'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.245645,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104,
'Instruction Fetch Unit/Peak Dynamic': 7.04221,
'Instruction Fetch Unit/Runtime Dynamic': 0.5359,
'Instruction Fetch Unit/Subthreshold Leakage': 0.932286,
'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843,
'L2/Area': 4.53318,
'L2/Gate Leakage': 0.015464,
'L2/Peak Dynamic': 0.0198483,
'L2/Runtime Dynamic': 0.00437042,
'L2/Subthreshold Leakage': 0.834142,
'L2/Subthreshold Leakage with power gating': 0.401066,
'Load Store Unit/Area': 8.80901,
'Load Store Unit/Data Cache/Area': 6.84535,
'Load Store Unit/Data Cache/Gate Leakage': 0.0279261,
'Load Store Unit/Data Cache/Peak Dynamic': 3.92192,
'Load Store Unit/Data Cache/Runtime Dynamic': 1.29772,
'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675,
'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085,
'Load Store Unit/Gate Leakage': 0.0350888,
'Load Store Unit/LoadQ/Area': 0.0836782,
'Load Store Unit/LoadQ/Gate Leakage': 0.00059896,
'Load Store Unit/LoadQ/Peak Dynamic': 0.0868595,
'Load Store Unit/LoadQ/Runtime Dynamic': 0.0868595,
'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961,
'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918,
'Load Store Unit/Peak Dynamic': 4.33209,
'Load Store Unit/Runtime Dynamic': 1.81294,
'Load Store Unit/StoreQ/Area': 0.322079,
'Load Store Unit/StoreQ/Gate Leakage': 0.00329971,
'Load Store Unit/StoreQ/Peak Dynamic': 0.214181,
'Load Store Unit/StoreQ/Runtime Dynamic': 0.428361,
'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621,
'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004,
'Load Store Unit/Subthreshold Leakage': 0.591321,
'Load Store Unit/Subthreshold Leakage with power gating': 0.283293,
'Memory Management Unit/Area': 0.4339,
'Memory Management Unit/Dtlb/Area': 0.0879726,
'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729,
'Memory Management Unit/Dtlb/Peak Dynamic': 0.0760135,
'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0762049,
'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699,
'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485,
'Memory Management Unit/Gate Leakage': 0.00808595,
'Memory Management Unit/Itlb/Area': 0.301552,
'Memory Management Unit/Itlb/Gate Leakage': 0.00393464,
'Memory Management Unit/Itlb/Peak Dynamic': 0.286038,
'Memory Management Unit/Itlb/Runtime Dynamic': 0.033295,
'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758,
'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842,
'Memory Management Unit/Peak Dynamic': 0.572724,
'Memory Management Unit/Runtime Dynamic': 0.1095,
'Memory Management Unit/Subthreshold Leakage': 0.0766103,
'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333,
'Peak Dynamic': 20.4958,
'Renaming Unit/Area': 0.303608,
'Renaming Unit/FP Front End RAT/Area': 0.131045,
'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123,
'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468,
'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.183015,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885,
'Renaming Unit/Free List/Area': 0.0340654,
'Renaming Unit/Free List/Gate Leakage': 2.5481e-05,
'Renaming Unit/Free List/Peak Dynamic': 0.0306032,
'Renaming Unit/Free List/Runtime Dynamic': 0.0131695,
'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144,
'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064,
'Renaming Unit/Gate Leakage': 0.00708398,
'Renaming Unit/Int Front End RAT/Area': 0.0941223,
'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242,
'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965,
'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.121033,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228,
'Renaming Unit/Peak Dynamic': 3.58947,
'Renaming Unit/Runtime Dynamic': 0.317218,
'Renaming Unit/Subthreshold Leakage': 0.0552466,
'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461,
'Runtime Dynamic': 4.9839,
'Subthreshold Leakage': 6.16288,
'Subthreshold Leakage with power gating': 2.55328},
{'Area': 32.0201,
'Execution Unit/Area': 7.68434,
'Execution Unit/Complex ALUs/Area': 0.235435,
'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646,
'Execution Unit/Complex ALUs/Peak Dynamic': 0.0694583,
'Execution Unit/Complex ALUs/Runtime Dynamic': 0.257244,
'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111,
'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163,
'Execution Unit/Floating Point Units/Area': 4.6585,
'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156,
'Execution Unit/Floating Point Units/Peak Dynamic': 0.322554,
'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033,
'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829,
'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061,
'Execution Unit/Gate Leakage': 0.120359,
'Execution Unit/Instruction Scheduler/Area': 1.66526,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.23485,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453,
'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519,
'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913,
'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223,
'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562,
'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763,
'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.378805,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755,
'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964,
'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262,
'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388,
'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608,
'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451,
'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.191208,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853,
'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446,
'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.804862,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892,
'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346,
'Execution Unit/Integer ALUs/Area': 0.47087,
'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291,
'Execution Unit/Integer ALUs/Peak Dynamic': 0.219148,
'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344,
'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222,
'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833,
'Execution Unit/Peak Dynamic': 4.85021,
'Execution Unit/Register Files/Area': 0.570804,
'Execution Unit/Register Files/Floating Point RF/Area': 0.208131,
'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788,
'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.0609374,
'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00985067,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698,
'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968,
'Execution Unit/Register Files/Gate Leakage': 0.000622708,
'Execution Unit/Register Files/Integer RF/Area': 0.362673,
'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992,
'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0993729,
'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0728517,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175,
'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675,
'Execution Unit/Register Files/Peak Dynamic': 0.16031,
'Execution Unit/Register Files/Runtime Dynamic': 0.0827024,
'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387,
'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643,
'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912,
'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402,
'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.226719,
'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.579138,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478,
'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543,
'Execution Unit/Runtime Dynamic': 2.12932,
'Execution Unit/Subthreshold Leakage': 1.79543,
'Execution Unit/Subthreshold Leakage with power gating': 0.688821,
'Gate Leakage': 0.368936,
'Instruction Fetch Unit/Area': 5.85939,
'Instruction Fetch Unit/Branch Predictor/Area': 0.138516,
'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00147251,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00147251,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719,
'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00132897,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344,
'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000539855,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347,
'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045,
'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838,
'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732,
'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05,
'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602,
'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.00104652,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505,
'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733,
'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00532051,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703,
'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282,
'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954,
'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758,
'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867,
'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0124598,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682,
'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357,
'Instruction Fetch Unit/Gate Leakage': 0.0589979,
'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323,
'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05,
'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827,
'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0700342,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885,
'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682,
'Instruction Fetch Unit/Instruction Cache/Area': 3.14635,
'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931,
'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 4.45478,
'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.194678,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022,
'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386,
'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799,
'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493,
'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404,
'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.237868,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943,
'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104,
'Instruction Fetch Unit/Peak Dynamic': 6.8895,
'Instruction Fetch Unit/Runtime Dynamic': 0.52036,
'Instruction Fetch Unit/Subthreshold Leakage': 0.932286,
'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843,
'L2/Area': 4.53318,
'L2/Gate Leakage': 0.015464,
'L2/Peak Dynamic': 0.0190747,
'L2/Runtime Dynamic': 0.00390663,
'L2/Subthreshold Leakage': 0.834142,
'L2/Subthreshold Leakage with power gating': 0.401066,
'Load Store Unit/Area': 8.80901,
'Load Store Unit/Data Cache/Area': 6.84535,
'Load Store Unit/Data Cache/Gate Leakage': 0.0279261,
'Load Store Unit/Data Cache/Peak Dynamic': 3.78025,
'Load Store Unit/Data Cache/Runtime Dynamic': 1.22766,
'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675,
'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085,
'Load Store Unit/Gate Leakage': 0.0350888,
'Load Store Unit/LoadQ/Area': 0.0836782,
'Load Store Unit/LoadQ/Gate Leakage': 0.00059896,
'Load Store Unit/LoadQ/Peak Dynamic': 0.0822764,
'Load Store Unit/LoadQ/Runtime Dynamic': 0.0822764,
'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961,
'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918,
'Load Store Unit/Peak Dynamic': 4.16878,
'Load Store Unit/Runtime Dynamic': 1.71569,
'Load Store Unit/StoreQ/Area': 0.322079,
'Load Store Unit/StoreQ/Gate Leakage': 0.00329971,
'Load Store Unit/StoreQ/Peak Dynamic': 0.202879,
'Load Store Unit/StoreQ/Runtime Dynamic': 0.405759,
'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621,
'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004,
'Load Store Unit/Subthreshold Leakage': 0.591321,
'Load Store Unit/Subthreshold Leakage with power gating': 0.283293,
'Memory Management Unit/Area': 0.4339,
'Memory Management Unit/Dtlb/Area': 0.0879726,
'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729,
'Memory Management Unit/Dtlb/Peak Dynamic': 0.0720026,
'Memory Management Unit/Dtlb/Runtime Dynamic': 0.072176,
'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699,
'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485,
'Memory Management Unit/Gate Leakage': 0.00808595,
'Memory Management Unit/Itlb/Area': 0.301552,
'Memory Management Unit/Itlb/Gate Leakage': 0.00393464,
'Memory Management Unit/Itlb/Peak Dynamic': 0.276982,
'Memory Management Unit/Itlb/Runtime Dynamic': 0.0322494,
'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758,
'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842,
'Memory Management Unit/Peak Dynamic': 0.556779,
'Memory Management Unit/Runtime Dynamic': 0.104425,
'Memory Management Unit/Subthreshold Leakage': 0.0766103,
'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333,
'Peak Dynamic': 20.0738,
'Renaming Unit/Area': 0.303608,
'Renaming Unit/FP Front End RAT/Area': 0.131045,
'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123,
'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468,
'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.160298,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571,
'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885,
'Renaming Unit/Free List/Area': 0.0340654,
'Renaming Unit/Free List/Gate Leakage': 2.5481e-05,
'Renaming Unit/Free List/Peak Dynamic': 0.0306032,
'Renaming Unit/Free List/Runtime Dynamic': 0.0125466,
'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144,
'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064,
'Renaming Unit/Gate Leakage': 0.00708398,
'Renaming Unit/Int Front End RAT/Area': 0.0941223,
'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242,
'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965,
'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.117527,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488,
'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228,
'Renaming Unit/Peak Dynamic': 3.58947,
'Renaming Unit/Runtime Dynamic': 0.290371,
'Renaming Unit/Subthreshold Leakage': 0.0552466,
'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461,
'Runtime Dynamic': 4.76408,
'Subthreshold Leakage': 6.16288,
'Subthreshold Leakage with power gating': 2.55328}],
'DRAM': {'Area': 0,
'Gate Leakage': 0,
'Peak Dynamic': 0.03692902720675173,
'Runtime Dynamic': 0.03692902720675173,
'Subthreshold Leakage': 4.252,
'Subthreshold Leakage with power gating': 4.252},
'L3': [{'Area': 61.9075,
'Gate Leakage': 0.0484137,
'Peak Dynamic': 0.0450672,
'Runtime Dynamic': 0.0273526,
'Subthreshold Leakage': 6.80085,
'Subthreshold Leakage with power gating': 3.32364}],
'Processor': {'Area': 191.908,
'Gate Leakage': 1.53485,
'Peak Dynamic': 92.1192,
'Peak Power': 125.231,
'Runtime Dynamic': 26.9362,
'Subthreshold Leakage': 31.5774,
'Subthreshold Leakage with power gating': 13.9484,
'Total Cores/Area': 128.669,
'Total Cores/Gate Leakage': 1.4798,
'Total Cores/Peak Dynamic': 92.0742,
'Total Cores/Runtime Dynamic': 26.9088,
'Total Cores/Subthreshold Leakage': 24.7074,
'Total Cores/Subthreshold Leakage with power gating': 10.2429,
'Total L3s/Area': 61.9075,
'Total L3s/Gate Leakage': 0.0484137,
'Total L3s/Peak Dynamic': 0.0450672,
'Total L3s/Runtime Dynamic': 0.0273526,
'Total L3s/Subthreshold Leakage': 6.80085,
'Total L3s/Subthreshold Leakage with power gating': 3.32364,
'Total Leakage': 33.1122,
'Total NoCs/Area': 1.33155,
'Total NoCs/Gate Leakage': 0.00662954,
'Total NoCs/Peak Dynamic': 0.0,
'Total NoCs/Runtime Dynamic': 0.0,
'Total NoCs/Subthreshold Leakage': 0.0691322,
'Total NoCs/Subthreshold Leakage with power gating': 0.0259246}} | power = {'BUSES': {'Area': 1.33155, 'Bus/Area': 1.33155, 'Bus/Gate Leakage': 0.00662954, 'Bus/Peak Dynamic': 0.0, 'Bus/Runtime Dynamic': 0.0, 'Bus/Subthreshold Leakage': 0.0691322, 'Bus/Subthreshold Leakage with power gating': 0.0259246, 'Gate Leakage': 0.00662954, 'Peak Dynamic': 0.0, 'Runtime Dynamic': 0.0, 'Subthreshold Leakage': 0.0691322, 'Subthreshold Leakage with power gating': 0.0259246}, 'Core': [{'Area': 32.6082, 'Execution Unit/Area': 8.2042, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 0.17631, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.341171, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 0.806988, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.122718, 'Execution Unit/Instruction Scheduler/Area': 2.17927, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.328073, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.00115349, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.20978, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.678107, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.017004, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00962066, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00730101, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 1.00996, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00529112, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 2.07911, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 1.17424, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0800117, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0455351, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 4.84781, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.841232, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.000856399, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.55892, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.673457, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.0178624, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00897339, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 2.5258, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.114878, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.0641291, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.546557, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 7.50583, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.152457, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.0245819, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.249667, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.181798, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.402124, 'Execution Unit/Register Files/Runtime Dynamic': 0.20638, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0442632, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00607074, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.6516, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 1.66803, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.0920413, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0345155, 'Execution Unit/Runtime Dynamic': 5.14676, 'Execution Unit/Subthreshold Leakage': 1.83518, 'Execution Unit/Subthreshold Leakage with power gating': 0.709678, 'Gate Leakage': 0.372997, 'Instruction Fetch Unit/Area': 5.86007, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00323952, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00323952, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00281254, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.00108381, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.00261155, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.0119031, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0313847, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0590479, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.174767, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 6.43323, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.498264, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.593588, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 8.96874, 'Instruction Fetch Unit/Runtime Dynamic': 1.30991, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932587, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.408542, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0417119, 'L2/Runtime Dynamic': 0.00895503, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80969, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 7.65323, 'Load Store Unit/Data Cache/Runtime Dynamic': 3.09794, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0351387, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.207576, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.207577, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 8.63744, 'Load Store Unit/Runtime Dynamic': 4.32921, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.511848, 'Load Store Unit/StoreQ/Runtime Dynamic': 1.0237, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591622, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283406, 'Memory Management Unit/Area': 0.434579, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.181657, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.182043, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00813591, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.399995, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0823927, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.872543, 'Memory Management Unit/Runtime Dynamic': 0.264436, 'Memory Management Unit/Subthreshold Leakage': 0.0769113, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0399462, 'Peak Dynamic': 30.588, 'Renaming Unit/Area': 0.369768, 'Renaming Unit/FP Front End RAT/Area': 0.168486, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00489731, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 3.33511, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.531889, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0437281, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.024925, 'Renaming Unit/Free List/Area': 0.0414755, 'Renaming Unit/Free List/Gate Leakage': 4.15911e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0401324, 'Renaming Unit/Free List/Runtime Dynamic': 0.041075, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000670426, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000377987, 'Renaming Unit/Gate Leakage': 0.00863632, 'Renaming Unit/Int Front End RAT/Area': 0.114751, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.00038343, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.86945, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.345677, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00611897, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00348781, 'Renaming Unit/Peak Dynamic': 4.56169, 'Renaming Unit/Runtime Dynamic': 0.918641, 'Renaming Unit/Subthreshold Leakage': 0.070483, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0362779, 'Runtime Dynamic': 11.9779, 'Subthreshold Leakage': 6.21877, 'Subthreshold Leakage with power gating': 2.58311}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 0.09189, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.274863, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 0.419705, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.253039, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.408142, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.206016, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.867197, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.225057, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 5.04672, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.0792913, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.0106136, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.114263, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0784939, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.193555, 'Execution Unit/Register Files/Runtime Dynamic': 0.0891075, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.263699, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.653585, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 2.29013, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.0013419, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.0013419, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.0012059, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.00048712, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.00112757, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00501726, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0115401, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0754582, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 4.79979, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.212928, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.25629, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 7.25125, 'Instruction Fetch Unit/Runtime Dynamic': 0.561233, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0199704, 'L2/Runtime Dynamic': 0.00446198, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 3.99851, 'Load Store Unit/Data Cache/Runtime Dynamic': 1.33528, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0893374, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0893374, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 4.42038, 'Load Store Unit/Runtime Dynamic': 1.86519, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.220291, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.440582, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0781819, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0783831, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.298433, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0351985, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.588845, 'Memory Management Unit/Runtime Dynamic': 0.113582, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 20.9166, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.208579, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.0139548, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.125795, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.348329, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 5.18293, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 0.0796071, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.265215, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 0.368265, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.242529, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.39119, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.197459, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.831177, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.220921, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 4.93944, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.0695731, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.0101727, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.105871, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0752336, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.175444, 'Execution Unit/Register Files/Runtime Dynamic': 0.0854064, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.242947, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.6168, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 2.20398, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00137678, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00137678, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.0012417, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000503941, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.00108074, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.005076, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0116811, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.072324, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 4.60043, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.201174, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.245645, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 7.04221, 'Instruction Fetch Unit/Runtime Dynamic': 0.5359, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0198483, 'L2/Runtime Dynamic': 0.00437042, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 3.92192, 'Load Store Unit/Data Cache/Runtime Dynamic': 1.29772, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0868595, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0868595, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 4.33209, 'Load Store Unit/Runtime Dynamic': 1.81294, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.214181, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.428361, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0760135, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.0762049, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.286038, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.033295, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.572724, 'Memory Management Unit/Runtime Dynamic': 0.1095, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 20.4958, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.183015, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.0131695, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.121033, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.317218, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 4.9839, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}, {'Area': 32.0201, 'Execution Unit/Area': 7.68434, 'Execution Unit/Complex ALUs/Area': 0.235435, 'Execution Unit/Complex ALUs/Gate Leakage': 0.0132646, 'Execution Unit/Complex ALUs/Peak Dynamic': 0.0694583, 'Execution Unit/Complex ALUs/Runtime Dynamic': 0.257244, 'Execution Unit/Complex ALUs/Subthreshold Leakage': 0.20111, 'Execution Unit/Complex ALUs/Subthreshold Leakage with power gating': 0.0754163, 'Execution Unit/Floating Point Units/Area': 4.6585, 'Execution Unit/Floating Point Units/Gate Leakage': 0.0656156, 'Execution Unit/Floating Point Units/Peak Dynamic': 0.322554, 'Execution Unit/Floating Point Units/Runtime Dynamic': 0.304033, 'Execution Unit/Floating Point Units/Subthreshold Leakage': 0.994829, 'Execution Unit/Floating Point Units/Subthreshold Leakage with power gating': 0.373061, 'Execution Unit/Gate Leakage': 0.120359, 'Execution Unit/Instruction Scheduler/Area': 1.66526, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Area': 0.275653, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Gate Leakage': 0.000977433, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Peak Dynamic': 1.04181, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Runtime Dynamic': 0.23485, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage': 0.0143453, 'Execution Unit/Instruction Scheduler/FP Instruction Window/Subthreshold Leakage with power gating': 0.00810519, 'Execution Unit/Instruction Scheduler/Gate Leakage': 0.00568913, 'Execution Unit/Instruction Scheduler/Instruction Window/Area': 0.805223, 'Execution Unit/Instruction Scheduler/Instruction Window/Gate Leakage': 0.00414562, 'Execution Unit/Instruction Scheduler/Instruction Window/Peak Dynamic': 1.6763, 'Execution Unit/Instruction Scheduler/Instruction Window/Runtime Dynamic': 0.378805, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage': 0.0625755, 'Execution Unit/Instruction Scheduler/Instruction Window/Subthreshold Leakage with power gating': 0.0355964, 'Execution Unit/Instruction Scheduler/Peak Dynamic': 3.82262, 'Execution Unit/Instruction Scheduler/ROB/Area': 0.584388, 'Execution Unit/Instruction Scheduler/ROB/Gate Leakage': 0.00056608, 'Execution Unit/Instruction Scheduler/ROB/Peak Dynamic': 1.10451, 'Execution Unit/Instruction Scheduler/ROB/Runtime Dynamic': 0.191208, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage': 0.00906853, 'Execution Unit/Instruction Scheduler/ROB/Subthreshold Leakage with power gating': 0.00364446, 'Execution Unit/Instruction Scheduler/Runtime Dynamic': 0.804862, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage': 0.0859892, 'Execution Unit/Instruction Scheduler/Subthreshold Leakage with power gating': 0.047346, 'Execution Unit/Integer ALUs/Area': 0.47087, 'Execution Unit/Integer ALUs/Gate Leakage': 0.0265291, 'Execution Unit/Integer ALUs/Peak Dynamic': 0.219148, 'Execution Unit/Integer ALUs/Runtime Dynamic': 0.101344, 'Execution Unit/Integer ALUs/Subthreshold Leakage': 0.40222, 'Execution Unit/Integer ALUs/Subthreshold Leakage with power gating': 0.150833, 'Execution Unit/Peak Dynamic': 4.85021, 'Execution Unit/Register Files/Area': 0.570804, 'Execution Unit/Register Files/Floating Point RF/Area': 0.208131, 'Execution Unit/Register Files/Floating Point RF/Gate Leakage': 0.000232788, 'Execution Unit/Register Files/Floating Point RF/Peak Dynamic': 0.0609374, 'Execution Unit/Register Files/Floating Point RF/Runtime Dynamic': 0.00985067, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage': 0.00399698, 'Execution Unit/Register Files/Floating Point RF/Subthreshold Leakage with power gating': 0.00176968, 'Execution Unit/Register Files/Gate Leakage': 0.000622708, 'Execution Unit/Register Files/Integer RF/Area': 0.362673, 'Execution Unit/Register Files/Integer RF/Gate Leakage': 0.00038992, 'Execution Unit/Register Files/Integer RF/Peak Dynamic': 0.0993729, 'Execution Unit/Register Files/Integer RF/Runtime Dynamic': 0.0728517, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage': 0.00614175, 'Execution Unit/Register Files/Integer RF/Subthreshold Leakage with power gating': 0.00246675, 'Execution Unit/Register Files/Peak Dynamic': 0.16031, 'Execution Unit/Register Files/Runtime Dynamic': 0.0827024, 'Execution Unit/Register Files/Subthreshold Leakage': 0.0101387, 'Execution Unit/Register Files/Subthreshold Leakage with power gating': 0.00423643, 'Execution Unit/Results Broadcast Bus/Area Overhead': 0.0390912, 'Execution Unit/Results Broadcast Bus/Gate Leakage': 0.00537402, 'Execution Unit/Results Broadcast Bus/Peak Dynamic': 0.226719, 'Execution Unit/Results Broadcast Bus/Runtime Dynamic': 0.579138, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage': 0.081478, 'Execution Unit/Results Broadcast Bus/Subthreshold Leakage with power gating': 0.0305543, 'Execution Unit/Runtime Dynamic': 2.12932, 'Execution Unit/Subthreshold Leakage': 1.79543, 'Execution Unit/Subthreshold Leakage with power gating': 0.688821, 'Gate Leakage': 0.368936, 'Instruction Fetch Unit/Area': 5.85939, 'Instruction Fetch Unit/Branch Predictor/Area': 0.138516, 'Instruction Fetch Unit/Branch Predictor/Chooser/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Chooser/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Chooser/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Chooser/Runtime Dynamic': 0.00147251, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Chooser/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/Gate Leakage': 0.000757657, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Area': 0.0435221, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Gate Leakage': 0.000278362, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Peak Dynamic': 0.0168831, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Runtime Dynamic': 0.00147251, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage': 0.00759719, 'Instruction Fetch Unit/Branch Predictor/Global Predictor/Subthreshold Leakage with power gating': 0.0039236, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Area': 0.0257064, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Gate Leakage': 0.000154548, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Peak Dynamic': 0.0142575, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Runtime Dynamic': 0.00132897, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage': 0.00384344, 'Instruction Fetch Unit/Branch Predictor/L1_Local Predictor/Subthreshold Leakage with power gating': 0.00198631, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Area': 0.0151917, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Gate Leakage': 8.00196e-05, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Peak Dynamic': 0.00527447, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Runtime Dynamic': 0.000539855, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage': 0.00181347, 'Instruction Fetch Unit/Branch Predictor/L2_Local Predictor/Subthreshold Leakage with power gating': 0.000957045, 'Instruction Fetch Unit/Branch Predictor/Peak Dynamic': 0.0597838, 'Instruction Fetch Unit/Branch Predictor/RAS/Area': 0.0105732, 'Instruction Fetch Unit/Branch Predictor/RAS/Gate Leakage': 4.63858e-05, 'Instruction Fetch Unit/Branch Predictor/RAS/Peak Dynamic': 0.0117602, 'Instruction Fetch Unit/Branch Predictor/RAS/Runtime Dynamic': 0.00104652, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage': 0.000932505, 'Instruction Fetch Unit/Branch Predictor/RAS/Subthreshold Leakage with power gating': 0.000494733, 'Instruction Fetch Unit/Branch Predictor/Runtime Dynamic': 0.00532051, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage': 0.0199703, 'Instruction Fetch Unit/Branch Predictor/Subthreshold Leakage with power gating': 0.0103282, 'Instruction Fetch Unit/Branch Target Buffer/Area': 0.64954, 'Instruction Fetch Unit/Branch Target Buffer/Gate Leakage': 0.00272758, 'Instruction Fetch Unit/Branch Target Buffer/Peak Dynamic': 0.177867, 'Instruction Fetch Unit/Branch Target Buffer/Runtime Dynamic': 0.0124598, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage': 0.0811682, 'Instruction Fetch Unit/Branch Target Buffer/Subthreshold Leakage with power gating': 0.0435357, 'Instruction Fetch Unit/Gate Leakage': 0.0589979, 'Instruction Fetch Unit/Instruction Buffer/Area': 0.0226323, 'Instruction Fetch Unit/Instruction Buffer/Gate Leakage': 6.83558e-05, 'Instruction Fetch Unit/Instruction Buffer/Peak Dynamic': 0.606827, 'Instruction Fetch Unit/Instruction Buffer/Runtime Dynamic': 0.0700342, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage': 0.00151885, 'Instruction Fetch Unit/Instruction Buffer/Subthreshold Leakage with power gating': 0.000701682, 'Instruction Fetch Unit/Instruction Cache/Area': 3.14635, 'Instruction Fetch Unit/Instruction Cache/Gate Leakage': 0.029931, 'Instruction Fetch Unit/Instruction Cache/Peak Dynamic': 4.45478, 'Instruction Fetch Unit/Instruction Cache/Runtime Dynamic': 0.194678, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage': 0.367022, 'Instruction Fetch Unit/Instruction Cache/Subthreshold Leakage with power gating': 0.180386, 'Instruction Fetch Unit/Instruction Decoder/Area': 1.85799, 'Instruction Fetch Unit/Instruction Decoder/Gate Leakage': 0.0222493, 'Instruction Fetch Unit/Instruction Decoder/Peak Dynamic': 1.37404, 'Instruction Fetch Unit/Instruction Decoder/Runtime Dynamic': 0.237868, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage': 0.442943, 'Instruction Fetch Unit/Instruction Decoder/Subthreshold Leakage with power gating': 0.166104, 'Instruction Fetch Unit/Peak Dynamic': 6.8895, 'Instruction Fetch Unit/Runtime Dynamic': 0.52036, 'Instruction Fetch Unit/Subthreshold Leakage': 0.932286, 'Instruction Fetch Unit/Subthreshold Leakage with power gating': 0.40843, 'L2/Area': 4.53318, 'L2/Gate Leakage': 0.015464, 'L2/Peak Dynamic': 0.0190747, 'L2/Runtime Dynamic': 0.00390663, 'L2/Subthreshold Leakage': 0.834142, 'L2/Subthreshold Leakage with power gating': 0.401066, 'Load Store Unit/Area': 8.80901, 'Load Store Unit/Data Cache/Area': 6.84535, 'Load Store Unit/Data Cache/Gate Leakage': 0.0279261, 'Load Store Unit/Data Cache/Peak Dynamic': 3.78025, 'Load Store Unit/Data Cache/Runtime Dynamic': 1.22766, 'Load Store Unit/Data Cache/Subthreshold Leakage': 0.527675, 'Load Store Unit/Data Cache/Subthreshold Leakage with power gating': 0.25085, 'Load Store Unit/Gate Leakage': 0.0350888, 'Load Store Unit/LoadQ/Area': 0.0836782, 'Load Store Unit/LoadQ/Gate Leakage': 0.00059896, 'Load Store Unit/LoadQ/Peak Dynamic': 0.0822764, 'Load Store Unit/LoadQ/Runtime Dynamic': 0.0822764, 'Load Store Unit/LoadQ/Subthreshold Leakage': 0.00941961, 'Load Store Unit/LoadQ/Subthreshold Leakage with power gating': 0.00536918, 'Load Store Unit/Peak Dynamic': 4.16878, 'Load Store Unit/Runtime Dynamic': 1.71569, 'Load Store Unit/StoreQ/Area': 0.322079, 'Load Store Unit/StoreQ/Gate Leakage': 0.00329971, 'Load Store Unit/StoreQ/Peak Dynamic': 0.202879, 'Load Store Unit/StoreQ/Runtime Dynamic': 0.405759, 'Load Store Unit/StoreQ/Subthreshold Leakage': 0.0345621, 'Load Store Unit/StoreQ/Subthreshold Leakage with power gating': 0.0197004, 'Load Store Unit/Subthreshold Leakage': 0.591321, 'Load Store Unit/Subthreshold Leakage with power gating': 0.283293, 'Memory Management Unit/Area': 0.4339, 'Memory Management Unit/Dtlb/Area': 0.0879726, 'Memory Management Unit/Dtlb/Gate Leakage': 0.00088729, 'Memory Management Unit/Dtlb/Peak Dynamic': 0.0720026, 'Memory Management Unit/Dtlb/Runtime Dynamic': 0.072176, 'Memory Management Unit/Dtlb/Subthreshold Leakage': 0.0155699, 'Memory Management Unit/Dtlb/Subthreshold Leakage with power gating': 0.00887485, 'Memory Management Unit/Gate Leakage': 0.00808595, 'Memory Management Unit/Itlb/Area': 0.301552, 'Memory Management Unit/Itlb/Gate Leakage': 0.00393464, 'Memory Management Unit/Itlb/Peak Dynamic': 0.276982, 'Memory Management Unit/Itlb/Runtime Dynamic': 0.0322494, 'Memory Management Unit/Itlb/Subthreshold Leakage': 0.0413758, 'Memory Management Unit/Itlb/Subthreshold Leakage with power gating': 0.0235842, 'Memory Management Unit/Peak Dynamic': 0.556779, 'Memory Management Unit/Runtime Dynamic': 0.104425, 'Memory Management Unit/Subthreshold Leakage': 0.0766103, 'Memory Management Unit/Subthreshold Leakage with power gating': 0.0398333, 'Peak Dynamic': 20.0738, 'Renaming Unit/Area': 0.303608, 'Renaming Unit/FP Front End RAT/Area': 0.131045, 'Renaming Unit/FP Front End RAT/Gate Leakage': 0.00351123, 'Renaming Unit/FP Front End RAT/Peak Dynamic': 2.51468, 'Renaming Unit/FP Front End RAT/Runtime Dynamic': 0.160298, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage': 0.0308571, 'Renaming Unit/FP Front End RAT/Subthreshold Leakage with power gating': 0.0175885, 'Renaming Unit/Free List/Area': 0.0340654, 'Renaming Unit/Free List/Gate Leakage': 2.5481e-05, 'Renaming Unit/Free List/Peak Dynamic': 0.0306032, 'Renaming Unit/Free List/Runtime Dynamic': 0.0125466, 'Renaming Unit/Free List/Subthreshold Leakage': 0.000370144, 'Renaming Unit/Free List/Subthreshold Leakage with power gating': 0.000201064, 'Renaming Unit/Gate Leakage': 0.00708398, 'Renaming Unit/Int Front End RAT/Area': 0.0941223, 'Renaming Unit/Int Front End RAT/Gate Leakage': 0.000283242, 'Renaming Unit/Int Front End RAT/Peak Dynamic': 0.731965, 'Renaming Unit/Int Front End RAT/Runtime Dynamic': 0.117527, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage': 0.00435488, 'Renaming Unit/Int Front End RAT/Subthreshold Leakage with power gating': 0.00248228, 'Renaming Unit/Peak Dynamic': 3.58947, 'Renaming Unit/Runtime Dynamic': 0.290371, 'Renaming Unit/Subthreshold Leakage': 0.0552466, 'Renaming Unit/Subthreshold Leakage with power gating': 0.0276461, 'Runtime Dynamic': 4.76408, 'Subthreshold Leakage': 6.16288, 'Subthreshold Leakage with power gating': 2.55328}], 'DRAM': {'Area': 0, 'Gate Leakage': 0, 'Peak Dynamic': 0.03692902720675173, 'Runtime Dynamic': 0.03692902720675173, 'Subthreshold Leakage': 4.252, 'Subthreshold Leakage with power gating': 4.252}, 'L3': [{'Area': 61.9075, 'Gate Leakage': 0.0484137, 'Peak Dynamic': 0.0450672, 'Runtime Dynamic': 0.0273526, 'Subthreshold Leakage': 6.80085, 'Subthreshold Leakage with power gating': 3.32364}], 'Processor': {'Area': 191.908, 'Gate Leakage': 1.53485, 'Peak Dynamic': 92.1192, 'Peak Power': 125.231, 'Runtime Dynamic': 26.9362, 'Subthreshold Leakage': 31.5774, 'Subthreshold Leakage with power gating': 13.9484, 'Total Cores/Area': 128.669, 'Total Cores/Gate Leakage': 1.4798, 'Total Cores/Peak Dynamic': 92.0742, 'Total Cores/Runtime Dynamic': 26.9088, 'Total Cores/Subthreshold Leakage': 24.7074, 'Total Cores/Subthreshold Leakage with power gating': 10.2429, 'Total L3s/Area': 61.9075, 'Total L3s/Gate Leakage': 0.0484137, 'Total L3s/Peak Dynamic': 0.0450672, 'Total L3s/Runtime Dynamic': 0.0273526, 'Total L3s/Subthreshold Leakage': 6.80085, 'Total L3s/Subthreshold Leakage with power gating': 3.32364, 'Total Leakage': 33.1122, 'Total NoCs/Area': 1.33155, 'Total NoCs/Gate Leakage': 0.00662954, 'Total NoCs/Peak Dynamic': 0.0, 'Total NoCs/Runtime Dynamic': 0.0, 'Total NoCs/Subthreshold Leakage': 0.0691322, 'Total NoCs/Subthreshold Leakage with power gating': 0.0259246}} |
coordinates_006B7F = ((113, 130),
(113, 131), (114, 129), (114, 131), (115, 128), (115, 131), (116, 127), (116, 129), (116, 130), (116, 132), (117, 126), (117, 128), (117, 129), (117, 130), (117, 131), (117, 133), (118, 125), (118, 127), (118, 128), (118, 129), (118, 130), (118, 131), (118, 132), (118, 135), (119, 125), (119, 127), (119, 128), (119, 129), (119, 130), (119, 131), (119, 132), (119, 133), (119, 135), (120, 125), (120, 127), (120, 128), (120, 129), (120, 130), (120, 131), (120, 132), (120, 133), (120, 134), (120, 136), (121, 125), (121, 127), (121, 128), (121, 129), (121, 130), (121, 131), (121, 132), (121, 133), (121, 134), (121, 136), (122, 126), (122, 128), (122, 129), (122, 130), (122, 131), (122, 132), (122, 133), (122, 134), (122, 136), (123, 127), (123, 129), (123, 130), (123, 131), (123, 132), (123, 133), (123, 134), (123, 135), (123, 137), (124, 127), (124, 130),
(124, 131), (124, 132), (124, 133), (124, 134), (124, 135), (124, 137), (125, 128), (125, 131), (125, 132), (125, 133), (125, 134), (125, 135), (125, 137), (126, 129), (126, 132), (126, 133), (126, 134), (126, 135), (126, 137), (127, 131), (127, 134), (127, 135), (127, 137), (128, 132), (128, 137), (129, 134), (129, 137), (269, 137), (270, 134), (270, 137), (271, 132), (271, 137), (272, 131), (272, 134), (272, 135), (272, 137), (273, 129), (273, 132), (273, 133), (273, 134), (273, 135), (273, 137), (274, 128), (274, 131), (274, 132), (274, 133), (274, 134), (274, 135), (274, 137), (275, 127), (275, 130), (275, 131), (275, 132), (275, 133), (275, 134), (275, 135), (275, 137), (276, 129), (276, 130), (276, 131), (276, 132), (276, 133), (276, 134), (276, 135), (276, 137), (277, 126), (277, 128), (277, 129), (277, 130), (277, 131), (277, 132), (277, 133),
(277, 134), (277, 136), (278, 125), (278, 127), (278, 128), (278, 129), (278, 130), (278, 131), (278, 132), (278, 133), (278, 134), (278, 136), (279, 125), (279, 127), (279, 128), (279, 129), (279, 130), (279, 131), (279, 132), (279, 133), (279, 134), (279, 136), (280, 125), (280, 127), (280, 128), (280, 129), (280, 130), (280, 131), (280, 132), (280, 133), (280, 135), (281, 125), (281, 127), (281, 128), (281, 129), (281, 130), (281, 131), (281, 132), (281, 135), (282, 126), (282, 128), (282, 129), (282, 130), (282, 131), (282, 133), (283, 127), (283, 129), (283, 130), (283, 132), (284, 128), (284, 131), (285, 129), (285, 131), (286, 131), )
coordinates_00EBFF = ((73, 202),
(73, 205), (74, 201), (74, 205), (75, 200), (75, 202), (75, 203), (75, 204), (75, 206), (76, 199), (76, 201), (76, 202), (76, 203), (76, 204), (76, 206), (77, 198), (77, 200), (77, 201), (77, 202), (77, 203), (77, 204), (77, 206), (78, 198), (78, 200), (78, 201), (78, 202), (78, 203), (78, 205), (79, 197), (79, 199), (79, 200), (79, 201), (79, 202), (79, 203), (79, 205), (80, 196), (80, 198), (80, 199), (80, 200), (80, 201), (80, 202), (80, 203), (80, 205), (81, 195), (81, 197), (81, 198), (81, 199), (81, 200), (81, 201), (81, 202), (81, 204), (82, 193), (82, 196), (82, 197), (82, 198), (82, 199), (82, 200), (82, 201), (82, 203), (83, 147), (83, 149), (83, 192), (83, 195), (83, 196), (83, 197), (83, 198), (83, 199), (83, 200), (83, 203), (84, 145), (84, 149), (84, 192), (84, 194),
(84, 195), (84, 196), (84, 197), (84, 198), (84, 199), (84, 200), (84, 202), (85, 143), (85, 147), (85, 149), (85, 191), (85, 193), (85, 194), (85, 195), (85, 196), (85, 197), (85, 198), (85, 199), (85, 201), (86, 142), (86, 145), (86, 146), (86, 147), (86, 149), (86, 190), (86, 192), (86, 193), (86, 194), (86, 195), (86, 196), (86, 197), (86, 200), (87, 140), (87, 143), (87, 144), (87, 145), (87, 146), (87, 147), (87, 149), (87, 191), (87, 192), (87, 193), (87, 194), (87, 195), (87, 196), (87, 199), (88, 142), (88, 143), (88, 144), (88, 145), (88, 146), (88, 147), (88, 149), (88, 187), (88, 190), (88, 191), (88, 192), (88, 193), (88, 194), (88, 195), (88, 198), (89, 139), (89, 141), (89, 142), (89, 143), (89, 144), (89, 145), (89, 146), (89, 147), (89, 148), (89, 150), (89, 186),
(89, 189), (89, 190), (89, 191), (89, 192), (89, 193), (89, 194), (90, 139), (90, 141), (90, 142), (90, 143), (90, 144), (90, 145), (90, 146), (90, 147), (90, 148), (90, 150), (90, 184), (90, 187), (90, 188), (90, 189), (90, 190), (90, 191), (90, 192), (90, 193), (90, 195), (91, 139), (91, 141), (91, 142), (91, 143), (91, 144), (91, 145), (91, 146), (91, 147), (91, 148), (91, 150), (91, 182), (91, 183), (91, 186), (91, 187), (91, 188), (91, 189), (91, 190), (91, 191), (91, 192), (91, 194), (92, 139), (92, 141), (92, 142), (92, 143), (92, 144), (92, 145), (92, 146), (92, 147), (92, 148), (92, 149), (92, 151), (92, 180), (92, 184), (92, 185), (92, 186), (92, 187), (92, 188), (92, 189), (92, 190), (92, 191), (92, 193), (93, 139), (93, 141), (93, 142), (93, 143), (93, 144), (93, 145),
(93, 146), (93, 147), (93, 148), (93, 149), (93, 151), (93, 178), (93, 182), (93, 183), (93, 184), (93, 185), (93, 186), (93, 187), (93, 188), (93, 189), (93, 190), (93, 192), (94, 140), (94, 142), (94, 143), (94, 144), (94, 145), (94, 146), (94, 147), (94, 148), (94, 149), (94, 151), (94, 177), (94, 180), (94, 181), (94, 182), (94, 183), (94, 184), (94, 185), (94, 186), (94, 187), (94, 188), (94, 189), (94, 191), (95, 140), (95, 142), (95, 143), (95, 144), (95, 145), (95, 146), (95, 147), (95, 148), (95, 149), (95, 150), (95, 152), (95, 175), (95, 178), (95, 179), (95, 180), (95, 181), (95, 182), (95, 183), (95, 184), (95, 185), (95, 186), (95, 187), (95, 188), (95, 190), (96, 141), (96, 143), (96, 144), (96, 145), (96, 146), (96, 147), (96, 148), (96, 149), (96, 150), (96, 152),
(96, 174), (96, 177), (96, 178), (96, 179), (96, 180), (96, 181), (96, 182), (96, 183), (96, 184), (96, 185), (96, 186), (96, 187), (96, 189), (97, 142), (97, 144), (97, 145), (97, 146), (97, 147), (97, 148), (97, 149), (97, 150), (97, 151), (97, 153), (97, 173), (97, 175), (97, 176), (97, 177), (97, 178), (97, 179), (97, 180), (97, 181), (97, 182), (97, 183), (97, 184), (97, 185), (97, 186), (97, 188), (98, 142), (98, 144), (98, 145), (98, 146), (98, 147), (98, 148), (98, 149), (98, 150), (98, 151), (98, 153), (98, 174), (98, 175), (98, 176), (98, 177), (98, 178), (98, 179), (98, 180), (98, 181), (98, 182), (98, 183), (98, 184), (98, 185), (98, 187), (99, 143), (99, 145), (99, 146), (99, 147), (99, 148), (99, 149), (99, 150), (99, 151), (99, 152), (99, 154), (99, 170), (99, 173),
(99, 174), (99, 175), (99, 176), (99, 177), (99, 178), (99, 179), (99, 180), (99, 181), (99, 182), (99, 183), (99, 184), (99, 186), (100, 143), (100, 145), (100, 146), (100, 147), (100, 148), (100, 149), (100, 150), (100, 151), (100, 152), (100, 153), (100, 155), (100, 167), (100, 172), (100, 173), (100, 174), (100, 175), (100, 176), (100, 177), (100, 178), (100, 179), (100, 180), (100, 181), (100, 182), (100, 183), (100, 185), (101, 144), (101, 146), (101, 147), (101, 148), (101, 149), (101, 150), (101, 151), (101, 152), (101, 153), (101, 154), (101, 156), (101, 165), (101, 170), (101, 171), (101, 172), (101, 173), (101, 174), (101, 175), (101, 176), (101, 177), (101, 178), (101, 179), (101, 180), (101, 181), (101, 182), (101, 183), (101, 185), (102, 144), (102, 146), (102, 147), (102, 148), (102, 149), (102, 150), (102, 151), (102, 152),
(102, 153), (102, 154), (102, 155), (102, 157), (102, 164), (102, 167), (102, 168), (102, 169), (102, 170), (102, 171), (102, 172), (102, 173), (102, 174), (102, 175), (102, 176), (102, 177), (102, 178), (102, 179), (102, 180), (102, 181), (102, 182), (102, 184), (103, 144), (103, 146), (103, 147), (103, 148), (103, 149), (103, 150), (103, 151), (103, 152), (103, 153), (103, 154), (103, 155), (103, 156), (103, 159), (103, 160), (103, 161), (103, 162), (103, 165), (103, 166), (103, 167), (103, 168), (103, 169), (103, 170), (103, 171), (103, 172), (103, 173), (103, 174), (103, 175), (103, 176), (103, 177), (103, 178), (103, 179), (103, 180), (103, 181), (103, 184), (104, 145), (104, 147), (104, 148), (104, 149), (104, 150), (104, 151), (104, 152), (104, 153), (104, 154), (104, 155), (104, 156), (104, 157), (104, 164), (104, 165), (104, 166), (104, 167),
(104, 168), (104, 169), (104, 170), (104, 171), (104, 172), (104, 173), (104, 174), (104, 175), (104, 176), (104, 177), (104, 178), (104, 179), (104, 180), (104, 184), (105, 145), (105, 147), (105, 148), (105, 149), (105, 150), (105, 151), (105, 152), (105, 153), (105, 154), (105, 155), (105, 156), (105, 157), (105, 158), (105, 159), (105, 160), (105, 161), (105, 162), (105, 163), (105, 164), (105, 165), (105, 166), (105, 167), (105, 168), (105, 169), (105, 170), (105, 171), (105, 172), (105, 173), (105, 174), (105, 175), (105, 176), (105, 177), (105, 178), (105, 179), (105, 181), (106, 145), (106, 148), (106, 149), (106, 150), (106, 151), (106, 152), (106, 153), (106, 154), (106, 155), (106, 156), (106, 157), (106, 158), (106, 159), (106, 160), (106, 161), (106, 162), (106, 163), (106, 164), (106, 165), (106, 166), (106, 167), (106, 168), (106, 169),
(106, 170), (106, 171), (106, 172), (106, 173), (106, 174), (106, 175), (106, 176), (106, 177), (106, 178), (106, 180), (107, 147), (107, 149), (107, 150), (107, 151), (107, 152), (107, 153), (107, 154), (107, 155), (107, 156), (107, 157), (107, 158), (107, 159), (107, 160), (107, 161), (107, 162), (107, 163), (107, 164), (107, 165), (107, 166), (107, 167), (107, 168), (107, 169), (107, 170), (107, 171), (107, 172), (107, 173), (107, 174), (107, 175), (107, 176), (107, 177), (107, 179), (108, 148), (108, 150), (108, 151), (108, 152), (108, 153), (108, 154), (108, 155), (108, 156), (108, 157), (108, 158), (108, 159), (108, 160), (108, 161), (108, 162), (108, 163), (108, 164), (108, 165), (108, 166), (108, 167), (108, 168), (108, 169), (108, 170), (108, 171), (108, 172), (108, 173), (108, 174), (108, 175), (108, 176), (108, 178), (109, 148), (109, 150),
(109, 151), (109, 152), (109, 153), (109, 154), (109, 155), (109, 156), (109, 157), (109, 158), (109, 159), (109, 160), (109, 161), (109, 162), (109, 163), (109, 164), (109, 165), (109, 166), (109, 167), (109, 168), (109, 169), (109, 170), (109, 171), (109, 172), (109, 173), (109, 174), (109, 175), (109, 176), (109, 178), (110, 148), (110, 150), (110, 151), (110, 152), (110, 153), (110, 154), (110, 155), (110, 156), (110, 157), (110, 158), (110, 159), (110, 160), (110, 161), (110, 162), (110, 163), (110, 164), (110, 165), (110, 166), (110, 167), (110, 168), (110, 169), (110, 170), (110, 171), (110, 172), (110, 173), (110, 174), (110, 175), (110, 177), (111, 149), (111, 151), (111, 152), (111, 153), (111, 154), (111, 155), (111, 156), (111, 157), (111, 158), (111, 159), (111, 160), (111, 161), (111, 162), (111, 163), (111, 164), (111, 165), (111, 166),
(111, 167), (111, 168), (111, 169), (111, 170), (111, 171), (111, 172), (111, 173), (111, 174), (111, 175), (111, 177), (112, 110), (112, 112), (112, 114), (112, 149), (112, 151), (112, 152), (112, 153), (112, 154), (112, 155), (112, 156), (112, 157), (112, 158), (112, 159), (112, 160), (112, 161), (112, 162), (112, 163), (112, 164), (112, 165), (112, 166), (112, 167), (112, 168), (112, 169), (112, 170), (112, 171), (112, 172), (112, 173), (112, 174), (112, 175), (112, 177), (113, 109), (113, 115), (113, 149), (113, 151), (113, 152), (113, 153), (113, 154), (113, 155), (113, 156), (113, 157), (113, 158), (113, 159), (113, 160), (113, 161), (113, 162), (113, 163), (113, 164), (113, 165), (113, 166), (113, 167), (113, 168), (113, 169), (113, 170), (113, 171), (113, 172), (113, 173), (113, 174), (113, 175), (113, 177), (114, 109), (114, 111), (114, 112),
(114, 113), (114, 114), (114, 116), (114, 149), (114, 151), (114, 152), (114, 153), (114, 154), (114, 155), (114, 156), (114, 157), (114, 158), (114, 159), (114, 160), (114, 161), (114, 162), (114, 163), (114, 164), (114, 165), (114, 166), (114, 167), (114, 168), (114, 169), (114, 170), (114, 171), (114, 172), (114, 173), (114, 174), (114, 176), (115, 109), (115, 111), (115, 112), (115, 113), (115, 114), (115, 115), (115, 117), (115, 149), (115, 151), (115, 152), (115, 153), (115, 154), (115, 155), (115, 156), (115, 157), (115, 158), (115, 159), (115, 160), (115, 161), (115, 162), (115, 163), (115, 164), (115, 165), (115, 166), (115, 167), (115, 168), (115, 169), (115, 170), (115, 171), (115, 172), (115, 173), (115, 174), (115, 176), (116, 109), (116, 111), (116, 112), (116, 113), (116, 114), (116, 115), (116, 116), (116, 118), (116, 149), (116, 151),
(116, 152), (116, 153), (116, 154), (116, 155), (116, 156), (116, 157), (116, 158), (116, 159), (116, 160), (116, 161), (116, 162), (116, 163), (116, 164), (116, 165), (116, 166), (116, 167), (116, 168), (116, 169), (116, 170), (116, 171), (116, 172), (116, 173), (116, 174), (116, 176), (117, 110), (117, 112), (117, 113), (117, 114), (117, 115), (117, 116), (117, 117), (117, 119), (117, 149), (117, 151), (117, 152), (117, 153), (117, 154), (117, 155), (117, 156), (117, 157), (117, 158), (117, 159), (117, 160), (117, 161), (117, 162), (117, 163), (117, 164), (117, 165), (117, 166), (117, 167), (117, 168), (117, 169), (117, 170), (117, 171), (117, 172), (117, 173), (117, 174), (117, 176), (118, 110), (118, 112), (118, 113), (118, 114), (118, 115), (118, 116), (118, 117), (118, 118), (118, 120), (118, 149), (118, 151), (118, 152), (118, 153), (118, 154),
(118, 155), (118, 156), (118, 157), (118, 158), (118, 159), (118, 160), (118, 161), (118, 162), (118, 163), (118, 164), (118, 165), (118, 166), (118, 167), (118, 168), (118, 169), (118, 170), (118, 171), (118, 172), (118, 173), (118, 174), (118, 176), (119, 110), (119, 112), (119, 113), (119, 114), (119, 115), (119, 116), (119, 117), (119, 118), (119, 119), (119, 122), (119, 149), (119, 151), (119, 152), (119, 153), (119, 154), (119, 155), (119, 156), (119, 157), (119, 158), (119, 159), (119, 160), (119, 161), (119, 162), (119, 163), (119, 164), (119, 165), (119, 166), (119, 167), (119, 168), (119, 169), (119, 170), (119, 171), (119, 172), (119, 173), (119, 174), (119, 176), (120, 111), (120, 113), (120, 114), (120, 115), (120, 116), (120, 117), (120, 118), (120, 119), (120, 120), (120, 123), (120, 149), (120, 151), (120, 152), (120, 153), (120, 154),
(120, 155), (120, 156), (120, 157), (120, 158), (120, 159), (120, 160), (120, 161), (120, 162), (120, 163), (120, 164), (120, 165), (120, 166), (120, 167), (120, 168), (120, 169), (120, 170), (120, 171), (120, 172), (120, 173), (120, 174), (120, 176), (121, 112), (121, 113), (121, 114), (121, 115), (121, 116), (121, 117), (121, 118), (121, 119), (121, 120), (121, 121), (121, 123), (121, 149), (121, 151), (121, 152), (121, 153), (121, 154), (121, 155), (121, 156), (121, 157), (121, 158), (121, 159), (121, 160), (121, 161), (121, 162), (121, 163), (121, 164), (121, 165), (121, 166), (121, 167), (121, 168), (121, 169), (121, 170), (121, 171), (121, 172), (121, 173), (121, 174), (121, 176), (122, 112), (122, 114), (122, 115), (122, 116), (122, 117), (122, 118), (122, 119), (122, 120), (122, 121), (122, 122), (122, 124), (122, 149), (122, 151), (122, 152),
(122, 153), (122, 154), (122, 155), (122, 156), (122, 157), (122, 158), (122, 159), (122, 160), (122, 161), (122, 162), (122, 163), (122, 164), (122, 165), (122, 166), (122, 167), (122, 168), (122, 169), (122, 170), (122, 171), (122, 172), (122, 173), (122, 174), (122, 175), (122, 176), (122, 177), (123, 113), (123, 115), (123, 116), (123, 117), (123, 118), (123, 119), (123, 120), (123, 121), (123, 122), (123, 124), (123, 148), (123, 149), (123, 150), (123, 151), (123, 152), (123, 153), (123, 154), (123, 155), (123, 156), (123, 157), (123, 158), (123, 159), (123, 160), (123, 161), (123, 162), (123, 163), (123, 164), (123, 165), (123, 166), (123, 167), (123, 168), (123, 169), (123, 170), (123, 171), (123, 172), (123, 173), (123, 174), (123, 175), (123, 177), (124, 113), (124, 117), (124, 118), (124, 119), (124, 120), (124, 121), (124, 122), (124, 123),
(124, 125), (124, 148), (124, 150), (124, 151), (124, 152), (124, 153), (124, 154), (124, 155), (124, 156), (124, 157), (124, 158), (124, 159), (124, 160), (124, 161), (124, 162), (124, 163), (124, 164), (124, 165), (124, 166), (124, 167), (124, 168), (124, 169), (124, 170), (124, 171), (124, 172), (124, 173), (124, 174), (124, 175), (124, 177), (125, 114), (125, 118), (125, 119), (125, 120), (125, 121), (125, 122), (125, 123), (125, 124), (125, 126), (125, 148), (125, 150), (125, 151), (125, 152), (125, 153), (125, 154), (125, 155), (125, 156), (125, 157), (125, 158), (125, 159), (125, 160), (125, 161), (125, 162), (125, 163), (125, 164), (125, 165), (125, 166), (125, 167), (125, 168), (125, 169), (125, 170), (125, 171), (125, 172), (125, 173), (125, 174), (125, 175), (125, 177), (126, 117), (126, 119), (126, 120), (126, 121), (126, 122), (126, 123),
(126, 124), (126, 125), (126, 127), (126, 147), (126, 149), (126, 150), (126, 151), (126, 152), (126, 153), (126, 154), (126, 155), (126, 156), (126, 157), (126, 158), (126, 159), (126, 160), (126, 161), (126, 162), (126, 163), (126, 164), (126, 165), (126, 166), (126, 167), (126, 168), (126, 169), (126, 170), (126, 171), (126, 172), (126, 173), (126, 174), (126, 175), (126, 176), (126, 178), (127, 118), (127, 120), (127, 121), (127, 122), (127, 123), (127, 124), (127, 125), (127, 126), (127, 128), (127, 147), (127, 149), (127, 150), (127, 151), (127, 152), (127, 153), (127, 154), (127, 155), (127, 156), (127, 157), (127, 158), (127, 159), (127, 160), (127, 161), (127, 162), (127, 163), (127, 164), (127, 165), (127, 166), (127, 167), (127, 168), (127, 169), (127, 170), (127, 171), (127, 172), (127, 173), (127, 174), (127, 175), (127, 176), (127, 178),
(128, 119), (128, 121), (128, 122), (128, 123), (128, 124), (128, 125), (128, 126), (128, 127), (128, 129), (128, 148), (128, 149), (128, 150), (128, 151), (128, 152), (128, 153), (128, 154), (128, 155), (128, 156), (128, 157), (128, 158), (128, 159), (128, 160), (128, 161), (128, 162), (128, 163), (128, 164), (128, 165), (128, 166), (128, 167), (128, 168), (128, 169), (128, 170), (128, 171), (128, 172), (128, 173), (128, 174), (128, 175), (128, 176), (128, 177), (128, 179), (129, 120), (129, 122), (129, 123), (129, 124), (129, 125), (129, 126), (129, 127), (129, 128), (129, 130), (129, 142), (129, 143), (129, 144), (129, 147), (129, 148), (129, 149), (129, 150), (129, 151), (129, 152), (129, 153), (129, 154), (129, 155), (129, 156), (129, 157), (129, 158), (129, 159), (129, 160), (129, 161), (129, 162), (129, 163), (129, 164), (129, 165), (129, 166),
(129, 167), (129, 168), (129, 169), (129, 170), (129, 171), (129, 172), (129, 173), (129, 174), (129, 175), (129, 176), (129, 177), (129, 178), (129, 180), (130, 121), (130, 123), (130, 124), (130, 125), (130, 126), (130, 127), (130, 128), (130, 129), (130, 132), (130, 139), (130, 141), (130, 145), (130, 146), (130, 147), (130, 148), (130, 149), (130, 150), (130, 151), (130, 152), (130, 153), (130, 154), (130, 155), (130, 156), (130, 157), (130, 158), (130, 159), (130, 160), (130, 161), (130, 162), (130, 163), (130, 164), (130, 165), (130, 166), (130, 167), (130, 168), (130, 169), (130, 170), (130, 171), (130, 172), (130, 173), (130, 174), (130, 175), (130, 176), (130, 177), (130, 178), (130, 179), (130, 181), (131, 121), (131, 123), (131, 124), (131, 125), (131, 126), (131, 127), (131, 128), (131, 129), (131, 130), (131, 133), (131, 134), (131, 139),
(131, 142), (131, 143), (131, 144), (131, 145), (131, 146), (131, 147), (131, 148), (131, 149), (131, 150), (131, 151), (131, 152), (131, 153), (131, 154), (131, 155), (131, 156), (131, 157), (131, 158), (131, 159), (131, 160), (131, 161), (131, 162), (131, 163), (131, 164), (131, 165), (131, 166), (131, 167), (131, 168), (131, 169), (131, 170), (131, 171), (131, 172), (131, 173), (131, 174), (131, 175), (131, 176), (131, 177), (131, 178), (131, 179), (131, 180), (131, 183), (132, 122), (132, 124), (132, 125), (132, 126), (132, 127), (132, 128), (132, 129), (132, 130), (132, 131), (132, 132), (132, 136), (132, 137), (132, 139), (132, 140), (132, 141), (132, 142), (132, 143), (132, 144), (132, 145), (132, 146), (132, 147), (132, 148), (132, 149), (132, 150), (132, 151), (132, 152), (132, 153), (132, 154), (132, 155), (132, 156), (132, 157), (132, 158),
(132, 159), (132, 160), (132, 161), (132, 162), (132, 163), (132, 164), (132, 165), (132, 166), (132, 167), (132, 168), (132, 169), (132, 170), (132, 171), (132, 172), (132, 173), (132, 174), (132, 175), (132, 176), (132, 177), (132, 178), (132, 179), (132, 180), (132, 181), (132, 186), (133, 122), (133, 124), (133, 125), (133, 126), (133, 127), (133, 128), (133, 129), (133, 130), (133, 131), (133, 132), (133, 133), (133, 134), (133, 135), (133, 138), (133, 139), (133, 140), (133, 141), (133, 142), (133, 143), (133, 144), (133, 145), (133, 146), (133, 147), (133, 148), (133, 149), (133, 150), (133, 151), (133, 152), (133, 153), (133, 154), (133, 155), (133, 156), (133, 157), (133, 158), (133, 159), (133, 160), (133, 161), (133, 162), (133, 163), (133, 164), (133, 165), (133, 166), (133, 167), (133, 168), (133, 169), (133, 170), (133, 171), (133, 172),
(133, 173), (133, 174), (133, 175), (133, 176), (133, 177), (133, 178), (133, 179), (133, 180), (133, 181), (133, 182), (133, 183), (133, 184), (134, 122), (134, 124), (134, 125), (134, 126), (134, 127), (134, 128), (134, 129), (134, 130), (134, 131), (134, 132), (134, 133), (134, 134), (134, 135), (134, 136), (134, 137), (134, 138), (134, 139), (134, 140), (134, 141), (134, 142), (134, 143), (134, 144), (134, 145), (134, 146), (134, 147), (134, 148), (134, 149), (134, 150), (134, 151), (134, 152), (134, 153), (134, 154), (134, 155), (134, 156), (134, 157), (134, 158), (134, 159), (134, 160), (134, 161), (134, 162), (134, 163), (134, 164), (134, 165), (134, 166), (134, 167), (134, 168), (134, 169), (134, 170), (134, 171), (134, 172), (134, 173), (134, 174), (134, 175), (134, 176), (134, 177), (134, 178), (134, 179), (134, 180), (134, 181), (134, 182),
(134, 183), (134, 184), (134, 185), (134, 187), (135, 122), (135, 124), (135, 125), (135, 126), (135, 127), (135, 128), (135, 129), (135, 130), (135, 131), (135, 132), (135, 133), (135, 134), (135, 135), (135, 136), (135, 137), (135, 138), (135, 139), (135, 140), (135, 141), (135, 142), (135, 143), (135, 144), (135, 145), (135, 146), (135, 147), (135, 148), (135, 149), (135, 150), (135, 151), (135, 152), (135, 153), (135, 154), (135, 155), (135, 156), (135, 157), (135, 158), (135, 159), (135, 160), (135, 161), (135, 162), (135, 163), (135, 164), (135, 165), (135, 166), (135, 167), (135, 168), (135, 169), (135, 170), (135, 171), (135, 172), (135, 173), (135, 174), (135, 175), (135, 176), (135, 177), (135, 178), (135, 179), (135, 180), (135, 181), (135, 182), (135, 183), (135, 184), (135, 185), (135, 186), (135, 188), (136, 123), (136, 125), (136, 126),
(136, 127), (136, 128), (136, 129), (136, 130), (136, 131), (136, 132), (136, 133), (136, 134), (136, 135), (136, 136), (136, 137), (136, 138), (136, 139), (136, 140), (136, 141), (136, 142), (136, 143), (136, 144), (136, 145), (136, 146), (136, 147), (136, 148), (136, 149), (136, 150), (136, 151), (136, 152), (136, 153), (136, 154), (136, 155), (136, 156), (136, 157), (136, 158), (136, 159), (136, 160), (136, 161), (136, 162), (136, 163), (136, 164), (136, 165), (136, 166), (136, 167), (136, 168), (136, 169), (136, 170), (136, 171), (136, 172), (136, 173), (136, 174), (136, 175), (136, 176), (136, 177), (136, 178), (136, 179), (136, 180), (136, 181), (136, 182), (136, 183), (136, 184), (136, 185), (136, 186), (136, 187), (136, 189), (137, 123), (137, 125), (137, 126), (137, 127), (137, 128), (137, 129), (137, 130), (137, 131), (137, 132), (137, 133),
(137, 134), (137, 135), (137, 136), (137, 137), (137, 138), (137, 139), (137, 140), (137, 141), (137, 142), (137, 143), (137, 144), (137, 145), (137, 146), (137, 147), (137, 148), (137, 149), (137, 150), (137, 151), (137, 152), (137, 153), (137, 154), (137, 155), (137, 156), (137, 157), (137, 158), (137, 159), (137, 160), (137, 161), (137, 162), (137, 163), (137, 164), (137, 165), (137, 166), (137, 167), (137, 168), (137, 169), (137, 170), (137, 171), (137, 172), (137, 173), (137, 174), (137, 175), (137, 176), (137, 177), (137, 178), (137, 179), (137, 180), (137, 181), (137, 182), (137, 183), (137, 184), (137, 185), (137, 186), (137, 187), (137, 188), (137, 190), (138, 123), (138, 125), (138, 126), (138, 127), (138, 128), (138, 129), (138, 130), (138, 131), (138, 132), (138, 133), (138, 134), (138, 135), (138, 136), (138, 137), (138, 138), (138, 139),
(138, 140), (138, 141), (138, 142), (138, 143), (138, 144), (138, 145), (138, 146), (138, 147), (138, 148), (138, 149), (138, 150), (138, 151), (138, 152), (138, 153), (138, 154), (138, 155), (138, 156), (138, 157), (138, 158), (138, 159), (138, 160), (138, 161), (138, 162), (138, 163), (138, 164), (138, 165), (138, 166), (138, 167), (138, 168), (138, 169), (138, 170), (138, 171), (138, 172), (138, 173), (138, 174), (138, 175), (138, 176), (138, 177), (138, 178), (138, 179), (138, 180), (138, 181), (138, 182), (138, 183), (138, 184), (138, 185), (138, 186), (138, 187), (138, 188), (138, 190), (139, 123), (139, 125), (139, 126), (139, 127), (139, 128), (139, 129), (139, 130), (139, 131), (139, 132), (139, 133), (139, 134), (139, 135), (139, 136), (139, 137), (139, 138), (139, 139), (139, 140), (139, 141), (139, 142), (139, 143), (139, 144), (139, 145),
(139, 146), (139, 147), (139, 148), (139, 149), (139, 150), (139, 151), (139, 152), (139, 153), (139, 154), (139, 155), (139, 156), (139, 157), (139, 158), (139, 159), (139, 160), (139, 161), (139, 162), (139, 163), (139, 164), (139, 165), (139, 166), (139, 167), (139, 168), (139, 169), (139, 170), (139, 171), (139, 172), (139, 173), (139, 174), (139, 175), (139, 176), (139, 177), (139, 178), (139, 179), (139, 180), (139, 181), (139, 182), (139, 183), (139, 184), (139, 185), (139, 186), (139, 187), (139, 188), (139, 189), (139, 191), (140, 123), (140, 125), (140, 126), (140, 127), (140, 128), (140, 129), (140, 130), (140, 131), (140, 132), (140, 133), (140, 134), (140, 135), (140, 136), (140, 137), (140, 138), (140, 139), (140, 140), (140, 141), (140, 142), (140, 143), (140, 144), (140, 145), (140, 146), (140, 147), (140, 148), (140, 149), (140, 150),
(140, 151), (140, 152), (140, 153), (140, 154), (140, 155), (140, 156), (140, 157), (140, 158), (140, 159), (140, 160), (140, 161), (140, 162), (140, 163), (140, 164), (140, 165), (140, 166), (140, 167), (140, 168), (140, 169), (140, 170), (140, 171), (140, 172), (140, 173), (140, 174), (140, 175), (140, 176), (140, 177), (140, 178), (140, 179), (140, 180), (140, 181), (140, 182), (140, 183), (140, 184), (140, 185), (140, 186), (140, 187), (140, 188), (140, 189), (140, 191), (141, 122), (141, 123), (141, 124), (141, 125), (141, 126), (141, 127), (141, 128), (141, 129), (141, 130), (141, 131), (141, 132), (141, 133), (141, 134), (141, 135), (141, 136), (141, 137), (141, 138), (141, 139), (141, 140), (141, 141), (141, 142), (141, 143), (141, 144), (141, 145), (141, 146), (141, 147), (141, 148), (141, 149), (141, 150), (141, 151), (141, 152), (141, 153),
(141, 154), (141, 155), (141, 156), (141, 157), (141, 158), (141, 159), (141, 160), (141, 161), (141, 162), (141, 163), (141, 164), (141, 165), (141, 166), (141, 167), (141, 168), (141, 169), (141, 170), (141, 171), (141, 172), (141, 173), (141, 174), (141, 175), (141, 176), (141, 177), (141, 178), (141, 179), (141, 180), (141, 181), (141, 182), (141, 183), (141, 184), (141, 185), (141, 186), (141, 187), (141, 188), (141, 189), (141, 191), (142, 122), (142, 124), (142, 125), (142, 126), (142, 127), (142, 128), (142, 129), (142, 130), (142, 131), (142, 132), (142, 133), (142, 134), (142, 135), (142, 136), (142, 137), (142, 138), (142, 139), (142, 140), (142, 141), (142, 142), (142, 143), (142, 144), (142, 145), (142, 146), (142, 147), (142, 148), (142, 149), (142, 150), (142, 151), (142, 152), (142, 153), (142, 154), (142, 155), (142, 156), (142, 157),
(142, 158), (142, 159), (142, 160), (142, 161), (142, 162), (142, 163), (142, 164), (142, 165), (142, 166), (142, 167), (142, 168), (142, 169), (142, 170), (142, 171), (142, 172), (142, 173), (142, 174), (142, 175), (142, 176), (142, 177), (142, 178), (142, 179), (142, 180), (142, 181), (142, 182), (142, 183), (142, 184), (142, 185), (142, 186), (142, 187), (142, 188), (142, 189), (142, 190), (142, 192), (143, 122), (143, 124), (143, 125), (143, 126), (143, 127), (143, 128), (143, 129), (143, 130), (143, 131), (143, 132), (143, 133), (143, 134), (143, 135), (143, 136), (143, 137), (143, 138), (143, 139), (143, 140), (143, 141), (143, 142), (143, 143), (143, 144), (143, 145), (143, 146), (143, 147), (143, 148), (143, 149), (143, 150), (143, 151), (143, 152), (143, 153), (143, 154), (143, 155), (143, 156), (143, 157), (143, 158), (143, 159), (143, 160),
(143, 161), (143, 166), (143, 167), (143, 168), (143, 169), (143, 170), (143, 171), (143, 172), (143, 173), (143, 174), (143, 175), (143, 176), (143, 177), (143, 178), (143, 179), (143, 180), (143, 181), (143, 182), (143, 183), (143, 184), (143, 185), (143, 186), (143, 187), (143, 188), (143, 189), (143, 190), (143, 192), (144, 121), (144, 123), (144, 124), (144, 125), (144, 126), (144, 127), (144, 128), (144, 129), (144, 130), (144, 131), (144, 132), (144, 133), (144, 134), (144, 135), (144, 136), (144, 137), (144, 138), (144, 139), (144, 140), (144, 141), (144, 142), (144, 143), (144, 144), (144, 145), (144, 146), (144, 147), (144, 148), (144, 149), (144, 150), (144, 151), (144, 152), (144, 153), (144, 154), (144, 155), (144, 156), (144, 157), (144, 158), (144, 162), (144, 163), (144, 164), (144, 165), (144, 168), (144, 169), (144, 170), (144, 171),
(144, 172), (144, 173), (144, 174), (144, 175), (144, 176), (144, 177), (144, 178), (144, 179), (144, 180), (144, 181), (144, 182), (144, 183), (144, 184), (144, 185), (144, 186), (144, 187), (144, 188), (144, 189), (144, 190), (144, 192), (145, 121), (145, 123), (145, 124), (145, 125), (145, 126), (145, 127), (145, 128), (145, 129), (145, 130), (145, 131), (145, 132), (145, 133), (145, 134), (145, 135), (145, 136), (145, 137), (145, 138), (145, 139), (145, 140), (145, 141), (145, 142), (145, 143), (145, 144), (145, 145), (145, 146), (145, 147), (145, 148), (145, 149), (145, 150), (145, 151), (145, 152), (145, 153), (145, 154), (145, 155), (145, 156), (145, 157), (145, 160), (145, 166), (145, 167), (145, 170), (145, 171), (145, 172), (145, 173), (145, 174), (145, 175), (145, 176), (145, 177), (145, 178), (145, 179), (145, 180), (145, 181), (145, 182),
(145, 183), (145, 184), (145, 185), (145, 186), (145, 187), (145, 188), (145, 189), (145, 190), (145, 192), (146, 120), (146, 122), (146, 123), (146, 124), (146, 125), (146, 126), (146, 127), (146, 128), (146, 129), (146, 130), (146, 131), (146, 132), (146, 133), (146, 134), (146, 135), (146, 136), (146, 137), (146, 138), (146, 139), (146, 140), (146, 141), (146, 142), (146, 143), (146, 144), (146, 145), (146, 146), (146, 147), (146, 148), (146, 149), (146, 150), (146, 151), (146, 152), (146, 153), (146, 154), (146, 155), (146, 158), (146, 168), (146, 171), (146, 172), (146, 173), (146, 174), (146, 175), (146, 176), (146, 177), (146, 178), (146, 179), (146, 180), (146, 181), (146, 182), (146, 183), (146, 184), (146, 185), (146, 186), (146, 187), (146, 188), (146, 189), (146, 190), (146, 192), (147, 119), (147, 121), (147, 122), (147, 123), (147, 124),
(147, 125), (147, 126), (147, 127), (147, 128), (147, 129), (147, 130), (147, 131), (147, 132), (147, 133), (147, 134), (147, 135), (147, 136), (147, 137), (147, 138), (147, 139), (147, 140), (147, 141), (147, 142), (147, 143), (147, 144), (147, 145), (147, 146), (147, 147), (147, 148), (147, 149), (147, 150), (147, 151), (147, 152), (147, 153), (147, 154), (147, 157), (147, 170), (147, 172), (147, 173), (147, 174), (147, 175), (147, 176), (147, 177), (147, 178), (147, 179), (147, 180), (147, 181), (147, 182), (147, 183), (147, 184), (147, 185), (147, 186), (147, 187), (147, 188), (147, 189), (147, 190), (147, 192), (148, 118), (148, 120), (148, 121), (148, 122), (148, 123), (148, 124), (148, 125), (148, 126), (148, 127), (148, 128), (148, 129), (148, 130), (148, 131), (148, 132), (148, 133), (148, 134), (148, 135), (148, 136), (148, 137), (148, 138),
(148, 139), (148, 140), (148, 141), (148, 142), (148, 143), (148, 144), (148, 145), (148, 146), (148, 147), (148, 148), (148, 149), (148, 150), (148, 151), (148, 152), (148, 153), (148, 154), (148, 156), (148, 171), (148, 173), (148, 174), (148, 175), (148, 176), (148, 177), (148, 178), (148, 179), (148, 180), (148, 181), (148, 182), (148, 183), (148, 184), (148, 185), (148, 186), (148, 187), (148, 188), (148, 189), (148, 190), (148, 192), (149, 119), (149, 120), (149, 121), (149, 122), (149, 123), (149, 124), (149, 125), (149, 126), (149, 127), (149, 128), (149, 129), (149, 130), (149, 131), (149, 132), (149, 133), (149, 134), (149, 135), (149, 136), (149, 137), (149, 138), (149, 139), (149, 140), (149, 141), (149, 142), (149, 143), (149, 144), (149, 145), (149, 146), (149, 147), (149, 148), (149, 149), (149, 150), (149, 151), (149, 152), (149, 153),
(149, 155), (149, 172), (149, 174), (149, 175), (149, 176), (149, 177), (149, 178), (149, 179), (149, 180), (149, 181), (149, 182), (149, 183), (149, 184), (149, 185), (149, 186), (149, 187), (149, 188), (149, 189), (149, 190), (149, 192), (150, 115), (150, 118), (150, 119), (150, 120), (150, 121), (150, 122), (150, 123), (150, 124), (150, 125), (150, 126), (150, 127), (150, 128), (150, 129), (150, 130), (150, 131), (150, 132), (150, 133), (150, 134), (150, 135), (150, 136), (150, 137), (150, 138), (150, 139), (150, 140), (150, 141), (150, 142), (150, 143), (150, 144), (150, 145), (150, 146), (150, 147), (150, 148), (150, 149), (150, 150), (150, 151), (150, 152), (150, 154), (150, 173), (150, 175), (150, 176), (150, 177), (150, 178), (150, 179), (150, 180), (150, 181), (150, 182), (150, 183), (150, 184), (150, 185), (150, 186), (150, 187), (150, 188),
(150, 189), (150, 190), (150, 192), (151, 112), (151, 113), (151, 116), (151, 117), (151, 118), (151, 119), (151, 120), (151, 121), (151, 122), (151, 123), (151, 124), (151, 125), (151, 126), (151, 127), (151, 128), (151, 129), (151, 130), (151, 131), (151, 132), (151, 133), (151, 134), (151, 135), (151, 136), (151, 137), (151, 138), (151, 139), (151, 140), (151, 141), (151, 142), (151, 143), (151, 144), (151, 145), (151, 146), (151, 147), (151, 148), (151, 149), (151, 150), (151, 151), (151, 153), (151, 174), (151, 176), (151, 177), (151, 178), (151, 179), (151, 180), (151, 181), (151, 182), (151, 183), (151, 184), (151, 185), (151, 186), (151, 187), (151, 188), (151, 192), (152, 106), (152, 107), (152, 108), (152, 109), (152, 110), (152, 111), (152, 115), (152, 116), (152, 117), (152, 118), (152, 119), (152, 120), (152, 121), (152, 122), (152, 123),
(152, 124), (152, 125), (152, 126), (152, 127), (152, 128), (152, 129), (152, 130), (152, 131), (152, 132), (152, 133), (152, 134), (152, 135), (152, 136), (152, 137), (152, 138), (152, 139), (152, 140), (152, 141), (152, 142), (152, 143), (152, 144), (152, 145), (152, 146), (152, 147), (152, 148), (152, 149), (152, 150), (152, 151), (152, 153), (152, 175), (152, 177), (152, 178), (152, 179), (152, 180), (152, 181), (152, 182), (152, 183), (152, 184), (152, 185), (152, 186), (152, 187), (152, 190), (153, 94), (153, 96), (153, 97), (153, 98), (153, 99), (153, 100), (153, 101), (153, 102), (153, 103), (153, 104), (153, 105), (153, 112), (153, 113), (153, 114), (153, 115), (153, 116), (153, 117), (153, 118), (153, 119), (153, 120), (153, 121), (153, 122), (153, 123), (153, 124), (153, 125), (153, 126), (153, 127), (153, 128), (153, 129), (153, 130),
(153, 131), (153, 132), (153, 133), (153, 134), (153, 135), (153, 136), (153, 137), (153, 138), (153, 139), (153, 140), (153, 141), (153, 142), (153, 143), (153, 144), (153, 145), (153, 146), (153, 147), (153, 148), (153, 149), (153, 150), (153, 152), (153, 176), (153, 178), (153, 179), (153, 180), (153, 181), (153, 182), (153, 183), (153, 184), (153, 185), (153, 186), (154, 93), (154, 106), (154, 107), (154, 108), (154, 109), (154, 110), (154, 111), (154, 112), (154, 113), (154, 114), (154, 115), (154, 116), (154, 117), (154, 118), (154, 119), (154, 120), (154, 121), (154, 122), (154, 123), (154, 124), (154, 125), (154, 126), (154, 127), (154, 128), (154, 129), (154, 130), (154, 131), (154, 132), (154, 133), (154, 134), (154, 135), (154, 136), (154, 137), (154, 138), (154, 139), (154, 140), (154, 141), (154, 142), (154, 143), (154, 144), (154, 145),
(154, 146), (154, 147), (154, 148), (154, 149), (154, 151), (154, 152), (154, 176), (154, 178), (154, 179), (154, 180), (154, 181), (154, 182), (154, 183), (154, 184), (154, 185), (154, 186), (154, 188), (155, 92), (155, 95), (155, 96), (155, 97), (155, 98), (155, 99), (155, 100), (155, 101), (155, 102), (155, 103), (155, 104), (155, 105), (155, 106), (155, 107), (155, 108), (155, 109), (155, 110), (155, 111), (155, 112), (155, 113), (155, 114), (155, 115), (155, 116), (155, 117), (155, 118), (155, 119), (155, 120), (155, 121), (155, 122), (155, 123), (155, 124), (155, 125), (155, 126), (155, 127), (155, 128), (155, 129), (155, 130), (155, 131), (155, 132), (155, 133), (155, 134), (155, 135), (155, 136), (155, 137), (155, 138), (155, 139), (155, 140), (155, 141), (155, 142), (155, 143), (155, 144), (155, 145), (155, 146), (155, 147), (155, 148),
(155, 149), (155, 151), (155, 177), (155, 179), (155, 180), (155, 181), (155, 182), (155, 183), (155, 184), (155, 185), (155, 187), (156, 92), (156, 94), (156, 95), (156, 96), (156, 97), (156, 98), (156, 99), (156, 100), (156, 101), (156, 102), (156, 103), (156, 104), (156, 105), (156, 106), (156, 107), (156, 108), (156, 109), (156, 110), (156, 111), (156, 112), (156, 113), (156, 114), (156, 115), (156, 116), (156, 117), (156, 118), (156, 119), (156, 120), (156, 121), (156, 122), (156, 123), (156, 129), (156, 130), (156, 131), (156, 132), (156, 133), (156, 134), (156, 135), (156, 136), (156, 137), (156, 138), (156, 139), (156, 140), (156, 141), (156, 142), (156, 143), (156, 144), (156, 145), (156, 146), (156, 147), (156, 148), (156, 149), (156, 151), (156, 178), (156, 179), (156, 180), (156, 181), (156, 182), (156, 183), (156, 184), (156, 186),
(157, 91), (157, 93), (157, 94), (157, 95), (157, 96), (157, 97), (157, 98), (157, 99), (157, 100), (157, 101), (157, 102), (157, 103), (157, 104), (157, 105), (157, 106), (157, 107), (157, 108), (157, 109), (157, 110), (157, 111), (157, 112), (157, 113), (157, 114), (157, 115), (157, 116), (157, 117), (157, 118), (157, 119), (157, 120), (157, 121), (157, 122), (157, 125), (157, 126), (157, 127), (157, 128), (157, 131), (157, 132), (157, 133), (157, 134), (157, 135), (157, 136), (157, 137), (157, 138), (157, 139), (157, 140), (157, 141), (157, 142), (157, 143), (157, 144), (157, 145), (157, 146), (157, 147), (157, 148), (157, 149), (157, 151), (157, 178), (157, 180), (157, 181), (157, 182), (157, 183), (157, 184), (157, 186), (158, 90), (158, 92), (158, 93), (158, 94), (158, 95), (158, 96), (158, 97), (158, 98), (158, 99), (158, 100),
(158, 101), (158, 102), (158, 103), (158, 104), (158, 105), (158, 106), (158, 107), (158, 108), (158, 109), (158, 110), (158, 111), (158, 112), (158, 113), (158, 114), (158, 115), (158, 116), (158, 117), (158, 118), (158, 119), (158, 120), (158, 123), (158, 129), (158, 132), (158, 133), (158, 134), (158, 135), (158, 136), (158, 137), (158, 138), (158, 139), (158, 140), (158, 141), (158, 142), (158, 143), (158, 144), (158, 145), (158, 146), (158, 147), (158, 148), (158, 149), (158, 151), (158, 179), (158, 181), (158, 182), (158, 183), (158, 185), (159, 90), (159, 92), (159, 93), (159, 94), (159, 95), (159, 96), (159, 97), (159, 98), (159, 99), (159, 100), (159, 101), (159, 102), (159, 103), (159, 104), (159, 105), (159, 106), (159, 107), (159, 108), (159, 109), (159, 110), (159, 111), (159, 112), (159, 113), (159, 114), (159, 115), (159, 116),
(159, 117), (159, 122), (159, 131), (159, 133), (159, 134), (159, 135), (159, 136), (159, 137), (159, 138), (159, 139), (159, 140), (159, 141), (159, 142), (159, 143), (159, 144), (159, 145), (159, 146), (159, 147), (159, 148), (159, 149), (159, 151), (159, 179), (159, 181), (159, 182), (159, 183), (159, 185), (160, 89), (160, 91), (160, 92), (160, 93), (160, 94), (160, 95), (160, 96), (160, 97), (160, 98), (160, 99), (160, 100), (160, 101), (160, 102), (160, 103), (160, 104), (160, 105), (160, 106), (160, 107), (160, 108), (160, 109), (160, 110), (160, 111), (160, 112), (160, 113), (160, 114), (160, 118), (160, 120), (160, 132), (160, 134), (160, 135), (160, 136), (160, 137), (160, 138), (160, 139), (160, 140), (160, 141), (160, 142), (160, 143), (160, 144), (160, 145), (160, 146), (160, 147), (160, 148), (160, 149), (160, 150), (160, 152),
(160, 179), (160, 181), (160, 182), (160, 183), (160, 185), (161, 89), (161, 90), (161, 91), (161, 92), (161, 93), (161, 94), (161, 95), (161, 96), (161, 97), (161, 98), (161, 99), (161, 100), (161, 101), (161, 102), (161, 103), (161, 104), (161, 105), (161, 106), (161, 107), (161, 108), (161, 109), (161, 110), (161, 111), (161, 112), (161, 115), (161, 116), (161, 117), (161, 133), (161, 135), (161, 136), (161, 137), (161, 138), (161, 139), (161, 140), (161, 141), (161, 142), (161, 143), (161, 144), (161, 145), (161, 146), (161, 147), (161, 148), (161, 149), (161, 150), (161, 152), (161, 180), (161, 182), (161, 184), (162, 88), (162, 90), (162, 91), (162, 92), (162, 93), (162, 94), (162, 95), (162, 96), (162, 97), (162, 98), (162, 99), (162, 100), (162, 101), (162, 102), (162, 103), (162, 104), (162, 105), (162, 106), (162, 107),
(162, 108), (162, 109), (162, 110), (162, 113), (162, 114), (162, 134), (162, 136), (162, 137), (162, 138), (162, 139), (162, 140), (162, 141), (162, 142), (162, 143), (162, 144), (162, 145), (162, 146), (162, 147), (162, 148), (162, 149), (162, 150), (162, 152), (162, 180), (162, 182), (162, 184), (163, 87), (163, 89), (163, 90), (163, 91), (163, 92), (163, 93), (163, 94), (163, 95), (163, 96), (163, 97), (163, 98), (163, 99), (163, 100), (163, 101), (163, 102), (163, 103), (163, 104), (163, 105), (163, 106), (163, 107), (163, 108), (163, 109), (163, 112), (163, 135), (163, 137), (163, 138), (163, 139), (163, 140), (163, 141), (163, 142), (163, 143), (163, 144), (163, 145), (163, 146), (163, 147), (163, 148), (163, 149), (163, 150), (163, 151), (163, 153), (163, 180), (163, 181), (163, 182), (163, 184), (164, 87), (164, 89), (164, 90),
(164, 91), (164, 92), (164, 93), (164, 94), (164, 95), (164, 96), (164, 97), (164, 98), (164, 99), (164, 100), (164, 101), (164, 102), (164, 103), (164, 104), (164, 105), (164, 106), (164, 107), (164, 108), (164, 110), (164, 136), (164, 138), (164, 139), (164, 140), (164, 141), (164, 142), (164, 143), (164, 144), (164, 145), (164, 146), (164, 147), (164, 148), (164, 149), (164, 150), (164, 151), (164, 153), (164, 181), (164, 184), (165, 86), (165, 88), (165, 89), (165, 90), (165, 91), (165, 92), (165, 93), (165, 94), (165, 95), (165, 96), (165, 97), (165, 98), (165, 99), (165, 100), (165, 101), (165, 102), (165, 103), (165, 104), (165, 105), (165, 106), (165, 107), (165, 109), (165, 136), (165, 138), (165, 139), (165, 140), (165, 141), (165, 142), (165, 143), (165, 144), (165, 145), (165, 146), (165, 147), (165, 148), (165, 149),
(165, 150), (165, 151), (165, 153), (165, 181), (165, 184), (166, 86), (166, 88), (166, 89), (166, 90), (166, 91), (166, 92), (166, 93), (166, 94), (166, 95), (166, 96), (166, 97), (166, 98), (166, 99), (166, 100), (166, 101), (166, 102), (166, 103), (166, 104), (166, 105), (166, 106), (166, 108), (166, 136), (166, 138), (166, 139), (166, 140), (166, 141), (166, 142), (166, 143), (166, 144), (166, 145), (166, 146), (166, 147), (166, 148), (166, 149), (166, 150), (166, 151), (166, 153), (166, 181), (166, 184), (167, 85), (167, 87), (167, 88), (167, 89), (167, 90), (167, 91), (167, 92), (167, 93), (167, 94), (167, 95), (167, 96), (167, 97), (167, 98), (167, 99), (167, 100), (167, 101), (167, 102), (167, 103), (167, 104), (167, 105), (167, 107), (167, 136), (167, 138), (167, 139), (167, 140), (167, 141), (167, 142), (167, 143),
(167, 144), (167, 145), (167, 146), (167, 147), (167, 148), (167, 149), (167, 150), (167, 151), (167, 153), (167, 181), (167, 183), (167, 185), (168, 85), (168, 87), (168, 88), (168, 89), (168, 90), (168, 91), (168, 92), (168, 93), (168, 94), (168, 95), (168, 96), (168, 97), (168, 98), (168, 99), (168, 100), (168, 101), (168, 102), (168, 103), (168, 104), (168, 106), (168, 136), (168, 138), (168, 139), (168, 140), (168, 141), (168, 142), (168, 143), (168, 144), (168, 145), (168, 146), (168, 147), (168, 148), (168, 149), (168, 150), (168, 151), (168, 153), (168, 181), (168, 183), (168, 185), (169, 85), (169, 87), (169, 88), (169, 89), (169, 90), (169, 91), (169, 92), (169, 93), (169, 94), (169, 95), (169, 96), (169, 97), (169, 98), (169, 99), (169, 100), (169, 101), (169, 102), (169, 103), (169, 105), (169, 136), (169, 138),
(169, 139), (169, 140), (169, 141), (169, 142), (169, 143), (169, 144), (169, 145), (169, 146), (169, 147), (169, 148), (169, 149), (169, 150), (169, 151), (169, 153), (169, 182), (169, 184), (169, 186), (170, 84), (170, 86), (170, 87), (170, 88), (170, 89), (170, 90), (170, 91), (170, 92), (170, 93), (170, 94), (170, 95), (170, 96), (170, 97), (170, 98), (170, 99), (170, 100), (170, 101), (170, 102), (170, 104), (170, 136), (170, 138), (170, 139), (170, 140), (170, 141), (170, 142), (170, 143), (170, 144), (170, 145), (170, 146), (170, 147), (170, 148), (170, 149), (170, 150), (170, 151), (170, 152), (170, 153), (170, 154), (170, 182), (170, 184), (170, 185), (170, 187), (171, 84), (171, 86), (171, 87), (171, 88), (171, 89), (171, 90), (171, 91), (171, 92), (171, 93), (171, 94), (171, 95), (171, 96), (171, 97), (171, 98),
(171, 99), (171, 100), (171, 101), (171, 103), (171, 136), (171, 138), (171, 139), (171, 140), (171, 141), (171, 142), (171, 143), (171, 144), (171, 145), (171, 146), (171, 147), (171, 148), (171, 149), (171, 150), (171, 151), (171, 152), (171, 154), (171, 181), (171, 182), (171, 183), (171, 184), (171, 185), (171, 186), (171, 189), (172, 83), (172, 85), (172, 86), (172, 87), (172, 88), (172, 89), (172, 90), (172, 91), (172, 92), (172, 93), (172, 94), (172, 95), (172, 96), (172, 97), (172, 98), (172, 99), (172, 100), (172, 101), (172, 103), (172, 136), (172, 138), (172, 139), (172, 140), (172, 141), (172, 142), (172, 143), (172, 144), (172, 145), (172, 146), (172, 147), (172, 148), (172, 149), (172, 150), (172, 151), (172, 152), (172, 153), (172, 155), (172, 181), (172, 183), (172, 184), (172, 185), (172, 186), (172, 187), (172, 190),
(172, 191), (172, 192), (172, 193), (173, 83), (173, 85), (173, 86), (173, 87), (173, 88), (173, 89), (173, 90), (173, 91), (173, 92), (173, 93), (173, 94), (173, 95), (173, 96), (173, 97), (173, 98), (173, 99), (173, 100), (173, 102), (173, 136), (173, 138), (173, 139), (173, 140), (173, 141), (173, 142), (173, 143), (173, 144), (173, 145), (173, 146), (173, 147), (173, 148), (173, 149), (173, 150), (173, 151), (173, 152), (173, 153), (173, 155), (173, 181), (173, 183), (173, 184), (173, 185), (173, 186), (173, 187), (173, 188), (173, 189), (173, 195), (174, 83), (174, 85), (174, 86), (174, 87), (174, 88), (174, 89), (174, 90), (174, 91), (174, 92), (174, 93), (174, 94), (174, 95), (174, 96), (174, 97), (174, 98), (174, 99), (174, 101), (174, 135), (174, 137), (174, 138), (174, 139), (174, 140), (174, 141), (174, 142),
(174, 143), (174, 144), (174, 145), (174, 146), (174, 147), (174, 148), (174, 149), (174, 150), (174, 151), (174, 152), (174, 153), (174, 154), (174, 156), (174, 181), (174, 183), (174, 184), (174, 185), (174, 186), (174, 187), (174, 188), (174, 189), (174, 190), (174, 191), (174, 192), (174, 193), (175, 82), (175, 84), (175, 85), (175, 86), (175, 87), (175, 88), (175, 89), (175, 90), (175, 91), (175, 92), (175, 93), (175, 94), (175, 95), (175, 96), (175, 97), (175, 98), (175, 99), (175, 101), (175, 135), (175, 137), (175, 138), (175, 139), (175, 140), (175, 141), (175, 142), (175, 143), (175, 144), (175, 145), (175, 146), (175, 147), (175, 148), (175, 149), (175, 150), (175, 151), (175, 152), (175, 153), (175, 154), (175, 155), (175, 157), (175, 180), (175, 182), (175, 183), (175, 184), (175, 185), (175, 186), (175, 187), (175, 188),
(175, 189), (175, 190), (175, 191), (175, 192), (175, 193), (175, 194), (175, 195), (175, 199), (176, 82), (176, 84), (176, 85), (176, 86), (176, 87), (176, 88), (176, 89), (176, 90), (176, 91), (176, 92), (176, 93), (176, 94), (176, 95), (176, 96), (176, 97), (176, 98), (176, 99), (176, 100), (176, 101), (176, 135), (176, 137), (176, 138), (176, 139), (176, 140), (176, 141), (176, 142), (176, 143), (176, 144), (176, 145), (176, 146), (176, 147), (176, 148), (176, 149), (176, 150), (176, 151), (176, 152), (176, 153), (176, 154), (176, 155), (176, 156), (176, 158), (176, 180), (176, 182), (176, 183), (176, 184), (176, 185), (176, 186), (176, 187), (176, 188), (176, 189), (176, 190), (176, 191), (176, 192), (176, 193), (176, 194), (176, 195), (176, 196), (176, 197), (176, 200), (177, 82), (177, 84), (177, 85), (177, 86), (177, 87),
(177, 88), (177, 89), (177, 90), (177, 91), (177, 92), (177, 93), (177, 94), (177, 95), (177, 96), (177, 97), (177, 98), (177, 100), (177, 134), (177, 136), (177, 137), (177, 138), (177, 139), (177, 140), (177, 141), (177, 142), (177, 143), (177, 144), (177, 145), (177, 146), (177, 147), (177, 148), (177, 149), (177, 150), (177, 151), (177, 152), (177, 153), (177, 154), (177, 155), (177, 156), (177, 159), (177, 179), (177, 181), (177, 182), (177, 183), (177, 184), (177, 185), (177, 186), (177, 187), (177, 188), (177, 189), (177, 190), (177, 191), (177, 192), (177, 193), (177, 194), (177, 195), (177, 196), (177, 197), (177, 198), (177, 199), (177, 201), (178, 81), (178, 83), (178, 84), (178, 85), (178, 86), (178, 87), (178, 88), (178, 89), (178, 90), (178, 91), (178, 92), (178, 93), (178, 94), (178, 95), (178, 96), (178, 97),
(178, 98), (178, 100), (178, 134), (178, 136), (178, 137), (178, 138), (178, 139), (178, 140), (178, 141), (178, 142), (178, 143), (178, 144), (178, 145), (178, 146), (178, 147), (178, 148), (178, 149), (178, 150), (178, 151), (178, 152), (178, 153), (178, 154), (178, 155), (178, 156), (178, 157), (178, 160), (178, 178), (178, 180), (178, 181), (178, 182), (178, 183), (178, 184), (178, 185), (178, 186), (178, 187), (178, 188), (178, 189), (178, 190), (178, 191), (178, 192), (178, 193), (178, 194), (178, 195), (178, 196), (178, 197), (178, 198), (178, 199), (178, 200), (178, 202), (179, 81), (179, 83), (179, 84), (179, 85), (179, 86), (179, 87), (179, 88), (179, 89), (179, 90), (179, 91), (179, 92), (179, 93), (179, 94), (179, 95), (179, 96), (179, 100), (179, 134), (179, 136), (179, 137), (179, 138), (179, 139), (179, 140), (179, 141),
(179, 142), (179, 143), (179, 144), (179, 145), (179, 146), (179, 147), (179, 148), (179, 149), (179, 150), (179, 151), (179, 152), (179, 153), (179, 154), (179, 155), (179, 156), (179, 157), (179, 158), (179, 161), (179, 174), (179, 176), (179, 179), (179, 180), (179, 181), (179, 182), (179, 183), (179, 184), (179, 185), (179, 186), (179, 187), (179, 188), (179, 189), (179, 190), (179, 191), (179, 192), (179, 193), (179, 194), (179, 195), (179, 196), (179, 197), (179, 198), (179, 199), (179, 200), (179, 201), (179, 203), (180, 81), (180, 83), (180, 84), (180, 85), (180, 86), (180, 87), (180, 88), (180, 89), (180, 90), (180, 91), (180, 92), (180, 93), (180, 94), (180, 97), (180, 98), (180, 99), (180, 134), (180, 136), (180, 137), (180, 138), (180, 139), (180, 140), (180, 141), (180, 142), (180, 143), (180, 144), (180, 145), (180, 146),
(180, 147), (180, 148), (180, 149), (180, 150), (180, 151), (180, 152), (180, 153), (180, 154), (180, 155), (180, 156), (180, 157), (180, 158), (180, 159), (180, 162), (180, 173), (180, 178), (180, 179), (180, 180), (180, 181), (180, 182), (180, 183), (180, 184), (180, 185), (180, 186), (180, 187), (180, 188), (180, 189), (180, 190), (180, 191), (180, 192), (180, 193), (180, 200), (180, 201), (180, 202), (180, 204), (181, 82), (181, 85), (181, 86), (181, 87), (181, 88), (181, 89), (181, 90), (181, 91), (181, 95), (181, 96), (181, 133), (181, 135), (181, 136), (181, 137), (181, 144), (181, 145), (181, 146), (181, 147), (181, 148), (181, 149), (181, 150), (181, 151), (181, 152), (181, 153), (181, 154), (181, 155), (181, 156), (181, 157), (181, 158), (181, 159), (181, 160), (181, 161), (181, 164), (181, 165), (181, 170), (181, 171), (181, 174),
(181, 175), (181, 176), (181, 177), (181, 178), (181, 179), (181, 180), (181, 181), (181, 182), (181, 183), (181, 184), (181, 185), (181, 186), (181, 187), (181, 188), (181, 189), (181, 190), (181, 194), (181, 195), (181, 196), (181, 197), (181, 198), (181, 199), (181, 203), (182, 83), (182, 92), (182, 94), (182, 133), (182, 135), (182, 136), (182, 139), (182, 140), (182, 141), (182, 142), (182, 145), (182, 146), (182, 147), (182, 148), (182, 149), (182, 150), (182, 151), (182, 152), (182, 153), (182, 154), (182, 155), (182, 156), (182, 157), (182, 158), (182, 159), (182, 160), (182, 161), (182, 162), (182, 166), (182, 167), (182, 168), (182, 169), (182, 173), (182, 174), (182, 175), (182, 176), (182, 177), (182, 178), (182, 179), (182, 180), (182, 181), (182, 182), (182, 183), (182, 184), (182, 185), (182, 186), (182, 187), (182, 191), (182, 192),
(182, 201), (182, 202), (182, 205), (183, 85), (183, 87), (183, 88), (183, 89), (183, 90), (183, 91), (183, 133), (183, 137), (183, 144), (183, 146), (183, 147), (183, 148), (183, 149), (183, 150), (183, 151), (183, 152), (183, 153), (183, 154), (183, 155), (183, 156), (183, 157), (183, 158), (183, 159), (183, 160), (183, 161), (183, 162), (183, 163), (183, 164), (183, 165), (183, 170), (183, 171), (183, 172), (183, 173), (183, 174), (183, 175), (183, 176), (183, 177), (183, 178), (183, 179), (183, 180), (183, 181), (183, 182), (183, 183), (183, 184), (183, 185), (183, 189), (183, 203), (183, 206), (184, 133), (184, 135), (184, 136), (184, 145), (184, 147), (184, 148), (184, 149), (184, 150), (184, 151), (184, 152), (184, 153), (184, 154), (184, 155), (184, 156), (184, 157), (184, 158), (184, 159), (184, 160), (184, 161), (184, 162), (184, 163),
(184, 164), (184, 165), (184, 166), (184, 167), (184, 168), (184, 169), (184, 170), (184, 171), (184, 172), (184, 173), (184, 174), (184, 175), (184, 176), (184, 177), (184, 178), (184, 179), (184, 180), (184, 181), (184, 182), (184, 183), (184, 184), (184, 187), (184, 205), (184, 207), (185, 145), (185, 147), (185, 148), (185, 149), (185, 150), (185, 151), (185, 152), (185, 153), (185, 154), (185, 155), (185, 156), (185, 157), (185, 158), (185, 159), (185, 160), (185, 161), (185, 162), (185, 163), (185, 164), (185, 165), (185, 166), (185, 167), (185, 168), (185, 169), (185, 170), (185, 171), (185, 172), (185, 173), (185, 174), (185, 175), (185, 176), (185, 177), (185, 178), (185, 179), (185, 180), (185, 181), (185, 182), (185, 185), (185, 207), (185, 208), (186, 145), (186, 147), (186, 148), (186, 149), (186, 150), (186, 151), (186, 152), (186, 153),
(186, 154), (186, 155), (186, 156), (186, 157), (186, 158), (186, 159), (186, 160), (186, 161), (186, 162), (186, 163), (186, 164), (186, 165), (186, 166), (186, 167), (186, 168), (186, 169), (186, 170), (186, 171), (186, 172), (186, 173), (186, 174), (186, 175), (186, 176), (186, 183), (186, 209), (186, 210), (187, 145), (187, 147), (187, 148), (187, 149), (187, 150), (187, 151), (187, 152), (187, 153), (187, 154), (187, 155), (187, 156), (187, 157), (187, 158), (187, 159), (187, 160), (187, 161), (187, 162), (187, 163), (187, 164), (187, 165), (187, 166), (187, 167), (187, 168), (187, 169), (187, 170), (187, 171), (187, 172), (187, 173), (187, 177), (187, 178), (187, 179), (187, 180), (187, 181), (187, 211), (188, 145), (188, 147), (188, 148), (188, 149), (188, 150), (188, 151), (188, 152), (188, 153), (188, 154), (188, 155), (188, 156), (188, 157),
(188, 158), (188, 159), (188, 160), (188, 161), (188, 162), (188, 163), (188, 164), (188, 165), (188, 166), (188, 167), (188, 168), (188, 169), (188, 170), (188, 171), (188, 172), (188, 175), (188, 176), (188, 213), (188, 215), (188, 216), (189, 145), (189, 147), (189, 148), (189, 149), (189, 150), (189, 151), (189, 152), (189, 153), (189, 154), (189, 155), (189, 156), (189, 157), (189, 158), (189, 159), (189, 160), (189, 161), (189, 162), (189, 163), (189, 164), (189, 165), (189, 166), (189, 167), (189, 168), (189, 169), (189, 170), (189, 171), (189, 173), (190, 145), (190, 147), (190, 148), (190, 149), (190, 150), (190, 151), (190, 152), (190, 153), (190, 154), (190, 155), (190, 156), (190, 157), (190, 158), (190, 159), (190, 160), (190, 161), (190, 162), (190, 163), (190, 164), (190, 165), (190, 166), (190, 167), (190, 168), (190, 169), (190, 170),
(190, 172), (191, 145), (191, 147), (191, 148), (191, 149), (191, 150), (191, 151), (191, 152), (191, 153), (191, 154), (191, 155), (191, 156), (191, 157), (191, 158), (191, 159), (191, 160), (191, 161), (191, 162), (191, 163), (191, 164), (191, 165), (191, 166), (191, 167), (191, 168), (191, 169), (191, 170), (191, 172), (192, 145), (192, 147), (192, 148), (192, 149), (192, 150), (192, 151), (192, 152), (192, 153), (192, 154), (192, 155), (192, 156), (192, 157), (192, 158), (192, 159), (192, 160), (192, 161), (192, 162), (192, 163), (192, 164), (192, 165), (192, 166), (192, 167), (192, 168), (192, 169), (192, 171), (193, 145), (193, 147), (193, 148), (193, 149), (193, 150), (193, 151), (193, 152), (193, 153), (193, 154), (193, 155), (193, 156), (193, 157), (193, 158), (193, 159), (193, 160), (193, 161), (193, 162), (193, 163), (193, 164), (193, 165),
(193, 166), (193, 167), (193, 168), (193, 169), (193, 171), (194, 145), (194, 147), (194, 148), (194, 149), (194, 150), (194, 151), (194, 152), (194, 153), (194, 154), (194, 155), (194, 156), (194, 157), (194, 158), (194, 159), (194, 160), (194, 161), (194, 162), (194, 163), (194, 164), (194, 165), (194, 166), (194, 167), (194, 168), (194, 169), (194, 171), (195, 145), (195, 147), (195, 148), (195, 149), (195, 150), (195, 151), (195, 152), (195, 153), (195, 154), (195, 155), (195, 156), (195, 157), (195, 158), (195, 159), (195, 160), (195, 161), (195, 162), (195, 163), (195, 164), (195, 165), (195, 166), (195, 167), (195, 168), (195, 169), (195, 170), (195, 171), (195, 172), (196, 145), (196, 147), (196, 148), (196, 149), (196, 150), (196, 151), (196, 152), (196, 153), (196, 154), (196, 155), (196, 156), (196, 157), (196, 158), (196, 159), (196, 160),
(196, 161), (196, 162), (196, 163), (196, 164), (196, 165), (196, 166), (196, 167), (196, 168), (196, 169), (196, 170), (196, 172), (197, 146), (197, 148), (197, 149), (197, 150), (197, 151), (197, 152), (197, 153), (197, 154), (197, 155), (197, 156), (197, 157), (197, 158), (197, 159), (197, 160), (197, 161), (197, 162), (197, 163), (197, 164), (197, 165), (197, 166), (197, 167), (197, 168), (197, 169), (197, 170), (197, 172), (198, 146), (198, 148), (198, 149), (198, 150), (198, 151), (198, 152), (198, 153), (198, 154), (198, 155), (198, 156), (198, 157), (198, 158), (198, 159), (198, 160), (198, 161), (198, 162), (198, 163), (198, 164), (198, 165), (198, 166), (198, 167), (198, 168), (198, 170), (199, 146), (199, 148), (199, 149), (199, 150), (199, 151), (199, 152), (199, 153), (199, 154), (199, 155), (199, 156), (199, 157), (199, 158), (199, 159),
(199, 160), (199, 161), (199, 162), (199, 163), (199, 164), (199, 165), (199, 166), (199, 167), (199, 168), (199, 170), (200, 146), (200, 148), (200, 149), (200, 150), (200, 151), (200, 152), (200, 153), (200, 154), (200, 155), (200, 156), (200, 157), (200, 158), (200, 159), (200, 160), (200, 161), (200, 162), (200, 163), (200, 164), (200, 165), (200, 166), (200, 167), (200, 168), (200, 170), (201, 146), (201, 148), (201, 149), (201, 150), (201, 151), (201, 152), (201, 153), (201, 154), (201, 155), (201, 156), (201, 157), (201, 158), (201, 159), (201, 160), (201, 161), (201, 162), (201, 163), (201, 164), (201, 165), (201, 166), (201, 167), (201, 168), (201, 170), (202, 146), (202, 148), (202, 149), (202, 150), (202, 151), (202, 152), (202, 153), (202, 154), (202, 155), (202, 156), (202, 157), (202, 158), (202, 159), (202, 160), (202, 161), (202, 162),
(202, 163), (202, 164), (202, 165), (202, 166), (202, 167), (202, 168), (202, 169), (202, 170), (202, 172), (203, 145), (203, 147), (203, 148), (203, 149), (203, 150), (203, 151), (203, 152), (203, 153), (203, 154), (203, 155), (203, 156), (203, 157), (203, 158), (203, 159), (203, 160), (203, 161), (203, 162), (203, 163), (203, 164), (203, 165), (203, 166), (203, 167), (203, 168), (203, 169), (203, 170), (203, 172), (204, 145), (204, 147), (204, 148), (204, 149), (204, 150), (204, 151), (204, 152), (204, 153), (204, 154), (204, 155), (204, 156), (204, 157), (204, 158), (204, 159), (204, 160), (204, 161), (204, 162), (204, 163), (204, 164), (204, 165), (204, 166), (204, 167), (204, 168), (204, 169), (204, 170), (204, 171), (204, 172), (205, 145), (205, 147), (205, 148), (205, 149), (205, 150), (205, 151), (205, 152), (205, 153), (205, 154), (205, 155),
(205, 156), (205, 157), (205, 158), (205, 159), (205, 160), (205, 161), (205, 162), (205, 163), (205, 164), (205, 165), (205, 166), (205, 167), (205, 168), (205, 169), (205, 171), (206, 145), (206, 147), (206, 148), (206, 149), (206, 150), (206, 151), (206, 152), (206, 153), (206, 154), (206, 155), (206, 156), (206, 157), (206, 158), (206, 159), (206, 160), (206, 161), (206, 162), (206, 163), (206, 164), (206, 165), (206, 166), (206, 167), (206, 168), (206, 169), (206, 171), (207, 145), (207, 147), (207, 148), (207, 149), (207, 150), (207, 151), (207, 152), (207, 153), (207, 154), (207, 155), (207, 156), (207, 157), (207, 158), (207, 159), (207, 160), (207, 161), (207, 162), (207, 163), (207, 164), (207, 165), (207, 166), (207, 167), (207, 168), (207, 169), (207, 171), (208, 145), (208, 147), (208, 148), (208, 149), (208, 150), (208, 151), (208, 152),
(208, 153), (208, 154), (208, 155), (208, 156), (208, 157), (208, 158), (208, 159), (208, 160), (208, 161), (208, 162), (208, 163), (208, 164), (208, 165), (208, 166), (208, 167), (208, 168), (208, 169), (208, 170), (208, 172), (209, 145), (209, 147), (209, 148), (209, 149), (209, 150), (209, 151), (209, 152), (209, 153), (209, 154), (209, 155), (209, 156), (209, 157), (209, 158), (209, 159), (209, 160), (209, 161), (209, 162), (209, 163), (209, 164), (209, 165), (209, 166), (209, 167), (209, 168), (209, 169), (209, 170), (209, 172), (210, 145), (210, 147), (210, 148), (210, 149), (210, 150), (210, 151), (210, 152), (210, 153), (210, 154), (210, 155), (210, 156), (210, 157), (210, 158), (210, 159), (210, 160), (210, 161), (210, 162), (210, 163), (210, 164), (210, 165), (210, 166), (210, 167), (210, 168), (210, 169), (210, 170), (210, 171), (210, 173),
(211, 145), (211, 147), (211, 148), (211, 149), (211, 150), (211, 151), (211, 152), (211, 153), (211, 154), (211, 155), (211, 156), (211, 157), (211, 158), (211, 159), (211, 160), (211, 161), (211, 162), (211, 163), (211, 164), (211, 165), (211, 166), (211, 167), (211, 168), (211, 169), (211, 170), (211, 171), (211, 172), (211, 175), (211, 176), (211, 213), (211, 215), (211, 216), (212, 145), (212, 147), (212, 148), (212, 149), (212, 150), (212, 151), (212, 152), (212, 153), (212, 154), (212, 155), (212, 156), (212, 157), (212, 158), (212, 159), (212, 160), (212, 161), (212, 162), (212, 163), (212, 164), (212, 165), (212, 166), (212, 167), (212, 168), (212, 169), (212, 170), (212, 171), (212, 172), (212, 173), (212, 177), (212, 178), (212, 179), (212, 180), (212, 181), (212, 211), (213, 145), (213, 147), (213, 148), (213, 149), (213, 150), (213, 151),
(213, 152), (213, 153), (213, 154), (213, 155), (213, 156), (213, 157), (213, 158), (213, 159), (213, 160), (213, 161), (213, 162), (213, 163), (213, 164), (213, 165), (213, 166), (213, 167), (213, 168), (213, 169), (213, 170), (213, 171), (213, 172), (213, 173), (213, 174), (213, 175), (213, 176), (213, 183), (213, 209), (213, 210), (214, 145), (214, 147), (214, 148), (214, 149), (214, 150), (214, 151), (214, 152), (214, 153), (214, 154), (214, 155), (214, 156), (214, 157), (214, 158), (214, 159), (214, 160), (214, 161), (214, 162), (214, 163), (214, 164), (214, 165), (214, 166), (214, 167), (214, 168), (214, 169), (214, 170), (214, 171), (214, 172), (214, 173), (214, 174), (214, 175), (214, 176), (214, 177), (214, 178), (214, 179), (214, 180), (214, 181), (214, 185), (214, 207), (214, 208), (215, 133), (215, 135), (215, 145), (215, 147), (215, 148),
(215, 149), (215, 150), (215, 151), (215, 152), (215, 153), (215, 154), (215, 155), (215, 156), (215, 157), (215, 158), (215, 159), (215, 160), (215, 161), (215, 162), (215, 163), (215, 164), (215, 165), (215, 166), (215, 167), (215, 168), (215, 169), (215, 170), (215, 171), (215, 172), (215, 173), (215, 174), (215, 175), (215, 176), (215, 177), (215, 178), (215, 179), (215, 180), (215, 181), (215, 182), (215, 183), (215, 187), (215, 205), (215, 207), (216, 85), (216, 87), (216, 88), (216, 89), (216, 90), (216, 91), (216, 133), (216, 137), (216, 144), (216, 146), (216, 147), (216, 148), (216, 149), (216, 150), (216, 151), (216, 152), (216, 153), (216, 154), (216, 155), (216, 156), (216, 157), (216, 158), (216, 159), (216, 160), (216, 161), (216, 162), (216, 163), (216, 164), (216, 165), (216, 166), (216, 167), (216, 168), (216, 169), (216, 170),
(216, 171), (216, 172), (216, 173), (216, 174), (216, 175), (216, 176), (216, 177), (216, 178), (216, 179), (216, 180), (216, 181), (216, 182), (216, 183), (216, 184), (216, 185), (216, 189), (216, 203), (216, 206), (217, 83), (217, 92), (217, 93), (217, 94), (217, 133), (217, 135), (217, 136), (217, 139), (217, 140), (217, 141), (217, 142), (217, 145), (217, 146), (217, 147), (217, 148), (217, 149), (217, 150), (217, 151), (217, 152), (217, 153), (217, 154), (217, 155), (217, 156), (217, 157), (217, 158), (217, 159), (217, 160), (217, 161), (217, 162), (217, 163), (217, 164), (217, 165), (217, 166), (217, 167), (217, 168), (217, 169), (217, 170), (217, 171), (217, 172), (217, 173), (217, 174), (217, 175), (217, 176), (217, 177), (217, 178), (217, 179), (217, 180), (217, 181), (217, 182), (217, 183), (217, 184), (217, 185), (217, 186), (217, 187),
(217, 191), (217, 192), (217, 201), (217, 202), (217, 205), (218, 82), (218, 85), (218, 86), (218, 87), (218, 88), (218, 89), (218, 90), (218, 91), (218, 95), (218, 96), (218, 133), (218, 135), (218, 136), (218, 137), (218, 144), (218, 145), (218, 146), (218, 147), (218, 148), (218, 149), (218, 150), (218, 151), (218, 152), (218, 153), (218, 154), (218, 155), (218, 156), (218, 157), (218, 158), (218, 159), (218, 160), (218, 161), (218, 162), (218, 163), (218, 164), (218, 165), (218, 166), (218, 167), (218, 168), (218, 169), (218, 170), (218, 171), (218, 172), (218, 173), (218, 174), (218, 175), (218, 176), (218, 177), (218, 178), (218, 179), (218, 180), (218, 181), (218, 182), (218, 183), (218, 184), (218, 185), (218, 186), (218, 187), (218, 188), (218, 189), (218, 190), (218, 194), (218, 195), (218, 196), (218, 197), (218, 198), (218, 199),
(218, 203), (218, 205), (219, 81), (219, 83), (219, 84), (219, 85), (219, 86), (219, 87), (219, 88), (219, 89), (219, 90), (219, 91), (219, 92), (219, 93), (219, 94), (219, 97), (219, 98), (219, 99), (219, 134), (219, 136), (219, 137), (219, 138), (219, 139), (219, 140), (219, 141), (219, 142), (219, 143), (219, 144), (219, 145), (219, 146), (219, 147), (219, 148), (219, 149), (219, 150), (219, 151), (219, 152), (219, 153), (219, 154), (219, 155), (219, 156), (219, 157), (219, 158), (219, 159), (219, 160), (219, 161), (219, 162), (219, 163), (219, 164), (219, 165), (219, 166), (219, 167), (219, 168), (219, 169), (219, 170), (219, 171), (219, 172), (219, 173), (219, 174), (219, 175), (219, 176), (219, 177), (219, 178), (219, 179), (219, 180), (219, 181), (219, 182), (219, 183), (219, 184), (219, 185), (219, 186), (219, 187), (219, 188),
(219, 189), (219, 190), (219, 191), (219, 192), (219, 193), (219, 200), (219, 201), (219, 202), (219, 204), (220, 81), (220, 83), (220, 84), (220, 85), (220, 86), (220, 87), (220, 88), (220, 89), (220, 90), (220, 91), (220, 92), (220, 93), (220, 94), (220, 95), (220, 96), (220, 100), (220, 134), (220, 136), (220, 137), (220, 138), (220, 139), (220, 140), (220, 141), (220, 142), (220, 143), (220, 144), (220, 145), (220, 146), (220, 147), (220, 148), (220, 149), (220, 150), (220, 151), (220, 152), (220, 153), (220, 154), (220, 155), (220, 156), (220, 157), (220, 158), (220, 159), (220, 160), (220, 161), (220, 162), (220, 163), (220, 164), (220, 165), (220, 166), (220, 167), (220, 168), (220, 169), (220, 170), (220, 171), (220, 172), (220, 173), (220, 174), (220, 175), (220, 176), (220, 177), (220, 178), (220, 179), (220, 180), (220, 181),
(220, 182), (220, 183), (220, 184), (220, 185), (220, 186), (220, 187), (220, 188), (220, 189), (220, 190), (220, 191), (220, 192), (220, 193), (220, 194), (220, 195), (220, 196), (220, 197), (220, 198), (220, 199), (220, 200), (220, 201), (220, 203), (221, 81), (221, 83), (221, 84), (221, 85), (221, 86), (221, 87), (221, 88), (221, 89), (221, 90), (221, 91), (221, 92), (221, 93), (221, 94), (221, 95), (221, 96), (221, 97), (221, 98), (221, 100), (221, 134), (221, 136), (221, 137), (221, 138), (221, 139), (221, 140), (221, 141), (221, 142), (221, 143), (221, 144), (221, 145), (221, 146), (221, 147), (221, 148), (221, 149), (221, 150), (221, 151), (221, 152), (221, 153), (221, 154), (221, 155), (221, 156), (221, 157), (221, 158), (221, 159), (221, 160), (221, 161), (221, 162), (221, 163), (221, 164), (221, 165), (221, 166), (221, 167),
(221, 168), (221, 169), (221, 170), (221, 171), (221, 172), (221, 173), (221, 174), (221, 175), (221, 176), (221, 177), (221, 178), (221, 179), (221, 180), (221, 181), (221, 182), (221, 183), (221, 184), (221, 185), (221, 186), (221, 187), (221, 188), (221, 189), (221, 190), (221, 191), (221, 192), (221, 193), (221, 194), (221, 195), (221, 196), (221, 197), (221, 198), (221, 199), (221, 200), (221, 202), (222, 81), (222, 82), (222, 83), (222, 84), (222, 85), (222, 86), (222, 87), (222, 88), (222, 89), (222, 90), (222, 91), (222, 92), (222, 93), (222, 94), (222, 95), (222, 96), (222, 97), (222, 98), (222, 100), (222, 134), (222, 136), (222, 137), (222, 138), (222, 139), (222, 140), (222, 141), (222, 142), (222, 143), (222, 144), (222, 145), (222, 146), (222, 147), (222, 148), (222, 149), (222, 150), (222, 151), (222, 152), (222, 153),
(222, 154), (222, 155), (222, 156), (222, 157), (222, 158), (222, 159), (222, 160), (222, 161), (222, 162), (222, 163), (222, 164), (222, 165), (222, 166), (222, 167), (222, 168), (222, 169), (222, 170), (222, 171), (222, 172), (222, 173), (222, 174), (222, 175), (222, 176), (222, 177), (222, 178), (222, 179), (222, 180), (222, 181), (222, 182), (222, 183), (222, 184), (222, 185), (222, 186), (222, 187), (222, 188), (222, 189), (222, 190), (222, 191), (222, 192), (222, 193), (222, 194), (222, 195), (222, 196), (222, 197), (222, 198), (222, 199), (222, 201), (223, 82), (223, 84), (223, 85), (223, 86), (223, 87), (223, 88), (223, 89), (223, 90), (223, 91), (223, 92), (223, 93), (223, 94), (223, 95), (223, 96), (223, 97), (223, 98), (223, 99), (223, 100), (223, 101), (223, 135), (223, 137), (223, 138), (223, 139), (223, 140), (223, 141),
(223, 142), (223, 143), (223, 144), (223, 145), (223, 146), (223, 147), (223, 148), (223, 149), (223, 150), (223, 151), (223, 152), (223, 153), (223, 154), (223, 155), (223, 156), (223, 157), (223, 158), (223, 159), (223, 160), (223, 161), (223, 162), (223, 163), (223, 164), (223, 165), (223, 166), (223, 167), (223, 168), (223, 169), (223, 170), (223, 171), (223, 172), (223, 173), (223, 174), (223, 175), (223, 176), (223, 177), (223, 178), (223, 179), (223, 180), (223, 181), (223, 182), (223, 183), (223, 184), (223, 185), (223, 186), (223, 187), (223, 188), (223, 189), (223, 190), (223, 191), (223, 192), (223, 193), (223, 194), (223, 195), (223, 196), (223, 197), (223, 200), (224, 82), (224, 84), (224, 85), (224, 86), (224, 87), (224, 88), (224, 89), (224, 90), (224, 91), (224, 92), (224, 93), (224, 94), (224, 95), (224, 96), (224, 97),
(224, 98), (224, 99), (224, 101), (224, 135), (224, 137), (224, 138), (224, 139), (224, 140), (224, 141), (224, 142), (224, 143), (224, 144), (224, 145), (224, 146), (224, 147), (224, 148), (224, 149), (224, 150), (224, 151), (224, 152), (224, 153), (224, 154), (224, 155), (224, 156), (224, 157), (224, 158), (224, 159), (224, 160), (224, 161), (224, 162), (224, 163), (224, 164), (224, 165), (224, 166), (224, 167), (224, 168), (224, 169), (224, 170), (224, 171), (224, 172), (224, 173), (224, 174), (224, 175), (224, 176), (224, 177), (224, 178), (224, 179), (224, 180), (224, 181), (224, 182), (224, 183), (224, 184), (224, 185), (224, 186), (224, 187), (224, 188), (224, 189), (224, 190), (224, 191), (224, 192), (224, 193), (224, 194), (224, 195), (224, 199), (225, 83), (225, 85), (225, 86), (225, 87), (225, 88), (225, 89), (225, 90), (225, 91),
(225, 92), (225, 93), (225, 94), (225, 95), (225, 96), (225, 97), (225, 98), (225, 99), (225, 101), (225, 135), (225, 137), (225, 138), (225, 139), (225, 140), (225, 141), (225, 142), (225, 143), (225, 144), (225, 145), (225, 146), (225, 147), (225, 148), (225, 149), (225, 150), (225, 151), (225, 152), (225, 153), (225, 154), (225, 155), (225, 156), (225, 157), (225, 158), (225, 159), (225, 160), (225, 161), (225, 162), (225, 163), (225, 164), (225, 165), (225, 166), (225, 167), (225, 168), (225, 169), (225, 170), (225, 171), (225, 172), (225, 173), (225, 174), (225, 175), (225, 176), (225, 177), (225, 178), (225, 179), (225, 180), (225, 181), (225, 182), (225, 183), (225, 184), (225, 185), (225, 186), (225, 187), (225, 188), (225, 189), (225, 190), (225, 191), (225, 192), (225, 193), (226, 83), (226, 85), (226, 86), (226, 87), (226, 88),
(226, 89), (226, 90), (226, 91), (226, 92), (226, 93), (226, 94), (226, 95), (226, 96), (226, 97), (226, 98), (226, 99), (226, 100), (226, 102), (226, 136), (226, 138), (226, 139), (226, 140), (226, 141), (226, 142), (226, 143), (226, 144), (226, 145), (226, 146), (226, 147), (226, 148), (226, 149), (226, 150), (226, 151), (226, 152), (226, 153), (226, 154), (226, 155), (226, 156), (226, 157), (226, 158), (226, 159), (226, 160), (226, 161), (226, 162), (226, 163), (226, 164), (226, 165), (226, 166), (226, 167), (226, 168), (226, 169), (226, 170), (226, 171), (226, 172), (226, 173), (226, 174), (226, 175), (226, 176), (226, 177), (226, 178), (226, 179), (226, 180), (226, 181), (226, 182), (226, 183), (226, 184), (226, 185), (226, 186), (226, 187), (226, 188), (226, 189), (226, 195), (227, 83), (227, 85), (227, 86), (227, 87), (227, 88),
(227, 89), (227, 90), (227, 91), (227, 92), (227, 93), (227, 94), (227, 95), (227, 96), (227, 97), (227, 98), (227, 99), (227, 100), (227, 101), (227, 103), (227, 136), (227, 138), (227, 139), (227, 140), (227, 141), (227, 142), (227, 143), (227, 144), (227, 145), (227, 146), (227, 147), (227, 148), (227, 149), (227, 150), (227, 151), (227, 152), (227, 153), (227, 154), (227, 155), (227, 156), (227, 157), (227, 158), (227, 159), (227, 160), (227, 161), (227, 162), (227, 163), (227, 164), (227, 165), (227, 166), (227, 167), (227, 168), (227, 169), (227, 170), (227, 171), (227, 172), (227, 173), (227, 174), (227, 175), (227, 176), (227, 177), (227, 178), (227, 179), (227, 180), (227, 181), (227, 182), (227, 183), (227, 184), (227, 185), (227, 186), (227, 187), (227, 190), (227, 191), (227, 192), (227, 193), (227, 195), (228, 84), (228, 86),
(228, 87), (228, 88), (228, 89), (228, 90), (228, 91), (228, 92), (228, 93), (228, 94), (228, 95), (228, 96), (228, 97), (228, 98), (228, 99), (228, 100), (228, 101), (228, 103), (228, 136), (228, 138), (228, 139), (228, 140), (228, 141), (228, 142), (228, 143), (228, 144), (228, 145), (228, 146), (228, 147), (228, 148), (228, 149), (228, 150), (228, 151), (228, 152), (228, 153), (228, 154), (228, 155), (228, 156), (228, 157), (228, 158), (228, 159), (228, 160), (228, 161), (228, 162), (228, 163), (228, 164), (228, 165), (228, 166), (228, 167), (228, 168), (228, 169), (228, 170), (228, 171), (228, 172), (228, 173), (228, 174), (228, 175), (228, 176), (228, 177), (228, 178), (228, 179), (228, 180), (228, 181), (228, 182), (228, 183), (228, 184), (228, 185), (228, 186), (228, 189), (229, 84), (229, 86), (229, 87), (229, 88), (229, 89),
(229, 90), (229, 91), (229, 92), (229, 93), (229, 94), (229, 95), (229, 96), (229, 97), (229, 98), (229, 99), (229, 100), (229, 101), (229, 102), (229, 104), (229, 136), (229, 138), (229, 139), (229, 140), (229, 141), (229, 142), (229, 143), (229, 144), (229, 145), (229, 146), (229, 147), (229, 148), (229, 149), (229, 150), (229, 151), (229, 152), (229, 153), (229, 154), (229, 155), (229, 156), (229, 157), (229, 158), (229, 159), (229, 160), (229, 161), (229, 162), (229, 163), (229, 164), (229, 165), (229, 166), (229, 167), (229, 168), (229, 169), (229, 170), (229, 171), (229, 172), (229, 173), (229, 174), (229, 175), (229, 176), (229, 177), (229, 178), (229, 179), (229, 180), (229, 181), (229, 182), (229, 183), (229, 184), (229, 185), (229, 187), (230, 85), (230, 87), (230, 88), (230, 89), (230, 90), (230, 91), (230, 92), (230, 93),
(230, 94), (230, 95), (230, 96), (230, 97), (230, 98), (230, 99), (230, 100), (230, 101), (230, 102), (230, 103), (230, 105), (230, 136), (230, 138), (230, 139), (230, 140), (230, 141), (230, 142), (230, 143), (230, 144), (230, 145), (230, 146), (230, 147), (230, 148), (230, 149), (230, 150), (230, 151), (230, 152), (230, 153), (230, 154), (230, 155), (230, 156), (230, 157), (230, 158), (230, 159), (230, 160), (230, 161), (230, 162), (230, 163), (230, 164), (230, 165), (230, 166), (230, 167), (230, 168), (230, 169), (230, 170), (230, 171), (230, 172), (230, 173), (230, 174), (230, 175), (230, 176), (230, 177), (230, 178), (230, 179), (230, 180), (230, 181), (230, 182), (230, 183), (230, 184), (230, 186), (231, 85), (231, 87), (231, 88), (231, 89), (231, 90), (231, 91), (231, 92), (231, 93), (231, 94), (231, 95), (231, 96), (231, 97),
(231, 98), (231, 99), (231, 100), (231, 101), (231, 102), (231, 103), (231, 104), (231, 106), (231, 136), (231, 138), (231, 139), (231, 140), (231, 141), (231, 142), (231, 143), (231, 144), (231, 145), (231, 146), (231, 147), (231, 148), (231, 149), (231, 150), (231, 151), (231, 152), (231, 153), (231, 154), (231, 155), (231, 156), (231, 157), (231, 158), (231, 159), (231, 160), (231, 161), (231, 162), (231, 163), (231, 164), (231, 165), (231, 166), (231, 167), (231, 168), (231, 169), (231, 170), (231, 171), (231, 172), (231, 173), (231, 174), (231, 175), (231, 176), (231, 177), (231, 178), (231, 179), (231, 180), (231, 181), (231, 182), (231, 183), (231, 185), (232, 85), (232, 87), (232, 88), (232, 89), (232, 90), (232, 91), (232, 92), (232, 93), (232, 94), (232, 95), (232, 96), (232, 97), (232, 98), (232, 99), (232, 100), (232, 101),
(232, 102), (232, 103), (232, 104), (232, 105), (232, 107), (232, 136), (232, 138), (232, 139), (232, 140), (232, 141), (232, 142), (232, 143), (232, 144), (232, 145), (232, 146), (232, 147), (232, 148), (232, 149), (232, 150), (232, 151), (232, 152), (232, 153), (232, 154), (232, 155), (232, 156), (232, 157), (232, 158), (232, 159), (232, 160), (232, 161), (232, 162), (232, 163), (232, 164), (232, 165), (232, 166), (232, 167), (232, 168), (232, 169), (232, 170), (232, 171), (232, 172), (232, 173), (232, 174), (232, 175), (232, 176), (232, 177), (232, 178), (232, 179), (232, 180), (232, 181), (232, 182), (232, 183), (232, 185), (233, 86), (233, 88), (233, 89), (233, 90), (233, 91), (233, 92), (233, 93), (233, 94), (233, 95), (233, 96), (233, 97), (233, 98), (233, 99), (233, 100), (233, 101), (233, 102), (233, 103), (233, 104), (233, 105),
(233, 106), (233, 108), (233, 136), (233, 138), (233, 139), (233, 140), (233, 141), (233, 142), (233, 143), (233, 144), (233, 145), (233, 146), (233, 147), (233, 148), (233, 149), (233, 150), (233, 151), (233, 152), (233, 153), (233, 154), (233, 155), (233, 156), (233, 157), (233, 158), (233, 159), (233, 160), (233, 161), (233, 162), (233, 163), (233, 164), (233, 165), (233, 166), (233, 167), (233, 168), (233, 169), (233, 170), (233, 171), (233, 172), (233, 173), (233, 174), (233, 175), (233, 176), (233, 177), (233, 178), (233, 179), (233, 180), (233, 181), (233, 182), (233, 184), (234, 86), (234, 88), (234, 89), (234, 90), (234, 91), (234, 92), (234, 93), (234, 94), (234, 95), (234, 96), (234, 97), (234, 98), (234, 99), (234, 100), (234, 101), (234, 102), (234, 103), (234, 104), (234, 105), (234, 106), (234, 107), (234, 109), (234, 136),
(234, 138), (234, 139), (234, 140), (234, 141), (234, 142), (234, 143), (234, 144), (234, 145), (234, 146), (234, 147), (234, 148), (234, 149), (234, 150), (234, 151), (234, 152), (234, 153), (234, 154), (234, 155), (234, 156), (234, 157), (234, 158), (234, 159), (234, 160), (234, 161), (234, 162), (234, 163), (234, 164), (234, 165), (234, 166), (234, 167), (234, 168), (234, 169), (234, 170), (234, 171), (234, 172), (234, 173), (234, 174), (234, 175), (234, 176), (234, 177), (234, 178), (234, 179), (234, 180), (234, 181), (234, 182), (234, 184), (235, 87), (235, 89), (235, 90), (235, 91), (235, 92), (235, 93), (235, 94), (235, 95), (235, 96), (235, 97), (235, 98), (235, 99), (235, 100), (235, 101), (235, 102), (235, 103), (235, 104), (235, 105), (235, 106), (235, 107), (235, 108), (235, 110), (235, 136), (235, 138), (235, 139), (235, 140),
(235, 141), (235, 142), (235, 143), (235, 144), (235, 145), (235, 146), (235, 147), (235, 148), (235, 149), (235, 150), (235, 151), (235, 152), (235, 153), (235, 154), (235, 155), (235, 156), (235, 157), (235, 158), (235, 159), (235, 160), (235, 161), (235, 162), (235, 163), (235, 164), (235, 165), (235, 166), (235, 167), (235, 168), (235, 169), (235, 170), (235, 171), (235, 172), (235, 173), (235, 174), (235, 175), (235, 176), (235, 177), (235, 178), (235, 179), (235, 180), (235, 181), (235, 182), (235, 184), (236, 87), (236, 89), (236, 90), (236, 91), (236, 92), (236, 93), (236, 94), (236, 95), (236, 96), (236, 97), (236, 98), (236, 99), (236, 100), (236, 101), (236, 102), (236, 103), (236, 104), (236, 105), (236, 106), (236, 107), (236, 108), (236, 109), (236, 112), (236, 135), (236, 137), (236, 138), (236, 139), (236, 140), (236, 141),
(236, 142), (236, 143), (236, 144), (236, 145), (236, 146), (236, 147), (236, 148), (236, 149), (236, 150), (236, 151), (236, 152), (236, 153), (236, 154), (236, 155), (236, 156), (236, 157), (236, 158), (236, 159), (236, 160), (236, 161), (236, 162), (236, 163), (236, 164), (236, 165), (236, 166), (236, 167), (236, 168), (236, 169), (236, 170), (236, 171), (236, 172), (236, 173), (236, 174), (236, 175), (236, 176), (236, 177), (236, 178), (236, 179), (236, 180), (236, 181), (236, 182), (236, 184), (237, 88), (237, 90), (237, 91), (237, 92), (237, 93), (237, 94), (237, 95), (237, 96), (237, 97), (237, 98), (237, 99), (237, 100), (237, 101), (237, 102), (237, 103), (237, 104), (237, 105), (237, 106), (237, 107), (237, 108), (237, 109), (237, 110), (237, 113), (237, 114), (237, 134), (237, 136), (237, 137), (237, 138), (237, 139), (237, 140),
(237, 141), (237, 142), (237, 143), (237, 144), (237, 145), (237, 146), (237, 147), (237, 148), (237, 149), (237, 150), (237, 151), (237, 152), (237, 153), (237, 154), (237, 155), (237, 156), (237, 157), (237, 158), (237, 159), (237, 160), (237, 161), (237, 162), (237, 163), (237, 164), (237, 165), (237, 166), (237, 167), (237, 168), (237, 169), (237, 170), (237, 171), (237, 172), (237, 173), (237, 174), (237, 175), (237, 176), (237, 177), (237, 178), (237, 179), (237, 180), (237, 181), (237, 182), (237, 184), (238, 89), (238, 90), (238, 91), (238, 92), (238, 93), (238, 94), (238, 95), (238, 96), (238, 97), (238, 98), (238, 99), (238, 100), (238, 101), (238, 102), (238, 103), (238, 104), (238, 105), (238, 106), (238, 107), (238, 108), (238, 109), (238, 110), (238, 111), (238, 112), (238, 115), (238, 116), (238, 117), (238, 133), (238, 135),
(238, 136), (238, 137), (238, 138), (238, 139), (238, 140), (238, 141), (238, 142), (238, 143), (238, 144), (238, 145), (238, 146), (238, 147), (238, 148), (238, 149), (238, 150), (238, 151), (238, 152), (238, 153), (238, 154), (238, 155), (238, 156), (238, 157), (238, 158), (238, 159), (238, 160), (238, 161), (238, 162), (238, 163), (238, 164), (238, 165), (238, 166), (238, 167), (238, 168), (238, 169), (238, 170), (238, 171), (238, 172), (238, 173), (238, 174), (238, 175), (238, 176), (238, 177), (238, 178), (238, 179), (238, 180), (238, 181), (238, 182), (238, 184), (239, 89), (239, 91), (239, 92), (239, 93), (239, 94), (239, 95), (239, 96), (239, 97), (239, 98), (239, 99), (239, 100), (239, 101), (239, 102), (239, 103), (239, 104), (239, 105), (239, 106), (239, 107), (239, 108), (239, 109), (239, 110), (239, 111), (239, 112), (239, 113),
(239, 114), (239, 118), (239, 120), (239, 132), (239, 134), (239, 135), (239, 136), (239, 137), (239, 138), (239, 139), (239, 140), (239, 141), (239, 142), (239, 143), (239, 144), (239, 145), (239, 146), (239, 147), (239, 148), (239, 149), (239, 150), (239, 151), (239, 152), (239, 153), (239, 154), (239, 155), (239, 156), (239, 157), (239, 158), (239, 159), (239, 160), (239, 161), (239, 162), (239, 163), (239, 164), (239, 165), (239, 166), (239, 167), (239, 168), (239, 169), (239, 170), (239, 171), (239, 172), (239, 173), (239, 174), (239, 175), (239, 176), (239, 177), (239, 178), (239, 179), (239, 180), (239, 181), (239, 182), (239, 183), (239, 185), (240, 90), (240, 92), (240, 93), (240, 94), (240, 95), (240, 96), (240, 97), (240, 98), (240, 99), (240, 100), (240, 101), (240, 102), (240, 103), (240, 104), (240, 105), (240, 106), (240, 107),
(240, 108), (240, 109), (240, 110), (240, 111), (240, 112), (240, 113), (240, 114), (240, 115), (240, 116), (240, 117), (240, 122), (240, 131), (240, 133), (240, 134), (240, 135), (240, 136), (240, 137), (240, 138), (240, 139), (240, 140), (240, 141), (240, 142), (240, 143), (240, 144), (240, 145), (240, 146), (240, 147), (240, 148), (240, 149), (240, 150), (240, 151), (240, 152), (240, 153), (240, 154), (240, 155), (240, 156), (240, 157), (240, 158), (240, 159), (240, 160), (240, 161), (240, 162), (240, 163), (240, 164), (240, 165), (240, 166), (240, 167), (240, 168), (240, 169), (240, 170), (240, 171), (240, 172), (240, 173), (240, 174), (240, 175), (240, 176), (240, 177), (240, 178), (240, 179), (240, 180), (240, 181), (240, 182), (240, 183), (240, 185), (241, 90), (241, 92), (241, 93), (241, 94), (241, 95), (241, 96), (241, 97), (241, 98),
(241, 99), (241, 100), (241, 101), (241, 102), (241, 103), (241, 104), (241, 105), (241, 106), (241, 107), (241, 108), (241, 109), (241, 110), (241, 111), (241, 112), (241, 113), (241, 114), (241, 115), (241, 116), (241, 117), (241, 118), (241, 119), (241, 120), (241, 123), (241, 129), (241, 132), (241, 133), (241, 134), (241, 135), (241, 136), (241, 137), (241, 138), (241, 139), (241, 140), (241, 141), (241, 142), (241, 143), (241, 144), (241, 145), (241, 146), (241, 147), (241, 148), (241, 149), (241, 150), (241, 151), (241, 152), (241, 153), (241, 154), (241, 155), (241, 156), (241, 157), (241, 158), (241, 159), (241, 160), (241, 161), (241, 162), (241, 163), (241, 164), (241, 165), (241, 166), (241, 167), (241, 168), (241, 169), (241, 170), (241, 171), (241, 172), (241, 173), (241, 174), (241, 175), (241, 176), (241, 177), (241, 178), (241, 179),
(241, 180), (241, 181), (241, 182), (241, 183), (241, 185), (242, 91), (242, 93), (242, 94), (242, 95), (242, 96), (242, 97), (242, 98), (242, 99), (242, 100), (242, 101), (242, 102), (242, 103), (242, 104), (242, 105), (242, 106), (242, 107), (242, 108), (242, 109), (242, 110), (242, 111), (242, 112), (242, 113), (242, 114), (242, 115), (242, 116), (242, 117), (242, 118), (242, 119), (242, 120), (242, 121), (242, 122), (242, 125), (242, 126), (242, 127), (242, 128), (242, 131), (242, 132), (242, 133), (242, 134), (242, 135), (242, 136), (242, 137), (242, 138), (242, 139), (242, 140), (242, 141), (242, 142), (242, 143), (242, 144), (242, 145), (242, 146), (242, 147), (242, 148), (242, 149), (242, 150), (242, 151), (242, 152), (242, 153), (242, 154), (242, 155), (242, 156), (242, 157), (242, 158), (242, 159), (242, 160), (242, 161), (242, 162),
(242, 163), (242, 164), (242, 165), (242, 166), (242, 167), (242, 168), (242, 169), (242, 170), (242, 171), (242, 172), (242, 173), (242, 174), (242, 175), (242, 176), (242, 177), (242, 178), (242, 179), (242, 180), (242, 181), (242, 182), (242, 183), (242, 184), (242, 186), (243, 92), (243, 94), (243, 95), (243, 96), (243, 97), (243, 98), (243, 99), (243, 100), (243, 101), (243, 102), (243, 103), (243, 104), (243, 105), (243, 106), (243, 107), (243, 108), (243, 109), (243, 110), (243, 111), (243, 112), (243, 113), (243, 114), (243, 115), (243, 116), (243, 117), (243, 118), (243, 119), (243, 120), (243, 121), (243, 122), (243, 123), (243, 129), (243, 130), (243, 131), (243, 132), (243, 133), (243, 134), (243, 135), (243, 136), (243, 137), (243, 138), (243, 139), (243, 140), (243, 141), (243, 142), (243, 143), (243, 144), (243, 145), (243, 146),
(243, 147), (243, 148), (243, 149), (243, 150), (243, 151), (243, 152), (243, 153), (243, 154), (243, 155), (243, 156), (243, 157), (243, 158), (243, 159), (243, 160), (243, 161), (243, 162), (243, 163), (243, 164), (243, 165), (243, 166), (243, 167), (243, 168), (243, 169), (243, 170), (243, 171), (243, 172), (243, 173), (243, 174), (243, 175), (243, 176), (243, 177), (243, 178), (243, 179), (243, 180), (243, 181), (243, 182), (243, 183), (243, 184), (243, 186), (244, 92), (244, 95), (244, 96), (244, 97), (244, 98), (244, 99), (244, 100), (244, 101), (244, 102), (244, 103), (244, 104), (244, 105), (244, 106), (244, 107), (244, 108), (244, 109), (244, 110), (244, 111), (244, 112), (244, 113), (244, 114), (244, 115), (244, 116), (244, 117), (244, 118), (244, 119), (244, 120), (244, 121), (244, 122), (244, 123), (244, 124), (244, 125), (244, 126),
(244, 127), (244, 128), (244, 129), (244, 130), (244, 131), (244, 132), (244, 133), (244, 134), (244, 135), (244, 136), (244, 137), (244, 138), (244, 139), (244, 140), (244, 141), (244, 142), (244, 143), (244, 144), (244, 145), (244, 146), (244, 147), (244, 148), (244, 149), (244, 150), (244, 151), (244, 152), (244, 153), (244, 154), (244, 155), (244, 156), (244, 157), (244, 158), (244, 159), (244, 160), (244, 161), (244, 162), (244, 163), (244, 164), (244, 165), (244, 166), (244, 167), (244, 168), (244, 169), (244, 170), (244, 171), (244, 172), (244, 173), (244, 174), (244, 175), (244, 176), (244, 177), (244, 178), (244, 179), (244, 180), (244, 181), (244, 182), (244, 183), (244, 184), (244, 185), (244, 187), (245, 93), (245, 106), (245, 107), (245, 108), (245, 109), (245, 110), (245, 111), (245, 112), (245, 113), (245, 114), (245, 115), (245, 116),
(245, 117), (245, 118), (245, 119), (245, 120), (245, 121), (245, 122), (245, 123), (245, 124), (245, 125), (245, 126), (245, 127), (245, 128), (245, 129), (245, 130), (245, 131), (245, 132), (245, 133), (245, 134), (245, 135), (245, 136), (245, 137), (245, 138), (245, 139), (245, 140), (245, 141), (245, 142), (245, 143), (245, 144), (245, 145), (245, 146), (245, 147), (245, 148), (245, 149), (245, 150), (245, 151), (245, 152), (245, 153), (245, 154), (245, 155), (245, 156), (245, 157), (245, 158), (245, 159), (245, 160), (245, 161), (245, 162), (245, 163), (245, 164), (245, 165), (245, 166), (245, 167), (245, 168), (245, 169), (245, 170), (245, 171), (245, 172), (245, 173), (245, 174), (245, 175), (245, 176), (245, 177), (245, 178), (245, 179), (245, 180), (245, 181), (245, 182), (245, 183), (245, 184), (245, 185), (245, 186), (245, 188), (246, 94),
(246, 96), (246, 97), (246, 98), (246, 99), (246, 100), (246, 101), (246, 102), (246, 103), (246, 104), (246, 105), (246, 112), (246, 113), (246, 114), (246, 115), (246, 116), (246, 117), (246, 118), (246, 119), (246, 120), (246, 121), (246, 122), (246, 123), (246, 124), (246, 125), (246, 126), (246, 127), (246, 128), (246, 129), (246, 130), (246, 131), (246, 132), (246, 133), (246, 134), (246, 135), (246, 136), (246, 137), (246, 138), (246, 139), (246, 140), (246, 141), (246, 142), (246, 143), (246, 144), (246, 145), (246, 146), (246, 147), (246, 148), (246, 149), (246, 150), (246, 151), (246, 152), (246, 153), (246, 154), (246, 155), (246, 156), (246, 157), (246, 158), (246, 159), (246, 160), (246, 161), (246, 162), (246, 163), (246, 164), (246, 165), (246, 166), (246, 167), (246, 168), (246, 169), (246, 170), (246, 171), (246, 172), (246, 173),
(246, 174), (246, 175), (246, 176), (246, 177), (246, 178), (246, 179), (246, 180), (246, 181), (246, 182), (246, 183), (246, 184), (246, 185), (246, 186), (247, 106), (247, 107), (247, 108), (247, 109), (247, 110), (247, 111), (247, 114), (247, 115), (247, 116), (247, 117), (247, 118), (247, 119), (247, 120), (247, 121), (247, 122), (247, 123), (247, 124), (247, 125), (247, 126), (247, 127), (247, 128), (247, 129), (247, 130), (247, 131), (247, 132), (247, 133), (247, 134), (247, 135), (247, 136), (247, 137), (247, 138), (247, 139), (247, 140), (247, 141), (247, 142), (247, 143), (247, 144), (247, 145), (247, 146), (247, 147), (247, 148), (247, 149), (247, 150), (247, 151), (247, 152), (247, 153), (247, 154), (247, 155), (247, 156), (247, 157), (247, 158), (247, 159), (247, 160), (247, 161), (247, 162), (247, 163), (247, 164), (247, 165), (247, 166),
(247, 167), (247, 168), (247, 169), (247, 170), (247, 171), (247, 172), (247, 173), (247, 174), (247, 175), (247, 176), (247, 177), (247, 178), (247, 179), (247, 180), (247, 181), (247, 182), (247, 183), (247, 184), (247, 185), (247, 186), (247, 187), (248, 112), (248, 113), (248, 116), (248, 117), (248, 118), (248, 119), (248, 120), (248, 121), (248, 122), (248, 123), (248, 124), (248, 125), (248, 126), (248, 127), (248, 128), (248, 129), (248, 130), (248, 131), (248, 132), (248, 133), (248, 134), (248, 135), (248, 136), (248, 137), (248, 138), (248, 139), (248, 140), (248, 141), (248, 142), (248, 143), (248, 144), (248, 145), (248, 146), (248, 147), (248, 148), (248, 149), (248, 150), (248, 151), (248, 152), (248, 153), (248, 154), (248, 155), (248, 156), (248, 157), (248, 158), (248, 159), (248, 160), (248, 161), (248, 162), (248, 163), (248, 164),
(248, 165), (248, 166), (248, 167), (248, 168), (248, 169), (248, 170), (248, 171), (248, 172), (248, 173), (248, 174), (248, 175), (248, 176), (248, 177), (248, 178), (248, 179), (248, 180), (248, 181), (248, 182), (248, 183), (248, 184), (248, 185), (248, 186), (248, 187), (248, 188), (248, 192), (249, 115), (249, 118), (249, 119), (249, 120), (249, 121), (249, 122), (249, 123), (249, 124), (249, 125), (249, 126), (249, 127), (249, 128), (249, 129), (249, 130), (249, 131), (249, 132), (249, 133), (249, 134), (249, 135), (249, 136), (249, 137), (249, 138), (249, 139), (249, 140), (249, 141), (249, 142), (249, 143), (249, 144), (249, 145), (249, 146), (249, 147), (249, 148), (249, 149), (249, 150), (249, 151), (249, 152), (249, 153), (249, 154), (249, 155), (249, 156), (249, 157), (249, 158), (249, 159), (249, 160), (249, 161), (249, 162), (249, 163),
(249, 164), (249, 165), (249, 166), (249, 167), (249, 168), (249, 169), (249, 170), (249, 171), (249, 172), (249, 173), (249, 174), (249, 175), (249, 176), (249, 177), (249, 178), (249, 179), (249, 180), (249, 181), (249, 182), (249, 183), (249, 184), (249, 185), (249, 186), (249, 187), (249, 188), (249, 189), (249, 190), (249, 192), (250, 119), (250, 120), (250, 121), (250, 122), (250, 123), (250, 124), (250, 125), (250, 126), (250, 127), (250, 128), (250, 129), (250, 130), (250, 131), (250, 132), (250, 133), (250, 134), (250, 135), (250, 136), (250, 137), (250, 138), (250, 139), (250, 140), (250, 141), (250, 142), (250, 143), (250, 144), (250, 145), (250, 146), (250, 147), (250, 148), (250, 149), (250, 150), (250, 151), (250, 152), (250, 153), (250, 154), (250, 155), (250, 156), (250, 157), (250, 158), (250, 159), (250, 160), (250, 161), (250, 162),
(250, 163), (250, 164), (250, 165), (250, 166), (250, 167), (250, 168), (250, 169), (250, 170), (250, 171), (250, 172), (250, 173), (250, 174), (250, 175), (250, 176), (250, 177), (250, 178), (250, 179), (250, 180), (250, 181), (250, 182), (250, 183), (250, 184), (250, 185), (250, 186), (250, 187), (250, 188), (250, 189), (250, 190), (250, 192), (251, 118), (251, 120), (251, 121), (251, 122), (251, 123), (251, 124), (251, 125), (251, 126), (251, 127), (251, 128), (251, 129), (251, 130), (251, 131), (251, 132), (251, 133), (251, 134), (251, 135), (251, 136), (251, 137), (251, 138), (251, 139), (251, 140), (251, 141), (251, 142), (251, 143), (251, 144), (251, 145), (251, 146), (251, 147), (251, 148), (251, 149), (251, 150), (251, 151), (251, 152), (251, 153), (251, 154), (251, 155), (251, 156), (251, 157), (251, 158), (251, 159), (251, 160), (251, 161),
(251, 162), (251, 163), (251, 164), (251, 165), (251, 166), (251, 167), (251, 168), (251, 169), (251, 170), (251, 171), (251, 172), (251, 173), (251, 174), (251, 175), (251, 176), (251, 177), (251, 178), (251, 179), (251, 180), (251, 181), (251, 182), (251, 183), (251, 184), (251, 185), (251, 186), (251, 187), (251, 188), (251, 189), (251, 190), (251, 192), (252, 119), (252, 121), (252, 122), (252, 123), (252, 124), (252, 125), (252, 126), (252, 127), (252, 128), (252, 129), (252, 130), (252, 131), (252, 132), (252, 133), (252, 134), (252, 135), (252, 136), (252, 137), (252, 138), (252, 139), (252, 140), (252, 141), (252, 142), (252, 143), (252, 144), (252, 145), (252, 146), (252, 147), (252, 148), (252, 149), (252, 150), (252, 151), (252, 152), (252, 153), (252, 154), (252, 155), (252, 156), (252, 157), (252, 158), (252, 159), (252, 160), (252, 161),
(252, 162), (252, 163), (252, 164), (252, 165), (252, 166), (252, 167), (252, 168), (252, 169), (252, 170), (252, 171), (252, 172), (252, 173), (252, 174), (252, 175), (252, 176), (252, 177), (252, 178), (252, 179), (252, 180), (252, 181), (252, 182), (252, 183), (252, 184), (252, 185), (252, 186), (252, 187), (252, 188), (252, 189), (252, 190), (252, 192), (253, 120), (253, 122), (253, 123), (253, 124), (253, 125), (253, 126), (253, 127), (253, 128), (253, 129), (253, 130), (253, 131), (253, 132), (253, 133), (253, 134), (253, 135), (253, 136), (253, 137), (253, 138), (253, 139), (253, 140), (253, 141), (253, 142), (253, 143), (253, 144), (253, 145), (253, 146), (253, 147), (253, 148), (253, 149), (253, 150), (253, 151), (253, 152), (253, 153), (253, 154), (253, 155), (253, 156), (253, 157), (253, 158), (253, 159), (253, 160), (253, 161), (253, 162),
(253, 163), (253, 164), (253, 165), (253, 166), (253, 167), (253, 168), (253, 169), (253, 170), (253, 171), (253, 172), (253, 173), (253, 174), (253, 175), (253, 176), (253, 177), (253, 178), (253, 179), (253, 180), (253, 181), (253, 182), (253, 183), (253, 184), (253, 185), (253, 186), (253, 187), (253, 188), (253, 189), (253, 190), (253, 192), (254, 121), (254, 123), (254, 124), (254, 125), (254, 126), (254, 127), (254, 128), (254, 129), (254, 130), (254, 131), (254, 132), (254, 133), (254, 134), (254, 135), (254, 136), (254, 137), (254, 138), (254, 139), (254, 140), (254, 141), (254, 142), (254, 143), (254, 144), (254, 145), (254, 146), (254, 147), (254, 148), (254, 149), (254, 150), (254, 151), (254, 152), (254, 153), (254, 154), (254, 155), (254, 156), (254, 157), (254, 158), (254, 159), (254, 160), (254, 161), (254, 162), (254, 163), (254, 164),
(254, 165), (254, 166), (254, 167), (254, 168), (254, 169), (254, 170), (254, 171), (254, 172), (254, 173), (254, 174), (254, 175), (254, 176), (254, 177), (254, 178), (254, 179), (254, 180), (254, 181), (254, 182), (254, 183), (254, 184), (254, 185), (254, 186), (254, 187), (254, 188), (254, 189), (254, 190), (254, 192), (255, 121), (255, 123), (255, 124), (255, 125), (255, 126), (255, 127), (255, 128), (255, 129), (255, 130), (255, 131), (255, 132), (255, 133), (255, 134), (255, 135), (255, 136), (255, 137), (255, 138), (255, 139), (255, 140), (255, 141), (255, 142), (255, 143), (255, 144), (255, 145), (255, 146), (255, 147), (255, 148), (255, 149), (255, 150), (255, 151), (255, 152), (255, 153), (255, 154), (255, 155), (255, 156), (255, 157), (255, 158), (255, 159), (255, 160), (255, 161), (255, 162), (255, 163), (255, 164), (255, 165), (255, 166),
(255, 167), (255, 168), (255, 169), (255, 170), (255, 171), (255, 172), (255, 173), (255, 174), (255, 175), (255, 176), (255, 177), (255, 178), (255, 179), (255, 180), (255, 181), (255, 182), (255, 183), (255, 184), (255, 185), (255, 186), (255, 187), (255, 188), (255, 189), (255, 190), (255, 192), (256, 122), (256, 124), (256, 125), (256, 126), (256, 127), (256, 128), (256, 129), (256, 130), (256, 131), (256, 132), (256, 133), (256, 134), (256, 135), (256, 136), (256, 137), (256, 138), (256, 139), (256, 140), (256, 141), (256, 142), (256, 143), (256, 144), (256, 145), (256, 146), (256, 147), (256, 148), (256, 149), (256, 150), (256, 151), (256, 152), (256, 153), (256, 154), (256, 155), (256, 156), (256, 157), (256, 158), (256, 159), (256, 160), (256, 161), (256, 162), (256, 163), (256, 164), (256, 165), (256, 166), (256, 167), (256, 168), (256, 169),
(256, 170), (256, 171), (256, 172), (256, 173), (256, 174), (256, 175), (256, 176), (256, 177), (256, 178), (256, 179), (256, 180), (256, 181), (256, 182), (256, 183), (256, 184), (256, 185), (256, 186), (256, 187), (256, 188), (256, 189), (256, 190), (256, 192), (257, 122), (257, 124), (257, 125), (257, 126), (257, 127), (257, 128), (257, 129), (257, 130), (257, 131), (257, 132), (257, 133), (257, 134), (257, 135), (257, 136), (257, 137), (257, 138), (257, 139), (257, 140), (257, 141), (257, 142), (257, 143), (257, 144), (257, 145), (257, 146), (257, 147), (257, 148), (257, 149), (257, 150), (257, 151), (257, 152), (257, 153), (257, 154), (257, 155), (257, 156), (257, 157), (257, 158), (257, 159), (257, 160), (257, 161), (257, 162), (257, 163), (257, 164), (257, 165), (257, 166), (257, 167), (257, 168), (257, 169), (257, 170), (257, 171), (257, 172),
(257, 173), (257, 174), (257, 175), (257, 176), (257, 177), (257, 178), (257, 179), (257, 180), (257, 181), (257, 182), (257, 183), (257, 184), (257, 185), (257, 186), (257, 187), (257, 188), (257, 189), (257, 190), (257, 192), (258, 122), (258, 123), (258, 124), (258, 125), (258, 126), (258, 127), (258, 128), (258, 129), (258, 130), (258, 131), (258, 132), (258, 133), (258, 134), (258, 135), (258, 136), (258, 137), (258, 138), (258, 139), (258, 140), (258, 141), (258, 142), (258, 143), (258, 144), (258, 145), (258, 146), (258, 147), (258, 148), (258, 149), (258, 150), (258, 151), (258, 152), (258, 153), (258, 154), (258, 155), (258, 156), (258, 157), (258, 158), (258, 159), (258, 160), (258, 161), (258, 162), (258, 163), (258, 164), (258, 165), (258, 166), (258, 167), (258, 168), (258, 169), (258, 170), (258, 171), (258, 172), (258, 173), (258, 174),
(258, 175), (258, 176), (258, 177), (258, 178), (258, 179), (258, 180), (258, 181), (258, 182), (258, 183), (258, 184), (258, 185), (258, 186), (258, 187), (258, 188), (258, 189), (258, 191), (259, 123), (259, 125), (259, 126), (259, 127), (259, 128), (259, 129), (259, 130), (259, 131), (259, 132), (259, 133), (259, 134), (259, 135), (259, 136), (259, 137), (259, 138), (259, 139), (259, 140), (259, 141), (259, 142), (259, 143), (259, 144), (259, 145), (259, 146), (259, 147), (259, 148), (259, 149), (259, 150), (259, 151), (259, 152), (259, 153), (259, 154), (259, 155), (259, 156), (259, 157), (259, 158), (259, 159), (259, 160), (259, 161), (259, 162), (259, 163), (259, 164), (259, 165), (259, 166), (259, 167), (259, 168), (259, 169), (259, 170), (259, 171), (259, 172), (259, 173), (259, 174), (259, 175), (259, 176), (259, 177), (259, 178), (259, 179),
(259, 180), (259, 181), (259, 182), (259, 183), (259, 184), (259, 185), (259, 186), (259, 187), (259, 188), (259, 189), (259, 191), (260, 123), (260, 125), (260, 126), (260, 127), (260, 128), (260, 129), (260, 130), (260, 131), (260, 132), (260, 133), (260, 134), (260, 135), (260, 136), (260, 137), (260, 138), (260, 139), (260, 140), (260, 141), (260, 142), (260, 143), (260, 144), (260, 145), (260, 146), (260, 147), (260, 148), (260, 149), (260, 150), (260, 151), (260, 152), (260, 153), (260, 154), (260, 155), (260, 156), (260, 157), (260, 158), (260, 159), (260, 160), (260, 161), (260, 162), (260, 163), (260, 164), (260, 165), (260, 166), (260, 167), (260, 168), (260, 169), (260, 170), (260, 171), (260, 172), (260, 173), (260, 174), (260, 175), (260, 176), (260, 177), (260, 178), (260, 179), (260, 180), (260, 181), (260, 182), (260, 183), (260, 184),
(260, 185), (260, 186), (260, 187), (260, 188), (260, 189), (260, 191), (261, 123), (261, 125), (261, 126), (261, 127), (261, 128), (261, 129), (261, 130), (261, 131), (261, 132), (261, 133), (261, 134), (261, 135), (261, 136), (261, 137), (261, 138), (261, 139), (261, 140), (261, 141), (261, 142), (261, 143), (261, 144), (261, 145), (261, 146), (261, 147), (261, 148), (261, 149), (261, 150), (261, 151), (261, 152), (261, 153), (261, 154), (261, 155), (261, 156), (261, 157), (261, 158), (261, 159), (261, 160), (261, 161), (261, 162), (261, 163), (261, 164), (261, 165), (261, 166), (261, 167), (261, 168), (261, 169), (261, 170), (261, 171), (261, 172), (261, 173), (261, 174), (261, 175), (261, 176), (261, 177), (261, 178), (261, 179), (261, 180), (261, 181), (261, 182), (261, 183), (261, 184), (261, 185), (261, 186), (261, 187), (261, 188), (261, 190),
(262, 123), (262, 125), (262, 126), (262, 127), (262, 128), (262, 129), (262, 130), (262, 131), (262, 132), (262, 133), (262, 134), (262, 135), (262, 136), (262, 137), (262, 138), (262, 139), (262, 140), (262, 141), (262, 142), (262, 143), (262, 144), (262, 145), (262, 146), (262, 147), (262, 148), (262, 149), (262, 150), (262, 151), (262, 152), (262, 153), (262, 154), (262, 155), (262, 156), (262, 157), (262, 158), (262, 159), (262, 160), (262, 161), (262, 162), (262, 163), (262, 164), (262, 165), (262, 166), (262, 167), (262, 168), (262, 169), (262, 170), (262, 171), (262, 172), (262, 173), (262, 174), (262, 175), (262, 176), (262, 177), (262, 178), (262, 179), (262, 180), (262, 181), (262, 182), (262, 183), (262, 184), (262, 185), (262, 186), (262, 187), (262, 188), (262, 190), (263, 123), (263, 125), (263, 126), (263, 127), (263, 128), (263, 129),
(263, 130), (263, 131), (263, 132), (263, 133), (263, 134), (263, 135), (263, 136), (263, 137), (263, 138), (263, 139), (263, 140), (263, 141), (263, 142), (263, 143), (263, 144), (263, 145), (263, 146), (263, 147), (263, 148), (263, 149), (263, 150), (263, 151), (263, 152), (263, 153), (263, 154), (263, 155), (263, 156), (263, 157), (263, 158), (263, 159), (263, 160), (263, 161), (263, 162), (263, 163), (263, 164), (263, 165), (263, 166), (263, 167), (263, 168), (263, 169), (263, 170), (263, 171), (263, 172), (263, 173), (263, 174), (263, 175), (263, 176), (263, 177), (263, 178), (263, 179), (263, 180), (263, 181), (263, 182), (263, 183), (263, 184), (263, 185), (263, 186), (263, 187), (263, 189), (264, 122), (264, 124), (264, 125), (264, 126), (264, 127), (264, 128), (264, 129), (264, 130), (264, 131), (264, 132), (264, 133), (264, 134), (264, 135),
(264, 136), (264, 137), (264, 138), (264, 139), (264, 140), (264, 141), (264, 142), (264, 143), (264, 144), (264, 145), (264, 146), (264, 147), (264, 148), (264, 149), (264, 150), (264, 151), (264, 152), (264, 153), (264, 154), (264, 155), (264, 156), (264, 157), (264, 158), (264, 159), (264, 160), (264, 161), (264, 162), (264, 163), (264, 164), (264, 165), (264, 166), (264, 167), (264, 168), (264, 169), (264, 170), (264, 171), (264, 172), (264, 173), (264, 174), (264, 175), (264, 176), (264, 177), (264, 178), (264, 179), (264, 180), (264, 181), (264, 182), (264, 183), (264, 184), (264, 185), (264, 186), (264, 188), (265, 122), (265, 124), (265, 125), (265, 126), (265, 127), (265, 128), (265, 129), (265, 130), (265, 131), (265, 132), (265, 133), (265, 134), (265, 135), (265, 136), (265, 137), (265, 138), (265, 139), (265, 140), (265, 141), (265, 142),
(265, 143), (265, 144), (265, 145), (265, 146), (265, 147), (265, 148), (265, 149), (265, 150), (265, 151), (265, 152), (265, 153), (265, 154), (265, 155), (265, 156), (265, 157), (265, 158), (265, 159), (265, 160), (265, 161), (265, 162), (265, 163), (265, 164), (265, 165), (265, 166), (265, 167), (265, 168), (265, 169), (265, 170), (265, 171), (265, 172), (265, 173), (265, 174), (265, 175), (265, 176), (265, 177), (265, 178), (265, 179), (265, 180), (265, 181), (265, 182), (265, 183), (265, 184), (265, 185), (265, 187), (266, 122), (266, 124), (266, 125), (266, 126), (266, 127), (266, 128), (266, 129), (266, 130), (266, 131), (266, 132), (266, 133), (266, 134), (266, 135), (266, 138), (266, 139), (266, 140), (266, 141), (266, 142), (266, 143), (266, 144), (266, 145), (266, 146), (266, 147), (266, 148), (266, 149), (266, 150), (266, 151), (266, 152),
(266, 153), (266, 154), (266, 155), (266, 156), (266, 157), (266, 158), (266, 159), (266, 160), (266, 161), (266, 162), (266, 163), (266, 164), (266, 165), (266, 166), (266, 167), (266, 168), (266, 169), (266, 170), (266, 171), (266, 172), (266, 173), (266, 174), (266, 175), (266, 176), (266, 177), (266, 178), (266, 179), (266, 180), (266, 181), (266, 182), (266, 183), (266, 184), (267, 122), (267, 124), (267, 125), (267, 126), (267, 127), (267, 128), (267, 129), (267, 130), (267, 131), (267, 132), (267, 136), (267, 137), (267, 139), (267, 140), (267, 141), (267, 142), (267, 143), (267, 144), (267, 145), (267, 146), (267, 147), (267, 148), (267, 149), (267, 150), (267, 151), (267, 152), (267, 153), (267, 154), (267, 155), (267, 156), (267, 157), (267, 158), (267, 159), (267, 160), (267, 161), (267, 162), (267, 163), (267, 164), (267, 165), (267, 166),
(267, 167), (267, 168), (267, 169), (267, 170), (267, 171), (267, 172), (267, 173), (267, 174), (267, 175), (267, 176), (267, 177), (267, 178), (267, 179), (267, 180), (267, 181), (267, 186), (268, 121), (268, 123), (268, 124), (268, 125), (268, 126), (268, 127), (268, 128), (268, 129), (268, 130), (268, 134), (268, 139), (268, 142), (268, 143), (268, 144), (268, 145), (268, 146), (268, 147), (268, 148), (268, 149), (268, 150), (268, 151), (268, 152), (268, 153), (268, 154), (268, 155), (268, 156), (268, 157), (268, 158), (268, 159), (268, 160), (268, 161), (268, 162), (268, 163), (268, 164), (268, 165), (268, 166), (268, 167), (268, 168), (268, 169), (268, 170), (268, 171), (268, 172), (268, 173), (268, 174), (268, 175), (268, 176), (268, 177), (268, 178), (268, 179), (268, 180), (268, 183), (269, 121), (269, 123), (269, 124), (269, 125), (269, 126),
(269, 127), (269, 128), (269, 129), (269, 132), (269, 139), (269, 141), (269, 145), (269, 146), (269, 147), (269, 148), (269, 149), (269, 150), (269, 151), (269, 152), (269, 153), (269, 154), (269, 155), (269, 156), (269, 157), (269, 158), (269, 159), (269, 160), (269, 161), (269, 162), (269, 163), (269, 164), (269, 165), (269, 166), (269, 167), (269, 168), (269, 169), (269, 170), (269, 171), (269, 172), (269, 173), (269, 174), (269, 175), (269, 176), (269, 177), (269, 178), (269, 179), (269, 181), (270, 120), (270, 122), (270, 123), (270, 124), (270, 125), (270, 126), (270, 127), (270, 128), (270, 130), (270, 142), (270, 143), (270, 144), (270, 147), (270, 148), (270, 149), (270, 150), (270, 151), (270, 152), (270, 153), (270, 154), (270, 155), (270, 156), (270, 157), (270, 158), (270, 159), (270, 160), (270, 161), (270, 162), (270, 163), (270, 164),
(270, 165), (270, 166), (270, 167), (270, 168), (270, 169), (270, 170), (270, 171), (270, 172), (270, 173), (270, 174), (270, 175), (270, 176), (270, 177), (270, 178), (270, 180), (271, 119), (271, 121), (271, 122), (271, 123), (271, 124), (271, 125), (271, 126), (271, 127), (271, 129), (271, 148), (271, 149), (271, 150), (271, 151), (271, 152), (271, 153), (271, 154), (271, 155), (271, 156), (271, 157), (271, 158), (271, 159), (271, 160), (271, 161), (271, 162), (271, 163), (271, 164), (271, 165), (271, 166), (271, 167), (271, 168), (271, 169), (271, 170), (271, 171), (271, 172), (271, 173), (271, 174), (271, 175), (271, 176), (271, 177), (271, 179), (272, 118), (272, 120), (272, 121), (272, 122), (272, 123), (272, 124), (272, 125), (272, 126), (272, 128), (272, 147), (272, 149), (272, 150), (272, 151), (272, 152), (272, 153), (272, 154), (272, 155),
(272, 156), (272, 157), (272, 158), (272, 159), (272, 160), (272, 161), (272, 162), (272, 163), (272, 164), (272, 165), (272, 166), (272, 167), (272, 168), (272, 169), (272, 170), (272, 171), (272, 172), (272, 173), (272, 174), (272, 175), (272, 176), (272, 178), (273, 117), (273, 119), (273, 120), (273, 121), (273, 122), (273, 123), (273, 124), (273, 125), (273, 127), (273, 147), (273, 149), (273, 150), (273, 151), (273, 152), (273, 153), (273, 154), (273, 155), (273, 156), (273, 157), (273, 158), (273, 159), (273, 160), (273, 161), (273, 162), (273, 163), (273, 164), (273, 165), (273, 166), (273, 167), (273, 168), (273, 169), (273, 170), (273, 171), (273, 172), (273, 173), (273, 174), (273, 175), (273, 176), (273, 178), (274, 114), (274, 118), (274, 119), (274, 120), (274, 121), (274, 122), (274, 123), (274, 124), (274, 126), (274, 148), (274, 150),
(274, 151), (274, 152), (274, 153), (274, 154), (274, 155), (274, 156), (274, 157), (274, 158), (274, 159), (274, 160), (274, 161), (274, 162), (274, 163), (274, 164), (274, 165), (274, 166), (274, 167), (274, 168), (274, 169), (274, 170), (274, 171), (274, 172), (274, 173), (274, 174), (274, 175), (274, 177), (275, 113), (275, 117), (275, 118), (275, 119), (275, 120), (275, 121), (275, 122), (275, 123), (275, 125), (275, 148), (275, 150), (275, 151), (275, 152), (275, 153), (275, 154), (275, 155), (275, 156), (275, 157), (275, 158), (275, 159), (275, 160), (275, 161), (275, 162), (275, 163), (275, 164), (275, 165), (275, 166), (275, 167), (275, 168), (275, 169), (275, 170), (275, 171), (275, 172), (275, 173), (275, 174), (275, 175), (275, 177), (276, 113), (276, 115), (276, 116), (276, 117), (276, 118), (276, 119), (276, 120), (276, 121), (276, 122),
(276, 124), (276, 148), (276, 150), (276, 151), (276, 152), (276, 153), (276, 154), (276, 155), (276, 156), (276, 157), (276, 158), (276, 159), (276, 160), (276, 161), (276, 162), (276, 163), (276, 164), (276, 165), (276, 166), (276, 167), (276, 168), (276, 169), (276, 170), (276, 171), (276, 172), (276, 173), (276, 174), (276, 175), (276, 177), (277, 112), (277, 114), (277, 115), (277, 116), (277, 117), (277, 118), (277, 119), (277, 120), (277, 121), (277, 122), (277, 124), (277, 149), (277, 151), (277, 152), (277, 153), (277, 154), (277, 155), (277, 156), (277, 157), (277, 158), (277, 159), (277, 160), (277, 161), (277, 162), (277, 163), (277, 164), (277, 165), (277, 166), (277, 167), (277, 168), (277, 169), (277, 170), (277, 171), (277, 172), (277, 173), (277, 174), (277, 175), (277, 176), (277, 177), (278, 112), (278, 114), (278, 115), (278, 116),
(278, 117), (278, 118), (278, 119), (278, 120), (278, 121), (278, 123), (278, 149), (278, 151), (278, 152), (278, 153), (278, 154), (278, 155), (278, 156), (278, 157), (278, 158), (278, 159), (278, 160), (278, 161), (278, 162), (278, 163), (278, 164), (278, 165), (278, 166), (278, 167), (278, 168), (278, 169), (278, 170), (278, 171), (278, 172), (278, 173), (278, 174), (278, 176), (279, 111), (279, 113), (279, 114), (279, 115), (279, 116), (279, 117), (279, 118), (279, 119), (279, 120), (279, 123), (279, 149), (279, 151), (279, 152), (279, 153), (279, 154), (279, 155), (279, 156), (279, 157), (279, 158), (279, 159), (279, 160), (279, 161), (279, 162), (279, 163), (279, 164), (279, 165), (279, 166), (279, 167), (279, 168), (279, 169), (279, 170), (279, 171), (279, 172), (279, 173), (279, 174), (279, 176), (280, 110), (280, 112), (280, 113), (280, 114),
(280, 115), (280, 116), (280, 117), (280, 118), (280, 119), (280, 122), (280, 123), (280, 149), (280, 151), (280, 152), (280, 153), (280, 154), (280, 155), (280, 156), (280, 157), (280, 158), (280, 159), (280, 160), (280, 161), (280, 162), (280, 163), (280, 164), (280, 165), (280, 166), (280, 167), (280, 168), (280, 169), (280, 170), (280, 171), (280, 172), (280, 173), (280, 174), (280, 176), (281, 110), (281, 112), (281, 113), (281, 114), (281, 115), (281, 116), (281, 117), (281, 118), (281, 120), (281, 149), (281, 151), (281, 152), (281, 153), (281, 154), (281, 155), (281, 156), (281, 157), (281, 158), (281, 159), (281, 160), (281, 161), (281, 162), (281, 163), (281, 164), (281, 165), (281, 166), (281, 167), (281, 168), (281, 169), (281, 170), (281, 171), (281, 172), (281, 173), (281, 174), (281, 176), (282, 110), (282, 112), (282, 113), (282, 114),
(282, 115), (282, 116), (282, 117), (282, 119), (282, 149), (282, 151), (282, 152), (282, 153), (282, 154), (282, 155), (282, 156), (282, 157), (282, 158), (282, 159), (282, 160), (282, 161), (282, 162), (282, 163), (282, 164), (282, 165), (282, 166), (282, 167), (282, 168), (282, 169), (282, 170), (282, 171), (282, 172), (282, 173), (282, 174), (282, 176), (283, 109), (283, 111), (283, 112), (283, 113), (283, 114), (283, 115), (283, 116), (283, 118), (283, 149), (283, 151), (283, 152), (283, 153), (283, 154), (283, 155), (283, 156), (283, 157), (283, 158), (283, 159), (283, 160), (283, 161), (283, 162), (283, 163), (283, 164), (283, 165), (283, 166), (283, 167), (283, 168), (283, 169), (283, 170), (283, 171), (283, 172), (283, 173), (283, 174), (283, 176), (284, 109), (284, 111), (284, 112), (284, 113), (284, 114), (284, 115), (284, 117), (284, 149),
(284, 151), (284, 152), (284, 153), (284, 154), (284, 155), (284, 156), (284, 157), (284, 158), (284, 159), (284, 160), (284, 161), (284, 162), (284, 163), (284, 164), (284, 165), (284, 166), (284, 167), (284, 168), (284, 169), (284, 170), (284, 171), (284, 172), (284, 173), (284, 174), (284, 176), (285, 109), (285, 111), (285, 112), (285, 113), (285, 114), (285, 116), (285, 149), (285, 151), (285, 152), (285, 153), (285, 154), (285, 155), (285, 156), (285, 157), (285, 158), (285, 159), (285, 160), (285, 161), (285, 162), (285, 163), (285, 164), (285, 165), (285, 166), (285, 167), (285, 168), (285, 169), (285, 170), (285, 171), (285, 172), (285, 173), (285, 174), (285, 176), (286, 109), (286, 115), (286, 149), (286, 151), (286, 152), (286, 153), (286, 154), (286, 155), (286, 156), (286, 157), (286, 158), (286, 159), (286, 160), (286, 161), (286, 162),
(286, 163), (286, 164), (286, 165), (286, 166), (286, 167), (286, 168), (286, 169), (286, 170), (286, 171), (286, 172), (286, 173), (286, 174), (286, 175), (286, 177), (287, 110), (287, 112), (287, 114), (287, 149), (287, 151), (287, 152), (287, 153), (287, 154), (287, 155), (287, 156), (287, 157), (287, 158), (287, 159), (287, 160), (287, 161), (287, 162), (287, 163), (287, 164), (287, 165), (287, 166), (287, 167), (287, 168), (287, 169), (287, 170), (287, 171), (287, 172), (287, 173), (287, 174), (287, 175), (287, 177), (288, 149), (288, 151), (288, 152), (288, 153), (288, 154), (288, 155), (288, 156), (288, 157), (288, 158), (288, 159), (288, 160), (288, 161), (288, 162), (288, 163), (288, 164), (288, 165), (288, 166), (288, 167), (288, 168), (288, 169), (288, 170), (288, 171), (288, 172), (288, 173), (288, 174), (288, 175), (288, 177), (289, 148),
(289, 150), (289, 151), (289, 152), (289, 153), (289, 154), (289, 155), (289, 156), (289, 157), (289, 158), (289, 159), (289, 160), (289, 161), (289, 162), (289, 163), (289, 164), (289, 165), (289, 166), (289, 167), (289, 168), (289, 169), (289, 170), (289, 171), (289, 172), (289, 173), (289, 174), (289, 175), (289, 177), (290, 148), (290, 150), (290, 151), (290, 152), (290, 153), (290, 154), (290, 155), (290, 156), (290, 157), (290, 158), (290, 159), (290, 160), (290, 161), (290, 162), (290, 163), (290, 164), (290, 165), (290, 166), (290, 167), (290, 168), (290, 169), (290, 170), (290, 171), (290, 172), (290, 173), (290, 174), (290, 175), (290, 176), (290, 178), (291, 148), (291, 150), (291, 151), (291, 152), (291, 153), (291, 154), (291, 155), (291, 156), (291, 157), (291, 158), (291, 159), (291, 160), (291, 161), (291, 162), (291, 163), (291, 164),
(291, 165), (291, 166), (291, 167), (291, 168), (291, 169), (291, 170), (291, 171), (291, 172), (291, 173), (291, 174), (291, 175), (291, 176), (291, 178), (292, 147), (292, 149), (292, 150), (292, 151), (292, 152), (292, 153), (292, 154), (292, 155), (292, 156), (292, 157), (292, 158), (292, 159), (292, 160), (292, 161), (292, 162), (292, 163), (292, 164), (292, 165), (292, 166), (292, 167), (292, 168), (292, 169), (292, 170), (292, 171), (292, 172), (292, 173), (292, 174), (292, 175), (292, 176), (292, 177), (292, 179), (293, 145), (293, 148), (293, 149), (293, 150), (293, 151), (293, 152), (293, 153), (293, 154), (293, 155), (293, 156), (293, 157), (293, 158), (293, 159), (293, 160), (293, 161), (293, 162), (293, 163), (293, 164), (293, 165), (293, 166), (293, 167), (293, 168), (293, 169), (293, 170), (293, 171), (293, 172), (293, 173), (293, 174),
(293, 175), (293, 176), (293, 177), (293, 178), (293, 180), (294, 145), (294, 147), (294, 148), (294, 149), (294, 150), (294, 151), (294, 152), (294, 153), (294, 154), (294, 155), (294, 156), (294, 157), (294, 158), (294, 159), (294, 160), (294, 161), (294, 162), (294, 163), (294, 164), (294, 165), (294, 166), (294, 167), (294, 168), (294, 169), (294, 170), (294, 171), (294, 172), (294, 173), (294, 174), (294, 175), (294, 176), (294, 177), (294, 178), (294, 179), (294, 181), (295, 145), (295, 147), (295, 148), (295, 149), (295, 150), (295, 151), (295, 152), (295, 153), (295, 154), (295, 155), (295, 156), (295, 157), (295, 164), (295, 165), (295, 166), (295, 167), (295, 168), (295, 169), (295, 170), (295, 171), (295, 172), (295, 173), (295, 174), (295, 175), (295, 176), (295, 177), (295, 178), (295, 179), (295, 180), (295, 184), (296, 144), (296, 146),
(296, 147), (296, 148), (296, 149), (296, 150), (296, 151), (296, 152), (296, 153), (296, 154), (296, 155), (296, 156), (296, 159), (296, 160), (296, 161), (296, 162), (296, 165), (296, 166), (296, 167), (296, 168), (296, 169), (296, 170), (296, 171), (296, 172), (296, 173), (296, 174), (296, 175), (296, 176), (296, 177), (296, 178), (296, 179), (296, 180), (296, 181), (296, 184), (297, 144), (297, 146), (297, 147), (297, 148), (297, 149), (297, 150), (297, 151), (297, 152), (297, 153), (297, 154), (297, 155), (297, 157), (297, 164), (297, 167), (297, 168), (297, 169), (297, 170), (297, 171), (297, 172), (297, 173), (297, 174), (297, 175), (297, 176), (297, 177), (297, 178), (297, 179), (297, 180), (297, 181), (297, 182), (297, 184), (298, 144), (298, 146), (298, 147), (298, 148), (298, 149), (298, 150), (298, 151), (298, 152), (298, 153), (298, 154),
(298, 156), (298, 165), (298, 171), (298, 172), (298, 173), (298, 174), (298, 175), (298, 176), (298, 177), (298, 178), (298, 179), (298, 180), (298, 181), (298, 182), (298, 183), (298, 185), (299, 143), (299, 145), (299, 146), (299, 147), (299, 148), (299, 149), (299, 150), (299, 151), (299, 152), (299, 153), (299, 155), (299, 167), (299, 169), (299, 172), (299, 173), (299, 174), (299, 175), (299, 176), (299, 177), (299, 178), (299, 179), (299, 180), (299, 181), (299, 182), (299, 183), (299, 185), (300, 143), (300, 145), (300, 146), (300, 147), (300, 148), (300, 149), (300, 150), (300, 151), (300, 152), (300, 154), (300, 171), (300, 173), (300, 174), (300, 175), (300, 176), (300, 177), (300, 178), (300, 179), (300, 180), (300, 181), (300, 182), (300, 183), (300, 184), (300, 186), (301, 142), (301, 144), (301, 145), (301, 146), (301, 147), (301, 148),
(301, 149), (301, 150), (301, 151), (301, 153), (301, 172), (301, 174), (301, 175), (301, 176), (301, 177), (301, 178), (301, 179), (301, 180), (301, 181), (301, 182), (301, 183), (301, 184), (301, 185), (301, 187), (302, 142), (302, 144), (302, 145), (302, 146), (302, 147), (302, 148), (302, 149), (302, 150), (302, 151), (302, 153), (302, 173), (302, 175), (302, 176), (302, 177), (302, 178), (302, 179), (302, 180), (302, 181), (302, 182), (302, 183), (302, 184), (302, 185), (302, 186), (302, 188), (303, 141), (303, 143), (303, 144), (303, 145), (303, 146), (303, 147), (303, 148), (303, 149), (303, 150), (303, 152), (303, 174), (303, 177), (303, 178), (303, 179), (303, 180), (303, 181), (303, 182), (303, 183), (303, 184), (303, 185), (303, 186), (303, 187), (303, 189), (304, 140), (304, 142), (304, 143), (304, 144), (304, 145), (304, 146), (304, 147),
(304, 148), (304, 149), (304, 150), (304, 152), (304, 175), (304, 178), (304, 179), (304, 180), (304, 181), (304, 182), (304, 183), (304, 184), (304, 185), (304, 186), (304, 187), (304, 188), (304, 190), (305, 140), (305, 142), (305, 143), (305, 144), (305, 145), (305, 146), (305, 147), (305, 148), (305, 149), (305, 151), (305, 177), (305, 180), (305, 181), (305, 182), (305, 183), (305, 184), (305, 185), (305, 186), (305, 187), (305, 188), (305, 189), (305, 191), (306, 139), (306, 141), (306, 142), (306, 143), (306, 144), (306, 145), (306, 146), (306, 147), (306, 148), (306, 149), (306, 151), (306, 178), (306, 182), (306, 183), (306, 184), (306, 185), (306, 186), (306, 187), (306, 188), (306, 189), (306, 190), (306, 192), (307, 139), (307, 141), (307, 142), (307, 143), (307, 144), (307, 145), (307, 146), (307, 147), (307, 148), (307, 149), (307, 151),
(307, 180), (307, 184), (307, 185), (307, 186), (307, 187), (307, 188), (307, 189), (307, 190), (307, 191), (307, 193), (308, 139), (308, 141), (308, 142), (308, 143), (308, 144), (308, 145), (308, 146), (308, 147), (308, 148), (308, 150), (308, 182), (308, 183), (308, 186), (308, 187), (308, 188), (308, 189), (308, 190), (308, 191), (308, 192), (308, 194), (309, 139), (309, 141), (309, 142), (309, 143), (309, 144), (309, 145), (309, 146), (309, 147), (309, 148), (309, 150), (309, 184), (309, 187), (309, 188), (309, 189), (309, 190), (309, 191), (309, 192), (309, 193), (309, 195), (310, 139), (310, 141), (310, 142), (310, 143), (310, 144), (310, 145), (310, 146), (310, 147), (310, 148), (310, 150), (310, 186), (310, 189), (310, 190), (310, 191), (310, 192), (310, 193), (310, 194), (311, 142), (311, 143), (311, 144), (311, 145), (311, 146), (311, 147),
(311, 149), (311, 187), (311, 190), (311, 191), (311, 192), (311, 193), (311, 194), (311, 195), (311, 198), (312, 140), (312, 143), (312, 144), (312, 145), (312, 146), (312, 147), (312, 149), (312, 191), (312, 192), (312, 193), (312, 194), (312, 195), (312, 196), (312, 199), (313, 142), (313, 145), (313, 146), (313, 147), (313, 149), (313, 190), (313, 192), (313, 193), (313, 194), (313, 195), (313, 196), (313, 197), (313, 200), (314, 143), (314, 147), (314, 149), (314, 191), (314, 193), (314, 194), (314, 195), (314, 196), (314, 197), (314, 198), (314, 201), (315, 145), (315, 149), (315, 192), (315, 194), (315, 195), (315, 196), (315, 197), (315, 198), (315, 199), (315, 202), (316, 147), (316, 149), (316, 192), (316, 195), (316, 196), (316, 197), (316, 198), (316, 199), (316, 200), (316, 203), (317, 193), (317, 196), (317, 197), (317, 198), (317, 199),
(317, 200), (317, 201), (317, 203), (318, 195), (318, 197), (318, 198), (318, 199), (318, 200), (318, 201), (318, 202), (318, 204), (319, 196), (319, 198), (319, 199), (319, 200), (319, 201), (319, 202), (319, 203), (319, 205), (320, 197), (320, 199), (320, 200), (320, 201), (320, 202), (320, 203), (320, 205), (321, 198), (321, 200), (321, 201), (321, 202), (321, 203), (321, 205), (322, 198), (322, 200), (322, 201), (322, 202), (322, 203), (322, 204), (322, 206), (323, 199), (323, 201), (323, 202), (323, 203), (323, 204), (323, 206), (324, 200), (324, 202), (324, 203), (324, 204), (324, 206), (325, 201), (325, 205), (326, 202), (326, 205), )
coordinates_00FF92 = ((108, 142),
(108, 143), (108, 145), (109, 140), (109, 141), (109, 146), (110, 138), (110, 139), (110, 142), (110, 143), (110, 144), (110, 146), (111, 136), (111, 137), (111, 140), (111, 141), (111, 142), (111, 143), (111, 144), (111, 146), (112, 135), (112, 138), (112, 139), (112, 140), (112, 141), (112, 142), (112, 143), (112, 144), (112, 145), (112, 146), (112, 147), (113, 135), (113, 137), (113, 138), (113, 139), (113, 140), (113, 141), (113, 142), (113, 143), (113, 144), (113, 145), (113, 147), (114, 136), (114, 138), (114, 139), (114, 140), (114, 141), (114, 142), (114, 143), (114, 144), (114, 145), (114, 147), (115, 136), (115, 138), (115, 139), (115, 140), (115, 141), (115, 142), (115, 143), (115, 144), (115, 145), (115, 147), (116, 137), (116, 139), (116, 140), (116, 141), (116, 142), (116, 143), (116, 144), (116, 145), (116, 147), (117, 137), (117, 139),
(117, 140), (117, 141), (117, 142), (117, 143), (117, 144), (117, 145), (117, 147), (118, 137), (118, 139), (118, 140), (118, 141), (118, 142), (118, 143), (118, 144), (118, 145), (118, 146), (118, 147), (119, 138), (119, 140), (119, 141), (119, 142), (119, 143), (119, 144), (119, 145), (119, 146), (119, 147), (120, 138), (120, 140), (120, 141), (120, 142), (120, 143), (120, 144), (120, 146), (121, 138), (121, 140), (121, 141), (121, 142), (121, 143), (121, 144), (121, 146), (122, 139), (122, 141), (122, 142), (122, 143), (122, 144), (122, 146), (123, 139), (123, 141), (123, 142), (123, 143), (123, 144), (123, 146), (124, 139), (124, 141), (124, 142), (124, 143), (124, 144), (124, 146), (125, 139), (125, 141), (125, 142), (125, 143), (125, 146), (126, 139), (126, 145), (127, 140), (127, 142), (127, 144), (272, 140), (272, 142), (272, 144), (273, 139),
(273, 145), (274, 139), (274, 141), (274, 142), (274, 143), (274, 144), (274, 146), (275, 139), (275, 141), (275, 142), (275, 143), (275, 144), (275, 146), (276, 139), (276, 141), (276, 142), (276, 143), (276, 144), (276, 146), (277, 139), (277, 141), (277, 142), (277, 143), (277, 144), (277, 146), (278, 138), (278, 140), (278, 141), (278, 142), (278, 143), (278, 144), (278, 146), (279, 138), (279, 140), (279, 141), (279, 142), (279, 143), (279, 144), (279, 146), (280, 138), (280, 140), (280, 141), (280, 142), (280, 143), (280, 144), (280, 145), (280, 146), (280, 147), (281, 137), (281, 139), (281, 140), (281, 141), (281, 142), (281, 143), (281, 144), (281, 145), (281, 146), (281, 147), (282, 137), (282, 139), (282, 140), (282, 141), (282, 142), (282, 143), (282, 144), (282, 145), (282, 147), (283, 137), (283, 139), (283, 140), (283, 141), (283, 142),
(283, 143), (283, 144), (283, 145), (283, 147), (284, 136), (284, 138), (284, 139), (284, 140), (284, 141), (284, 142), (284, 143), (284, 144), (284, 145), (284, 147), (285, 136), (285, 138), (285, 139), (285, 140), (285, 141), (285, 142), (285, 143), (285, 144), (285, 145), (285, 147), (286, 135), (286, 137), (286, 138), (286, 139), (286, 140), (286, 141), (286, 142), (286, 143), (286, 144), (286, 145), (286, 147), (287, 135), (287, 139), (287, 140), (287, 141), (287, 142), (287, 143), (287, 144), (287, 146), (288, 137), (288, 141), (288, 142), (288, 143), (288, 144), (288, 146), (289, 139), (289, 143), (289, 144), (289, 146), (290, 141), (290, 146), (291, 143), (291, 145), )
coordinates_7F0E00 = ((82, 125),
(82, 127), (82, 128), (83, 125), (83, 129), (83, 130), (83, 131), (84, 124), (84, 126), (84, 127), (84, 128), (84, 134), (85, 124), (85, 126), (85, 127), (85, 128), (85, 129), (85, 130), (85, 131), (85, 132), (85, 136), (86, 124), (86, 126), (86, 127), (86, 128), (86, 129), (86, 130), (86, 131), (86, 132), (86, 133), (86, 134), (86, 137), (87, 123), (87, 125), (87, 126), (87, 127), (87, 128), (87, 129), (87, 130), (87, 131), (87, 132), (87, 133), (87, 134), (87, 135), (87, 137), (88, 122), (88, 124), (88, 125), (88, 126), (88, 127), (88, 128), (88, 129), (88, 130), (88, 131), (88, 132), (88, 133), (88, 134), (88, 135), (88, 137), (89, 122), (89, 124), (89, 125), (89, 126), (89, 127), (89, 128), (89, 129), (89, 130), (89, 131), (89, 132), (89, 133), (89, 134), (89, 135), (89, 137),
(90, 122), (90, 124), (90, 125), (90, 126), (90, 127), (90, 128), (90, 129), (90, 130), (90, 131), (90, 132), (90, 133), (90, 134), (90, 135), (90, 137), (91, 122), (91, 124), (91, 125), (91, 126), (91, 127), (91, 128), (91, 129), (91, 130), (91, 131), (91, 132), (91, 133), (91, 134), (91, 135), (91, 137), (92, 123), (92, 125), (92, 126), (92, 127), (92, 128), (92, 129), (92, 130), (92, 131), (92, 132), (92, 133), (92, 134), (92, 135), (92, 137), (93, 123), (93, 125), (93, 126), (93, 127), (93, 128), (93, 129), (93, 130), (93, 131), (93, 132), (93, 133), (93, 134), (93, 135), (93, 137), (94, 123), (94, 125), (94, 126), (94, 127), (94, 128), (94, 129), (94, 130), (94, 131), (94, 132), (94, 133), (94, 134), (94, 135), (94, 136), (94, 138), (95, 123), (95, 125), (95, 126), (95, 127),
(95, 128), (95, 129), (95, 130), (95, 131), (95, 132), (95, 133), (95, 134), (95, 135), (95, 136), (95, 138), (96, 124), (96, 126), (96, 127), (96, 128), (96, 129), (96, 130), (96, 131), (96, 132), (96, 133), (96, 134), (96, 135), (96, 136), (96, 137), (96, 139), (97, 124), (97, 126), (97, 127), (97, 128), (97, 129), (97, 130), (97, 131), (97, 132), (97, 133), (97, 134), (97, 135), (97, 136), (97, 137), (97, 139), (98, 124), (98, 126), (98, 127), (98, 128), (98, 129), (98, 130), (98, 131), (98, 132), (98, 133), (98, 134), (98, 135), (98, 136), (98, 137), (98, 138), (98, 140), (99, 124), (99, 126), (99, 127), (99, 128), (99, 129), (99, 130), (99, 131), (99, 132), (99, 133), (99, 134), (99, 135), (99, 136), (99, 137), (99, 138), (99, 140), (100, 127), (100, 128), (100, 129), (100, 130),
(100, 131), (100, 132), (100, 133), (100, 134), (100, 135), (100, 136), (100, 137), (100, 138), (100, 139), (100, 141), (101, 125), (101, 127), (101, 128), (101, 129), (101, 130), (101, 131), (101, 132), (101, 133), (101, 134), (101, 135), (101, 136), (101, 137), (101, 138), (101, 139), (101, 141), (102, 126), (102, 128), (102, 129), (102, 130), (102, 131), (102, 132), (102, 133), (102, 134), (102, 135), (102, 136), (102, 137), (102, 138), (102, 139), (102, 140), (102, 142), (103, 127), (103, 129), (103, 130), (103, 131), (103, 132), (103, 133), (103, 134), (103, 135), (103, 136), (103, 137), (103, 138), (103, 139), (103, 140), (103, 142), (104, 128), (104, 130), (104, 131), (104, 132), (104, 133), (104, 134), (104, 135), (104, 136), (104, 137), (104, 138), (104, 139), (104, 140), (104, 142), (105, 129), (105, 131), (105, 132), (105, 133), (105, 134),
(105, 135), (105, 136), (105, 137), (105, 138), (105, 139), (105, 140), (105, 142), (106, 130), (106, 132), (106, 133), (106, 134), (106, 135), (106, 136), (106, 137), (106, 138), (106, 139), (106, 142), (106, 143), (107, 131), (107, 133), (107, 134), (107, 135), (107, 136), (107, 137), (107, 141), (108, 132), (108, 134), (108, 135), (108, 139), (109, 132), (109, 137), (110, 133), (110, 135), (288, 133), (289, 133), (289, 135), (290, 132), (290, 137), (291, 132), (291, 134), (291, 135), (291, 139), (292, 131), (292, 133), (292, 134), (292, 135), (292, 136), (292, 137), (292, 141), (293, 130), (293, 132), (293, 133), (293, 134), (293, 135), (293, 136), (293, 137), (293, 138), (293, 139), (293, 142), (293, 143), (294, 129), (294, 131), (294, 132), (294, 133), (294, 134), (294, 135), (294, 136), (294, 137), (294, 138), (294, 139), (294, 140), (294, 142),
(295, 128), (295, 130), (295, 131), (295, 132), (295, 133), (295, 134), (295, 135), (295, 136), (295, 137), (295, 138), (295, 139), (295, 140), (295, 142), (296, 127), (296, 129), (296, 130), (296, 131), (296, 132), (296, 133), (296, 134), (296, 135), (296, 136), (296, 137), (296, 138), (296, 139), (296, 140), (296, 142), (297, 126), (297, 128), (297, 129), (297, 130), (297, 131), (297, 132), (297, 133), (297, 134), (297, 135), (297, 136), (297, 137), (297, 138), (297, 139), (297, 140), (297, 142), (298, 125), (298, 127), (298, 128), (298, 129), (298, 130), (298, 131), (298, 132), (298, 133), (298, 134), (298, 135), (298, 136), (298, 137), (298, 138), (298, 139), (298, 141), (299, 124), (299, 126), (299, 127), (299, 128), (299, 129), (299, 130), (299, 131), (299, 132), (299, 133), (299, 134), (299, 135), (299, 136), (299, 137), (299, 138), (299, 139),
(299, 141), (300, 124), (300, 126), (300, 127), (300, 128), (300, 129), (300, 130), (300, 131), (300, 132), (300, 133), (300, 134), (300, 135), (300, 136), (300, 137), (300, 138), (300, 140), (301, 124), (301, 126), (301, 127), (301, 128), (301, 129), (301, 130), (301, 131), (301, 132), (301, 133), (301, 134), (301, 135), (301, 136), (301, 137), (301, 138), (301, 140), (302, 123), (302, 125), (302, 126), (302, 127), (302, 128), (302, 129), (302, 130), (302, 131), (302, 132), (302, 133), (302, 134), (302, 135), (302, 136), (302, 137), (302, 139), (303, 123), (303, 125), (303, 126), (303, 127), (303, 128), (303, 129), (303, 130), (303, 131), (303, 132), (303, 133), (303, 134), (303, 135), (303, 136), (303, 137), (303, 139), (304, 123), (304, 125), (304, 126), (304, 127), (304, 128), (304, 129), (304, 130), (304, 131), (304, 132), (304, 133), (304, 134),
(304, 135), (304, 136), (304, 138), (305, 122), (305, 124), (305, 125), (305, 126), (305, 127), (305, 128), (305, 129), (305, 130), (305, 131), (305, 132), (305, 133), (305, 134), (305, 135), (305, 136), (305, 137), (305, 138), (306, 122), (306, 124), (306, 125), (306, 126), (306, 127), (306, 128), (306, 129), (306, 130), (306, 131), (306, 132), (306, 133), (306, 134), (306, 135), (306, 137), (307, 122), (307, 124), (307, 125), (307, 126), (307, 127), (307, 128), (307, 129), (307, 130), (307, 131), (307, 132), (307, 133), (307, 134), (307, 135), (307, 137), (308, 122), (308, 124), (308, 125), (308, 126), (308, 127), (308, 128), (308, 129), (308, 130), (308, 131), (308, 132), (308, 133), (308, 134), (308, 135), (308, 137), (309, 122), (309, 124), (309, 125), (309, 126), (309, 127), (309, 128), (309, 129), (309, 130), (309, 131), (309, 132), (309, 133),
(309, 134), (309, 135), (309, 137), (310, 122), (310, 124), (310, 125), (310, 126), (310, 127), (310, 128), (310, 129), (310, 130), (310, 131), (310, 132), (310, 133), (310, 134), (310, 135), (310, 137), (311, 122), (311, 124), (311, 125), (311, 126), (311, 127), (311, 128), (311, 129), (311, 130), (311, 131), (311, 132), (311, 133), (311, 134), (311, 135), (311, 137), (312, 123), (312, 125), (312, 126), (312, 127), (312, 128), (312, 129), (312, 130), (312, 131), (312, 132), (312, 133), (312, 134), (312, 135), (313, 124), (313, 126), (313, 127), (313, 128), (313, 129), (313, 130), (313, 131), (313, 132), (313, 133), (313, 134), (313, 137), (314, 124), (314, 126), (314, 127), (314, 128), (314, 129), (314, 130), (314, 131), (314, 135), (315, 124), (315, 126), (315, 127), (315, 128), (315, 129), (315, 133), (316, 125), (316, 130), (316, 131), (317, 125),
(317, 127), (317, 129), )
coordinates_FF1D00 = ((97, 117),
(98, 117), (98, 120), (98, 121), (98, 122), (99, 117), (99, 119), (99, 122), (100, 116), (100, 117), (100, 118), (100, 119), (100, 120), (100, 122), (101, 116), (101, 118), (101, 119), (101, 120), (101, 121), (101, 123), (102, 116), (102, 118), (102, 119), (102, 120), (102, 121), (102, 122), (102, 124), (103, 116), (103, 118), (103, 119), (103, 120), (103, 121), (103, 122), (103, 125), (104, 116), (104, 118), (104, 119), (104, 120), (104, 121), (104, 122), (104, 123), (104, 126), (105, 116), (105, 118), (105, 119), (105, 120), (105, 121), (105, 122), (105, 123), (105, 124), (105, 127), (106, 116), (106, 118), (106, 119), (106, 120), (106, 121), (106, 122), (106, 123), (106, 124), (106, 125), (106, 128), (107, 116), (107, 118), (107, 119), (107, 120), (107, 121), (107, 122), (107, 123), (107, 124), (107, 125), (107, 126), (107, 129), (108, 116),
(108, 118), (108, 119), (108, 120), (108, 121), (108, 122), (108, 123), (108, 124), (108, 125), (108, 126), (108, 127), (108, 129), (109, 116), (109, 118), (109, 119), (109, 120), (109, 121), (109, 122), (109, 123), (109, 124), (109, 125), (109, 126), (109, 127), (109, 128), (109, 130), (110, 116), (110, 118), (110, 119), (110, 120), (110, 121), (110, 122), (110, 123), (110, 124), (110, 125), (110, 126), (110, 127), (110, 128), (110, 130), (111, 116), (111, 118), (111, 119), (111, 120), (111, 121), (111, 122), (111, 123), (111, 124), (111, 125), (111, 126), (111, 127), (111, 130), (112, 116), (112, 119), (112, 120), (112, 121), (112, 122), (112, 123), (112, 124), (112, 125), (112, 126), (112, 129), (113, 117), (113, 120), (113, 121), (113, 122), (113, 123), (113, 124), (113, 125), (114, 118), (114, 121), (114, 122), (114, 123), (114, 124), (114, 126),
(115, 119), (115, 122), (115, 123), (115, 125), (116, 121), (116, 124), (117, 122), (117, 123), (282, 122), (282, 123), (283, 121), (283, 124), (284, 119), (284, 122), (284, 123), (284, 125), (285, 118), (285, 121), (285, 122), (285, 123), (285, 124), (285, 126), (286, 117), (286, 120), (286, 121), (286, 122), (286, 123), (286, 124), (286, 125), (286, 128), (287, 116), (287, 119), (287, 120), (287, 121), (287, 122), (287, 123), (287, 124), (287, 125), (287, 126), (287, 129), (288, 116), (288, 118), (288, 119), (288, 120), (288, 121), (288, 122), (288, 123), (288, 124), (288, 125), (288, 126), (288, 127), (288, 128), (288, 130), (289, 116), (289, 118), (289, 119), (289, 120), (289, 121), (289, 122), (289, 123), (289, 124), (289, 125), (289, 126), (289, 127), (289, 128), (289, 130), (290, 116), (290, 118), (290, 119), (290, 120), (290, 121), (290, 122),
(290, 123), (290, 124), (290, 125), (290, 126), (290, 127), (290, 128), (290, 130), (291, 116), (291, 118), (291, 119), (291, 120), (291, 121), (291, 122), (291, 123), (291, 124), (291, 125), (291, 126), (291, 127), (291, 129), (292, 116), (292, 118), (292, 119), (292, 120), (292, 121), (292, 122), (292, 123), (292, 124), (292, 125), (292, 126), (292, 129), (293, 116), (293, 118), (293, 119), (293, 120), (293, 121), (293, 122), (293, 123), (293, 124), (293, 125), (293, 128), (294, 116), (294, 118), (294, 119), (294, 120), (294, 121), (294, 122), (294, 123), (294, 124), (294, 127), (295, 116), (295, 118), (295, 119), (295, 120), (295, 121), (295, 122), (295, 123), (295, 126), (296, 116), (296, 118), (296, 119), (296, 120), (296, 121), (296, 122), (297, 116), (297, 118), (297, 119), (297, 120), (297, 121), (297, 122), (297, 124), (298, 116), (298, 118),
(298, 119), (298, 120), (298, 121), (298, 123), (299, 116), (299, 117), (299, 118), (299, 119), (299, 120), (299, 122), (300, 117), (300, 119), (300, 120), (300, 122), (301, 117), (301, 121), (301, 122), (302, 117), (302, 119), (302, 121), )
coordinates_007F09 = ((76, 210),
(76, 212), (76, 213), (76, 214), (76, 215), (77, 208), (77, 216), (77, 217), (77, 218), (77, 219), (77, 220), (77, 221), (77, 222), (77, 223), (77, 224), (77, 225), (77, 226), (77, 228), (78, 208), (78, 210), (78, 211), (78, 212), (78, 213), (78, 214), (78, 215), (78, 216), (78, 228), (79, 207), (79, 209), (79, 210), (79, 211), (79, 212), (79, 213), (79, 214), (79, 215), (79, 216), (79, 217), (79, 218), (79, 219), (79, 220), (79, 221), (79, 222), (79, 223), (79, 224), (79, 225), (79, 226), (79, 228), (80, 207), (80, 209), (80, 210), (80, 211), (80, 212), (80, 213), (80, 214), (80, 215), (80, 216), (80, 217), (80, 218), (80, 219), (80, 220), (80, 221), (80, 222), (80, 223), (80, 224), (80, 225), (80, 226), (80, 228), (81, 206), (81, 208), (81, 209), (81, 210), (81, 211), (81, 212),
(81, 213), (81, 214), (81, 215), (81, 216), (81, 217), (81, 218), (81, 219), (81, 220), (81, 221), (81, 222), (81, 223), (81, 224), (81, 225), (81, 226), (81, 228), (82, 206), (82, 208), (82, 209), (82, 210), (82, 211), (82, 212), (82, 213), (82, 214), (82, 215), (82, 216), (82, 217), (82, 218), (82, 219), (82, 220), (82, 221), (82, 222), (82, 223), (82, 224), (82, 225), (82, 226), (82, 228), (82, 229), (83, 205), (83, 207), (83, 208), (83, 209), (83, 210), (83, 211), (83, 212), (83, 213), (83, 214), (83, 215), (83, 216), (83, 217), (83, 218), (83, 219), (83, 220), (83, 221), (83, 222), (83, 223), (83, 224), (83, 225), (83, 226), (83, 227), (83, 229), (84, 204), (84, 206), (84, 207), (84, 208), (84, 209), (84, 210), (84, 211), (84, 212), (84, 213), (84, 214), (84, 215), (84, 216),
(84, 217), (84, 218), (84, 219), (84, 220), (84, 221), (84, 222), (84, 223), (84, 224), (84, 225), (84, 226), (84, 228), (85, 203), (85, 205), (85, 206), (85, 207), (85, 208), (85, 209), (85, 210), (85, 211), (85, 212), (85, 213), (85, 214), (85, 215), (85, 216), (85, 217), (85, 218), (85, 219), (85, 220), (85, 221), (85, 222), (85, 223), (85, 224), (85, 225), (85, 226), (85, 228), (86, 202), (86, 204), (86, 205), (86, 206), (86, 207), (86, 208), (86, 209), (86, 210), (86, 211), (86, 212), (86, 213), (86, 214), (86, 215), (86, 216), (86, 217), (86, 218), (86, 219), (86, 220), (86, 221), (86, 222), (86, 223), (86, 224), (86, 225), (86, 227), (87, 201), (87, 203), (87, 204), (87, 205), (87, 206), (87, 207), (87, 208), (87, 209), (87, 210), (87, 211), (87, 212), (87, 213), (87, 214),
(87, 215), (87, 216), (87, 217), (87, 218), (87, 219), (87, 220), (87, 221), (87, 222), (87, 223), (87, 224), (87, 225), (87, 227), (88, 200), (88, 202), (88, 203), (88, 204), (88, 205), (88, 206), (88, 207), (88, 208), (88, 209), (88, 210), (88, 211), (88, 212), (88, 213), (88, 214), (88, 215), (88, 216), (88, 217), (88, 218), (88, 219), (88, 220), (88, 221), (88, 222), (88, 223), (88, 224), (88, 226), (89, 199), (89, 201), (89, 202), (89, 203), (89, 204), (89, 205), (89, 206), (89, 207), (89, 208), (89, 209), (89, 210), (89, 211), (89, 212), (89, 213), (89, 214), (89, 215), (89, 216), (89, 217), (89, 218), (89, 219), (89, 220), (89, 221), (89, 222), (89, 223), (89, 224), (89, 226), (90, 198), (90, 200), (90, 201), (90, 202), (90, 203), (90, 204), (90, 205), (90, 206), (90, 207),
(90, 208), (90, 209), (90, 210), (90, 211), (90, 212), (90, 213), (90, 214), (90, 215), (90, 216), (90, 217), (90, 218), (90, 219), (90, 220), (90, 221), (90, 222), (90, 223), (90, 225), (91, 197), (91, 199), (91, 200), (91, 201), (91, 202), (91, 203), (91, 204), (91, 205), (91, 206), (91, 207), (91, 208), (91, 209), (91, 210), (91, 211), (91, 212), (91, 213), (91, 214), (91, 215), (91, 216), (91, 217), (91, 218), (91, 219), (91, 220), (91, 221), (91, 222), (91, 223), (91, 224), (92, 196), (92, 198), (92, 199), (92, 200), (92, 201), (92, 202), (92, 203), (92, 204), (92, 205), (92, 206), (92, 207), (92, 208), (92, 209), (92, 210), (92, 211), (92, 212), (92, 213), (92, 214), (92, 215), (92, 216), (92, 217), (92, 218), (92, 219), (92, 220), (92, 221), (92, 222), (92, 224), (93, 197),
(93, 198), (93, 199), (93, 200), (93, 201), (93, 202), (93, 203), (93, 204), (93, 205), (93, 206), (93, 207), (93, 208), (93, 209), (93, 210), (93, 211), (93, 212), (93, 213), (93, 214), (93, 215), (93, 216), (93, 217), (93, 218), (93, 219), (93, 220), (93, 221), (93, 223), (94, 193), (94, 196), (94, 197), (94, 198), (94, 199), (94, 200), (94, 201), (94, 202), (94, 203), (94, 204), (94, 205), (94, 206), (94, 207), (94, 208), (94, 209), (94, 210), (94, 211), (94, 212), (94, 213), (94, 214), (94, 215), (94, 216), (94, 217), (94, 218), (94, 219), (94, 220), (94, 221), (94, 223), (95, 192), (95, 195), (95, 196), (95, 197), (95, 198), (95, 199), (95, 200), (95, 201), (95, 202), (95, 203), (95, 204), (95, 205), (95, 206), (95, 207), (95, 208), (95, 209), (95, 210), (95, 211), (95, 212),
(95, 213), (95, 214), (95, 215), (95, 216), (95, 217), (95, 218), (95, 219), (95, 220), (95, 222), (96, 191), (96, 194), (96, 195), (96, 196), (96, 197), (96, 198), (96, 199), (96, 200), (96, 201), (96, 202), (96, 203), (96, 204), (96, 205), (96, 206), (96, 207), (96, 208), (96, 209), (96, 210), (96, 211), (96, 212), (96, 213), (96, 214), (96, 215), (96, 216), (96, 217), (96, 218), (96, 219), (96, 220), (96, 222), (97, 190), (97, 193), (97, 194), (97, 195), (97, 196), (97, 197), (97, 198), (97, 199), (97, 200), (97, 201), (97, 202), (97, 203), (97, 204), (97, 205), (97, 206), (97, 207), (97, 208), (97, 209), (97, 210), (97, 211), (97, 212), (97, 213), (97, 214), (97, 215), (97, 216), (97, 217), (97, 218), (97, 219), (97, 221), (98, 189), (98, 192), (98, 193), (98, 194), (98, 195),
(98, 196), (98, 197), (98, 198), (98, 199), (98, 200), (98, 201), (98, 202), (98, 203), (98, 204), (98, 205), (98, 206), (98, 207), (98, 208), (98, 209), (98, 210), (98, 211), (98, 212), (98, 213), (98, 214), (98, 215), (98, 216), (98, 217), (98, 218), (98, 220), (99, 188), (99, 191), (99, 192), (99, 193), (99, 194), (99, 195), (99, 196), (99, 197), (99, 198), (99, 199), (99, 200), (99, 201), (99, 202), (99, 203), (99, 204), (99, 205), (99, 206), (99, 207), (99, 208), (99, 209), (99, 210), (99, 211), (99, 212), (99, 213), (99, 214), (99, 215), (99, 216), (99, 217), (99, 218), (99, 220), (100, 188), (100, 190), (100, 191), (100, 192), (100, 193), (100, 194), (100, 195), (100, 196), (100, 197), (100, 198), (100, 199), (100, 200), (100, 201), (100, 202), (100, 203), (100, 204), (100, 205), (100, 206),
(100, 207), (100, 208), (100, 209), (100, 210), (100, 211), (100, 212), (100, 213), (100, 214), (100, 215), (100, 216), (100, 217), (100, 219), (101, 187), (101, 189), (101, 190), (101, 191), (101, 192), (101, 193), (101, 194), (101, 195), (101, 196), (101, 197), (101, 198), (101, 199), (101, 200), (101, 201), (101, 202), (101, 203), (101, 204), (101, 205), (101, 206), (101, 207), (101, 208), (101, 209), (101, 210), (101, 211), (101, 212), (101, 213), (101, 214), (101, 215), (101, 216), (101, 218), (102, 186), (102, 188), (102, 189), (102, 190), (102, 191), (102, 192), (102, 193), (102, 194), (102, 195), (102, 196), (102, 197), (102, 198), (102, 199), (102, 200), (102, 201), (102, 202), (102, 203), (102, 204), (102, 205), (102, 206), (102, 207), (102, 208), (102, 209), (102, 210), (102, 211), (102, 212), (102, 213), (102, 214), (102, 215), (102, 216),
(102, 218), (103, 186), (103, 188), (103, 189), (103, 190), (103, 191), (103, 192), (103, 193), (103, 194), (103, 195), (103, 196), (103, 197), (103, 198), (103, 199), (103, 200), (103, 201), (103, 202), (103, 203), (103, 204), (103, 205), (103, 206), (103, 207), (103, 208), (103, 209), (103, 210), (103, 211), (103, 212), (103, 213), (103, 214), (103, 215), (103, 217), (104, 186), (104, 188), (104, 189), (104, 190), (104, 191), (104, 192), (104, 193), (104, 194), (104, 195), (104, 196), (104, 197), (104, 198), (104, 199), (104, 200), (104, 201), (104, 202), (104, 203), (104, 204), (104, 205), (104, 206), (104, 207), (104, 208), (104, 209), (104, 210), (104, 211), (104, 212), (104, 213), (104, 214), (104, 216), (105, 186), (105, 188), (105, 189), (105, 190), (105, 191), (105, 192), (105, 193), (105, 194), (105, 195), (105, 196), (105, 197), (105, 198),
(105, 199), (105, 200), (105, 201), (105, 202), (105, 203), (105, 204), (105, 205), (105, 206), (105, 207), (105, 208), (105, 209), (105, 210), (105, 211), (105, 212), (105, 213), (105, 215), (106, 186), (106, 188), (106, 189), (106, 190), (106, 191), (106, 192), (106, 193), (106, 194), (106, 195), (106, 196), (106, 197), (106, 198), (106, 199), (106, 200), (106, 201), (106, 202), (106, 203), (106, 204), (106, 205), (106, 206), (106, 207), (106, 208), (106, 209), (106, 210), (106, 211), (106, 212), (106, 214), (107, 186), (107, 188), (107, 189), (107, 190), (107, 191), (107, 192), (107, 193), (107, 194), (107, 195), (107, 196), (107, 197), (107, 198), (107, 199), (107, 200), (107, 201), (107, 202), (107, 203), (107, 204), (107, 205), (107, 206), (107, 207), (107, 208), (107, 209), (107, 210), (107, 211), (107, 213), (108, 187), (108, 189), (108, 190),
(108, 191), (108, 192), (108, 193), (108, 194), (108, 195), (108, 196), (108, 197), (108, 198), (108, 199), (108, 200), (108, 201), (108, 202), (108, 203), (108, 204), (108, 205), (108, 206), (108, 207), (108, 208), (108, 209), (108, 210), (108, 212), (109, 187), (109, 189), (109, 190), (109, 191), (109, 192), (109, 193), (109, 194), (109, 195), (109, 196), (109, 197), (109, 198), (109, 199), (109, 200), (109, 201), (109, 202), (109, 203), (109, 204), (109, 205), (109, 206), (109, 207), (109, 208), (109, 211), (110, 187), (110, 189), (110, 190), (110, 191), (110, 192), (110, 193), (110, 194), (110, 195), (110, 196), (110, 197), (110, 198), (110, 199), (110, 200), (110, 201), (110, 202), (110, 203), (110, 204), (110, 205), (110, 206), (110, 210), (111, 188), (111, 190), (111, 191), (111, 192), (111, 193), (111, 194), (111, 195), (111, 196), (111, 197),
(111, 198), (111, 199), (111, 200), (111, 201), (111, 202), (111, 203), (111, 204), (111, 208), (112, 188), (112, 190), (112, 191), (112, 192), (112, 193), (112, 194), (112, 195), (112, 196), (112, 197), (112, 198), (112, 199), (112, 200), (112, 201), (112, 202), (112, 206), (113, 188), (113, 190), (113, 191), (113, 192), (113, 193), (113, 194), (113, 203), (113, 204), (114, 189), (114, 195), (114, 196), (114, 197), (114, 198), (114, 199), (114, 200), (114, 201), (115, 190), (115, 192), (115, 193), (115, 194), (284, 190), (284, 192), (284, 193), (284, 194), (284, 195), (285, 189), (285, 196), (285, 197), (285, 198), (285, 199), (285, 200), (285, 201), (285, 202), (286, 188), (286, 190), (286, 191), (286, 192), (286, 193), (286, 194), (286, 195), (286, 203), (286, 204), (286, 205), (287, 188), (287, 190), (287, 191), (287, 192), (287, 193), (287, 194),
(287, 195), (287, 196), (287, 197), (287, 198), (287, 199), (287, 200), (287, 201), (287, 202), (287, 206), (287, 207), (288, 188), (288, 190), (288, 191), (288, 192), (288, 193), (288, 194), (288, 195), (288, 196), (288, 197), (288, 198), (288, 199), (288, 200), (288, 201), (288, 202), (288, 203), (288, 204), (288, 205), (288, 208), (289, 187), (289, 189), (289, 190), (289, 191), (289, 192), (289, 193), (289, 194), (289, 195), (289, 196), (289, 197), (289, 198), (289, 199), (289, 200), (289, 201), (289, 202), (289, 203), (289, 204), (289, 205), (289, 206), (289, 207), (289, 210), (290, 187), (290, 189), (290, 190), (290, 191), (290, 192), (290, 193), (290, 194), (290, 195), (290, 196), (290, 197), (290, 198), (290, 199), (290, 200), (290, 201), (290, 202), (290, 203), (290, 204), (290, 205), (290, 206), (290, 207), (290, 208), (290, 211), (291, 187),
(291, 189), (291, 190), (291, 191), (291, 192), (291, 193), (291, 194), (291, 195), (291, 196), (291, 197), (291, 198), (291, 199), (291, 200), (291, 201), (291, 202), (291, 203), (291, 204), (291, 205), (291, 206), (291, 207), (291, 208), (291, 209), (291, 210), (291, 212), (292, 186), (292, 188), (292, 189), (292, 190), (292, 191), (292, 192), (292, 193), (292, 194), (292, 195), (292, 196), (292, 197), (292, 198), (292, 199), (292, 200), (292, 201), (292, 202), (292, 203), (292, 204), (292, 205), (292, 206), (292, 207), (292, 208), (292, 209), (292, 210), (292, 211), (292, 213), (293, 186), (293, 188), (293, 189), (293, 190), (293, 191), (293, 192), (293, 193), (293, 194), (293, 195), (293, 196), (293, 197), (293, 198), (293, 199), (293, 200), (293, 201), (293, 202), (293, 203), (293, 204), (293, 205), (293, 206), (293, 207), (293, 208), (293, 209),
(293, 210), (293, 211), (293, 212), (293, 214), (294, 186), (294, 188), (294, 189), (294, 190), (294, 191), (294, 192), (294, 193), (294, 194), (294, 195), (294, 196), (294, 197), (294, 198), (294, 199), (294, 200), (294, 201), (294, 202), (294, 203), (294, 204), (294, 205), (294, 206), (294, 207), (294, 208), (294, 209), (294, 210), (294, 211), (294, 212), (294, 213), (294, 215), (295, 186), (295, 188), (295, 189), (295, 190), (295, 191), (295, 192), (295, 193), (295, 194), (295, 195), (295, 196), (295, 197), (295, 198), (295, 199), (295, 200), (295, 201), (295, 202), (295, 203), (295, 204), (295, 205), (295, 206), (295, 207), (295, 208), (295, 209), (295, 210), (295, 211), (295, 212), (295, 213), (295, 214), (295, 216), (296, 186), (296, 188), (296, 189), (296, 190), (296, 191), (296, 192), (296, 193), (296, 194), (296, 195), (296, 196), (296, 197),
(296, 198), (296, 199), (296, 200), (296, 201), (296, 202), (296, 203), (296, 204), (296, 205), (296, 206), (296, 207), (296, 208), (296, 209), (296, 210), (296, 211), (296, 212), (296, 213), (296, 214), (296, 215), (296, 217), (297, 188), (297, 189), (297, 190), (297, 191), (297, 192), (297, 193), (297, 194), (297, 195), (297, 196), (297, 197), (297, 198), (297, 199), (297, 200), (297, 201), (297, 202), (297, 203), (297, 204), (297, 205), (297, 206), (297, 207), (297, 208), (297, 209), (297, 210), (297, 211), (297, 212), (297, 213), (297, 214), (297, 215), (297, 216), (297, 218), (298, 187), (298, 189), (298, 190), (298, 191), (298, 192), (298, 193), (298, 194), (298, 195), (298, 196), (298, 197), (298, 198), (298, 199), (298, 200), (298, 201), (298, 202), (298, 203), (298, 204), (298, 205), (298, 206), (298, 207), (298, 208), (298, 209), (298, 210),
(298, 211), (298, 212), (298, 213), (298, 214), (298, 215), (298, 216), (298, 218), (299, 188), (299, 190), (299, 191), (299, 192), (299, 193), (299, 194), (299, 195), (299, 196), (299, 197), (299, 198), (299, 199), (299, 200), (299, 201), (299, 202), (299, 203), (299, 204), (299, 205), (299, 206), (299, 207), (299, 208), (299, 209), (299, 210), (299, 211), (299, 212), (299, 213), (299, 214), (299, 215), (299, 216), (299, 217), (299, 219), (300, 191), (300, 192), (300, 193), (300, 194), (300, 195), (300, 196), (300, 197), (300, 198), (300, 199), (300, 200), (300, 201), (300, 202), (300, 203), (300, 204), (300, 205), (300, 206), (300, 207), (300, 208), (300, 209), (300, 210), (300, 211), (300, 212), (300, 213), (300, 214), (300, 215), (300, 216), (300, 217), (300, 218), (300, 220), (301, 189), (301, 192), (301, 193), (301, 194), (301, 195), (301, 196),
(301, 197), (301, 198), (301, 199), (301, 200), (301, 201), (301, 202), (301, 203), (301, 204), (301, 205), (301, 206), (301, 207), (301, 208), (301, 209), (301, 210), (301, 211), (301, 212), (301, 213), (301, 214), (301, 215), (301, 216), (301, 217), (301, 218), (301, 220), (302, 190), (302, 193), (302, 194), (302, 195), (302, 196), (302, 197), (302, 198), (302, 199), (302, 200), (302, 201), (302, 202), (302, 203), (302, 204), (302, 205), (302, 206), (302, 207), (302, 208), (302, 209), (302, 210), (302, 211), (302, 212), (302, 213), (302, 214), (302, 215), (302, 216), (302, 217), (302, 218), (302, 219), (302, 221), (303, 191), (303, 194), (303, 195), (303, 196), (303, 197), (303, 198), (303, 199), (303, 200), (303, 201), (303, 202), (303, 203), (303, 204), (303, 205), (303, 206), (303, 207), (303, 208), (303, 209), (303, 210), (303, 211), (303, 212),
(303, 213), (303, 214), (303, 215), (303, 216), (303, 217), (303, 218), (303, 219), (303, 220), (303, 222), (304, 192), (304, 195), (304, 196), (304, 197), (304, 198), (304, 199), (304, 200), (304, 201), (304, 202), (304, 203), (304, 204), (304, 205), (304, 206), (304, 207), (304, 208), (304, 209), (304, 210), (304, 211), (304, 212), (304, 213), (304, 214), (304, 215), (304, 216), (304, 217), (304, 218), (304, 219), (304, 220), (304, 222), (305, 196), (305, 197), (305, 198), (305, 199), (305, 200), (305, 201), (305, 202), (305, 203), (305, 204), (305, 205), (305, 206), (305, 207), (305, 208), (305, 209), (305, 210), (305, 211), (305, 212), (305, 213), (305, 214), (305, 215), (305, 216), (305, 217), (305, 218), (305, 219), (305, 220), (305, 221), (305, 223), (306, 195), (306, 197), (306, 198), (306, 199), (306, 200), (306, 201), (306, 202), (306, 203),
(306, 204), (306, 205), (306, 206), (306, 207), (306, 208), (306, 209), (306, 210), (306, 211), (306, 212), (306, 213), (306, 214), (306, 215), (306, 216), (306, 217), (306, 218), (306, 219), (306, 220), (306, 221), (306, 223), (307, 196), (307, 198), (307, 199), (307, 200), (307, 201), (307, 202), (307, 203), (307, 204), (307, 205), (307, 206), (307, 207), (307, 208), (307, 209), (307, 210), (307, 211), (307, 212), (307, 213), (307, 214), (307, 215), (307, 216), (307, 217), (307, 218), (307, 219), (307, 220), (307, 221), (307, 222), (307, 224), (308, 197), (308, 199), (308, 200), (308, 201), (308, 202), (308, 203), (308, 204), (308, 205), (308, 206), (308, 207), (308, 208), (308, 209), (308, 210), (308, 211), (308, 212), (308, 213), (308, 214), (308, 215), (308, 216), (308, 217), (308, 218), (308, 219), (308, 220), (308, 221), (308, 222), (308, 223),
(308, 225), (309, 198), (309, 200), (309, 201), (309, 202), (309, 203), (309, 204), (309, 205), (309, 206), (309, 207), (309, 208), (309, 209), (309, 210), (309, 211), (309, 212), (309, 213), (309, 214), (309, 215), (309, 216), (309, 217), (309, 218), (309, 219), (309, 220), (309, 221), (309, 222), (309, 223), (309, 225), (310, 199), (310, 201), (310, 202), (310, 203), (310, 204), (310, 205), (310, 206), (310, 207), (310, 208), (310, 209), (310, 210), (310, 211), (310, 212), (310, 213), (310, 214), (310, 215), (310, 216), (310, 217), (310, 218), (310, 219), (310, 220), (310, 221), (310, 222), (310, 223), (310, 224), (310, 226), (311, 200), (311, 202), (311, 203), (311, 204), (311, 205), (311, 206), (311, 207), (311, 208), (311, 209), (311, 210), (311, 211), (311, 212), (311, 213), (311, 214), (311, 215), (311, 216), (311, 217), (311, 218), (311, 219),
(311, 220), (311, 221), (311, 222), (311, 223), (311, 224), (311, 226), (312, 201), (312, 203), (312, 204), (312, 205), (312, 206), (312, 207), (312, 208), (312, 209), (312, 210), (312, 211), (312, 212), (312, 213), (312, 214), (312, 215), (312, 216), (312, 217), (312, 218), (312, 219), (312, 220), (312, 221), (312, 222), (312, 223), (312, 224), (312, 225), (312, 227), (313, 202), (313, 204), (313, 205), (313, 206), (313, 207), (313, 208), (313, 209), (313, 210), (313, 211), (313, 212), (313, 213), (313, 214), (313, 215), (313, 216), (313, 217), (313, 218), (313, 219), (313, 220), (313, 221), (313, 222), (313, 223), (313, 224), (313, 225), (313, 227), (314, 203), (314, 205), (314, 206), (314, 207), (314, 208), (314, 209), (314, 210), (314, 211), (314, 212), (314, 213), (314, 214), (314, 215), (314, 216), (314, 217), (314, 218), (314, 219), (314, 220),
(314, 221), (314, 222), (314, 223), (314, 224), (314, 225), (314, 226), (314, 228), (315, 204), (315, 206), (315, 207), (315, 208), (315, 209), (315, 210), (315, 211), (315, 212), (315, 213), (315, 214), (315, 215), (315, 216), (315, 217), (315, 218), (315, 219), (315, 220), (315, 221), (315, 222), (315, 223), (315, 224), (315, 225), (315, 226), (315, 228), (316, 205), (316, 207), (316, 208), (316, 209), (316, 210), (316, 211), (316, 212), (316, 213), (316, 214), (316, 215), (316, 216), (316, 217), (316, 218), (316, 219), (316, 220), (316, 221), (316, 222), (316, 223), (316, 224), (316, 225), (316, 226), (316, 227), (316, 229), (317, 206), (317, 208), (317, 209), (317, 210), (317, 211), (317, 212), (317, 213), (317, 214), (317, 215), (317, 216), (317, 217), (317, 218), (317, 219), (317, 220), (317, 221), (317, 222), (317, 223), (317, 224), (317, 225),
(317, 226), (317, 228), (318, 206), (318, 208), (318, 209), (318, 210), (318, 211), (318, 212), (318, 213), (318, 214), (318, 215), (318, 216), (318, 217), (318, 218), (318, 219), (318, 220), (318, 221), (318, 222), (318, 223), (318, 224), (318, 225), (318, 226), (318, 228), (319, 207), (319, 209), (319, 210), (319, 211), (319, 212), (319, 213), (319, 214), (319, 215), (319, 216), (319, 217), (319, 218), (319, 219), (319, 220), (319, 221), (319, 222), (319, 223), (319, 224), (319, 225), (319, 226), (319, 228), (320, 207), (320, 209), (320, 210), (320, 211), (320, 212), (320, 213), (320, 214), (320, 215), (320, 216), (320, 217), (320, 218), (320, 219), (320, 220), (320, 221), (320, 222), (320, 223), (320, 224), (320, 225), (320, 228), (321, 208), (321, 210), (321, 211), (321, 212), (321, 213), (321, 214), (321, 215), (321, 226), (321, 228), (322, 208),
(322, 216), (322, 217), (322, 218), (322, 219), (322, 220), (322, 221), (322, 222), (322, 223), (322, 224), (322, 225), (323, 210), (323, 212), (323, 213), (323, 214), (323, 215), )
coordinates_00FF13 = ((62, 192),
(62, 193), (62, 195), (63, 189), (63, 190), (63, 191), (63, 195), (64, 186), (64, 192), (64, 193), (64, 195), (65, 184), (65, 188), (65, 189), (65, 190), (65, 191), (65, 192), (65, 194), (66, 183), (66, 186), (66, 187), (66, 188), (66, 189), (66, 190), (66, 191), (66, 194), (67, 181), (67, 184), (67, 185), (67, 186), (67, 187), (67, 188), (67, 189), (67, 190), (67, 193), (68, 181), (68, 183), (68, 184), (68, 185), (68, 186), (68, 187), (68, 188), (68, 189), (68, 192), (69, 181), (69, 183), (69, 184), (69, 185), (69, 186), (69, 187), (69, 188), (69, 191), (69, 205), (70, 181), (70, 183), (70, 184), (70, 185), (70, 186), (70, 187), (70, 190), (70, 205), (70, 207), (70, 208), (71, 181), (71, 183), (71, 184), (71, 185), (71, 186), (71, 189), (71, 205), (71, 210), (72, 181), (72, 183),
(72, 184), (72, 185), (72, 186), (72, 188), (72, 207), (72, 209), (72, 212), (73, 181), (73, 183), (73, 184), (73, 185), (73, 187), (73, 207), (73, 211), (73, 214), (74, 182), (74, 183), (74, 184), (74, 186), (74, 208), (74, 212), (74, 213), (74, 215), (75, 182), (75, 184), (75, 186), (75, 208), (76, 183), (76, 185), (77, 183), (77, 186), (78, 183), (78, 185), (78, 186), (79, 183), (79, 185), (79, 186), (79, 188), (80, 183), (80, 185), (80, 186), (80, 190), (81, 183), (81, 185), (81, 186), (81, 187), (81, 188), (81, 191), (82, 183), (82, 185), (82, 186), (82, 187), (82, 188), (82, 189), (83, 183), (83, 185), (83, 186), (83, 187), (83, 188), (83, 190), (84, 182), (84, 183), (84, 184), (84, 185), (84, 186), (84, 187), (84, 189), (85, 182), (85, 184), (85, 185), (85, 186), (85, 188),
(86, 182), (86, 184), (86, 187), (87, 182), (87, 186), (88, 182), (88, 184), (311, 182), (311, 184), (312, 182), (312, 186), (313, 182), (313, 184), (313, 187), (314, 182), (314, 184), (314, 185), (314, 186), (314, 188), (315, 183), (315, 185), (315, 186), (315, 187), (315, 189), (316, 183), (316, 185), (316, 186), (316, 187), (316, 188), (316, 190), (317, 183), (317, 185), (317, 186), (317, 187), (317, 188), (317, 189), (318, 183), (318, 185), (318, 186), (318, 187), (318, 188), (318, 191), (319, 183), (319, 185), (319, 186), (319, 190), (320, 183), (320, 185), (320, 186), (320, 188), (321, 183), (321, 186), (322, 183), (322, 186), (323, 183), (323, 185), (324, 182), (324, 184), (324, 186), (324, 208), (325, 182), (325, 183), (325, 184), (325, 186), (325, 208), (325, 211), (325, 212), (325, 213), (325, 215), (326, 181), (326, 183), (326, 184),
(326, 185), (326, 187), (326, 207), (326, 214), (327, 181), (327, 183), (327, 184), (327, 185), (327, 186), (327, 188), (327, 207), (327, 212), (328, 181), (328, 183), (328, 184), (328, 185), (328, 186), (328, 187), (328, 189), (328, 205), (328, 210), (329, 181), (329, 183), (329, 184), (329, 185), (329, 186), (329, 187), (329, 190), (329, 205), (329, 207), (329, 208), (330, 181), (330, 183), (330, 184), (330, 185), (330, 186), (330, 187), (330, 188), (330, 191), (330, 205), (331, 181), (331, 183), (331, 184), (331, 185), (331, 186), (331, 187), (331, 188), (331, 189), (331, 192), (332, 181), (332, 184), (332, 185), (332, 186), (332, 187), (332, 188), (332, 189), (332, 190), (332, 193), (333, 183), (333, 186), (333, 187), (333, 188), (333, 189), (333, 190), (333, 191), (333, 194), (334, 184), (334, 185), (334, 189), (334, 190), (334, 191), (334, 192),
(334, 194), (335, 186), (335, 187), (335, 192), (335, 193), (335, 195), (336, 189), (336, 190), (336, 191), (336, 192), (336, 195), (337, 193), (337, 195), )
coordinates_FF00A6 = ((187, 129),
(187, 131), (188, 126), (188, 131), (189, 124), (189, 128), (189, 129), (189, 131), (190, 122), (190, 126), (190, 127), (190, 128), (190, 129), (190, 131), (191, 120), (191, 124), (191, 125), (191, 126), (191, 127), (191, 128), (191, 129), (191, 131), (192, 119), (192, 122), (192, 123), (192, 124), (192, 125), (192, 126), (192, 127), (192, 128), (192, 129), (192, 131), (193, 118), (193, 120), (193, 121), (193, 122), (193, 123), (193, 124), (193, 125), (193, 126), (193, 127), (193, 128), (193, 129), (193, 131), (194, 118), (194, 120), (194, 121), (194, 122), (194, 123), (194, 124), (194, 125), (194, 126), (194, 127), (194, 128), (194, 129), (194, 131), (195, 118), (195, 120), (195, 121), (195, 122), (195, 123), (195, 124), (195, 125), (195, 126), (195, 127), (195, 128), (195, 129), (195, 131), (196, 118), (196, 131), (197, 119), (197, 121), (197, 122),
(197, 123), (197, 124), (197, 125), (197, 126), (197, 127), (197, 128), (197, 129), (201, 122), (201, 123), (202, 119), (202, 121), (202, 122), (202, 123), (202, 124), (202, 125), (202, 126), (202, 127), (202, 128), (202, 129), (203, 118), (203, 122), (203, 123), (203, 131), (204, 118), (204, 120), (204, 121), (204, 122), (204, 123), (204, 124), (204, 125), (204, 126), (204, 127), (204, 128), (204, 129), (204, 131), (205, 118), (205, 120), (205, 121), (205, 122), (205, 123), (205, 124), (205, 125), (205, 126), (205, 127), (205, 128), (205, 129), (205, 131), (206, 118), (206, 120), (206, 121), (206, 122), (206, 123), (206, 124), (206, 125), (206, 126), (206, 127), (206, 128), (206, 129), (206, 131), (207, 119), (207, 122), (207, 123), (207, 124), (207, 125), (207, 126), (207, 127), (207, 128), (207, 129), (207, 131), (208, 120), (208, 124), (208, 125),
(208, 126), (208, 127), (208, 128), (208, 129), (208, 131), (209, 122), (209, 126), (209, 127), (209, 128), (209, 129), (209, 131), (210, 124), (210, 129), (210, 131), (211, 126), (211, 128), (211, 131), (212, 129), (212, 131), )
coordinates_7F0053 = ((159, 125),
(159, 127), (160, 123), (160, 129), (161, 122), (161, 125), (161, 126), (161, 127), (161, 131), (162, 120), (162, 123), (162, 124), (162, 125), (162, 126), (162, 127), (162, 128), (162, 129), (162, 132), (163, 120), (163, 122), (163, 123), (163, 124), (163, 125), (163, 126), (163, 127), (163, 128), (163, 129), (163, 130), (163, 133), (164, 120), (164, 122), (164, 123), (164, 124), (164, 125), (164, 126), (164, 127), (164, 128), (164, 129), (164, 130), (164, 131), (164, 133), (165, 120), (165, 122), (165, 123), (165, 124), (165, 125), (165, 126), (165, 127), (165, 128), (165, 129), (165, 130), (165, 131), (165, 132), (165, 134), (166, 121), (166, 123), (166, 124), (166, 125), (166, 126), (166, 127), (166, 128), (166, 129), (166, 130), (166, 131), (166, 132), (166, 134), (167, 121), (167, 123), (167, 124), (167, 125), (167, 126), (167, 127), (167, 128),
(167, 129), (167, 130), (167, 131), (167, 132), (167, 134), (168, 121), (168, 124), (168, 125), (168, 126), (168, 127), (168, 128), (168, 129), (168, 130), (168, 131), (168, 132), (168, 134), (169, 123), (169, 124), (169, 125), (169, 126), (169, 127), (169, 128), (169, 129), (169, 130), (169, 131), (169, 132), (169, 134), (170, 124), (170, 126), (170, 127), (170, 128), (170, 129), (170, 130), (170, 131), (170, 132), (170, 134), (171, 124), (171, 126), (171, 127), (171, 128), (171, 129), (171, 130), (171, 131), (171, 132), (171, 134), (172, 122), (172, 123), (172, 125), (172, 126), (172, 127), (172, 128), (172, 129), (172, 130), (172, 131), (172, 132), (172, 134), (173, 122), (173, 124), (173, 125), (173, 126), (173, 127), (173, 128), (173, 129), (173, 130), (173, 131), (173, 133), (174, 122), (174, 124), (174, 125), (174, 126), (174, 127), (174, 128),
(174, 129), (174, 130), (174, 131), (174, 133), (175, 121), (175, 123), (175, 124), (175, 125), (175, 126), (175, 127), (175, 128), (175, 129), (175, 130), (175, 131), (175, 133), (176, 121), (176, 123), (176, 124), (176, 125), (176, 126), (176, 127), (176, 128), (176, 129), (176, 130), (176, 132), (177, 121), (177, 123), (177, 124), (177, 125), (177, 126), (177, 127), (177, 128), (177, 129), (177, 130), (177, 132), (178, 120), (178, 122), (178, 123), (178, 124), (178, 125), (178, 126), (178, 127), (178, 128), (178, 129), (178, 130), (178, 132), (179, 120), (179, 122), (179, 123), (179, 124), (179, 125), (179, 126), (179, 127), (179, 128), (179, 129), (179, 130), (179, 132), (180, 119), (180, 121), (180, 122), (180, 123), (180, 124), (180, 125), (180, 126), (180, 127), (180, 128), (180, 129), (180, 131), (181, 119), (181, 121), (181, 122), (181, 123),
(181, 124), (181, 125), (181, 126), (181, 127), (181, 128), (181, 129), (181, 131), (182, 118), (182, 120), (182, 121), (182, 122), (182, 123), (182, 124), (182, 125), (182, 126), (182, 127), (182, 128), (182, 129), (182, 131), (183, 118), (183, 120), (183, 121), (183, 122), (183, 123), (183, 124), (183, 125), (183, 126), (183, 127), (183, 128), (183, 129), (183, 131), (184, 117), (184, 119), (184, 120), (184, 121), (184, 122), (184, 123), (184, 124), (184, 125), (184, 126), (184, 127), (184, 131), (185, 117), (185, 119), (185, 120), (185, 121), (185, 122), (185, 123), (185, 124), (185, 128), (185, 130), (186, 117), (186, 119), (186, 120), (186, 121), (186, 122), (186, 125), (186, 126), (186, 127), (187, 117), (187, 119), (187, 120), (187, 124), (188, 117), (188, 122), (189, 117), (189, 120), (190, 117), (191, 117), (208, 117), (209, 117), (209, 119),
(210, 116), (210, 117), (210, 120), (211, 116), (211, 118), (211, 119), (211, 122), (212, 116), (212, 118), (212, 119), (212, 120), (212, 124), (213, 117), (213, 119), (213, 120), (213, 121), (213, 122), (213, 126), (213, 127), (214, 117), (214, 119), (214, 120), (214, 121), (214, 122), (214, 123), (214, 124), (214, 128), (214, 130), (214, 131), (215, 117), (215, 119), (215, 120), (215, 121), (215, 122), (215, 123), (215, 124), (215, 125), (215, 126), (215, 127), (215, 131), (216, 118), (216, 120), (216, 121), (216, 122), (216, 123), (216, 124), (216, 125), (216, 126), (216, 127), (216, 128), (216, 129), (216, 131), (217, 118), (217, 120), (217, 121), (217, 122), (217, 123), (217, 124), (217, 125), (217, 126), (217, 127), (217, 128), (217, 129), (217, 131), (218, 118), (218, 120), (218, 121), (218, 122), (218, 123), (218, 124), (218, 125), (218, 126),
(218, 127), (218, 128), (218, 129), (218, 131), (219, 119), (219, 121), (219, 122), (219, 123), (219, 124), (219, 125), (219, 126), (219, 127), (219, 128), (219, 129), (219, 131), (220, 119), (220, 121), (220, 122), (220, 123), (220, 124), (220, 125), (220, 126), (220, 127), (220, 128), (220, 129), (220, 130), (220, 132), (221, 120), (221, 122), (221, 123), (221, 124), (221, 125), (221, 126), (221, 127), (221, 128), (221, 129), (221, 130), (221, 132), (222, 120), (222, 122), (222, 123), (222, 124), (222, 125), (222, 126), (222, 127), (222, 128), (222, 129), (222, 130), (222, 132), (223, 121), (223, 123), (223, 124), (223, 125), (223, 126), (223, 127), (223, 128), (223, 129), (223, 130), (223, 132), (224, 121), (224, 123), (224, 124), (224, 125), (224, 126), (224, 127), (224, 128), (224, 129), (224, 130), (224, 131), (224, 133), (225, 121), (225, 123),
(225, 124), (225, 125), (225, 126), (225, 127), (225, 128), (225, 129), (225, 130), (225, 131), (225, 133), (226, 122), (226, 124), (226, 125), (226, 126), (226, 127), (226, 128), (226, 129), (226, 130), (226, 131), (226, 133), (227, 123), (227, 125), (227, 126), (227, 127), (227, 128), (227, 129), (227, 130), (227, 131), (227, 132), (227, 134), (228, 124), (228, 126), (228, 127), (228, 128), (228, 129), (228, 130), (228, 131), (228, 132), (228, 134), (229, 125), (229, 127), (229, 128), (229, 129), (229, 130), (229, 131), (229, 132), (229, 134), (230, 121), (230, 123), (230, 124), (230, 125), (230, 126), (230, 127), (230, 128), (230, 129), (230, 130), (230, 131), (230, 132), (230, 134), (231, 121), (231, 124), (231, 125), (231, 126), (231, 127), (231, 128), (231, 129), (231, 130), (231, 131), (231, 132), (231, 134), (232, 121), (232, 123), (232, 124),
(232, 125), (232, 126), (232, 127), (232, 128), (232, 129), (232, 130), (232, 131), (232, 132), (232, 134), (233, 121), (233, 123), (233, 124), (233, 125), (233, 126), (233, 127), (233, 128), (233, 129), (233, 130), (233, 131), (233, 132), (233, 134), (234, 120), (234, 122), (234, 123), (234, 124), (234, 125), (234, 126), (234, 127), (234, 128), (234, 129), (234, 130), (234, 131), (234, 132), (234, 134), (235, 120), (235, 122), (235, 123), (235, 124), (235, 125), (235, 126), (235, 127), (235, 128), (235, 129), (235, 130), (235, 131), (235, 133), (236, 120), (236, 122), (236, 123), (236, 124), (236, 125), (236, 126), (236, 127), (236, 128), (236, 129), (236, 130), (236, 133), (237, 120), (237, 123), (237, 124), (237, 125), (237, 126), (237, 127), (237, 128), (237, 129), (237, 132), (238, 122), (238, 125), (238, 126), (238, 127), (238, 131), (239, 123),
(239, 129), (240, 125), (240, 127), )
coordinates_7F0013 = ((184, 139),
(184, 142), (185, 137), (185, 143), (186, 134), (186, 136), (186, 139), (186, 140), (186, 141), (186, 143), (187, 134), (187, 137), (187, 138), (187, 139), (187, 140), (187, 141), (187, 143), (188, 134), (188, 136), (188, 137), (188, 138), (188, 139), (188, 140), (188, 141), (188, 143), (189, 133), (189, 135), (189, 136), (189, 137), (189, 138), (189, 139), (189, 140), (189, 141), (189, 143), (190, 133), (190, 135), (190, 136), (190, 137), (190, 138), (190, 139), (190, 140), (190, 141), (190, 143), (190, 175), (190, 177), (191, 133), (191, 135), (191, 136), (191, 137), (191, 138), (191, 139), (191, 140), (191, 141), (191, 143), (191, 174), (191, 177), (192, 133), (192, 135), (192, 136), (192, 137), (192, 138), (192, 139), (192, 140), (192, 141), (192, 143), (192, 174), (192, 177), (193, 133), (193, 135), (193, 136), (193, 137), (193, 138), (193, 139),
(193, 140), (193, 141), (193, 143), (193, 174), (193, 177), (194, 133), (194, 135), (194, 136), (194, 137), (194, 138), (194, 139), (194, 140), (194, 141), (194, 143), (194, 174), (194, 177), (195, 133), (195, 135), (195, 136), (195, 137), (195, 138), (195, 139), (195, 143), (195, 174), (195, 177), (196, 133), (196, 136), (196, 137), (196, 140), (196, 141), (196, 174), (196, 177), (197, 133), (197, 135), (197, 139), (197, 174), (197, 177), (198, 136), (198, 137), (201, 136), (201, 137), (202, 133), (202, 135), (202, 139), (202, 174), (202, 177), (203, 133), (203, 136), (203, 137), (203, 141), (203, 174), (203, 177), (204, 133), (204, 135), (204, 136), (204, 137), (204, 138), (204, 139), (204, 143), (204, 174), (204, 177), (205, 133), (205, 135), (205, 136), (205, 137), (205, 138), (205, 139), (205, 140), (205, 141), (205, 143), (205, 174), (205, 177),
(206, 133), (206, 135), (206, 136), (206, 137), (206, 138), (206, 139), (206, 140), (206, 141), (206, 143), (206, 174), (206, 177), (207, 133), (207, 135), (207, 136), (207, 137), (207, 138), (207, 139), (207, 140), (207, 141), (207, 143), (207, 174), (207, 177), (208, 133), (208, 135), (208, 136), (208, 137), (208, 138), (208, 139), (208, 140), (208, 141), (208, 143), (208, 174), (208, 177), (209, 133), (209, 135), (209, 136), (209, 137), (209, 138), (209, 139), (209, 140), (209, 141), (209, 143), (209, 175), (209, 177), (210, 133), (210, 134), (210, 135), (210, 136), (210, 137), (210, 138), (210, 139), (210, 140), (210, 141), (210, 143), (211, 134), (211, 136), (211, 137), (211, 138), (211, 139), (211, 140), (211, 141), (211, 143), (212, 134), (212, 137), (212, 138), (212, 139), (212, 140), (212, 141), (212, 143), (213, 134), (213, 136), (213, 139),
(213, 140), (213, 141), (213, 143), (214, 137), (214, 143), (215, 139), (215, 142), )
coordinates_1D007F = ((67, 156),
(68, 153), (68, 171), (69, 153), (69, 171), (69, 179), (70, 152), (70, 153), (70, 172), (70, 174), (70, 175), (70, 176), (70, 177), (70, 179), (71, 152), (72, 152), (73, 152), (74, 152), (325, 152), (326, 152), (327, 152), (328, 152), (329, 152), (329, 153), (329, 172), (329, 174), (329, 175), (329, 176), (329, 177), (329, 179), (330, 153), (330, 171), (330, 175), (330, 176), (330, 177), (330, 179), (331, 153), (331, 155), (331, 171), )
coordinates_307F00 = ((127, 113),
(127, 115), (128, 112), (128, 117), (129, 110), (129, 113), (129, 114), (129, 115), (129, 118), (130, 107), (130, 108), (130, 109), (130, 112), (130, 113), (130, 114), (130, 115), (130, 116), (130, 118), (131, 104), (131, 106), (131, 110), (131, 111), (131, 112), (131, 113), (131, 114), (131, 115), (131, 116), (131, 117), (131, 119), (132, 87), (132, 89), (132, 90), (132, 91), (132, 92), (132, 93), (132, 94), (132, 95), (132, 101), (132, 103), (132, 107), (132, 108), (132, 109), (132, 110), (132, 111), (132, 112), (132, 113), (132, 114), (132, 115), (132, 116), (132, 117), (132, 119), (133, 87), (133, 96), (133, 97), (133, 98), (133, 99), (133, 100), (133, 104), (133, 105), (133, 106), (133, 107), (133, 108), (133, 109), (133, 110), (133, 111), (133, 112), (133, 113), (133, 114), (133, 115), (133, 116), (133, 117), (133, 118), (133, 120),
(134, 87), (134, 89), (134, 90), (134, 91), (134, 92), (134, 93), (134, 94), (134, 95), (134, 101), (134, 102), (134, 103), (134, 104), (134, 105), (134, 106), (134, 107), (134, 108), (134, 109), (134, 110), (134, 111), (134, 112), (134, 113), (134, 114), (134, 115), (134, 116), (134, 117), (134, 118), (134, 120), (135, 88), (135, 90), (135, 91), (135, 92), (135, 93), (135, 94), (135, 95), (135, 96), (135, 97), (135, 98), (135, 99), (135, 100), (135, 101), (135, 102), (135, 103), (135, 104), (135, 105), (135, 106), (135, 107), (135, 108), (135, 109), (135, 110), (135, 111), (135, 112), (135, 113), (135, 114), (135, 115), (135, 116), (135, 117), (135, 118), (135, 120), (136, 88), (136, 90), (136, 91), (136, 92), (136, 93), (136, 94), (136, 95), (136, 96), (136, 97), (136, 98), (136, 99), (136, 100), (136, 101), (136, 102),
(136, 103), (136, 104), (136, 105), (136, 106), (136, 107), (136, 108), (136, 109), (136, 110), (136, 111), (136, 112), (136, 113), (136, 114), (136, 115), (136, 116), (136, 117), (136, 118), (136, 120), (137, 89), (137, 91), (137, 92), (137, 93), (137, 94), (137, 95), (137, 96), (137, 97), (137, 98), (137, 99), (137, 100), (137, 101), (137, 102), (137, 103), (137, 104), (137, 105), (137, 106), (137, 107), (137, 108), (137, 109), (137, 110), (137, 111), (137, 112), (137, 113), (137, 114), (137, 115), (137, 116), (137, 117), (137, 118), (137, 120), (138, 89), (138, 91), (138, 92), (138, 93), (138, 94), (138, 95), (138, 96), (138, 97), (138, 98), (138, 99), (138, 100), (138, 101), (138, 102), (138, 103), (138, 104), (138, 105), (138, 106), (138, 107), (138, 108), (138, 109), (138, 110), (138, 111), (138, 112), (138, 113), (138, 114),
(138, 115), (138, 116), (138, 117), (138, 118), (138, 120), (139, 90), (139, 92), (139, 93), (139, 94), (139, 95), (139, 96), (139, 97), (139, 98), (139, 99), (139, 100), (139, 101), (139, 102), (139, 103), (139, 104), (139, 105), (139, 106), (139, 107), (139, 108), (139, 109), (139, 110), (139, 111), (139, 112), (139, 113), (139, 114), (139, 115), (139, 116), (139, 117), (139, 118), (139, 120), (140, 91), (140, 93), (140, 94), (140, 95), (140, 96), (140, 97), (140, 98), (140, 99), (140, 100), (140, 101), (140, 102), (140, 103), (140, 104), (140, 105), (140, 106), (140, 107), (140, 108), (140, 109), (140, 110), (140, 111), (140, 112), (140, 113), (140, 114), (140, 115), (140, 116), (140, 117), (140, 118), (140, 120), (141, 94), (141, 95), (141, 96), (141, 97), (141, 98), (141, 99), (141, 100), (141, 101), (141, 102), (141, 103),
(141, 104), (141, 105), (141, 106), (141, 107), (141, 108), (141, 109), (141, 110), (141, 111), (141, 112), (141, 113), (141, 114), (141, 115), (141, 116), (141, 117), (141, 118), (141, 120), (142, 92), (142, 94), (142, 95), (142, 96), (142, 97), (142, 98), (142, 99), (142, 100), (142, 101), (142, 102), (142, 103), (142, 104), (142, 105), (142, 106), (142, 107), (142, 108), (142, 109), (142, 110), (142, 111), (142, 112), (142, 113), (142, 114), (142, 115), (142, 116), (142, 117), (142, 118), (142, 120), (143, 93), (143, 95), (143, 96), (143, 97), (143, 98), (143, 99), (143, 100), (143, 101), (143, 102), (143, 103), (143, 104), (143, 105), (143, 106), (143, 107), (143, 108), (143, 109), (143, 110), (143, 111), (143, 112), (143, 113), (143, 114), (143, 115), (143, 116), (143, 117), (143, 119), (144, 94), (144, 96), (144, 97), (144, 98),
(144, 99), (144, 100), (144, 101), (144, 102), (144, 103), (144, 104), (144, 105), (144, 106), (144, 107), (144, 108), (144, 109), (144, 110), (144, 111), (144, 112), (144, 113), (144, 114), (144, 115), (144, 116), (144, 117), (144, 119), (145, 94), (145, 96), (145, 97), (145, 98), (145, 99), (145, 100), (145, 101), (145, 102), (145, 103), (145, 104), (145, 105), (145, 106), (145, 107), (145, 108), (145, 109), (145, 110), (145, 111), (145, 112), (145, 113), (145, 114), (145, 115), (145, 116), (145, 118), (146, 95), (146, 97), (146, 98), (146, 99), (146, 100), (146, 101), (146, 102), (146, 103), (146, 104), (146, 105), (146, 106), (146, 107), (146, 108), (146, 109), (146, 110), (146, 111), (146, 112), (146, 113), (146, 114), (146, 115), (146, 117), (147, 96), (147, 98), (147, 99), (147, 100), (147, 101), (147, 102), (147, 103), (147, 104),
(147, 105), (147, 106), (147, 107), (147, 108), (147, 109), (147, 110), (147, 111), (147, 112), (147, 113), (147, 116), (148, 96), (148, 98), (148, 99), (148, 100), (148, 101), (148, 102), (148, 103), (148, 104), (148, 105), (148, 106), (148, 107), (148, 108), (148, 109), (148, 110), (148, 115), (149, 96), (149, 111), (149, 113), (150, 97), (150, 99), (150, 100), (150, 101), (150, 102), (150, 103), (150, 104), (150, 105), (150, 106), (150, 107), (150, 108), (150, 109), (150, 110), (248, 97), (249, 97), (249, 99), (249, 100), (249, 101), (249, 102), (249, 103), (249, 104), (249, 105), (249, 106), (249, 107), (249, 108), (249, 109), (249, 110), (250, 96), (250, 111), (250, 113), (251, 96), (251, 98), (251, 99), (251, 100), (251, 101), (251, 102), (251, 103), (251, 104), (251, 105), (251, 106), (251, 107), (251, 108), (251, 109), (251, 110),
(251, 115), (252, 96), (252, 98), (252, 99), (252, 100), (252, 101), (252, 102), (252, 103), (252, 104), (252, 105), (252, 106), (252, 107), (252, 108), (252, 109), (252, 110), (252, 111), (252, 112), (252, 113), (252, 116), (253, 95), (253, 97), (253, 98), (253, 99), (253, 100), (253, 101), (253, 102), (253, 103), (253, 104), (253, 105), (253, 106), (253, 107), (253, 108), (253, 109), (253, 110), (253, 111), (253, 112), (253, 113), (253, 114), (253, 115), (253, 117), (254, 94), (254, 96), (254, 97), (254, 98), (254, 99), (254, 100), (254, 101), (254, 102), (254, 103), (254, 104), (254, 105), (254, 106), (254, 107), (254, 108), (254, 109), (254, 110), (254, 111), (254, 112), (254, 113), (254, 114), (254, 115), (254, 116), (254, 118), (255, 94), (255, 96), (255, 97), (255, 98), (255, 99), (255, 100), (255, 101), (255, 102), (255, 103),
(255, 104), (255, 105), (255, 106), (255, 107), (255, 108), (255, 109), (255, 110), (255, 111), (255, 112), (255, 113), (255, 114), (255, 115), (255, 116), (255, 117), (255, 119), (256, 93), (256, 95), (256, 96), (256, 97), (256, 98), (256, 99), (256, 100), (256, 101), (256, 102), (256, 103), (256, 104), (256, 105), (256, 106), (256, 107), (256, 108), (256, 109), (256, 110), (256, 111), (256, 112), (256, 113), (256, 114), (256, 115), (256, 116), (256, 117), (256, 118), (257, 92), (257, 94), (257, 95), (257, 96), (257, 97), (257, 98), (257, 99), (257, 100), (257, 101), (257, 102), (257, 103), (257, 104), (257, 105), (257, 106), (257, 107), (257, 108), (257, 109), (257, 110), (257, 111), (257, 112), (257, 113), (257, 114), (257, 115), (257, 116), (257, 117), (257, 118), (257, 120), (258, 91), (258, 93), (258, 94), (258, 95), (258, 96),
(258, 97), (258, 98), (258, 99), (258, 100), (258, 101), (258, 102), (258, 103), (258, 104), (258, 105), (258, 106), (258, 107), (258, 108), (258, 109), (258, 110), (258, 111), (258, 112), (258, 113), (258, 114), (258, 115), (258, 116), (258, 117), (258, 118), (258, 120), (259, 91), (259, 93), (259, 94), (259, 95), (259, 96), (259, 97), (259, 98), (259, 99), (259, 100), (259, 101), (259, 102), (259, 103), (259, 104), (259, 105), (259, 106), (259, 107), (259, 108), (259, 109), (259, 110), (259, 111), (259, 112), (259, 113), (259, 114), (259, 115), (259, 116), (259, 117), (259, 118), (259, 120), (260, 90), (260, 92), (260, 93), (260, 94), (260, 95), (260, 96), (260, 97), (260, 98), (260, 99), (260, 100), (260, 101), (260, 102), (260, 103), (260, 104), (260, 105), (260, 106), (260, 107), (260, 108), (260, 109), (260, 110), (260, 111),
(260, 112), (260, 113), (260, 114), (260, 115), (260, 116), (260, 117), (260, 118), (260, 120), (261, 89), (261, 91), (261, 92), (261, 93), (261, 94), (261, 95), (261, 96), (261, 97), (261, 98), (261, 99), (261, 100), (261, 101), (261, 102), (261, 103), (261, 104), (261, 105), (261, 106), (261, 107), (261, 108), (261, 109), (261, 110), (261, 111), (261, 112), (261, 113), (261, 114), (261, 115), (261, 116), (261, 117), (261, 118), (261, 120), (262, 89), (262, 91), (262, 92), (262, 93), (262, 94), (262, 95), (262, 96), (262, 97), (262, 98), (262, 99), (262, 100), (262, 101), (262, 102), (262, 103), (262, 104), (262, 105), (262, 106), (262, 107), (262, 108), (262, 109), (262, 110), (262, 111), (262, 112), (262, 113), (262, 114), (262, 115), (262, 116), (262, 117), (262, 118), (262, 120), (263, 88), (263, 90), (263, 91), (263, 92),
(263, 93), (263, 94), (263, 95), (263, 96), (263, 97), (263, 98), (263, 99), (263, 100), (263, 101), (263, 102), (263, 103), (263, 104), (263, 105), (263, 106), (263, 107), (263, 108), (263, 109), (263, 110), (263, 111), (263, 112), (263, 113), (263, 114), (263, 115), (263, 116), (263, 117), (263, 118), (263, 120), (264, 88), (264, 90), (264, 91), (264, 92), (264, 93), (264, 94), (264, 95), (264, 96), (264, 97), (264, 98), (264, 99), (264, 100), (264, 101), (264, 102), (264, 103), (264, 104), (264, 105), (264, 106), (264, 107), (264, 108), (264, 109), (264, 110), (264, 111), (264, 112), (264, 113), (264, 114), (264, 115), (264, 116), (264, 117), (264, 118), (264, 120), (265, 87), (265, 89), (265, 90), (265, 91), (265, 92), (265, 93), (265, 94), (265, 95), (265, 101), (265, 102), (265, 103), (265, 104), (265, 105), (265, 106),
(265, 107), (265, 108), (265, 109), (265, 110), (265, 111), (265, 112), (265, 113), (265, 114), (265, 115), (265, 116), (265, 117), (265, 118), (265, 120), (266, 87), (266, 96), (266, 97), (266, 98), (266, 99), (266, 100), (266, 104), (266, 105), (266, 106), (266, 107), (266, 108), (266, 109), (266, 110), (266, 111), (266, 112), (266, 113), (266, 114), (266, 115), (266, 116), (266, 117), (266, 118), (266, 120), (267, 87), (267, 89), (267, 90), (267, 91), (267, 92), (267, 93), (267, 94), (267, 95), (267, 101), (267, 103), (267, 107), (267, 108), (267, 109), (267, 110), (267, 111), (267, 112), (267, 113), (267, 114), (267, 115), (267, 116), (267, 117), (267, 119), (268, 104), (268, 105), (268, 106), (268, 110), (268, 111), (268, 112), (268, 113), (268, 114), (268, 115), (268, 116), (268, 117), (268, 119), (269, 107), (269, 108), (269, 109),
(269, 112), (269, 113), (269, 114), (269, 115), (269, 116), (269, 118), (270, 110), (270, 113), (270, 114), (270, 115), (271, 112), (271, 117), (272, 113), (272, 115), )
coordinates_7F0075 = ((162, 202),
(162, 204), (162, 205), (162, 206), (162, 207), (162, 208), (162, 209), (162, 210), (162, 211), (162, 213), (163, 201), (163, 214), (164, 201), (164, 203), (164, 204), (164, 205), (164, 206), (164, 207), (164, 208), (164, 209), (164, 210), (164, 211), (164, 212), (164, 213), (164, 215), (165, 200), (165, 202), (165, 203), (165, 204), (165, 205), (165, 206), (165, 207), (165, 208), (165, 209), (165, 210), (165, 211), (165, 212), (165, 213), (165, 214), (165, 216), (166, 201), (166, 202), (166, 203), (166, 204), (166, 205), (166, 206), (166, 207), (166, 208), (166, 209), (166, 210), (166, 211), (166, 212), (166, 213), (166, 214), (166, 216), (167, 199), (167, 201), (167, 202), (167, 203), (167, 204), (167, 205), (167, 206), (167, 207), (167, 208), (167, 209), (167, 210), (167, 211), (167, 212), (167, 213), (167, 214), (167, 215), (167, 217), (168, 198),
(168, 200), (168, 201), (168, 202), (168, 203), (168, 204), (168, 205), (168, 206), (168, 207), (168, 208), (168, 209), (168, 210), (168, 211), (168, 212), (168, 213), (168, 214), (168, 215), (168, 217), (169, 197), (169, 199), (169, 200), (169, 201), (169, 202), (169, 203), (169, 204), (169, 205), (169, 206), (169, 207), (169, 208), (169, 209), (169, 210), (169, 211), (169, 212), (169, 213), (169, 214), (169, 215), (169, 217), (170, 197), (170, 199), (170, 200), (170, 201), (170, 202), (170, 203), (170, 204), (170, 205), (170, 206), (170, 207), (170, 208), (170, 209), (170, 210), (170, 211), (170, 212), (170, 213), (170, 214), (170, 215), (170, 216), (170, 217), (170, 218), (171, 197), (171, 199), (171, 200), (171, 201), (171, 202), (171, 203), (171, 204), (171, 205), (171, 206), (171, 207), (171, 208), (171, 209), (171, 210), (171, 211), (171, 212),
(171, 213), (171, 214), (171, 215), (171, 216), (171, 218), (172, 197), (172, 201), (172, 202), (172, 203), (172, 204), (172, 205), (172, 206), (172, 207), (172, 208), (172, 209), (172, 210), (172, 211), (172, 212), (172, 213), (172, 214), (172, 215), (172, 216), (172, 218), (173, 198), (173, 199), (173, 202), (173, 203), (173, 204), (173, 205), (173, 206), (173, 207), (173, 208), (173, 209), (173, 210), (173, 211), (173, 212), (173, 213), (173, 214), (173, 215), (173, 216), (173, 218), (174, 201), (174, 203), (174, 204), (174, 205), (174, 206), (174, 207), (174, 208), (174, 209), (174, 210), (174, 211), (174, 212), (174, 213), (174, 214), (174, 215), (174, 216), (174, 217), (174, 219), (175, 202), (175, 204), (175, 205), (175, 206), (175, 207), (175, 208), (175, 209), (175, 210), (175, 211), (175, 212), (175, 213), (175, 214), (175, 215), (175, 216),
(175, 217), (175, 219), (176, 203), (176, 205), (176, 206), (176, 207), (176, 208), (176, 209), (176, 210), (176, 211), (176, 212), (176, 213), (176, 214), (176, 215), (176, 216), (176, 217), (176, 219), (177, 204), (177, 206), (177, 207), (177, 208), (177, 209), (177, 210), (177, 211), (177, 212), (177, 213), (177, 214), (177, 215), (177, 216), (177, 217), (177, 218), (177, 219), (177, 222), (177, 223), (178, 205), (178, 207), (178, 208), (178, 209), (178, 210), (178, 211), (178, 212), (178, 213), (178, 214), (178, 215), (178, 216), (178, 217), (178, 218), (178, 219), (178, 223), (179, 205), (179, 207), (179, 208), (179, 209), (179, 210), (179, 211), (179, 212), (179, 213), (179, 214), (179, 215), (179, 216), (179, 217), (179, 218), (179, 219), (179, 220), (179, 223), (180, 206), (180, 208), (180, 209), (180, 210), (180, 211), (180, 212), (180, 213),
(180, 214), (180, 215), (180, 216), (180, 217), (180, 218), (180, 219), (180, 220), (180, 221), (180, 222), (180, 224), (181, 207), (181, 209), (181, 210), (181, 211), (181, 212), (181, 213), (181, 214), (181, 215), (181, 216), (181, 217), (181, 218), (181, 219), (181, 220), (181, 221), (181, 222), (181, 223), (182, 208), (182, 210), (182, 211), (182, 212), (182, 213), (182, 214), (182, 215), (182, 216), (182, 217), (182, 218), (182, 219), (182, 220), (182, 221), (182, 222), (182, 223), (182, 226), (182, 227), (183, 194), (183, 195), (183, 196), (183, 197), (183, 198), (183, 199), (183, 209), (183, 211), (183, 212), (183, 213), (183, 214), (183, 215), (183, 216), (183, 217), (183, 218), (183, 219), (183, 220), (183, 221), (183, 222), (183, 223), (183, 224), (183, 225), (183, 230), (184, 191), (184, 193), (184, 200), (184, 201), (184, 210), (184, 213),
(184, 214), (184, 215), (184, 216), (184, 217), (184, 218), (184, 219), (184, 220), (184, 221), (184, 222), (184, 223), (184, 224), (184, 225), (184, 226), (184, 227), (184, 228), (184, 231), (185, 189), (185, 194), (185, 195), (185, 196), (185, 197), (185, 198), (185, 199), (185, 203), (185, 211), (185, 218), (185, 219), (185, 220), (185, 221), (185, 222), (185, 223), (185, 224), (185, 225), (185, 226), (185, 227), (185, 228), (185, 229), (185, 230), (185, 232), (186, 187), (186, 191), (186, 192), (186, 193), (186, 194), (186, 195), (186, 196), (186, 197), (186, 198), (186, 199), (186, 200), (186, 201), (186, 202), (186, 205), (186, 206), (186, 214), (186, 215), (186, 216), (186, 217), (186, 220), (186, 221), (186, 222), (186, 223), (186, 224), (186, 225), (186, 226), (186, 227), (186, 228), (186, 229), (186, 230), (186, 232), (187, 185), (187, 189),
(187, 190), (187, 191), (187, 192), (187, 193), (187, 194), (187, 195), (187, 196), (187, 197), (187, 198), (187, 199), (187, 200), (187, 201), (187, 202), (187, 203), (187, 204), (187, 207), (187, 218), (187, 219), (187, 220), (187, 221), (187, 222), (187, 223), (187, 224), (187, 225), (187, 226), (187, 227), (187, 228), (187, 229), (187, 230), (187, 231), (187, 233), (188, 183), (188, 187), (188, 188), (188, 189), (188, 190), (188, 191), (188, 192), (188, 193), (188, 194), (188, 195), (188, 196), (188, 197), (188, 198), (188, 199), (188, 200), (188, 201), (188, 202), (188, 203), (188, 204), (188, 205), (188, 206), (188, 209), (188, 210), (188, 220), (188, 222), (188, 223), (188, 224), (188, 225), (188, 226), (188, 227), (188, 228), (188, 229), (188, 230), (188, 231), (188, 233), (189, 180), (189, 182), (189, 185), (189, 186), (189, 187), (189, 188),
(189, 189), (189, 190), (189, 191), (189, 192), (189, 193), (189, 194), (189, 195), (189, 196), (189, 197), (189, 198), (189, 199), (189, 200), (189, 201), (189, 202), (189, 203), (189, 204), (189, 205), (189, 206), (189, 207), (189, 208), (189, 211), (189, 220), (189, 222), (189, 223), (189, 224), (189, 225), (189, 226), (189, 227), (189, 228), (189, 229), (189, 230), (189, 231), (189, 233), (190, 180), (190, 183), (190, 184), (190, 185), (190, 186), (190, 187), (190, 188), (190, 189), (190, 190), (190, 191), (190, 192), (190, 193), (190, 194), (190, 195), (190, 196), (190, 197), (190, 198), (190, 199), (190, 200), (190, 201), (190, 202), (190, 203), (190, 204), (190, 205), (190, 206), (190, 207), (190, 208), (190, 209), (190, 210), (190, 213), (190, 214), (190, 215), (190, 216), (190, 217), (190, 218), (190, 219), (190, 220), (190, 221), (190, 222),
(190, 223), (190, 224), (190, 225), (190, 226), (190, 227), (190, 228), (190, 229), (190, 230), (190, 231), (190, 233), (191, 180), (191, 182), (191, 183), (191, 184), (191, 185), (191, 186), (191, 187), (191, 188), (191, 189), (191, 190), (191, 191), (191, 192), (191, 193), (191, 194), (191, 195), (191, 196), (191, 197), (191, 198), (191, 199), (191, 200), (191, 201), (191, 202), (191, 203), (191, 204), (191, 205), (191, 206), (191, 207), (191, 208), (191, 209), (191, 210), (191, 211), (191, 212), (191, 220), (191, 221), (191, 222), (191, 223), (191, 224), (191, 225), (191, 226), (191, 227), (191, 228), (191, 229), (191, 230), (191, 231), (191, 232), (191, 234), (192, 179), (192, 180), (192, 181), (192, 182), (192, 183), (192, 184), (192, 185), (192, 186), (192, 187), (192, 188), (192, 189), (192, 190), (192, 191), (192, 192), (192, 193), (192, 194),
(192, 195), (192, 196), (192, 197), (192, 198), (192, 199), (192, 200), (192, 201), (192, 202), (192, 203), (192, 204), (192, 205), (192, 206), (192, 207), (192, 208), (192, 209), (192, 210), (192, 211), (192, 212), (192, 213), (192, 214), (192, 215), (192, 216), (192, 217), (192, 218), (192, 219), (192, 220), (192, 221), (192, 222), (192, 223), (192, 224), (192, 225), (192, 226), (192, 227), (192, 228), (192, 229), (192, 230), (192, 231), (192, 232), (192, 234), (193, 179), (193, 181), (193, 182), (193, 183), (193, 184), (193, 185), (193, 186), (193, 187), (193, 188), (193, 189), (193, 190), (193, 191), (193, 192), (193, 193), (193, 194), (193, 195), (193, 196), (193, 197), (193, 198), (193, 199), (193, 200), (193, 201), (193, 202), (193, 203), (193, 204), (193, 205), (193, 206), (193, 207), (193, 208), (193, 209), (193, 210), (193, 211), (193, 212),
(193, 213), (193, 214), (193, 215), (193, 216), (193, 217), (193, 218), (193, 219), (193, 220), (193, 221), (193, 222), (193, 223), (193, 224), (193, 225), (193, 226), (193, 227), (193, 228), (193, 229), (193, 230), (193, 231), (193, 232), (193, 234), (194, 179), (194, 181), (194, 182), (194, 183), (194, 184), (194, 185), (194, 186), (194, 187), (194, 188), (194, 189), (194, 190), (194, 191), (194, 192), (194, 193), (194, 194), (194, 195), (194, 196), (194, 197), (194, 198), (194, 199), (194, 200), (194, 201), (194, 202), (194, 203), (194, 204), (194, 205), (194, 206), (194, 207), (194, 208), (194, 209), (194, 210), (194, 211), (194, 212), (194, 213), (194, 214), (194, 215), (194, 216), (194, 217), (194, 218), (194, 219), (194, 220), (194, 221), (194, 222), (194, 223), (194, 224), (194, 225), (194, 226), (194, 227), (194, 228), (194, 229), (194, 230),
(194, 231), (194, 233), (195, 179), (195, 181), (195, 182), (195, 183), (195, 184), (195, 185), (195, 186), (195, 187), (195, 188), (195, 189), (195, 190), (195, 191), (195, 192), (195, 193), (195, 194), (195, 195), (195, 196), (195, 197), (195, 198), (195, 199), (195, 200), (195, 201), (195, 202), (195, 203), (195, 204), (195, 205), (195, 206), (195, 207), (195, 208), (195, 209), (195, 210), (195, 211), (195, 212), (195, 213), (195, 214), (195, 215), (195, 216), (195, 217), (195, 218), (195, 219), (195, 220), (195, 221), (195, 222), (195, 223), (195, 224), (195, 225), (195, 226), (195, 227), (195, 228), (195, 229), (195, 230), (195, 231), (195, 233), (196, 179), (196, 181), (196, 182), (196, 183), (196, 184), (196, 185), (196, 186), (196, 187), (196, 188), (196, 189), (196, 190), (196, 191), (196, 192), (196, 193), (196, 194), (196, 195), (196, 196),
(196, 197), (196, 198), (196, 199), (196, 200), (196, 201), (196, 202), (196, 203), (196, 204), (196, 205), (196, 206), (196, 207), (196, 208), (196, 209), (196, 210), (196, 211), (196, 212), (196, 213), (196, 214), (196, 215), (196, 216), (196, 217), (196, 218), (196, 219), (196, 220), (196, 221), (196, 222), (196, 223), (196, 224), (196, 225), (196, 226), (196, 227), (196, 228), (196, 229), (196, 230), (196, 231), (196, 233), (197, 179), (197, 181), (197, 182), (197, 183), (197, 184), (197, 185), (197, 186), (197, 187), (197, 188), (197, 189), (197, 190), (197, 191), (197, 192), (197, 193), (197, 194), (197, 195), (197, 196), (197, 197), (197, 198), (197, 199), (197, 200), (197, 201), (197, 202), (197, 203), (197, 204), (197, 205), (197, 206), (197, 207), (197, 208), (197, 209), (197, 210), (197, 211), (197, 212), (197, 213), (197, 214), (197, 215),
(197, 216), (197, 217), (197, 218), (197, 219), (197, 220), (197, 221), (197, 222), (197, 223), (197, 224), (197, 225), (197, 226), (197, 227), (197, 228), (197, 229), (197, 230), (197, 232), (198, 179), (198, 181), (198, 182), (198, 183), (198, 184), (198, 185), (198, 186), (198, 187), (198, 188), (198, 189), (198, 190), (198, 191), (198, 192), (198, 193), (198, 194), (198, 195), (198, 196), (198, 197), (198, 198), (198, 199), (198, 200), (198, 201), (198, 202), (198, 203), (198, 204), (198, 205), (198, 206), (198, 207), (198, 208), (198, 209), (198, 210), (198, 211), (198, 212), (198, 213), (198, 214), (198, 215), (198, 216), (198, 217), (198, 218), (198, 219), (198, 220), (198, 221), (198, 222), (198, 223), (198, 224), (198, 225), (198, 226), (198, 227), (198, 228), (198, 229), (198, 231), (199, 181), (199, 183), (199, 184), (199, 185), (199, 186),
(199, 187), (199, 188), (199, 189), (199, 190), (199, 191), (199, 192), (199, 193), (199, 194), (199, 195), (199, 196), (199, 197), (199, 198), (199, 199), (199, 200), (199, 201), (199, 202), (199, 203), (199, 204), (199, 205), (199, 206), (199, 207), (199, 208), (199, 209), (199, 210), (199, 211), (199, 212), (199, 213), (199, 214), (199, 215), (199, 216), (199, 217), (199, 218), (199, 219), (199, 220), (199, 221), (199, 222), (199, 223), (199, 224), (199, 225), (199, 226), (199, 227), (199, 228), (199, 229), (199, 231), (200, 181), (200, 183), (200, 184), (200, 185), (200, 186), (200, 187), (200, 188), (200, 189), (200, 190), (200, 191), (200, 192), (200, 193), (200, 194), (200, 195), (200, 196), (200, 197), (200, 198), (200, 199), (200, 200), (200, 201), (200, 202), (200, 203), (200, 204), (200, 205), (200, 206), (200, 207), (200, 208), (200, 209),
(200, 210), (200, 211), (200, 212), (200, 213), (200, 214), (200, 215), (200, 216), (200, 217), (200, 218), (200, 219), (200, 220), (200, 221), (200, 222), (200, 223), (200, 224), (200, 225), (200, 226), (200, 227), (200, 228), (200, 229), (200, 231), (201, 179), (201, 181), (201, 182), (201, 183), (201, 184), (201, 185), (201, 186), (201, 187), (201, 188), (201, 189), (201, 190), (201, 191), (201, 192), (201, 193), (201, 194), (201, 195), (201, 196), (201, 197), (201, 198), (201, 199), (201, 200), (201, 201), (201, 202), (201, 203), (201, 204), (201, 205), (201, 206), (201, 207), (201, 208), (201, 209), (201, 210), (201, 211), (201, 212), (201, 213), (201, 214), (201, 215), (201, 216), (201, 217), (201, 218), (201, 219), (201, 220), (201, 221), (201, 222), (201, 223), (201, 224), (201, 225), (201, 226), (201, 227), (201, 228), (201, 229), (201, 231),
(202, 179), (202, 181), (202, 182), (202, 183), (202, 184), (202, 185), (202, 186), (202, 187), (202, 188), (202, 189), (202, 190), (202, 191), (202, 192), (202, 193), (202, 194), (202, 195), (202, 196), (202, 197), (202, 198), (202, 199), (202, 200), (202, 201), (202, 202), (202, 203), (202, 204), (202, 205), (202, 206), (202, 207), (202, 208), (202, 209), (202, 210), (202, 211), (202, 212), (202, 213), (202, 214), (202, 215), (202, 216), (202, 217), (202, 218), (202, 219), (202, 220), (202, 221), (202, 222), (202, 223), (202, 224), (202, 225), (202, 226), (202, 227), (202, 228), (202, 229), (202, 230), (202, 232), (203, 179), (203, 181), (203, 182), (203, 183), (203, 184), (203, 185), (203, 186), (203, 187), (203, 188), (203, 189), (203, 190), (203, 191), (203, 192), (203, 193), (203, 194), (203, 195), (203, 196), (203, 197), (203, 198), (203, 199),
(203, 200), (203, 201), (203, 202), (203, 203), (203, 204), (203, 205), (203, 206), (203, 207), (203, 208), (203, 209), (203, 210), (203, 211), (203, 212), (203, 213), (203, 214), (203, 215), (203, 216), (203, 217), (203, 218), (203, 219), (203, 220), (203, 221), (203, 222), (203, 223), (203, 224), (203, 225), (203, 226), (203, 227), (203, 228), (203, 229), (203, 230), (203, 231), (203, 233), (204, 179), (204, 181), (204, 182), (204, 183), (204, 184), (204, 185), (204, 186), (204, 187), (204, 188), (204, 189), (204, 190), (204, 191), (204, 192), (204, 193), (204, 194), (204, 195), (204, 196), (204, 197), (204, 198), (204, 199), (204, 200), (204, 201), (204, 202), (204, 203), (204, 204), (204, 205), (204, 206), (204, 207), (204, 208), (204, 209), (204, 210), (204, 211), (204, 212), (204, 213), (204, 214), (204, 215), (204, 216), (204, 217), (204, 218),
(204, 219), (204, 220), (204, 221), (204, 222), (204, 223), (204, 224), (204, 225), (204, 226), (204, 227), (204, 228), (204, 229), (204, 230), (204, 231), (204, 233), (205, 179), (205, 181), (205, 182), (205, 183), (205, 184), (205, 185), (205, 186), (205, 187), (205, 188), (205, 189), (205, 190), (205, 191), (205, 192), (205, 193), (205, 194), (205, 195), (205, 196), (205, 197), (205, 198), (205, 199), (205, 200), (205, 201), (205, 202), (205, 203), (205, 204), (205, 205), (205, 206), (205, 207), (205, 208), (205, 209), (205, 210), (205, 211), (205, 212), (205, 213), (205, 214), (205, 215), (205, 216), (205, 217), (205, 218), (205, 219), (205, 220), (205, 221), (205, 222), (205, 223), (205, 224), (205, 225), (205, 226), (205, 227), (205, 228), (205, 229), (205, 230), (205, 231), (205, 233), (206, 179), (206, 181), (206, 182), (206, 183), (206, 184),
(206, 185), (206, 186), (206, 187), (206, 188), (206, 189), (206, 190), (206, 191), (206, 192), (206, 193), (206, 194), (206, 195), (206, 196), (206, 197), (206, 198), (206, 199), (206, 200), (206, 201), (206, 202), (206, 203), (206, 204), (206, 205), (206, 206), (206, 207), (206, 208), (206, 209), (206, 210), (206, 211), (206, 212), (206, 213), (206, 214), (206, 215), (206, 216), (206, 217), (206, 218), (206, 219), (206, 220), (206, 221), (206, 222), (206, 223), (206, 224), (206, 225), (206, 226), (206, 227), (206, 228), (206, 229), (206, 230), (206, 231), (206, 232), (206, 234), (207, 179), (207, 180), (207, 181), (207, 182), (207, 183), (207, 184), (207, 185), (207, 186), (207, 187), (207, 188), (207, 189), (207, 190), (207, 191), (207, 192), (207, 193), (207, 194), (207, 195), (207, 196), (207, 197), (207, 198), (207, 199), (207, 200), (207, 201),
(207, 202), (207, 203), (207, 204), (207, 205), (207, 206), (207, 207), (207, 208), (207, 209), (207, 210), (207, 211), (207, 212), (207, 213), (207, 214), (207, 215), (207, 216), (207, 217), (207, 218), (207, 219), (207, 220), (207, 221), (207, 222), (207, 223), (207, 224), (207, 225), (207, 226), (207, 227), (207, 228), (207, 229), (207, 230), (207, 231), (207, 232), (207, 234), (208, 180), (208, 182), (208, 183), (208, 184), (208, 185), (208, 186), (208, 187), (208, 188), (208, 189), (208, 190), (208, 191), (208, 192), (208, 193), (208, 194), (208, 195), (208, 196), (208, 197), (208, 198), (208, 199), (208, 200), (208, 201), (208, 202), (208, 203), (208, 204), (208, 205), (208, 206), (208, 207), (208, 208), (208, 209), (208, 210), (208, 211), (208, 220), (208, 221), (208, 222), (208, 223), (208, 224), (208, 225), (208, 226), (208, 227), (208, 228),
(208, 229), (208, 230), (208, 231), (208, 232), (208, 234), (209, 180), (209, 183), (209, 184), (209, 185), (209, 186), (209, 187), (209, 188), (209, 189), (209, 190), (209, 191), (209, 192), (209, 193), (209, 194), (209, 195), (209, 196), (209, 197), (209, 198), (209, 199), (209, 200), (209, 201), (209, 202), (209, 203), (209, 204), (209, 205), (209, 206), (209, 207), (209, 208), (209, 209), (209, 213), (209, 214), (209, 215), (209, 216), (209, 217), (209, 218), (209, 219), (209, 220), (209, 221), (209, 222), (209, 223), (209, 224), (209, 225), (209, 226), (209, 227), (209, 228), (209, 229), (209, 230), (209, 231), (209, 233), (210, 180), (210, 182), (210, 185), (210, 186), (210, 187), (210, 188), (210, 189), (210, 190), (210, 191), (210, 192), (210, 193), (210, 194), (210, 195), (210, 196), (210, 197), (210, 198), (210, 199), (210, 200), (210, 201),
(210, 202), (210, 203), (210, 204), (210, 205), (210, 206), (210, 207), (210, 211), (210, 220), (210, 222), (210, 223), (210, 224), (210, 225), (210, 226), (210, 227), (210, 228), (210, 229), (210, 230), (210, 231), (210, 233), (211, 183), (211, 184), (211, 187), (211, 188), (211, 189), (211, 190), (211, 191), (211, 192), (211, 193), (211, 194), (211, 195), (211, 196), (211, 197), (211, 198), (211, 199), (211, 200), (211, 201), (211, 202), (211, 203), (211, 204), (211, 205), (211, 209), (211, 220), (211, 222), (211, 223), (211, 224), (211, 225), (211, 226), (211, 227), (211, 228), (211, 229), (211, 230), (211, 231), (211, 233), (212, 185), (212, 189), (212, 190), (212, 191), (212, 192), (212, 193), (212, 194), (212, 195), (212, 196), (212, 197), (212, 198), (212, 199), (212, 200), (212, 201), (212, 202), (212, 203), (212, 207), (212, 217), (212, 218),
(212, 219), (212, 220), (212, 221), (212, 222), (212, 223), (212, 224), (212, 225), (212, 226), (212, 227), (212, 228), (212, 229), (212, 230), (212, 231), (212, 232), (213, 187), (213, 191), (213, 192), (213, 193), (213, 194), (213, 195), (213, 196), (213, 197), (213, 198), (213, 199), (213, 200), (213, 201), (213, 205), (213, 213), (213, 215), (213, 216), (213, 220), (213, 221), (213, 222), (213, 223), (213, 224), (213, 225), (213, 226), (213, 227), (213, 228), (213, 229), (213, 230), (213, 232), (214, 189), (214, 195), (214, 196), (214, 197), (214, 198), (214, 203), (214, 211), (214, 217), (214, 218), (214, 219), (214, 220), (214, 221), (214, 222), (214, 223), (214, 224), (214, 225), (214, 226), (214, 227), (214, 228), (214, 229), (214, 232), (215, 192), (215, 193), (215, 194), (215, 199), (215, 201), (215, 210), (215, 213), (215, 214), (215, 215),
(215, 216), (215, 217), (215, 218), (215, 219), (215, 220), (215, 221), (215, 222), (215, 223), (215, 224), (215, 225), (215, 226), (215, 227), (215, 231), (216, 195), (216, 196), (216, 197), (216, 198), (216, 209), (216, 211), (216, 212), (216, 213), (216, 214), (216, 215), (216, 216), (216, 217), (216, 218), (216, 219), (216, 220), (216, 221), (216, 222), (216, 223), (216, 224), (216, 228), (216, 230), (217, 208), (217, 210), (217, 211), (217, 212), (217, 213), (217, 214), (217, 215), (217, 216), (217, 217), (217, 218), (217, 219), (217, 220), (217, 221), (217, 222), (217, 223), (217, 226), (217, 227), (218, 207), (218, 209), (218, 210), (218, 211), (218, 212), (218, 213), (218, 214), (218, 215), (218, 216), (218, 217), (218, 218), (218, 219), (218, 220), (218, 221), (218, 222), (218, 224), (219, 206), (219, 208), (219, 209), (219, 210), (219, 211),
(219, 212), (219, 213), (219, 214), (219, 215), (219, 216), (219, 217), (219, 218), (219, 219), (219, 220), (219, 221), (219, 223), (220, 205), (220, 207), (220, 208), (220, 209), (220, 210), (220, 211), (220, 212), (220, 213), (220, 214), (220, 215), (220, 216), (220, 217), (220, 218), (220, 219), (220, 220), (220, 223), (221, 207), (221, 208), (221, 209), (221, 210), (221, 211), (221, 212), (221, 213), (221, 214), (221, 215), (221, 216), (221, 217), (221, 218), (221, 219), (221, 223), (222, 204), (222, 206), (222, 207), (222, 208), (222, 209), (222, 210), (222, 211), (222, 212), (222, 213), (222, 214), (222, 215), (222, 216), (222, 217), (222, 218), (222, 219), (222, 222), (223, 203), (223, 205), (223, 206), (223, 207), (223, 208), (223, 209), (223, 210), (223, 211), (223, 212), (223, 213), (223, 214), (223, 215), (223, 216), (223, 217), (223, 219),
(224, 202), (224, 204), (224, 205), (224, 206), (224, 207), (224, 208), (224, 209), (224, 210), (224, 211), (224, 212), (224, 213), (224, 214), (224, 215), (224, 216), (224, 217), (224, 219), (225, 201), (225, 203), (225, 204), (225, 205), (225, 206), (225, 207), (225, 208), (225, 209), (225, 210), (225, 211), (225, 212), (225, 213), (225, 214), (225, 215), (225, 216), (225, 217), (225, 218), (225, 219), (226, 198), (226, 202), (226, 203), (226, 204), (226, 205), (226, 206), (226, 207), (226, 208), (226, 209), (226, 210), (226, 211), (226, 212), (226, 213), (226, 214), (226, 215), (226, 216), (226, 218), (227, 197), (227, 200), (227, 201), (227, 202), (227, 203), (227, 204), (227, 205), (227, 206), (227, 207), (227, 208), (227, 209), (227, 210), (227, 211), (227, 212), (227, 213), (227, 214), (227, 215), (227, 216), (227, 218), (228, 197), (228, 199),
(228, 200), (228, 201), (228, 202), (228, 203), (228, 204), (228, 205), (228, 206), (228, 207), (228, 208), (228, 209), (228, 210), (228, 211), (228, 212), (228, 213), (228, 214), (228, 215), (228, 216), (228, 218), (229, 197), (229, 199), (229, 200), (229, 201), (229, 202), (229, 203), (229, 204), (229, 205), (229, 206), (229, 207), (229, 208), (229, 209), (229, 210), (229, 211), (229, 212), (229, 213), (229, 214), (229, 215), (229, 217), (230, 198), (230, 200), (230, 201), (230, 202), (230, 203), (230, 204), (230, 205), (230, 206), (230, 207), (230, 208), (230, 209), (230, 210), (230, 211), (230, 212), (230, 213), (230, 214), (230, 215), (230, 217), (231, 198), (231, 200), (231, 201), (231, 202), (231, 203), (231, 204), (231, 205), (231, 206), (231, 207), (231, 208), (231, 209), (231, 210), (231, 211), (231, 212), (231, 213), (231, 214), (231, 215),
(231, 217), (232, 199), (232, 201), (232, 202), (232, 203), (232, 204), (232, 205), (232, 206), (232, 207), (232, 208), (232, 209), (232, 210), (232, 211), (232, 212), (232, 213), (232, 214), (232, 215), (232, 217), (233, 200), (233, 202), (233, 203), (233, 204), (233, 205), (233, 206), (233, 207), (233, 208), (233, 209), (233, 210), (233, 211), (233, 212), (233, 213), (233, 214), (233, 216), (234, 200), (234, 202), (234, 203), (234, 204), (234, 205), (234, 206), (234, 207), (234, 208), (234, 209), (234, 210), (234, 211), (234, 212), (234, 213), (234, 214), (234, 216), (235, 201), (235, 203), (235, 204), (235, 205), (235, 206), (235, 207), (235, 208), (235, 209), (235, 210), (235, 211), (235, 212), (235, 213), (235, 215), (236, 202), (236, 214), (237, 202), (237, 204), (237, 205), (237, 206), (237, 207), (237, 208), (237, 209), (237, 210), (237, 211),
(237, 213), )
coordinates_FF006B = ((153, 191),
(153, 192), (154, 190), (154, 193), (155, 189), (155, 191), (155, 192), (155, 194), (156, 191), (156, 192), (156, 193), (156, 195), (157, 188), (157, 190), (157, 191), (157, 192), (157, 193), (157, 194), (157, 196), (158, 188), (158, 189), (158, 190), (158, 191), (158, 192), (158, 193), (158, 194), (158, 195), (158, 198), (159, 187), (159, 189), (159, 190), (159, 191), (159, 192), (159, 193), (159, 194), (159, 195), (159, 196), (159, 199), (160, 187), (160, 189), (160, 190), (160, 191), (160, 192), (160, 193), (160, 194), (160, 195), (160, 196), (160, 197), (160, 199), (161, 187), (161, 189), (161, 190), (161, 191), (161, 192), (161, 193), (161, 194), (161, 195), (161, 196), (161, 197), (161, 198), (161, 200), (162, 186), (162, 188), (162, 189), (162, 190), (162, 191), (162, 192), (162, 193), (162, 194), (162, 195), (162, 196), (162, 197), (162, 198),
(162, 200), (163, 186), (163, 188), (163, 189), (163, 190), (163, 191), (163, 192), (163, 193), (163, 194), (163, 195), (163, 196), (163, 197), (163, 199), (164, 186), (164, 188), (164, 189), (164, 190), (164, 191), (164, 192), (164, 193), (164, 194), (164, 195), (164, 196), (164, 197), (164, 199), (165, 186), (165, 187), (165, 188), (165, 189), (165, 190), (165, 191), (165, 192), (165, 193), (165, 194), (165, 195), (165, 196), (165, 198), (166, 187), (166, 189), (166, 190), (166, 191), (166, 192), (166, 193), (166, 194), (166, 195), (166, 197), (167, 187), (167, 189), (167, 190), (167, 191), (167, 192), (167, 193), (167, 194), (167, 196), (168, 188), (168, 191), (168, 192), (168, 193), (168, 194), (168, 196), (169, 189), (169, 195), (170, 191), (170, 193), (170, 195), (228, 195), (229, 191), (229, 192), (229, 193), (229, 195), (230, 189), (230, 195),
(231, 188), (231, 191), (231, 192), (231, 193), (231, 194), (231, 196), (232, 187), (232, 189), (232, 190), (232, 191), (232, 192), (232, 193), (232, 194), (232, 196), (233, 187), (233, 189), (233, 190), (233, 191), (233, 192), (233, 193), (233, 194), (233, 195), (233, 197), (234, 186), (234, 188), (234, 189), (234, 190), (234, 191), (234, 192), (234, 193), (234, 194), (234, 195), (234, 196), (234, 198), (235, 186), (235, 188), (235, 189), (235, 190), (235, 191), (235, 192), (235, 193), (235, 194), (235, 195), (235, 196), (235, 197), (235, 199), (236, 186), (236, 188), (236, 189), (236, 190), (236, 191), (236, 192), (236, 193), (236, 194), (236, 195), (236, 196), (236, 197), (236, 199), (237, 186), (237, 188), (237, 189), (237, 190), (237, 191), (237, 192), (237, 193), (237, 194), (237, 195), (237, 196), (237, 197), (237, 198), (237, 200), (238, 187),
(238, 189), (238, 190), (238, 191), (238, 192), (238, 193), (238, 194), (238, 195), (238, 196), (238, 197), (238, 198), (238, 200), (239, 187), (239, 189), (239, 190), (239, 191), (239, 192), (239, 193), (239, 194), (239, 195), (239, 196), (239, 197), (239, 199), (240, 187), (240, 189), (240, 190), (240, 191), (240, 192), (240, 193), (240, 194), (240, 195), (240, 196), (241, 188), (241, 190), (241, 191), (241, 192), (241, 193), (241, 194), (241, 195), (241, 197), (242, 188), (242, 190), (242, 191), (242, 192), (242, 193), (242, 194), (242, 196), (243, 189), (243, 191), (243, 192), (243, 193), (243, 195), (244, 189), (244, 191), (244, 192), (244, 194), (245, 190), (245, 193), (246, 191), (246, 192), )
coordinates_7F0900 = ((117, 192),
(117, 194), (117, 195), (117, 197), (118, 191), (118, 198), (118, 199), (119, 191), (119, 193), (119, 194), (119, 195), (119, 196), (119, 197), (119, 200), (120, 191), (120, 193), (120, 194), (120, 195), (120, 196), (120, 197), (120, 198), (120, 199), (120, 202), (121, 190), (121, 192), (121, 193), (121, 194), (121, 195), (121, 196), (121, 197), (121, 198), (121, 199), (121, 200), (121, 204), (122, 190), (122, 192), (122, 193), (122, 194), (122, 195), (122, 196), (122, 197), (122, 198), (122, 199), (122, 200), (122, 201), (122, 202), (122, 205), (123, 190), (123, 192), (123, 193), (123, 194), (123, 195), (123, 196), (123, 197), (123, 198), (123, 199), (123, 200), (123, 201), (123, 202), (123, 203), (123, 204), (123, 206), (124, 189), (124, 191), (124, 192), (124, 193), (124, 194), (124, 195), (124, 196), (124, 197), (124, 198), (124, 199), (124, 200),
(124, 201), (124, 202), (124, 203), (124, 204), (124, 205), (124, 207), (125, 189), (125, 191), (125, 192), (125, 193), (125, 194), (125, 195), (125, 196), (125, 197), (125, 198), (125, 199), (125, 200), (125, 201), (125, 202), (125, 203), (125, 204), (125, 205), (125, 206), (125, 208), (126, 188), (126, 189), (126, 190), (126, 191), (126, 192), (126, 193), (126, 194), (126, 195), (126, 196), (126, 197), (126, 198), (126, 199), (126, 200), (126, 201), (126, 202), (126, 203), (126, 204), (126, 205), (126, 206), (126, 208), (127, 188), (127, 190), (127, 191), (127, 192), (127, 193), (127, 194), (127, 195), (127, 196), (127, 197), (127, 198), (127, 199), (127, 200), (127, 201), (127, 202), (127, 203), (127, 204), (127, 205), (127, 206), (127, 207), (127, 209), (128, 188), (128, 190), (128, 191), (128, 192), (128, 193), (128, 194), (128, 195), (128, 196),
(128, 197), (128, 198), (128, 199), (128, 200), (128, 201), (128, 202), (128, 203), (128, 204), (128, 205), (128, 206), (128, 207), (128, 208), (128, 210), (129, 187), (129, 189), (129, 190), (129, 191), (129, 192), (129, 193), (129, 194), (129, 195), (129, 196), (129, 197), (129, 198), (129, 199), (129, 200), (129, 201), (129, 202), (129, 203), (129, 204), (129, 205), (129, 206), (129, 207), (129, 208), (129, 210), (130, 187), (130, 189), (130, 190), (130, 191), (130, 192), (130, 193), (130, 194), (130, 195), (130, 196), (130, 197), (130, 198), (130, 199), (130, 200), (130, 201), (130, 202), (130, 203), (130, 204), (130, 205), (130, 206), (130, 207), (130, 208), (130, 209), (130, 211), (131, 187), (131, 189), (131, 190), (131, 191), (131, 192), (131, 193), (131, 194), (131, 195), (131, 196), (131, 197), (131, 198), (131, 199), (131, 200), (131, 201),
(131, 202), (131, 203), (131, 204), (131, 205), (131, 206), (131, 207), (131, 208), (131, 209), (131, 211), (132, 188), (132, 190), (132, 191), (132, 192), (132, 193), (132, 194), (132, 195), (132, 196), (132, 197), (132, 198), (132, 199), (132, 200), (132, 201), (132, 202), (132, 203), (132, 204), (132, 205), (132, 206), (132, 207), (132, 208), (132, 209), (132, 211), (133, 189), (133, 191), (133, 192), (133, 193), (133, 194), (133, 195), (133, 196), (133, 197), (133, 198), (133, 199), (133, 200), (133, 201), (133, 202), (133, 203), (133, 204), (133, 205), (133, 206), (133, 207), (133, 208), (133, 209), (133, 210), (133, 212), (134, 190), (134, 192), (134, 193), (134, 194), (134, 195), (134, 196), (134, 197), (134, 198), (134, 199), (134, 200), (134, 201), (134, 202), (134, 203), (134, 204), (134, 205), (134, 206), (134, 207), (134, 208), (134, 209),
(134, 210), (134, 212), (135, 191), (135, 193), (135, 194), (135, 195), (135, 196), (135, 197), (135, 198), (135, 199), (135, 200), (135, 201), (135, 202), (135, 203), (135, 204), (135, 205), (135, 206), (135, 207), (135, 208), (135, 209), (135, 210), (135, 212), (136, 192), (136, 193), (136, 194), (136, 195), (136, 196), (136, 197), (136, 198), (136, 199), (136, 200), (136, 201), (136, 202), (136, 203), (136, 204), (136, 205), (136, 206), (136, 207), (136, 208), (136, 209), (136, 210), (136, 212), (137, 192), (137, 194), (137, 195), (137, 196), (137, 197), (137, 198), (137, 199), (137, 200), (137, 201), (137, 202), (137, 203), (137, 204), (137, 205), (137, 206), (137, 207), (137, 208), (137, 209), (137, 210), (137, 211), (137, 212), (137, 213), (138, 193), (138, 195), (138, 196), (138, 197), (138, 198), (138, 199), (138, 200), (138, 201), (138, 202),
(138, 203), (138, 204), (138, 205), (138, 206), (138, 207), (138, 208), (138, 209), (138, 210), (138, 211), (138, 213), (139, 193), (139, 195), (139, 196), (139, 197), (139, 198), (139, 199), (139, 200), (139, 201), (139, 202), (139, 203), (139, 204), (139, 205), (139, 206), (139, 207), (139, 208), (139, 209), (139, 210), (139, 211), (139, 213), (140, 193), (140, 195), (140, 196), (140, 197), (140, 198), (140, 199), (140, 200), (140, 201), (140, 202), (140, 203), (140, 204), (140, 205), (140, 206), (140, 207), (140, 208), (140, 209), (140, 210), (140, 211), (140, 213), (141, 194), (141, 196), (141, 197), (141, 198), (141, 199), (141, 200), (141, 201), (141, 202), (141, 203), (141, 204), (141, 205), (141, 206), (141, 207), (141, 208), (141, 209), (141, 210), (141, 211), (141, 213), (142, 194), (142, 196), (142, 197), (142, 198), (142, 199), (142, 200),
(142, 201), (142, 202), (142, 203), (142, 204), (142, 205), (142, 206), (142, 207), (142, 208), (142, 209), (142, 210), (142, 211), (142, 213), (143, 194), (143, 196), (143, 197), (143, 198), (143, 199), (143, 200), (143, 201), (143, 202), (143, 203), (143, 204), (143, 205), (143, 206), (143, 207), (143, 208), (143, 209), (143, 210), (143, 211), (143, 213), (144, 194), (144, 196), (144, 197), (144, 198), (144, 199), (144, 200), (144, 201), (144, 202), (144, 203), (144, 204), (144, 205), (144, 206), (144, 207), (144, 208), (144, 209), (144, 210), (144, 211), (144, 213), (145, 194), (145, 196), (145, 197), (145, 198), (145, 199), (145, 200), (145, 201), (145, 202), (145, 203), (145, 204), (145, 205), (145, 206), (145, 207), (145, 208), (145, 209), (145, 210), (145, 211), (145, 213), (146, 194), (146, 196), (146, 197), (146, 198), (146, 199), (146, 200),
(146, 201), (146, 202), (146, 203), (146, 204), (146, 205), (146, 206), (146, 207), (146, 208), (146, 209), (146, 210), (146, 211), (146, 213), (146, 214), (147, 194), (147, 196), (147, 197), (147, 198), (147, 199), (147, 200), (147, 201), (147, 202), (147, 203), (147, 204), (147, 205), (147, 206), (147, 207), (147, 208), (147, 209), (147, 210), (147, 211), (147, 212), (147, 213), (147, 214), (148, 194), (148, 196), (148, 197), (148, 198), (148, 199), (148, 200), (148, 201), (148, 202), (148, 203), (148, 204), (148, 205), (148, 206), (148, 207), (148, 208), (148, 209), (148, 210), (148, 211), (148, 212), (148, 213), (148, 214), (149, 194), (149, 196), (149, 197), (149, 198), (149, 199), (149, 200), (149, 201), (149, 202), (149, 203), (149, 204), (149, 205), (149, 206), (149, 207), (149, 208), (149, 209), (149, 210), (149, 211), (149, 212), (149, 213),
(149, 214), (150, 194), (150, 196), (150, 197), (150, 198), (150, 199), (150, 200), (150, 201), (150, 202), (150, 203), (150, 204), (150, 205), (150, 206), (150, 207), (150, 208), (150, 209), (150, 210), (150, 211), (150, 213), (151, 194), (151, 196), (151, 197), (151, 198), (151, 199), (151, 200), (151, 201), (151, 202), (151, 203), (151, 204), (151, 205), (151, 206), (151, 207), (151, 208), (151, 209), (151, 210), (151, 211), (151, 213), (152, 194), (152, 196), (152, 197), (152, 198), (152, 199), (152, 200), (152, 201), (152, 202), (152, 203), (152, 204), (152, 205), (152, 206), (152, 207), (152, 208), (152, 209), (152, 210), (152, 211), (152, 213), (153, 194), (153, 197), (153, 198), (153, 199), (153, 200), (153, 201), (153, 202), (153, 203), (153, 204), (153, 205), (153, 206), (153, 207), (153, 208), (153, 209), (153, 210), (153, 211), (153, 213),
(154, 195), (154, 198), (154, 199), (154, 200), (154, 201), (154, 202), (154, 203), (154, 204), (154, 205), (154, 206), (154, 207), (154, 208), (154, 209), (154, 210), (154, 211), (154, 213), (155, 196), (155, 199), (155, 200), (155, 201), (155, 202), (155, 203), (155, 204), (155, 205), (155, 206), (155, 207), (155, 208), (155, 209), (155, 210), (155, 212), (156, 198), (156, 200), (156, 201), (156, 202), (156, 203), (156, 204), (156, 205), (156, 206), (156, 207), (156, 208), (156, 209), (156, 211), (157, 199), (157, 201), (157, 202), (157, 203), (157, 204), (157, 205), (157, 206), (157, 207), (157, 208), (157, 209), (157, 211), (158, 200), (158, 202), (158, 203), (158, 204), (158, 205), (158, 206), (158, 207), (158, 208), (158, 210), (159, 201), (159, 209), (160, 202), (160, 204), (160, 205), (160, 206), (160, 207), (160, 209), (239, 202), (239, 204),
(239, 205), (239, 206), (239, 207), (239, 209), (240, 201), (240, 209), (240, 210), (241, 200), (241, 202), (241, 203), (241, 204), (241, 205), (241, 206), (241, 207), (241, 208), (241, 210), (242, 199), (242, 201), (242, 202), (242, 203), (242, 204), (242, 205), (242, 206), (242, 207), (242, 208), (242, 209), (242, 211), (243, 198), (243, 200), (243, 201), (243, 202), (243, 203), (243, 204), (243, 205), (243, 206), (243, 207), (243, 208), (243, 209), (243, 211), (244, 196), (244, 199), (244, 200), (244, 201), (244, 202), (244, 203), (244, 204), (244, 205), (244, 206), (244, 207), (244, 208), (244, 209), (244, 210), (244, 212), (245, 195), (245, 198), (245, 199), (245, 200), (245, 201), (245, 202), (245, 203), (245, 204), (245, 205), (245, 206), (245, 207), (245, 208), (245, 209), (245, 210), (245, 211), (245, 213), (246, 194), (246, 197), (246, 198),
(246, 199), (246, 200), (246, 201), (246, 202), (246, 203), (246, 204), (246, 205), (246, 206), (246, 207), (246, 208), (246, 209), (246, 210), (246, 211), (246, 213), (247, 194), (247, 196), (247, 197), (247, 198), (247, 199), (247, 200), (247, 201), (247, 202), (247, 203), (247, 204), (247, 205), (247, 206), (247, 207), (247, 208), (247, 209), (247, 210), (247, 211), (247, 213), (248, 194), (248, 196), (248, 197), (248, 198), (248, 199), (248, 200), (248, 201), (248, 202), (248, 203), (248, 204), (248, 205), (248, 206), (248, 207), (248, 208), (248, 209), (248, 210), (248, 211), (248, 213), (249, 194), (249, 196), (249, 197), (249, 198), (249, 199), (249, 200), (249, 201), (249, 202), (249, 203), (249, 204), (249, 205), (249, 206), (249, 207), (249, 208), (249, 209), (249, 210), (249, 211), (249, 213), (250, 194), (250, 196), (250, 197), (250, 198),
(250, 199), (250, 200), (250, 201), (250, 202), (250, 203), (250, 204), (250, 205), (250, 206), (250, 207), (250, 208), (250, 209), (250, 210), (250, 211), (250, 212), (250, 213), (250, 214), (251, 194), (251, 196), (251, 197), (251, 198), (251, 199), (251, 200), (251, 201), (251, 202), (251, 203), (251, 204), (251, 205), (251, 206), (251, 207), (251, 208), (251, 209), (251, 210), (251, 211), (251, 212), (251, 213), (251, 214), (252, 194), (252, 196), (252, 197), (252, 198), (252, 199), (252, 200), (252, 201), (252, 202), (252, 203), (252, 204), (252, 205), (252, 206), (252, 207), (252, 208), (252, 209), (252, 210), (252, 211), (252, 212), (252, 213), (252, 214), (253, 194), (253, 196), (253, 197), (253, 198), (253, 199), (253, 200), (253, 201), (253, 202), (253, 203), (253, 204), (253, 205), (253, 206), (253, 207), (253, 208), (253, 209), (253, 210),
(253, 211), (253, 213), (254, 194), (254, 196), (254, 197), (254, 198), (254, 199), (254, 200), (254, 201), (254, 202), (254, 203), (254, 204), (254, 205), (254, 206), (254, 207), (254, 208), (254, 209), (254, 210), (254, 211), (254, 213), (255, 194), (255, 196), (255, 197), (255, 198), (255, 199), (255, 200), (255, 201), (255, 202), (255, 203), (255, 204), (255, 205), (255, 206), (255, 207), (255, 208), (255, 209), (255, 210), (255, 211), (255, 213), (256, 194), (256, 196), (256, 197), (256, 198), (256, 199), (256, 200), (256, 201), (256, 202), (256, 203), (256, 204), (256, 205), (256, 206), (256, 207), (256, 208), (256, 209), (256, 210), (256, 211), (256, 213), (257, 194), (257, 196), (257, 197), (257, 198), (257, 199), (257, 200), (257, 201), (257, 202), (257, 203), (257, 204), (257, 205), (257, 206), (257, 207), (257, 208), (257, 209), (257, 210),
(257, 211), (257, 213), (258, 194), (258, 196), (258, 197), (258, 198), (258, 199), (258, 200), (258, 201), (258, 202), (258, 203), (258, 204), (258, 205), (258, 206), (258, 207), (258, 208), (258, 209), (258, 210), (258, 211), (258, 213), (259, 193), (259, 195), (259, 196), (259, 197), (259, 198), (259, 199), (259, 200), (259, 201), (259, 202), (259, 203), (259, 204), (259, 205), (259, 206), (259, 207), (259, 208), (259, 209), (259, 210), (259, 211), (259, 213), (260, 193), (260, 195), (260, 196), (260, 197), (260, 198), (260, 199), (260, 200), (260, 201), (260, 202), (260, 203), (260, 204), (260, 205), (260, 206), (260, 207), (260, 208), (260, 209), (260, 210), (260, 211), (260, 213), (261, 193), (261, 195), (261, 196), (261, 197), (261, 198), (261, 199), (261, 200), (261, 201), (261, 202), (261, 203), (261, 204), (261, 205), (261, 206), (261, 207),
(261, 208), (261, 209), (261, 210), (261, 211), (261, 213), (262, 192), (262, 194), (262, 195), (262, 196), (262, 197), (262, 198), (262, 199), (262, 200), (262, 201), (262, 202), (262, 203), (262, 204), (262, 205), (262, 206), (262, 207), (262, 208), (262, 209), (262, 210), (262, 212), (262, 213), (263, 191), (263, 193), (263, 194), (263, 195), (263, 196), (263, 197), (263, 198), (263, 199), (263, 200), (263, 201), (263, 202), (263, 203), (263, 204), (263, 205), (263, 206), (263, 207), (263, 208), (263, 209), (263, 210), (263, 212), (264, 191), (264, 193), (264, 194), (264, 195), (264, 196), (264, 197), (264, 198), (264, 199), (264, 200), (264, 201), (264, 202), (264, 203), (264, 204), (264, 205), (264, 206), (264, 207), (264, 208), (264, 209), (264, 210), (264, 212), (265, 190), (265, 192), (265, 193), (265, 194), (265, 195), (265, 196), (265, 197),
(265, 198), (265, 199), (265, 200), (265, 201), (265, 202), (265, 203), (265, 204), (265, 205), (265, 206), (265, 207), (265, 208), (265, 209), (265, 210), (265, 212), (266, 189), (266, 191), (266, 192), (266, 193), (266, 194), (266, 195), (266, 196), (266, 197), (266, 198), (266, 199), (266, 200), (266, 201), (266, 202), (266, 203), (266, 204), (266, 205), (266, 206), (266, 207), (266, 208), (266, 209), (266, 210), (266, 212), (267, 188), (267, 190), (267, 191), (267, 192), (267, 193), (267, 194), (267, 195), (267, 196), (267, 197), (267, 198), (267, 199), (267, 200), (267, 201), (267, 202), (267, 203), (267, 204), (267, 205), (267, 206), (267, 207), (267, 208), (267, 209), (267, 211), (268, 187), (268, 189), (268, 190), (268, 191), (268, 192), (268, 193), (268, 194), (268, 195), (268, 196), (268, 197), (268, 198), (268, 199), (268, 200), (268, 201),
(268, 202), (268, 203), (268, 204), (268, 205), (268, 206), (268, 207), (268, 208), (268, 209), (268, 211), (269, 187), (269, 189), (269, 190), (269, 191), (269, 192), (269, 193), (269, 194), (269, 195), (269, 196), (269, 197), (269, 198), (269, 199), (269, 200), (269, 201), (269, 202), (269, 203), (269, 204), (269, 205), (269, 206), (269, 207), (269, 208), (269, 209), (269, 211), (270, 187), (270, 189), (270, 190), (270, 191), (270, 192), (270, 193), (270, 194), (270, 195), (270, 196), (270, 197), (270, 198), (270, 199), (270, 200), (270, 201), (270, 202), (270, 203), (270, 204), (270, 205), (270, 206), (270, 207), (270, 208), (270, 210), (271, 188), (271, 190), (271, 191), (271, 192), (271, 193), (271, 194), (271, 195), (271, 196), (271, 197), (271, 198), (271, 199), (271, 200), (271, 201), (271, 202), (271, 203), (271, 204), (271, 205), (271, 206),
(271, 207), (271, 208), (272, 188), (272, 190), (272, 191), (272, 192), (272, 193), (272, 194), (272, 195), (272, 196), (272, 197), (272, 198), (272, 199), (272, 200), (272, 201), (272, 202), (272, 203), (272, 204), (272, 205), (272, 206), (272, 207), (272, 209), (273, 189), (273, 190), (273, 191), (273, 192), (273, 193), (273, 194), (273, 195), (273, 196), (273, 197), (273, 198), (273, 199), (273, 200), (273, 201), (273, 202), (273, 203), (273, 204), (273, 205), (273, 206), (273, 208), (274, 189), (274, 191), (274, 192), (274, 193), (274, 194), (274, 195), (274, 196), (274, 197), (274, 198), (274, 199), (274, 200), (274, 201), (274, 202), (274, 203), (274, 204), (274, 205), (274, 208), (275, 189), (275, 191), (275, 192), (275, 193), (275, 194), (275, 195), (275, 196), (275, 197), (275, 198), (275, 199), (275, 200), (275, 201), (275, 202), (275, 203),
(275, 204), (275, 205), (275, 207), (276, 190), (276, 192), (276, 193), (276, 194), (276, 195), (276, 196), (276, 197), (276, 198), (276, 199), (276, 200), (276, 201), (276, 202), (276, 203), (276, 206), (277, 190), (277, 192), (277, 193), (277, 194), (277, 195), (277, 196), (277, 197), (277, 198), (277, 199), (277, 200), (277, 201), (277, 202), (277, 205), (278, 190), (278, 192), (278, 193), (278, 194), (278, 195), (278, 196), (278, 197), (278, 198), (278, 199), (278, 200), (278, 204), (279, 191), (279, 193), (279, 194), (279, 195), (279, 196), (279, 197), (279, 198), (279, 199), (279, 202), (280, 191), (280, 193), (280, 194), (280, 195), (280, 196), (280, 197), (280, 200), (281, 191), (281, 198), (282, 192), (282, 194), (282, 195), (282, 197), )
coordinates_FF1300 = ((106, 184),
(107, 181), (107, 184), (108, 181), (108, 184), (109, 180), (109, 182), (109, 183), (109, 185), (110, 180), (110, 182), (110, 183), (110, 185), (111, 179), (111, 181), (111, 182), (111, 183), (111, 185), (112, 179), (112, 181), (112, 182), (112, 183), (112, 184), (112, 186), (113, 179), (113, 181), (113, 182), (113, 183), (113, 184), (113, 186), (114, 179), (114, 181), (114, 182), (114, 183), (114, 184), (114, 185), (114, 187), (115, 179), (115, 181), (115, 182), (115, 183), (115, 184), (115, 185), (115, 187), (116, 178), (116, 180), (116, 181), (116, 182), (116, 183), (116, 184), (116, 185), (116, 186), (116, 188), (117, 178), (117, 180), (117, 181), (117, 182), (117, 183), (117, 184), (117, 185), (117, 186), (117, 187), (117, 189), (118, 178), (118, 180), (118, 181), (118, 182), (118, 183), (118, 184), (118, 185), (118, 186), (118, 187), (118, 189),
(119, 178), (119, 180), (119, 181), (119, 182), (119, 183), (119, 184), (119, 185), (119, 186), (119, 187), (119, 189), (120, 178), (120, 179), (120, 180), (120, 181), (120, 182), (120, 183), (120, 184), (120, 185), (120, 186), (120, 188), (121, 179), (121, 181), (121, 182), (121, 183), (121, 184), (121, 185), (121, 186), (121, 188), (122, 179), (122, 181), (122, 182), (122, 183), (122, 184), (122, 185), (122, 186), (122, 188), (123, 179), (123, 181), (123, 182), (123, 183), (123, 184), (123, 185), (123, 187), (124, 179), (124, 181), (124, 182), (124, 183), (124, 184), (124, 185), (124, 187), (125, 180), (125, 182), (125, 183), (125, 184), (125, 185), (125, 187), (126, 180), (126, 182), (126, 183), (126, 184), (126, 186), (127, 181), (127, 183), (127, 184), (127, 186), (128, 182), (128, 185), (129, 183), (129, 185), (269, 185), (270, 183), (270, 185),
(271, 182), (272, 181), (272, 183), (272, 184), (272, 186), (273, 180), (273, 182), (273, 183), (273, 184), (273, 186), (274, 180), (274, 182), (274, 183), (274, 184), (274, 185), (274, 187), (275, 179), (275, 181), (275, 182), (275, 183), (275, 184), (275, 185), (275, 187), (276, 179), (276, 181), (276, 182), (276, 183), (276, 184), (276, 185), (276, 187), (277, 179), (277, 181), (277, 182), (277, 183), (277, 184), (277, 185), (277, 186), (277, 188), (278, 179), (278, 181), (278, 182), (278, 183), (278, 184), (278, 185), (278, 186), (278, 188), (279, 178), (279, 179), (279, 180), (279, 181), (279, 182), (279, 183), (279, 184), (279, 185), (279, 186), (279, 188), (280, 178), (280, 180), (280, 181), (280, 182), (280, 183), (280, 184), (280, 185), (280, 186), (280, 187), (280, 189), (281, 178), (281, 180), (281, 181), (281, 182), (281, 183), (281, 184),
(281, 185), (281, 186), (281, 187), (281, 189), (282, 178), (282, 180), (282, 181), (282, 182), (282, 183), (282, 184), (282, 185), (282, 186), (282, 187), (282, 189), (283, 178), (283, 180), (283, 181), (283, 182), (283, 183), (283, 184), (283, 185), (283, 186), (283, 188), (284, 179), (284, 181), (284, 182), (284, 183), (284, 184), (284, 185), (284, 187), (285, 179), (285, 181), (285, 182), (285, 183), (285, 184), (285, 185), (285, 187), (286, 179), (286, 181), (286, 182), (286, 183), (286, 184), (286, 186), (287, 179), (287, 181), (287, 182), (287, 183), (287, 184), (287, 186), (288, 179), (288, 181), (288, 182), (288, 183), (288, 185), (289, 180), (289, 182), (289, 183), (289, 185), (290, 180), (290, 182), (290, 183), (290, 185), (291, 181), (291, 184), (292, 184), (293, 184), )
coordinates_007F4E = ((96, 107),
(96, 109), (96, 110), (96, 111), (96, 112), (96, 114), (97, 106), (98, 104), (98, 107), (98, 108), (98, 109), (98, 110), (98, 111), (98, 112), (98, 114), (99, 103), (99, 106), (99, 107), (99, 108), (99, 109), (99, 110), (99, 111), (99, 112), (99, 114), (100, 102), (100, 104), (100, 105), (100, 106), (100, 107), (100, 108), (100, 109), (100, 110), (100, 111), (100, 112), (100, 114), (101, 101), (101, 103), (101, 104), (101, 105), (101, 106), (101, 107), (101, 108), (101, 109), (101, 110), (101, 111), (101, 112), (101, 114), (102, 100), (102, 102), (102, 103), (102, 104), (102, 105), (102, 106), (102, 107), (102, 108), (102, 109), (102, 110), (102, 111), (102, 112), (102, 114), (103, 99), (103, 101), (103, 102), (103, 103), (103, 104), (103, 105), (103, 106), (103, 107), (103, 108), (103, 109), (103, 110), (103, 111), (103, 112),
(103, 114), (104, 98), (104, 100), (104, 101), (104, 102), (104, 103), (104, 104), (104, 105), (104, 106), (104, 107), (104, 108), (104, 109), (104, 110), (104, 111), (104, 112), (104, 114), (105, 97), (105, 99), (105, 100), (105, 101), (105, 102), (105, 103), (105, 104), (105, 105), (105, 106), (105, 107), (105, 108), (105, 109), (105, 110), (105, 111), (105, 112), (105, 114), (106, 96), (106, 98), (106, 99), (106, 100), (106, 101), (106, 102), (106, 103), (106, 104), (106, 105), (106, 106), (106, 107), (106, 108), (106, 109), (106, 110), (106, 111), (106, 112), (106, 114), (107, 98), (107, 99), (107, 100), (107, 101), (107, 102), (107, 103), (107, 104), (107, 105), (107, 106), (107, 107), (107, 108), (107, 109), (107, 110), (107, 111), (107, 112), (107, 114), (108, 95), (108, 97), (108, 98), (108, 99), (108, 100), (108, 101), (108, 102),
(108, 103), (108, 104), (108, 105), (108, 106), (108, 107), (108, 108), (108, 109), (108, 110), (108, 111), (108, 114), (109, 94), (109, 96), (109, 97), (109, 98), (109, 99), (109, 100), (109, 101), (109, 102), (109, 103), (109, 104), (109, 105), (109, 106), (109, 107), (109, 108), (109, 109), (109, 113), (109, 114), (110, 93), (110, 95), (110, 96), (110, 97), (110, 98), (110, 99), (110, 100), (110, 101), (110, 102), (110, 103), (110, 104), (110, 105), (110, 106), (110, 107), (110, 110), (110, 111), (111, 93), (111, 95), (111, 96), (111, 97), (111, 98), (111, 99), (111, 100), (111, 101), (111, 102), (111, 103), (111, 104), (111, 105), (111, 106), (111, 107), (111, 109), (112, 92), (112, 94), (112, 95), (112, 96), (112, 97), (112, 98), (112, 99), (112, 100), (112, 101), (112, 102), (112, 103), (112, 104), (112, 105), (112, 107),
(112, 108), (113, 92), (113, 94), (113, 95), (113, 96), (113, 97), (113, 98), (113, 99), (113, 100), (113, 101), (113, 102), (113, 103), (113, 104), (113, 105), (113, 107), (114, 91), (114, 93), (114, 94), (114, 95), (114, 96), (114, 97), (114, 98), (114, 99), (114, 100), (114, 101), (114, 102), (114, 103), (114, 104), (114, 105), (114, 107), (115, 91), (115, 93), (115, 94), (115, 95), (115, 96), (115, 97), (115, 98), (115, 99), (115, 100), (115, 101), (115, 102), (115, 103), (115, 104), (115, 105), (115, 107), (116, 90), (116, 91), (116, 92), (116, 93), (116, 94), (116, 95), (116, 96), (116, 97), (116, 98), (116, 99), (116, 100), (116, 101), (116, 102), (116, 103), (116, 104), (116, 105), (116, 107), (117, 90), (117, 92), (117, 93), (117, 94), (117, 95), (117, 96), (117, 97), (117, 98), (117, 99), (117, 100),
(117, 101), (117, 102), (117, 103), (117, 104), (117, 105), (117, 107), (118, 90), (118, 92), (118, 93), (118, 94), (118, 95), (118, 96), (118, 97), (118, 98), (118, 99), (118, 100), (118, 101), (118, 102), (118, 103), (118, 104), (118, 105), (118, 106), (118, 108), (119, 90), (119, 92), (119, 93), (119, 94), (119, 95), (119, 96), (119, 97), (119, 98), (119, 99), (119, 100), (119, 101), (119, 102), (119, 103), (119, 104), (119, 105), (119, 106), (119, 108), (120, 90), (120, 92), (120, 93), (120, 94), (120, 95), (120, 96), (120, 97), (120, 98), (120, 99), (120, 100), (120, 101), (120, 102), (120, 103), (120, 104), (120, 105), (120, 106), (120, 107), (120, 109), (121, 90), (121, 92), (121, 93), (121, 94), (121, 95), (121, 96), (121, 97), (121, 98), (121, 99), (121, 100), (121, 101), (121, 102), (121, 103), (121, 104),
(121, 105), (121, 106), (121, 107), (121, 109), (122, 90), (122, 92), (122, 93), (122, 94), (122, 95), (122, 96), (122, 97), (122, 98), (122, 99), (122, 100), (122, 101), (122, 102), (122, 103), (122, 104), (122, 105), (122, 106), (122, 107), (122, 108), (122, 110), (123, 91), (123, 93), (123, 94), (123, 95), (123, 96), (123, 97), (123, 98), (123, 99), (123, 100), (123, 101), (123, 102), (123, 103), (123, 104), (123, 105), (123, 106), (123, 107), (123, 108), (123, 110), (124, 91), (124, 94), (124, 95), (124, 96), (124, 97), (124, 98), (124, 99), (124, 100), (124, 101), (124, 102), (124, 103), (124, 104), (124, 105), (124, 106), (124, 107), (124, 108), (124, 109), (124, 111), (125, 92), (125, 94), (125, 95), (125, 96), (125, 97), (125, 98), (125, 99), (125, 100), (125, 101), (125, 102), (125, 103), (125, 104), (125, 105),
(125, 106), (125, 107), (125, 108), (125, 109), (125, 111), (126, 93), (126, 95), (126, 96), (126, 97), (126, 98), (126, 99), (126, 100), (126, 101), (126, 102), (126, 103), (126, 104), (126, 105), (126, 106), (126, 107), (126, 108), (126, 111), (127, 94), (127, 96), (127, 97), (127, 98), (127, 99), (127, 100), (127, 101), (127, 102), (127, 103), (127, 104), (127, 105), (127, 110), (128, 95), (128, 97), (128, 98), (128, 99), (128, 100), (128, 101), (128, 102), (128, 106), (128, 108), (129, 95), (129, 97), (129, 98), (129, 99), (129, 103), (129, 105), (130, 96), (130, 100), (130, 102), (131, 99), (268, 97), (268, 99), (269, 96), (269, 100), (269, 101), (269, 102), (270, 95), (270, 97), (270, 98), (270, 99), (270, 103), (270, 104), (270, 105), (271, 95), (271, 97), (271, 98), (271, 99), (271, 100), (271, 101), (271, 102),
(271, 108), (272, 94), (272, 96), (272, 97), (272, 98), (272, 99), (272, 100), (272, 101), (272, 102), (272, 103), (272, 104), (272, 105), (272, 106), (272, 110), (273, 93), (273, 95), (273, 96), (273, 97), (273, 98), (273, 99), (273, 100), (273, 101), (273, 102), (273, 103), (273, 104), (273, 105), (273, 106), (273, 107), (273, 108), (273, 111), (274, 92), (274, 94), (274, 95), (274, 96), (274, 97), (274, 98), (274, 99), (274, 100), (274, 101), (274, 102), (274, 103), (274, 104), (274, 105), (274, 106), (274, 107), (274, 108), (274, 109), (274, 111), (275, 91), (275, 94), (275, 95), (275, 96), (275, 97), (275, 98), (275, 99), (275, 100), (275, 101), (275, 102), (275, 103), (275, 104), (275, 105), (275, 106), (275, 107), (275, 108), (275, 109), (275, 111), (276, 91), (276, 93), (276, 94), (276, 95), (276, 96), (276, 97),
(276, 98), (276, 99), (276, 100), (276, 101), (276, 102), (276, 103), (276, 104), (276, 105), (276, 106), (276, 107), (276, 108), (276, 110), (277, 90), (277, 92), (277, 93), (277, 94), (277, 95), (277, 96), (277, 97), (277, 98), (277, 99), (277, 100), (277, 101), (277, 102), (277, 103), (277, 104), (277, 105), (277, 106), (277, 107), (277, 108), (277, 110), (278, 90), (278, 92), (278, 93), (278, 94), (278, 95), (278, 96), (278, 97), (278, 98), (278, 99), (278, 100), (278, 101), (278, 102), (278, 103), (278, 104), (278, 105), (278, 106), (278, 107), (278, 109), (279, 90), (279, 92), (279, 93), (279, 94), (279, 95), (279, 96), (279, 97), (279, 98), (279, 99), (279, 100), (279, 101), (279, 102), (279, 103), (279, 104), (279, 105), (279, 106), (279, 107), (279, 109), (280, 90), (280, 92), (280, 93), (280, 94), (280, 95),
(280, 96), (280, 97), (280, 98), (280, 99), (280, 100), (280, 101), (280, 102), (280, 103), (280, 104), (280, 105), (280, 106), (280, 108), (281, 90), (281, 92), (281, 93), (281, 94), (281, 95), (281, 96), (281, 97), (281, 98), (281, 99), (281, 100), (281, 101), (281, 102), (281, 103), (281, 104), (281, 105), (281, 106), (281, 108), (282, 90), (282, 92), (282, 93), (282, 94), (282, 95), (282, 96), (282, 97), (282, 98), (282, 99), (282, 100), (282, 101), (282, 102), (282, 103), (282, 104), (282, 105), (282, 107), (283, 91), (283, 93), (283, 94), (283, 95), (283, 96), (283, 97), (283, 98), (283, 99), (283, 100), (283, 101), (283, 102), (283, 103), (283, 104), (283, 105), (283, 107), (284, 91), (284, 93), (284, 94), (284, 95), (284, 96), (284, 97), (284, 98), (284, 99), (284, 100), (284, 101), (284, 102), (284, 103),
(284, 104), (284, 105), (284, 107), (285, 91), (285, 93), (285, 94), (285, 95), (285, 96), (285, 97), (285, 98), (285, 99), (285, 100), (285, 101), (285, 102), (285, 103), (285, 104), (285, 105), (285, 107), (286, 92), (286, 94), (286, 95), (286, 96), (286, 97), (286, 98), (286, 99), (286, 100), (286, 101), (286, 102), (286, 103), (286, 104), (286, 105), (286, 107), (287, 92), (287, 94), (287, 95), (287, 96), (287, 97), (287, 98), (287, 99), (287, 100), (287, 101), (287, 102), (287, 103), (287, 104), (287, 105), (287, 106), (287, 108), (288, 93), (288, 95), (288, 96), (288, 97), (288, 98), (288, 99), (288, 100), (288, 101), (288, 102), (288, 103), (288, 104), (288, 105), (288, 106), (288, 107), (288, 109), (289, 93), (289, 95), (289, 96), (289, 97), (289, 98), (289, 99), (289, 100), (289, 101), (289, 102), (289, 103),
(289, 104), (289, 105), (289, 106), (289, 107), (289, 110), (289, 111), (289, 112), (290, 94), (290, 96), (290, 97), (290, 98), (290, 99), (290, 100), (290, 101), (290, 102), (290, 103), (290, 104), (290, 105), (290, 106), (290, 107), (290, 108), (290, 109), (290, 113), (290, 114), (291, 95), (291, 97), (291, 98), (291, 99), (291, 100), (291, 101), (291, 102), (291, 103), (291, 104), (291, 105), (291, 106), (291, 107), (291, 108), (291, 109), (291, 110), (291, 111), (291, 112), (291, 114), (292, 96), (292, 98), (292, 99), (292, 100), (292, 101), (292, 102), (292, 103), (292, 104), (292, 105), (292, 106), (292, 107), (292, 108), (292, 109), (292, 110), (292, 111), (292, 112), (292, 114), (293, 96), (293, 98), (293, 99), (293, 100), (293, 101), (293, 102), (293, 103), (293, 104), (293, 105), (293, 106), (293, 107), (293, 108), (293, 109),
(293, 110), (293, 111), (293, 112), (293, 114), (294, 97), (294, 99), (294, 100), (294, 101), (294, 102), (294, 103), (294, 104), (294, 105), (294, 106), (294, 107), (294, 108), (294, 109), (294, 110), (294, 111), (294, 112), (294, 114), (295, 98), (295, 100), (295, 101), (295, 102), (295, 103), (295, 104), (295, 105), (295, 106), (295, 107), (295, 108), (295, 109), (295, 110), (295, 111), (295, 112), (295, 114), (296, 99), (296, 101), (296, 102), (296, 103), (296, 104), (296, 105), (296, 106), (296, 107), (296, 108), (296, 109), (296, 110), (296, 111), (296, 112), (296, 114), (297, 100), (297, 102), (297, 103), (297, 104), (297, 105), (297, 106), (297, 107), (297, 108), (297, 109), (297, 110), (297, 111), (297, 112), (297, 114), (298, 101), (298, 103), (298, 104), (298, 105), (298, 106), (298, 107), (298, 108), (298, 109), (298, 110), (298, 111),
(298, 112), (298, 114), (299, 102), (299, 105), (299, 106), (299, 107), (299, 108), (299, 109), (299, 110), (299, 111), (299, 112), (299, 114), (300, 103), (300, 106), (300, 107), (300, 108), (300, 109), (300, 110), (300, 111), (300, 112), (300, 114), (301, 104), (301, 107), (301, 108), (301, 109), (301, 110), (301, 111), (301, 112), (301, 114), (302, 106), (302, 114), (303, 107), (303, 109), (303, 110), (303, 111), (303, 112), (303, 114), )
coordinates_4E00FF = ((132, 82),
(132, 85), (133, 80), (133, 85), (134, 79), (134, 82), (134, 83), (134, 85), (135, 78), (135, 80), (135, 81), (135, 82), (135, 83), (135, 85), (136, 77), (136, 79), (136, 80), (136, 81), (136, 82), (136, 83), (136, 84), (136, 86), (137, 76), (137, 78), (137, 79), (137, 80), (137, 81), (137, 82), (137, 83), (137, 84), (137, 86), (138, 75), (138, 77), (138, 78), (138, 79), (138, 80), (138, 81), (138, 82), (138, 83), (138, 84), (138, 85), (138, 87), (139, 75), (139, 77), (139, 78), (139, 79), (139, 80), (139, 81), (139, 82), (139, 83), (139, 84), (139, 85), (139, 86), (139, 88), (140, 74), (140, 76), (140, 77), (140, 78), (140, 79), (140, 80), (140, 81), (140, 82), (140, 83), (140, 84), (140, 85), (140, 86), (140, 88), (141, 74), (141, 76), (141, 77), (141, 78), (141, 79), (141, 80),
(141, 81), (141, 82), (141, 83), (141, 84), (141, 85), (141, 86), (141, 87), (141, 89), (142, 73), (142, 75), (142, 76), (142, 77), (142, 78), (142, 79), (142, 80), (142, 81), (142, 82), (142, 83), (142, 84), (142, 85), (142, 86), (142, 87), (142, 88), (142, 90), (143, 73), (143, 75), (143, 76), (143, 77), (143, 78), (143, 79), (143, 80), (143, 81), (143, 82), (143, 83), (143, 84), (143, 85), (143, 86), (143, 87), (143, 88), (143, 89), (143, 91), (144, 72), (144, 74), (144, 75), (144, 76), (144, 77), (144, 78), (144, 79), (144, 80), (144, 81), (144, 82), (144, 83), (144, 84), (144, 85), (144, 86), (144, 87), (144, 88), (144, 89), (144, 91), (145, 72), (145, 74), (145, 75), (145, 76), (145, 77), (145, 78), (145, 79), (145, 80), (145, 81), (145, 82), (145, 83), (145, 84), (145, 85),
(145, 86), (145, 87), (145, 88), (145, 89), (145, 90), (145, 92), (146, 71), (146, 73), (146, 74), (146, 75), (146, 76), (146, 77), (146, 78), (146, 79), (146, 80), (146, 81), (146, 82), (146, 83), (146, 84), (146, 85), (146, 86), (146, 87), (146, 88), (146, 89), (146, 90), (146, 91), (146, 93), (147, 71), (147, 73), (147, 74), (147, 75), (147, 76), (147, 77), (147, 78), (147, 79), (147, 80), (147, 81), (147, 82), (147, 83), (147, 84), (147, 85), (147, 86), (147, 87), (147, 88), (147, 89), (147, 90), (147, 91), (147, 93), (148, 71), (148, 73), (148, 74), (148, 75), (148, 76), (148, 77), (148, 78), (148, 79), (148, 80), (148, 81), (148, 82), (148, 83), (148, 84), (148, 85), (148, 86), (148, 87), (148, 88), (148, 89), (148, 90), (148, 91), (148, 92), (148, 94), (149, 70), (149, 72),
(149, 73), (149, 74), (149, 75), (149, 76), (149, 77), (149, 78), (149, 79), (149, 80), (149, 81), (149, 82), (149, 83), (149, 84), (149, 85), (149, 86), (149, 87), (149, 88), (149, 89), (149, 90), (149, 91), (149, 92), (149, 94), (150, 70), (150, 72), (150, 73), (150, 74), (150, 75), (150, 76), (150, 77), (150, 78), (150, 79), (150, 80), (150, 81), (150, 82), (150, 83), (150, 84), (150, 85), (150, 86), (150, 87), (150, 88), (150, 89), (150, 90), (150, 91), (150, 92), (150, 94), (151, 70), (151, 72), (151, 73), (151, 74), (151, 75), (151, 76), (151, 77), (151, 78), (151, 79), (151, 80), (151, 81), (151, 82), (151, 83), (151, 84), (151, 85), (151, 86), (151, 87), (151, 88), (151, 89), (151, 90), (151, 91), (151, 94), (152, 69), (152, 71), (152, 72), (152, 73), (152, 74), (152, 75),
(152, 76), (152, 77), (152, 78), (152, 79), (152, 80), (152, 81), (152, 82), (152, 83), (152, 84), (152, 85), (152, 86), (152, 87), (152, 88), (152, 89), (152, 90), (152, 93), (153, 69), (153, 71), (153, 72), (153, 73), (153, 74), (153, 75), (153, 76), (153, 77), (153, 78), (153, 79), (153, 80), (153, 81), (153, 82), (153, 83), (153, 84), (153, 85), (153, 86), (153, 87), (153, 88), (153, 89), (153, 90), (153, 92), (154, 69), (154, 71), (154, 72), (154, 73), (154, 74), (154, 75), (154, 76), (154, 77), (154, 78), (154, 79), (154, 80), (154, 81), (154, 82), (154, 83), (154, 84), (154, 85), (154, 86), (154, 87), (154, 88), (154, 89), (154, 91), (155, 68), (155, 70), (155, 71), (155, 72), (155, 73), (155, 74), (155, 75), (155, 76), (155, 77), (155, 78), (155, 79), (155, 80), (155, 81),
(155, 82), (155, 83), (155, 84), (155, 85), (155, 86), (155, 87), (155, 88), (155, 90), (156, 68), (156, 70), (156, 71), (156, 72), (156, 73), (156, 74), (156, 75), (156, 76), (156, 77), (156, 78), (156, 79), (156, 80), (156, 81), (156, 82), (156, 83), (156, 84), (156, 85), (156, 86), (156, 87), (156, 89), (157, 68), (157, 70), (157, 71), (157, 72), (157, 73), (157, 74), (157, 75), (157, 76), (157, 77), (157, 78), (157, 79), (157, 80), (157, 81), (157, 82), (157, 83), (157, 84), (157, 85), (157, 86), (157, 87), (157, 89), (158, 68), (158, 70), (158, 71), (158, 72), (158, 73), (158, 74), (158, 75), (158, 76), (158, 77), (158, 78), (158, 79), (158, 80), (158, 81), (158, 82), (158, 83), (158, 84), (158, 85), (158, 86), (158, 88), (159, 67), (159, 69), (159, 70), (159, 71), (159, 72),
(159, 73), (159, 74), (159, 75), (159, 76), (159, 77), (159, 78), (159, 79), (159, 80), (159, 81), (159, 82), (159, 83), (159, 84), (159, 85), (159, 87), (160, 67), (160, 69), (160, 70), (160, 71), (160, 72), (160, 73), (160, 74), (160, 75), (160, 76), (160, 77), (160, 78), (160, 79), (160, 80), (160, 81), (160, 82), (160, 83), (160, 84), (160, 85), (160, 87), (161, 67), (161, 69), (161, 70), (161, 71), (161, 72), (161, 73), (161, 74), (161, 75), (161, 76), (161, 77), (161, 78), (161, 79), (161, 80), (161, 81), (161, 82), (161, 83), (161, 84), (161, 86), (162, 66), (162, 68), (162, 69), (162, 70), (162, 71), (162, 72), (162, 73), (162, 74), (162, 75), (162, 76), (162, 77), (162, 78), (162, 79), (162, 80), (162, 81), (162, 82), (162, 83), (162, 84), (162, 86), (163, 66), (163, 68),
(163, 69), (163, 70), (163, 71), (163, 72), (163, 73), (163, 74), (163, 75), (163, 76), (163, 77), (163, 78), (163, 79), (163, 80), (163, 81), (163, 82), (163, 83), (163, 85), (164, 66), (164, 68), (164, 69), (164, 70), (164, 71), (164, 72), (164, 73), (164, 74), (164, 75), (164, 76), (164, 77), (164, 78), (164, 79), (164, 80), (164, 81), (164, 82), (164, 83), (164, 85), (165, 66), (165, 68), (165, 69), (165, 70), (165, 71), (165, 72), (165, 73), (165, 74), (165, 75), (165, 76), (165, 77), (165, 78), (165, 79), (165, 80), (165, 81), (165, 82), (165, 84), (166, 65), (166, 67), (166, 68), (166, 69), (166, 70), (166, 71), (166, 72), (166, 73), (166, 74), (166, 75), (166, 76), (166, 77), (166, 78), (166, 79), (166, 80), (166, 81), (166, 82), (166, 84), (167, 65), (167, 67), (167, 68),
(167, 69), (167, 70), (167, 71), (167, 72), (167, 73), (167, 74), (167, 75), (167, 76), (167, 77), (167, 78), (167, 79), (167, 80), (167, 81), (167, 83), (168, 65), (168, 67), (168, 68), (168, 69), (168, 70), (168, 71), (168, 72), (168, 73), (168, 74), (168, 75), (168, 76), (168, 77), (168, 78), (168, 79), (168, 80), (168, 81), (168, 83), (169, 64), (169, 66), (169, 67), (169, 68), (169, 69), (169, 70), (169, 71), (169, 72), (169, 73), (169, 74), (169, 75), (169, 76), (169, 77), (169, 78), (169, 79), (169, 80), (169, 82), (170, 64), (170, 66), (170, 67), (170, 68), (170, 69), (170, 70), (170, 71), (170, 72), (170, 73), (170, 74), (170, 75), (170, 76), (170, 77), (170, 78), (170, 79), (170, 80), (170, 82), (171, 64), (171, 66), (171, 67), (171, 68), (171, 69), (171, 70), (171, 71),
(171, 72), (171, 73), (171, 74), (171, 75), (171, 76), (171, 77), (171, 78), (171, 79), (171, 81), (172, 63), (172, 65), (172, 66), (172, 67), (172, 68), (172, 69), (172, 70), (172, 71), (172, 72), (172, 73), (172, 74), (172, 75), (172, 76), (172, 77), (172, 78), (172, 79), (172, 81), (173, 63), (173, 65), (173, 66), (173, 67), (173, 68), (173, 69), (173, 70), (173, 71), (173, 72), (173, 73), (173, 74), (173, 75), (173, 76), (173, 77), (173, 78), (173, 79), (173, 81), (174, 62), (174, 64), (174, 65), (174, 66), (174, 67), (174, 68), (174, 69), (174, 70), (174, 71), (174, 72), (174, 73), (174, 74), (174, 75), (174, 76), (174, 77), (174, 78), (174, 80), (175, 62), (175, 64), (175, 65), (175, 66), (175, 67), (175, 68), (175, 69), (175, 70), (175, 71), (175, 72), (175, 73), (175, 74),
(175, 75), (175, 76), (175, 77), (175, 78), (175, 80), (176, 62), (176, 64), (176, 65), (176, 66), (176, 67), (176, 68), (176, 69), (176, 70), (176, 71), (176, 72), (176, 73), (176, 74), (176, 75), (176, 76), (176, 77), (176, 79), (177, 63), (177, 65), (177, 66), (177, 67), (177, 68), (177, 69), (177, 70), (177, 71), (177, 72), (177, 73), (177, 74), (177, 75), (177, 76), (177, 77), (177, 79), (178, 63), (178, 65), (178, 66), (178, 67), (178, 68), (178, 69), (178, 70), (178, 71), (178, 72), (178, 73), (178, 74), (178, 75), (178, 79), (179, 63), (179, 75), (179, 76), (179, 77), (179, 79), (180, 63), (180, 65), (180, 66), (180, 67), (180, 68), (180, 69), (180, 70), (180, 71), (180, 72), (180, 73), (180, 74), (180, 75), (219, 63), (219, 65), (219, 66), (219, 67), (219, 68), (219, 69),
(219, 70), (219, 71), (219, 72), (219, 73), (219, 74), (219, 75), (219, 76), (220, 63), (220, 76), (220, 77), (220, 79), (221, 63), (221, 65), (221, 66), (221, 67), (221, 68), (221, 69), (221, 70), (221, 71), (221, 72), (221, 73), (221, 74), (221, 75), (221, 76), (221, 79), (222, 63), (222, 65), (222, 66), (222, 67), (222, 68), (222, 69), (222, 70), (222, 71), (222, 72), (222, 73), (222, 74), (222, 75), (222, 76), (222, 77), (222, 79), (223, 62), (223, 64), (223, 65), (223, 66), (223, 67), (223, 68), (223, 69), (223, 70), (223, 71), (223, 72), (223, 73), (223, 74), (223, 75), (223, 76), (223, 77), (223, 78), (223, 79), (223, 80), (224, 62), (224, 64), (224, 65), (224, 66), (224, 67), (224, 68), (224, 69), (224, 70), (224, 71), (224, 72), (224, 73), (224, 74), (224, 75), (224, 76),
(224, 77), (224, 78), (224, 80), (225, 62), (225, 64), (225, 65), (225, 66), (225, 67), (225, 68), (225, 69), (225, 70), (225, 71), (225, 72), (225, 73), (225, 74), (225, 75), (225, 76), (225, 77), (225, 78), (225, 80), (226, 63), (226, 65), (226, 66), (226, 67), (226, 68), (226, 69), (226, 70), (226, 71), (226, 72), (226, 73), (226, 74), (226, 75), (226, 76), (226, 77), (226, 78), (226, 79), (226, 81), (227, 63), (227, 65), (227, 66), (227, 67), (227, 68), (227, 69), (227, 70), (227, 71), (227, 72), (227, 73), (227, 74), (227, 75), (227, 76), (227, 77), (227, 78), (227, 79), (227, 81), (228, 64), (228, 66), (228, 67), (228, 68), (228, 69), (228, 70), (228, 71), (228, 72), (228, 73), (228, 74), (228, 75), (228, 76), (228, 77), (228, 78), (228, 79), (228, 81), (229, 64), (229, 66),
(229, 67), (229, 68), (229, 69), (229, 70), (229, 71), (229, 72), (229, 73), (229, 74), (229, 75), (229, 76), (229, 77), (229, 78), (229, 79), (229, 80), (229, 82), (230, 64), (230, 66), (230, 67), (230, 68), (230, 69), (230, 70), (230, 71), (230, 72), (230, 73), (230, 74), (230, 75), (230, 76), (230, 77), (230, 78), (230, 79), (230, 80), (230, 82), (231, 65), (231, 67), (231, 68), (231, 69), (231, 70), (231, 71), (231, 72), (231, 73), (231, 74), (231, 75), (231, 76), (231, 77), (231, 78), (231, 79), (231, 80), (231, 81), (231, 83), (232, 65), (232, 67), (232, 68), (232, 69), (232, 70), (232, 71), (232, 72), (232, 73), (232, 74), (232, 75), (232, 76), (232, 77), (232, 78), (232, 79), (232, 80), (232, 81), (232, 83), (233, 65), (233, 67), (233, 68), (233, 69), (233, 70), (233, 71),
(233, 72), (233, 73), (233, 74), (233, 75), (233, 76), (233, 77), (233, 78), (233, 79), (233, 80), (233, 81), (233, 82), (233, 84), (234, 66), (234, 68), (234, 69), (234, 70), (234, 71), (234, 72), (234, 73), (234, 74), (234, 75), (234, 76), (234, 77), (234, 78), (234, 79), (234, 80), (234, 81), (234, 82), (234, 84), (235, 66), (235, 68), (235, 69), (235, 70), (235, 71), (235, 72), (235, 73), (235, 74), (235, 75), (235, 76), (235, 77), (235, 78), (235, 79), (235, 80), (235, 81), (235, 82), (235, 83), (235, 85), (236, 66), (236, 68), (236, 69), (236, 70), (236, 71), (236, 72), (236, 73), (236, 74), (236, 75), (236, 76), (236, 77), (236, 78), (236, 79), (236, 80), (236, 81), (236, 82), (236, 83), (236, 85), (237, 66), (237, 68), (237, 69), (237, 70), (237, 71), (237, 72), (237, 73),
(237, 74), (237, 75), (237, 76), (237, 77), (237, 78), (237, 79), (237, 80), (237, 81), (237, 82), (237, 83), (237, 84), (237, 86), (238, 67), (238, 69), (238, 70), (238, 71), (238, 72), (238, 73), (238, 74), (238, 75), (238, 76), (238, 77), (238, 78), (238, 79), (238, 80), (238, 81), (238, 82), (238, 83), (238, 84), (238, 86), (239, 67), (239, 69), (239, 70), (239, 71), (239, 72), (239, 73), (239, 74), (239, 75), (239, 76), (239, 77), (239, 78), (239, 79), (239, 80), (239, 81), (239, 82), (239, 83), (239, 84), (239, 85), (239, 87), (240, 67), (240, 69), (240, 70), (240, 71), (240, 72), (240, 73), (240, 74), (240, 75), (240, 76), (240, 77), (240, 78), (240, 79), (240, 80), (240, 81), (240, 82), (240, 83), (240, 84), (240, 85), (240, 87), (241, 68), (241, 70), (241, 71), (241, 72),
(241, 73), (241, 74), (241, 75), (241, 76), (241, 77), (241, 78), (241, 79), (241, 80), (241, 81), (241, 82), (241, 83), (241, 84), (241, 85), (241, 86), (241, 88), (242, 68), (242, 70), (242, 71), (242, 72), (242, 73), (242, 74), (242, 75), (242, 76), (242, 77), (242, 78), (242, 79), (242, 80), (242, 81), (242, 82), (242, 83), (242, 84), (242, 85), (242, 86), (242, 87), (242, 89), (243, 68), (243, 70), (243, 71), (243, 72), (243, 73), (243, 74), (243, 75), (243, 76), (243, 77), (243, 78), (243, 79), (243, 80), (243, 81), (243, 82), (243, 83), (243, 84), (243, 85), (243, 86), (243, 87), (243, 89), (244, 68), (244, 70), (244, 71), (244, 72), (244, 73), (244, 74), (244, 75), (244, 76), (244, 77), (244, 78), (244, 79), (244, 80), (244, 81), (244, 82), (244, 83), (244, 84), (244, 85),
(244, 86), (244, 87), (244, 88), (244, 90), (245, 69), (245, 71), (245, 72), (245, 73), (245, 74), (245, 75), (245, 76), (245, 77), (245, 78), (245, 79), (245, 80), (245, 81), (245, 82), (245, 83), (245, 84), (245, 85), (245, 86), (245, 87), (245, 88), (245, 89), (245, 91), (246, 69), (246, 71), (246, 72), (246, 73), (246, 74), (246, 75), (246, 76), (246, 77), (246, 78), (246, 79), (246, 80), (246, 81), (246, 82), (246, 83), (246, 84), (246, 85), (246, 86), (246, 87), (246, 88), (246, 89), (246, 90), (246, 92), (247, 69), (247, 71), (247, 72), (247, 73), (247, 74), (247, 75), (247, 76), (247, 77), (247, 78), (247, 79), (247, 80), (247, 81), (247, 82), (247, 83), (247, 84), (247, 85), (247, 86), (247, 87), (247, 88), (247, 89), (247, 90), (247, 91), (247, 93), (248, 70), (248, 72),
(248, 73), (248, 74), (248, 75), (248, 76), (248, 77), (248, 78), (248, 79), (248, 80), (248, 81), (248, 82), (248, 83), (248, 84), (248, 85), (248, 86), (248, 87), (248, 88), (248, 89), (248, 90), (248, 91), (248, 92), (248, 94), (249, 70), (249, 72), (249, 73), (249, 74), (249, 75), (249, 76), (249, 77), (249, 78), (249, 79), (249, 80), (249, 81), (249, 82), (249, 83), (249, 84), (249, 85), (249, 86), (249, 87), (249, 88), (249, 89), (249, 90), (249, 91), (249, 92), (249, 94), (250, 70), (250, 72), (250, 73), (250, 74), (250, 75), (250, 76), (250, 77), (250, 78), (250, 79), (250, 80), (250, 81), (250, 82), (250, 83), (250, 84), (250, 85), (250, 86), (250, 87), (250, 88), (250, 89), (250, 90), (250, 91), (250, 92), (250, 94), (251, 71), (251, 73), (251, 74), (251, 75), (251, 76),
(251, 77), (251, 78), (251, 79), (251, 80), (251, 81), (251, 82), (251, 83), (251, 84), (251, 85), (251, 86), (251, 87), (251, 88), (251, 89), (251, 90), (251, 91), (251, 92), (251, 94), (252, 71), (252, 73), (252, 74), (252, 75), (252, 76), (252, 77), (252, 78), (252, 79), (252, 80), (252, 81), (252, 82), (252, 83), (252, 84), (252, 85), (252, 86), (252, 87), (252, 88), (252, 89), (252, 90), (252, 91), (252, 93), (253, 71), (253, 73), (253, 74), (253, 75), (253, 76), (253, 77), (253, 78), (253, 79), (253, 80), (253, 81), (253, 82), (253, 83), (253, 84), (253, 85), (253, 86), (253, 87), (253, 88), (253, 89), (253, 90), (253, 91), (253, 93), (254, 72), (254, 74), (254, 75), (254, 76), (254, 77), (254, 78), (254, 79), (254, 80), (254, 81), (254, 82), (254, 83), (254, 84), (254, 85),
(254, 86), (254, 87), (254, 88), (254, 89), (254, 90), (254, 92), (255, 72), (255, 74), (255, 75), (255, 76), (255, 77), (255, 78), (255, 79), (255, 80), (255, 81), (255, 82), (255, 83), (255, 84), (255, 85), (255, 86), (255, 87), (255, 88), (255, 89), (255, 91), (256, 73), (256, 75), (256, 76), (256, 77), (256, 78), (256, 79), (256, 80), (256, 81), (256, 82), (256, 83), (256, 84), (256, 85), (256, 86), (256, 87), (256, 88), (256, 89), (256, 91), (257, 73), (257, 75), (257, 76), (257, 77), (257, 78), (257, 79), (257, 80), (257, 81), (257, 82), (257, 83), (257, 84), (257, 85), (257, 86), (257, 87), (257, 88), (257, 90), (258, 74), (258, 76), (258, 77), (258, 78), (258, 79), (258, 80), (258, 81), (258, 82), (258, 83), (258, 84), (258, 85), (258, 86), (258, 87), (258, 89), (259, 74),
(259, 76), (259, 77), (259, 78), (259, 79), (259, 80), (259, 81), (259, 82), (259, 83), (259, 84), (259, 85), (259, 86), (259, 88), (260, 75), (260, 77), (260, 78), (260, 79), (260, 80), (260, 81), (260, 82), (260, 83), (260, 84), (260, 85), (260, 86), (260, 88), (261, 75), (261, 77), (261, 78), (261, 79), (261, 80), (261, 81), (261, 82), (261, 83), (261, 84), (261, 85), (261, 87), (262, 76), (262, 78), (262, 79), (262, 80), (262, 81), (262, 82), (262, 83), (262, 84), (262, 86), (263, 77), (263, 79), (263, 80), (263, 81), (263, 82), (263, 83), (263, 84), (263, 86), (264, 78), (264, 80), (264, 81), (264, 82), (264, 83), (264, 85), (265, 79), (265, 82), (265, 83), (265, 85), (266, 80), (266, 85), (267, 82), (267, 85), )
coordinates_00007F = ((168, 155),
(169, 155), (169, 158), (170, 156), (170, 159), (171, 156), (171, 158), (171, 160), (172, 157), (172, 159), (172, 161), (173, 158), (173, 160), (173, 162), (174, 158), (174, 161), (175, 159), (175, 161), (175, 162), (175, 165), (176, 160), (176, 162), (176, 163), (176, 166), (177, 161), (177, 164), (177, 165), (177, 167), (178, 162), (178, 169), (179, 164), (179, 166), (179, 167), (179, 168), (179, 169), (179, 171), (220, 164), (220, 166), (220, 167), (220, 168), (220, 169), (220, 171), (221, 162), (221, 169), (222, 161), (222, 164), (222, 167), (223, 160), (223, 162), (223, 163), (223, 166), (224, 159), (224, 161), (224, 162), (224, 165), (225, 158), (225, 160), (225, 161), (225, 163), (226, 158), (226, 160), (226, 162), (227, 157), (227, 159), (227, 161), (228, 156), (228, 158), (228, 160), (229, 156), (229, 159), (230, 155), (230, 158), (231, 155),
)
coordinates_27007F = ((182, 64),
(182, 66), (182, 67), (182, 68), (182, 69), (182, 70), (182, 71), (182, 72), (182, 73), (182, 74), (182, 75), (182, 76), (182, 77), (182, 78), (182, 80), (182, 98), (182, 100), (183, 64), (183, 82), (183, 95), (183, 96), (183, 97), (183, 102), (184, 64), (184, 66), (184, 67), (184, 68), (184, 69), (184, 70), (184, 71), (184, 72), (184, 73), (184, 74), (184, 75), (184, 76), (184, 77), (184, 78), (184, 79), (184, 80), (184, 83), (184, 93), (184, 94), (184, 98), (184, 99), (184, 100), (184, 103), (185, 64), (185, 66), (185, 67), (185, 68), (185, 69), (185, 70), (185, 71), (185, 72), (185, 73), (185, 74), (185, 75), (185, 76), (185, 77), (185, 78), (185, 79), (185, 80), (185, 81), (185, 82), (185, 85), (185, 86), (185, 87), (185, 88), (185, 89), (185, 90), (185, 91), (185, 95), (185, 96),
(185, 97), (185, 98), (185, 99), (185, 100), (185, 101), (185, 102), (185, 105), (186, 64), (186, 66), (186, 67), (186, 68), (186, 69), (186, 70), (186, 71), (186, 72), (186, 73), (186, 74), (186, 75), (186, 76), (186, 77), (186, 78), (186, 79), (186, 80), (186, 81), (186, 82), (186, 83), (186, 92), (186, 93), (186, 94), (186, 95), (186, 96), (186, 97), (186, 98), (186, 99), (186, 100), (186, 101), (186, 102), (186, 103), (186, 107), (187, 64), (187, 66), (187, 67), (187, 68), (187, 69), (187, 70), (187, 71), (187, 72), (187, 73), (187, 74), (187, 75), (187, 76), (187, 77), (187, 78), (187, 79), (187, 80), (187, 81), (187, 82), (187, 83), (187, 84), (187, 85), (187, 86), (187, 87), (187, 88), (187, 89), (187, 90), (187, 91), (187, 92), (187, 93), (187, 94), (187, 95), (187, 96), (187, 97),
(187, 98), (187, 99), (187, 100), (187, 101), (187, 102), (187, 103), (187, 104), (187, 105), (187, 109), (188, 65), (188, 67), (188, 68), (188, 69), (188, 70), (188, 71), (188, 72), (188, 73), (188, 74), (188, 75), (188, 76), (188, 77), (188, 78), (188, 79), (188, 80), (188, 81), (188, 82), (188, 83), (188, 84), (188, 85), (188, 86), (188, 87), (188, 88), (188, 89), (188, 90), (188, 91), (188, 92), (188, 93), (188, 94), (188, 95), (188, 96), (188, 97), (188, 98), (188, 99), (188, 100), (188, 101), (188, 102), (188, 103), (188, 104), (188, 105), (188, 106), (188, 107), (188, 110), (188, 111), (189, 65), (189, 67), (189, 68), (189, 69), (189, 70), (189, 71), (189, 72), (189, 73), (189, 74), (189, 75), (189, 76), (189, 77), (189, 78), (189, 79), (189, 80), (189, 81), (189, 82), (189, 83), (189, 84),
(189, 85), (189, 86), (189, 87), (189, 88), (189, 89), (189, 90), (189, 91), (189, 92), (189, 93), (189, 94), (189, 95), (189, 96), (189, 97), (189, 98), (189, 99), (189, 100), (189, 101), (189, 102), (189, 103), (189, 104), (189, 105), (189, 106), (189, 107), (189, 108), (189, 109), (190, 65), (190, 67), (190, 68), (190, 69), (190, 70), (190, 71), (190, 72), (190, 73), (190, 74), (190, 75), (190, 76), (190, 77), (190, 78), (190, 79), (190, 80), (190, 81), (190, 82), (190, 83), (190, 84), (190, 85), (190, 86), (190, 87), (190, 88), (190, 89), (190, 90), (190, 91), (190, 92), (190, 93), (190, 94), (190, 95), (190, 96), (190, 97), (190, 98), (190, 99), (190, 100), (190, 101), (190, 102), (190, 103), (190, 104), (190, 105), (190, 106), (190, 107), (190, 108), (190, 109), (190, 111), (191, 66), (191, 68),
(191, 69), (191, 70), (191, 71), (191, 72), (191, 73), (191, 74), (191, 75), (191, 76), (191, 77), (191, 78), (191, 79), (191, 80), (191, 81), (191, 82), (191, 83), (191, 84), (191, 85), (191, 86), (191, 87), (191, 88), (191, 89), (191, 90), (191, 91), (191, 92), (191, 93), (191, 94), (191, 95), (191, 96), (191, 97), (191, 98), (191, 99), (191, 100), (191, 101), (191, 102), (191, 103), (191, 104), (191, 105), (191, 106), (191, 107), (191, 108), (191, 109), (191, 111), (192, 69), (192, 70), (192, 71), (192, 72), (192, 73), (192, 74), (192, 75), (192, 76), (192, 77), (192, 78), (192, 79), (192, 80), (192, 81), (192, 82), (192, 83), (192, 84), (192, 85), (192, 86), (192, 87), (192, 88), (192, 89), (192, 90), (192, 91), (192, 92), (192, 93), (192, 94), (192, 95), (192, 96), (192, 97), (192, 98),
(192, 99), (192, 100), (192, 101), (192, 102), (192, 103), (192, 104), (192, 105), (192, 106), (192, 107), (192, 108), (192, 109), (192, 111), (193, 67), (193, 70), (193, 71), (193, 72), (193, 73), (193, 74), (193, 75), (193, 76), (193, 77), (193, 78), (193, 79), (193, 80), (193, 81), (193, 82), (193, 83), (193, 84), (193, 85), (193, 86), (193, 87), (193, 88), (193, 89), (193, 90), (193, 91), (193, 92), (193, 93), (193, 94), (193, 95), (193, 96), (193, 97), (193, 98), (193, 99), (193, 100), (193, 101), (193, 102), (193, 103), (193, 104), (193, 105), (193, 106), (193, 107), (193, 108), (193, 110), (194, 68), (194, 69), (194, 72), (194, 73), (194, 74), (194, 75), (194, 76), (194, 77), (194, 78), (194, 79), (194, 80), (194, 81), (194, 82), (194, 83), (194, 84), (194, 85), (194, 86), (194, 87), (194, 88),
(194, 89), (194, 90), (194, 91), (194, 92), (194, 93), (194, 94), (194, 95), (194, 96), (194, 97), (194, 98), (194, 99), (194, 100), (194, 101), (194, 102), (194, 103), (194, 104), (194, 105), (194, 106), (194, 107), (194, 110), (195, 70), (195, 76), (195, 77), (195, 78), (195, 79), (195, 80), (195, 81), (195, 82), (195, 83), (195, 84), (195, 85), (195, 86), (195, 87), (195, 88), (195, 89), (195, 90), (195, 91), (195, 92), (195, 93), (195, 94), (195, 95), (195, 96), (195, 97), (195, 98), (195, 99), (195, 100), (195, 101), (195, 102), (195, 103), (195, 104), (195, 105), (195, 109), (196, 72), (196, 74), (196, 75), (196, 106), (196, 107), (197, 76), (197, 77), (197, 78), (197, 79), (197, 80), (197, 81), (197, 82), (197, 83), (197, 84), (197, 85), (197, 86), (197, 87), (197, 88), (197, 89), (197, 90),
(197, 91), (197, 92), (197, 93), (197, 94), (197, 95), (197, 96), (197, 97), (197, 98), (197, 99), (197, 100), (197, 101), (197, 102), (197, 103), (197, 104), (197, 105), (202, 75), (202, 76), (202, 77), (202, 78), (202, 79), (202, 80), (202, 81), (202, 82), (202, 83), (202, 84), (202, 85), (202, 86), (202, 87), (202, 88), (202, 89), (202, 90), (202, 91), (202, 92), (202, 93), (202, 94), (202, 95), (202, 96), (202, 97), (202, 98), (202, 99), (202, 100), (202, 101), (202, 102), (202, 103), (202, 105), (203, 72), (203, 74), (203, 106), (203, 107), (204, 70), (204, 75), (204, 76), (204, 77), (204, 78), (204, 79), (204, 80), (204, 81), (204, 82), (204, 83), (204, 84), (204, 85), (204, 86), (204, 87), (204, 88), (204, 89), (204, 90), (204, 91), (204, 92), (204, 93), (204, 94), (204, 95), (204, 96),
(204, 97), (204, 98), (204, 99), (204, 100), (204, 101), (204, 102), (204, 103), (204, 104), (204, 105), (204, 109), (205, 68), (205, 72), (205, 73), (205, 74), (205, 75), (205, 76), (205, 77), (205, 78), (205, 79), (205, 80), (205, 81), (205, 82), (205, 83), (205, 84), (205, 85), (205, 86), (205, 87), (205, 88), (205, 89), (205, 90), (205, 91), (205, 92), (205, 93), (205, 94), (205, 95), (205, 96), (205, 97), (205, 98), (205, 99), (205, 100), (205, 101), (205, 102), (205, 103), (205, 104), (205, 105), (205, 106), (205, 107), (205, 110), (206, 67), (206, 70), (206, 71), (206, 72), (206, 73), (206, 74), (206, 75), (206, 76), (206, 77), (206, 78), (206, 79), (206, 80), (206, 81), (206, 82), (206, 83), (206, 84), (206, 85), (206, 86), (206, 87), (206, 88), (206, 89), (206, 90), (206, 91), (206, 92),
(206, 93), (206, 94), (206, 95), (206, 96), (206, 97), (206, 98), (206, 99), (206, 100), (206, 101), (206, 102), (206, 103), (206, 104), (206, 105), (206, 106), (206, 107), (206, 108), (206, 110), (207, 66), (207, 69), (207, 70), (207, 71), (207, 72), (207, 73), (207, 74), (207, 75), (207, 76), (207, 77), (207, 78), (207, 79), (207, 80), (207, 81), (207, 82), (207, 83), (207, 84), (207, 85), (207, 86), (207, 87), (207, 88), (207, 89), (207, 90), (207, 91), (207, 92), (207, 93), (207, 94), (207, 95), (207, 96), (207, 97), (207, 98), (207, 99), (207, 100), (207, 101), (207, 102), (207, 103), (207, 104), (207, 105), (207, 106), (207, 107), (207, 108), (207, 109), (207, 111), (208, 66), (208, 68), (208, 69), (208, 70), (208, 71), (208, 72), (208, 73), (208, 74), (208, 75), (208, 76), (208, 77), (208, 78),
(208, 79), (208, 80), (208, 81), (208, 82), (208, 83), (208, 84), (208, 85), (208, 86), (208, 87), (208, 88), (208, 89), (208, 90), (208, 91), (208, 92), (208, 93), (208, 94), (208, 95), (208, 96), (208, 97), (208, 98), (208, 99), (208, 100), (208, 101), (208, 102), (208, 103), (208, 104), (208, 105), (208, 106), (208, 107), (208, 108), (208, 109), (208, 111), (209, 65), (209, 67), (209, 68), (209, 69), (209, 70), (209, 71), (209, 72), (209, 73), (209, 74), (209, 75), (209, 76), (209, 77), (209, 78), (209, 79), (209, 80), (209, 81), (209, 82), (209, 83), (209, 84), (209, 85), (209, 86), (209, 87), (209, 88), (209, 89), (209, 90), (209, 91), (209, 92), (209, 93), (209, 94), (209, 95), (209, 96), (209, 97), (209, 98), (209, 99), (209, 100), (209, 101), (209, 102), (209, 103), (209, 104), (209, 105),
(209, 106), (209, 107), (209, 108), (209, 109), (209, 111), (210, 65), (210, 67), (210, 68), (210, 69), (210, 70), (210, 71), (210, 72), (210, 73), (210, 74), (210, 75), (210, 76), (210, 77), (210, 78), (210, 79), (210, 80), (210, 81), (210, 82), (210, 83), (210, 84), (210, 85), (210, 86), (210, 87), (210, 88), (210, 89), (210, 90), (210, 91), (210, 92), (210, 93), (210, 94), (210, 95), (210, 96), (210, 97), (210, 98), (210, 99), (210, 100), (210, 101), (210, 102), (210, 103), (210, 104), (210, 105), (210, 106), (210, 107), (210, 108), (210, 109), (211, 65), (211, 67), (211, 68), (211, 69), (211, 70), (211, 71), (211, 72), (211, 73), (211, 74), (211, 75), (211, 76), (211, 77), (211, 78), (211, 79), (211, 80), (211, 81), (211, 82), (211, 83), (211, 84), (211, 85), (211, 86), (211, 87), (211, 88),
(211, 89), (211, 90), (211, 91), (211, 92), (211, 93), (211, 94), (211, 95), (211, 96), (211, 97), (211, 98), (211, 99), (211, 100), (211, 101), (211, 102), (211, 103), (211, 104), (211, 105), (211, 106), (211, 107), (211, 110), (211, 111), (212, 64), (212, 66), (212, 67), (212, 68), (212, 69), (212, 70), (212, 71), (212, 72), (212, 73), (212, 74), (212, 75), (212, 76), (212, 77), (212, 78), (212, 79), (212, 80), (212, 81), (212, 82), (212, 83), (212, 84), (212, 85), (212, 86), (212, 87), (212, 88), (212, 89), (212, 90), (212, 91), (212, 92), (212, 93), (212, 94), (212, 95), (212, 96), (212, 97), (212, 98), (212, 99), (212, 100), (212, 101), (212, 102), (212, 103), (212, 104), (212, 105), (212, 108), (212, 109), (213, 64), (213, 66), (213, 67), (213, 68), (213, 69), (213, 70), (213, 71), (213, 72),
(213, 73), (213, 74), (213, 75), (213, 76), (213, 77), (213, 78), (213, 79), (213, 80), (213, 81), (213, 82), (213, 83), (213, 93), (213, 94), (213, 95), (213, 96), (213, 97), (213, 98), (213, 99), (213, 100), (213, 101), (213, 102), (213, 103), (213, 106), (213, 107), (214, 64), (214, 66), (214, 67), (214, 68), (214, 69), (214, 70), (214, 71), (214, 72), (214, 73), (214, 74), (214, 75), (214, 76), (214, 77), (214, 78), (214, 79), (214, 80), (214, 81), (214, 82), (214, 85), (214, 86), (214, 87), (214, 88), (214, 89), (214, 90), (214, 91), (214, 92), (214, 95), (214, 96), (214, 97), (214, 98), (214, 99), (214, 100), (214, 101), (214, 102), (214, 105), (215, 64), (215, 67), (215, 68), (215, 69), (215, 70), (215, 71), (215, 72), (215, 73), (215, 74), (215, 75), (215, 76), (215, 77), (215, 78),
(215, 79), (215, 80), (215, 83), (215, 93), (215, 94), (215, 98), (215, 99), (215, 100), (215, 103), (216, 64), (216, 66), (216, 82), (216, 96), (216, 97), (216, 102), (217, 67), (217, 68), (217, 69), (217, 70), (217, 71), (217, 72), (217, 73), (217, 74), (217, 75), (217, 76), (217, 77), (217, 78), (217, 80), (217, 98), (217, 100), )
coordinates_7F3500 = ((146, 163),
(147, 160), (147, 162), (147, 163), (147, 164), (147, 165), (147, 167), (148, 158), (148, 163), (148, 168), (149, 157), (149, 160), (149, 161), (149, 162), (149, 163), (149, 164), (149, 165), (149, 166), (149, 167), (149, 170), (150, 156), (150, 158), (150, 159), (150, 160), (150, 161), (150, 162), (150, 163), (150, 164), (150, 165), (150, 166), (150, 167), (150, 168), (150, 171), (151, 156), (151, 158), (151, 159), (151, 160), (151, 161), (151, 162), (151, 163), (151, 164), (151, 165), (151, 166), (151, 167), (151, 168), (151, 169), (151, 172), (152, 155), (152, 157), (152, 158), (152, 159), (152, 160), (152, 161), (152, 162), (152, 163), (152, 164), (152, 165), (152, 166), (152, 167), (152, 168), (152, 169), (152, 170), (153, 154), (153, 156), (153, 157), (153, 158), (153, 159), (153, 160), (153, 161), (153, 162), (153, 163), (153, 164), (153, 165),
(153, 166), (153, 167), (153, 168), (153, 169), (153, 170), (153, 171), (153, 173), (154, 154), (154, 156), (154, 157), (154, 158), (154, 159), (154, 160), (154, 161), (154, 162), (154, 163), (154, 164), (154, 165), (154, 166), (154, 167), (154, 168), (154, 169), (154, 170), (154, 171), (154, 172), (154, 174), (155, 153), (155, 155), (155, 156), (155, 157), (155, 158), (155, 159), (155, 160), (155, 161), (155, 162), (155, 163), (155, 164), (155, 165), (155, 166), (155, 167), (155, 168), (155, 169), (155, 170), (155, 171), (155, 172), (155, 173), (155, 175), (156, 153), (156, 155), (156, 156), (156, 157), (156, 158), (156, 159), (156, 160), (156, 161), (156, 162), (156, 163), (156, 164), (156, 165), (156, 166), (156, 167), (156, 168), (156, 169), (156, 170), (156, 171), (156, 172), (156, 173), (156, 175), (157, 153), (157, 155), (157, 156), (157, 157),
(157, 158), (157, 159), (157, 160), (157, 161), (157, 162), (157, 163), (157, 164), (157, 165), (157, 166), (157, 167), (157, 168), (157, 169), (157, 170), (157, 171), (157, 172), (157, 173), (157, 174), (157, 176), (158, 153), (158, 155), (158, 156), (158, 157), (158, 158), (158, 159), (158, 160), (158, 161), (158, 162), (158, 163), (158, 164), (158, 165), (158, 166), (158, 167), (158, 168), (158, 169), (158, 170), (158, 171), (158, 172), (158, 173), (158, 174), (158, 176), (159, 154), (159, 156), (159, 157), (159, 158), (159, 159), (159, 160), (159, 161), (159, 162), (159, 163), (159, 164), (159, 165), (159, 166), (159, 167), (159, 168), (159, 169), (159, 170), (159, 171), (159, 172), (159, 173), (159, 174), (159, 175), (159, 177), (160, 154), (160, 156), (160, 157), (160, 158), (160, 159), (160, 160), (160, 161), (160, 162), (160, 163), (160, 164),
(160, 165), (160, 166), (160, 167), (160, 168), (160, 169), (160, 170), (160, 171), (160, 172), (160, 173), (160, 174), (160, 175), (160, 177), (161, 154), (161, 156), (161, 157), (161, 158), (161, 159), (161, 160), (161, 161), (161, 162), (161, 163), (161, 164), (161, 165), (161, 166), (161, 167), (161, 168), (161, 169), (161, 170), (161, 171), (161, 172), (161, 173), (161, 174), (161, 175), (161, 176), (161, 178), (162, 155), (162, 157), (162, 158), (162, 159), (162, 160), (162, 161), (162, 162), (162, 163), (162, 164), (162, 165), (162, 166), (162, 167), (162, 168), (162, 169), (162, 170), (162, 171), (162, 172), (162, 173), (162, 174), (162, 175), (162, 176), (162, 178), (163, 155), (163, 157), (163, 158), (163, 159), (163, 160), (163, 161), (163, 162), (163, 163), (163, 164), (163, 165), (163, 166), (163, 167), (163, 168), (163, 169), (163, 170),
(163, 171), (163, 172), (163, 173), (163, 174), (163, 175), (163, 176), (163, 178), (164, 155), (164, 157), (164, 158), (164, 159), (164, 160), (164, 161), (164, 162), (164, 163), (164, 164), (164, 165), (164, 166), (164, 167), (164, 168), (164, 169), (164, 170), (164, 171), (164, 172), (164, 173), (164, 174), (164, 175), (164, 176), (164, 177), (164, 178), (164, 179), (165, 156), (165, 158), (165, 159), (165, 160), (165, 161), (165, 162), (165, 163), (165, 164), (165, 165), (165, 166), (165, 167), (165, 168), (165, 169), (165, 170), (165, 171), (165, 172), (165, 173), (165, 174), (165, 175), (165, 176), (165, 177), (165, 179), (166, 156), (166, 159), (166, 160), (166, 161), (166, 162), (166, 163), (166, 164), (166, 165), (166, 166), (166, 167), (166, 168), (166, 169), (166, 170), (166, 171), (166, 172), (166, 173), (166, 174), (166, 175), (166, 176),
(166, 177), (166, 179), (167, 158), (167, 161), (167, 162), (167, 163), (167, 164), (167, 165), (167, 166), (167, 167), (167, 168), (167, 169), (167, 170), (167, 171), (167, 172), (167, 173), (167, 174), (167, 175), (167, 176), (167, 177), (167, 179), (168, 159), (168, 162), (168, 163), (168, 164), (168, 165), (168, 166), (168, 167), (168, 168), (168, 169), (168, 170), (168, 171), (168, 172), (168, 173), (168, 174), (168, 175), (168, 176), (168, 177), (168, 179), (169, 163), (169, 164), (169, 165), (169, 166), (169, 167), (169, 168), (169, 169), (169, 170), (169, 171), (169, 172), (169, 173), (169, 174), (169, 175), (169, 176), (169, 177), (169, 179), (170, 162), (170, 164), (170, 165), (170, 166), (170, 167), (170, 168), (170, 169), (170, 170), (170, 171), (170, 172), (170, 173), (170, 174), (170, 175), (170, 176), (170, 177), (170, 179), (171, 163),
(171, 165), (171, 166), (171, 167), (171, 168), (171, 169), (171, 170), (171, 171), (171, 172), (171, 173), (171, 174), (171, 175), (171, 176), (171, 177), (171, 179), (172, 164), (172, 166), (172, 167), (172, 168), (172, 169), (172, 170), (172, 171), (172, 172), (172, 173), (172, 174), (172, 175), (172, 176), (172, 177), (172, 179), (173, 165), (173, 167), (173, 168), (173, 169), (173, 170), (173, 171), (173, 172), (173, 173), (173, 174), (173, 175), (173, 176), (173, 177), (173, 179), (174, 166), (174, 169), (174, 170), (174, 171), (174, 172), (174, 173), (174, 174), (174, 175), (174, 176), (174, 177), (174, 179), (175, 167), (175, 170), (175, 171), (175, 172), (175, 173), (175, 174), (175, 175), (175, 176), (175, 178), (176, 169), (176, 177), (177, 170), (177, 172), (177, 173), (177, 174), (177, 176), (222, 170), (222, 172), (222, 173), (222, 174),
(222, 176), (223, 169), (223, 177), (224, 167), (224, 170), (224, 171), (224, 172), (224, 173), (224, 174), (224, 175), (224, 176), (224, 178), (225, 166), (225, 169), (225, 170), (225, 171), (225, 172), (225, 173), (225, 174), (225, 175), (225, 176), (225, 177), (225, 179), (226, 165), (226, 167), (226, 168), (226, 169), (226, 170), (226, 171), (226, 172), (226, 173), (226, 174), (226, 175), (226, 176), (226, 177), (226, 179), (227, 164), (227, 166), (227, 167), (227, 168), (227, 169), (227, 170), (227, 171), (227, 172), (227, 173), (227, 174), (227, 175), (227, 176), (227, 177), (227, 179), (228, 163), (228, 165), (228, 166), (228, 167), (228, 168), (228, 169), (228, 170), (228, 171), (228, 172), (228, 173), (228, 174), (228, 175), (228, 176), (228, 177), (228, 179), (229, 162), (229, 164), (229, 165), (229, 166), (229, 167), (229, 168), (229, 169),
(229, 170), (229, 171), (229, 172), (229, 173), (229, 174), (229, 175), (229, 176), (229, 177), (229, 179), (230, 160), (230, 163), (230, 164), (230, 165), (230, 166), (230, 167), (230, 168), (230, 169), (230, 170), (230, 171), (230, 172), (230, 173), (230, 174), (230, 175), (230, 176), (230, 177), (230, 179), (231, 159), (231, 162), (231, 163), (231, 164), (231, 165), (231, 166), (231, 167), (231, 168), (231, 169), (231, 170), (231, 171), (231, 172), (231, 173), (231, 174), (231, 175), (231, 176), (231, 177), (231, 179), (232, 158), (232, 161), (232, 162), (232, 163), (232, 164), (232, 165), (232, 166), (232, 167), (232, 168), (232, 169), (232, 170), (232, 171), (232, 172), (232, 173), (232, 174), (232, 175), (232, 176), (232, 177), (232, 179), (233, 156), (233, 159), (233, 160), (233, 161), (233, 162), (233, 163), (233, 164), (233, 165), (233, 166),
(233, 167), (233, 168), (233, 169), (233, 170), (233, 171), (233, 172), (233, 173), (233, 174), (233, 175), (233, 176), (233, 177), (233, 179), (234, 158), (234, 159), (234, 160), (234, 161), (234, 162), (234, 163), (234, 164), (234, 165), (234, 166), (234, 167), (234, 168), (234, 169), (234, 170), (234, 171), (234, 172), (234, 173), (234, 174), (234, 175), (234, 176), (234, 177), (234, 179), (235, 155), (235, 157), (235, 158), (235, 159), (235, 160), (235, 161), (235, 162), (235, 163), (235, 164), (235, 165), (235, 166), (235, 167), (235, 168), (235, 169), (235, 170), (235, 171), (235, 172), (235, 173), (235, 174), (235, 175), (235, 176), (235, 178), (236, 155), (236, 157), (236, 158), (236, 159), (236, 160), (236, 161), (236, 162), (236, 163), (236, 164), (236, 165), (236, 166), (236, 167), (236, 168), (236, 169), (236, 170), (236, 171), (236, 172),
(236, 173), (236, 174), (236, 175), (236, 176), (236, 178), (237, 155), (237, 157), (237, 158), (237, 159), (237, 160), (237, 161), (237, 162), (237, 163), (237, 164), (237, 165), (237, 166), (237, 167), (237, 168), (237, 169), (237, 170), (237, 171), (237, 172), (237, 173), (237, 174), (237, 175), (237, 176), (237, 178), (238, 154), (238, 156), (238, 157), (238, 158), (238, 159), (238, 160), (238, 161), (238, 162), (238, 163), (238, 164), (238, 165), (238, 166), (238, 167), (238, 168), (238, 169), (238, 170), (238, 171), (238, 172), (238, 173), (238, 174), (238, 175), (238, 176), (238, 177), (238, 178), (239, 154), (239, 156), (239, 157), (239, 158), (239, 159), (239, 160), (239, 161), (239, 162), (239, 163), (239, 164), (239, 165), (239, 166), (239, 167), (239, 168), (239, 169), (239, 170), (239, 171), (239, 172), (239, 173), (239, 174), (239, 175),
(239, 177), (240, 154), (240, 156), (240, 157), (240, 158), (240, 159), (240, 160), (240, 161), (240, 162), (240, 163), (240, 164), (240, 165), (240, 166), (240, 167), (240, 168), (240, 169), (240, 170), (240, 171), (240, 172), (240, 173), (240, 174), (240, 175), (240, 177), (241, 153), (241, 155), (241, 156), (241, 157), (241, 158), (241, 159), (241, 160), (241, 161), (241, 162), (241, 163), (241, 164), (241, 165), (241, 166), (241, 167), (241, 168), (241, 169), (241, 170), (241, 171), (241, 172), (241, 173), (241, 174), (241, 176), (242, 153), (242, 155), (242, 156), (242, 157), (242, 158), (242, 159), (242, 160), (242, 161), (242, 162), (242, 163), (242, 164), (242, 165), (242, 166), (242, 167), (242, 168), (242, 169), (242, 170), (242, 171), (242, 172), (242, 173), (242, 174), (242, 176), (243, 153), (243, 155), (243, 156), (243, 157), (243, 158),
(243, 159), (243, 160), (243, 161), (243, 162), (243, 163), (243, 164), (243, 165), (243, 166), (243, 167), (243, 168), (243, 169), (243, 170), (243, 171), (243, 172), (243, 173), (243, 175), (244, 153), (244, 155), (244, 156), (244, 157), (244, 158), (244, 159), (244, 160), (244, 161), (244, 162), (244, 163), (244, 164), (244, 165), (244, 166), (244, 167), (244, 168), (244, 169), (244, 170), (244, 171), (244, 172), (244, 173), (244, 175), (245, 154), (245, 156), (245, 157), (245, 158), (245, 159), (245, 160), (245, 161), (245, 162), (245, 163), (245, 164), (245, 165), (245, 166), (245, 167), (245, 168), (245, 169), (245, 170), (245, 171), (245, 172), (245, 174), (246, 154), (246, 156), (246, 157), (246, 158), (246, 159), (246, 160), (246, 161), (246, 162), (246, 163), (246, 164), (246, 165), (246, 166), (246, 167), (246, 168), (246, 169), (246, 170),
(246, 171), (246, 173), (247, 155), (247, 157), (247, 158), (247, 159), (247, 160), (247, 161), (247, 162), (247, 163), (247, 164), (247, 165), (247, 166), (247, 167), (247, 168), (247, 169), (247, 170), (248, 156), (248, 158), (248, 159), (248, 160), (248, 161), (248, 162), (248, 163), (248, 164), (248, 165), (248, 166), (248, 167), (248, 168), (248, 169), (248, 172), (249, 156), (249, 159), (249, 160), (249, 161), (249, 162), (249, 163), (249, 164), (249, 165), (249, 166), (249, 167), (249, 168), (249, 171), (250, 157), (250, 160), (250, 161), (250, 162), (250, 163), (250, 164), (250, 165), (250, 166), (250, 167), (250, 170), (251, 158), (251, 168), (252, 160), (252, 162), (252, 163), (252, 164), (252, 165), (252, 166), )
coordinates_00FF1D = ((68, 146),
(68, 147), (68, 148), (68, 150), (69, 142), (69, 143), (69, 144), (69, 145), (69, 150), (70, 139), (70, 141), (70, 146), (70, 147), (70, 148), (70, 150), (71, 137), (71, 138), (71, 142), (71, 143), (71, 144), (71, 145), (71, 146), (71, 147), (71, 148), (71, 150), (72, 134), (72, 139), (72, 140), (72, 141), (72, 142), (72, 143), (72, 144), (72, 145), (72, 146), (72, 147), (72, 148), (72, 150), (73, 132), (73, 136), (73, 137), (73, 138), (73, 139), (73, 140), (73, 141), (73, 142), (73, 143), (73, 144), (73, 145), (73, 146), (73, 147), (73, 148), (73, 150), (74, 131), (74, 134), (74, 135), (74, 136), (74, 137), (74, 138), (74, 139), (74, 140), (74, 141), (74, 142), (74, 143), (74, 144), (74, 145), (74, 146), (74, 147), (74, 148), (74, 150), (75, 129), (75, 132), (75, 133), (75, 134),
(75, 135), (75, 136), (75, 137), (75, 138), (75, 139), (75, 140), (75, 141), (75, 142), (75, 143), (75, 144), (75, 145), (75, 146), (75, 147), (75, 148), (75, 150), (76, 128), (76, 131), (76, 132), (76, 133), (76, 134), (76, 135), (76, 136), (76, 137), (76, 138), (76, 139), (76, 140), (76, 141), (76, 142), (76, 143), (76, 144), (76, 145), (76, 146), (76, 147), (76, 148), (76, 150), (77, 127), (77, 129), (77, 130), (77, 131), (77, 132), (77, 133), (77, 134), (77, 135), (77, 136), (77, 137), (77, 138), (77, 139), (77, 140), (77, 141), (77, 142), (77, 143), (77, 144), (77, 145), (77, 146), (77, 147), (77, 148), (77, 150), (78, 126), (78, 128), (78, 129), (78, 130), (78, 131), (78, 132), (78, 133), (78, 134), (78, 135), (78, 136), (78, 137), (78, 138), (78, 139), (78, 140), (78, 141),
(78, 142), (78, 143), (78, 144), (78, 145), (78, 146), (78, 147), (78, 149), (79, 126), (79, 130), (79, 131), (79, 132), (79, 133), (79, 134), (79, 135), (79, 136), (79, 137), (79, 138), (79, 139), (79, 140), (79, 141), (79, 142), (79, 143), (79, 144), (79, 145), (79, 146), (79, 147), (79, 149), (80, 126), (80, 128), (80, 129), (80, 133), (80, 134), (80, 135), (80, 136), (80, 137), (80, 138), (80, 139), (80, 140), (80, 141), (80, 142), (80, 143), (80, 144), (80, 145), (80, 149), (81, 130), (81, 131), (81, 132), (81, 136), (81, 137), (81, 138), (81, 139), (81, 140), (81, 141), (81, 142), (81, 143), (81, 146), (81, 147), (82, 133), (82, 134), (82, 138), (82, 139), (82, 140), (82, 141), (82, 142), (82, 145), (83, 136), (83, 139), (83, 140), (83, 143), (84, 138), (84, 141), (84, 142),
(85, 139), (85, 140), (313, 122), (314, 122), (314, 139), (314, 140), (315, 122), (315, 137), (315, 142), (316, 123), (316, 135), (316, 139), (316, 140), (316, 143), (317, 123), (317, 133), (317, 137), (317, 138), (317, 139), (317, 140), (317, 141), (317, 142), (317, 145), (318, 131), (318, 132), (318, 135), (318, 136), (318, 137), (318, 138), (318, 139), (318, 140), (318, 141), (318, 142), (318, 143), (318, 146), (318, 147), (318, 149), (319, 127), (319, 128), (319, 129), (319, 133), (319, 134), (319, 135), (319, 136), (319, 137), (319, 138), (319, 139), (319, 140), (319, 141), (319, 142), (319, 143), (319, 144), (319, 145), (319, 149), (320, 125), (320, 126), (320, 130), (320, 131), (320, 132), (320, 133), (320, 134), (320, 135), (320, 136), (320, 137), (320, 138), (320, 139), (320, 140), (320, 141), (320, 142), (320, 143), (320, 144), (320, 145),
(320, 146), (320, 147), (320, 149), (321, 126), (321, 129), (321, 130), (321, 131), (321, 132), (321, 133), (321, 134), (321, 135), (321, 136), (321, 137), (321, 138), (321, 139), (321, 140), (321, 141), (321, 142), (321, 143), (321, 144), (321, 145), (321, 146), (321, 147), (321, 149), (322, 127), (322, 130), (322, 131), (322, 132), (322, 133), (322, 134), (322, 135), (322, 136), (322, 137), (322, 138), (322, 139), (322, 140), (322, 141), (322, 142), (322, 143), (322, 144), (322, 145), (322, 146), (322, 147), (322, 148), (322, 150), (323, 129), (323, 132), (323, 133), (323, 134), (323, 135), (323, 136), (323, 137), (323, 138), (323, 139), (323, 140), (323, 141), (323, 142), (323, 143), (323, 144), (323, 145), (323, 146), (323, 147), (323, 148), (323, 150), (324, 130), (324, 133), (324, 134), (324, 135), (324, 136), (324, 137), (324, 138), (324, 139),
(324, 140), (324, 141), (324, 142), (324, 143), (324, 144), (324, 145), (324, 146), (324, 147), (324, 148), (324, 150), (325, 132), (325, 135), (325, 136), (325, 137), (325, 138), (325, 139), (325, 140), (325, 141), (325, 142), (325, 143), (325, 144), (325, 145), (325, 146), (325, 147), (325, 148), (325, 150), (326, 133), (326, 137), (326, 138), (326, 139), (326, 140), (326, 141), (326, 142), (326, 143), (326, 144), (326, 145), (326, 146), (326, 147), (326, 148), (326, 150), (327, 135), (327, 139), (327, 140), (327, 141), (327, 142), (327, 143), (327, 144), (327, 145), (327, 146), (327, 147), (327, 148), (327, 150), (328, 137), (328, 142), (328, 143), (328, 144), (328, 145), (328, 146), (328, 147), (328, 148), (328, 150), (329, 140), (329, 141), (329, 146), (329, 147), (329, 148), (329, 150), (330, 142), (330, 143), (330, 144), (330, 145), (330, 150),
(331, 146), (331, 147), (331, 148), (331, 150), )
coordinates_00D7FF = ((68, 157),
(68, 158), (68, 159), (68, 160), (68, 161), (68, 162), (68, 163), (68, 164), (68, 165), (68, 166), (69, 156), (69, 167), (69, 169), (70, 155), (70, 157), (70, 158), (70, 159), (70, 160), (70, 161), (70, 162), (70, 163), (70, 164), (70, 165), (70, 166), (70, 167), (70, 169), (71, 154), (71, 156), (71, 157), (71, 158), (71, 159), (71, 160), (71, 161), (71, 162), (71, 163), (71, 164), (71, 165), (71, 166), (71, 167), (71, 168), (71, 169), (72, 154), (72, 156), (72, 157), (72, 158), (72, 159), (72, 160), (72, 161), (72, 162), (72, 163), (72, 164), (72, 165), (72, 166), (72, 167), (72, 168), (72, 169), (72, 172), (72, 173), (72, 174), (72, 175), (72, 176), (72, 177), (72, 179), (73, 154), (73, 156), (73, 157), (73, 158), (73, 159), (73, 160), (73, 161), (73, 162), (73, 163), (73, 164),
(73, 165), (73, 166), (73, 167), (73, 168), (73, 169), (73, 170), (73, 171), (73, 179), (74, 154), (74, 156), (74, 157), (74, 158), (74, 159), (74, 160), (74, 161), (74, 162), (74, 163), (74, 164), (74, 165), (74, 166), (74, 167), (74, 168), (74, 169), (74, 170), (74, 171), (74, 172), (74, 173), (74, 174), (74, 175), (74, 176), (74, 177), (74, 179), (75, 153), (75, 155), (75, 156), (75, 157), (75, 158), (75, 159), (75, 160), (75, 161), (75, 162), (75, 163), (75, 164), (75, 165), (75, 166), (75, 167), (75, 168), (75, 169), (75, 170), (75, 171), (75, 172), (75, 173), (75, 174), (75, 175), (75, 176), (75, 177), (75, 179), (76, 153), (76, 155), (76, 156), (76, 157), (76, 158), (76, 159), (76, 160), (76, 161), (76, 162), (76, 163), (76, 164), (76, 165), (76, 166), (76, 167), (76, 168),
(76, 169), (76, 170), (76, 171), (76, 172), (76, 173), (76, 174), (76, 175), (76, 176), (76, 177), (76, 178), (76, 180), (77, 152), (77, 154), (77, 155), (77, 156), (77, 157), (77, 158), (77, 159), (77, 160), (77, 161), (77, 162), (77, 163), (77, 164), (77, 165), (77, 166), (77, 167), (77, 168), (77, 169), (77, 170), (77, 171), (77, 172), (77, 173), (77, 174), (77, 175), (77, 176), (77, 177), (77, 178), (77, 180), (78, 152), (78, 154), (78, 155), (78, 156), (78, 157), (78, 158), (78, 159), (78, 160), (78, 161), (78, 162), (78, 163), (78, 164), (78, 165), (78, 166), (78, 167), (78, 168), (78, 169), (78, 170), (78, 171), (78, 172), (78, 173), (78, 174), (78, 175), (78, 176), (78, 177), (78, 179), (79, 151), (79, 153), (79, 154), (79, 155), (79, 156), (79, 157), (79, 158), (79, 159),
(79, 160), (79, 161), (79, 162), (79, 163), (79, 164), (79, 165), (79, 166), (79, 167), (79, 168), (79, 169), (79, 170), (79, 171), (79, 172), (79, 173), (79, 174), (79, 175), (79, 179), (80, 151), (80, 153), (80, 154), (80, 155), (80, 156), (80, 157), (80, 158), (80, 159), (80, 160), (80, 161), (80, 162), (80, 163), (80, 164), (80, 165), (80, 166), (80, 167), (80, 168), (80, 169), (80, 170), (80, 171), (80, 172), (80, 173), (80, 174), (80, 179), (81, 151), (81, 153), (81, 154), (81, 155), (81, 156), (81, 157), (81, 158), (81, 159), (81, 160), (81, 161), (81, 162), (81, 163), (81, 164), (81, 165), (81, 166), (81, 167), (81, 168), (81, 169), (81, 170), (81, 171), (81, 172), (81, 173), (81, 175), (82, 151), (82, 153), (82, 154), (82, 155), (82, 156), (82, 157), (82, 158), (82, 159),
(82, 160), (82, 161), (82, 162), (82, 163), (82, 164), (82, 165), (82, 166), (82, 167), (82, 168), (82, 169), (82, 170), (82, 171), (82, 172), (82, 173), (82, 175), (83, 151), (83, 153), (83, 154), (83, 155), (83, 156), (83, 157), (83, 158), (83, 159), (83, 160), (83, 161), (83, 162), (83, 163), (83, 164), (83, 165), (83, 166), (83, 167), (83, 168), (83, 169), (83, 170), (83, 171), (83, 172), (83, 174), (84, 151), (84, 153), (84, 154), (84, 155), (84, 156), (84, 157), (84, 158), (84, 159), (84, 160), (84, 161), (84, 162), (84, 163), (84, 164), (84, 165), (84, 166), (84, 167), (84, 168), (84, 169), (84, 170), (84, 171), (84, 172), (84, 174), (85, 151), (85, 153), (85, 154), (85, 155), (85, 156), (85, 157), (85, 158), (85, 159), (85, 160), (85, 161), (85, 162), (85, 163), (85, 164),
(85, 165), (85, 166), (85, 167), (85, 168), (85, 169), (85, 170), (85, 171), (85, 172), (85, 174), (86, 151), (86, 153), (86, 154), (86, 155), (86, 156), (86, 157), (86, 158), (86, 159), (86, 160), (86, 161), (86, 162), (86, 163), (86, 164), (86, 165), (86, 166), (86, 167), (86, 168), (86, 169), (86, 170), (86, 171), (86, 172), (86, 174), (87, 151), (87, 152), (87, 153), (87, 154), (87, 155), (87, 156), (87, 157), (87, 158), (87, 159), (87, 160), (87, 161), (87, 162), (87, 163), (87, 164), (87, 165), (87, 166), (87, 167), (87, 168), (87, 169), (87, 170), (87, 171), (87, 172), (87, 173), (87, 174), (87, 176), (88, 152), (88, 154), (88, 155), (88, 156), (88, 157), (88, 158), (88, 159), (88, 160), (88, 161), (88, 162), (88, 163), (88, 164), (88, 165), (88, 166), (88, 167), (88, 168),
(88, 169), (88, 170), (88, 171), (88, 172), (88, 173), (88, 174), (88, 178), (89, 152), (89, 154), (89, 155), (89, 156), (89, 157), (89, 158), (89, 159), (89, 160), (89, 161), (89, 162), (89, 163), (89, 164), (89, 165), (89, 166), (89, 167), (89, 168), (89, 169), (89, 170), (89, 171), (89, 172), (89, 173), (89, 174), (89, 175), (89, 176), (89, 178), (90, 152), (90, 154), (90, 155), (90, 156), (90, 157), (90, 158), (90, 159), (90, 160), (90, 161), (90, 162), (90, 163), (90, 164), (90, 165), (90, 166), (90, 167), (90, 168), (90, 169), (90, 170), (90, 171), (90, 172), (90, 173), (90, 174), (90, 175), (90, 176), (90, 178), (91, 153), (91, 155), (91, 156), (91, 157), (91, 158), (91, 159), (91, 160), (91, 161), (91, 162), (91, 163), (91, 164), (91, 165), (91, 166), (91, 167), (91, 168),
(91, 169), (91, 170), (91, 171), (91, 172), (91, 173), (91, 174), (91, 175), (91, 178), (92, 153), (92, 155), (92, 156), (92, 157), (92, 158), (92, 159), (92, 160), (92, 161), (92, 162), (92, 163), (92, 164), (92, 165), (92, 166), (92, 167), (92, 168), (92, 169), (92, 170), (92, 171), (92, 172), (92, 173), (92, 174), (92, 177), (93, 153), (93, 155), (93, 156), (93, 157), (93, 158), (93, 159), (93, 160), (93, 161), (93, 162), (93, 163), (93, 164), (93, 165), (93, 166), (93, 167), (93, 168), (93, 169), (93, 170), (93, 171), (93, 172), (93, 175), (94, 154), (94, 156), (94, 157), (94, 158), (94, 159), (94, 160), (94, 161), (94, 162), (94, 163), (94, 164), (94, 165), (94, 166), (94, 167), (94, 168), (94, 169), (94, 170), (94, 171), (94, 174), (95, 154), (95, 156), (95, 157), (95, 158),
(95, 159), (95, 160), (95, 161), (95, 162), (95, 163), (95, 164), (95, 165), (95, 166), (95, 167), (95, 168), (95, 169), (95, 170), (95, 172), (96, 155), (96, 157), (96, 158), (96, 159), (96, 160), (96, 161), (96, 162), (96, 163), (96, 164), (96, 165), (96, 166), (96, 167), (96, 168), (96, 171), (97, 155), (97, 157), (97, 158), (97, 159), (97, 160), (97, 161), (97, 162), (97, 163), (97, 164), (97, 165), (97, 168), (97, 170), (98, 156), (98, 158), (98, 159), (98, 160), (98, 161), (98, 162), (98, 163), (98, 164), (98, 167), (99, 159), (99, 160), (99, 161), (99, 162), (99, 165), (100, 158), (100, 164), (101, 159), (101, 162), (298, 159), (298, 162), (299, 157), (299, 164), (300, 156), (300, 159), (300, 160), (300, 161), (300, 162), (300, 165), (301, 156), (301, 158), (301, 159), (301, 160), (301, 161),
(301, 162), (301, 163), (301, 164), (301, 168), (302, 155), (302, 157), (302, 158), (302, 159), (302, 160), (302, 161), (302, 162), (302, 163), (302, 164), (302, 165), (302, 169), (303, 155), (303, 157), (303, 158), (303, 159), (303, 160), (303, 161), (303, 162), (303, 163), (303, 164), (303, 165), (303, 166), (303, 167), (303, 168), (303, 171), (304, 154), (304, 156), (304, 157), (304, 158), (304, 159), (304, 160), (304, 161), (304, 162), (304, 163), (304, 164), (304, 165), (304, 166), (304, 167), (304, 168), (304, 169), (304, 172), (305, 154), (305, 156), (305, 157), (305, 158), (305, 159), (305, 160), (305, 161), (305, 162), (305, 163), (305, 164), (305, 165), (305, 166), (305, 167), (305, 168), (305, 169), (305, 170), (305, 171), (305, 174), (306, 153), (306, 155), (306, 156), (306, 157), (306, 158), (306, 159), (306, 160), (306, 161), (306, 162),
(306, 163), (306, 164), (306, 165), (306, 166), (306, 167), (306, 168), (306, 169), (306, 170), (306, 171), (306, 172), (306, 175), (307, 153), (307, 155), (307, 156), (307, 157), (307, 158), (307, 159), (307, 160), (307, 161), (307, 162), (307, 163), (307, 164), (307, 165), (307, 166), (307, 167), (307, 168), (307, 169), (307, 170), (307, 171), (307, 172), (307, 173), (307, 174), (307, 177), (308, 153), (308, 155), (308, 156), (308, 157), (308, 158), (308, 159), (308, 160), (308, 161), (308, 162), (308, 163), (308, 164), (308, 165), (308, 166), (308, 167), (308, 168), (308, 169), (308, 170), (308, 171), (308, 172), (308, 173), (308, 174), (308, 175), (308, 178), (309, 152), (309, 154), (309, 155), (309, 156), (309, 157), (309, 158), (309, 159), (309, 160), (309, 161), (309, 162), (309, 163), (309, 164), (309, 165), (309, 166), (309, 167), (309, 168),
(309, 169), (309, 170), (309, 171), (309, 172), (309, 173), (309, 174), (309, 175), (309, 176), (309, 178), (310, 152), (310, 154), (310, 155), (310, 156), (310, 157), (310, 158), (310, 159), (310, 160), (310, 161), (310, 162), (310, 163), (310, 164), (310, 165), (310, 166), (310, 167), (310, 168), (310, 169), (310, 170), (310, 171), (310, 172), (310, 173), (310, 174), (310, 175), (310, 176), (310, 178), (311, 152), (311, 154), (311, 155), (311, 156), (311, 157), (311, 158), (311, 159), (311, 160), (311, 161), (311, 162), (311, 163), (311, 164), (311, 165), (311, 166), (311, 167), (311, 168), (311, 169), (311, 170), (311, 171), (311, 172), (311, 173), (311, 174), (311, 178), (312, 151), (312, 152), (312, 153), (312, 154), (312, 155), (312, 156), (312, 157), (312, 158), (312, 159), (312, 160), (312, 161), (312, 162), (312, 163), (312, 164), (312, 165),
(312, 166), (312, 167), (312, 168), (312, 169), (312, 170), (312, 171), (312, 172), (312, 173), (312, 174), (312, 176), (313, 151), (313, 153), (313, 154), (313, 155), (313, 156), (313, 157), (313, 158), (313, 159), (313, 160), (313, 161), (313, 162), (313, 163), (313, 164), (313, 165), (313, 166), (313, 167), (313, 168), (313, 169), (313, 170), (313, 171), (313, 172), (313, 174), (314, 151), (314, 153), (314, 154), (314, 155), (314, 156), (314, 157), (314, 158), (314, 159), (314, 160), (314, 161), (314, 162), (314, 163), (314, 164), (314, 165), (314, 166), (314, 167), (314, 168), (314, 169), (314, 170), (314, 171), (314, 172), (314, 174), (315, 151), (315, 153), (315, 154), (315, 155), (315, 156), (315, 157), (315, 158), (315, 159), (315, 160), (315, 161), (315, 162), (315, 163), (315, 164), (315, 165), (315, 166), (315, 167), (315, 168), (315, 169),
(315, 170), (315, 171), (315, 172), (315, 174), (316, 151), (316, 153), (316, 154), (316, 155), (316, 156), (316, 157), (316, 158), (316, 159), (316, 160), (316, 161), (316, 162), (316, 163), (316, 164), (316, 165), (316, 166), (316, 167), (316, 168), (316, 169), (316, 170), (316, 171), (316, 172), (316, 174), (317, 151), (317, 153), (317, 154), (317, 155), (317, 156), (317, 157), (317, 158), (317, 159), (317, 160), (317, 161), (317, 162), (317, 163), (317, 164), (317, 165), (317, 166), (317, 167), (317, 168), (317, 169), (317, 170), (317, 171), (317, 172), (317, 173), (317, 175), (318, 151), (318, 153), (318, 154), (318, 155), (318, 156), (318, 157), (318, 158), (318, 159), (318, 160), (318, 161), (318, 162), (318, 163), (318, 164), (318, 165), (318, 166), (318, 167), (318, 168), (318, 169), (318, 170), (318, 171), (318, 172), (318, 173), (318, 175),
(319, 151), (319, 153), (319, 154), (319, 155), (319, 156), (319, 157), (319, 158), (319, 159), (319, 160), (319, 161), (319, 162), (319, 163), (319, 164), (319, 165), (319, 166), (319, 167), (319, 168), (319, 169), (319, 170), (319, 171), (319, 172), (319, 173), (319, 174), (319, 175), (319, 177), (319, 179), (320, 151), (320, 153), (320, 154), (320, 155), (320, 156), (320, 157), (320, 158), (320, 159), (320, 160), (320, 161), (320, 162), (320, 163), (320, 164), (320, 165), (320, 166), (320, 167), (320, 168), (320, 169), (320, 170), (320, 171), (320, 172), (320, 173), (320, 174), (320, 175), (320, 179), (321, 152), (321, 154), (321, 155), (321, 156), (321, 157), (321, 158), (321, 159), (321, 160), (321, 161), (321, 162), (321, 163), (321, 164), (321, 165), (321, 166), (321, 167), (321, 168), (321, 169), (321, 170), (321, 171), (321, 172), (321, 173),
(321, 174), (321, 175), (321, 176), (321, 177), (321, 179), (322, 152), (322, 154), (322, 155), (322, 156), (322, 157), (322, 158), (322, 159), (322, 160), (322, 161), (322, 162), (322, 163), (322, 164), (322, 165), (322, 166), (322, 167), (322, 168), (322, 169), (322, 170), (322, 171), (322, 172), (322, 173), (322, 174), (322, 175), (322, 176), (322, 177), (322, 178), (322, 180), (323, 153), (323, 155), (323, 156), (323, 157), (323, 158), (323, 159), (323, 160), (323, 161), (323, 162), (323, 163), (323, 164), (323, 165), (323, 166), (323, 167), (323, 168), (323, 169), (323, 170), (323, 171), (323, 172), (323, 173), (323, 174), (323, 175), (323, 176), (323, 177), (323, 178), (323, 180), (324, 153), (324, 155), (324, 156), (324, 157), (324, 158), (324, 159), (324, 160), (324, 161), (324, 162), (324, 163), (324, 164), (324, 165), (324, 166), (324, 167),
(324, 168), (324, 169), (324, 170), (324, 171), (324, 172), (324, 173), (324, 174), (324, 175), (324, 176), (324, 177), (324, 179), (325, 154), (325, 156), (325, 157), (325, 158), (325, 159), (325, 160), (325, 161), (325, 162), (325, 163), (325, 164), (325, 165), (325, 166), (325, 167), (325, 168), (325, 169), (325, 170), (325, 171), (325, 172), (325, 173), (325, 174), (325, 175), (325, 176), (325, 177), (325, 179), (326, 154), (326, 156), (326, 157), (326, 158), (326, 159), (326, 160), (326, 161), (326, 162), (326, 163), (326, 164), (326, 165), (326, 166), (326, 167), (326, 168), (326, 169), (326, 170), (326, 171), (326, 179), (327, 154), (327, 156), (327, 157), (327, 158), (327, 159), (327, 160), (327, 161), (327, 162), (327, 163), (327, 164), (327, 165), (327, 166), (327, 167), (327, 168), (327, 169), (327, 172), (327, 173), (327, 174), (327, 175),
(327, 176), (327, 177), (327, 179), (328, 156), (328, 157), (328, 158), (328, 159), (328, 160), (328, 161), (328, 162), (328, 163), (328, 164), (328, 165), (328, 166), (328, 167), (328, 168), (328, 169), (328, 170), (329, 155), (329, 158), (329, 159), (329, 160), (329, 161), (329, 162), (329, 163), (329, 164), (329, 165), (329, 166), (329, 169), (330, 156), (330, 167), (330, 169), (331, 158), (331, 160), (331, 161), (331, 162), (331, 163), (331, 164), (331, 165), (331, 166), )
coordinates_00627F = ((50, 202),
(50, 203), (51, 199), (51, 200), (51, 205), (51, 206), (52, 198), (52, 201), (52, 202), (52, 203), (52, 208), (53, 197), (53, 200), (53, 201), (53, 202), (53, 203), (53, 204), (53, 205), (54, 196), (54, 198), (54, 199), (54, 200), (54, 201), (54, 202), (54, 203), (54, 204), (54, 205), (54, 207), (55, 195), (55, 197), (55, 198), (55, 199), (55, 200), (55, 201), (55, 202), (55, 203), (55, 204), (55, 205), (55, 207), (56, 194), (56, 196), (56, 197), (56, 198), (56, 199), (56, 200), (56, 201), (56, 202), (56, 203), (56, 204), (56, 206), (57, 194), (57, 196), (57, 197), (57, 198), (57, 199), (57, 200), (57, 201), (57, 202), (57, 205), (58, 193), (58, 195), (58, 196), (58, 199), (58, 200), (58, 201), (58, 204), (59, 196), (59, 197), (59, 198), (59, 203), (60, 192), (60, 194), (60, 195),
(60, 199), (60, 201), (339, 192), (339, 194), (339, 195), (339, 196), (339, 198), (339, 199), (339, 201), (339, 202), (340, 197), (340, 203), (341, 193), (341, 195), (341, 196), (341, 198), (341, 199), (341, 200), (341, 201), (341, 204), (342, 194), (342, 196), (342, 197), (342, 198), (342, 199), (342, 200), (342, 201), (342, 202), (342, 203), (342, 205), (343, 194), (343, 196), (343, 197), (343, 198), (343, 199), (343, 200), (343, 201), (343, 202), (343, 203), (343, 204), (343, 206), (344, 195), (344, 197), (344, 198), (344, 199), (344, 200), (344, 201), (344, 202), (344, 203), (344, 204), (344, 205), (344, 207), (345, 196), (345, 198), (345, 199), (345, 200), (345, 201), (345, 202), (345, 203), (345, 204), (345, 205), (345, 207), (346, 197), (346, 200), (346, 201), (346, 202), (346, 203), (346, 204), (346, 205), (347, 198), (347, 202), (347, 203),
(347, 208), (348, 200), (348, 204), (348, 205), (349, 202), (349, 203), )
coordinates_6BFF00 = ((53, 210),
(53, 212), (53, 213), (54, 209), (54, 216), (55, 209), (55, 211), (55, 212), (55, 213), (55, 214), (55, 217), (56, 208), (56, 210), (56, 211), (56, 212), (56, 213), (56, 214), (56, 215), (56, 216), (56, 219), (57, 210), (57, 211), (57, 212), (57, 213), (57, 214), (57, 215), (57, 216), (57, 217), (57, 220), (58, 209), (58, 210), (58, 211), (58, 212), (58, 213), (58, 214), (58, 215), (58, 216), (58, 217), (58, 218), (58, 221), (59, 205), (59, 208), (59, 209), (59, 210), (59, 211), (59, 212), (59, 213), (59, 214), (59, 215), (59, 216), (59, 217), (59, 218), (59, 219), (59, 222), (60, 204), (60, 207), (60, 208), (60, 209), (60, 210), (60, 211), (60, 212), (60, 213), (60, 214), (60, 215), (60, 216), (60, 217), (60, 218), (60, 219), (60, 220), (60, 222), (61, 203), (61, 205), (61, 206),
(61, 207), (61, 208), (61, 209), (61, 210), (61, 211), (61, 212), (61, 213), (61, 214), (61, 215), (61, 216), (61, 217), (61, 218), (61, 219), (61, 220), (61, 221), (61, 223), (62, 203), (62, 205), (62, 206), (62, 207), (62, 208), (62, 209), (62, 210), (62, 211), (62, 212), (62, 213), (62, 214), (62, 215), (62, 216), (62, 217), (62, 218), (62, 219), (62, 220), (62, 221), (62, 222), (62, 224), (63, 203), (63, 205), (63, 206), (63, 207), (63, 208), (63, 209), (63, 210), (63, 211), (63, 212), (63, 213), (63, 214), (63, 215), (63, 216), (63, 217), (63, 218), (63, 219), (63, 220), (63, 221), (63, 222), (63, 224), (64, 204), (64, 206), (64, 207), (64, 208), (64, 209), (64, 210), (64, 211), (64, 212), (64, 213), (64, 214), (64, 215), (64, 216), (64, 217), (64, 218), (64, 219), (64, 220),
(64, 221), (64, 222), (64, 223), (64, 225), (65, 204), (65, 206), (65, 207), (65, 208), (65, 209), (65, 210), (65, 211), (65, 212), (65, 213), (65, 214), (65, 215), (65, 216), (65, 217), (65, 218), (65, 219), (65, 220), (65, 221), (65, 222), (65, 223), (65, 224), (66, 204), (66, 208), (66, 209), (66, 210), (66, 211), (66, 212), (66, 213), (66, 214), (66, 215), (66, 216), (66, 217), (66, 218), (66, 219), (66, 220), (66, 221), (66, 222), (66, 223), (66, 224), (66, 226), (67, 205), (67, 207), (67, 210), (67, 211), (67, 212), (67, 213), (67, 214), (67, 215), (67, 216), (67, 217), (67, 218), (67, 219), (67, 220), (67, 221), (67, 222), (67, 223), (67, 224), (67, 225), (67, 227), (68, 208), (68, 209), (68, 212), (68, 213), (68, 214), (68, 215), (68, 216), (68, 217), (68, 218), (68, 219),
(68, 220), (68, 221), (68, 222), (68, 223), (68, 224), (68, 225), (68, 227), (69, 210), (69, 214), (69, 215), (69, 216), (69, 217), (69, 218), (69, 219), (69, 220), (69, 221), (69, 222), (69, 223), (69, 224), (69, 225), (69, 226), (69, 228), (70, 212), (70, 215), (70, 216), (70, 217), (70, 218), (70, 219), (70, 220), (70, 221), (70, 222), (70, 223), (70, 224), (70, 225), (70, 226), (70, 228), (71, 214), (71, 217), (71, 218), (71, 219), (71, 220), (71, 221), (71, 222), (71, 223), (71, 224), (71, 225), (71, 226), (71, 227), (71, 229), (72, 215), (72, 218), (72, 219), (72, 220), (72, 221), (72, 222), (72, 223), (72, 224), (72, 225), (72, 226), (72, 228), (73, 216), (73, 220), (73, 221), (73, 222), (73, 223), (73, 224), (73, 225), (73, 226), (73, 228), (74, 217), (74, 219), (74, 228),
(75, 220), (75, 221), (75, 222), (75, 223), (75, 224), (75, 225), (75, 226), (75, 228), (323, 228), (324, 218), (324, 220), (324, 221), (324, 222), (324, 223), (324, 224), (324, 225), (324, 226), (324, 228), (325, 217), (325, 228), (326, 216), (326, 219), (326, 220), (326, 221), (326, 222), (326, 223), (326, 224), (326, 225), (326, 226), (326, 228), (327, 215), (327, 217), (327, 218), (327, 219), (327, 220), (327, 221), (327, 222), (327, 223), (327, 224), (327, 225), (327, 226), (327, 228), (328, 214), (328, 216), (328, 217), (328, 218), (328, 219), (328, 220), (328, 221), (328, 222), (328, 223), (328, 224), (328, 225), (328, 226), (328, 227), (328, 229), (329, 212), (329, 215), (329, 216), (329, 217), (329, 218), (329, 219), (329, 220), (329, 221), (329, 222), (329, 223), (329, 224), (329, 225), (329, 226), (329, 228), (330, 210), (330, 214),
(330, 215), (330, 216), (330, 217), (330, 218), (330, 219), (330, 220), (330, 221), (330, 222), (330, 223), (330, 224), (330, 225), (330, 226), (330, 228), (331, 208), (331, 209), (331, 212), (331, 213), (331, 214), (331, 215), (331, 216), (331, 217), (331, 218), (331, 219), (331, 220), (331, 221), (331, 222), (331, 223), (331, 224), (331, 225), (331, 227), (332, 205), (332, 207), (332, 210), (332, 211), (332, 212), (332, 213), (332, 214), (332, 215), (332, 216), (332, 217), (332, 218), (332, 219), (332, 220), (332, 221), (332, 222), (332, 223), (332, 224), (332, 225), (332, 227), (333, 204), (333, 208), (333, 209), (333, 210), (333, 211), (333, 212), (333, 213), (333, 214), (333, 215), (333, 216), (333, 217), (333, 218), (333, 219), (333, 220), (333, 221), (333, 222), (333, 223), (333, 224), (333, 226), (334, 204), (334, 206), (334, 207), (334, 208),
(334, 209), (334, 210), (334, 211), (334, 212), (334, 213), (334, 214), (334, 215), (334, 216), (334, 217), (334, 218), (334, 219), (334, 220), (334, 221), (334, 222), (334, 223), (334, 225), (335, 204), (335, 206), (335, 207), (335, 208), (335, 209), (335, 210), (335, 211), (335, 212), (335, 213), (335, 214), (335, 215), (335, 216), (335, 217), (335, 218), (335, 219), (335, 220), (335, 221), (335, 222), (335, 223), (335, 225), (336, 203), (336, 205), (336, 206), (336, 207), (336, 208), (336, 209), (336, 210), (336, 211), (336, 212), (336, 213), (336, 214), (336, 215), (336, 216), (336, 217), (336, 218), (336, 219), (336, 220), (336, 221), (336, 222), (336, 224), (337, 203), (337, 205), (337, 206), (337, 207), (337, 208), (337, 209), (337, 210), (337, 211), (337, 212), (337, 213), (337, 214), (337, 215), (337, 216), (337, 217), (337, 218), (337, 219),
(337, 220), (337, 221), (337, 222), (337, 224), (338, 203), (338, 206), (338, 207), (338, 208), (338, 209), (338, 210), (338, 211), (338, 212), (338, 213), (338, 214), (338, 215), (338, 216), (338, 217), (338, 218), (338, 219), (338, 220), (338, 221), (338, 223), (339, 204), (339, 207), (339, 208), (339, 209), (339, 210), (339, 211), (339, 212), (339, 213), (339, 214), (339, 215), (339, 216), (339, 217), (339, 218), (339, 219), (339, 220), (339, 222), (340, 205), (340, 208), (340, 209), (340, 210), (340, 211), (340, 212), (340, 213), (340, 214), (340, 215), (340, 216), (340, 217), (340, 218), (340, 219), (341, 207), (341, 209), (341, 210), (341, 211), (341, 212), (341, 213), (341, 214), (341, 215), (341, 216), (341, 217), (341, 218), (341, 221), (342, 208), (342, 210), (342, 211), (342, 212), (342, 213), (342, 214), (342, 215), (342, 216), (342, 217),
(342, 220), (343, 208), (343, 210), (343, 211), (343, 212), (343, 213), (343, 214), (343, 215), (343, 216), (343, 219), (344, 209), (344, 211), (344, 212), (344, 213), (344, 217), (345, 209), (345, 215), (345, 216), (346, 210), (346, 212), (346, 213), )
coordinates_00FF9C = ((163, 115),
(163, 118), (164, 113), (164, 118), (165, 112), (165, 115), (165, 116), (165, 118), (166, 110), (166, 113), (166, 114), (166, 115), (166, 116), (166, 118), (167, 109), (167, 112), (167, 113), (167, 114), (167, 115), (167, 116), (167, 117), (167, 119), (168, 108), (168, 111), (168, 112), (168, 113), (168, 114), (168, 115), (168, 116), (168, 117), (168, 119), (169, 107), (169, 110), (169, 111), (169, 112), (169, 113), (169, 114), (169, 115), (169, 116), (169, 117), (169, 119), (170, 106), (170, 109), (170, 110), (170, 111), (170, 112), (170, 113), (170, 114), (170, 115), (170, 116), (170, 117), (170, 119), (171, 106), (171, 108), (171, 109), (171, 110), (171, 111), (171, 112), (171, 113), (171, 114), (171, 115), (171, 116), (171, 117), (172, 105), (172, 107), (172, 108), (172, 109), (172, 110), (172, 111), (172, 112), (172, 113), (172, 114), (172, 115),
(172, 116), (172, 117), (172, 119), (173, 104), (173, 106), (173, 107), (173, 108), (173, 109), (173, 110), (173, 111), (173, 112), (173, 113), (173, 114), (173, 115), (173, 116), (173, 117), (174, 104), (174, 106), (174, 107), (174, 108), (174, 109), (174, 110), (174, 111), (174, 112), (174, 113), (174, 114), (174, 115), (174, 117), (175, 103), (175, 105), (175, 106), (175, 107), (175, 108), (175, 109), (175, 110), (175, 111), (175, 112), (175, 113), (175, 114), (175, 116), (176, 103), (176, 105), (176, 106), (176, 107), (176, 108), (176, 109), (176, 110), (176, 111), (176, 112), (176, 113), (176, 114), (176, 116), (177, 102), (177, 104), (177, 105), (177, 106), (177, 107), (177, 108), (177, 109), (177, 110), (177, 111), (177, 112), (177, 113), (177, 115), (178, 102), (178, 104), (178, 105), (178, 106), (178, 107), (178, 108), (178, 109), (178, 110),
(178, 111), (178, 112), (178, 113), (178, 115), (179, 102), (179, 104), (179, 105), (179, 106), (179, 107), (179, 108), (179, 109), (179, 110), (179, 111), (179, 112), (179, 113), (179, 115), (180, 102), (180, 104), (180, 105), (180, 106), (180, 107), (180, 108), (180, 109), (180, 110), (180, 111), (180, 112), (180, 113), (180, 115), (181, 102), (181, 105), (181, 106), (181, 107), (181, 108), (181, 109), (181, 110), (181, 111), (181, 112), (181, 114), (182, 103), (182, 107), (182, 108), (182, 109), (182, 110), (182, 111), (182, 112), (182, 114), (183, 105), (183, 108), (183, 109), (183, 110), (183, 111), (183, 112), (183, 114), (184, 107), (184, 110), (184, 111), (184, 112), (184, 114), (185, 109), (185, 113), (186, 111), (186, 113), (213, 111), (213, 112), (213, 114), (214, 108), (214, 109), (214, 114), (215, 106), (215, 107), (215, 110), (215, 111),
(215, 113), (216, 105), (216, 108), (216, 109), (216, 110), (216, 111), (216, 113), (217, 103), (217, 106), (217, 107), (217, 108), (217, 109), (217, 110), (217, 111), (217, 113), (218, 102), (218, 105), (218, 106), (218, 107), (218, 108), (218, 109), (218, 110), (218, 111), (218, 113), (218, 114), (219, 102), (219, 104), (219, 105), (219, 106), (219, 107), (219, 108), (219, 109), (219, 110), (219, 111), (219, 112), (219, 114), (220, 102), (220, 104), (220, 105), (220, 106), (220, 107), (220, 108), (220, 109), (220, 110), (220, 111), (220, 112), (220, 113), (220, 115), (221, 102), (221, 104), (221, 105), (221, 106), (221, 107), (221, 108), (221, 109), (221, 110), (221, 111), (221, 112), (221, 113), (221, 115), (222, 102), (222, 104), (222, 105), (222, 106), (222, 107), (222, 108), (222, 109), (222, 110), (222, 111), (222, 112), (222, 113), (222, 114),
(222, 116), (223, 103), (223, 105), (223, 106), (223, 107), (223, 108), (223, 109), (223, 110), (223, 111), (223, 112), (223, 113), (223, 114), (223, 115), (223, 117), (224, 103), (224, 105), (224, 106), (224, 107), (224, 108), (224, 109), (224, 110), (224, 111), (224, 112), (224, 113), (224, 114), (224, 115), (224, 117), (225, 104), (225, 106), (225, 107), (225, 108), (225, 109), (225, 110), (225, 111), (225, 112), (225, 113), (225, 114), (225, 115), (225, 116), (225, 118), (226, 104), (226, 106), (226, 107), (226, 108), (226, 109), (226, 110), (226, 111), (226, 112), (226, 113), (226, 114), (226, 115), (226, 116), (226, 117), (226, 119), (227, 105), (227, 107), (227, 108), (227, 109), (227, 110), (227, 111), (227, 112), (227, 113), (227, 114), (227, 115), (227, 116), (227, 117), (227, 119), (228, 106), (228, 108), (228, 109), (228, 110), (228, 111),
(228, 112), (228, 113), (228, 114), (228, 115), (228, 116), (228, 117), (228, 118), (228, 119), (229, 109), (229, 110), (229, 111), (229, 112), (229, 113), (229, 114), (229, 115), (229, 116), (229, 117), (229, 119), (230, 107), (230, 110), (230, 111), (230, 112), (230, 113), (230, 114), (230, 115), (230, 116), (230, 117), (230, 119), (231, 108), (231, 111), (231, 112), (231, 113), (231, 114), (231, 115), (231, 116), (231, 117), (231, 119), (232, 109), (232, 112), (232, 113), (232, 114), (232, 115), (232, 116), (232, 117), (232, 119), (233, 111), (233, 113), (233, 114), (233, 115), (233, 116), (233, 118), (234, 112), (234, 115), (234, 116), (234, 118), (235, 113), (235, 114), (235, 118), (236, 115), (236, 118), )
coordinates_3A00FF = ((62, 198),
(62, 201), (63, 197), (63, 201), (64, 197), (64, 199), (64, 201), (65, 197), (65, 199), (65, 200), (65, 202), (66, 196), (66, 198), (66, 199), (66, 200), (66, 202), (67, 195), (67, 197), (67, 198), (67, 199), (67, 200), (67, 202), (68, 194), (68, 196), (68, 197), (68, 198), (68, 199), (68, 200), (68, 201), (68, 203), (69, 193), (69, 195), (69, 196), (69, 197), (69, 198), (69, 199), (69, 200), (69, 201), (69, 203), (70, 192), (70, 194), (70, 195), (70, 196), (70, 197), (70, 198), (70, 199), (70, 200), (70, 203), (71, 191), (71, 193), (71, 194), (71, 195), (71, 196), (71, 197), (71, 198), (71, 199), (71, 203), (72, 190), (72, 192), (72, 193), (72, 194), (72, 195), (72, 196), (72, 197), (72, 198), (72, 200), (73, 189), (73, 191), (73, 192), (73, 193), (73, 194), (73, 195), (73, 196),
(73, 197), (73, 199), (74, 188), (74, 191), (74, 192), (74, 193), (74, 194), (74, 195), (74, 196), (74, 198), (75, 188), (75, 190), (75, 191), (75, 192), (75, 193), (75, 194), (75, 195), (75, 196), (76, 190), (76, 191), (76, 192), (76, 193), (76, 194), (76, 195), (76, 197), (77, 188), (77, 191), (77, 192), (77, 193), (77, 194), (77, 196), (78, 190), (78, 192), (78, 193), (78, 195), (79, 181), (79, 191), (79, 194), (80, 181), (80, 192), (80, 193), (81, 181), (82, 177), (82, 181), (83, 176), (83, 180), (84, 176), (84, 178), (84, 180), (85, 176), (85, 178), (85, 180), (86, 180), (89, 180), (89, 181), (90, 180), (309, 180), (310, 180), (310, 181), (313, 178), (313, 180), (314, 176), (314, 180), (315, 176), (315, 178), (315, 180), (316, 176), (316, 180), (317, 177), (317, 179), (317, 181), (318, 181),
(319, 181), (319, 192), (320, 181), (320, 191), (320, 194), (321, 190), (321, 192), (321, 193), (321, 195), (322, 188), (322, 191), (322, 192), (322, 193), (322, 194), (322, 196), (323, 190), (323, 191), (323, 192), (323, 193), (323, 194), (323, 195), (323, 197), (324, 188), (324, 190), (324, 191), (324, 192), (324, 193), (324, 194), (324, 195), (324, 196), (324, 198), (325, 191), (325, 192), (325, 193), (325, 194), (325, 195), (325, 196), (325, 198), (326, 189), (326, 191), (326, 192), (326, 193), (326, 194), (326, 195), (326, 196), (326, 197), (326, 199), (327, 190), (327, 192), (327, 193), (327, 194), (327, 195), (327, 196), (327, 197), (327, 198), (328, 191), (328, 193), (328, 194), (328, 195), (328, 196), (328, 197), (328, 198), (328, 199), (328, 203), (329, 192), (329, 194), (329, 195), (329, 196), (329, 197), (329, 198), (329, 199), (329, 200),
(329, 203), (330, 193), (330, 195), (330, 196), (330, 197), (330, 198), (330, 199), (330, 200), (330, 201), (330, 203), (331, 194), (331, 196), (331, 197), (331, 198), (331, 199), (331, 200), (331, 201), (331, 203), (332, 195), (332, 197), (332, 198), (332, 199), (332, 200), (332, 202), (333, 196), (333, 198), (333, 199), (333, 200), (333, 202), (334, 197), (334, 199), (334, 200), (334, 202), (335, 197), (335, 199), (335, 201), (336, 201), (337, 198), (337, 201), )
| coordinates_006_b7_f = ((113, 130), (113, 131), (114, 129), (114, 131), (115, 128), (115, 131), (116, 127), (116, 129), (116, 130), (116, 132), (117, 126), (117, 128), (117, 129), (117, 130), (117, 131), (117, 133), (118, 125), (118, 127), (118, 128), (118, 129), (118, 130), (118, 131), (118, 132), (118, 135), (119, 125), (119, 127), (119, 128), (119, 129), (119, 130), (119, 131), (119, 132), (119, 133), (119, 135), (120, 125), (120, 127), (120, 128), (120, 129), (120, 130), (120, 131), (120, 132), (120, 133), (120, 134), (120, 136), (121, 125), (121, 127), (121, 128), (121, 129), (121, 130), (121, 131), (121, 132), (121, 133), (121, 134), (121, 136), (122, 126), (122, 128), (122, 129), (122, 130), (122, 131), (122, 132), (122, 133), (122, 134), (122, 136), (123, 127), (123, 129), (123, 130), (123, 131), (123, 132), (123, 133), (123, 134), (123, 135), (123, 137), (124, 127), (124, 130), (124, 131), (124, 132), (124, 133), (124, 134), (124, 135), (124, 137), (125, 128), (125, 131), (125, 132), (125, 133), (125, 134), (125, 135), (125, 137), (126, 129), (126, 132), (126, 133), (126, 134), (126, 135), (126, 137), (127, 131), (127, 134), (127, 135), (127, 137), (128, 132), (128, 137), (129, 134), (129, 137), (269, 137), (270, 134), (270, 137), (271, 132), (271, 137), (272, 131), (272, 134), (272, 135), (272, 137), (273, 129), (273, 132), (273, 133), (273, 134), (273, 135), (273, 137), (274, 128), (274, 131), (274, 132), (274, 133), (274, 134), (274, 135), (274, 137), (275, 127), (275, 130), (275, 131), (275, 132), (275, 133), (275, 134), (275, 135), (275, 137), (276, 129), (276, 130), (276, 131), (276, 132), (276, 133), (276, 134), (276, 135), (276, 137), (277, 126), (277, 128), (277, 129), (277, 130), (277, 131), (277, 132), (277, 133), (277, 134), (277, 136), (278, 125), (278, 127), (278, 128), (278, 129), (278, 130), (278, 131), (278, 132), (278, 133), (278, 134), (278, 136), (279, 125), (279, 127), (279, 128), (279, 129), (279, 130), (279, 131), (279, 132), (279, 133), (279, 134), (279, 136), (280, 125), (280, 127), (280, 128), (280, 129), (280, 130), (280, 131), (280, 132), (280, 133), (280, 135), (281, 125), (281, 127), (281, 128), (281, 129), (281, 130), (281, 131), (281, 132), (281, 135), (282, 126), (282, 128), (282, 129), (282, 130), (282, 131), (282, 133), (283, 127), (283, 129), (283, 130), (283, 132), (284, 128), (284, 131), (285, 129), (285, 131), (286, 131))
coordinates_00_ebff = ((73, 202), (73, 205), (74, 201), (74, 205), (75, 200), (75, 202), (75, 203), (75, 204), (75, 206), (76, 199), (76, 201), (76, 202), (76, 203), (76, 204), (76, 206), (77, 198), (77, 200), (77, 201), (77, 202), (77, 203), (77, 204), (77, 206), (78, 198), (78, 200), (78, 201), (78, 202), (78, 203), (78, 205), (79, 197), (79, 199), (79, 200), (79, 201), (79, 202), (79, 203), (79, 205), (80, 196), (80, 198), (80, 199), (80, 200), (80, 201), (80, 202), (80, 203), (80, 205), (81, 195), (81, 197), (81, 198), (81, 199), (81, 200), (81, 201), (81, 202), (81, 204), (82, 193), (82, 196), (82, 197), (82, 198), (82, 199), (82, 200), (82, 201), (82, 203), (83, 147), (83, 149), (83, 192), (83, 195), (83, 196), (83, 197), (83, 198), (83, 199), (83, 200), (83, 203), (84, 145), (84, 149), (84, 192), (84, 194), (84, 195), (84, 196), (84, 197), (84, 198), (84, 199), (84, 200), (84, 202), (85, 143), (85, 147), (85, 149), (85, 191), (85, 193), (85, 194), (85, 195), (85, 196), (85, 197), (85, 198), (85, 199), (85, 201), (86, 142), (86, 145), (86, 146), (86, 147), (86, 149), (86, 190), (86, 192), (86, 193), (86, 194), (86, 195), (86, 196), (86, 197), (86, 200), (87, 140), (87, 143), (87, 144), (87, 145), (87, 146), (87, 147), (87, 149), (87, 191), (87, 192), (87, 193), (87, 194), (87, 195), (87, 196), (87, 199), (88, 142), (88, 143), (88, 144), (88, 145), (88, 146), (88, 147), (88, 149), (88, 187), (88, 190), (88, 191), (88, 192), (88, 193), (88, 194), (88, 195), (88, 198), (89, 139), (89, 141), (89, 142), (89, 143), (89, 144), (89, 145), (89, 146), (89, 147), (89, 148), (89, 150), (89, 186), (89, 189), (89, 190), (89, 191), (89, 192), (89, 193), (89, 194), (90, 139), (90, 141), (90, 142), (90, 143), (90, 144), (90, 145), (90, 146), (90, 147), (90, 148), (90, 150), (90, 184), (90, 187), (90, 188), (90, 189), (90, 190), (90, 191), (90, 192), (90, 193), (90, 195), (91, 139), (91, 141), (91, 142), (91, 143), (91, 144), (91, 145), (91, 146), (91, 147), (91, 148), (91, 150), (91, 182), (91, 183), (91, 186), (91, 187), (91, 188), (91, 189), (91, 190), (91, 191), (91, 192), (91, 194), (92, 139), (92, 141), (92, 142), (92, 143), (92, 144), (92, 145), (92, 146), (92, 147), (92, 148), (92, 149), (92, 151), (92, 180), (92, 184), (92, 185), (92, 186), (92, 187), (92, 188), (92, 189), (92, 190), (92, 191), (92, 193), (93, 139), (93, 141), (93, 142), (93, 143), (93, 144), (93, 145), (93, 146), (93, 147), (93, 148), (93, 149), (93, 151), (93, 178), (93, 182), (93, 183), (93, 184), (93, 185), (93, 186), (93, 187), (93, 188), (93, 189), (93, 190), (93, 192), (94, 140), (94, 142), (94, 143), (94, 144), (94, 145), (94, 146), (94, 147), (94, 148), (94, 149), (94, 151), (94, 177), (94, 180), (94, 181), (94, 182), (94, 183), (94, 184), (94, 185), (94, 186), (94, 187), (94, 188), (94, 189), (94, 191), (95, 140), (95, 142), (95, 143), (95, 144), (95, 145), (95, 146), (95, 147), (95, 148), (95, 149), (95, 150), (95, 152), (95, 175), (95, 178), (95, 179), (95, 180), (95, 181), (95, 182), (95, 183), (95, 184), (95, 185), (95, 186), (95, 187), (95, 188), (95, 190), (96, 141), (96, 143), (96, 144), (96, 145), (96, 146), (96, 147), (96, 148), (96, 149), (96, 150), (96, 152), (96, 174), (96, 177), (96, 178), (96, 179), (96, 180), (96, 181), (96, 182), (96, 183), (96, 184), (96, 185), (96, 186), (96, 187), (96, 189), (97, 142), (97, 144), (97, 145), (97, 146), (97, 147), (97, 148), (97, 149), (97, 150), (97, 151), (97, 153), (97, 173), (97, 175), (97, 176), (97, 177), (97, 178), (97, 179), (97, 180), (97, 181), (97, 182), (97, 183), (97, 184), (97, 185), (97, 186), (97, 188), (98, 142), (98, 144), (98, 145), (98, 146), (98, 147), (98, 148), (98, 149), (98, 150), (98, 151), (98, 153), (98, 174), (98, 175), (98, 176), (98, 177), (98, 178), (98, 179), (98, 180), (98, 181), (98, 182), (98, 183), (98, 184), (98, 185), (98, 187), (99, 143), (99, 145), (99, 146), (99, 147), (99, 148), (99, 149), (99, 150), (99, 151), (99, 152), (99, 154), (99, 170), (99, 173), (99, 174), (99, 175), (99, 176), (99, 177), (99, 178), (99, 179), (99, 180), (99, 181), (99, 182), (99, 183), (99, 184), (99, 186), (100, 143), (100, 145), (100, 146), (100, 147), (100, 148), (100, 149), (100, 150), (100, 151), (100, 152), (100, 153), (100, 155), (100, 167), (100, 172), (100, 173), (100, 174), (100, 175), (100, 176), (100, 177), (100, 178), (100, 179), (100, 180), (100, 181), (100, 182), (100, 183), (100, 185), (101, 144), (101, 146), (101, 147), (101, 148), (101, 149), (101, 150), (101, 151), (101, 152), (101, 153), (101, 154), (101, 156), (101, 165), (101, 170), (101, 171), (101, 172), (101, 173), (101, 174), (101, 175), (101, 176), (101, 177), (101, 178), (101, 179), (101, 180), (101, 181), (101, 182), (101, 183), (101, 185), (102, 144), (102, 146), (102, 147), (102, 148), (102, 149), (102, 150), (102, 151), (102, 152), (102, 153), (102, 154), (102, 155), (102, 157), (102, 164), (102, 167), (102, 168), (102, 169), (102, 170), (102, 171), (102, 172), (102, 173), (102, 174), (102, 175), (102, 176), (102, 177), (102, 178), (102, 179), (102, 180), (102, 181), (102, 182), (102, 184), (103, 144), (103, 146), (103, 147), (103, 148), (103, 149), (103, 150), (103, 151), (103, 152), (103, 153), (103, 154), (103, 155), (103, 156), (103, 159), (103, 160), (103, 161), (103, 162), (103, 165), (103, 166), (103, 167), (103, 168), (103, 169), (103, 170), (103, 171), (103, 172), (103, 173), (103, 174), (103, 175), (103, 176), (103, 177), (103, 178), (103, 179), (103, 180), (103, 181), (103, 184), (104, 145), (104, 147), (104, 148), (104, 149), (104, 150), (104, 151), (104, 152), (104, 153), (104, 154), (104, 155), (104, 156), (104, 157), (104, 164), (104, 165), (104, 166), (104, 167), (104, 168), (104, 169), (104, 170), (104, 171), (104, 172), (104, 173), (104, 174), (104, 175), (104, 176), (104, 177), (104, 178), (104, 179), (104, 180), (104, 184), (105, 145), (105, 147), (105, 148), (105, 149), (105, 150), (105, 151), (105, 152), (105, 153), (105, 154), (105, 155), (105, 156), (105, 157), (105, 158), (105, 159), (105, 160), (105, 161), (105, 162), (105, 163), (105, 164), (105, 165), (105, 166), (105, 167), (105, 168), (105, 169), (105, 170), (105, 171), (105, 172), (105, 173), (105, 174), (105, 175), (105, 176), (105, 177), (105, 178), (105, 179), (105, 181), (106, 145), (106, 148), (106, 149), (106, 150), (106, 151), (106, 152), (106, 153), (106, 154), (106, 155), (106, 156), (106, 157), (106, 158), (106, 159), (106, 160), (106, 161), (106, 162), (106, 163), (106, 164), (106, 165), (106, 166), (106, 167), (106, 168), (106, 169), (106, 170), (106, 171), (106, 172), (106, 173), (106, 174), (106, 175), (106, 176), (106, 177), (106, 178), (106, 180), (107, 147), (107, 149), (107, 150), (107, 151), (107, 152), (107, 153), (107, 154), (107, 155), (107, 156), (107, 157), (107, 158), (107, 159), (107, 160), (107, 161), (107, 162), (107, 163), (107, 164), (107, 165), (107, 166), (107, 167), (107, 168), (107, 169), (107, 170), (107, 171), (107, 172), (107, 173), (107, 174), (107, 175), (107, 176), (107, 177), (107, 179), (108, 148), (108, 150), (108, 151), (108, 152), (108, 153), (108, 154), (108, 155), (108, 156), (108, 157), (108, 158), (108, 159), (108, 160), (108, 161), (108, 162), (108, 163), (108, 164), (108, 165), (108, 166), (108, 167), (108, 168), (108, 169), (108, 170), (108, 171), (108, 172), (108, 173), (108, 174), (108, 175), (108, 176), (108, 178), (109, 148), (109, 150), (109, 151), (109, 152), (109, 153), (109, 154), (109, 155), (109, 156), (109, 157), (109, 158), (109, 159), (109, 160), (109, 161), (109, 162), (109, 163), (109, 164), (109, 165), (109, 166), (109, 167), (109, 168), (109, 169), (109, 170), (109, 171), (109, 172), (109, 173), (109, 174), (109, 175), (109, 176), (109, 178), (110, 148), (110, 150), (110, 151), (110, 152), (110, 153), (110, 154), (110, 155), (110, 156), (110, 157), (110, 158), (110, 159), (110, 160), (110, 161), (110, 162), (110, 163), (110, 164), (110, 165), (110, 166), (110, 167), (110, 168), (110, 169), (110, 170), (110, 171), (110, 172), (110, 173), (110, 174), (110, 175), (110, 177), (111, 149), (111, 151), (111, 152), (111, 153), (111, 154), (111, 155), (111, 156), (111, 157), (111, 158), (111, 159), (111, 160), (111, 161), (111, 162), (111, 163), (111, 164), (111, 165), (111, 166), (111, 167), (111, 168), (111, 169), (111, 170), (111, 171), (111, 172), (111, 173), (111, 174), (111, 175), (111, 177), (112, 110), (112, 112), (112, 114), (112, 149), (112, 151), (112, 152), (112, 153), (112, 154), (112, 155), (112, 156), (112, 157), (112, 158), (112, 159), (112, 160), (112, 161), (112, 162), (112, 163), (112, 164), (112, 165), (112, 166), (112, 167), (112, 168), (112, 169), (112, 170), (112, 171), (112, 172), (112, 173), (112, 174), (112, 175), (112, 177), (113, 109), (113, 115), (113, 149), (113, 151), (113, 152), (113, 153), (113, 154), (113, 155), (113, 156), (113, 157), (113, 158), (113, 159), (113, 160), (113, 161), (113, 162), (113, 163), (113, 164), (113, 165), (113, 166), (113, 167), (113, 168), (113, 169), (113, 170), (113, 171), (113, 172), (113, 173), (113, 174), (113, 175), (113, 177), (114, 109), (114, 111), (114, 112), (114, 113), (114, 114), (114, 116), (114, 149), (114, 151), (114, 152), (114, 153), (114, 154), (114, 155), (114, 156), (114, 157), (114, 158), (114, 159), (114, 160), (114, 161), (114, 162), (114, 163), (114, 164), (114, 165), (114, 166), (114, 167), (114, 168), (114, 169), (114, 170), (114, 171), (114, 172), (114, 173), (114, 174), (114, 176), (115, 109), (115, 111), (115, 112), (115, 113), (115, 114), (115, 115), (115, 117), (115, 149), (115, 151), (115, 152), (115, 153), (115, 154), (115, 155), (115, 156), (115, 157), (115, 158), (115, 159), (115, 160), (115, 161), (115, 162), (115, 163), (115, 164), (115, 165), (115, 166), (115, 167), (115, 168), (115, 169), (115, 170), (115, 171), (115, 172), (115, 173), (115, 174), (115, 176), (116, 109), (116, 111), (116, 112), (116, 113), (116, 114), (116, 115), (116, 116), (116, 118), (116, 149), (116, 151), (116, 152), (116, 153), (116, 154), (116, 155), (116, 156), (116, 157), (116, 158), (116, 159), (116, 160), (116, 161), (116, 162), (116, 163), (116, 164), (116, 165), (116, 166), (116, 167), (116, 168), (116, 169), (116, 170), (116, 171), (116, 172), (116, 173), (116, 174), (116, 176), (117, 110), (117, 112), (117, 113), (117, 114), (117, 115), (117, 116), (117, 117), (117, 119), (117, 149), (117, 151), (117, 152), (117, 153), (117, 154), (117, 155), (117, 156), (117, 157), (117, 158), (117, 159), (117, 160), (117, 161), (117, 162), (117, 163), (117, 164), (117, 165), (117, 166), (117, 167), (117, 168), (117, 169), (117, 170), (117, 171), (117, 172), (117, 173), (117, 174), (117, 176), (118, 110), (118, 112), (118, 113), (118, 114), (118, 115), (118, 116), (118, 117), (118, 118), (118, 120), (118, 149), (118, 151), (118, 152), (118, 153), (118, 154), (118, 155), (118, 156), (118, 157), (118, 158), (118, 159), (118, 160), (118, 161), (118, 162), (118, 163), (118, 164), (118, 165), (118, 166), (118, 167), (118, 168), (118, 169), (118, 170), (118, 171), (118, 172), (118, 173), (118, 174), (118, 176), (119, 110), (119, 112), (119, 113), (119, 114), (119, 115), (119, 116), (119, 117), (119, 118), (119, 119), (119, 122), (119, 149), (119, 151), (119, 152), (119, 153), (119, 154), (119, 155), (119, 156), (119, 157), (119, 158), (119, 159), (119, 160), (119, 161), (119, 162), (119, 163), (119, 164), (119, 165), (119, 166), (119, 167), (119, 168), (119, 169), (119, 170), (119, 171), (119, 172), (119, 173), (119, 174), (119, 176), (120, 111), (120, 113), (120, 114), (120, 115), (120, 116), (120, 117), (120, 118), (120, 119), (120, 120), (120, 123), (120, 149), (120, 151), (120, 152), (120, 153), (120, 154), (120, 155), (120, 156), (120, 157), (120, 158), (120, 159), (120, 160), (120, 161), (120, 162), (120, 163), (120, 164), (120, 165), (120, 166), (120, 167), (120, 168), (120, 169), (120, 170), (120, 171), (120, 172), (120, 173), (120, 174), (120, 176), (121, 112), (121, 113), (121, 114), (121, 115), (121, 116), (121, 117), (121, 118), (121, 119), (121, 120), (121, 121), (121, 123), (121, 149), (121, 151), (121, 152), (121, 153), (121, 154), (121, 155), (121, 156), (121, 157), (121, 158), (121, 159), (121, 160), (121, 161), (121, 162), (121, 163), (121, 164), (121, 165), (121, 166), (121, 167), (121, 168), (121, 169), (121, 170), (121, 171), (121, 172), (121, 173), (121, 174), (121, 176), (122, 112), (122, 114), (122, 115), (122, 116), (122, 117), (122, 118), (122, 119), (122, 120), (122, 121), (122, 122), (122, 124), (122, 149), (122, 151), (122, 152), (122, 153), (122, 154), (122, 155), (122, 156), (122, 157), (122, 158), (122, 159), (122, 160), (122, 161), (122, 162), (122, 163), (122, 164), (122, 165), (122, 166), (122, 167), (122, 168), (122, 169), (122, 170), (122, 171), (122, 172), (122, 173), (122, 174), (122, 175), (122, 176), (122, 177), (123, 113), (123, 115), (123, 116), (123, 117), (123, 118), (123, 119), (123, 120), (123, 121), (123, 122), (123, 124), (123, 148), (123, 149), (123, 150), (123, 151), (123, 152), (123, 153), (123, 154), (123, 155), (123, 156), (123, 157), (123, 158), (123, 159), (123, 160), (123, 161), (123, 162), (123, 163), (123, 164), (123, 165), (123, 166), (123, 167), (123, 168), (123, 169), (123, 170), (123, 171), (123, 172), (123, 173), (123, 174), (123, 175), (123, 177), (124, 113), (124, 117), (124, 118), (124, 119), (124, 120), (124, 121), (124, 122), (124, 123), (124, 125), (124, 148), (124, 150), (124, 151), (124, 152), (124, 153), (124, 154), (124, 155), (124, 156), (124, 157), (124, 158), (124, 159), (124, 160), (124, 161), (124, 162), (124, 163), (124, 164), (124, 165), (124, 166), (124, 167), (124, 168), (124, 169), (124, 170), (124, 171), (124, 172), (124, 173), (124, 174), (124, 175), (124, 177), (125, 114), (125, 118), (125, 119), (125, 120), (125, 121), (125, 122), (125, 123), (125, 124), (125, 126), (125, 148), (125, 150), (125, 151), (125, 152), (125, 153), (125, 154), (125, 155), (125, 156), (125, 157), (125, 158), (125, 159), (125, 160), (125, 161), (125, 162), (125, 163), (125, 164), (125, 165), (125, 166), (125, 167), (125, 168), (125, 169), (125, 170), (125, 171), (125, 172), (125, 173), (125, 174), (125, 175), (125, 177), (126, 117), (126, 119), (126, 120), (126, 121), (126, 122), (126, 123), (126, 124), (126, 125), (126, 127), (126, 147), (126, 149), (126, 150), (126, 151), (126, 152), (126, 153), (126, 154), (126, 155), (126, 156), (126, 157), (126, 158), (126, 159), (126, 160), (126, 161), (126, 162), (126, 163), (126, 164), (126, 165), (126, 166), (126, 167), (126, 168), (126, 169), (126, 170), (126, 171), (126, 172), (126, 173), (126, 174), (126, 175), (126, 176), (126, 178), (127, 118), (127, 120), (127, 121), (127, 122), (127, 123), (127, 124), (127, 125), (127, 126), (127, 128), (127, 147), (127, 149), (127, 150), (127, 151), (127, 152), (127, 153), (127, 154), (127, 155), (127, 156), (127, 157), (127, 158), (127, 159), (127, 160), (127, 161), (127, 162), (127, 163), (127, 164), (127, 165), (127, 166), (127, 167), (127, 168), (127, 169), (127, 170), (127, 171), (127, 172), (127, 173), (127, 174), (127, 175), (127, 176), (127, 178), (128, 119), (128, 121), (128, 122), (128, 123), (128, 124), (128, 125), (128, 126), (128, 127), (128, 129), (128, 148), (128, 149), (128, 150), (128, 151), (128, 152), (128, 153), (128, 154), (128, 155), (128, 156), (128, 157), (128, 158), (128, 159), (128, 160), (128, 161), (128, 162), (128, 163), (128, 164), (128, 165), (128, 166), (128, 167), (128, 168), (128, 169), (128, 170), (128, 171), (128, 172), (128, 173), (128, 174), (128, 175), (128, 176), (128, 177), (128, 179), (129, 120), (129, 122), (129, 123), (129, 124), (129, 125), (129, 126), (129, 127), (129, 128), (129, 130), (129, 142), (129, 143), (129, 144), (129, 147), (129, 148), (129, 149), (129, 150), (129, 151), (129, 152), (129, 153), (129, 154), (129, 155), (129, 156), (129, 157), (129, 158), (129, 159), (129, 160), (129, 161), (129, 162), (129, 163), (129, 164), (129, 165), (129, 166), (129, 167), (129, 168), (129, 169), (129, 170), (129, 171), (129, 172), (129, 173), (129, 174), (129, 175), (129, 176), (129, 177), (129, 178), (129, 180), (130, 121), (130, 123), (130, 124), (130, 125), (130, 126), (130, 127), (130, 128), (130, 129), (130, 132), (130, 139), (130, 141), (130, 145), (130, 146), (130, 147), (130, 148), (130, 149), (130, 150), (130, 151), (130, 152), (130, 153), (130, 154), (130, 155), (130, 156), (130, 157), (130, 158), (130, 159), (130, 160), (130, 161), (130, 162), (130, 163), (130, 164), (130, 165), (130, 166), (130, 167), (130, 168), (130, 169), (130, 170), (130, 171), (130, 172), (130, 173), (130, 174), (130, 175), (130, 176), (130, 177), (130, 178), (130, 179), (130, 181), (131, 121), (131, 123), (131, 124), (131, 125), (131, 126), (131, 127), (131, 128), (131, 129), (131, 130), (131, 133), (131, 134), (131, 139), (131, 142), (131, 143), (131, 144), (131, 145), (131, 146), (131, 147), (131, 148), (131, 149), (131, 150), (131, 151), (131, 152), (131, 153), (131, 154), (131, 155), (131, 156), (131, 157), (131, 158), (131, 159), (131, 160), (131, 161), (131, 162), (131, 163), (131, 164), (131, 165), (131, 166), (131, 167), (131, 168), (131, 169), (131, 170), (131, 171), (131, 172), (131, 173), (131, 174), (131, 175), (131, 176), (131, 177), (131, 178), (131, 179), (131, 180), (131, 183), (132, 122), (132, 124), (132, 125), (132, 126), (132, 127), (132, 128), (132, 129), (132, 130), (132, 131), (132, 132), (132, 136), (132, 137), (132, 139), (132, 140), (132, 141), (132, 142), (132, 143), (132, 144), (132, 145), (132, 146), (132, 147), (132, 148), (132, 149), (132, 150), (132, 151), (132, 152), (132, 153), (132, 154), (132, 155), (132, 156), (132, 157), (132, 158), (132, 159), (132, 160), (132, 161), (132, 162), (132, 163), (132, 164), (132, 165), (132, 166), (132, 167), (132, 168), (132, 169), (132, 170), (132, 171), (132, 172), (132, 173), (132, 174), (132, 175), (132, 176), (132, 177), (132, 178), (132, 179), (132, 180), (132, 181), (132, 186), (133, 122), (133, 124), (133, 125), (133, 126), (133, 127), (133, 128), (133, 129), (133, 130), (133, 131), (133, 132), (133, 133), (133, 134), (133, 135), (133, 138), (133, 139), (133, 140), (133, 141), (133, 142), (133, 143), (133, 144), (133, 145), (133, 146), (133, 147), (133, 148), (133, 149), (133, 150), (133, 151), (133, 152), (133, 153), (133, 154), (133, 155), (133, 156), (133, 157), (133, 158), (133, 159), (133, 160), (133, 161), (133, 162), (133, 163), (133, 164), (133, 165), (133, 166), (133, 167), (133, 168), (133, 169), (133, 170), (133, 171), (133, 172), (133, 173), (133, 174), (133, 175), (133, 176), (133, 177), (133, 178), (133, 179), (133, 180), (133, 181), (133, 182), (133, 183), (133, 184), (134, 122), (134, 124), (134, 125), (134, 126), (134, 127), (134, 128), (134, 129), (134, 130), (134, 131), (134, 132), (134, 133), (134, 134), (134, 135), (134, 136), (134, 137), (134, 138), (134, 139), (134, 140), (134, 141), (134, 142), (134, 143), (134, 144), (134, 145), (134, 146), (134, 147), (134, 148), (134, 149), (134, 150), (134, 151), (134, 152), (134, 153), (134, 154), (134, 155), (134, 156), (134, 157), (134, 158), (134, 159), (134, 160), (134, 161), (134, 162), (134, 163), (134, 164), (134, 165), (134, 166), (134, 167), (134, 168), (134, 169), (134, 170), (134, 171), (134, 172), (134, 173), (134, 174), (134, 175), (134, 176), (134, 177), (134, 178), (134, 179), (134, 180), (134, 181), (134, 182), (134, 183), (134, 184), (134, 185), (134, 187), (135, 122), (135, 124), (135, 125), (135, 126), (135, 127), (135, 128), (135, 129), (135, 130), (135, 131), (135, 132), (135, 133), (135, 134), (135, 135), (135, 136), (135, 137), (135, 138), (135, 139), (135, 140), (135, 141), (135, 142), (135, 143), (135, 144), (135, 145), (135, 146), (135, 147), (135, 148), (135, 149), (135, 150), (135, 151), (135, 152), (135, 153), (135, 154), (135, 155), (135, 156), (135, 157), (135, 158), (135, 159), (135, 160), (135, 161), (135, 162), (135, 163), (135, 164), (135, 165), (135, 166), (135, 167), (135, 168), (135, 169), (135, 170), (135, 171), (135, 172), (135, 173), (135, 174), (135, 175), (135, 176), (135, 177), (135, 178), (135, 179), (135, 180), (135, 181), (135, 182), (135, 183), (135, 184), (135, 185), (135, 186), (135, 188), (136, 123), (136, 125), (136, 126), (136, 127), (136, 128), (136, 129), (136, 130), (136, 131), (136, 132), (136, 133), (136, 134), (136, 135), (136, 136), (136, 137), (136, 138), (136, 139), (136, 140), (136, 141), (136, 142), (136, 143), (136, 144), (136, 145), (136, 146), (136, 147), (136, 148), (136, 149), (136, 150), (136, 151), (136, 152), (136, 153), (136, 154), (136, 155), (136, 156), (136, 157), (136, 158), (136, 159), (136, 160), (136, 161), (136, 162), (136, 163), (136, 164), (136, 165), (136, 166), (136, 167), (136, 168), (136, 169), (136, 170), (136, 171), (136, 172), (136, 173), (136, 174), (136, 175), (136, 176), (136, 177), (136, 178), (136, 179), (136, 180), (136, 181), (136, 182), (136, 183), (136, 184), (136, 185), (136, 186), (136, 187), (136, 189), (137, 123), (137, 125), (137, 126), (137, 127), (137, 128), (137, 129), (137, 130), (137, 131), (137, 132), (137, 133), (137, 134), (137, 135), (137, 136), (137, 137), (137, 138), (137, 139), (137, 140), (137, 141), (137, 142), (137, 143), (137, 144), (137, 145), (137, 146), (137, 147), (137, 148), (137, 149), (137, 150), (137, 151), (137, 152), (137, 153), (137, 154), (137, 155), (137, 156), (137, 157), (137, 158), (137, 159), (137, 160), (137, 161), (137, 162), (137, 163), (137, 164), (137, 165), (137, 166), (137, 167), (137, 168), (137, 169), (137, 170), (137, 171), (137, 172), (137, 173), (137, 174), (137, 175), (137, 176), (137, 177), (137, 178), (137, 179), (137, 180), (137, 181), (137, 182), (137, 183), (137, 184), (137, 185), (137, 186), (137, 187), (137, 188), (137, 190), (138, 123), (138, 125), (138, 126), (138, 127), (138, 128), (138, 129), (138, 130), (138, 131), (138, 132), (138, 133), (138, 134), (138, 135), (138, 136), (138, 137), (138, 138), (138, 139), (138, 140), (138, 141), (138, 142), (138, 143), (138, 144), (138, 145), (138, 146), (138, 147), (138, 148), (138, 149), (138, 150), (138, 151), (138, 152), (138, 153), (138, 154), (138, 155), (138, 156), (138, 157), (138, 158), (138, 159), (138, 160), (138, 161), (138, 162), (138, 163), (138, 164), (138, 165), (138, 166), (138, 167), (138, 168), (138, 169), (138, 170), (138, 171), (138, 172), (138, 173), (138, 174), (138, 175), (138, 176), (138, 177), (138, 178), (138, 179), (138, 180), (138, 181), (138, 182), (138, 183), (138, 184), (138, 185), (138, 186), (138, 187), (138, 188), (138, 190), (139, 123), (139, 125), (139, 126), (139, 127), (139, 128), (139, 129), (139, 130), (139, 131), (139, 132), (139, 133), (139, 134), (139, 135), (139, 136), (139, 137), (139, 138), (139, 139), (139, 140), (139, 141), (139, 142), (139, 143), (139, 144), (139, 145), (139, 146), (139, 147), (139, 148), (139, 149), (139, 150), (139, 151), (139, 152), (139, 153), (139, 154), (139, 155), (139, 156), (139, 157), (139, 158), (139, 159), (139, 160), (139, 161), (139, 162), (139, 163), (139, 164), (139, 165), (139, 166), (139, 167), (139, 168), (139, 169), (139, 170), (139, 171), (139, 172), (139, 173), (139, 174), (139, 175), (139, 176), (139, 177), (139, 178), (139, 179), (139, 180), (139, 181), (139, 182), (139, 183), (139, 184), (139, 185), (139, 186), (139, 187), (139, 188), (139, 189), (139, 191), (140, 123), (140, 125), (140, 126), (140, 127), (140, 128), (140, 129), (140, 130), (140, 131), (140, 132), (140, 133), (140, 134), (140, 135), (140, 136), (140, 137), (140, 138), (140, 139), (140, 140), (140, 141), (140, 142), (140, 143), (140, 144), (140, 145), (140, 146), (140, 147), (140, 148), (140, 149), (140, 150), (140, 151), (140, 152), (140, 153), (140, 154), (140, 155), (140, 156), (140, 157), (140, 158), (140, 159), (140, 160), (140, 161), (140, 162), (140, 163), (140, 164), (140, 165), (140, 166), (140, 167), (140, 168), (140, 169), (140, 170), (140, 171), (140, 172), (140, 173), (140, 174), (140, 175), (140, 176), (140, 177), (140, 178), (140, 179), (140, 180), (140, 181), (140, 182), (140, 183), (140, 184), (140, 185), (140, 186), (140, 187), (140, 188), (140, 189), (140, 191), (141, 122), (141, 123), (141, 124), (141, 125), (141, 126), (141, 127), (141, 128), (141, 129), (141, 130), (141, 131), (141, 132), (141, 133), (141, 134), (141, 135), (141, 136), (141, 137), (141, 138), (141, 139), (141, 140), (141, 141), (141, 142), (141, 143), (141, 144), (141, 145), (141, 146), (141, 147), (141, 148), (141, 149), (141, 150), (141, 151), (141, 152), (141, 153), (141, 154), (141, 155), (141, 156), (141, 157), (141, 158), (141, 159), (141, 160), (141, 161), (141, 162), (141, 163), (141, 164), (141, 165), (141, 166), (141, 167), (141, 168), (141, 169), (141, 170), (141, 171), (141, 172), (141, 173), (141, 174), (141, 175), (141, 176), (141, 177), (141, 178), (141, 179), (141, 180), (141, 181), (141, 182), (141, 183), (141, 184), (141, 185), (141, 186), (141, 187), (141, 188), (141, 189), (141, 191), (142, 122), (142, 124), (142, 125), (142, 126), (142, 127), (142, 128), (142, 129), (142, 130), (142, 131), (142, 132), (142, 133), (142, 134), (142, 135), (142, 136), (142, 137), (142, 138), (142, 139), (142, 140), (142, 141), (142, 142), (142, 143), (142, 144), (142, 145), (142, 146), (142, 147), (142, 148), (142, 149), (142, 150), (142, 151), (142, 152), (142, 153), (142, 154), (142, 155), (142, 156), (142, 157), (142, 158), (142, 159), (142, 160), (142, 161), (142, 162), (142, 163), (142, 164), (142, 165), (142, 166), (142, 167), (142, 168), (142, 169), (142, 170), (142, 171), (142, 172), (142, 173), (142, 174), (142, 175), (142, 176), (142, 177), (142, 178), (142, 179), (142, 180), (142, 181), (142, 182), (142, 183), (142, 184), (142, 185), (142, 186), (142, 187), (142, 188), (142, 189), (142, 190), (142, 192), (143, 122), (143, 124), (143, 125), (143, 126), (143, 127), (143, 128), (143, 129), (143, 130), (143, 131), (143, 132), (143, 133), (143, 134), (143, 135), (143, 136), (143, 137), (143, 138), (143, 139), (143, 140), (143, 141), (143, 142), (143, 143), (143, 144), (143, 145), (143, 146), (143, 147), (143, 148), (143, 149), (143, 150), (143, 151), (143, 152), (143, 153), (143, 154), (143, 155), (143, 156), (143, 157), (143, 158), (143, 159), (143, 160), (143, 161), (143, 166), (143, 167), (143, 168), (143, 169), (143, 170), (143, 171), (143, 172), (143, 173), (143, 174), (143, 175), (143, 176), (143, 177), (143, 178), (143, 179), (143, 180), (143, 181), (143, 182), (143, 183), (143, 184), (143, 185), (143, 186), (143, 187), (143, 188), (143, 189), (143, 190), (143, 192), (144, 121), (144, 123), (144, 124), (144, 125), (144, 126), (144, 127), (144, 128), (144, 129), (144, 130), (144, 131), (144, 132), (144, 133), (144, 134), (144, 135), (144, 136), (144, 137), (144, 138), (144, 139), (144, 140), (144, 141), (144, 142), (144, 143), (144, 144), (144, 145), (144, 146), (144, 147), (144, 148), (144, 149), (144, 150), (144, 151), (144, 152), (144, 153), (144, 154), (144, 155), (144, 156), (144, 157), (144, 158), (144, 162), (144, 163), (144, 164), (144, 165), (144, 168), (144, 169), (144, 170), (144, 171), (144, 172), (144, 173), (144, 174), (144, 175), (144, 176), (144, 177), (144, 178), (144, 179), (144, 180), (144, 181), (144, 182), (144, 183), (144, 184), (144, 185), (144, 186), (144, 187), (144, 188), (144, 189), (144, 190), (144, 192), (145, 121), (145, 123), (145, 124), (145, 125), (145, 126), (145, 127), (145, 128), (145, 129), (145, 130), (145, 131), (145, 132), (145, 133), (145, 134), (145, 135), (145, 136), (145, 137), (145, 138), (145, 139), (145, 140), (145, 141), (145, 142), (145, 143), (145, 144), (145, 145), (145, 146), (145, 147), (145, 148), (145, 149), (145, 150), (145, 151), (145, 152), (145, 153), (145, 154), (145, 155), (145, 156), (145, 157), (145, 160), (145, 166), (145, 167), (145, 170), (145, 171), (145, 172), (145, 173), (145, 174), (145, 175), (145, 176), (145, 177), (145, 178), (145, 179), (145, 180), (145, 181), (145, 182), (145, 183), (145, 184), (145, 185), (145, 186), (145, 187), (145, 188), (145, 189), (145, 190), (145, 192), (146, 120), (146, 122), (146, 123), (146, 124), (146, 125), (146, 126), (146, 127), (146, 128), (146, 129), (146, 130), (146, 131), (146, 132), (146, 133), (146, 134), (146, 135), (146, 136), (146, 137), (146, 138), (146, 139), (146, 140), (146, 141), (146, 142), (146, 143), (146, 144), (146, 145), (146, 146), (146, 147), (146, 148), (146, 149), (146, 150), (146, 151), (146, 152), (146, 153), (146, 154), (146, 155), (146, 158), (146, 168), (146, 171), (146, 172), (146, 173), (146, 174), (146, 175), (146, 176), (146, 177), (146, 178), (146, 179), (146, 180), (146, 181), (146, 182), (146, 183), (146, 184), (146, 185), (146, 186), (146, 187), (146, 188), (146, 189), (146, 190), (146, 192), (147, 119), (147, 121), (147, 122), (147, 123), (147, 124), (147, 125), (147, 126), (147, 127), (147, 128), (147, 129), (147, 130), (147, 131), (147, 132), (147, 133), (147, 134), (147, 135), (147, 136), (147, 137), (147, 138), (147, 139), (147, 140), (147, 141), (147, 142), (147, 143), (147, 144), (147, 145), (147, 146), (147, 147), (147, 148), (147, 149), (147, 150), (147, 151), (147, 152), (147, 153), (147, 154), (147, 157), (147, 170), (147, 172), (147, 173), (147, 174), (147, 175), (147, 176), (147, 177), (147, 178), (147, 179), (147, 180), (147, 181), (147, 182), (147, 183), (147, 184), (147, 185), (147, 186), (147, 187), (147, 188), (147, 189), (147, 190), (147, 192), (148, 118), (148, 120), (148, 121), (148, 122), (148, 123), (148, 124), (148, 125), (148, 126), (148, 127), (148, 128), (148, 129), (148, 130), (148, 131), (148, 132), (148, 133), (148, 134), (148, 135), (148, 136), (148, 137), (148, 138), (148, 139), (148, 140), (148, 141), (148, 142), (148, 143), (148, 144), (148, 145), (148, 146), (148, 147), (148, 148), (148, 149), (148, 150), (148, 151), (148, 152), (148, 153), (148, 154), (148, 156), (148, 171), (148, 173), (148, 174), (148, 175), (148, 176), (148, 177), (148, 178), (148, 179), (148, 180), (148, 181), (148, 182), (148, 183), (148, 184), (148, 185), (148, 186), (148, 187), (148, 188), (148, 189), (148, 190), (148, 192), (149, 119), (149, 120), (149, 121), (149, 122), (149, 123), (149, 124), (149, 125), (149, 126), (149, 127), (149, 128), (149, 129), (149, 130), (149, 131), (149, 132), (149, 133), (149, 134), (149, 135), (149, 136), (149, 137), (149, 138), (149, 139), (149, 140), (149, 141), (149, 142), (149, 143), (149, 144), (149, 145), (149, 146), (149, 147), (149, 148), (149, 149), (149, 150), (149, 151), (149, 152), (149, 153), (149, 155), (149, 172), (149, 174), (149, 175), (149, 176), (149, 177), (149, 178), (149, 179), (149, 180), (149, 181), (149, 182), (149, 183), (149, 184), (149, 185), (149, 186), (149, 187), (149, 188), (149, 189), (149, 190), (149, 192), (150, 115), (150, 118), (150, 119), (150, 120), (150, 121), (150, 122), (150, 123), (150, 124), (150, 125), (150, 126), (150, 127), (150, 128), (150, 129), (150, 130), (150, 131), (150, 132), (150, 133), (150, 134), (150, 135), (150, 136), (150, 137), (150, 138), (150, 139), (150, 140), (150, 141), (150, 142), (150, 143), (150, 144), (150, 145), (150, 146), (150, 147), (150, 148), (150, 149), (150, 150), (150, 151), (150, 152), (150, 154), (150, 173), (150, 175), (150, 176), (150, 177), (150, 178), (150, 179), (150, 180), (150, 181), (150, 182), (150, 183), (150, 184), (150, 185), (150, 186), (150, 187), (150, 188), (150, 189), (150, 190), (150, 192), (151, 112), (151, 113), (151, 116), (151, 117), (151, 118), (151, 119), (151, 120), (151, 121), (151, 122), (151, 123), (151, 124), (151, 125), (151, 126), (151, 127), (151, 128), (151, 129), (151, 130), (151, 131), (151, 132), (151, 133), (151, 134), (151, 135), (151, 136), (151, 137), (151, 138), (151, 139), (151, 140), (151, 141), (151, 142), (151, 143), (151, 144), (151, 145), (151, 146), (151, 147), (151, 148), (151, 149), (151, 150), (151, 151), (151, 153), (151, 174), (151, 176), (151, 177), (151, 178), (151, 179), (151, 180), (151, 181), (151, 182), (151, 183), (151, 184), (151, 185), (151, 186), (151, 187), (151, 188), (151, 192), (152, 106), (152, 107), (152, 108), (152, 109), (152, 110), (152, 111), (152, 115), (152, 116), (152, 117), (152, 118), (152, 119), (152, 120), (152, 121), (152, 122), (152, 123), (152, 124), (152, 125), (152, 126), (152, 127), (152, 128), (152, 129), (152, 130), (152, 131), (152, 132), (152, 133), (152, 134), (152, 135), (152, 136), (152, 137), (152, 138), (152, 139), (152, 140), (152, 141), (152, 142), (152, 143), (152, 144), (152, 145), (152, 146), (152, 147), (152, 148), (152, 149), (152, 150), (152, 151), (152, 153), (152, 175), (152, 177), (152, 178), (152, 179), (152, 180), (152, 181), (152, 182), (152, 183), (152, 184), (152, 185), (152, 186), (152, 187), (152, 190), (153, 94), (153, 96), (153, 97), (153, 98), (153, 99), (153, 100), (153, 101), (153, 102), (153, 103), (153, 104), (153, 105), (153, 112), (153, 113), (153, 114), (153, 115), (153, 116), (153, 117), (153, 118), (153, 119), (153, 120), (153, 121), (153, 122), (153, 123), (153, 124), (153, 125), (153, 126), (153, 127), (153, 128), (153, 129), (153, 130), (153, 131), (153, 132), (153, 133), (153, 134), (153, 135), (153, 136), (153, 137), (153, 138), (153, 139), (153, 140), (153, 141), (153, 142), (153, 143), (153, 144), (153, 145), (153, 146), (153, 147), (153, 148), (153, 149), (153, 150), (153, 152), (153, 176), (153, 178), (153, 179), (153, 180), (153, 181), (153, 182), (153, 183), (153, 184), (153, 185), (153, 186), (154, 93), (154, 106), (154, 107), (154, 108), (154, 109), (154, 110), (154, 111), (154, 112), (154, 113), (154, 114), (154, 115), (154, 116), (154, 117), (154, 118), (154, 119), (154, 120), (154, 121), (154, 122), (154, 123), (154, 124), (154, 125), (154, 126), (154, 127), (154, 128), (154, 129), (154, 130), (154, 131), (154, 132), (154, 133), (154, 134), (154, 135), (154, 136), (154, 137), (154, 138), (154, 139), (154, 140), (154, 141), (154, 142), (154, 143), (154, 144), (154, 145), (154, 146), (154, 147), (154, 148), (154, 149), (154, 151), (154, 152), (154, 176), (154, 178), (154, 179), (154, 180), (154, 181), (154, 182), (154, 183), (154, 184), (154, 185), (154, 186), (154, 188), (155, 92), (155, 95), (155, 96), (155, 97), (155, 98), (155, 99), (155, 100), (155, 101), (155, 102), (155, 103), (155, 104), (155, 105), (155, 106), (155, 107), (155, 108), (155, 109), (155, 110), (155, 111), (155, 112), (155, 113), (155, 114), (155, 115), (155, 116), (155, 117), (155, 118), (155, 119), (155, 120), (155, 121), (155, 122), (155, 123), (155, 124), (155, 125), (155, 126), (155, 127), (155, 128), (155, 129), (155, 130), (155, 131), (155, 132), (155, 133), (155, 134), (155, 135), (155, 136), (155, 137), (155, 138), (155, 139), (155, 140), (155, 141), (155, 142), (155, 143), (155, 144), (155, 145), (155, 146), (155, 147), (155, 148), (155, 149), (155, 151), (155, 177), (155, 179), (155, 180), (155, 181), (155, 182), (155, 183), (155, 184), (155, 185), (155, 187), (156, 92), (156, 94), (156, 95), (156, 96), (156, 97), (156, 98), (156, 99), (156, 100), (156, 101), (156, 102), (156, 103), (156, 104), (156, 105), (156, 106), (156, 107), (156, 108), (156, 109), (156, 110), (156, 111), (156, 112), (156, 113), (156, 114), (156, 115), (156, 116), (156, 117), (156, 118), (156, 119), (156, 120), (156, 121), (156, 122), (156, 123), (156, 129), (156, 130), (156, 131), (156, 132), (156, 133), (156, 134), (156, 135), (156, 136), (156, 137), (156, 138), (156, 139), (156, 140), (156, 141), (156, 142), (156, 143), (156, 144), (156, 145), (156, 146), (156, 147), (156, 148), (156, 149), (156, 151), (156, 178), (156, 179), (156, 180), (156, 181), (156, 182), (156, 183), (156, 184), (156, 186), (157, 91), (157, 93), (157, 94), (157, 95), (157, 96), (157, 97), (157, 98), (157, 99), (157, 100), (157, 101), (157, 102), (157, 103), (157, 104), (157, 105), (157, 106), (157, 107), (157, 108), (157, 109), (157, 110), (157, 111), (157, 112), (157, 113), (157, 114), (157, 115), (157, 116), (157, 117), (157, 118), (157, 119), (157, 120), (157, 121), (157, 122), (157, 125), (157, 126), (157, 127), (157, 128), (157, 131), (157, 132), (157, 133), (157, 134), (157, 135), (157, 136), (157, 137), (157, 138), (157, 139), (157, 140), (157, 141), (157, 142), (157, 143), (157, 144), (157, 145), (157, 146), (157, 147), (157, 148), (157, 149), (157, 151), (157, 178), (157, 180), (157, 181), (157, 182), (157, 183), (157, 184), (157, 186), (158, 90), (158, 92), (158, 93), (158, 94), (158, 95), (158, 96), (158, 97), (158, 98), (158, 99), (158, 100), (158, 101), (158, 102), (158, 103), (158, 104), (158, 105), (158, 106), (158, 107), (158, 108), (158, 109), (158, 110), (158, 111), (158, 112), (158, 113), (158, 114), (158, 115), (158, 116), (158, 117), (158, 118), (158, 119), (158, 120), (158, 123), (158, 129), (158, 132), (158, 133), (158, 134), (158, 135), (158, 136), (158, 137), (158, 138), (158, 139), (158, 140), (158, 141), (158, 142), (158, 143), (158, 144), (158, 145), (158, 146), (158, 147), (158, 148), (158, 149), (158, 151), (158, 179), (158, 181), (158, 182), (158, 183), (158, 185), (159, 90), (159, 92), (159, 93), (159, 94), (159, 95), (159, 96), (159, 97), (159, 98), (159, 99), (159, 100), (159, 101), (159, 102), (159, 103), (159, 104), (159, 105), (159, 106), (159, 107), (159, 108), (159, 109), (159, 110), (159, 111), (159, 112), (159, 113), (159, 114), (159, 115), (159, 116), (159, 117), (159, 122), (159, 131), (159, 133), (159, 134), (159, 135), (159, 136), (159, 137), (159, 138), (159, 139), (159, 140), (159, 141), (159, 142), (159, 143), (159, 144), (159, 145), (159, 146), (159, 147), (159, 148), (159, 149), (159, 151), (159, 179), (159, 181), (159, 182), (159, 183), (159, 185), (160, 89), (160, 91), (160, 92), (160, 93), (160, 94), (160, 95), (160, 96), (160, 97), (160, 98), (160, 99), (160, 100), (160, 101), (160, 102), (160, 103), (160, 104), (160, 105), (160, 106), (160, 107), (160, 108), (160, 109), (160, 110), (160, 111), (160, 112), (160, 113), (160, 114), (160, 118), (160, 120), (160, 132), (160, 134), (160, 135), (160, 136), (160, 137), (160, 138), (160, 139), (160, 140), (160, 141), (160, 142), (160, 143), (160, 144), (160, 145), (160, 146), (160, 147), (160, 148), (160, 149), (160, 150), (160, 152), (160, 179), (160, 181), (160, 182), (160, 183), (160, 185), (161, 89), (161, 90), (161, 91), (161, 92), (161, 93), (161, 94), (161, 95), (161, 96), (161, 97), (161, 98), (161, 99), (161, 100), (161, 101), (161, 102), (161, 103), (161, 104), (161, 105), (161, 106), (161, 107), (161, 108), (161, 109), (161, 110), (161, 111), (161, 112), (161, 115), (161, 116), (161, 117), (161, 133), (161, 135), (161, 136), (161, 137), (161, 138), (161, 139), (161, 140), (161, 141), (161, 142), (161, 143), (161, 144), (161, 145), (161, 146), (161, 147), (161, 148), (161, 149), (161, 150), (161, 152), (161, 180), (161, 182), (161, 184), (162, 88), (162, 90), (162, 91), (162, 92), (162, 93), (162, 94), (162, 95), (162, 96), (162, 97), (162, 98), (162, 99), (162, 100), (162, 101), (162, 102), (162, 103), (162, 104), (162, 105), (162, 106), (162, 107), (162, 108), (162, 109), (162, 110), (162, 113), (162, 114), (162, 134), (162, 136), (162, 137), (162, 138), (162, 139), (162, 140), (162, 141), (162, 142), (162, 143), (162, 144), (162, 145), (162, 146), (162, 147), (162, 148), (162, 149), (162, 150), (162, 152), (162, 180), (162, 182), (162, 184), (163, 87), (163, 89), (163, 90), (163, 91), (163, 92), (163, 93), (163, 94), (163, 95), (163, 96), (163, 97), (163, 98), (163, 99), (163, 100), (163, 101), (163, 102), (163, 103), (163, 104), (163, 105), (163, 106), (163, 107), (163, 108), (163, 109), (163, 112), (163, 135), (163, 137), (163, 138), (163, 139), (163, 140), (163, 141), (163, 142), (163, 143), (163, 144), (163, 145), (163, 146), (163, 147), (163, 148), (163, 149), (163, 150), (163, 151), (163, 153), (163, 180), (163, 181), (163, 182), (163, 184), (164, 87), (164, 89), (164, 90), (164, 91), (164, 92), (164, 93), (164, 94), (164, 95), (164, 96), (164, 97), (164, 98), (164, 99), (164, 100), (164, 101), (164, 102), (164, 103), (164, 104), (164, 105), (164, 106), (164, 107), (164, 108), (164, 110), (164, 136), (164, 138), (164, 139), (164, 140), (164, 141), (164, 142), (164, 143), (164, 144), (164, 145), (164, 146), (164, 147), (164, 148), (164, 149), (164, 150), (164, 151), (164, 153), (164, 181), (164, 184), (165, 86), (165, 88), (165, 89), (165, 90), (165, 91), (165, 92), (165, 93), (165, 94), (165, 95), (165, 96), (165, 97), (165, 98), (165, 99), (165, 100), (165, 101), (165, 102), (165, 103), (165, 104), (165, 105), (165, 106), (165, 107), (165, 109), (165, 136), (165, 138), (165, 139), (165, 140), (165, 141), (165, 142), (165, 143), (165, 144), (165, 145), (165, 146), (165, 147), (165, 148), (165, 149), (165, 150), (165, 151), (165, 153), (165, 181), (165, 184), (166, 86), (166, 88), (166, 89), (166, 90), (166, 91), (166, 92), (166, 93), (166, 94), (166, 95), (166, 96), (166, 97), (166, 98), (166, 99), (166, 100), (166, 101), (166, 102), (166, 103), (166, 104), (166, 105), (166, 106), (166, 108), (166, 136), (166, 138), (166, 139), (166, 140), (166, 141), (166, 142), (166, 143), (166, 144), (166, 145), (166, 146), (166, 147), (166, 148), (166, 149), (166, 150), (166, 151), (166, 153), (166, 181), (166, 184), (167, 85), (167, 87), (167, 88), (167, 89), (167, 90), (167, 91), (167, 92), (167, 93), (167, 94), (167, 95), (167, 96), (167, 97), (167, 98), (167, 99), (167, 100), (167, 101), (167, 102), (167, 103), (167, 104), (167, 105), (167, 107), (167, 136), (167, 138), (167, 139), (167, 140), (167, 141), (167, 142), (167, 143), (167, 144), (167, 145), (167, 146), (167, 147), (167, 148), (167, 149), (167, 150), (167, 151), (167, 153), (167, 181), (167, 183), (167, 185), (168, 85), (168, 87), (168, 88), (168, 89), (168, 90), (168, 91), (168, 92), (168, 93), (168, 94), (168, 95), (168, 96), (168, 97), (168, 98), (168, 99), (168, 100), (168, 101), (168, 102), (168, 103), (168, 104), (168, 106), (168, 136), (168, 138), (168, 139), (168, 140), (168, 141), (168, 142), (168, 143), (168, 144), (168, 145), (168, 146), (168, 147), (168, 148), (168, 149), (168, 150), (168, 151), (168, 153), (168, 181), (168, 183), (168, 185), (169, 85), (169, 87), (169, 88), (169, 89), (169, 90), (169, 91), (169, 92), (169, 93), (169, 94), (169, 95), (169, 96), (169, 97), (169, 98), (169, 99), (169, 100), (169, 101), (169, 102), (169, 103), (169, 105), (169, 136), (169, 138), (169, 139), (169, 140), (169, 141), (169, 142), (169, 143), (169, 144), (169, 145), (169, 146), (169, 147), (169, 148), (169, 149), (169, 150), (169, 151), (169, 153), (169, 182), (169, 184), (169, 186), (170, 84), (170, 86), (170, 87), (170, 88), (170, 89), (170, 90), (170, 91), (170, 92), (170, 93), (170, 94), (170, 95), (170, 96), (170, 97), (170, 98), (170, 99), (170, 100), (170, 101), (170, 102), (170, 104), (170, 136), (170, 138), (170, 139), (170, 140), (170, 141), (170, 142), (170, 143), (170, 144), (170, 145), (170, 146), (170, 147), (170, 148), (170, 149), (170, 150), (170, 151), (170, 152), (170, 153), (170, 154), (170, 182), (170, 184), (170, 185), (170, 187), (171, 84), (171, 86), (171, 87), (171, 88), (171, 89), (171, 90), (171, 91), (171, 92), (171, 93), (171, 94), (171, 95), (171, 96), (171, 97), (171, 98), (171, 99), (171, 100), (171, 101), (171, 103), (171, 136), (171, 138), (171, 139), (171, 140), (171, 141), (171, 142), (171, 143), (171, 144), (171, 145), (171, 146), (171, 147), (171, 148), (171, 149), (171, 150), (171, 151), (171, 152), (171, 154), (171, 181), (171, 182), (171, 183), (171, 184), (171, 185), (171, 186), (171, 189), (172, 83), (172, 85), (172, 86), (172, 87), (172, 88), (172, 89), (172, 90), (172, 91), (172, 92), (172, 93), (172, 94), (172, 95), (172, 96), (172, 97), (172, 98), (172, 99), (172, 100), (172, 101), (172, 103), (172, 136), (172, 138), (172, 139), (172, 140), (172, 141), (172, 142), (172, 143), (172, 144), (172, 145), (172, 146), (172, 147), (172, 148), (172, 149), (172, 150), (172, 151), (172, 152), (172, 153), (172, 155), (172, 181), (172, 183), (172, 184), (172, 185), (172, 186), (172, 187), (172, 190), (172, 191), (172, 192), (172, 193), (173, 83), (173, 85), (173, 86), (173, 87), (173, 88), (173, 89), (173, 90), (173, 91), (173, 92), (173, 93), (173, 94), (173, 95), (173, 96), (173, 97), (173, 98), (173, 99), (173, 100), (173, 102), (173, 136), (173, 138), (173, 139), (173, 140), (173, 141), (173, 142), (173, 143), (173, 144), (173, 145), (173, 146), (173, 147), (173, 148), (173, 149), (173, 150), (173, 151), (173, 152), (173, 153), (173, 155), (173, 181), (173, 183), (173, 184), (173, 185), (173, 186), (173, 187), (173, 188), (173, 189), (173, 195), (174, 83), (174, 85), (174, 86), (174, 87), (174, 88), (174, 89), (174, 90), (174, 91), (174, 92), (174, 93), (174, 94), (174, 95), (174, 96), (174, 97), (174, 98), (174, 99), (174, 101), (174, 135), (174, 137), (174, 138), (174, 139), (174, 140), (174, 141), (174, 142), (174, 143), (174, 144), (174, 145), (174, 146), (174, 147), (174, 148), (174, 149), (174, 150), (174, 151), (174, 152), (174, 153), (174, 154), (174, 156), (174, 181), (174, 183), (174, 184), (174, 185), (174, 186), (174, 187), (174, 188), (174, 189), (174, 190), (174, 191), (174, 192), (174, 193), (175, 82), (175, 84), (175, 85), (175, 86), (175, 87), (175, 88), (175, 89), (175, 90), (175, 91), (175, 92), (175, 93), (175, 94), (175, 95), (175, 96), (175, 97), (175, 98), (175, 99), (175, 101), (175, 135), (175, 137), (175, 138), (175, 139), (175, 140), (175, 141), (175, 142), (175, 143), (175, 144), (175, 145), (175, 146), (175, 147), (175, 148), (175, 149), (175, 150), (175, 151), (175, 152), (175, 153), (175, 154), (175, 155), (175, 157), (175, 180), (175, 182), (175, 183), (175, 184), (175, 185), (175, 186), (175, 187), (175, 188), (175, 189), (175, 190), (175, 191), (175, 192), (175, 193), (175, 194), (175, 195), (175, 199), (176, 82), (176, 84), (176, 85), (176, 86), (176, 87), (176, 88), (176, 89), (176, 90), (176, 91), (176, 92), (176, 93), (176, 94), (176, 95), (176, 96), (176, 97), (176, 98), (176, 99), (176, 100), (176, 101), (176, 135), (176, 137), (176, 138), (176, 139), (176, 140), (176, 141), (176, 142), (176, 143), (176, 144), (176, 145), (176, 146), (176, 147), (176, 148), (176, 149), (176, 150), (176, 151), (176, 152), (176, 153), (176, 154), (176, 155), (176, 156), (176, 158), (176, 180), (176, 182), (176, 183), (176, 184), (176, 185), (176, 186), (176, 187), (176, 188), (176, 189), (176, 190), (176, 191), (176, 192), (176, 193), (176, 194), (176, 195), (176, 196), (176, 197), (176, 200), (177, 82), (177, 84), (177, 85), (177, 86), (177, 87), (177, 88), (177, 89), (177, 90), (177, 91), (177, 92), (177, 93), (177, 94), (177, 95), (177, 96), (177, 97), (177, 98), (177, 100), (177, 134), (177, 136), (177, 137), (177, 138), (177, 139), (177, 140), (177, 141), (177, 142), (177, 143), (177, 144), (177, 145), (177, 146), (177, 147), (177, 148), (177, 149), (177, 150), (177, 151), (177, 152), (177, 153), (177, 154), (177, 155), (177, 156), (177, 159), (177, 179), (177, 181), (177, 182), (177, 183), (177, 184), (177, 185), (177, 186), (177, 187), (177, 188), (177, 189), (177, 190), (177, 191), (177, 192), (177, 193), (177, 194), (177, 195), (177, 196), (177, 197), (177, 198), (177, 199), (177, 201), (178, 81), (178, 83), (178, 84), (178, 85), (178, 86), (178, 87), (178, 88), (178, 89), (178, 90), (178, 91), (178, 92), (178, 93), (178, 94), (178, 95), (178, 96), (178, 97), (178, 98), (178, 100), (178, 134), (178, 136), (178, 137), (178, 138), (178, 139), (178, 140), (178, 141), (178, 142), (178, 143), (178, 144), (178, 145), (178, 146), (178, 147), (178, 148), (178, 149), (178, 150), (178, 151), (178, 152), (178, 153), (178, 154), (178, 155), (178, 156), (178, 157), (178, 160), (178, 178), (178, 180), (178, 181), (178, 182), (178, 183), (178, 184), (178, 185), (178, 186), (178, 187), (178, 188), (178, 189), (178, 190), (178, 191), (178, 192), (178, 193), (178, 194), (178, 195), (178, 196), (178, 197), (178, 198), (178, 199), (178, 200), (178, 202), (179, 81), (179, 83), (179, 84), (179, 85), (179, 86), (179, 87), (179, 88), (179, 89), (179, 90), (179, 91), (179, 92), (179, 93), (179, 94), (179, 95), (179, 96), (179, 100), (179, 134), (179, 136), (179, 137), (179, 138), (179, 139), (179, 140), (179, 141), (179, 142), (179, 143), (179, 144), (179, 145), (179, 146), (179, 147), (179, 148), (179, 149), (179, 150), (179, 151), (179, 152), (179, 153), (179, 154), (179, 155), (179, 156), (179, 157), (179, 158), (179, 161), (179, 174), (179, 176), (179, 179), (179, 180), (179, 181), (179, 182), (179, 183), (179, 184), (179, 185), (179, 186), (179, 187), (179, 188), (179, 189), (179, 190), (179, 191), (179, 192), (179, 193), (179, 194), (179, 195), (179, 196), (179, 197), (179, 198), (179, 199), (179, 200), (179, 201), (179, 203), (180, 81), (180, 83), (180, 84), (180, 85), (180, 86), (180, 87), (180, 88), (180, 89), (180, 90), (180, 91), (180, 92), (180, 93), (180, 94), (180, 97), (180, 98), (180, 99), (180, 134), (180, 136), (180, 137), (180, 138), (180, 139), (180, 140), (180, 141), (180, 142), (180, 143), (180, 144), (180, 145), (180, 146), (180, 147), (180, 148), (180, 149), (180, 150), (180, 151), (180, 152), (180, 153), (180, 154), (180, 155), (180, 156), (180, 157), (180, 158), (180, 159), (180, 162), (180, 173), (180, 178), (180, 179), (180, 180), (180, 181), (180, 182), (180, 183), (180, 184), (180, 185), (180, 186), (180, 187), (180, 188), (180, 189), (180, 190), (180, 191), (180, 192), (180, 193), (180, 200), (180, 201), (180, 202), (180, 204), (181, 82), (181, 85), (181, 86), (181, 87), (181, 88), (181, 89), (181, 90), (181, 91), (181, 95), (181, 96), (181, 133), (181, 135), (181, 136), (181, 137), (181, 144), (181, 145), (181, 146), (181, 147), (181, 148), (181, 149), (181, 150), (181, 151), (181, 152), (181, 153), (181, 154), (181, 155), (181, 156), (181, 157), (181, 158), (181, 159), (181, 160), (181, 161), (181, 164), (181, 165), (181, 170), (181, 171), (181, 174), (181, 175), (181, 176), (181, 177), (181, 178), (181, 179), (181, 180), (181, 181), (181, 182), (181, 183), (181, 184), (181, 185), (181, 186), (181, 187), (181, 188), (181, 189), (181, 190), (181, 194), (181, 195), (181, 196), (181, 197), (181, 198), (181, 199), (181, 203), (182, 83), (182, 92), (182, 94), (182, 133), (182, 135), (182, 136), (182, 139), (182, 140), (182, 141), (182, 142), (182, 145), (182, 146), (182, 147), (182, 148), (182, 149), (182, 150), (182, 151), (182, 152), (182, 153), (182, 154), (182, 155), (182, 156), (182, 157), (182, 158), (182, 159), (182, 160), (182, 161), (182, 162), (182, 166), (182, 167), (182, 168), (182, 169), (182, 173), (182, 174), (182, 175), (182, 176), (182, 177), (182, 178), (182, 179), (182, 180), (182, 181), (182, 182), (182, 183), (182, 184), (182, 185), (182, 186), (182, 187), (182, 191), (182, 192), (182, 201), (182, 202), (182, 205), (183, 85), (183, 87), (183, 88), (183, 89), (183, 90), (183, 91), (183, 133), (183, 137), (183, 144), (183, 146), (183, 147), (183, 148), (183, 149), (183, 150), (183, 151), (183, 152), (183, 153), (183, 154), (183, 155), (183, 156), (183, 157), (183, 158), (183, 159), (183, 160), (183, 161), (183, 162), (183, 163), (183, 164), (183, 165), (183, 170), (183, 171), (183, 172), (183, 173), (183, 174), (183, 175), (183, 176), (183, 177), (183, 178), (183, 179), (183, 180), (183, 181), (183, 182), (183, 183), (183, 184), (183, 185), (183, 189), (183, 203), (183, 206), (184, 133), (184, 135), (184, 136), (184, 145), (184, 147), (184, 148), (184, 149), (184, 150), (184, 151), (184, 152), (184, 153), (184, 154), (184, 155), (184, 156), (184, 157), (184, 158), (184, 159), (184, 160), (184, 161), (184, 162), (184, 163), (184, 164), (184, 165), (184, 166), (184, 167), (184, 168), (184, 169), (184, 170), (184, 171), (184, 172), (184, 173), (184, 174), (184, 175), (184, 176), (184, 177), (184, 178), (184, 179), (184, 180), (184, 181), (184, 182), (184, 183), (184, 184), (184, 187), (184, 205), (184, 207), (185, 145), (185, 147), (185, 148), (185, 149), (185, 150), (185, 151), (185, 152), (185, 153), (185, 154), (185, 155), (185, 156), (185, 157), (185, 158), (185, 159), (185, 160), (185, 161), (185, 162), (185, 163), (185, 164), (185, 165), (185, 166), (185, 167), (185, 168), (185, 169), (185, 170), (185, 171), (185, 172), (185, 173), (185, 174), (185, 175), (185, 176), (185, 177), (185, 178), (185, 179), (185, 180), (185, 181), (185, 182), (185, 185), (185, 207), (185, 208), (186, 145), (186, 147), (186, 148), (186, 149), (186, 150), (186, 151), (186, 152), (186, 153), (186, 154), (186, 155), (186, 156), (186, 157), (186, 158), (186, 159), (186, 160), (186, 161), (186, 162), (186, 163), (186, 164), (186, 165), (186, 166), (186, 167), (186, 168), (186, 169), (186, 170), (186, 171), (186, 172), (186, 173), (186, 174), (186, 175), (186, 176), (186, 183), (186, 209), (186, 210), (187, 145), (187, 147), (187, 148), (187, 149), (187, 150), (187, 151), (187, 152), (187, 153), (187, 154), (187, 155), (187, 156), (187, 157), (187, 158), (187, 159), (187, 160), (187, 161), (187, 162), (187, 163), (187, 164), (187, 165), (187, 166), (187, 167), (187, 168), (187, 169), (187, 170), (187, 171), (187, 172), (187, 173), (187, 177), (187, 178), (187, 179), (187, 180), (187, 181), (187, 211), (188, 145), (188, 147), (188, 148), (188, 149), (188, 150), (188, 151), (188, 152), (188, 153), (188, 154), (188, 155), (188, 156), (188, 157), (188, 158), (188, 159), (188, 160), (188, 161), (188, 162), (188, 163), (188, 164), (188, 165), (188, 166), (188, 167), (188, 168), (188, 169), (188, 170), (188, 171), (188, 172), (188, 175), (188, 176), (188, 213), (188, 215), (188, 216), (189, 145), (189, 147), (189, 148), (189, 149), (189, 150), (189, 151), (189, 152), (189, 153), (189, 154), (189, 155), (189, 156), (189, 157), (189, 158), (189, 159), (189, 160), (189, 161), (189, 162), (189, 163), (189, 164), (189, 165), (189, 166), (189, 167), (189, 168), (189, 169), (189, 170), (189, 171), (189, 173), (190, 145), (190, 147), (190, 148), (190, 149), (190, 150), (190, 151), (190, 152), (190, 153), (190, 154), (190, 155), (190, 156), (190, 157), (190, 158), (190, 159), (190, 160), (190, 161), (190, 162), (190, 163), (190, 164), (190, 165), (190, 166), (190, 167), (190, 168), (190, 169), (190, 170), (190, 172), (191, 145), (191, 147), (191, 148), (191, 149), (191, 150), (191, 151), (191, 152), (191, 153), (191, 154), (191, 155), (191, 156), (191, 157), (191, 158), (191, 159), (191, 160), (191, 161), (191, 162), (191, 163), (191, 164), (191, 165), (191, 166), (191, 167), (191, 168), (191, 169), (191, 170), (191, 172), (192, 145), (192, 147), (192, 148), (192, 149), (192, 150), (192, 151), (192, 152), (192, 153), (192, 154), (192, 155), (192, 156), (192, 157), (192, 158), (192, 159), (192, 160), (192, 161), (192, 162), (192, 163), (192, 164), (192, 165), (192, 166), (192, 167), (192, 168), (192, 169), (192, 171), (193, 145), (193, 147), (193, 148), (193, 149), (193, 150), (193, 151), (193, 152), (193, 153), (193, 154), (193, 155), (193, 156), (193, 157), (193, 158), (193, 159), (193, 160), (193, 161), (193, 162), (193, 163), (193, 164), (193, 165), (193, 166), (193, 167), (193, 168), (193, 169), (193, 171), (194, 145), (194, 147), (194, 148), (194, 149), (194, 150), (194, 151), (194, 152), (194, 153), (194, 154), (194, 155), (194, 156), (194, 157), (194, 158), (194, 159), (194, 160), (194, 161), (194, 162), (194, 163), (194, 164), (194, 165), (194, 166), (194, 167), (194, 168), (194, 169), (194, 171), (195, 145), (195, 147), (195, 148), (195, 149), (195, 150), (195, 151), (195, 152), (195, 153), (195, 154), (195, 155), (195, 156), (195, 157), (195, 158), (195, 159), (195, 160), (195, 161), (195, 162), (195, 163), (195, 164), (195, 165), (195, 166), (195, 167), (195, 168), (195, 169), (195, 170), (195, 171), (195, 172), (196, 145), (196, 147), (196, 148), (196, 149), (196, 150), (196, 151), (196, 152), (196, 153), (196, 154), (196, 155), (196, 156), (196, 157), (196, 158), (196, 159), (196, 160), (196, 161), (196, 162), (196, 163), (196, 164), (196, 165), (196, 166), (196, 167), (196, 168), (196, 169), (196, 170), (196, 172), (197, 146), (197, 148), (197, 149), (197, 150), (197, 151), (197, 152), (197, 153), (197, 154), (197, 155), (197, 156), (197, 157), (197, 158), (197, 159), (197, 160), (197, 161), (197, 162), (197, 163), (197, 164), (197, 165), (197, 166), (197, 167), (197, 168), (197, 169), (197, 170), (197, 172), (198, 146), (198, 148), (198, 149), (198, 150), (198, 151), (198, 152), (198, 153), (198, 154), (198, 155), (198, 156), (198, 157), (198, 158), (198, 159), (198, 160), (198, 161), (198, 162), (198, 163), (198, 164), (198, 165), (198, 166), (198, 167), (198, 168), (198, 170), (199, 146), (199, 148), (199, 149), (199, 150), (199, 151), (199, 152), (199, 153), (199, 154), (199, 155), (199, 156), (199, 157), (199, 158), (199, 159), (199, 160), (199, 161), (199, 162), (199, 163), (199, 164), (199, 165), (199, 166), (199, 167), (199, 168), (199, 170), (200, 146), (200, 148), (200, 149), (200, 150), (200, 151), (200, 152), (200, 153), (200, 154), (200, 155), (200, 156), (200, 157), (200, 158), (200, 159), (200, 160), (200, 161), (200, 162), (200, 163), (200, 164), (200, 165), (200, 166), (200, 167), (200, 168), (200, 170), (201, 146), (201, 148), (201, 149), (201, 150), (201, 151), (201, 152), (201, 153), (201, 154), (201, 155), (201, 156), (201, 157), (201, 158), (201, 159), (201, 160), (201, 161), (201, 162), (201, 163), (201, 164), (201, 165), (201, 166), (201, 167), (201, 168), (201, 170), (202, 146), (202, 148), (202, 149), (202, 150), (202, 151), (202, 152), (202, 153), (202, 154), (202, 155), (202, 156), (202, 157), (202, 158), (202, 159), (202, 160), (202, 161), (202, 162), (202, 163), (202, 164), (202, 165), (202, 166), (202, 167), (202, 168), (202, 169), (202, 170), (202, 172), (203, 145), (203, 147), (203, 148), (203, 149), (203, 150), (203, 151), (203, 152), (203, 153), (203, 154), (203, 155), (203, 156), (203, 157), (203, 158), (203, 159), (203, 160), (203, 161), (203, 162), (203, 163), (203, 164), (203, 165), (203, 166), (203, 167), (203, 168), (203, 169), (203, 170), (203, 172), (204, 145), (204, 147), (204, 148), (204, 149), (204, 150), (204, 151), (204, 152), (204, 153), (204, 154), (204, 155), (204, 156), (204, 157), (204, 158), (204, 159), (204, 160), (204, 161), (204, 162), (204, 163), (204, 164), (204, 165), (204, 166), (204, 167), (204, 168), (204, 169), (204, 170), (204, 171), (204, 172), (205, 145), (205, 147), (205, 148), (205, 149), (205, 150), (205, 151), (205, 152), (205, 153), (205, 154), (205, 155), (205, 156), (205, 157), (205, 158), (205, 159), (205, 160), (205, 161), (205, 162), (205, 163), (205, 164), (205, 165), (205, 166), (205, 167), (205, 168), (205, 169), (205, 171), (206, 145), (206, 147), (206, 148), (206, 149), (206, 150), (206, 151), (206, 152), (206, 153), (206, 154), (206, 155), (206, 156), (206, 157), (206, 158), (206, 159), (206, 160), (206, 161), (206, 162), (206, 163), (206, 164), (206, 165), (206, 166), (206, 167), (206, 168), (206, 169), (206, 171), (207, 145), (207, 147), (207, 148), (207, 149), (207, 150), (207, 151), (207, 152), (207, 153), (207, 154), (207, 155), (207, 156), (207, 157), (207, 158), (207, 159), (207, 160), (207, 161), (207, 162), (207, 163), (207, 164), (207, 165), (207, 166), (207, 167), (207, 168), (207, 169), (207, 171), (208, 145), (208, 147), (208, 148), (208, 149), (208, 150), (208, 151), (208, 152), (208, 153), (208, 154), (208, 155), (208, 156), (208, 157), (208, 158), (208, 159), (208, 160), (208, 161), (208, 162), (208, 163), (208, 164), (208, 165), (208, 166), (208, 167), (208, 168), (208, 169), (208, 170), (208, 172), (209, 145), (209, 147), (209, 148), (209, 149), (209, 150), (209, 151), (209, 152), (209, 153), (209, 154), (209, 155), (209, 156), (209, 157), (209, 158), (209, 159), (209, 160), (209, 161), (209, 162), (209, 163), (209, 164), (209, 165), (209, 166), (209, 167), (209, 168), (209, 169), (209, 170), (209, 172), (210, 145), (210, 147), (210, 148), (210, 149), (210, 150), (210, 151), (210, 152), (210, 153), (210, 154), (210, 155), (210, 156), (210, 157), (210, 158), (210, 159), (210, 160), (210, 161), (210, 162), (210, 163), (210, 164), (210, 165), (210, 166), (210, 167), (210, 168), (210, 169), (210, 170), (210, 171), (210, 173), (211, 145), (211, 147), (211, 148), (211, 149), (211, 150), (211, 151), (211, 152), (211, 153), (211, 154), (211, 155), (211, 156), (211, 157), (211, 158), (211, 159), (211, 160), (211, 161), (211, 162), (211, 163), (211, 164), (211, 165), (211, 166), (211, 167), (211, 168), (211, 169), (211, 170), (211, 171), (211, 172), (211, 175), (211, 176), (211, 213), (211, 215), (211, 216), (212, 145), (212, 147), (212, 148), (212, 149), (212, 150), (212, 151), (212, 152), (212, 153), (212, 154), (212, 155), (212, 156), (212, 157), (212, 158), (212, 159), (212, 160), (212, 161), (212, 162), (212, 163), (212, 164), (212, 165), (212, 166), (212, 167), (212, 168), (212, 169), (212, 170), (212, 171), (212, 172), (212, 173), (212, 177), (212, 178), (212, 179), (212, 180), (212, 181), (212, 211), (213, 145), (213, 147), (213, 148), (213, 149), (213, 150), (213, 151), (213, 152), (213, 153), (213, 154), (213, 155), (213, 156), (213, 157), (213, 158), (213, 159), (213, 160), (213, 161), (213, 162), (213, 163), (213, 164), (213, 165), (213, 166), (213, 167), (213, 168), (213, 169), (213, 170), (213, 171), (213, 172), (213, 173), (213, 174), (213, 175), (213, 176), (213, 183), (213, 209), (213, 210), (214, 145), (214, 147), (214, 148), (214, 149), (214, 150), (214, 151), (214, 152), (214, 153), (214, 154), (214, 155), (214, 156), (214, 157), (214, 158), (214, 159), (214, 160), (214, 161), (214, 162), (214, 163), (214, 164), (214, 165), (214, 166), (214, 167), (214, 168), (214, 169), (214, 170), (214, 171), (214, 172), (214, 173), (214, 174), (214, 175), (214, 176), (214, 177), (214, 178), (214, 179), (214, 180), (214, 181), (214, 185), (214, 207), (214, 208), (215, 133), (215, 135), (215, 145), (215, 147), (215, 148), (215, 149), (215, 150), (215, 151), (215, 152), (215, 153), (215, 154), (215, 155), (215, 156), (215, 157), (215, 158), (215, 159), (215, 160), (215, 161), (215, 162), (215, 163), (215, 164), (215, 165), (215, 166), (215, 167), (215, 168), (215, 169), (215, 170), (215, 171), (215, 172), (215, 173), (215, 174), (215, 175), (215, 176), (215, 177), (215, 178), (215, 179), (215, 180), (215, 181), (215, 182), (215, 183), (215, 187), (215, 205), (215, 207), (216, 85), (216, 87), (216, 88), (216, 89), (216, 90), (216, 91), (216, 133), (216, 137), (216, 144), (216, 146), (216, 147), (216, 148), (216, 149), (216, 150), (216, 151), (216, 152), (216, 153), (216, 154), (216, 155), (216, 156), (216, 157), (216, 158), (216, 159), (216, 160), (216, 161), (216, 162), (216, 163), (216, 164), (216, 165), (216, 166), (216, 167), (216, 168), (216, 169), (216, 170), (216, 171), (216, 172), (216, 173), (216, 174), (216, 175), (216, 176), (216, 177), (216, 178), (216, 179), (216, 180), (216, 181), (216, 182), (216, 183), (216, 184), (216, 185), (216, 189), (216, 203), (216, 206), (217, 83), (217, 92), (217, 93), (217, 94), (217, 133), (217, 135), (217, 136), (217, 139), (217, 140), (217, 141), (217, 142), (217, 145), (217, 146), (217, 147), (217, 148), (217, 149), (217, 150), (217, 151), (217, 152), (217, 153), (217, 154), (217, 155), (217, 156), (217, 157), (217, 158), (217, 159), (217, 160), (217, 161), (217, 162), (217, 163), (217, 164), (217, 165), (217, 166), (217, 167), (217, 168), (217, 169), (217, 170), (217, 171), (217, 172), (217, 173), (217, 174), (217, 175), (217, 176), (217, 177), (217, 178), (217, 179), (217, 180), (217, 181), (217, 182), (217, 183), (217, 184), (217, 185), (217, 186), (217, 187), (217, 191), (217, 192), (217, 201), (217, 202), (217, 205), (218, 82), (218, 85), (218, 86), (218, 87), (218, 88), (218, 89), (218, 90), (218, 91), (218, 95), (218, 96), (218, 133), (218, 135), (218, 136), (218, 137), (218, 144), (218, 145), (218, 146), (218, 147), (218, 148), (218, 149), (218, 150), (218, 151), (218, 152), (218, 153), (218, 154), (218, 155), (218, 156), (218, 157), (218, 158), (218, 159), (218, 160), (218, 161), (218, 162), (218, 163), (218, 164), (218, 165), (218, 166), (218, 167), (218, 168), (218, 169), (218, 170), (218, 171), (218, 172), (218, 173), (218, 174), (218, 175), (218, 176), (218, 177), (218, 178), (218, 179), (218, 180), (218, 181), (218, 182), (218, 183), (218, 184), (218, 185), (218, 186), (218, 187), (218, 188), (218, 189), (218, 190), (218, 194), (218, 195), (218, 196), (218, 197), (218, 198), (218, 199), (218, 203), (218, 205), (219, 81), (219, 83), (219, 84), (219, 85), (219, 86), (219, 87), (219, 88), (219, 89), (219, 90), (219, 91), (219, 92), (219, 93), (219, 94), (219, 97), (219, 98), (219, 99), (219, 134), (219, 136), (219, 137), (219, 138), (219, 139), (219, 140), (219, 141), (219, 142), (219, 143), (219, 144), (219, 145), (219, 146), (219, 147), (219, 148), (219, 149), (219, 150), (219, 151), (219, 152), (219, 153), (219, 154), (219, 155), (219, 156), (219, 157), (219, 158), (219, 159), (219, 160), (219, 161), (219, 162), (219, 163), (219, 164), (219, 165), (219, 166), (219, 167), (219, 168), (219, 169), (219, 170), (219, 171), (219, 172), (219, 173), (219, 174), (219, 175), (219, 176), (219, 177), (219, 178), (219, 179), (219, 180), (219, 181), (219, 182), (219, 183), (219, 184), (219, 185), (219, 186), (219, 187), (219, 188), (219, 189), (219, 190), (219, 191), (219, 192), (219, 193), (219, 200), (219, 201), (219, 202), (219, 204), (220, 81), (220, 83), (220, 84), (220, 85), (220, 86), (220, 87), (220, 88), (220, 89), (220, 90), (220, 91), (220, 92), (220, 93), (220, 94), (220, 95), (220, 96), (220, 100), (220, 134), (220, 136), (220, 137), (220, 138), (220, 139), (220, 140), (220, 141), (220, 142), (220, 143), (220, 144), (220, 145), (220, 146), (220, 147), (220, 148), (220, 149), (220, 150), (220, 151), (220, 152), (220, 153), (220, 154), (220, 155), (220, 156), (220, 157), (220, 158), (220, 159), (220, 160), (220, 161), (220, 162), (220, 163), (220, 164), (220, 165), (220, 166), (220, 167), (220, 168), (220, 169), (220, 170), (220, 171), (220, 172), (220, 173), (220, 174), (220, 175), (220, 176), (220, 177), (220, 178), (220, 179), (220, 180), (220, 181), (220, 182), (220, 183), (220, 184), (220, 185), (220, 186), (220, 187), (220, 188), (220, 189), (220, 190), (220, 191), (220, 192), (220, 193), (220, 194), (220, 195), (220, 196), (220, 197), (220, 198), (220, 199), (220, 200), (220, 201), (220, 203), (221, 81), (221, 83), (221, 84), (221, 85), (221, 86), (221, 87), (221, 88), (221, 89), (221, 90), (221, 91), (221, 92), (221, 93), (221, 94), (221, 95), (221, 96), (221, 97), (221, 98), (221, 100), (221, 134), (221, 136), (221, 137), (221, 138), (221, 139), (221, 140), (221, 141), (221, 142), (221, 143), (221, 144), (221, 145), (221, 146), (221, 147), (221, 148), (221, 149), (221, 150), (221, 151), (221, 152), (221, 153), (221, 154), (221, 155), (221, 156), (221, 157), (221, 158), (221, 159), (221, 160), (221, 161), (221, 162), (221, 163), (221, 164), (221, 165), (221, 166), (221, 167), (221, 168), (221, 169), (221, 170), (221, 171), (221, 172), (221, 173), (221, 174), (221, 175), (221, 176), (221, 177), (221, 178), (221, 179), (221, 180), (221, 181), (221, 182), (221, 183), (221, 184), (221, 185), (221, 186), (221, 187), (221, 188), (221, 189), (221, 190), (221, 191), (221, 192), (221, 193), (221, 194), (221, 195), (221, 196), (221, 197), (221, 198), (221, 199), (221, 200), (221, 202), (222, 81), (222, 82), (222, 83), (222, 84), (222, 85), (222, 86), (222, 87), (222, 88), (222, 89), (222, 90), (222, 91), (222, 92), (222, 93), (222, 94), (222, 95), (222, 96), (222, 97), (222, 98), (222, 100), (222, 134), (222, 136), (222, 137), (222, 138), (222, 139), (222, 140), (222, 141), (222, 142), (222, 143), (222, 144), (222, 145), (222, 146), (222, 147), (222, 148), (222, 149), (222, 150), (222, 151), (222, 152), (222, 153), (222, 154), (222, 155), (222, 156), (222, 157), (222, 158), (222, 159), (222, 160), (222, 161), (222, 162), (222, 163), (222, 164), (222, 165), (222, 166), (222, 167), (222, 168), (222, 169), (222, 170), (222, 171), (222, 172), (222, 173), (222, 174), (222, 175), (222, 176), (222, 177), (222, 178), (222, 179), (222, 180), (222, 181), (222, 182), (222, 183), (222, 184), (222, 185), (222, 186), (222, 187), (222, 188), (222, 189), (222, 190), (222, 191), (222, 192), (222, 193), (222, 194), (222, 195), (222, 196), (222, 197), (222, 198), (222, 199), (222, 201), (223, 82), (223, 84), (223, 85), (223, 86), (223, 87), (223, 88), (223, 89), (223, 90), (223, 91), (223, 92), (223, 93), (223, 94), (223, 95), (223, 96), (223, 97), (223, 98), (223, 99), (223, 100), (223, 101), (223, 135), (223, 137), (223, 138), (223, 139), (223, 140), (223, 141), (223, 142), (223, 143), (223, 144), (223, 145), (223, 146), (223, 147), (223, 148), (223, 149), (223, 150), (223, 151), (223, 152), (223, 153), (223, 154), (223, 155), (223, 156), (223, 157), (223, 158), (223, 159), (223, 160), (223, 161), (223, 162), (223, 163), (223, 164), (223, 165), (223, 166), (223, 167), (223, 168), (223, 169), (223, 170), (223, 171), (223, 172), (223, 173), (223, 174), (223, 175), (223, 176), (223, 177), (223, 178), (223, 179), (223, 180), (223, 181), (223, 182), (223, 183), (223, 184), (223, 185), (223, 186), (223, 187), (223, 188), (223, 189), (223, 190), (223, 191), (223, 192), (223, 193), (223, 194), (223, 195), (223, 196), (223, 197), (223, 200), (224, 82), (224, 84), (224, 85), (224, 86), (224, 87), (224, 88), (224, 89), (224, 90), (224, 91), (224, 92), (224, 93), (224, 94), (224, 95), (224, 96), (224, 97), (224, 98), (224, 99), (224, 101), (224, 135), (224, 137), (224, 138), (224, 139), (224, 140), (224, 141), (224, 142), (224, 143), (224, 144), (224, 145), (224, 146), (224, 147), (224, 148), (224, 149), (224, 150), (224, 151), (224, 152), (224, 153), (224, 154), (224, 155), (224, 156), (224, 157), (224, 158), (224, 159), (224, 160), (224, 161), (224, 162), (224, 163), (224, 164), (224, 165), (224, 166), (224, 167), (224, 168), (224, 169), (224, 170), (224, 171), (224, 172), (224, 173), (224, 174), (224, 175), (224, 176), (224, 177), (224, 178), (224, 179), (224, 180), (224, 181), (224, 182), (224, 183), (224, 184), (224, 185), (224, 186), (224, 187), (224, 188), (224, 189), (224, 190), (224, 191), (224, 192), (224, 193), (224, 194), (224, 195), (224, 199), (225, 83), (225, 85), (225, 86), (225, 87), (225, 88), (225, 89), (225, 90), (225, 91), (225, 92), (225, 93), (225, 94), (225, 95), (225, 96), (225, 97), (225, 98), (225, 99), (225, 101), (225, 135), (225, 137), (225, 138), (225, 139), (225, 140), (225, 141), (225, 142), (225, 143), (225, 144), (225, 145), (225, 146), (225, 147), (225, 148), (225, 149), (225, 150), (225, 151), (225, 152), (225, 153), (225, 154), (225, 155), (225, 156), (225, 157), (225, 158), (225, 159), (225, 160), (225, 161), (225, 162), (225, 163), (225, 164), (225, 165), (225, 166), (225, 167), (225, 168), (225, 169), (225, 170), (225, 171), (225, 172), (225, 173), (225, 174), (225, 175), (225, 176), (225, 177), (225, 178), (225, 179), (225, 180), (225, 181), (225, 182), (225, 183), (225, 184), (225, 185), (225, 186), (225, 187), (225, 188), (225, 189), (225, 190), (225, 191), (225, 192), (225, 193), (226, 83), (226, 85), (226, 86), (226, 87), (226, 88), (226, 89), (226, 90), (226, 91), (226, 92), (226, 93), (226, 94), (226, 95), (226, 96), (226, 97), (226, 98), (226, 99), (226, 100), (226, 102), (226, 136), (226, 138), (226, 139), (226, 140), (226, 141), (226, 142), (226, 143), (226, 144), (226, 145), (226, 146), (226, 147), (226, 148), (226, 149), (226, 150), (226, 151), (226, 152), (226, 153), (226, 154), (226, 155), (226, 156), (226, 157), (226, 158), (226, 159), (226, 160), (226, 161), (226, 162), (226, 163), (226, 164), (226, 165), (226, 166), (226, 167), (226, 168), (226, 169), (226, 170), (226, 171), (226, 172), (226, 173), (226, 174), (226, 175), (226, 176), (226, 177), (226, 178), (226, 179), (226, 180), (226, 181), (226, 182), (226, 183), (226, 184), (226, 185), (226, 186), (226, 187), (226, 188), (226, 189), (226, 195), (227, 83), (227, 85), (227, 86), (227, 87), (227, 88), (227, 89), (227, 90), (227, 91), (227, 92), (227, 93), (227, 94), (227, 95), (227, 96), (227, 97), (227, 98), (227, 99), (227, 100), (227, 101), (227, 103), (227, 136), (227, 138), (227, 139), (227, 140), (227, 141), (227, 142), (227, 143), (227, 144), (227, 145), (227, 146), (227, 147), (227, 148), (227, 149), (227, 150), (227, 151), (227, 152), (227, 153), (227, 154), (227, 155), (227, 156), (227, 157), (227, 158), (227, 159), (227, 160), (227, 161), (227, 162), (227, 163), (227, 164), (227, 165), (227, 166), (227, 167), (227, 168), (227, 169), (227, 170), (227, 171), (227, 172), (227, 173), (227, 174), (227, 175), (227, 176), (227, 177), (227, 178), (227, 179), (227, 180), (227, 181), (227, 182), (227, 183), (227, 184), (227, 185), (227, 186), (227, 187), (227, 190), (227, 191), (227, 192), (227, 193), (227, 195), (228, 84), (228, 86), (228, 87), (228, 88), (228, 89), (228, 90), (228, 91), (228, 92), (228, 93), (228, 94), (228, 95), (228, 96), (228, 97), (228, 98), (228, 99), (228, 100), (228, 101), (228, 103), (228, 136), (228, 138), (228, 139), (228, 140), (228, 141), (228, 142), (228, 143), (228, 144), (228, 145), (228, 146), (228, 147), (228, 148), (228, 149), (228, 150), (228, 151), (228, 152), (228, 153), (228, 154), (228, 155), (228, 156), (228, 157), (228, 158), (228, 159), (228, 160), (228, 161), (228, 162), (228, 163), (228, 164), (228, 165), (228, 166), (228, 167), (228, 168), (228, 169), (228, 170), (228, 171), (228, 172), (228, 173), (228, 174), (228, 175), (228, 176), (228, 177), (228, 178), (228, 179), (228, 180), (228, 181), (228, 182), (228, 183), (228, 184), (228, 185), (228, 186), (228, 189), (229, 84), (229, 86), (229, 87), (229, 88), (229, 89), (229, 90), (229, 91), (229, 92), (229, 93), (229, 94), (229, 95), (229, 96), (229, 97), (229, 98), (229, 99), (229, 100), (229, 101), (229, 102), (229, 104), (229, 136), (229, 138), (229, 139), (229, 140), (229, 141), (229, 142), (229, 143), (229, 144), (229, 145), (229, 146), (229, 147), (229, 148), (229, 149), (229, 150), (229, 151), (229, 152), (229, 153), (229, 154), (229, 155), (229, 156), (229, 157), (229, 158), (229, 159), (229, 160), (229, 161), (229, 162), (229, 163), (229, 164), (229, 165), (229, 166), (229, 167), (229, 168), (229, 169), (229, 170), (229, 171), (229, 172), (229, 173), (229, 174), (229, 175), (229, 176), (229, 177), (229, 178), (229, 179), (229, 180), (229, 181), (229, 182), (229, 183), (229, 184), (229, 185), (229, 187), (230, 85), (230, 87), (230, 88), (230, 89), (230, 90), (230, 91), (230, 92), (230, 93), (230, 94), (230, 95), (230, 96), (230, 97), (230, 98), (230, 99), (230, 100), (230, 101), (230, 102), (230, 103), (230, 105), (230, 136), (230, 138), (230, 139), (230, 140), (230, 141), (230, 142), (230, 143), (230, 144), (230, 145), (230, 146), (230, 147), (230, 148), (230, 149), (230, 150), (230, 151), (230, 152), (230, 153), (230, 154), (230, 155), (230, 156), (230, 157), (230, 158), (230, 159), (230, 160), (230, 161), (230, 162), (230, 163), (230, 164), (230, 165), (230, 166), (230, 167), (230, 168), (230, 169), (230, 170), (230, 171), (230, 172), (230, 173), (230, 174), (230, 175), (230, 176), (230, 177), (230, 178), (230, 179), (230, 180), (230, 181), (230, 182), (230, 183), (230, 184), (230, 186), (231, 85), (231, 87), (231, 88), (231, 89), (231, 90), (231, 91), (231, 92), (231, 93), (231, 94), (231, 95), (231, 96), (231, 97), (231, 98), (231, 99), (231, 100), (231, 101), (231, 102), (231, 103), (231, 104), (231, 106), (231, 136), (231, 138), (231, 139), (231, 140), (231, 141), (231, 142), (231, 143), (231, 144), (231, 145), (231, 146), (231, 147), (231, 148), (231, 149), (231, 150), (231, 151), (231, 152), (231, 153), (231, 154), (231, 155), (231, 156), (231, 157), (231, 158), (231, 159), (231, 160), (231, 161), (231, 162), (231, 163), (231, 164), (231, 165), (231, 166), (231, 167), (231, 168), (231, 169), (231, 170), (231, 171), (231, 172), (231, 173), (231, 174), (231, 175), (231, 176), (231, 177), (231, 178), (231, 179), (231, 180), (231, 181), (231, 182), (231, 183), (231, 185), (232, 85), (232, 87), (232, 88), (232, 89), (232, 90), (232, 91), (232, 92), (232, 93), (232, 94), (232, 95), (232, 96), (232, 97), (232, 98), (232, 99), (232, 100), (232, 101), (232, 102), (232, 103), (232, 104), (232, 105), (232, 107), (232, 136), (232, 138), (232, 139), (232, 140), (232, 141), (232, 142), (232, 143), (232, 144), (232, 145), (232, 146), (232, 147), (232, 148), (232, 149), (232, 150), (232, 151), (232, 152), (232, 153), (232, 154), (232, 155), (232, 156), (232, 157), (232, 158), (232, 159), (232, 160), (232, 161), (232, 162), (232, 163), (232, 164), (232, 165), (232, 166), (232, 167), (232, 168), (232, 169), (232, 170), (232, 171), (232, 172), (232, 173), (232, 174), (232, 175), (232, 176), (232, 177), (232, 178), (232, 179), (232, 180), (232, 181), (232, 182), (232, 183), (232, 185), (233, 86), (233, 88), (233, 89), (233, 90), (233, 91), (233, 92), (233, 93), (233, 94), (233, 95), (233, 96), (233, 97), (233, 98), (233, 99), (233, 100), (233, 101), (233, 102), (233, 103), (233, 104), (233, 105), (233, 106), (233, 108), (233, 136), (233, 138), (233, 139), (233, 140), (233, 141), (233, 142), (233, 143), (233, 144), (233, 145), (233, 146), (233, 147), (233, 148), (233, 149), (233, 150), (233, 151), (233, 152), (233, 153), (233, 154), (233, 155), (233, 156), (233, 157), (233, 158), (233, 159), (233, 160), (233, 161), (233, 162), (233, 163), (233, 164), (233, 165), (233, 166), (233, 167), (233, 168), (233, 169), (233, 170), (233, 171), (233, 172), (233, 173), (233, 174), (233, 175), (233, 176), (233, 177), (233, 178), (233, 179), (233, 180), (233, 181), (233, 182), (233, 184), (234, 86), (234, 88), (234, 89), (234, 90), (234, 91), (234, 92), (234, 93), (234, 94), (234, 95), (234, 96), (234, 97), (234, 98), (234, 99), (234, 100), (234, 101), (234, 102), (234, 103), (234, 104), (234, 105), (234, 106), (234, 107), (234, 109), (234, 136), (234, 138), (234, 139), (234, 140), (234, 141), (234, 142), (234, 143), (234, 144), (234, 145), (234, 146), (234, 147), (234, 148), (234, 149), (234, 150), (234, 151), (234, 152), (234, 153), (234, 154), (234, 155), (234, 156), (234, 157), (234, 158), (234, 159), (234, 160), (234, 161), (234, 162), (234, 163), (234, 164), (234, 165), (234, 166), (234, 167), (234, 168), (234, 169), (234, 170), (234, 171), (234, 172), (234, 173), (234, 174), (234, 175), (234, 176), (234, 177), (234, 178), (234, 179), (234, 180), (234, 181), (234, 182), (234, 184), (235, 87), (235, 89), (235, 90), (235, 91), (235, 92), (235, 93), (235, 94), (235, 95), (235, 96), (235, 97), (235, 98), (235, 99), (235, 100), (235, 101), (235, 102), (235, 103), (235, 104), (235, 105), (235, 106), (235, 107), (235, 108), (235, 110), (235, 136), (235, 138), (235, 139), (235, 140), (235, 141), (235, 142), (235, 143), (235, 144), (235, 145), (235, 146), (235, 147), (235, 148), (235, 149), (235, 150), (235, 151), (235, 152), (235, 153), (235, 154), (235, 155), (235, 156), (235, 157), (235, 158), (235, 159), (235, 160), (235, 161), (235, 162), (235, 163), (235, 164), (235, 165), (235, 166), (235, 167), (235, 168), (235, 169), (235, 170), (235, 171), (235, 172), (235, 173), (235, 174), (235, 175), (235, 176), (235, 177), (235, 178), (235, 179), (235, 180), (235, 181), (235, 182), (235, 184), (236, 87), (236, 89), (236, 90), (236, 91), (236, 92), (236, 93), (236, 94), (236, 95), (236, 96), (236, 97), (236, 98), (236, 99), (236, 100), (236, 101), (236, 102), (236, 103), (236, 104), (236, 105), (236, 106), (236, 107), (236, 108), (236, 109), (236, 112), (236, 135), (236, 137), (236, 138), (236, 139), (236, 140), (236, 141), (236, 142), (236, 143), (236, 144), (236, 145), (236, 146), (236, 147), (236, 148), (236, 149), (236, 150), (236, 151), (236, 152), (236, 153), (236, 154), (236, 155), (236, 156), (236, 157), (236, 158), (236, 159), (236, 160), (236, 161), (236, 162), (236, 163), (236, 164), (236, 165), (236, 166), (236, 167), (236, 168), (236, 169), (236, 170), (236, 171), (236, 172), (236, 173), (236, 174), (236, 175), (236, 176), (236, 177), (236, 178), (236, 179), (236, 180), (236, 181), (236, 182), (236, 184), (237, 88), (237, 90), (237, 91), (237, 92), (237, 93), (237, 94), (237, 95), (237, 96), (237, 97), (237, 98), (237, 99), (237, 100), (237, 101), (237, 102), (237, 103), (237, 104), (237, 105), (237, 106), (237, 107), (237, 108), (237, 109), (237, 110), (237, 113), (237, 114), (237, 134), (237, 136), (237, 137), (237, 138), (237, 139), (237, 140), (237, 141), (237, 142), (237, 143), (237, 144), (237, 145), (237, 146), (237, 147), (237, 148), (237, 149), (237, 150), (237, 151), (237, 152), (237, 153), (237, 154), (237, 155), (237, 156), (237, 157), (237, 158), (237, 159), (237, 160), (237, 161), (237, 162), (237, 163), (237, 164), (237, 165), (237, 166), (237, 167), (237, 168), (237, 169), (237, 170), (237, 171), (237, 172), (237, 173), (237, 174), (237, 175), (237, 176), (237, 177), (237, 178), (237, 179), (237, 180), (237, 181), (237, 182), (237, 184), (238, 89), (238, 90), (238, 91), (238, 92), (238, 93), (238, 94), (238, 95), (238, 96), (238, 97), (238, 98), (238, 99), (238, 100), (238, 101), (238, 102), (238, 103), (238, 104), (238, 105), (238, 106), (238, 107), (238, 108), (238, 109), (238, 110), (238, 111), (238, 112), (238, 115), (238, 116), (238, 117), (238, 133), (238, 135), (238, 136), (238, 137), (238, 138), (238, 139), (238, 140), (238, 141), (238, 142), (238, 143), (238, 144), (238, 145), (238, 146), (238, 147), (238, 148), (238, 149), (238, 150), (238, 151), (238, 152), (238, 153), (238, 154), (238, 155), (238, 156), (238, 157), (238, 158), (238, 159), (238, 160), (238, 161), (238, 162), (238, 163), (238, 164), (238, 165), (238, 166), (238, 167), (238, 168), (238, 169), (238, 170), (238, 171), (238, 172), (238, 173), (238, 174), (238, 175), (238, 176), (238, 177), (238, 178), (238, 179), (238, 180), (238, 181), (238, 182), (238, 184), (239, 89), (239, 91), (239, 92), (239, 93), (239, 94), (239, 95), (239, 96), (239, 97), (239, 98), (239, 99), (239, 100), (239, 101), (239, 102), (239, 103), (239, 104), (239, 105), (239, 106), (239, 107), (239, 108), (239, 109), (239, 110), (239, 111), (239, 112), (239, 113), (239, 114), (239, 118), (239, 120), (239, 132), (239, 134), (239, 135), (239, 136), (239, 137), (239, 138), (239, 139), (239, 140), (239, 141), (239, 142), (239, 143), (239, 144), (239, 145), (239, 146), (239, 147), (239, 148), (239, 149), (239, 150), (239, 151), (239, 152), (239, 153), (239, 154), (239, 155), (239, 156), (239, 157), (239, 158), (239, 159), (239, 160), (239, 161), (239, 162), (239, 163), (239, 164), (239, 165), (239, 166), (239, 167), (239, 168), (239, 169), (239, 170), (239, 171), (239, 172), (239, 173), (239, 174), (239, 175), (239, 176), (239, 177), (239, 178), (239, 179), (239, 180), (239, 181), (239, 182), (239, 183), (239, 185), (240, 90), (240, 92), (240, 93), (240, 94), (240, 95), (240, 96), (240, 97), (240, 98), (240, 99), (240, 100), (240, 101), (240, 102), (240, 103), (240, 104), (240, 105), (240, 106), (240, 107), (240, 108), (240, 109), (240, 110), (240, 111), (240, 112), (240, 113), (240, 114), (240, 115), (240, 116), (240, 117), (240, 122), (240, 131), (240, 133), (240, 134), (240, 135), (240, 136), (240, 137), (240, 138), (240, 139), (240, 140), (240, 141), (240, 142), (240, 143), (240, 144), (240, 145), (240, 146), (240, 147), (240, 148), (240, 149), (240, 150), (240, 151), (240, 152), (240, 153), (240, 154), (240, 155), (240, 156), (240, 157), (240, 158), (240, 159), (240, 160), (240, 161), (240, 162), (240, 163), (240, 164), (240, 165), (240, 166), (240, 167), (240, 168), (240, 169), (240, 170), (240, 171), (240, 172), (240, 173), (240, 174), (240, 175), (240, 176), (240, 177), (240, 178), (240, 179), (240, 180), (240, 181), (240, 182), (240, 183), (240, 185), (241, 90), (241, 92), (241, 93), (241, 94), (241, 95), (241, 96), (241, 97), (241, 98), (241, 99), (241, 100), (241, 101), (241, 102), (241, 103), (241, 104), (241, 105), (241, 106), (241, 107), (241, 108), (241, 109), (241, 110), (241, 111), (241, 112), (241, 113), (241, 114), (241, 115), (241, 116), (241, 117), (241, 118), (241, 119), (241, 120), (241, 123), (241, 129), (241, 132), (241, 133), (241, 134), (241, 135), (241, 136), (241, 137), (241, 138), (241, 139), (241, 140), (241, 141), (241, 142), (241, 143), (241, 144), (241, 145), (241, 146), (241, 147), (241, 148), (241, 149), (241, 150), (241, 151), (241, 152), (241, 153), (241, 154), (241, 155), (241, 156), (241, 157), (241, 158), (241, 159), (241, 160), (241, 161), (241, 162), (241, 163), (241, 164), (241, 165), (241, 166), (241, 167), (241, 168), (241, 169), (241, 170), (241, 171), (241, 172), (241, 173), (241, 174), (241, 175), (241, 176), (241, 177), (241, 178), (241, 179), (241, 180), (241, 181), (241, 182), (241, 183), (241, 185), (242, 91), (242, 93), (242, 94), (242, 95), (242, 96), (242, 97), (242, 98), (242, 99), (242, 100), (242, 101), (242, 102), (242, 103), (242, 104), (242, 105), (242, 106), (242, 107), (242, 108), (242, 109), (242, 110), (242, 111), (242, 112), (242, 113), (242, 114), (242, 115), (242, 116), (242, 117), (242, 118), (242, 119), (242, 120), (242, 121), (242, 122), (242, 125), (242, 126), (242, 127), (242, 128), (242, 131), (242, 132), (242, 133), (242, 134), (242, 135), (242, 136), (242, 137), (242, 138), (242, 139), (242, 140), (242, 141), (242, 142), (242, 143), (242, 144), (242, 145), (242, 146), (242, 147), (242, 148), (242, 149), (242, 150), (242, 151), (242, 152), (242, 153), (242, 154), (242, 155), (242, 156), (242, 157), (242, 158), (242, 159), (242, 160), (242, 161), (242, 162), (242, 163), (242, 164), (242, 165), (242, 166), (242, 167), (242, 168), (242, 169), (242, 170), (242, 171), (242, 172), (242, 173), (242, 174), (242, 175), (242, 176), (242, 177), (242, 178), (242, 179), (242, 180), (242, 181), (242, 182), (242, 183), (242, 184), (242, 186), (243, 92), (243, 94), (243, 95), (243, 96), (243, 97), (243, 98), (243, 99), (243, 100), (243, 101), (243, 102), (243, 103), (243, 104), (243, 105), (243, 106), (243, 107), (243, 108), (243, 109), (243, 110), (243, 111), (243, 112), (243, 113), (243, 114), (243, 115), (243, 116), (243, 117), (243, 118), (243, 119), (243, 120), (243, 121), (243, 122), (243, 123), (243, 129), (243, 130), (243, 131), (243, 132), (243, 133), (243, 134), (243, 135), (243, 136), (243, 137), (243, 138), (243, 139), (243, 140), (243, 141), (243, 142), (243, 143), (243, 144), (243, 145), (243, 146), (243, 147), (243, 148), (243, 149), (243, 150), (243, 151), (243, 152), (243, 153), (243, 154), (243, 155), (243, 156), (243, 157), (243, 158), (243, 159), (243, 160), (243, 161), (243, 162), (243, 163), (243, 164), (243, 165), (243, 166), (243, 167), (243, 168), (243, 169), (243, 170), (243, 171), (243, 172), (243, 173), (243, 174), (243, 175), (243, 176), (243, 177), (243, 178), (243, 179), (243, 180), (243, 181), (243, 182), (243, 183), (243, 184), (243, 186), (244, 92), (244, 95), (244, 96), (244, 97), (244, 98), (244, 99), (244, 100), (244, 101), (244, 102), (244, 103), (244, 104), (244, 105), (244, 106), (244, 107), (244, 108), (244, 109), (244, 110), (244, 111), (244, 112), (244, 113), (244, 114), (244, 115), (244, 116), (244, 117), (244, 118), (244, 119), (244, 120), (244, 121), (244, 122), (244, 123), (244, 124), (244, 125), (244, 126), (244, 127), (244, 128), (244, 129), (244, 130), (244, 131), (244, 132), (244, 133), (244, 134), (244, 135), (244, 136), (244, 137), (244, 138), (244, 139), (244, 140), (244, 141), (244, 142), (244, 143), (244, 144), (244, 145), (244, 146), (244, 147), (244, 148), (244, 149), (244, 150), (244, 151), (244, 152), (244, 153), (244, 154), (244, 155), (244, 156), (244, 157), (244, 158), (244, 159), (244, 160), (244, 161), (244, 162), (244, 163), (244, 164), (244, 165), (244, 166), (244, 167), (244, 168), (244, 169), (244, 170), (244, 171), (244, 172), (244, 173), (244, 174), (244, 175), (244, 176), (244, 177), (244, 178), (244, 179), (244, 180), (244, 181), (244, 182), (244, 183), (244, 184), (244, 185), (244, 187), (245, 93), (245, 106), (245, 107), (245, 108), (245, 109), (245, 110), (245, 111), (245, 112), (245, 113), (245, 114), (245, 115), (245, 116), (245, 117), (245, 118), (245, 119), (245, 120), (245, 121), (245, 122), (245, 123), (245, 124), (245, 125), (245, 126), (245, 127), (245, 128), (245, 129), (245, 130), (245, 131), (245, 132), (245, 133), (245, 134), (245, 135), (245, 136), (245, 137), (245, 138), (245, 139), (245, 140), (245, 141), (245, 142), (245, 143), (245, 144), (245, 145), (245, 146), (245, 147), (245, 148), (245, 149), (245, 150), (245, 151), (245, 152), (245, 153), (245, 154), (245, 155), (245, 156), (245, 157), (245, 158), (245, 159), (245, 160), (245, 161), (245, 162), (245, 163), (245, 164), (245, 165), (245, 166), (245, 167), (245, 168), (245, 169), (245, 170), (245, 171), (245, 172), (245, 173), (245, 174), (245, 175), (245, 176), (245, 177), (245, 178), (245, 179), (245, 180), (245, 181), (245, 182), (245, 183), (245, 184), (245, 185), (245, 186), (245, 188), (246, 94), (246, 96), (246, 97), (246, 98), (246, 99), (246, 100), (246, 101), (246, 102), (246, 103), (246, 104), (246, 105), (246, 112), (246, 113), (246, 114), (246, 115), (246, 116), (246, 117), (246, 118), (246, 119), (246, 120), (246, 121), (246, 122), (246, 123), (246, 124), (246, 125), (246, 126), (246, 127), (246, 128), (246, 129), (246, 130), (246, 131), (246, 132), (246, 133), (246, 134), (246, 135), (246, 136), (246, 137), (246, 138), (246, 139), (246, 140), (246, 141), (246, 142), (246, 143), (246, 144), (246, 145), (246, 146), (246, 147), (246, 148), (246, 149), (246, 150), (246, 151), (246, 152), (246, 153), (246, 154), (246, 155), (246, 156), (246, 157), (246, 158), (246, 159), (246, 160), (246, 161), (246, 162), (246, 163), (246, 164), (246, 165), (246, 166), (246, 167), (246, 168), (246, 169), (246, 170), (246, 171), (246, 172), (246, 173), (246, 174), (246, 175), (246, 176), (246, 177), (246, 178), (246, 179), (246, 180), (246, 181), (246, 182), (246, 183), (246, 184), (246, 185), (246, 186), (247, 106), (247, 107), (247, 108), (247, 109), (247, 110), (247, 111), (247, 114), (247, 115), (247, 116), (247, 117), (247, 118), (247, 119), (247, 120), (247, 121), (247, 122), (247, 123), (247, 124), (247, 125), (247, 126), (247, 127), (247, 128), (247, 129), (247, 130), (247, 131), (247, 132), (247, 133), (247, 134), (247, 135), (247, 136), (247, 137), (247, 138), (247, 139), (247, 140), (247, 141), (247, 142), (247, 143), (247, 144), (247, 145), (247, 146), (247, 147), (247, 148), (247, 149), (247, 150), (247, 151), (247, 152), (247, 153), (247, 154), (247, 155), (247, 156), (247, 157), (247, 158), (247, 159), (247, 160), (247, 161), (247, 162), (247, 163), (247, 164), (247, 165), (247, 166), (247, 167), (247, 168), (247, 169), (247, 170), (247, 171), (247, 172), (247, 173), (247, 174), (247, 175), (247, 176), (247, 177), (247, 178), (247, 179), (247, 180), (247, 181), (247, 182), (247, 183), (247, 184), (247, 185), (247, 186), (247, 187), (248, 112), (248, 113), (248, 116), (248, 117), (248, 118), (248, 119), (248, 120), (248, 121), (248, 122), (248, 123), (248, 124), (248, 125), (248, 126), (248, 127), (248, 128), (248, 129), (248, 130), (248, 131), (248, 132), (248, 133), (248, 134), (248, 135), (248, 136), (248, 137), (248, 138), (248, 139), (248, 140), (248, 141), (248, 142), (248, 143), (248, 144), (248, 145), (248, 146), (248, 147), (248, 148), (248, 149), (248, 150), (248, 151), (248, 152), (248, 153), (248, 154), (248, 155), (248, 156), (248, 157), (248, 158), (248, 159), (248, 160), (248, 161), (248, 162), (248, 163), (248, 164), (248, 165), (248, 166), (248, 167), (248, 168), (248, 169), (248, 170), (248, 171), (248, 172), (248, 173), (248, 174), (248, 175), (248, 176), (248, 177), (248, 178), (248, 179), (248, 180), (248, 181), (248, 182), (248, 183), (248, 184), (248, 185), (248, 186), (248, 187), (248, 188), (248, 192), (249, 115), (249, 118), (249, 119), (249, 120), (249, 121), (249, 122), (249, 123), (249, 124), (249, 125), (249, 126), (249, 127), (249, 128), (249, 129), (249, 130), (249, 131), (249, 132), (249, 133), (249, 134), (249, 135), (249, 136), (249, 137), (249, 138), (249, 139), (249, 140), (249, 141), (249, 142), (249, 143), (249, 144), (249, 145), (249, 146), (249, 147), (249, 148), (249, 149), (249, 150), (249, 151), (249, 152), (249, 153), (249, 154), (249, 155), (249, 156), (249, 157), (249, 158), (249, 159), (249, 160), (249, 161), (249, 162), (249, 163), (249, 164), (249, 165), (249, 166), (249, 167), (249, 168), (249, 169), (249, 170), (249, 171), (249, 172), (249, 173), (249, 174), (249, 175), (249, 176), (249, 177), (249, 178), (249, 179), (249, 180), (249, 181), (249, 182), (249, 183), (249, 184), (249, 185), (249, 186), (249, 187), (249, 188), (249, 189), (249, 190), (249, 192), (250, 119), (250, 120), (250, 121), (250, 122), (250, 123), (250, 124), (250, 125), (250, 126), (250, 127), (250, 128), (250, 129), (250, 130), (250, 131), (250, 132), (250, 133), (250, 134), (250, 135), (250, 136), (250, 137), (250, 138), (250, 139), (250, 140), (250, 141), (250, 142), (250, 143), (250, 144), (250, 145), (250, 146), (250, 147), (250, 148), (250, 149), (250, 150), (250, 151), (250, 152), (250, 153), (250, 154), (250, 155), (250, 156), (250, 157), (250, 158), (250, 159), (250, 160), (250, 161), (250, 162), (250, 163), (250, 164), (250, 165), (250, 166), (250, 167), (250, 168), (250, 169), (250, 170), (250, 171), (250, 172), (250, 173), (250, 174), (250, 175), (250, 176), (250, 177), (250, 178), (250, 179), (250, 180), (250, 181), (250, 182), (250, 183), (250, 184), (250, 185), (250, 186), (250, 187), (250, 188), (250, 189), (250, 190), (250, 192), (251, 118), (251, 120), (251, 121), (251, 122), (251, 123), (251, 124), (251, 125), (251, 126), (251, 127), (251, 128), (251, 129), (251, 130), (251, 131), (251, 132), (251, 133), (251, 134), (251, 135), (251, 136), (251, 137), (251, 138), (251, 139), (251, 140), (251, 141), (251, 142), (251, 143), (251, 144), (251, 145), (251, 146), (251, 147), (251, 148), (251, 149), (251, 150), (251, 151), (251, 152), (251, 153), (251, 154), (251, 155), (251, 156), (251, 157), (251, 158), (251, 159), (251, 160), (251, 161), (251, 162), (251, 163), (251, 164), (251, 165), (251, 166), (251, 167), (251, 168), (251, 169), (251, 170), (251, 171), (251, 172), (251, 173), (251, 174), (251, 175), (251, 176), (251, 177), (251, 178), (251, 179), (251, 180), (251, 181), (251, 182), (251, 183), (251, 184), (251, 185), (251, 186), (251, 187), (251, 188), (251, 189), (251, 190), (251, 192), (252, 119), (252, 121), (252, 122), (252, 123), (252, 124), (252, 125), (252, 126), (252, 127), (252, 128), (252, 129), (252, 130), (252, 131), (252, 132), (252, 133), (252, 134), (252, 135), (252, 136), (252, 137), (252, 138), (252, 139), (252, 140), (252, 141), (252, 142), (252, 143), (252, 144), (252, 145), (252, 146), (252, 147), (252, 148), (252, 149), (252, 150), (252, 151), (252, 152), (252, 153), (252, 154), (252, 155), (252, 156), (252, 157), (252, 158), (252, 159), (252, 160), (252, 161), (252, 162), (252, 163), (252, 164), (252, 165), (252, 166), (252, 167), (252, 168), (252, 169), (252, 170), (252, 171), (252, 172), (252, 173), (252, 174), (252, 175), (252, 176), (252, 177), (252, 178), (252, 179), (252, 180), (252, 181), (252, 182), (252, 183), (252, 184), (252, 185), (252, 186), (252, 187), (252, 188), (252, 189), (252, 190), (252, 192), (253, 120), (253, 122), (253, 123), (253, 124), (253, 125), (253, 126), (253, 127), (253, 128), (253, 129), (253, 130), (253, 131), (253, 132), (253, 133), (253, 134), (253, 135), (253, 136), (253, 137), (253, 138), (253, 139), (253, 140), (253, 141), (253, 142), (253, 143), (253, 144), (253, 145), (253, 146), (253, 147), (253, 148), (253, 149), (253, 150), (253, 151), (253, 152), (253, 153), (253, 154), (253, 155), (253, 156), (253, 157), (253, 158), (253, 159), (253, 160), (253, 161), (253, 162), (253, 163), (253, 164), (253, 165), (253, 166), (253, 167), (253, 168), (253, 169), (253, 170), (253, 171), (253, 172), (253, 173), (253, 174), (253, 175), (253, 176), (253, 177), (253, 178), (253, 179), (253, 180), (253, 181), (253, 182), (253, 183), (253, 184), (253, 185), (253, 186), (253, 187), (253, 188), (253, 189), (253, 190), (253, 192), (254, 121), (254, 123), (254, 124), (254, 125), (254, 126), (254, 127), (254, 128), (254, 129), (254, 130), (254, 131), (254, 132), (254, 133), (254, 134), (254, 135), (254, 136), (254, 137), (254, 138), (254, 139), (254, 140), (254, 141), (254, 142), (254, 143), (254, 144), (254, 145), (254, 146), (254, 147), (254, 148), (254, 149), (254, 150), (254, 151), (254, 152), (254, 153), (254, 154), (254, 155), (254, 156), (254, 157), (254, 158), (254, 159), (254, 160), (254, 161), (254, 162), (254, 163), (254, 164), (254, 165), (254, 166), (254, 167), (254, 168), (254, 169), (254, 170), (254, 171), (254, 172), (254, 173), (254, 174), (254, 175), (254, 176), (254, 177), (254, 178), (254, 179), (254, 180), (254, 181), (254, 182), (254, 183), (254, 184), (254, 185), (254, 186), (254, 187), (254, 188), (254, 189), (254, 190), (254, 192), (255, 121), (255, 123), (255, 124), (255, 125), (255, 126), (255, 127), (255, 128), (255, 129), (255, 130), (255, 131), (255, 132), (255, 133), (255, 134), (255, 135), (255, 136), (255, 137), (255, 138), (255, 139), (255, 140), (255, 141), (255, 142), (255, 143), (255, 144), (255, 145), (255, 146), (255, 147), (255, 148), (255, 149), (255, 150), (255, 151), (255, 152), (255, 153), (255, 154), (255, 155), (255, 156), (255, 157), (255, 158), (255, 159), (255, 160), (255, 161), (255, 162), (255, 163), (255, 164), (255, 165), (255, 166), (255, 167), (255, 168), (255, 169), (255, 170), (255, 171), (255, 172), (255, 173), (255, 174), (255, 175), (255, 176), (255, 177), (255, 178), (255, 179), (255, 180), (255, 181), (255, 182), (255, 183), (255, 184), (255, 185), (255, 186), (255, 187), (255, 188), (255, 189), (255, 190), (255, 192), (256, 122), (256, 124), (256, 125), (256, 126), (256, 127), (256, 128), (256, 129), (256, 130), (256, 131), (256, 132), (256, 133), (256, 134), (256, 135), (256, 136), (256, 137), (256, 138), (256, 139), (256, 140), (256, 141), (256, 142), (256, 143), (256, 144), (256, 145), (256, 146), (256, 147), (256, 148), (256, 149), (256, 150), (256, 151), (256, 152), (256, 153), (256, 154), (256, 155), (256, 156), (256, 157), (256, 158), (256, 159), (256, 160), (256, 161), (256, 162), (256, 163), (256, 164), (256, 165), (256, 166), (256, 167), (256, 168), (256, 169), (256, 170), (256, 171), (256, 172), (256, 173), (256, 174), (256, 175), (256, 176), (256, 177), (256, 178), (256, 179), (256, 180), (256, 181), (256, 182), (256, 183), (256, 184), (256, 185), (256, 186), (256, 187), (256, 188), (256, 189), (256, 190), (256, 192), (257, 122), (257, 124), (257, 125), (257, 126), (257, 127), (257, 128), (257, 129), (257, 130), (257, 131), (257, 132), (257, 133), (257, 134), (257, 135), (257, 136), (257, 137), (257, 138), (257, 139), (257, 140), (257, 141), (257, 142), (257, 143), (257, 144), (257, 145), (257, 146), (257, 147), (257, 148), (257, 149), (257, 150), (257, 151), (257, 152), (257, 153), (257, 154), (257, 155), (257, 156), (257, 157), (257, 158), (257, 159), (257, 160), (257, 161), (257, 162), (257, 163), (257, 164), (257, 165), (257, 166), (257, 167), (257, 168), (257, 169), (257, 170), (257, 171), (257, 172), (257, 173), (257, 174), (257, 175), (257, 176), (257, 177), (257, 178), (257, 179), (257, 180), (257, 181), (257, 182), (257, 183), (257, 184), (257, 185), (257, 186), (257, 187), (257, 188), (257, 189), (257, 190), (257, 192), (258, 122), (258, 123), (258, 124), (258, 125), (258, 126), (258, 127), (258, 128), (258, 129), (258, 130), (258, 131), (258, 132), (258, 133), (258, 134), (258, 135), (258, 136), (258, 137), (258, 138), (258, 139), (258, 140), (258, 141), (258, 142), (258, 143), (258, 144), (258, 145), (258, 146), (258, 147), (258, 148), (258, 149), (258, 150), (258, 151), (258, 152), (258, 153), (258, 154), (258, 155), (258, 156), (258, 157), (258, 158), (258, 159), (258, 160), (258, 161), (258, 162), (258, 163), (258, 164), (258, 165), (258, 166), (258, 167), (258, 168), (258, 169), (258, 170), (258, 171), (258, 172), (258, 173), (258, 174), (258, 175), (258, 176), (258, 177), (258, 178), (258, 179), (258, 180), (258, 181), (258, 182), (258, 183), (258, 184), (258, 185), (258, 186), (258, 187), (258, 188), (258, 189), (258, 191), (259, 123), (259, 125), (259, 126), (259, 127), (259, 128), (259, 129), (259, 130), (259, 131), (259, 132), (259, 133), (259, 134), (259, 135), (259, 136), (259, 137), (259, 138), (259, 139), (259, 140), (259, 141), (259, 142), (259, 143), (259, 144), (259, 145), (259, 146), (259, 147), (259, 148), (259, 149), (259, 150), (259, 151), (259, 152), (259, 153), (259, 154), (259, 155), (259, 156), (259, 157), (259, 158), (259, 159), (259, 160), (259, 161), (259, 162), (259, 163), (259, 164), (259, 165), (259, 166), (259, 167), (259, 168), (259, 169), (259, 170), (259, 171), (259, 172), (259, 173), (259, 174), (259, 175), (259, 176), (259, 177), (259, 178), (259, 179), (259, 180), (259, 181), (259, 182), (259, 183), (259, 184), (259, 185), (259, 186), (259, 187), (259, 188), (259, 189), (259, 191), (260, 123), (260, 125), (260, 126), (260, 127), (260, 128), (260, 129), (260, 130), (260, 131), (260, 132), (260, 133), (260, 134), (260, 135), (260, 136), (260, 137), (260, 138), (260, 139), (260, 140), (260, 141), (260, 142), (260, 143), (260, 144), (260, 145), (260, 146), (260, 147), (260, 148), (260, 149), (260, 150), (260, 151), (260, 152), (260, 153), (260, 154), (260, 155), (260, 156), (260, 157), (260, 158), (260, 159), (260, 160), (260, 161), (260, 162), (260, 163), (260, 164), (260, 165), (260, 166), (260, 167), (260, 168), (260, 169), (260, 170), (260, 171), (260, 172), (260, 173), (260, 174), (260, 175), (260, 176), (260, 177), (260, 178), (260, 179), (260, 180), (260, 181), (260, 182), (260, 183), (260, 184), (260, 185), (260, 186), (260, 187), (260, 188), (260, 189), (260, 191), (261, 123), (261, 125), (261, 126), (261, 127), (261, 128), (261, 129), (261, 130), (261, 131), (261, 132), (261, 133), (261, 134), (261, 135), (261, 136), (261, 137), (261, 138), (261, 139), (261, 140), (261, 141), (261, 142), (261, 143), (261, 144), (261, 145), (261, 146), (261, 147), (261, 148), (261, 149), (261, 150), (261, 151), (261, 152), (261, 153), (261, 154), (261, 155), (261, 156), (261, 157), (261, 158), (261, 159), (261, 160), (261, 161), (261, 162), (261, 163), (261, 164), (261, 165), (261, 166), (261, 167), (261, 168), (261, 169), (261, 170), (261, 171), (261, 172), (261, 173), (261, 174), (261, 175), (261, 176), (261, 177), (261, 178), (261, 179), (261, 180), (261, 181), (261, 182), (261, 183), (261, 184), (261, 185), (261, 186), (261, 187), (261, 188), (261, 190), (262, 123), (262, 125), (262, 126), (262, 127), (262, 128), (262, 129), (262, 130), (262, 131), (262, 132), (262, 133), (262, 134), (262, 135), (262, 136), (262, 137), (262, 138), (262, 139), (262, 140), (262, 141), (262, 142), (262, 143), (262, 144), (262, 145), (262, 146), (262, 147), (262, 148), (262, 149), (262, 150), (262, 151), (262, 152), (262, 153), (262, 154), (262, 155), (262, 156), (262, 157), (262, 158), (262, 159), (262, 160), (262, 161), (262, 162), (262, 163), (262, 164), (262, 165), (262, 166), (262, 167), (262, 168), (262, 169), (262, 170), (262, 171), (262, 172), (262, 173), (262, 174), (262, 175), (262, 176), (262, 177), (262, 178), (262, 179), (262, 180), (262, 181), (262, 182), (262, 183), (262, 184), (262, 185), (262, 186), (262, 187), (262, 188), (262, 190), (263, 123), (263, 125), (263, 126), (263, 127), (263, 128), (263, 129), (263, 130), (263, 131), (263, 132), (263, 133), (263, 134), (263, 135), (263, 136), (263, 137), (263, 138), (263, 139), (263, 140), (263, 141), (263, 142), (263, 143), (263, 144), (263, 145), (263, 146), (263, 147), (263, 148), (263, 149), (263, 150), (263, 151), (263, 152), (263, 153), (263, 154), (263, 155), (263, 156), (263, 157), (263, 158), (263, 159), (263, 160), (263, 161), (263, 162), (263, 163), (263, 164), (263, 165), (263, 166), (263, 167), (263, 168), (263, 169), (263, 170), (263, 171), (263, 172), (263, 173), (263, 174), (263, 175), (263, 176), (263, 177), (263, 178), (263, 179), (263, 180), (263, 181), (263, 182), (263, 183), (263, 184), (263, 185), (263, 186), (263, 187), (263, 189), (264, 122), (264, 124), (264, 125), (264, 126), (264, 127), (264, 128), (264, 129), (264, 130), (264, 131), (264, 132), (264, 133), (264, 134), (264, 135), (264, 136), (264, 137), (264, 138), (264, 139), (264, 140), (264, 141), (264, 142), (264, 143), (264, 144), (264, 145), (264, 146), (264, 147), (264, 148), (264, 149), (264, 150), (264, 151), (264, 152), (264, 153), (264, 154), (264, 155), (264, 156), (264, 157), (264, 158), (264, 159), (264, 160), (264, 161), (264, 162), (264, 163), (264, 164), (264, 165), (264, 166), (264, 167), (264, 168), (264, 169), (264, 170), (264, 171), (264, 172), (264, 173), (264, 174), (264, 175), (264, 176), (264, 177), (264, 178), (264, 179), (264, 180), (264, 181), (264, 182), (264, 183), (264, 184), (264, 185), (264, 186), (264, 188), (265, 122), (265, 124), (265, 125), (265, 126), (265, 127), (265, 128), (265, 129), (265, 130), (265, 131), (265, 132), (265, 133), (265, 134), (265, 135), (265, 136), (265, 137), (265, 138), (265, 139), (265, 140), (265, 141), (265, 142), (265, 143), (265, 144), (265, 145), (265, 146), (265, 147), (265, 148), (265, 149), (265, 150), (265, 151), (265, 152), (265, 153), (265, 154), (265, 155), (265, 156), (265, 157), (265, 158), (265, 159), (265, 160), (265, 161), (265, 162), (265, 163), (265, 164), (265, 165), (265, 166), (265, 167), (265, 168), (265, 169), (265, 170), (265, 171), (265, 172), (265, 173), (265, 174), (265, 175), (265, 176), (265, 177), (265, 178), (265, 179), (265, 180), (265, 181), (265, 182), (265, 183), (265, 184), (265, 185), (265, 187), (266, 122), (266, 124), (266, 125), (266, 126), (266, 127), (266, 128), (266, 129), (266, 130), (266, 131), (266, 132), (266, 133), (266, 134), (266, 135), (266, 138), (266, 139), (266, 140), (266, 141), (266, 142), (266, 143), (266, 144), (266, 145), (266, 146), (266, 147), (266, 148), (266, 149), (266, 150), (266, 151), (266, 152), (266, 153), (266, 154), (266, 155), (266, 156), (266, 157), (266, 158), (266, 159), (266, 160), (266, 161), (266, 162), (266, 163), (266, 164), (266, 165), (266, 166), (266, 167), (266, 168), (266, 169), (266, 170), (266, 171), (266, 172), (266, 173), (266, 174), (266, 175), (266, 176), (266, 177), (266, 178), (266, 179), (266, 180), (266, 181), (266, 182), (266, 183), (266, 184), (267, 122), (267, 124), (267, 125), (267, 126), (267, 127), (267, 128), (267, 129), (267, 130), (267, 131), (267, 132), (267, 136), (267, 137), (267, 139), (267, 140), (267, 141), (267, 142), (267, 143), (267, 144), (267, 145), (267, 146), (267, 147), (267, 148), (267, 149), (267, 150), (267, 151), (267, 152), (267, 153), (267, 154), (267, 155), (267, 156), (267, 157), (267, 158), (267, 159), (267, 160), (267, 161), (267, 162), (267, 163), (267, 164), (267, 165), (267, 166), (267, 167), (267, 168), (267, 169), (267, 170), (267, 171), (267, 172), (267, 173), (267, 174), (267, 175), (267, 176), (267, 177), (267, 178), (267, 179), (267, 180), (267, 181), (267, 186), (268, 121), (268, 123), (268, 124), (268, 125), (268, 126), (268, 127), (268, 128), (268, 129), (268, 130), (268, 134), (268, 139), (268, 142), (268, 143), (268, 144), (268, 145), (268, 146), (268, 147), (268, 148), (268, 149), (268, 150), (268, 151), (268, 152), (268, 153), (268, 154), (268, 155), (268, 156), (268, 157), (268, 158), (268, 159), (268, 160), (268, 161), (268, 162), (268, 163), (268, 164), (268, 165), (268, 166), (268, 167), (268, 168), (268, 169), (268, 170), (268, 171), (268, 172), (268, 173), (268, 174), (268, 175), (268, 176), (268, 177), (268, 178), (268, 179), (268, 180), (268, 183), (269, 121), (269, 123), (269, 124), (269, 125), (269, 126), (269, 127), (269, 128), (269, 129), (269, 132), (269, 139), (269, 141), (269, 145), (269, 146), (269, 147), (269, 148), (269, 149), (269, 150), (269, 151), (269, 152), (269, 153), (269, 154), (269, 155), (269, 156), (269, 157), (269, 158), (269, 159), (269, 160), (269, 161), (269, 162), (269, 163), (269, 164), (269, 165), (269, 166), (269, 167), (269, 168), (269, 169), (269, 170), (269, 171), (269, 172), (269, 173), (269, 174), (269, 175), (269, 176), (269, 177), (269, 178), (269, 179), (269, 181), (270, 120), (270, 122), (270, 123), (270, 124), (270, 125), (270, 126), (270, 127), (270, 128), (270, 130), (270, 142), (270, 143), (270, 144), (270, 147), (270, 148), (270, 149), (270, 150), (270, 151), (270, 152), (270, 153), (270, 154), (270, 155), (270, 156), (270, 157), (270, 158), (270, 159), (270, 160), (270, 161), (270, 162), (270, 163), (270, 164), (270, 165), (270, 166), (270, 167), (270, 168), (270, 169), (270, 170), (270, 171), (270, 172), (270, 173), (270, 174), (270, 175), (270, 176), (270, 177), (270, 178), (270, 180), (271, 119), (271, 121), (271, 122), (271, 123), (271, 124), (271, 125), (271, 126), (271, 127), (271, 129), (271, 148), (271, 149), (271, 150), (271, 151), (271, 152), (271, 153), (271, 154), (271, 155), (271, 156), (271, 157), (271, 158), (271, 159), (271, 160), (271, 161), (271, 162), (271, 163), (271, 164), (271, 165), (271, 166), (271, 167), (271, 168), (271, 169), (271, 170), (271, 171), (271, 172), (271, 173), (271, 174), (271, 175), (271, 176), (271, 177), (271, 179), (272, 118), (272, 120), (272, 121), (272, 122), (272, 123), (272, 124), (272, 125), (272, 126), (272, 128), (272, 147), (272, 149), (272, 150), (272, 151), (272, 152), (272, 153), (272, 154), (272, 155), (272, 156), (272, 157), (272, 158), (272, 159), (272, 160), (272, 161), (272, 162), (272, 163), (272, 164), (272, 165), (272, 166), (272, 167), (272, 168), (272, 169), (272, 170), (272, 171), (272, 172), (272, 173), (272, 174), (272, 175), (272, 176), (272, 178), (273, 117), (273, 119), (273, 120), (273, 121), (273, 122), (273, 123), (273, 124), (273, 125), (273, 127), (273, 147), (273, 149), (273, 150), (273, 151), (273, 152), (273, 153), (273, 154), (273, 155), (273, 156), (273, 157), (273, 158), (273, 159), (273, 160), (273, 161), (273, 162), (273, 163), (273, 164), (273, 165), (273, 166), (273, 167), (273, 168), (273, 169), (273, 170), (273, 171), (273, 172), (273, 173), (273, 174), (273, 175), (273, 176), (273, 178), (274, 114), (274, 118), (274, 119), (274, 120), (274, 121), (274, 122), (274, 123), (274, 124), (274, 126), (274, 148), (274, 150), (274, 151), (274, 152), (274, 153), (274, 154), (274, 155), (274, 156), (274, 157), (274, 158), (274, 159), (274, 160), (274, 161), (274, 162), (274, 163), (274, 164), (274, 165), (274, 166), (274, 167), (274, 168), (274, 169), (274, 170), (274, 171), (274, 172), (274, 173), (274, 174), (274, 175), (274, 177), (275, 113), (275, 117), (275, 118), (275, 119), (275, 120), (275, 121), (275, 122), (275, 123), (275, 125), (275, 148), (275, 150), (275, 151), (275, 152), (275, 153), (275, 154), (275, 155), (275, 156), (275, 157), (275, 158), (275, 159), (275, 160), (275, 161), (275, 162), (275, 163), (275, 164), (275, 165), (275, 166), (275, 167), (275, 168), (275, 169), (275, 170), (275, 171), (275, 172), (275, 173), (275, 174), (275, 175), (275, 177), (276, 113), (276, 115), (276, 116), (276, 117), (276, 118), (276, 119), (276, 120), (276, 121), (276, 122), (276, 124), (276, 148), (276, 150), (276, 151), (276, 152), (276, 153), (276, 154), (276, 155), (276, 156), (276, 157), (276, 158), (276, 159), (276, 160), (276, 161), (276, 162), (276, 163), (276, 164), (276, 165), (276, 166), (276, 167), (276, 168), (276, 169), (276, 170), (276, 171), (276, 172), (276, 173), (276, 174), (276, 175), (276, 177), (277, 112), (277, 114), (277, 115), (277, 116), (277, 117), (277, 118), (277, 119), (277, 120), (277, 121), (277, 122), (277, 124), (277, 149), (277, 151), (277, 152), (277, 153), (277, 154), (277, 155), (277, 156), (277, 157), (277, 158), (277, 159), (277, 160), (277, 161), (277, 162), (277, 163), (277, 164), (277, 165), (277, 166), (277, 167), (277, 168), (277, 169), (277, 170), (277, 171), (277, 172), (277, 173), (277, 174), (277, 175), (277, 176), (277, 177), (278, 112), (278, 114), (278, 115), (278, 116), (278, 117), (278, 118), (278, 119), (278, 120), (278, 121), (278, 123), (278, 149), (278, 151), (278, 152), (278, 153), (278, 154), (278, 155), (278, 156), (278, 157), (278, 158), (278, 159), (278, 160), (278, 161), (278, 162), (278, 163), (278, 164), (278, 165), (278, 166), (278, 167), (278, 168), (278, 169), (278, 170), (278, 171), (278, 172), (278, 173), (278, 174), (278, 176), (279, 111), (279, 113), (279, 114), (279, 115), (279, 116), (279, 117), (279, 118), (279, 119), (279, 120), (279, 123), (279, 149), (279, 151), (279, 152), (279, 153), (279, 154), (279, 155), (279, 156), (279, 157), (279, 158), (279, 159), (279, 160), (279, 161), (279, 162), (279, 163), (279, 164), (279, 165), (279, 166), (279, 167), (279, 168), (279, 169), (279, 170), (279, 171), (279, 172), (279, 173), (279, 174), (279, 176), (280, 110), (280, 112), (280, 113), (280, 114), (280, 115), (280, 116), (280, 117), (280, 118), (280, 119), (280, 122), (280, 123), (280, 149), (280, 151), (280, 152), (280, 153), (280, 154), (280, 155), (280, 156), (280, 157), (280, 158), (280, 159), (280, 160), (280, 161), (280, 162), (280, 163), (280, 164), (280, 165), (280, 166), (280, 167), (280, 168), (280, 169), (280, 170), (280, 171), (280, 172), (280, 173), (280, 174), (280, 176), (281, 110), (281, 112), (281, 113), (281, 114), (281, 115), (281, 116), (281, 117), (281, 118), (281, 120), (281, 149), (281, 151), (281, 152), (281, 153), (281, 154), (281, 155), (281, 156), (281, 157), (281, 158), (281, 159), (281, 160), (281, 161), (281, 162), (281, 163), (281, 164), (281, 165), (281, 166), (281, 167), (281, 168), (281, 169), (281, 170), (281, 171), (281, 172), (281, 173), (281, 174), (281, 176), (282, 110), (282, 112), (282, 113), (282, 114), (282, 115), (282, 116), (282, 117), (282, 119), (282, 149), (282, 151), (282, 152), (282, 153), (282, 154), (282, 155), (282, 156), (282, 157), (282, 158), (282, 159), (282, 160), (282, 161), (282, 162), (282, 163), (282, 164), (282, 165), (282, 166), (282, 167), (282, 168), (282, 169), (282, 170), (282, 171), (282, 172), (282, 173), (282, 174), (282, 176), (283, 109), (283, 111), (283, 112), (283, 113), (283, 114), (283, 115), (283, 116), (283, 118), (283, 149), (283, 151), (283, 152), (283, 153), (283, 154), (283, 155), (283, 156), (283, 157), (283, 158), (283, 159), (283, 160), (283, 161), (283, 162), (283, 163), (283, 164), (283, 165), (283, 166), (283, 167), (283, 168), (283, 169), (283, 170), (283, 171), (283, 172), (283, 173), (283, 174), (283, 176), (284, 109), (284, 111), (284, 112), (284, 113), (284, 114), (284, 115), (284, 117), (284, 149), (284, 151), (284, 152), (284, 153), (284, 154), (284, 155), (284, 156), (284, 157), (284, 158), (284, 159), (284, 160), (284, 161), (284, 162), (284, 163), (284, 164), (284, 165), (284, 166), (284, 167), (284, 168), (284, 169), (284, 170), (284, 171), (284, 172), (284, 173), (284, 174), (284, 176), (285, 109), (285, 111), (285, 112), (285, 113), (285, 114), (285, 116), (285, 149), (285, 151), (285, 152), (285, 153), (285, 154), (285, 155), (285, 156), (285, 157), (285, 158), (285, 159), (285, 160), (285, 161), (285, 162), (285, 163), (285, 164), (285, 165), (285, 166), (285, 167), (285, 168), (285, 169), (285, 170), (285, 171), (285, 172), (285, 173), (285, 174), (285, 176), (286, 109), (286, 115), (286, 149), (286, 151), (286, 152), (286, 153), (286, 154), (286, 155), (286, 156), (286, 157), (286, 158), (286, 159), (286, 160), (286, 161), (286, 162), (286, 163), (286, 164), (286, 165), (286, 166), (286, 167), (286, 168), (286, 169), (286, 170), (286, 171), (286, 172), (286, 173), (286, 174), (286, 175), (286, 177), (287, 110), (287, 112), (287, 114), (287, 149), (287, 151), (287, 152), (287, 153), (287, 154), (287, 155), (287, 156), (287, 157), (287, 158), (287, 159), (287, 160), (287, 161), (287, 162), (287, 163), (287, 164), (287, 165), (287, 166), (287, 167), (287, 168), (287, 169), (287, 170), (287, 171), (287, 172), (287, 173), (287, 174), (287, 175), (287, 177), (288, 149), (288, 151), (288, 152), (288, 153), (288, 154), (288, 155), (288, 156), (288, 157), (288, 158), (288, 159), (288, 160), (288, 161), (288, 162), (288, 163), (288, 164), (288, 165), (288, 166), (288, 167), (288, 168), (288, 169), (288, 170), (288, 171), (288, 172), (288, 173), (288, 174), (288, 175), (288, 177), (289, 148), (289, 150), (289, 151), (289, 152), (289, 153), (289, 154), (289, 155), (289, 156), (289, 157), (289, 158), (289, 159), (289, 160), (289, 161), (289, 162), (289, 163), (289, 164), (289, 165), (289, 166), (289, 167), (289, 168), (289, 169), (289, 170), (289, 171), (289, 172), (289, 173), (289, 174), (289, 175), (289, 177), (290, 148), (290, 150), (290, 151), (290, 152), (290, 153), (290, 154), (290, 155), (290, 156), (290, 157), (290, 158), (290, 159), (290, 160), (290, 161), (290, 162), (290, 163), (290, 164), (290, 165), (290, 166), (290, 167), (290, 168), (290, 169), (290, 170), (290, 171), (290, 172), (290, 173), (290, 174), (290, 175), (290, 176), (290, 178), (291, 148), (291, 150), (291, 151), (291, 152), (291, 153), (291, 154), (291, 155), (291, 156), (291, 157), (291, 158), (291, 159), (291, 160), (291, 161), (291, 162), (291, 163), (291, 164), (291, 165), (291, 166), (291, 167), (291, 168), (291, 169), (291, 170), (291, 171), (291, 172), (291, 173), (291, 174), (291, 175), (291, 176), (291, 178), (292, 147), (292, 149), (292, 150), (292, 151), (292, 152), (292, 153), (292, 154), (292, 155), (292, 156), (292, 157), (292, 158), (292, 159), (292, 160), (292, 161), (292, 162), (292, 163), (292, 164), (292, 165), (292, 166), (292, 167), (292, 168), (292, 169), (292, 170), (292, 171), (292, 172), (292, 173), (292, 174), (292, 175), (292, 176), (292, 177), (292, 179), (293, 145), (293, 148), (293, 149), (293, 150), (293, 151), (293, 152), (293, 153), (293, 154), (293, 155), (293, 156), (293, 157), (293, 158), (293, 159), (293, 160), (293, 161), (293, 162), (293, 163), (293, 164), (293, 165), (293, 166), (293, 167), (293, 168), (293, 169), (293, 170), (293, 171), (293, 172), (293, 173), (293, 174), (293, 175), (293, 176), (293, 177), (293, 178), (293, 180), (294, 145), (294, 147), (294, 148), (294, 149), (294, 150), (294, 151), (294, 152), (294, 153), (294, 154), (294, 155), (294, 156), (294, 157), (294, 158), (294, 159), (294, 160), (294, 161), (294, 162), (294, 163), (294, 164), (294, 165), (294, 166), (294, 167), (294, 168), (294, 169), (294, 170), (294, 171), (294, 172), (294, 173), (294, 174), (294, 175), (294, 176), (294, 177), (294, 178), (294, 179), (294, 181), (295, 145), (295, 147), (295, 148), (295, 149), (295, 150), (295, 151), (295, 152), (295, 153), (295, 154), (295, 155), (295, 156), (295, 157), (295, 164), (295, 165), (295, 166), (295, 167), (295, 168), (295, 169), (295, 170), (295, 171), (295, 172), (295, 173), (295, 174), (295, 175), (295, 176), (295, 177), (295, 178), (295, 179), (295, 180), (295, 184), (296, 144), (296, 146), (296, 147), (296, 148), (296, 149), (296, 150), (296, 151), (296, 152), (296, 153), (296, 154), (296, 155), (296, 156), (296, 159), (296, 160), (296, 161), (296, 162), (296, 165), (296, 166), (296, 167), (296, 168), (296, 169), (296, 170), (296, 171), (296, 172), (296, 173), (296, 174), (296, 175), (296, 176), (296, 177), (296, 178), (296, 179), (296, 180), (296, 181), (296, 184), (297, 144), (297, 146), (297, 147), (297, 148), (297, 149), (297, 150), (297, 151), (297, 152), (297, 153), (297, 154), (297, 155), (297, 157), (297, 164), (297, 167), (297, 168), (297, 169), (297, 170), (297, 171), (297, 172), (297, 173), (297, 174), (297, 175), (297, 176), (297, 177), (297, 178), (297, 179), (297, 180), (297, 181), (297, 182), (297, 184), (298, 144), (298, 146), (298, 147), (298, 148), (298, 149), (298, 150), (298, 151), (298, 152), (298, 153), (298, 154), (298, 156), (298, 165), (298, 171), (298, 172), (298, 173), (298, 174), (298, 175), (298, 176), (298, 177), (298, 178), (298, 179), (298, 180), (298, 181), (298, 182), (298, 183), (298, 185), (299, 143), (299, 145), (299, 146), (299, 147), (299, 148), (299, 149), (299, 150), (299, 151), (299, 152), (299, 153), (299, 155), (299, 167), (299, 169), (299, 172), (299, 173), (299, 174), (299, 175), (299, 176), (299, 177), (299, 178), (299, 179), (299, 180), (299, 181), (299, 182), (299, 183), (299, 185), (300, 143), (300, 145), (300, 146), (300, 147), (300, 148), (300, 149), (300, 150), (300, 151), (300, 152), (300, 154), (300, 171), (300, 173), (300, 174), (300, 175), (300, 176), (300, 177), (300, 178), (300, 179), (300, 180), (300, 181), (300, 182), (300, 183), (300, 184), (300, 186), (301, 142), (301, 144), (301, 145), (301, 146), (301, 147), (301, 148), (301, 149), (301, 150), (301, 151), (301, 153), (301, 172), (301, 174), (301, 175), (301, 176), (301, 177), (301, 178), (301, 179), (301, 180), (301, 181), (301, 182), (301, 183), (301, 184), (301, 185), (301, 187), (302, 142), (302, 144), (302, 145), (302, 146), (302, 147), (302, 148), (302, 149), (302, 150), (302, 151), (302, 153), (302, 173), (302, 175), (302, 176), (302, 177), (302, 178), (302, 179), (302, 180), (302, 181), (302, 182), (302, 183), (302, 184), (302, 185), (302, 186), (302, 188), (303, 141), (303, 143), (303, 144), (303, 145), (303, 146), (303, 147), (303, 148), (303, 149), (303, 150), (303, 152), (303, 174), (303, 177), (303, 178), (303, 179), (303, 180), (303, 181), (303, 182), (303, 183), (303, 184), (303, 185), (303, 186), (303, 187), (303, 189), (304, 140), (304, 142), (304, 143), (304, 144), (304, 145), (304, 146), (304, 147), (304, 148), (304, 149), (304, 150), (304, 152), (304, 175), (304, 178), (304, 179), (304, 180), (304, 181), (304, 182), (304, 183), (304, 184), (304, 185), (304, 186), (304, 187), (304, 188), (304, 190), (305, 140), (305, 142), (305, 143), (305, 144), (305, 145), (305, 146), (305, 147), (305, 148), (305, 149), (305, 151), (305, 177), (305, 180), (305, 181), (305, 182), (305, 183), (305, 184), (305, 185), (305, 186), (305, 187), (305, 188), (305, 189), (305, 191), (306, 139), (306, 141), (306, 142), (306, 143), (306, 144), (306, 145), (306, 146), (306, 147), (306, 148), (306, 149), (306, 151), (306, 178), (306, 182), (306, 183), (306, 184), (306, 185), (306, 186), (306, 187), (306, 188), (306, 189), (306, 190), (306, 192), (307, 139), (307, 141), (307, 142), (307, 143), (307, 144), (307, 145), (307, 146), (307, 147), (307, 148), (307, 149), (307, 151), (307, 180), (307, 184), (307, 185), (307, 186), (307, 187), (307, 188), (307, 189), (307, 190), (307, 191), (307, 193), (308, 139), (308, 141), (308, 142), (308, 143), (308, 144), (308, 145), (308, 146), (308, 147), (308, 148), (308, 150), (308, 182), (308, 183), (308, 186), (308, 187), (308, 188), (308, 189), (308, 190), (308, 191), (308, 192), (308, 194), (309, 139), (309, 141), (309, 142), (309, 143), (309, 144), (309, 145), (309, 146), (309, 147), (309, 148), (309, 150), (309, 184), (309, 187), (309, 188), (309, 189), (309, 190), (309, 191), (309, 192), (309, 193), (309, 195), (310, 139), (310, 141), (310, 142), (310, 143), (310, 144), (310, 145), (310, 146), (310, 147), (310, 148), (310, 150), (310, 186), (310, 189), (310, 190), (310, 191), (310, 192), (310, 193), (310, 194), (311, 142), (311, 143), (311, 144), (311, 145), (311, 146), (311, 147), (311, 149), (311, 187), (311, 190), (311, 191), (311, 192), (311, 193), (311, 194), (311, 195), (311, 198), (312, 140), (312, 143), (312, 144), (312, 145), (312, 146), (312, 147), (312, 149), (312, 191), (312, 192), (312, 193), (312, 194), (312, 195), (312, 196), (312, 199), (313, 142), (313, 145), (313, 146), (313, 147), (313, 149), (313, 190), (313, 192), (313, 193), (313, 194), (313, 195), (313, 196), (313, 197), (313, 200), (314, 143), (314, 147), (314, 149), (314, 191), (314, 193), (314, 194), (314, 195), (314, 196), (314, 197), (314, 198), (314, 201), (315, 145), (315, 149), (315, 192), (315, 194), (315, 195), (315, 196), (315, 197), (315, 198), (315, 199), (315, 202), (316, 147), (316, 149), (316, 192), (316, 195), (316, 196), (316, 197), (316, 198), (316, 199), (316, 200), (316, 203), (317, 193), (317, 196), (317, 197), (317, 198), (317, 199), (317, 200), (317, 201), (317, 203), (318, 195), (318, 197), (318, 198), (318, 199), (318, 200), (318, 201), (318, 202), (318, 204), (319, 196), (319, 198), (319, 199), (319, 200), (319, 201), (319, 202), (319, 203), (319, 205), (320, 197), (320, 199), (320, 200), (320, 201), (320, 202), (320, 203), (320, 205), (321, 198), (321, 200), (321, 201), (321, 202), (321, 203), (321, 205), (322, 198), (322, 200), (322, 201), (322, 202), (322, 203), (322, 204), (322, 206), (323, 199), (323, 201), (323, 202), (323, 203), (323, 204), (323, 206), (324, 200), (324, 202), (324, 203), (324, 204), (324, 206), (325, 201), (325, 205), (326, 202), (326, 205))
coordinates_00_ff92 = ((108, 142), (108, 143), (108, 145), (109, 140), (109, 141), (109, 146), (110, 138), (110, 139), (110, 142), (110, 143), (110, 144), (110, 146), (111, 136), (111, 137), (111, 140), (111, 141), (111, 142), (111, 143), (111, 144), (111, 146), (112, 135), (112, 138), (112, 139), (112, 140), (112, 141), (112, 142), (112, 143), (112, 144), (112, 145), (112, 146), (112, 147), (113, 135), (113, 137), (113, 138), (113, 139), (113, 140), (113, 141), (113, 142), (113, 143), (113, 144), (113, 145), (113, 147), (114, 136), (114, 138), (114, 139), (114, 140), (114, 141), (114, 142), (114, 143), (114, 144), (114, 145), (114, 147), (115, 136), (115, 138), (115, 139), (115, 140), (115, 141), (115, 142), (115, 143), (115, 144), (115, 145), (115, 147), (116, 137), (116, 139), (116, 140), (116, 141), (116, 142), (116, 143), (116, 144), (116, 145), (116, 147), (117, 137), (117, 139), (117, 140), (117, 141), (117, 142), (117, 143), (117, 144), (117, 145), (117, 147), (118, 137), (118, 139), (118, 140), (118, 141), (118, 142), (118, 143), (118, 144), (118, 145), (118, 146), (118, 147), (119, 138), (119, 140), (119, 141), (119, 142), (119, 143), (119, 144), (119, 145), (119, 146), (119, 147), (120, 138), (120, 140), (120, 141), (120, 142), (120, 143), (120, 144), (120, 146), (121, 138), (121, 140), (121, 141), (121, 142), (121, 143), (121, 144), (121, 146), (122, 139), (122, 141), (122, 142), (122, 143), (122, 144), (122, 146), (123, 139), (123, 141), (123, 142), (123, 143), (123, 144), (123, 146), (124, 139), (124, 141), (124, 142), (124, 143), (124, 144), (124, 146), (125, 139), (125, 141), (125, 142), (125, 143), (125, 146), (126, 139), (126, 145), (127, 140), (127, 142), (127, 144), (272, 140), (272, 142), (272, 144), (273, 139), (273, 145), (274, 139), (274, 141), (274, 142), (274, 143), (274, 144), (274, 146), (275, 139), (275, 141), (275, 142), (275, 143), (275, 144), (275, 146), (276, 139), (276, 141), (276, 142), (276, 143), (276, 144), (276, 146), (277, 139), (277, 141), (277, 142), (277, 143), (277, 144), (277, 146), (278, 138), (278, 140), (278, 141), (278, 142), (278, 143), (278, 144), (278, 146), (279, 138), (279, 140), (279, 141), (279, 142), (279, 143), (279, 144), (279, 146), (280, 138), (280, 140), (280, 141), (280, 142), (280, 143), (280, 144), (280, 145), (280, 146), (280, 147), (281, 137), (281, 139), (281, 140), (281, 141), (281, 142), (281, 143), (281, 144), (281, 145), (281, 146), (281, 147), (282, 137), (282, 139), (282, 140), (282, 141), (282, 142), (282, 143), (282, 144), (282, 145), (282, 147), (283, 137), (283, 139), (283, 140), (283, 141), (283, 142), (283, 143), (283, 144), (283, 145), (283, 147), (284, 136), (284, 138), (284, 139), (284, 140), (284, 141), (284, 142), (284, 143), (284, 144), (284, 145), (284, 147), (285, 136), (285, 138), (285, 139), (285, 140), (285, 141), (285, 142), (285, 143), (285, 144), (285, 145), (285, 147), (286, 135), (286, 137), (286, 138), (286, 139), (286, 140), (286, 141), (286, 142), (286, 143), (286, 144), (286, 145), (286, 147), (287, 135), (287, 139), (287, 140), (287, 141), (287, 142), (287, 143), (287, 144), (287, 146), (288, 137), (288, 141), (288, 142), (288, 143), (288, 144), (288, 146), (289, 139), (289, 143), (289, 144), (289, 146), (290, 141), (290, 146), (291, 143), (291, 145))
coordinates_7_f0_e00 = ((82, 125), (82, 127), (82, 128), (83, 125), (83, 129), (83, 130), (83, 131), (84, 124), (84, 126), (84, 127), (84, 128), (84, 134), (85, 124), (85, 126), (85, 127), (85, 128), (85, 129), (85, 130), (85, 131), (85, 132), (85, 136), (86, 124), (86, 126), (86, 127), (86, 128), (86, 129), (86, 130), (86, 131), (86, 132), (86, 133), (86, 134), (86, 137), (87, 123), (87, 125), (87, 126), (87, 127), (87, 128), (87, 129), (87, 130), (87, 131), (87, 132), (87, 133), (87, 134), (87, 135), (87, 137), (88, 122), (88, 124), (88, 125), (88, 126), (88, 127), (88, 128), (88, 129), (88, 130), (88, 131), (88, 132), (88, 133), (88, 134), (88, 135), (88, 137), (89, 122), (89, 124), (89, 125), (89, 126), (89, 127), (89, 128), (89, 129), (89, 130), (89, 131), (89, 132), (89, 133), (89, 134), (89, 135), (89, 137), (90, 122), (90, 124), (90, 125), (90, 126), (90, 127), (90, 128), (90, 129), (90, 130), (90, 131), (90, 132), (90, 133), (90, 134), (90, 135), (90, 137), (91, 122), (91, 124), (91, 125), (91, 126), (91, 127), (91, 128), (91, 129), (91, 130), (91, 131), (91, 132), (91, 133), (91, 134), (91, 135), (91, 137), (92, 123), (92, 125), (92, 126), (92, 127), (92, 128), (92, 129), (92, 130), (92, 131), (92, 132), (92, 133), (92, 134), (92, 135), (92, 137), (93, 123), (93, 125), (93, 126), (93, 127), (93, 128), (93, 129), (93, 130), (93, 131), (93, 132), (93, 133), (93, 134), (93, 135), (93, 137), (94, 123), (94, 125), (94, 126), (94, 127), (94, 128), (94, 129), (94, 130), (94, 131), (94, 132), (94, 133), (94, 134), (94, 135), (94, 136), (94, 138), (95, 123), (95, 125), (95, 126), (95, 127), (95, 128), (95, 129), (95, 130), (95, 131), (95, 132), (95, 133), (95, 134), (95, 135), (95, 136), (95, 138), (96, 124), (96, 126), (96, 127), (96, 128), (96, 129), (96, 130), (96, 131), (96, 132), (96, 133), (96, 134), (96, 135), (96, 136), (96, 137), (96, 139), (97, 124), (97, 126), (97, 127), (97, 128), (97, 129), (97, 130), (97, 131), (97, 132), (97, 133), (97, 134), (97, 135), (97, 136), (97, 137), (97, 139), (98, 124), (98, 126), (98, 127), (98, 128), (98, 129), (98, 130), (98, 131), (98, 132), (98, 133), (98, 134), (98, 135), (98, 136), (98, 137), (98, 138), (98, 140), (99, 124), (99, 126), (99, 127), (99, 128), (99, 129), (99, 130), (99, 131), (99, 132), (99, 133), (99, 134), (99, 135), (99, 136), (99, 137), (99, 138), (99, 140), (100, 127), (100, 128), (100, 129), (100, 130), (100, 131), (100, 132), (100, 133), (100, 134), (100, 135), (100, 136), (100, 137), (100, 138), (100, 139), (100, 141), (101, 125), (101, 127), (101, 128), (101, 129), (101, 130), (101, 131), (101, 132), (101, 133), (101, 134), (101, 135), (101, 136), (101, 137), (101, 138), (101, 139), (101, 141), (102, 126), (102, 128), (102, 129), (102, 130), (102, 131), (102, 132), (102, 133), (102, 134), (102, 135), (102, 136), (102, 137), (102, 138), (102, 139), (102, 140), (102, 142), (103, 127), (103, 129), (103, 130), (103, 131), (103, 132), (103, 133), (103, 134), (103, 135), (103, 136), (103, 137), (103, 138), (103, 139), (103, 140), (103, 142), (104, 128), (104, 130), (104, 131), (104, 132), (104, 133), (104, 134), (104, 135), (104, 136), (104, 137), (104, 138), (104, 139), (104, 140), (104, 142), (105, 129), (105, 131), (105, 132), (105, 133), (105, 134), (105, 135), (105, 136), (105, 137), (105, 138), (105, 139), (105, 140), (105, 142), (106, 130), (106, 132), (106, 133), (106, 134), (106, 135), (106, 136), (106, 137), (106, 138), (106, 139), (106, 142), (106, 143), (107, 131), (107, 133), (107, 134), (107, 135), (107, 136), (107, 137), (107, 141), (108, 132), (108, 134), (108, 135), (108, 139), (109, 132), (109, 137), (110, 133), (110, 135), (288, 133), (289, 133), (289, 135), (290, 132), (290, 137), (291, 132), (291, 134), (291, 135), (291, 139), (292, 131), (292, 133), (292, 134), (292, 135), (292, 136), (292, 137), (292, 141), (293, 130), (293, 132), (293, 133), (293, 134), (293, 135), (293, 136), (293, 137), (293, 138), (293, 139), (293, 142), (293, 143), (294, 129), (294, 131), (294, 132), (294, 133), (294, 134), (294, 135), (294, 136), (294, 137), (294, 138), (294, 139), (294, 140), (294, 142), (295, 128), (295, 130), (295, 131), (295, 132), (295, 133), (295, 134), (295, 135), (295, 136), (295, 137), (295, 138), (295, 139), (295, 140), (295, 142), (296, 127), (296, 129), (296, 130), (296, 131), (296, 132), (296, 133), (296, 134), (296, 135), (296, 136), (296, 137), (296, 138), (296, 139), (296, 140), (296, 142), (297, 126), (297, 128), (297, 129), (297, 130), (297, 131), (297, 132), (297, 133), (297, 134), (297, 135), (297, 136), (297, 137), (297, 138), (297, 139), (297, 140), (297, 142), (298, 125), (298, 127), (298, 128), (298, 129), (298, 130), (298, 131), (298, 132), (298, 133), (298, 134), (298, 135), (298, 136), (298, 137), (298, 138), (298, 139), (298, 141), (299, 124), (299, 126), (299, 127), (299, 128), (299, 129), (299, 130), (299, 131), (299, 132), (299, 133), (299, 134), (299, 135), (299, 136), (299, 137), (299, 138), (299, 139), (299, 141), (300, 124), (300, 126), (300, 127), (300, 128), (300, 129), (300, 130), (300, 131), (300, 132), (300, 133), (300, 134), (300, 135), (300, 136), (300, 137), (300, 138), (300, 140), (301, 124), (301, 126), (301, 127), (301, 128), (301, 129), (301, 130), (301, 131), (301, 132), (301, 133), (301, 134), (301, 135), (301, 136), (301, 137), (301, 138), (301, 140), (302, 123), (302, 125), (302, 126), (302, 127), (302, 128), (302, 129), (302, 130), (302, 131), (302, 132), (302, 133), (302, 134), (302, 135), (302, 136), (302, 137), (302, 139), (303, 123), (303, 125), (303, 126), (303, 127), (303, 128), (303, 129), (303, 130), (303, 131), (303, 132), (303, 133), (303, 134), (303, 135), (303, 136), (303, 137), (303, 139), (304, 123), (304, 125), (304, 126), (304, 127), (304, 128), (304, 129), (304, 130), (304, 131), (304, 132), (304, 133), (304, 134), (304, 135), (304, 136), (304, 138), (305, 122), (305, 124), (305, 125), (305, 126), (305, 127), (305, 128), (305, 129), (305, 130), (305, 131), (305, 132), (305, 133), (305, 134), (305, 135), (305, 136), (305, 137), (305, 138), (306, 122), (306, 124), (306, 125), (306, 126), (306, 127), (306, 128), (306, 129), (306, 130), (306, 131), (306, 132), (306, 133), (306, 134), (306, 135), (306, 137), (307, 122), (307, 124), (307, 125), (307, 126), (307, 127), (307, 128), (307, 129), (307, 130), (307, 131), (307, 132), (307, 133), (307, 134), (307, 135), (307, 137), (308, 122), (308, 124), (308, 125), (308, 126), (308, 127), (308, 128), (308, 129), (308, 130), (308, 131), (308, 132), (308, 133), (308, 134), (308, 135), (308, 137), (309, 122), (309, 124), (309, 125), (309, 126), (309, 127), (309, 128), (309, 129), (309, 130), (309, 131), (309, 132), (309, 133), (309, 134), (309, 135), (309, 137), (310, 122), (310, 124), (310, 125), (310, 126), (310, 127), (310, 128), (310, 129), (310, 130), (310, 131), (310, 132), (310, 133), (310, 134), (310, 135), (310, 137), (311, 122), (311, 124), (311, 125), (311, 126), (311, 127), (311, 128), (311, 129), (311, 130), (311, 131), (311, 132), (311, 133), (311, 134), (311, 135), (311, 137), (312, 123), (312, 125), (312, 126), (312, 127), (312, 128), (312, 129), (312, 130), (312, 131), (312, 132), (312, 133), (312, 134), (312, 135), (313, 124), (313, 126), (313, 127), (313, 128), (313, 129), (313, 130), (313, 131), (313, 132), (313, 133), (313, 134), (313, 137), (314, 124), (314, 126), (314, 127), (314, 128), (314, 129), (314, 130), (314, 131), (314, 135), (315, 124), (315, 126), (315, 127), (315, 128), (315, 129), (315, 133), (316, 125), (316, 130), (316, 131), (317, 125), (317, 127), (317, 129))
coordinates_ff1_d00 = ((97, 117), (98, 117), (98, 120), (98, 121), (98, 122), (99, 117), (99, 119), (99, 122), (100, 116), (100, 117), (100, 118), (100, 119), (100, 120), (100, 122), (101, 116), (101, 118), (101, 119), (101, 120), (101, 121), (101, 123), (102, 116), (102, 118), (102, 119), (102, 120), (102, 121), (102, 122), (102, 124), (103, 116), (103, 118), (103, 119), (103, 120), (103, 121), (103, 122), (103, 125), (104, 116), (104, 118), (104, 119), (104, 120), (104, 121), (104, 122), (104, 123), (104, 126), (105, 116), (105, 118), (105, 119), (105, 120), (105, 121), (105, 122), (105, 123), (105, 124), (105, 127), (106, 116), (106, 118), (106, 119), (106, 120), (106, 121), (106, 122), (106, 123), (106, 124), (106, 125), (106, 128), (107, 116), (107, 118), (107, 119), (107, 120), (107, 121), (107, 122), (107, 123), (107, 124), (107, 125), (107, 126), (107, 129), (108, 116), (108, 118), (108, 119), (108, 120), (108, 121), (108, 122), (108, 123), (108, 124), (108, 125), (108, 126), (108, 127), (108, 129), (109, 116), (109, 118), (109, 119), (109, 120), (109, 121), (109, 122), (109, 123), (109, 124), (109, 125), (109, 126), (109, 127), (109, 128), (109, 130), (110, 116), (110, 118), (110, 119), (110, 120), (110, 121), (110, 122), (110, 123), (110, 124), (110, 125), (110, 126), (110, 127), (110, 128), (110, 130), (111, 116), (111, 118), (111, 119), (111, 120), (111, 121), (111, 122), (111, 123), (111, 124), (111, 125), (111, 126), (111, 127), (111, 130), (112, 116), (112, 119), (112, 120), (112, 121), (112, 122), (112, 123), (112, 124), (112, 125), (112, 126), (112, 129), (113, 117), (113, 120), (113, 121), (113, 122), (113, 123), (113, 124), (113, 125), (114, 118), (114, 121), (114, 122), (114, 123), (114, 124), (114, 126), (115, 119), (115, 122), (115, 123), (115, 125), (116, 121), (116, 124), (117, 122), (117, 123), (282, 122), (282, 123), (283, 121), (283, 124), (284, 119), (284, 122), (284, 123), (284, 125), (285, 118), (285, 121), (285, 122), (285, 123), (285, 124), (285, 126), (286, 117), (286, 120), (286, 121), (286, 122), (286, 123), (286, 124), (286, 125), (286, 128), (287, 116), (287, 119), (287, 120), (287, 121), (287, 122), (287, 123), (287, 124), (287, 125), (287, 126), (287, 129), (288, 116), (288, 118), (288, 119), (288, 120), (288, 121), (288, 122), (288, 123), (288, 124), (288, 125), (288, 126), (288, 127), (288, 128), (288, 130), (289, 116), (289, 118), (289, 119), (289, 120), (289, 121), (289, 122), (289, 123), (289, 124), (289, 125), (289, 126), (289, 127), (289, 128), (289, 130), (290, 116), (290, 118), (290, 119), (290, 120), (290, 121), (290, 122), (290, 123), (290, 124), (290, 125), (290, 126), (290, 127), (290, 128), (290, 130), (291, 116), (291, 118), (291, 119), (291, 120), (291, 121), (291, 122), (291, 123), (291, 124), (291, 125), (291, 126), (291, 127), (291, 129), (292, 116), (292, 118), (292, 119), (292, 120), (292, 121), (292, 122), (292, 123), (292, 124), (292, 125), (292, 126), (292, 129), (293, 116), (293, 118), (293, 119), (293, 120), (293, 121), (293, 122), (293, 123), (293, 124), (293, 125), (293, 128), (294, 116), (294, 118), (294, 119), (294, 120), (294, 121), (294, 122), (294, 123), (294, 124), (294, 127), (295, 116), (295, 118), (295, 119), (295, 120), (295, 121), (295, 122), (295, 123), (295, 126), (296, 116), (296, 118), (296, 119), (296, 120), (296, 121), (296, 122), (297, 116), (297, 118), (297, 119), (297, 120), (297, 121), (297, 122), (297, 124), (298, 116), (298, 118), (298, 119), (298, 120), (298, 121), (298, 123), (299, 116), (299, 117), (299, 118), (299, 119), (299, 120), (299, 122), (300, 117), (300, 119), (300, 120), (300, 122), (301, 117), (301, 121), (301, 122), (302, 117), (302, 119), (302, 121))
coordinates_007_f09 = ((76, 210), (76, 212), (76, 213), (76, 214), (76, 215), (77, 208), (77, 216), (77, 217), (77, 218), (77, 219), (77, 220), (77, 221), (77, 222), (77, 223), (77, 224), (77, 225), (77, 226), (77, 228), (78, 208), (78, 210), (78, 211), (78, 212), (78, 213), (78, 214), (78, 215), (78, 216), (78, 228), (79, 207), (79, 209), (79, 210), (79, 211), (79, 212), (79, 213), (79, 214), (79, 215), (79, 216), (79, 217), (79, 218), (79, 219), (79, 220), (79, 221), (79, 222), (79, 223), (79, 224), (79, 225), (79, 226), (79, 228), (80, 207), (80, 209), (80, 210), (80, 211), (80, 212), (80, 213), (80, 214), (80, 215), (80, 216), (80, 217), (80, 218), (80, 219), (80, 220), (80, 221), (80, 222), (80, 223), (80, 224), (80, 225), (80, 226), (80, 228), (81, 206), (81, 208), (81, 209), (81, 210), (81, 211), (81, 212), (81, 213), (81, 214), (81, 215), (81, 216), (81, 217), (81, 218), (81, 219), (81, 220), (81, 221), (81, 222), (81, 223), (81, 224), (81, 225), (81, 226), (81, 228), (82, 206), (82, 208), (82, 209), (82, 210), (82, 211), (82, 212), (82, 213), (82, 214), (82, 215), (82, 216), (82, 217), (82, 218), (82, 219), (82, 220), (82, 221), (82, 222), (82, 223), (82, 224), (82, 225), (82, 226), (82, 228), (82, 229), (83, 205), (83, 207), (83, 208), (83, 209), (83, 210), (83, 211), (83, 212), (83, 213), (83, 214), (83, 215), (83, 216), (83, 217), (83, 218), (83, 219), (83, 220), (83, 221), (83, 222), (83, 223), (83, 224), (83, 225), (83, 226), (83, 227), (83, 229), (84, 204), (84, 206), (84, 207), (84, 208), (84, 209), (84, 210), (84, 211), (84, 212), (84, 213), (84, 214), (84, 215), (84, 216), (84, 217), (84, 218), (84, 219), (84, 220), (84, 221), (84, 222), (84, 223), (84, 224), (84, 225), (84, 226), (84, 228), (85, 203), (85, 205), (85, 206), (85, 207), (85, 208), (85, 209), (85, 210), (85, 211), (85, 212), (85, 213), (85, 214), (85, 215), (85, 216), (85, 217), (85, 218), (85, 219), (85, 220), (85, 221), (85, 222), (85, 223), (85, 224), (85, 225), (85, 226), (85, 228), (86, 202), (86, 204), (86, 205), (86, 206), (86, 207), (86, 208), (86, 209), (86, 210), (86, 211), (86, 212), (86, 213), (86, 214), (86, 215), (86, 216), (86, 217), (86, 218), (86, 219), (86, 220), (86, 221), (86, 222), (86, 223), (86, 224), (86, 225), (86, 227), (87, 201), (87, 203), (87, 204), (87, 205), (87, 206), (87, 207), (87, 208), (87, 209), (87, 210), (87, 211), (87, 212), (87, 213), (87, 214), (87, 215), (87, 216), (87, 217), (87, 218), (87, 219), (87, 220), (87, 221), (87, 222), (87, 223), (87, 224), (87, 225), (87, 227), (88, 200), (88, 202), (88, 203), (88, 204), (88, 205), (88, 206), (88, 207), (88, 208), (88, 209), (88, 210), (88, 211), (88, 212), (88, 213), (88, 214), (88, 215), (88, 216), (88, 217), (88, 218), (88, 219), (88, 220), (88, 221), (88, 222), (88, 223), (88, 224), (88, 226), (89, 199), (89, 201), (89, 202), (89, 203), (89, 204), (89, 205), (89, 206), (89, 207), (89, 208), (89, 209), (89, 210), (89, 211), (89, 212), (89, 213), (89, 214), (89, 215), (89, 216), (89, 217), (89, 218), (89, 219), (89, 220), (89, 221), (89, 222), (89, 223), (89, 224), (89, 226), (90, 198), (90, 200), (90, 201), (90, 202), (90, 203), (90, 204), (90, 205), (90, 206), (90, 207), (90, 208), (90, 209), (90, 210), (90, 211), (90, 212), (90, 213), (90, 214), (90, 215), (90, 216), (90, 217), (90, 218), (90, 219), (90, 220), (90, 221), (90, 222), (90, 223), (90, 225), (91, 197), (91, 199), (91, 200), (91, 201), (91, 202), (91, 203), (91, 204), (91, 205), (91, 206), (91, 207), (91, 208), (91, 209), (91, 210), (91, 211), (91, 212), (91, 213), (91, 214), (91, 215), (91, 216), (91, 217), (91, 218), (91, 219), (91, 220), (91, 221), (91, 222), (91, 223), (91, 224), (92, 196), (92, 198), (92, 199), (92, 200), (92, 201), (92, 202), (92, 203), (92, 204), (92, 205), (92, 206), (92, 207), (92, 208), (92, 209), (92, 210), (92, 211), (92, 212), (92, 213), (92, 214), (92, 215), (92, 216), (92, 217), (92, 218), (92, 219), (92, 220), (92, 221), (92, 222), (92, 224), (93, 197), (93, 198), (93, 199), (93, 200), (93, 201), (93, 202), (93, 203), (93, 204), (93, 205), (93, 206), (93, 207), (93, 208), (93, 209), (93, 210), (93, 211), (93, 212), (93, 213), (93, 214), (93, 215), (93, 216), (93, 217), (93, 218), (93, 219), (93, 220), (93, 221), (93, 223), (94, 193), (94, 196), (94, 197), (94, 198), (94, 199), (94, 200), (94, 201), (94, 202), (94, 203), (94, 204), (94, 205), (94, 206), (94, 207), (94, 208), (94, 209), (94, 210), (94, 211), (94, 212), (94, 213), (94, 214), (94, 215), (94, 216), (94, 217), (94, 218), (94, 219), (94, 220), (94, 221), (94, 223), (95, 192), (95, 195), (95, 196), (95, 197), (95, 198), (95, 199), (95, 200), (95, 201), (95, 202), (95, 203), (95, 204), (95, 205), (95, 206), (95, 207), (95, 208), (95, 209), (95, 210), (95, 211), (95, 212), (95, 213), (95, 214), (95, 215), (95, 216), (95, 217), (95, 218), (95, 219), (95, 220), (95, 222), (96, 191), (96, 194), (96, 195), (96, 196), (96, 197), (96, 198), (96, 199), (96, 200), (96, 201), (96, 202), (96, 203), (96, 204), (96, 205), (96, 206), (96, 207), (96, 208), (96, 209), (96, 210), (96, 211), (96, 212), (96, 213), (96, 214), (96, 215), (96, 216), (96, 217), (96, 218), (96, 219), (96, 220), (96, 222), (97, 190), (97, 193), (97, 194), (97, 195), (97, 196), (97, 197), (97, 198), (97, 199), (97, 200), (97, 201), (97, 202), (97, 203), (97, 204), (97, 205), (97, 206), (97, 207), (97, 208), (97, 209), (97, 210), (97, 211), (97, 212), (97, 213), (97, 214), (97, 215), (97, 216), (97, 217), (97, 218), (97, 219), (97, 221), (98, 189), (98, 192), (98, 193), (98, 194), (98, 195), (98, 196), (98, 197), (98, 198), (98, 199), (98, 200), (98, 201), (98, 202), (98, 203), (98, 204), (98, 205), (98, 206), (98, 207), (98, 208), (98, 209), (98, 210), (98, 211), (98, 212), (98, 213), (98, 214), (98, 215), (98, 216), (98, 217), (98, 218), (98, 220), (99, 188), (99, 191), (99, 192), (99, 193), (99, 194), (99, 195), (99, 196), (99, 197), (99, 198), (99, 199), (99, 200), (99, 201), (99, 202), (99, 203), (99, 204), (99, 205), (99, 206), (99, 207), (99, 208), (99, 209), (99, 210), (99, 211), (99, 212), (99, 213), (99, 214), (99, 215), (99, 216), (99, 217), (99, 218), (99, 220), (100, 188), (100, 190), (100, 191), (100, 192), (100, 193), (100, 194), (100, 195), (100, 196), (100, 197), (100, 198), (100, 199), (100, 200), (100, 201), (100, 202), (100, 203), (100, 204), (100, 205), (100, 206), (100, 207), (100, 208), (100, 209), (100, 210), (100, 211), (100, 212), (100, 213), (100, 214), (100, 215), (100, 216), (100, 217), (100, 219), (101, 187), (101, 189), (101, 190), (101, 191), (101, 192), (101, 193), (101, 194), (101, 195), (101, 196), (101, 197), (101, 198), (101, 199), (101, 200), (101, 201), (101, 202), (101, 203), (101, 204), (101, 205), (101, 206), (101, 207), (101, 208), (101, 209), (101, 210), (101, 211), (101, 212), (101, 213), (101, 214), (101, 215), (101, 216), (101, 218), (102, 186), (102, 188), (102, 189), (102, 190), (102, 191), (102, 192), (102, 193), (102, 194), (102, 195), (102, 196), (102, 197), (102, 198), (102, 199), (102, 200), (102, 201), (102, 202), (102, 203), (102, 204), (102, 205), (102, 206), (102, 207), (102, 208), (102, 209), (102, 210), (102, 211), (102, 212), (102, 213), (102, 214), (102, 215), (102, 216), (102, 218), (103, 186), (103, 188), (103, 189), (103, 190), (103, 191), (103, 192), (103, 193), (103, 194), (103, 195), (103, 196), (103, 197), (103, 198), (103, 199), (103, 200), (103, 201), (103, 202), (103, 203), (103, 204), (103, 205), (103, 206), (103, 207), (103, 208), (103, 209), (103, 210), (103, 211), (103, 212), (103, 213), (103, 214), (103, 215), (103, 217), (104, 186), (104, 188), (104, 189), (104, 190), (104, 191), (104, 192), (104, 193), (104, 194), (104, 195), (104, 196), (104, 197), (104, 198), (104, 199), (104, 200), (104, 201), (104, 202), (104, 203), (104, 204), (104, 205), (104, 206), (104, 207), (104, 208), (104, 209), (104, 210), (104, 211), (104, 212), (104, 213), (104, 214), (104, 216), (105, 186), (105, 188), (105, 189), (105, 190), (105, 191), (105, 192), (105, 193), (105, 194), (105, 195), (105, 196), (105, 197), (105, 198), (105, 199), (105, 200), (105, 201), (105, 202), (105, 203), (105, 204), (105, 205), (105, 206), (105, 207), (105, 208), (105, 209), (105, 210), (105, 211), (105, 212), (105, 213), (105, 215), (106, 186), (106, 188), (106, 189), (106, 190), (106, 191), (106, 192), (106, 193), (106, 194), (106, 195), (106, 196), (106, 197), (106, 198), (106, 199), (106, 200), (106, 201), (106, 202), (106, 203), (106, 204), (106, 205), (106, 206), (106, 207), (106, 208), (106, 209), (106, 210), (106, 211), (106, 212), (106, 214), (107, 186), (107, 188), (107, 189), (107, 190), (107, 191), (107, 192), (107, 193), (107, 194), (107, 195), (107, 196), (107, 197), (107, 198), (107, 199), (107, 200), (107, 201), (107, 202), (107, 203), (107, 204), (107, 205), (107, 206), (107, 207), (107, 208), (107, 209), (107, 210), (107, 211), (107, 213), (108, 187), (108, 189), (108, 190), (108, 191), (108, 192), (108, 193), (108, 194), (108, 195), (108, 196), (108, 197), (108, 198), (108, 199), (108, 200), (108, 201), (108, 202), (108, 203), (108, 204), (108, 205), (108, 206), (108, 207), (108, 208), (108, 209), (108, 210), (108, 212), (109, 187), (109, 189), (109, 190), (109, 191), (109, 192), (109, 193), (109, 194), (109, 195), (109, 196), (109, 197), (109, 198), (109, 199), (109, 200), (109, 201), (109, 202), (109, 203), (109, 204), (109, 205), (109, 206), (109, 207), (109, 208), (109, 211), (110, 187), (110, 189), (110, 190), (110, 191), (110, 192), (110, 193), (110, 194), (110, 195), (110, 196), (110, 197), (110, 198), (110, 199), (110, 200), (110, 201), (110, 202), (110, 203), (110, 204), (110, 205), (110, 206), (110, 210), (111, 188), (111, 190), (111, 191), (111, 192), (111, 193), (111, 194), (111, 195), (111, 196), (111, 197), (111, 198), (111, 199), (111, 200), (111, 201), (111, 202), (111, 203), (111, 204), (111, 208), (112, 188), (112, 190), (112, 191), (112, 192), (112, 193), (112, 194), (112, 195), (112, 196), (112, 197), (112, 198), (112, 199), (112, 200), (112, 201), (112, 202), (112, 206), (113, 188), (113, 190), (113, 191), (113, 192), (113, 193), (113, 194), (113, 203), (113, 204), (114, 189), (114, 195), (114, 196), (114, 197), (114, 198), (114, 199), (114, 200), (114, 201), (115, 190), (115, 192), (115, 193), (115, 194), (284, 190), (284, 192), (284, 193), (284, 194), (284, 195), (285, 189), (285, 196), (285, 197), (285, 198), (285, 199), (285, 200), (285, 201), (285, 202), (286, 188), (286, 190), (286, 191), (286, 192), (286, 193), (286, 194), (286, 195), (286, 203), (286, 204), (286, 205), (287, 188), (287, 190), (287, 191), (287, 192), (287, 193), (287, 194), (287, 195), (287, 196), (287, 197), (287, 198), (287, 199), (287, 200), (287, 201), (287, 202), (287, 206), (287, 207), (288, 188), (288, 190), (288, 191), (288, 192), (288, 193), (288, 194), (288, 195), (288, 196), (288, 197), (288, 198), (288, 199), (288, 200), (288, 201), (288, 202), (288, 203), (288, 204), (288, 205), (288, 208), (289, 187), (289, 189), (289, 190), (289, 191), (289, 192), (289, 193), (289, 194), (289, 195), (289, 196), (289, 197), (289, 198), (289, 199), (289, 200), (289, 201), (289, 202), (289, 203), (289, 204), (289, 205), (289, 206), (289, 207), (289, 210), (290, 187), (290, 189), (290, 190), (290, 191), (290, 192), (290, 193), (290, 194), (290, 195), (290, 196), (290, 197), (290, 198), (290, 199), (290, 200), (290, 201), (290, 202), (290, 203), (290, 204), (290, 205), (290, 206), (290, 207), (290, 208), (290, 211), (291, 187), (291, 189), (291, 190), (291, 191), (291, 192), (291, 193), (291, 194), (291, 195), (291, 196), (291, 197), (291, 198), (291, 199), (291, 200), (291, 201), (291, 202), (291, 203), (291, 204), (291, 205), (291, 206), (291, 207), (291, 208), (291, 209), (291, 210), (291, 212), (292, 186), (292, 188), (292, 189), (292, 190), (292, 191), (292, 192), (292, 193), (292, 194), (292, 195), (292, 196), (292, 197), (292, 198), (292, 199), (292, 200), (292, 201), (292, 202), (292, 203), (292, 204), (292, 205), (292, 206), (292, 207), (292, 208), (292, 209), (292, 210), (292, 211), (292, 213), (293, 186), (293, 188), (293, 189), (293, 190), (293, 191), (293, 192), (293, 193), (293, 194), (293, 195), (293, 196), (293, 197), (293, 198), (293, 199), (293, 200), (293, 201), (293, 202), (293, 203), (293, 204), (293, 205), (293, 206), (293, 207), (293, 208), (293, 209), (293, 210), (293, 211), (293, 212), (293, 214), (294, 186), (294, 188), (294, 189), (294, 190), (294, 191), (294, 192), (294, 193), (294, 194), (294, 195), (294, 196), (294, 197), (294, 198), (294, 199), (294, 200), (294, 201), (294, 202), (294, 203), (294, 204), (294, 205), (294, 206), (294, 207), (294, 208), (294, 209), (294, 210), (294, 211), (294, 212), (294, 213), (294, 215), (295, 186), (295, 188), (295, 189), (295, 190), (295, 191), (295, 192), (295, 193), (295, 194), (295, 195), (295, 196), (295, 197), (295, 198), (295, 199), (295, 200), (295, 201), (295, 202), (295, 203), (295, 204), (295, 205), (295, 206), (295, 207), (295, 208), (295, 209), (295, 210), (295, 211), (295, 212), (295, 213), (295, 214), (295, 216), (296, 186), (296, 188), (296, 189), (296, 190), (296, 191), (296, 192), (296, 193), (296, 194), (296, 195), (296, 196), (296, 197), (296, 198), (296, 199), (296, 200), (296, 201), (296, 202), (296, 203), (296, 204), (296, 205), (296, 206), (296, 207), (296, 208), (296, 209), (296, 210), (296, 211), (296, 212), (296, 213), (296, 214), (296, 215), (296, 217), (297, 188), (297, 189), (297, 190), (297, 191), (297, 192), (297, 193), (297, 194), (297, 195), (297, 196), (297, 197), (297, 198), (297, 199), (297, 200), (297, 201), (297, 202), (297, 203), (297, 204), (297, 205), (297, 206), (297, 207), (297, 208), (297, 209), (297, 210), (297, 211), (297, 212), (297, 213), (297, 214), (297, 215), (297, 216), (297, 218), (298, 187), (298, 189), (298, 190), (298, 191), (298, 192), (298, 193), (298, 194), (298, 195), (298, 196), (298, 197), (298, 198), (298, 199), (298, 200), (298, 201), (298, 202), (298, 203), (298, 204), (298, 205), (298, 206), (298, 207), (298, 208), (298, 209), (298, 210), (298, 211), (298, 212), (298, 213), (298, 214), (298, 215), (298, 216), (298, 218), (299, 188), (299, 190), (299, 191), (299, 192), (299, 193), (299, 194), (299, 195), (299, 196), (299, 197), (299, 198), (299, 199), (299, 200), (299, 201), (299, 202), (299, 203), (299, 204), (299, 205), (299, 206), (299, 207), (299, 208), (299, 209), (299, 210), (299, 211), (299, 212), (299, 213), (299, 214), (299, 215), (299, 216), (299, 217), (299, 219), (300, 191), (300, 192), (300, 193), (300, 194), (300, 195), (300, 196), (300, 197), (300, 198), (300, 199), (300, 200), (300, 201), (300, 202), (300, 203), (300, 204), (300, 205), (300, 206), (300, 207), (300, 208), (300, 209), (300, 210), (300, 211), (300, 212), (300, 213), (300, 214), (300, 215), (300, 216), (300, 217), (300, 218), (300, 220), (301, 189), (301, 192), (301, 193), (301, 194), (301, 195), (301, 196), (301, 197), (301, 198), (301, 199), (301, 200), (301, 201), (301, 202), (301, 203), (301, 204), (301, 205), (301, 206), (301, 207), (301, 208), (301, 209), (301, 210), (301, 211), (301, 212), (301, 213), (301, 214), (301, 215), (301, 216), (301, 217), (301, 218), (301, 220), (302, 190), (302, 193), (302, 194), (302, 195), (302, 196), (302, 197), (302, 198), (302, 199), (302, 200), (302, 201), (302, 202), (302, 203), (302, 204), (302, 205), (302, 206), (302, 207), (302, 208), (302, 209), (302, 210), (302, 211), (302, 212), (302, 213), (302, 214), (302, 215), (302, 216), (302, 217), (302, 218), (302, 219), (302, 221), (303, 191), (303, 194), (303, 195), (303, 196), (303, 197), (303, 198), (303, 199), (303, 200), (303, 201), (303, 202), (303, 203), (303, 204), (303, 205), (303, 206), (303, 207), (303, 208), (303, 209), (303, 210), (303, 211), (303, 212), (303, 213), (303, 214), (303, 215), (303, 216), (303, 217), (303, 218), (303, 219), (303, 220), (303, 222), (304, 192), (304, 195), (304, 196), (304, 197), (304, 198), (304, 199), (304, 200), (304, 201), (304, 202), (304, 203), (304, 204), (304, 205), (304, 206), (304, 207), (304, 208), (304, 209), (304, 210), (304, 211), (304, 212), (304, 213), (304, 214), (304, 215), (304, 216), (304, 217), (304, 218), (304, 219), (304, 220), (304, 222), (305, 196), (305, 197), (305, 198), (305, 199), (305, 200), (305, 201), (305, 202), (305, 203), (305, 204), (305, 205), (305, 206), (305, 207), (305, 208), (305, 209), (305, 210), (305, 211), (305, 212), (305, 213), (305, 214), (305, 215), (305, 216), (305, 217), (305, 218), (305, 219), (305, 220), (305, 221), (305, 223), (306, 195), (306, 197), (306, 198), (306, 199), (306, 200), (306, 201), (306, 202), (306, 203), (306, 204), (306, 205), (306, 206), (306, 207), (306, 208), (306, 209), (306, 210), (306, 211), (306, 212), (306, 213), (306, 214), (306, 215), (306, 216), (306, 217), (306, 218), (306, 219), (306, 220), (306, 221), (306, 223), (307, 196), (307, 198), (307, 199), (307, 200), (307, 201), (307, 202), (307, 203), (307, 204), (307, 205), (307, 206), (307, 207), (307, 208), (307, 209), (307, 210), (307, 211), (307, 212), (307, 213), (307, 214), (307, 215), (307, 216), (307, 217), (307, 218), (307, 219), (307, 220), (307, 221), (307, 222), (307, 224), (308, 197), (308, 199), (308, 200), (308, 201), (308, 202), (308, 203), (308, 204), (308, 205), (308, 206), (308, 207), (308, 208), (308, 209), (308, 210), (308, 211), (308, 212), (308, 213), (308, 214), (308, 215), (308, 216), (308, 217), (308, 218), (308, 219), (308, 220), (308, 221), (308, 222), (308, 223), (308, 225), (309, 198), (309, 200), (309, 201), (309, 202), (309, 203), (309, 204), (309, 205), (309, 206), (309, 207), (309, 208), (309, 209), (309, 210), (309, 211), (309, 212), (309, 213), (309, 214), (309, 215), (309, 216), (309, 217), (309, 218), (309, 219), (309, 220), (309, 221), (309, 222), (309, 223), (309, 225), (310, 199), (310, 201), (310, 202), (310, 203), (310, 204), (310, 205), (310, 206), (310, 207), (310, 208), (310, 209), (310, 210), (310, 211), (310, 212), (310, 213), (310, 214), (310, 215), (310, 216), (310, 217), (310, 218), (310, 219), (310, 220), (310, 221), (310, 222), (310, 223), (310, 224), (310, 226), (311, 200), (311, 202), (311, 203), (311, 204), (311, 205), (311, 206), (311, 207), (311, 208), (311, 209), (311, 210), (311, 211), (311, 212), (311, 213), (311, 214), (311, 215), (311, 216), (311, 217), (311, 218), (311, 219), (311, 220), (311, 221), (311, 222), (311, 223), (311, 224), (311, 226), (312, 201), (312, 203), (312, 204), (312, 205), (312, 206), (312, 207), (312, 208), (312, 209), (312, 210), (312, 211), (312, 212), (312, 213), (312, 214), (312, 215), (312, 216), (312, 217), (312, 218), (312, 219), (312, 220), (312, 221), (312, 222), (312, 223), (312, 224), (312, 225), (312, 227), (313, 202), (313, 204), (313, 205), (313, 206), (313, 207), (313, 208), (313, 209), (313, 210), (313, 211), (313, 212), (313, 213), (313, 214), (313, 215), (313, 216), (313, 217), (313, 218), (313, 219), (313, 220), (313, 221), (313, 222), (313, 223), (313, 224), (313, 225), (313, 227), (314, 203), (314, 205), (314, 206), (314, 207), (314, 208), (314, 209), (314, 210), (314, 211), (314, 212), (314, 213), (314, 214), (314, 215), (314, 216), (314, 217), (314, 218), (314, 219), (314, 220), (314, 221), (314, 222), (314, 223), (314, 224), (314, 225), (314, 226), (314, 228), (315, 204), (315, 206), (315, 207), (315, 208), (315, 209), (315, 210), (315, 211), (315, 212), (315, 213), (315, 214), (315, 215), (315, 216), (315, 217), (315, 218), (315, 219), (315, 220), (315, 221), (315, 222), (315, 223), (315, 224), (315, 225), (315, 226), (315, 228), (316, 205), (316, 207), (316, 208), (316, 209), (316, 210), (316, 211), (316, 212), (316, 213), (316, 214), (316, 215), (316, 216), (316, 217), (316, 218), (316, 219), (316, 220), (316, 221), (316, 222), (316, 223), (316, 224), (316, 225), (316, 226), (316, 227), (316, 229), (317, 206), (317, 208), (317, 209), (317, 210), (317, 211), (317, 212), (317, 213), (317, 214), (317, 215), (317, 216), (317, 217), (317, 218), (317, 219), (317, 220), (317, 221), (317, 222), (317, 223), (317, 224), (317, 225), (317, 226), (317, 228), (318, 206), (318, 208), (318, 209), (318, 210), (318, 211), (318, 212), (318, 213), (318, 214), (318, 215), (318, 216), (318, 217), (318, 218), (318, 219), (318, 220), (318, 221), (318, 222), (318, 223), (318, 224), (318, 225), (318, 226), (318, 228), (319, 207), (319, 209), (319, 210), (319, 211), (319, 212), (319, 213), (319, 214), (319, 215), (319, 216), (319, 217), (319, 218), (319, 219), (319, 220), (319, 221), (319, 222), (319, 223), (319, 224), (319, 225), (319, 226), (319, 228), (320, 207), (320, 209), (320, 210), (320, 211), (320, 212), (320, 213), (320, 214), (320, 215), (320, 216), (320, 217), (320, 218), (320, 219), (320, 220), (320, 221), (320, 222), (320, 223), (320, 224), (320, 225), (320, 228), (321, 208), (321, 210), (321, 211), (321, 212), (321, 213), (321, 214), (321, 215), (321, 226), (321, 228), (322, 208), (322, 216), (322, 217), (322, 218), (322, 219), (322, 220), (322, 221), (322, 222), (322, 223), (322, 224), (322, 225), (323, 210), (323, 212), (323, 213), (323, 214), (323, 215))
coordinates_00_ff13 = ((62, 192), (62, 193), (62, 195), (63, 189), (63, 190), (63, 191), (63, 195), (64, 186), (64, 192), (64, 193), (64, 195), (65, 184), (65, 188), (65, 189), (65, 190), (65, 191), (65, 192), (65, 194), (66, 183), (66, 186), (66, 187), (66, 188), (66, 189), (66, 190), (66, 191), (66, 194), (67, 181), (67, 184), (67, 185), (67, 186), (67, 187), (67, 188), (67, 189), (67, 190), (67, 193), (68, 181), (68, 183), (68, 184), (68, 185), (68, 186), (68, 187), (68, 188), (68, 189), (68, 192), (69, 181), (69, 183), (69, 184), (69, 185), (69, 186), (69, 187), (69, 188), (69, 191), (69, 205), (70, 181), (70, 183), (70, 184), (70, 185), (70, 186), (70, 187), (70, 190), (70, 205), (70, 207), (70, 208), (71, 181), (71, 183), (71, 184), (71, 185), (71, 186), (71, 189), (71, 205), (71, 210), (72, 181), (72, 183), (72, 184), (72, 185), (72, 186), (72, 188), (72, 207), (72, 209), (72, 212), (73, 181), (73, 183), (73, 184), (73, 185), (73, 187), (73, 207), (73, 211), (73, 214), (74, 182), (74, 183), (74, 184), (74, 186), (74, 208), (74, 212), (74, 213), (74, 215), (75, 182), (75, 184), (75, 186), (75, 208), (76, 183), (76, 185), (77, 183), (77, 186), (78, 183), (78, 185), (78, 186), (79, 183), (79, 185), (79, 186), (79, 188), (80, 183), (80, 185), (80, 186), (80, 190), (81, 183), (81, 185), (81, 186), (81, 187), (81, 188), (81, 191), (82, 183), (82, 185), (82, 186), (82, 187), (82, 188), (82, 189), (83, 183), (83, 185), (83, 186), (83, 187), (83, 188), (83, 190), (84, 182), (84, 183), (84, 184), (84, 185), (84, 186), (84, 187), (84, 189), (85, 182), (85, 184), (85, 185), (85, 186), (85, 188), (86, 182), (86, 184), (86, 187), (87, 182), (87, 186), (88, 182), (88, 184), (311, 182), (311, 184), (312, 182), (312, 186), (313, 182), (313, 184), (313, 187), (314, 182), (314, 184), (314, 185), (314, 186), (314, 188), (315, 183), (315, 185), (315, 186), (315, 187), (315, 189), (316, 183), (316, 185), (316, 186), (316, 187), (316, 188), (316, 190), (317, 183), (317, 185), (317, 186), (317, 187), (317, 188), (317, 189), (318, 183), (318, 185), (318, 186), (318, 187), (318, 188), (318, 191), (319, 183), (319, 185), (319, 186), (319, 190), (320, 183), (320, 185), (320, 186), (320, 188), (321, 183), (321, 186), (322, 183), (322, 186), (323, 183), (323, 185), (324, 182), (324, 184), (324, 186), (324, 208), (325, 182), (325, 183), (325, 184), (325, 186), (325, 208), (325, 211), (325, 212), (325, 213), (325, 215), (326, 181), (326, 183), (326, 184), (326, 185), (326, 187), (326, 207), (326, 214), (327, 181), (327, 183), (327, 184), (327, 185), (327, 186), (327, 188), (327, 207), (327, 212), (328, 181), (328, 183), (328, 184), (328, 185), (328, 186), (328, 187), (328, 189), (328, 205), (328, 210), (329, 181), (329, 183), (329, 184), (329, 185), (329, 186), (329, 187), (329, 190), (329, 205), (329, 207), (329, 208), (330, 181), (330, 183), (330, 184), (330, 185), (330, 186), (330, 187), (330, 188), (330, 191), (330, 205), (331, 181), (331, 183), (331, 184), (331, 185), (331, 186), (331, 187), (331, 188), (331, 189), (331, 192), (332, 181), (332, 184), (332, 185), (332, 186), (332, 187), (332, 188), (332, 189), (332, 190), (332, 193), (333, 183), (333, 186), (333, 187), (333, 188), (333, 189), (333, 190), (333, 191), (333, 194), (334, 184), (334, 185), (334, 189), (334, 190), (334, 191), (334, 192), (334, 194), (335, 186), (335, 187), (335, 192), (335, 193), (335, 195), (336, 189), (336, 190), (336, 191), (336, 192), (336, 195), (337, 193), (337, 195))
coordinates_ff00_a6 = ((187, 129), (187, 131), (188, 126), (188, 131), (189, 124), (189, 128), (189, 129), (189, 131), (190, 122), (190, 126), (190, 127), (190, 128), (190, 129), (190, 131), (191, 120), (191, 124), (191, 125), (191, 126), (191, 127), (191, 128), (191, 129), (191, 131), (192, 119), (192, 122), (192, 123), (192, 124), (192, 125), (192, 126), (192, 127), (192, 128), (192, 129), (192, 131), (193, 118), (193, 120), (193, 121), (193, 122), (193, 123), (193, 124), (193, 125), (193, 126), (193, 127), (193, 128), (193, 129), (193, 131), (194, 118), (194, 120), (194, 121), (194, 122), (194, 123), (194, 124), (194, 125), (194, 126), (194, 127), (194, 128), (194, 129), (194, 131), (195, 118), (195, 120), (195, 121), (195, 122), (195, 123), (195, 124), (195, 125), (195, 126), (195, 127), (195, 128), (195, 129), (195, 131), (196, 118), (196, 131), (197, 119), (197, 121), (197, 122), (197, 123), (197, 124), (197, 125), (197, 126), (197, 127), (197, 128), (197, 129), (201, 122), (201, 123), (202, 119), (202, 121), (202, 122), (202, 123), (202, 124), (202, 125), (202, 126), (202, 127), (202, 128), (202, 129), (203, 118), (203, 122), (203, 123), (203, 131), (204, 118), (204, 120), (204, 121), (204, 122), (204, 123), (204, 124), (204, 125), (204, 126), (204, 127), (204, 128), (204, 129), (204, 131), (205, 118), (205, 120), (205, 121), (205, 122), (205, 123), (205, 124), (205, 125), (205, 126), (205, 127), (205, 128), (205, 129), (205, 131), (206, 118), (206, 120), (206, 121), (206, 122), (206, 123), (206, 124), (206, 125), (206, 126), (206, 127), (206, 128), (206, 129), (206, 131), (207, 119), (207, 122), (207, 123), (207, 124), (207, 125), (207, 126), (207, 127), (207, 128), (207, 129), (207, 131), (208, 120), (208, 124), (208, 125), (208, 126), (208, 127), (208, 128), (208, 129), (208, 131), (209, 122), (209, 126), (209, 127), (209, 128), (209, 129), (209, 131), (210, 124), (210, 129), (210, 131), (211, 126), (211, 128), (211, 131), (212, 129), (212, 131))
coordinates_7_f0053 = ((159, 125), (159, 127), (160, 123), (160, 129), (161, 122), (161, 125), (161, 126), (161, 127), (161, 131), (162, 120), (162, 123), (162, 124), (162, 125), (162, 126), (162, 127), (162, 128), (162, 129), (162, 132), (163, 120), (163, 122), (163, 123), (163, 124), (163, 125), (163, 126), (163, 127), (163, 128), (163, 129), (163, 130), (163, 133), (164, 120), (164, 122), (164, 123), (164, 124), (164, 125), (164, 126), (164, 127), (164, 128), (164, 129), (164, 130), (164, 131), (164, 133), (165, 120), (165, 122), (165, 123), (165, 124), (165, 125), (165, 126), (165, 127), (165, 128), (165, 129), (165, 130), (165, 131), (165, 132), (165, 134), (166, 121), (166, 123), (166, 124), (166, 125), (166, 126), (166, 127), (166, 128), (166, 129), (166, 130), (166, 131), (166, 132), (166, 134), (167, 121), (167, 123), (167, 124), (167, 125), (167, 126), (167, 127), (167, 128), (167, 129), (167, 130), (167, 131), (167, 132), (167, 134), (168, 121), (168, 124), (168, 125), (168, 126), (168, 127), (168, 128), (168, 129), (168, 130), (168, 131), (168, 132), (168, 134), (169, 123), (169, 124), (169, 125), (169, 126), (169, 127), (169, 128), (169, 129), (169, 130), (169, 131), (169, 132), (169, 134), (170, 124), (170, 126), (170, 127), (170, 128), (170, 129), (170, 130), (170, 131), (170, 132), (170, 134), (171, 124), (171, 126), (171, 127), (171, 128), (171, 129), (171, 130), (171, 131), (171, 132), (171, 134), (172, 122), (172, 123), (172, 125), (172, 126), (172, 127), (172, 128), (172, 129), (172, 130), (172, 131), (172, 132), (172, 134), (173, 122), (173, 124), (173, 125), (173, 126), (173, 127), (173, 128), (173, 129), (173, 130), (173, 131), (173, 133), (174, 122), (174, 124), (174, 125), (174, 126), (174, 127), (174, 128), (174, 129), (174, 130), (174, 131), (174, 133), (175, 121), (175, 123), (175, 124), (175, 125), (175, 126), (175, 127), (175, 128), (175, 129), (175, 130), (175, 131), (175, 133), (176, 121), (176, 123), (176, 124), (176, 125), (176, 126), (176, 127), (176, 128), (176, 129), (176, 130), (176, 132), (177, 121), (177, 123), (177, 124), (177, 125), (177, 126), (177, 127), (177, 128), (177, 129), (177, 130), (177, 132), (178, 120), (178, 122), (178, 123), (178, 124), (178, 125), (178, 126), (178, 127), (178, 128), (178, 129), (178, 130), (178, 132), (179, 120), (179, 122), (179, 123), (179, 124), (179, 125), (179, 126), (179, 127), (179, 128), (179, 129), (179, 130), (179, 132), (180, 119), (180, 121), (180, 122), (180, 123), (180, 124), (180, 125), (180, 126), (180, 127), (180, 128), (180, 129), (180, 131), (181, 119), (181, 121), (181, 122), (181, 123), (181, 124), (181, 125), (181, 126), (181, 127), (181, 128), (181, 129), (181, 131), (182, 118), (182, 120), (182, 121), (182, 122), (182, 123), (182, 124), (182, 125), (182, 126), (182, 127), (182, 128), (182, 129), (182, 131), (183, 118), (183, 120), (183, 121), (183, 122), (183, 123), (183, 124), (183, 125), (183, 126), (183, 127), (183, 128), (183, 129), (183, 131), (184, 117), (184, 119), (184, 120), (184, 121), (184, 122), (184, 123), (184, 124), (184, 125), (184, 126), (184, 127), (184, 131), (185, 117), (185, 119), (185, 120), (185, 121), (185, 122), (185, 123), (185, 124), (185, 128), (185, 130), (186, 117), (186, 119), (186, 120), (186, 121), (186, 122), (186, 125), (186, 126), (186, 127), (187, 117), (187, 119), (187, 120), (187, 124), (188, 117), (188, 122), (189, 117), (189, 120), (190, 117), (191, 117), (208, 117), (209, 117), (209, 119), (210, 116), (210, 117), (210, 120), (211, 116), (211, 118), (211, 119), (211, 122), (212, 116), (212, 118), (212, 119), (212, 120), (212, 124), (213, 117), (213, 119), (213, 120), (213, 121), (213, 122), (213, 126), (213, 127), (214, 117), (214, 119), (214, 120), (214, 121), (214, 122), (214, 123), (214, 124), (214, 128), (214, 130), (214, 131), (215, 117), (215, 119), (215, 120), (215, 121), (215, 122), (215, 123), (215, 124), (215, 125), (215, 126), (215, 127), (215, 131), (216, 118), (216, 120), (216, 121), (216, 122), (216, 123), (216, 124), (216, 125), (216, 126), (216, 127), (216, 128), (216, 129), (216, 131), (217, 118), (217, 120), (217, 121), (217, 122), (217, 123), (217, 124), (217, 125), (217, 126), (217, 127), (217, 128), (217, 129), (217, 131), (218, 118), (218, 120), (218, 121), (218, 122), (218, 123), (218, 124), (218, 125), (218, 126), (218, 127), (218, 128), (218, 129), (218, 131), (219, 119), (219, 121), (219, 122), (219, 123), (219, 124), (219, 125), (219, 126), (219, 127), (219, 128), (219, 129), (219, 131), (220, 119), (220, 121), (220, 122), (220, 123), (220, 124), (220, 125), (220, 126), (220, 127), (220, 128), (220, 129), (220, 130), (220, 132), (221, 120), (221, 122), (221, 123), (221, 124), (221, 125), (221, 126), (221, 127), (221, 128), (221, 129), (221, 130), (221, 132), (222, 120), (222, 122), (222, 123), (222, 124), (222, 125), (222, 126), (222, 127), (222, 128), (222, 129), (222, 130), (222, 132), (223, 121), (223, 123), (223, 124), (223, 125), (223, 126), (223, 127), (223, 128), (223, 129), (223, 130), (223, 132), (224, 121), (224, 123), (224, 124), (224, 125), (224, 126), (224, 127), (224, 128), (224, 129), (224, 130), (224, 131), (224, 133), (225, 121), (225, 123), (225, 124), (225, 125), (225, 126), (225, 127), (225, 128), (225, 129), (225, 130), (225, 131), (225, 133), (226, 122), (226, 124), (226, 125), (226, 126), (226, 127), (226, 128), (226, 129), (226, 130), (226, 131), (226, 133), (227, 123), (227, 125), (227, 126), (227, 127), (227, 128), (227, 129), (227, 130), (227, 131), (227, 132), (227, 134), (228, 124), (228, 126), (228, 127), (228, 128), (228, 129), (228, 130), (228, 131), (228, 132), (228, 134), (229, 125), (229, 127), (229, 128), (229, 129), (229, 130), (229, 131), (229, 132), (229, 134), (230, 121), (230, 123), (230, 124), (230, 125), (230, 126), (230, 127), (230, 128), (230, 129), (230, 130), (230, 131), (230, 132), (230, 134), (231, 121), (231, 124), (231, 125), (231, 126), (231, 127), (231, 128), (231, 129), (231, 130), (231, 131), (231, 132), (231, 134), (232, 121), (232, 123), (232, 124), (232, 125), (232, 126), (232, 127), (232, 128), (232, 129), (232, 130), (232, 131), (232, 132), (232, 134), (233, 121), (233, 123), (233, 124), (233, 125), (233, 126), (233, 127), (233, 128), (233, 129), (233, 130), (233, 131), (233, 132), (233, 134), (234, 120), (234, 122), (234, 123), (234, 124), (234, 125), (234, 126), (234, 127), (234, 128), (234, 129), (234, 130), (234, 131), (234, 132), (234, 134), (235, 120), (235, 122), (235, 123), (235, 124), (235, 125), (235, 126), (235, 127), (235, 128), (235, 129), (235, 130), (235, 131), (235, 133), (236, 120), (236, 122), (236, 123), (236, 124), (236, 125), (236, 126), (236, 127), (236, 128), (236, 129), (236, 130), (236, 133), (237, 120), (237, 123), (237, 124), (237, 125), (237, 126), (237, 127), (237, 128), (237, 129), (237, 132), (238, 122), (238, 125), (238, 126), (238, 127), (238, 131), (239, 123), (239, 129), (240, 125), (240, 127))
coordinates_7_f0013 = ((184, 139), (184, 142), (185, 137), (185, 143), (186, 134), (186, 136), (186, 139), (186, 140), (186, 141), (186, 143), (187, 134), (187, 137), (187, 138), (187, 139), (187, 140), (187, 141), (187, 143), (188, 134), (188, 136), (188, 137), (188, 138), (188, 139), (188, 140), (188, 141), (188, 143), (189, 133), (189, 135), (189, 136), (189, 137), (189, 138), (189, 139), (189, 140), (189, 141), (189, 143), (190, 133), (190, 135), (190, 136), (190, 137), (190, 138), (190, 139), (190, 140), (190, 141), (190, 143), (190, 175), (190, 177), (191, 133), (191, 135), (191, 136), (191, 137), (191, 138), (191, 139), (191, 140), (191, 141), (191, 143), (191, 174), (191, 177), (192, 133), (192, 135), (192, 136), (192, 137), (192, 138), (192, 139), (192, 140), (192, 141), (192, 143), (192, 174), (192, 177), (193, 133), (193, 135), (193, 136), (193, 137), (193, 138), (193, 139), (193, 140), (193, 141), (193, 143), (193, 174), (193, 177), (194, 133), (194, 135), (194, 136), (194, 137), (194, 138), (194, 139), (194, 140), (194, 141), (194, 143), (194, 174), (194, 177), (195, 133), (195, 135), (195, 136), (195, 137), (195, 138), (195, 139), (195, 143), (195, 174), (195, 177), (196, 133), (196, 136), (196, 137), (196, 140), (196, 141), (196, 174), (196, 177), (197, 133), (197, 135), (197, 139), (197, 174), (197, 177), (198, 136), (198, 137), (201, 136), (201, 137), (202, 133), (202, 135), (202, 139), (202, 174), (202, 177), (203, 133), (203, 136), (203, 137), (203, 141), (203, 174), (203, 177), (204, 133), (204, 135), (204, 136), (204, 137), (204, 138), (204, 139), (204, 143), (204, 174), (204, 177), (205, 133), (205, 135), (205, 136), (205, 137), (205, 138), (205, 139), (205, 140), (205, 141), (205, 143), (205, 174), (205, 177), (206, 133), (206, 135), (206, 136), (206, 137), (206, 138), (206, 139), (206, 140), (206, 141), (206, 143), (206, 174), (206, 177), (207, 133), (207, 135), (207, 136), (207, 137), (207, 138), (207, 139), (207, 140), (207, 141), (207, 143), (207, 174), (207, 177), (208, 133), (208, 135), (208, 136), (208, 137), (208, 138), (208, 139), (208, 140), (208, 141), (208, 143), (208, 174), (208, 177), (209, 133), (209, 135), (209, 136), (209, 137), (209, 138), (209, 139), (209, 140), (209, 141), (209, 143), (209, 175), (209, 177), (210, 133), (210, 134), (210, 135), (210, 136), (210, 137), (210, 138), (210, 139), (210, 140), (210, 141), (210, 143), (211, 134), (211, 136), (211, 137), (211, 138), (211, 139), (211, 140), (211, 141), (211, 143), (212, 134), (212, 137), (212, 138), (212, 139), (212, 140), (212, 141), (212, 143), (213, 134), (213, 136), (213, 139), (213, 140), (213, 141), (213, 143), (214, 137), (214, 143), (215, 139), (215, 142))
coordinates_1_d007_f = ((67, 156), (68, 153), (68, 171), (69, 153), (69, 171), (69, 179), (70, 152), (70, 153), (70, 172), (70, 174), (70, 175), (70, 176), (70, 177), (70, 179), (71, 152), (72, 152), (73, 152), (74, 152), (325, 152), (326, 152), (327, 152), (328, 152), (329, 152), (329, 153), (329, 172), (329, 174), (329, 175), (329, 176), (329, 177), (329, 179), (330, 153), (330, 171), (330, 175), (330, 176), (330, 177), (330, 179), (331, 153), (331, 155), (331, 171))
coordinates_307_f00 = ((127, 113), (127, 115), (128, 112), (128, 117), (129, 110), (129, 113), (129, 114), (129, 115), (129, 118), (130, 107), (130, 108), (130, 109), (130, 112), (130, 113), (130, 114), (130, 115), (130, 116), (130, 118), (131, 104), (131, 106), (131, 110), (131, 111), (131, 112), (131, 113), (131, 114), (131, 115), (131, 116), (131, 117), (131, 119), (132, 87), (132, 89), (132, 90), (132, 91), (132, 92), (132, 93), (132, 94), (132, 95), (132, 101), (132, 103), (132, 107), (132, 108), (132, 109), (132, 110), (132, 111), (132, 112), (132, 113), (132, 114), (132, 115), (132, 116), (132, 117), (132, 119), (133, 87), (133, 96), (133, 97), (133, 98), (133, 99), (133, 100), (133, 104), (133, 105), (133, 106), (133, 107), (133, 108), (133, 109), (133, 110), (133, 111), (133, 112), (133, 113), (133, 114), (133, 115), (133, 116), (133, 117), (133, 118), (133, 120), (134, 87), (134, 89), (134, 90), (134, 91), (134, 92), (134, 93), (134, 94), (134, 95), (134, 101), (134, 102), (134, 103), (134, 104), (134, 105), (134, 106), (134, 107), (134, 108), (134, 109), (134, 110), (134, 111), (134, 112), (134, 113), (134, 114), (134, 115), (134, 116), (134, 117), (134, 118), (134, 120), (135, 88), (135, 90), (135, 91), (135, 92), (135, 93), (135, 94), (135, 95), (135, 96), (135, 97), (135, 98), (135, 99), (135, 100), (135, 101), (135, 102), (135, 103), (135, 104), (135, 105), (135, 106), (135, 107), (135, 108), (135, 109), (135, 110), (135, 111), (135, 112), (135, 113), (135, 114), (135, 115), (135, 116), (135, 117), (135, 118), (135, 120), (136, 88), (136, 90), (136, 91), (136, 92), (136, 93), (136, 94), (136, 95), (136, 96), (136, 97), (136, 98), (136, 99), (136, 100), (136, 101), (136, 102), (136, 103), (136, 104), (136, 105), (136, 106), (136, 107), (136, 108), (136, 109), (136, 110), (136, 111), (136, 112), (136, 113), (136, 114), (136, 115), (136, 116), (136, 117), (136, 118), (136, 120), (137, 89), (137, 91), (137, 92), (137, 93), (137, 94), (137, 95), (137, 96), (137, 97), (137, 98), (137, 99), (137, 100), (137, 101), (137, 102), (137, 103), (137, 104), (137, 105), (137, 106), (137, 107), (137, 108), (137, 109), (137, 110), (137, 111), (137, 112), (137, 113), (137, 114), (137, 115), (137, 116), (137, 117), (137, 118), (137, 120), (138, 89), (138, 91), (138, 92), (138, 93), (138, 94), (138, 95), (138, 96), (138, 97), (138, 98), (138, 99), (138, 100), (138, 101), (138, 102), (138, 103), (138, 104), (138, 105), (138, 106), (138, 107), (138, 108), (138, 109), (138, 110), (138, 111), (138, 112), (138, 113), (138, 114), (138, 115), (138, 116), (138, 117), (138, 118), (138, 120), (139, 90), (139, 92), (139, 93), (139, 94), (139, 95), (139, 96), (139, 97), (139, 98), (139, 99), (139, 100), (139, 101), (139, 102), (139, 103), (139, 104), (139, 105), (139, 106), (139, 107), (139, 108), (139, 109), (139, 110), (139, 111), (139, 112), (139, 113), (139, 114), (139, 115), (139, 116), (139, 117), (139, 118), (139, 120), (140, 91), (140, 93), (140, 94), (140, 95), (140, 96), (140, 97), (140, 98), (140, 99), (140, 100), (140, 101), (140, 102), (140, 103), (140, 104), (140, 105), (140, 106), (140, 107), (140, 108), (140, 109), (140, 110), (140, 111), (140, 112), (140, 113), (140, 114), (140, 115), (140, 116), (140, 117), (140, 118), (140, 120), (141, 94), (141, 95), (141, 96), (141, 97), (141, 98), (141, 99), (141, 100), (141, 101), (141, 102), (141, 103), (141, 104), (141, 105), (141, 106), (141, 107), (141, 108), (141, 109), (141, 110), (141, 111), (141, 112), (141, 113), (141, 114), (141, 115), (141, 116), (141, 117), (141, 118), (141, 120), (142, 92), (142, 94), (142, 95), (142, 96), (142, 97), (142, 98), (142, 99), (142, 100), (142, 101), (142, 102), (142, 103), (142, 104), (142, 105), (142, 106), (142, 107), (142, 108), (142, 109), (142, 110), (142, 111), (142, 112), (142, 113), (142, 114), (142, 115), (142, 116), (142, 117), (142, 118), (142, 120), (143, 93), (143, 95), (143, 96), (143, 97), (143, 98), (143, 99), (143, 100), (143, 101), (143, 102), (143, 103), (143, 104), (143, 105), (143, 106), (143, 107), (143, 108), (143, 109), (143, 110), (143, 111), (143, 112), (143, 113), (143, 114), (143, 115), (143, 116), (143, 117), (143, 119), (144, 94), (144, 96), (144, 97), (144, 98), (144, 99), (144, 100), (144, 101), (144, 102), (144, 103), (144, 104), (144, 105), (144, 106), (144, 107), (144, 108), (144, 109), (144, 110), (144, 111), (144, 112), (144, 113), (144, 114), (144, 115), (144, 116), (144, 117), (144, 119), (145, 94), (145, 96), (145, 97), (145, 98), (145, 99), (145, 100), (145, 101), (145, 102), (145, 103), (145, 104), (145, 105), (145, 106), (145, 107), (145, 108), (145, 109), (145, 110), (145, 111), (145, 112), (145, 113), (145, 114), (145, 115), (145, 116), (145, 118), (146, 95), (146, 97), (146, 98), (146, 99), (146, 100), (146, 101), (146, 102), (146, 103), (146, 104), (146, 105), (146, 106), (146, 107), (146, 108), (146, 109), (146, 110), (146, 111), (146, 112), (146, 113), (146, 114), (146, 115), (146, 117), (147, 96), (147, 98), (147, 99), (147, 100), (147, 101), (147, 102), (147, 103), (147, 104), (147, 105), (147, 106), (147, 107), (147, 108), (147, 109), (147, 110), (147, 111), (147, 112), (147, 113), (147, 116), (148, 96), (148, 98), (148, 99), (148, 100), (148, 101), (148, 102), (148, 103), (148, 104), (148, 105), (148, 106), (148, 107), (148, 108), (148, 109), (148, 110), (148, 115), (149, 96), (149, 111), (149, 113), (150, 97), (150, 99), (150, 100), (150, 101), (150, 102), (150, 103), (150, 104), (150, 105), (150, 106), (150, 107), (150, 108), (150, 109), (150, 110), (248, 97), (249, 97), (249, 99), (249, 100), (249, 101), (249, 102), (249, 103), (249, 104), (249, 105), (249, 106), (249, 107), (249, 108), (249, 109), (249, 110), (250, 96), (250, 111), (250, 113), (251, 96), (251, 98), (251, 99), (251, 100), (251, 101), (251, 102), (251, 103), (251, 104), (251, 105), (251, 106), (251, 107), (251, 108), (251, 109), (251, 110), (251, 115), (252, 96), (252, 98), (252, 99), (252, 100), (252, 101), (252, 102), (252, 103), (252, 104), (252, 105), (252, 106), (252, 107), (252, 108), (252, 109), (252, 110), (252, 111), (252, 112), (252, 113), (252, 116), (253, 95), (253, 97), (253, 98), (253, 99), (253, 100), (253, 101), (253, 102), (253, 103), (253, 104), (253, 105), (253, 106), (253, 107), (253, 108), (253, 109), (253, 110), (253, 111), (253, 112), (253, 113), (253, 114), (253, 115), (253, 117), (254, 94), (254, 96), (254, 97), (254, 98), (254, 99), (254, 100), (254, 101), (254, 102), (254, 103), (254, 104), (254, 105), (254, 106), (254, 107), (254, 108), (254, 109), (254, 110), (254, 111), (254, 112), (254, 113), (254, 114), (254, 115), (254, 116), (254, 118), (255, 94), (255, 96), (255, 97), (255, 98), (255, 99), (255, 100), (255, 101), (255, 102), (255, 103), (255, 104), (255, 105), (255, 106), (255, 107), (255, 108), (255, 109), (255, 110), (255, 111), (255, 112), (255, 113), (255, 114), (255, 115), (255, 116), (255, 117), (255, 119), (256, 93), (256, 95), (256, 96), (256, 97), (256, 98), (256, 99), (256, 100), (256, 101), (256, 102), (256, 103), (256, 104), (256, 105), (256, 106), (256, 107), (256, 108), (256, 109), (256, 110), (256, 111), (256, 112), (256, 113), (256, 114), (256, 115), (256, 116), (256, 117), (256, 118), (257, 92), (257, 94), (257, 95), (257, 96), (257, 97), (257, 98), (257, 99), (257, 100), (257, 101), (257, 102), (257, 103), (257, 104), (257, 105), (257, 106), (257, 107), (257, 108), (257, 109), (257, 110), (257, 111), (257, 112), (257, 113), (257, 114), (257, 115), (257, 116), (257, 117), (257, 118), (257, 120), (258, 91), (258, 93), (258, 94), (258, 95), (258, 96), (258, 97), (258, 98), (258, 99), (258, 100), (258, 101), (258, 102), (258, 103), (258, 104), (258, 105), (258, 106), (258, 107), (258, 108), (258, 109), (258, 110), (258, 111), (258, 112), (258, 113), (258, 114), (258, 115), (258, 116), (258, 117), (258, 118), (258, 120), (259, 91), (259, 93), (259, 94), (259, 95), (259, 96), (259, 97), (259, 98), (259, 99), (259, 100), (259, 101), (259, 102), (259, 103), (259, 104), (259, 105), (259, 106), (259, 107), (259, 108), (259, 109), (259, 110), (259, 111), (259, 112), (259, 113), (259, 114), (259, 115), (259, 116), (259, 117), (259, 118), (259, 120), (260, 90), (260, 92), (260, 93), (260, 94), (260, 95), (260, 96), (260, 97), (260, 98), (260, 99), (260, 100), (260, 101), (260, 102), (260, 103), (260, 104), (260, 105), (260, 106), (260, 107), (260, 108), (260, 109), (260, 110), (260, 111), (260, 112), (260, 113), (260, 114), (260, 115), (260, 116), (260, 117), (260, 118), (260, 120), (261, 89), (261, 91), (261, 92), (261, 93), (261, 94), (261, 95), (261, 96), (261, 97), (261, 98), (261, 99), (261, 100), (261, 101), (261, 102), (261, 103), (261, 104), (261, 105), (261, 106), (261, 107), (261, 108), (261, 109), (261, 110), (261, 111), (261, 112), (261, 113), (261, 114), (261, 115), (261, 116), (261, 117), (261, 118), (261, 120), (262, 89), (262, 91), (262, 92), (262, 93), (262, 94), (262, 95), (262, 96), (262, 97), (262, 98), (262, 99), (262, 100), (262, 101), (262, 102), (262, 103), (262, 104), (262, 105), (262, 106), (262, 107), (262, 108), (262, 109), (262, 110), (262, 111), (262, 112), (262, 113), (262, 114), (262, 115), (262, 116), (262, 117), (262, 118), (262, 120), (263, 88), (263, 90), (263, 91), (263, 92), (263, 93), (263, 94), (263, 95), (263, 96), (263, 97), (263, 98), (263, 99), (263, 100), (263, 101), (263, 102), (263, 103), (263, 104), (263, 105), (263, 106), (263, 107), (263, 108), (263, 109), (263, 110), (263, 111), (263, 112), (263, 113), (263, 114), (263, 115), (263, 116), (263, 117), (263, 118), (263, 120), (264, 88), (264, 90), (264, 91), (264, 92), (264, 93), (264, 94), (264, 95), (264, 96), (264, 97), (264, 98), (264, 99), (264, 100), (264, 101), (264, 102), (264, 103), (264, 104), (264, 105), (264, 106), (264, 107), (264, 108), (264, 109), (264, 110), (264, 111), (264, 112), (264, 113), (264, 114), (264, 115), (264, 116), (264, 117), (264, 118), (264, 120), (265, 87), (265, 89), (265, 90), (265, 91), (265, 92), (265, 93), (265, 94), (265, 95), (265, 101), (265, 102), (265, 103), (265, 104), (265, 105), (265, 106), (265, 107), (265, 108), (265, 109), (265, 110), (265, 111), (265, 112), (265, 113), (265, 114), (265, 115), (265, 116), (265, 117), (265, 118), (265, 120), (266, 87), (266, 96), (266, 97), (266, 98), (266, 99), (266, 100), (266, 104), (266, 105), (266, 106), (266, 107), (266, 108), (266, 109), (266, 110), (266, 111), (266, 112), (266, 113), (266, 114), (266, 115), (266, 116), (266, 117), (266, 118), (266, 120), (267, 87), (267, 89), (267, 90), (267, 91), (267, 92), (267, 93), (267, 94), (267, 95), (267, 101), (267, 103), (267, 107), (267, 108), (267, 109), (267, 110), (267, 111), (267, 112), (267, 113), (267, 114), (267, 115), (267, 116), (267, 117), (267, 119), (268, 104), (268, 105), (268, 106), (268, 110), (268, 111), (268, 112), (268, 113), (268, 114), (268, 115), (268, 116), (268, 117), (268, 119), (269, 107), (269, 108), (269, 109), (269, 112), (269, 113), (269, 114), (269, 115), (269, 116), (269, 118), (270, 110), (270, 113), (270, 114), (270, 115), (271, 112), (271, 117), (272, 113), (272, 115))
coordinates_7_f0075 = ((162, 202), (162, 204), (162, 205), (162, 206), (162, 207), (162, 208), (162, 209), (162, 210), (162, 211), (162, 213), (163, 201), (163, 214), (164, 201), (164, 203), (164, 204), (164, 205), (164, 206), (164, 207), (164, 208), (164, 209), (164, 210), (164, 211), (164, 212), (164, 213), (164, 215), (165, 200), (165, 202), (165, 203), (165, 204), (165, 205), (165, 206), (165, 207), (165, 208), (165, 209), (165, 210), (165, 211), (165, 212), (165, 213), (165, 214), (165, 216), (166, 201), (166, 202), (166, 203), (166, 204), (166, 205), (166, 206), (166, 207), (166, 208), (166, 209), (166, 210), (166, 211), (166, 212), (166, 213), (166, 214), (166, 216), (167, 199), (167, 201), (167, 202), (167, 203), (167, 204), (167, 205), (167, 206), (167, 207), (167, 208), (167, 209), (167, 210), (167, 211), (167, 212), (167, 213), (167, 214), (167, 215), (167, 217), (168, 198), (168, 200), (168, 201), (168, 202), (168, 203), (168, 204), (168, 205), (168, 206), (168, 207), (168, 208), (168, 209), (168, 210), (168, 211), (168, 212), (168, 213), (168, 214), (168, 215), (168, 217), (169, 197), (169, 199), (169, 200), (169, 201), (169, 202), (169, 203), (169, 204), (169, 205), (169, 206), (169, 207), (169, 208), (169, 209), (169, 210), (169, 211), (169, 212), (169, 213), (169, 214), (169, 215), (169, 217), (170, 197), (170, 199), (170, 200), (170, 201), (170, 202), (170, 203), (170, 204), (170, 205), (170, 206), (170, 207), (170, 208), (170, 209), (170, 210), (170, 211), (170, 212), (170, 213), (170, 214), (170, 215), (170, 216), (170, 217), (170, 218), (171, 197), (171, 199), (171, 200), (171, 201), (171, 202), (171, 203), (171, 204), (171, 205), (171, 206), (171, 207), (171, 208), (171, 209), (171, 210), (171, 211), (171, 212), (171, 213), (171, 214), (171, 215), (171, 216), (171, 218), (172, 197), (172, 201), (172, 202), (172, 203), (172, 204), (172, 205), (172, 206), (172, 207), (172, 208), (172, 209), (172, 210), (172, 211), (172, 212), (172, 213), (172, 214), (172, 215), (172, 216), (172, 218), (173, 198), (173, 199), (173, 202), (173, 203), (173, 204), (173, 205), (173, 206), (173, 207), (173, 208), (173, 209), (173, 210), (173, 211), (173, 212), (173, 213), (173, 214), (173, 215), (173, 216), (173, 218), (174, 201), (174, 203), (174, 204), (174, 205), (174, 206), (174, 207), (174, 208), (174, 209), (174, 210), (174, 211), (174, 212), (174, 213), (174, 214), (174, 215), (174, 216), (174, 217), (174, 219), (175, 202), (175, 204), (175, 205), (175, 206), (175, 207), (175, 208), (175, 209), (175, 210), (175, 211), (175, 212), (175, 213), (175, 214), (175, 215), (175, 216), (175, 217), (175, 219), (176, 203), (176, 205), (176, 206), (176, 207), (176, 208), (176, 209), (176, 210), (176, 211), (176, 212), (176, 213), (176, 214), (176, 215), (176, 216), (176, 217), (176, 219), (177, 204), (177, 206), (177, 207), (177, 208), (177, 209), (177, 210), (177, 211), (177, 212), (177, 213), (177, 214), (177, 215), (177, 216), (177, 217), (177, 218), (177, 219), (177, 222), (177, 223), (178, 205), (178, 207), (178, 208), (178, 209), (178, 210), (178, 211), (178, 212), (178, 213), (178, 214), (178, 215), (178, 216), (178, 217), (178, 218), (178, 219), (178, 223), (179, 205), (179, 207), (179, 208), (179, 209), (179, 210), (179, 211), (179, 212), (179, 213), (179, 214), (179, 215), (179, 216), (179, 217), (179, 218), (179, 219), (179, 220), (179, 223), (180, 206), (180, 208), (180, 209), (180, 210), (180, 211), (180, 212), (180, 213), (180, 214), (180, 215), (180, 216), (180, 217), (180, 218), (180, 219), (180, 220), (180, 221), (180, 222), (180, 224), (181, 207), (181, 209), (181, 210), (181, 211), (181, 212), (181, 213), (181, 214), (181, 215), (181, 216), (181, 217), (181, 218), (181, 219), (181, 220), (181, 221), (181, 222), (181, 223), (182, 208), (182, 210), (182, 211), (182, 212), (182, 213), (182, 214), (182, 215), (182, 216), (182, 217), (182, 218), (182, 219), (182, 220), (182, 221), (182, 222), (182, 223), (182, 226), (182, 227), (183, 194), (183, 195), (183, 196), (183, 197), (183, 198), (183, 199), (183, 209), (183, 211), (183, 212), (183, 213), (183, 214), (183, 215), (183, 216), (183, 217), (183, 218), (183, 219), (183, 220), (183, 221), (183, 222), (183, 223), (183, 224), (183, 225), (183, 230), (184, 191), (184, 193), (184, 200), (184, 201), (184, 210), (184, 213), (184, 214), (184, 215), (184, 216), (184, 217), (184, 218), (184, 219), (184, 220), (184, 221), (184, 222), (184, 223), (184, 224), (184, 225), (184, 226), (184, 227), (184, 228), (184, 231), (185, 189), (185, 194), (185, 195), (185, 196), (185, 197), (185, 198), (185, 199), (185, 203), (185, 211), (185, 218), (185, 219), (185, 220), (185, 221), (185, 222), (185, 223), (185, 224), (185, 225), (185, 226), (185, 227), (185, 228), (185, 229), (185, 230), (185, 232), (186, 187), (186, 191), (186, 192), (186, 193), (186, 194), (186, 195), (186, 196), (186, 197), (186, 198), (186, 199), (186, 200), (186, 201), (186, 202), (186, 205), (186, 206), (186, 214), (186, 215), (186, 216), (186, 217), (186, 220), (186, 221), (186, 222), (186, 223), (186, 224), (186, 225), (186, 226), (186, 227), (186, 228), (186, 229), (186, 230), (186, 232), (187, 185), (187, 189), (187, 190), (187, 191), (187, 192), (187, 193), (187, 194), (187, 195), (187, 196), (187, 197), (187, 198), (187, 199), (187, 200), (187, 201), (187, 202), (187, 203), (187, 204), (187, 207), (187, 218), (187, 219), (187, 220), (187, 221), (187, 222), (187, 223), (187, 224), (187, 225), (187, 226), (187, 227), (187, 228), (187, 229), (187, 230), (187, 231), (187, 233), (188, 183), (188, 187), (188, 188), (188, 189), (188, 190), (188, 191), (188, 192), (188, 193), (188, 194), (188, 195), (188, 196), (188, 197), (188, 198), (188, 199), (188, 200), (188, 201), (188, 202), (188, 203), (188, 204), (188, 205), (188, 206), (188, 209), (188, 210), (188, 220), (188, 222), (188, 223), (188, 224), (188, 225), (188, 226), (188, 227), (188, 228), (188, 229), (188, 230), (188, 231), (188, 233), (189, 180), (189, 182), (189, 185), (189, 186), (189, 187), (189, 188), (189, 189), (189, 190), (189, 191), (189, 192), (189, 193), (189, 194), (189, 195), (189, 196), (189, 197), (189, 198), (189, 199), (189, 200), (189, 201), (189, 202), (189, 203), (189, 204), (189, 205), (189, 206), (189, 207), (189, 208), (189, 211), (189, 220), (189, 222), (189, 223), (189, 224), (189, 225), (189, 226), (189, 227), (189, 228), (189, 229), (189, 230), (189, 231), (189, 233), (190, 180), (190, 183), (190, 184), (190, 185), (190, 186), (190, 187), (190, 188), (190, 189), (190, 190), (190, 191), (190, 192), (190, 193), (190, 194), (190, 195), (190, 196), (190, 197), (190, 198), (190, 199), (190, 200), (190, 201), (190, 202), (190, 203), (190, 204), (190, 205), (190, 206), (190, 207), (190, 208), (190, 209), (190, 210), (190, 213), (190, 214), (190, 215), (190, 216), (190, 217), (190, 218), (190, 219), (190, 220), (190, 221), (190, 222), (190, 223), (190, 224), (190, 225), (190, 226), (190, 227), (190, 228), (190, 229), (190, 230), (190, 231), (190, 233), (191, 180), (191, 182), (191, 183), (191, 184), (191, 185), (191, 186), (191, 187), (191, 188), (191, 189), (191, 190), (191, 191), (191, 192), (191, 193), (191, 194), (191, 195), (191, 196), (191, 197), (191, 198), (191, 199), (191, 200), (191, 201), (191, 202), (191, 203), (191, 204), (191, 205), (191, 206), (191, 207), (191, 208), (191, 209), (191, 210), (191, 211), (191, 212), (191, 220), (191, 221), (191, 222), (191, 223), (191, 224), (191, 225), (191, 226), (191, 227), (191, 228), (191, 229), (191, 230), (191, 231), (191, 232), (191, 234), (192, 179), (192, 180), (192, 181), (192, 182), (192, 183), (192, 184), (192, 185), (192, 186), (192, 187), (192, 188), (192, 189), (192, 190), (192, 191), (192, 192), (192, 193), (192, 194), (192, 195), (192, 196), (192, 197), (192, 198), (192, 199), (192, 200), (192, 201), (192, 202), (192, 203), (192, 204), (192, 205), (192, 206), (192, 207), (192, 208), (192, 209), (192, 210), (192, 211), (192, 212), (192, 213), (192, 214), (192, 215), (192, 216), (192, 217), (192, 218), (192, 219), (192, 220), (192, 221), (192, 222), (192, 223), (192, 224), (192, 225), (192, 226), (192, 227), (192, 228), (192, 229), (192, 230), (192, 231), (192, 232), (192, 234), (193, 179), (193, 181), (193, 182), (193, 183), (193, 184), (193, 185), (193, 186), (193, 187), (193, 188), (193, 189), (193, 190), (193, 191), (193, 192), (193, 193), (193, 194), (193, 195), (193, 196), (193, 197), (193, 198), (193, 199), (193, 200), (193, 201), (193, 202), (193, 203), (193, 204), (193, 205), (193, 206), (193, 207), (193, 208), (193, 209), (193, 210), (193, 211), (193, 212), (193, 213), (193, 214), (193, 215), (193, 216), (193, 217), (193, 218), (193, 219), (193, 220), (193, 221), (193, 222), (193, 223), (193, 224), (193, 225), (193, 226), (193, 227), (193, 228), (193, 229), (193, 230), (193, 231), (193, 232), (193, 234), (194, 179), (194, 181), (194, 182), (194, 183), (194, 184), (194, 185), (194, 186), (194, 187), (194, 188), (194, 189), (194, 190), (194, 191), (194, 192), (194, 193), (194, 194), (194, 195), (194, 196), (194, 197), (194, 198), (194, 199), (194, 200), (194, 201), (194, 202), (194, 203), (194, 204), (194, 205), (194, 206), (194, 207), (194, 208), (194, 209), (194, 210), (194, 211), (194, 212), (194, 213), (194, 214), (194, 215), (194, 216), (194, 217), (194, 218), (194, 219), (194, 220), (194, 221), (194, 222), (194, 223), (194, 224), (194, 225), (194, 226), (194, 227), (194, 228), (194, 229), (194, 230), (194, 231), (194, 233), (195, 179), (195, 181), (195, 182), (195, 183), (195, 184), (195, 185), (195, 186), (195, 187), (195, 188), (195, 189), (195, 190), (195, 191), (195, 192), (195, 193), (195, 194), (195, 195), (195, 196), (195, 197), (195, 198), (195, 199), (195, 200), (195, 201), (195, 202), (195, 203), (195, 204), (195, 205), (195, 206), (195, 207), (195, 208), (195, 209), (195, 210), (195, 211), (195, 212), (195, 213), (195, 214), (195, 215), (195, 216), (195, 217), (195, 218), (195, 219), (195, 220), (195, 221), (195, 222), (195, 223), (195, 224), (195, 225), (195, 226), (195, 227), (195, 228), (195, 229), (195, 230), (195, 231), (195, 233), (196, 179), (196, 181), (196, 182), (196, 183), (196, 184), (196, 185), (196, 186), (196, 187), (196, 188), (196, 189), (196, 190), (196, 191), (196, 192), (196, 193), (196, 194), (196, 195), (196, 196), (196, 197), (196, 198), (196, 199), (196, 200), (196, 201), (196, 202), (196, 203), (196, 204), (196, 205), (196, 206), (196, 207), (196, 208), (196, 209), (196, 210), (196, 211), (196, 212), (196, 213), (196, 214), (196, 215), (196, 216), (196, 217), (196, 218), (196, 219), (196, 220), (196, 221), (196, 222), (196, 223), (196, 224), (196, 225), (196, 226), (196, 227), (196, 228), (196, 229), (196, 230), (196, 231), (196, 233), (197, 179), (197, 181), (197, 182), (197, 183), (197, 184), (197, 185), (197, 186), (197, 187), (197, 188), (197, 189), (197, 190), (197, 191), (197, 192), (197, 193), (197, 194), (197, 195), (197, 196), (197, 197), (197, 198), (197, 199), (197, 200), (197, 201), (197, 202), (197, 203), (197, 204), (197, 205), (197, 206), (197, 207), (197, 208), (197, 209), (197, 210), (197, 211), (197, 212), (197, 213), (197, 214), (197, 215), (197, 216), (197, 217), (197, 218), (197, 219), (197, 220), (197, 221), (197, 222), (197, 223), (197, 224), (197, 225), (197, 226), (197, 227), (197, 228), (197, 229), (197, 230), (197, 232), (198, 179), (198, 181), (198, 182), (198, 183), (198, 184), (198, 185), (198, 186), (198, 187), (198, 188), (198, 189), (198, 190), (198, 191), (198, 192), (198, 193), (198, 194), (198, 195), (198, 196), (198, 197), (198, 198), (198, 199), (198, 200), (198, 201), (198, 202), (198, 203), (198, 204), (198, 205), (198, 206), (198, 207), (198, 208), (198, 209), (198, 210), (198, 211), (198, 212), (198, 213), (198, 214), (198, 215), (198, 216), (198, 217), (198, 218), (198, 219), (198, 220), (198, 221), (198, 222), (198, 223), (198, 224), (198, 225), (198, 226), (198, 227), (198, 228), (198, 229), (198, 231), (199, 181), (199, 183), (199, 184), (199, 185), (199, 186), (199, 187), (199, 188), (199, 189), (199, 190), (199, 191), (199, 192), (199, 193), (199, 194), (199, 195), (199, 196), (199, 197), (199, 198), (199, 199), (199, 200), (199, 201), (199, 202), (199, 203), (199, 204), (199, 205), (199, 206), (199, 207), (199, 208), (199, 209), (199, 210), (199, 211), (199, 212), (199, 213), (199, 214), (199, 215), (199, 216), (199, 217), (199, 218), (199, 219), (199, 220), (199, 221), (199, 222), (199, 223), (199, 224), (199, 225), (199, 226), (199, 227), (199, 228), (199, 229), (199, 231), (200, 181), (200, 183), (200, 184), (200, 185), (200, 186), (200, 187), (200, 188), (200, 189), (200, 190), (200, 191), (200, 192), (200, 193), (200, 194), (200, 195), (200, 196), (200, 197), (200, 198), (200, 199), (200, 200), (200, 201), (200, 202), (200, 203), (200, 204), (200, 205), (200, 206), (200, 207), (200, 208), (200, 209), (200, 210), (200, 211), (200, 212), (200, 213), (200, 214), (200, 215), (200, 216), (200, 217), (200, 218), (200, 219), (200, 220), (200, 221), (200, 222), (200, 223), (200, 224), (200, 225), (200, 226), (200, 227), (200, 228), (200, 229), (200, 231), (201, 179), (201, 181), (201, 182), (201, 183), (201, 184), (201, 185), (201, 186), (201, 187), (201, 188), (201, 189), (201, 190), (201, 191), (201, 192), (201, 193), (201, 194), (201, 195), (201, 196), (201, 197), (201, 198), (201, 199), (201, 200), (201, 201), (201, 202), (201, 203), (201, 204), (201, 205), (201, 206), (201, 207), (201, 208), (201, 209), (201, 210), (201, 211), (201, 212), (201, 213), (201, 214), (201, 215), (201, 216), (201, 217), (201, 218), (201, 219), (201, 220), (201, 221), (201, 222), (201, 223), (201, 224), (201, 225), (201, 226), (201, 227), (201, 228), (201, 229), (201, 231), (202, 179), (202, 181), (202, 182), (202, 183), (202, 184), (202, 185), (202, 186), (202, 187), (202, 188), (202, 189), (202, 190), (202, 191), (202, 192), (202, 193), (202, 194), (202, 195), (202, 196), (202, 197), (202, 198), (202, 199), (202, 200), (202, 201), (202, 202), (202, 203), (202, 204), (202, 205), (202, 206), (202, 207), (202, 208), (202, 209), (202, 210), (202, 211), (202, 212), (202, 213), (202, 214), (202, 215), (202, 216), (202, 217), (202, 218), (202, 219), (202, 220), (202, 221), (202, 222), (202, 223), (202, 224), (202, 225), (202, 226), (202, 227), (202, 228), (202, 229), (202, 230), (202, 232), (203, 179), (203, 181), (203, 182), (203, 183), (203, 184), (203, 185), (203, 186), (203, 187), (203, 188), (203, 189), (203, 190), (203, 191), (203, 192), (203, 193), (203, 194), (203, 195), (203, 196), (203, 197), (203, 198), (203, 199), (203, 200), (203, 201), (203, 202), (203, 203), (203, 204), (203, 205), (203, 206), (203, 207), (203, 208), (203, 209), (203, 210), (203, 211), (203, 212), (203, 213), (203, 214), (203, 215), (203, 216), (203, 217), (203, 218), (203, 219), (203, 220), (203, 221), (203, 222), (203, 223), (203, 224), (203, 225), (203, 226), (203, 227), (203, 228), (203, 229), (203, 230), (203, 231), (203, 233), (204, 179), (204, 181), (204, 182), (204, 183), (204, 184), (204, 185), (204, 186), (204, 187), (204, 188), (204, 189), (204, 190), (204, 191), (204, 192), (204, 193), (204, 194), (204, 195), (204, 196), (204, 197), (204, 198), (204, 199), (204, 200), (204, 201), (204, 202), (204, 203), (204, 204), (204, 205), (204, 206), (204, 207), (204, 208), (204, 209), (204, 210), (204, 211), (204, 212), (204, 213), (204, 214), (204, 215), (204, 216), (204, 217), (204, 218), (204, 219), (204, 220), (204, 221), (204, 222), (204, 223), (204, 224), (204, 225), (204, 226), (204, 227), (204, 228), (204, 229), (204, 230), (204, 231), (204, 233), (205, 179), (205, 181), (205, 182), (205, 183), (205, 184), (205, 185), (205, 186), (205, 187), (205, 188), (205, 189), (205, 190), (205, 191), (205, 192), (205, 193), (205, 194), (205, 195), (205, 196), (205, 197), (205, 198), (205, 199), (205, 200), (205, 201), (205, 202), (205, 203), (205, 204), (205, 205), (205, 206), (205, 207), (205, 208), (205, 209), (205, 210), (205, 211), (205, 212), (205, 213), (205, 214), (205, 215), (205, 216), (205, 217), (205, 218), (205, 219), (205, 220), (205, 221), (205, 222), (205, 223), (205, 224), (205, 225), (205, 226), (205, 227), (205, 228), (205, 229), (205, 230), (205, 231), (205, 233), (206, 179), (206, 181), (206, 182), (206, 183), (206, 184), (206, 185), (206, 186), (206, 187), (206, 188), (206, 189), (206, 190), (206, 191), (206, 192), (206, 193), (206, 194), (206, 195), (206, 196), (206, 197), (206, 198), (206, 199), (206, 200), (206, 201), (206, 202), (206, 203), (206, 204), (206, 205), (206, 206), (206, 207), (206, 208), (206, 209), (206, 210), (206, 211), (206, 212), (206, 213), (206, 214), (206, 215), (206, 216), (206, 217), (206, 218), (206, 219), (206, 220), (206, 221), (206, 222), (206, 223), (206, 224), (206, 225), (206, 226), (206, 227), (206, 228), (206, 229), (206, 230), (206, 231), (206, 232), (206, 234), (207, 179), (207, 180), (207, 181), (207, 182), (207, 183), (207, 184), (207, 185), (207, 186), (207, 187), (207, 188), (207, 189), (207, 190), (207, 191), (207, 192), (207, 193), (207, 194), (207, 195), (207, 196), (207, 197), (207, 198), (207, 199), (207, 200), (207, 201), (207, 202), (207, 203), (207, 204), (207, 205), (207, 206), (207, 207), (207, 208), (207, 209), (207, 210), (207, 211), (207, 212), (207, 213), (207, 214), (207, 215), (207, 216), (207, 217), (207, 218), (207, 219), (207, 220), (207, 221), (207, 222), (207, 223), (207, 224), (207, 225), (207, 226), (207, 227), (207, 228), (207, 229), (207, 230), (207, 231), (207, 232), (207, 234), (208, 180), (208, 182), (208, 183), (208, 184), (208, 185), (208, 186), (208, 187), (208, 188), (208, 189), (208, 190), (208, 191), (208, 192), (208, 193), (208, 194), (208, 195), (208, 196), (208, 197), (208, 198), (208, 199), (208, 200), (208, 201), (208, 202), (208, 203), (208, 204), (208, 205), (208, 206), (208, 207), (208, 208), (208, 209), (208, 210), (208, 211), (208, 220), (208, 221), (208, 222), (208, 223), (208, 224), (208, 225), (208, 226), (208, 227), (208, 228), (208, 229), (208, 230), (208, 231), (208, 232), (208, 234), (209, 180), (209, 183), (209, 184), (209, 185), (209, 186), (209, 187), (209, 188), (209, 189), (209, 190), (209, 191), (209, 192), (209, 193), (209, 194), (209, 195), (209, 196), (209, 197), (209, 198), (209, 199), (209, 200), (209, 201), (209, 202), (209, 203), (209, 204), (209, 205), (209, 206), (209, 207), (209, 208), (209, 209), (209, 213), (209, 214), (209, 215), (209, 216), (209, 217), (209, 218), (209, 219), (209, 220), (209, 221), (209, 222), (209, 223), (209, 224), (209, 225), (209, 226), (209, 227), (209, 228), (209, 229), (209, 230), (209, 231), (209, 233), (210, 180), (210, 182), (210, 185), (210, 186), (210, 187), (210, 188), (210, 189), (210, 190), (210, 191), (210, 192), (210, 193), (210, 194), (210, 195), (210, 196), (210, 197), (210, 198), (210, 199), (210, 200), (210, 201), (210, 202), (210, 203), (210, 204), (210, 205), (210, 206), (210, 207), (210, 211), (210, 220), (210, 222), (210, 223), (210, 224), (210, 225), (210, 226), (210, 227), (210, 228), (210, 229), (210, 230), (210, 231), (210, 233), (211, 183), (211, 184), (211, 187), (211, 188), (211, 189), (211, 190), (211, 191), (211, 192), (211, 193), (211, 194), (211, 195), (211, 196), (211, 197), (211, 198), (211, 199), (211, 200), (211, 201), (211, 202), (211, 203), (211, 204), (211, 205), (211, 209), (211, 220), (211, 222), (211, 223), (211, 224), (211, 225), (211, 226), (211, 227), (211, 228), (211, 229), (211, 230), (211, 231), (211, 233), (212, 185), (212, 189), (212, 190), (212, 191), (212, 192), (212, 193), (212, 194), (212, 195), (212, 196), (212, 197), (212, 198), (212, 199), (212, 200), (212, 201), (212, 202), (212, 203), (212, 207), (212, 217), (212, 218), (212, 219), (212, 220), (212, 221), (212, 222), (212, 223), (212, 224), (212, 225), (212, 226), (212, 227), (212, 228), (212, 229), (212, 230), (212, 231), (212, 232), (213, 187), (213, 191), (213, 192), (213, 193), (213, 194), (213, 195), (213, 196), (213, 197), (213, 198), (213, 199), (213, 200), (213, 201), (213, 205), (213, 213), (213, 215), (213, 216), (213, 220), (213, 221), (213, 222), (213, 223), (213, 224), (213, 225), (213, 226), (213, 227), (213, 228), (213, 229), (213, 230), (213, 232), (214, 189), (214, 195), (214, 196), (214, 197), (214, 198), (214, 203), (214, 211), (214, 217), (214, 218), (214, 219), (214, 220), (214, 221), (214, 222), (214, 223), (214, 224), (214, 225), (214, 226), (214, 227), (214, 228), (214, 229), (214, 232), (215, 192), (215, 193), (215, 194), (215, 199), (215, 201), (215, 210), (215, 213), (215, 214), (215, 215), (215, 216), (215, 217), (215, 218), (215, 219), (215, 220), (215, 221), (215, 222), (215, 223), (215, 224), (215, 225), (215, 226), (215, 227), (215, 231), (216, 195), (216, 196), (216, 197), (216, 198), (216, 209), (216, 211), (216, 212), (216, 213), (216, 214), (216, 215), (216, 216), (216, 217), (216, 218), (216, 219), (216, 220), (216, 221), (216, 222), (216, 223), (216, 224), (216, 228), (216, 230), (217, 208), (217, 210), (217, 211), (217, 212), (217, 213), (217, 214), (217, 215), (217, 216), (217, 217), (217, 218), (217, 219), (217, 220), (217, 221), (217, 222), (217, 223), (217, 226), (217, 227), (218, 207), (218, 209), (218, 210), (218, 211), (218, 212), (218, 213), (218, 214), (218, 215), (218, 216), (218, 217), (218, 218), (218, 219), (218, 220), (218, 221), (218, 222), (218, 224), (219, 206), (219, 208), (219, 209), (219, 210), (219, 211), (219, 212), (219, 213), (219, 214), (219, 215), (219, 216), (219, 217), (219, 218), (219, 219), (219, 220), (219, 221), (219, 223), (220, 205), (220, 207), (220, 208), (220, 209), (220, 210), (220, 211), (220, 212), (220, 213), (220, 214), (220, 215), (220, 216), (220, 217), (220, 218), (220, 219), (220, 220), (220, 223), (221, 207), (221, 208), (221, 209), (221, 210), (221, 211), (221, 212), (221, 213), (221, 214), (221, 215), (221, 216), (221, 217), (221, 218), (221, 219), (221, 223), (222, 204), (222, 206), (222, 207), (222, 208), (222, 209), (222, 210), (222, 211), (222, 212), (222, 213), (222, 214), (222, 215), (222, 216), (222, 217), (222, 218), (222, 219), (222, 222), (223, 203), (223, 205), (223, 206), (223, 207), (223, 208), (223, 209), (223, 210), (223, 211), (223, 212), (223, 213), (223, 214), (223, 215), (223, 216), (223, 217), (223, 219), (224, 202), (224, 204), (224, 205), (224, 206), (224, 207), (224, 208), (224, 209), (224, 210), (224, 211), (224, 212), (224, 213), (224, 214), (224, 215), (224, 216), (224, 217), (224, 219), (225, 201), (225, 203), (225, 204), (225, 205), (225, 206), (225, 207), (225, 208), (225, 209), (225, 210), (225, 211), (225, 212), (225, 213), (225, 214), (225, 215), (225, 216), (225, 217), (225, 218), (225, 219), (226, 198), (226, 202), (226, 203), (226, 204), (226, 205), (226, 206), (226, 207), (226, 208), (226, 209), (226, 210), (226, 211), (226, 212), (226, 213), (226, 214), (226, 215), (226, 216), (226, 218), (227, 197), (227, 200), (227, 201), (227, 202), (227, 203), (227, 204), (227, 205), (227, 206), (227, 207), (227, 208), (227, 209), (227, 210), (227, 211), (227, 212), (227, 213), (227, 214), (227, 215), (227, 216), (227, 218), (228, 197), (228, 199), (228, 200), (228, 201), (228, 202), (228, 203), (228, 204), (228, 205), (228, 206), (228, 207), (228, 208), (228, 209), (228, 210), (228, 211), (228, 212), (228, 213), (228, 214), (228, 215), (228, 216), (228, 218), (229, 197), (229, 199), (229, 200), (229, 201), (229, 202), (229, 203), (229, 204), (229, 205), (229, 206), (229, 207), (229, 208), (229, 209), (229, 210), (229, 211), (229, 212), (229, 213), (229, 214), (229, 215), (229, 217), (230, 198), (230, 200), (230, 201), (230, 202), (230, 203), (230, 204), (230, 205), (230, 206), (230, 207), (230, 208), (230, 209), (230, 210), (230, 211), (230, 212), (230, 213), (230, 214), (230, 215), (230, 217), (231, 198), (231, 200), (231, 201), (231, 202), (231, 203), (231, 204), (231, 205), (231, 206), (231, 207), (231, 208), (231, 209), (231, 210), (231, 211), (231, 212), (231, 213), (231, 214), (231, 215), (231, 217), (232, 199), (232, 201), (232, 202), (232, 203), (232, 204), (232, 205), (232, 206), (232, 207), (232, 208), (232, 209), (232, 210), (232, 211), (232, 212), (232, 213), (232, 214), (232, 215), (232, 217), (233, 200), (233, 202), (233, 203), (233, 204), (233, 205), (233, 206), (233, 207), (233, 208), (233, 209), (233, 210), (233, 211), (233, 212), (233, 213), (233, 214), (233, 216), (234, 200), (234, 202), (234, 203), (234, 204), (234, 205), (234, 206), (234, 207), (234, 208), (234, 209), (234, 210), (234, 211), (234, 212), (234, 213), (234, 214), (234, 216), (235, 201), (235, 203), (235, 204), (235, 205), (235, 206), (235, 207), (235, 208), (235, 209), (235, 210), (235, 211), (235, 212), (235, 213), (235, 215), (236, 202), (236, 214), (237, 202), (237, 204), (237, 205), (237, 206), (237, 207), (237, 208), (237, 209), (237, 210), (237, 211), (237, 213))
coordinates_ff006_b = ((153, 191), (153, 192), (154, 190), (154, 193), (155, 189), (155, 191), (155, 192), (155, 194), (156, 191), (156, 192), (156, 193), (156, 195), (157, 188), (157, 190), (157, 191), (157, 192), (157, 193), (157, 194), (157, 196), (158, 188), (158, 189), (158, 190), (158, 191), (158, 192), (158, 193), (158, 194), (158, 195), (158, 198), (159, 187), (159, 189), (159, 190), (159, 191), (159, 192), (159, 193), (159, 194), (159, 195), (159, 196), (159, 199), (160, 187), (160, 189), (160, 190), (160, 191), (160, 192), (160, 193), (160, 194), (160, 195), (160, 196), (160, 197), (160, 199), (161, 187), (161, 189), (161, 190), (161, 191), (161, 192), (161, 193), (161, 194), (161, 195), (161, 196), (161, 197), (161, 198), (161, 200), (162, 186), (162, 188), (162, 189), (162, 190), (162, 191), (162, 192), (162, 193), (162, 194), (162, 195), (162, 196), (162, 197), (162, 198), (162, 200), (163, 186), (163, 188), (163, 189), (163, 190), (163, 191), (163, 192), (163, 193), (163, 194), (163, 195), (163, 196), (163, 197), (163, 199), (164, 186), (164, 188), (164, 189), (164, 190), (164, 191), (164, 192), (164, 193), (164, 194), (164, 195), (164, 196), (164, 197), (164, 199), (165, 186), (165, 187), (165, 188), (165, 189), (165, 190), (165, 191), (165, 192), (165, 193), (165, 194), (165, 195), (165, 196), (165, 198), (166, 187), (166, 189), (166, 190), (166, 191), (166, 192), (166, 193), (166, 194), (166, 195), (166, 197), (167, 187), (167, 189), (167, 190), (167, 191), (167, 192), (167, 193), (167, 194), (167, 196), (168, 188), (168, 191), (168, 192), (168, 193), (168, 194), (168, 196), (169, 189), (169, 195), (170, 191), (170, 193), (170, 195), (228, 195), (229, 191), (229, 192), (229, 193), (229, 195), (230, 189), (230, 195), (231, 188), (231, 191), (231, 192), (231, 193), (231, 194), (231, 196), (232, 187), (232, 189), (232, 190), (232, 191), (232, 192), (232, 193), (232, 194), (232, 196), (233, 187), (233, 189), (233, 190), (233, 191), (233, 192), (233, 193), (233, 194), (233, 195), (233, 197), (234, 186), (234, 188), (234, 189), (234, 190), (234, 191), (234, 192), (234, 193), (234, 194), (234, 195), (234, 196), (234, 198), (235, 186), (235, 188), (235, 189), (235, 190), (235, 191), (235, 192), (235, 193), (235, 194), (235, 195), (235, 196), (235, 197), (235, 199), (236, 186), (236, 188), (236, 189), (236, 190), (236, 191), (236, 192), (236, 193), (236, 194), (236, 195), (236, 196), (236, 197), (236, 199), (237, 186), (237, 188), (237, 189), (237, 190), (237, 191), (237, 192), (237, 193), (237, 194), (237, 195), (237, 196), (237, 197), (237, 198), (237, 200), (238, 187), (238, 189), (238, 190), (238, 191), (238, 192), (238, 193), (238, 194), (238, 195), (238, 196), (238, 197), (238, 198), (238, 200), (239, 187), (239, 189), (239, 190), (239, 191), (239, 192), (239, 193), (239, 194), (239, 195), (239, 196), (239, 197), (239, 199), (240, 187), (240, 189), (240, 190), (240, 191), (240, 192), (240, 193), (240, 194), (240, 195), (240, 196), (241, 188), (241, 190), (241, 191), (241, 192), (241, 193), (241, 194), (241, 195), (241, 197), (242, 188), (242, 190), (242, 191), (242, 192), (242, 193), (242, 194), (242, 196), (243, 189), (243, 191), (243, 192), (243, 193), (243, 195), (244, 189), (244, 191), (244, 192), (244, 194), (245, 190), (245, 193), (246, 191), (246, 192))
coordinates_7_f0900 = ((117, 192), (117, 194), (117, 195), (117, 197), (118, 191), (118, 198), (118, 199), (119, 191), (119, 193), (119, 194), (119, 195), (119, 196), (119, 197), (119, 200), (120, 191), (120, 193), (120, 194), (120, 195), (120, 196), (120, 197), (120, 198), (120, 199), (120, 202), (121, 190), (121, 192), (121, 193), (121, 194), (121, 195), (121, 196), (121, 197), (121, 198), (121, 199), (121, 200), (121, 204), (122, 190), (122, 192), (122, 193), (122, 194), (122, 195), (122, 196), (122, 197), (122, 198), (122, 199), (122, 200), (122, 201), (122, 202), (122, 205), (123, 190), (123, 192), (123, 193), (123, 194), (123, 195), (123, 196), (123, 197), (123, 198), (123, 199), (123, 200), (123, 201), (123, 202), (123, 203), (123, 204), (123, 206), (124, 189), (124, 191), (124, 192), (124, 193), (124, 194), (124, 195), (124, 196), (124, 197), (124, 198), (124, 199), (124, 200), (124, 201), (124, 202), (124, 203), (124, 204), (124, 205), (124, 207), (125, 189), (125, 191), (125, 192), (125, 193), (125, 194), (125, 195), (125, 196), (125, 197), (125, 198), (125, 199), (125, 200), (125, 201), (125, 202), (125, 203), (125, 204), (125, 205), (125, 206), (125, 208), (126, 188), (126, 189), (126, 190), (126, 191), (126, 192), (126, 193), (126, 194), (126, 195), (126, 196), (126, 197), (126, 198), (126, 199), (126, 200), (126, 201), (126, 202), (126, 203), (126, 204), (126, 205), (126, 206), (126, 208), (127, 188), (127, 190), (127, 191), (127, 192), (127, 193), (127, 194), (127, 195), (127, 196), (127, 197), (127, 198), (127, 199), (127, 200), (127, 201), (127, 202), (127, 203), (127, 204), (127, 205), (127, 206), (127, 207), (127, 209), (128, 188), (128, 190), (128, 191), (128, 192), (128, 193), (128, 194), (128, 195), (128, 196), (128, 197), (128, 198), (128, 199), (128, 200), (128, 201), (128, 202), (128, 203), (128, 204), (128, 205), (128, 206), (128, 207), (128, 208), (128, 210), (129, 187), (129, 189), (129, 190), (129, 191), (129, 192), (129, 193), (129, 194), (129, 195), (129, 196), (129, 197), (129, 198), (129, 199), (129, 200), (129, 201), (129, 202), (129, 203), (129, 204), (129, 205), (129, 206), (129, 207), (129, 208), (129, 210), (130, 187), (130, 189), (130, 190), (130, 191), (130, 192), (130, 193), (130, 194), (130, 195), (130, 196), (130, 197), (130, 198), (130, 199), (130, 200), (130, 201), (130, 202), (130, 203), (130, 204), (130, 205), (130, 206), (130, 207), (130, 208), (130, 209), (130, 211), (131, 187), (131, 189), (131, 190), (131, 191), (131, 192), (131, 193), (131, 194), (131, 195), (131, 196), (131, 197), (131, 198), (131, 199), (131, 200), (131, 201), (131, 202), (131, 203), (131, 204), (131, 205), (131, 206), (131, 207), (131, 208), (131, 209), (131, 211), (132, 188), (132, 190), (132, 191), (132, 192), (132, 193), (132, 194), (132, 195), (132, 196), (132, 197), (132, 198), (132, 199), (132, 200), (132, 201), (132, 202), (132, 203), (132, 204), (132, 205), (132, 206), (132, 207), (132, 208), (132, 209), (132, 211), (133, 189), (133, 191), (133, 192), (133, 193), (133, 194), (133, 195), (133, 196), (133, 197), (133, 198), (133, 199), (133, 200), (133, 201), (133, 202), (133, 203), (133, 204), (133, 205), (133, 206), (133, 207), (133, 208), (133, 209), (133, 210), (133, 212), (134, 190), (134, 192), (134, 193), (134, 194), (134, 195), (134, 196), (134, 197), (134, 198), (134, 199), (134, 200), (134, 201), (134, 202), (134, 203), (134, 204), (134, 205), (134, 206), (134, 207), (134, 208), (134, 209), (134, 210), (134, 212), (135, 191), (135, 193), (135, 194), (135, 195), (135, 196), (135, 197), (135, 198), (135, 199), (135, 200), (135, 201), (135, 202), (135, 203), (135, 204), (135, 205), (135, 206), (135, 207), (135, 208), (135, 209), (135, 210), (135, 212), (136, 192), (136, 193), (136, 194), (136, 195), (136, 196), (136, 197), (136, 198), (136, 199), (136, 200), (136, 201), (136, 202), (136, 203), (136, 204), (136, 205), (136, 206), (136, 207), (136, 208), (136, 209), (136, 210), (136, 212), (137, 192), (137, 194), (137, 195), (137, 196), (137, 197), (137, 198), (137, 199), (137, 200), (137, 201), (137, 202), (137, 203), (137, 204), (137, 205), (137, 206), (137, 207), (137, 208), (137, 209), (137, 210), (137, 211), (137, 212), (137, 213), (138, 193), (138, 195), (138, 196), (138, 197), (138, 198), (138, 199), (138, 200), (138, 201), (138, 202), (138, 203), (138, 204), (138, 205), (138, 206), (138, 207), (138, 208), (138, 209), (138, 210), (138, 211), (138, 213), (139, 193), (139, 195), (139, 196), (139, 197), (139, 198), (139, 199), (139, 200), (139, 201), (139, 202), (139, 203), (139, 204), (139, 205), (139, 206), (139, 207), (139, 208), (139, 209), (139, 210), (139, 211), (139, 213), (140, 193), (140, 195), (140, 196), (140, 197), (140, 198), (140, 199), (140, 200), (140, 201), (140, 202), (140, 203), (140, 204), (140, 205), (140, 206), (140, 207), (140, 208), (140, 209), (140, 210), (140, 211), (140, 213), (141, 194), (141, 196), (141, 197), (141, 198), (141, 199), (141, 200), (141, 201), (141, 202), (141, 203), (141, 204), (141, 205), (141, 206), (141, 207), (141, 208), (141, 209), (141, 210), (141, 211), (141, 213), (142, 194), (142, 196), (142, 197), (142, 198), (142, 199), (142, 200), (142, 201), (142, 202), (142, 203), (142, 204), (142, 205), (142, 206), (142, 207), (142, 208), (142, 209), (142, 210), (142, 211), (142, 213), (143, 194), (143, 196), (143, 197), (143, 198), (143, 199), (143, 200), (143, 201), (143, 202), (143, 203), (143, 204), (143, 205), (143, 206), (143, 207), (143, 208), (143, 209), (143, 210), (143, 211), (143, 213), (144, 194), (144, 196), (144, 197), (144, 198), (144, 199), (144, 200), (144, 201), (144, 202), (144, 203), (144, 204), (144, 205), (144, 206), (144, 207), (144, 208), (144, 209), (144, 210), (144, 211), (144, 213), (145, 194), (145, 196), (145, 197), (145, 198), (145, 199), (145, 200), (145, 201), (145, 202), (145, 203), (145, 204), (145, 205), (145, 206), (145, 207), (145, 208), (145, 209), (145, 210), (145, 211), (145, 213), (146, 194), (146, 196), (146, 197), (146, 198), (146, 199), (146, 200), (146, 201), (146, 202), (146, 203), (146, 204), (146, 205), (146, 206), (146, 207), (146, 208), (146, 209), (146, 210), (146, 211), (146, 213), (146, 214), (147, 194), (147, 196), (147, 197), (147, 198), (147, 199), (147, 200), (147, 201), (147, 202), (147, 203), (147, 204), (147, 205), (147, 206), (147, 207), (147, 208), (147, 209), (147, 210), (147, 211), (147, 212), (147, 213), (147, 214), (148, 194), (148, 196), (148, 197), (148, 198), (148, 199), (148, 200), (148, 201), (148, 202), (148, 203), (148, 204), (148, 205), (148, 206), (148, 207), (148, 208), (148, 209), (148, 210), (148, 211), (148, 212), (148, 213), (148, 214), (149, 194), (149, 196), (149, 197), (149, 198), (149, 199), (149, 200), (149, 201), (149, 202), (149, 203), (149, 204), (149, 205), (149, 206), (149, 207), (149, 208), (149, 209), (149, 210), (149, 211), (149, 212), (149, 213), (149, 214), (150, 194), (150, 196), (150, 197), (150, 198), (150, 199), (150, 200), (150, 201), (150, 202), (150, 203), (150, 204), (150, 205), (150, 206), (150, 207), (150, 208), (150, 209), (150, 210), (150, 211), (150, 213), (151, 194), (151, 196), (151, 197), (151, 198), (151, 199), (151, 200), (151, 201), (151, 202), (151, 203), (151, 204), (151, 205), (151, 206), (151, 207), (151, 208), (151, 209), (151, 210), (151, 211), (151, 213), (152, 194), (152, 196), (152, 197), (152, 198), (152, 199), (152, 200), (152, 201), (152, 202), (152, 203), (152, 204), (152, 205), (152, 206), (152, 207), (152, 208), (152, 209), (152, 210), (152, 211), (152, 213), (153, 194), (153, 197), (153, 198), (153, 199), (153, 200), (153, 201), (153, 202), (153, 203), (153, 204), (153, 205), (153, 206), (153, 207), (153, 208), (153, 209), (153, 210), (153, 211), (153, 213), (154, 195), (154, 198), (154, 199), (154, 200), (154, 201), (154, 202), (154, 203), (154, 204), (154, 205), (154, 206), (154, 207), (154, 208), (154, 209), (154, 210), (154, 211), (154, 213), (155, 196), (155, 199), (155, 200), (155, 201), (155, 202), (155, 203), (155, 204), (155, 205), (155, 206), (155, 207), (155, 208), (155, 209), (155, 210), (155, 212), (156, 198), (156, 200), (156, 201), (156, 202), (156, 203), (156, 204), (156, 205), (156, 206), (156, 207), (156, 208), (156, 209), (156, 211), (157, 199), (157, 201), (157, 202), (157, 203), (157, 204), (157, 205), (157, 206), (157, 207), (157, 208), (157, 209), (157, 211), (158, 200), (158, 202), (158, 203), (158, 204), (158, 205), (158, 206), (158, 207), (158, 208), (158, 210), (159, 201), (159, 209), (160, 202), (160, 204), (160, 205), (160, 206), (160, 207), (160, 209), (239, 202), (239, 204), (239, 205), (239, 206), (239, 207), (239, 209), (240, 201), (240, 209), (240, 210), (241, 200), (241, 202), (241, 203), (241, 204), (241, 205), (241, 206), (241, 207), (241, 208), (241, 210), (242, 199), (242, 201), (242, 202), (242, 203), (242, 204), (242, 205), (242, 206), (242, 207), (242, 208), (242, 209), (242, 211), (243, 198), (243, 200), (243, 201), (243, 202), (243, 203), (243, 204), (243, 205), (243, 206), (243, 207), (243, 208), (243, 209), (243, 211), (244, 196), (244, 199), (244, 200), (244, 201), (244, 202), (244, 203), (244, 204), (244, 205), (244, 206), (244, 207), (244, 208), (244, 209), (244, 210), (244, 212), (245, 195), (245, 198), (245, 199), (245, 200), (245, 201), (245, 202), (245, 203), (245, 204), (245, 205), (245, 206), (245, 207), (245, 208), (245, 209), (245, 210), (245, 211), (245, 213), (246, 194), (246, 197), (246, 198), (246, 199), (246, 200), (246, 201), (246, 202), (246, 203), (246, 204), (246, 205), (246, 206), (246, 207), (246, 208), (246, 209), (246, 210), (246, 211), (246, 213), (247, 194), (247, 196), (247, 197), (247, 198), (247, 199), (247, 200), (247, 201), (247, 202), (247, 203), (247, 204), (247, 205), (247, 206), (247, 207), (247, 208), (247, 209), (247, 210), (247, 211), (247, 213), (248, 194), (248, 196), (248, 197), (248, 198), (248, 199), (248, 200), (248, 201), (248, 202), (248, 203), (248, 204), (248, 205), (248, 206), (248, 207), (248, 208), (248, 209), (248, 210), (248, 211), (248, 213), (249, 194), (249, 196), (249, 197), (249, 198), (249, 199), (249, 200), (249, 201), (249, 202), (249, 203), (249, 204), (249, 205), (249, 206), (249, 207), (249, 208), (249, 209), (249, 210), (249, 211), (249, 213), (250, 194), (250, 196), (250, 197), (250, 198), (250, 199), (250, 200), (250, 201), (250, 202), (250, 203), (250, 204), (250, 205), (250, 206), (250, 207), (250, 208), (250, 209), (250, 210), (250, 211), (250, 212), (250, 213), (250, 214), (251, 194), (251, 196), (251, 197), (251, 198), (251, 199), (251, 200), (251, 201), (251, 202), (251, 203), (251, 204), (251, 205), (251, 206), (251, 207), (251, 208), (251, 209), (251, 210), (251, 211), (251, 212), (251, 213), (251, 214), (252, 194), (252, 196), (252, 197), (252, 198), (252, 199), (252, 200), (252, 201), (252, 202), (252, 203), (252, 204), (252, 205), (252, 206), (252, 207), (252, 208), (252, 209), (252, 210), (252, 211), (252, 212), (252, 213), (252, 214), (253, 194), (253, 196), (253, 197), (253, 198), (253, 199), (253, 200), (253, 201), (253, 202), (253, 203), (253, 204), (253, 205), (253, 206), (253, 207), (253, 208), (253, 209), (253, 210), (253, 211), (253, 213), (254, 194), (254, 196), (254, 197), (254, 198), (254, 199), (254, 200), (254, 201), (254, 202), (254, 203), (254, 204), (254, 205), (254, 206), (254, 207), (254, 208), (254, 209), (254, 210), (254, 211), (254, 213), (255, 194), (255, 196), (255, 197), (255, 198), (255, 199), (255, 200), (255, 201), (255, 202), (255, 203), (255, 204), (255, 205), (255, 206), (255, 207), (255, 208), (255, 209), (255, 210), (255, 211), (255, 213), (256, 194), (256, 196), (256, 197), (256, 198), (256, 199), (256, 200), (256, 201), (256, 202), (256, 203), (256, 204), (256, 205), (256, 206), (256, 207), (256, 208), (256, 209), (256, 210), (256, 211), (256, 213), (257, 194), (257, 196), (257, 197), (257, 198), (257, 199), (257, 200), (257, 201), (257, 202), (257, 203), (257, 204), (257, 205), (257, 206), (257, 207), (257, 208), (257, 209), (257, 210), (257, 211), (257, 213), (258, 194), (258, 196), (258, 197), (258, 198), (258, 199), (258, 200), (258, 201), (258, 202), (258, 203), (258, 204), (258, 205), (258, 206), (258, 207), (258, 208), (258, 209), (258, 210), (258, 211), (258, 213), (259, 193), (259, 195), (259, 196), (259, 197), (259, 198), (259, 199), (259, 200), (259, 201), (259, 202), (259, 203), (259, 204), (259, 205), (259, 206), (259, 207), (259, 208), (259, 209), (259, 210), (259, 211), (259, 213), (260, 193), (260, 195), (260, 196), (260, 197), (260, 198), (260, 199), (260, 200), (260, 201), (260, 202), (260, 203), (260, 204), (260, 205), (260, 206), (260, 207), (260, 208), (260, 209), (260, 210), (260, 211), (260, 213), (261, 193), (261, 195), (261, 196), (261, 197), (261, 198), (261, 199), (261, 200), (261, 201), (261, 202), (261, 203), (261, 204), (261, 205), (261, 206), (261, 207), (261, 208), (261, 209), (261, 210), (261, 211), (261, 213), (262, 192), (262, 194), (262, 195), (262, 196), (262, 197), (262, 198), (262, 199), (262, 200), (262, 201), (262, 202), (262, 203), (262, 204), (262, 205), (262, 206), (262, 207), (262, 208), (262, 209), (262, 210), (262, 212), (262, 213), (263, 191), (263, 193), (263, 194), (263, 195), (263, 196), (263, 197), (263, 198), (263, 199), (263, 200), (263, 201), (263, 202), (263, 203), (263, 204), (263, 205), (263, 206), (263, 207), (263, 208), (263, 209), (263, 210), (263, 212), (264, 191), (264, 193), (264, 194), (264, 195), (264, 196), (264, 197), (264, 198), (264, 199), (264, 200), (264, 201), (264, 202), (264, 203), (264, 204), (264, 205), (264, 206), (264, 207), (264, 208), (264, 209), (264, 210), (264, 212), (265, 190), (265, 192), (265, 193), (265, 194), (265, 195), (265, 196), (265, 197), (265, 198), (265, 199), (265, 200), (265, 201), (265, 202), (265, 203), (265, 204), (265, 205), (265, 206), (265, 207), (265, 208), (265, 209), (265, 210), (265, 212), (266, 189), (266, 191), (266, 192), (266, 193), (266, 194), (266, 195), (266, 196), (266, 197), (266, 198), (266, 199), (266, 200), (266, 201), (266, 202), (266, 203), (266, 204), (266, 205), (266, 206), (266, 207), (266, 208), (266, 209), (266, 210), (266, 212), (267, 188), (267, 190), (267, 191), (267, 192), (267, 193), (267, 194), (267, 195), (267, 196), (267, 197), (267, 198), (267, 199), (267, 200), (267, 201), (267, 202), (267, 203), (267, 204), (267, 205), (267, 206), (267, 207), (267, 208), (267, 209), (267, 211), (268, 187), (268, 189), (268, 190), (268, 191), (268, 192), (268, 193), (268, 194), (268, 195), (268, 196), (268, 197), (268, 198), (268, 199), (268, 200), (268, 201), (268, 202), (268, 203), (268, 204), (268, 205), (268, 206), (268, 207), (268, 208), (268, 209), (268, 211), (269, 187), (269, 189), (269, 190), (269, 191), (269, 192), (269, 193), (269, 194), (269, 195), (269, 196), (269, 197), (269, 198), (269, 199), (269, 200), (269, 201), (269, 202), (269, 203), (269, 204), (269, 205), (269, 206), (269, 207), (269, 208), (269, 209), (269, 211), (270, 187), (270, 189), (270, 190), (270, 191), (270, 192), (270, 193), (270, 194), (270, 195), (270, 196), (270, 197), (270, 198), (270, 199), (270, 200), (270, 201), (270, 202), (270, 203), (270, 204), (270, 205), (270, 206), (270, 207), (270, 208), (270, 210), (271, 188), (271, 190), (271, 191), (271, 192), (271, 193), (271, 194), (271, 195), (271, 196), (271, 197), (271, 198), (271, 199), (271, 200), (271, 201), (271, 202), (271, 203), (271, 204), (271, 205), (271, 206), (271, 207), (271, 208), (272, 188), (272, 190), (272, 191), (272, 192), (272, 193), (272, 194), (272, 195), (272, 196), (272, 197), (272, 198), (272, 199), (272, 200), (272, 201), (272, 202), (272, 203), (272, 204), (272, 205), (272, 206), (272, 207), (272, 209), (273, 189), (273, 190), (273, 191), (273, 192), (273, 193), (273, 194), (273, 195), (273, 196), (273, 197), (273, 198), (273, 199), (273, 200), (273, 201), (273, 202), (273, 203), (273, 204), (273, 205), (273, 206), (273, 208), (274, 189), (274, 191), (274, 192), (274, 193), (274, 194), (274, 195), (274, 196), (274, 197), (274, 198), (274, 199), (274, 200), (274, 201), (274, 202), (274, 203), (274, 204), (274, 205), (274, 208), (275, 189), (275, 191), (275, 192), (275, 193), (275, 194), (275, 195), (275, 196), (275, 197), (275, 198), (275, 199), (275, 200), (275, 201), (275, 202), (275, 203), (275, 204), (275, 205), (275, 207), (276, 190), (276, 192), (276, 193), (276, 194), (276, 195), (276, 196), (276, 197), (276, 198), (276, 199), (276, 200), (276, 201), (276, 202), (276, 203), (276, 206), (277, 190), (277, 192), (277, 193), (277, 194), (277, 195), (277, 196), (277, 197), (277, 198), (277, 199), (277, 200), (277, 201), (277, 202), (277, 205), (278, 190), (278, 192), (278, 193), (278, 194), (278, 195), (278, 196), (278, 197), (278, 198), (278, 199), (278, 200), (278, 204), (279, 191), (279, 193), (279, 194), (279, 195), (279, 196), (279, 197), (279, 198), (279, 199), (279, 202), (280, 191), (280, 193), (280, 194), (280, 195), (280, 196), (280, 197), (280, 200), (281, 191), (281, 198), (282, 192), (282, 194), (282, 195), (282, 197))
coordinates_ff1300 = ((106, 184), (107, 181), (107, 184), (108, 181), (108, 184), (109, 180), (109, 182), (109, 183), (109, 185), (110, 180), (110, 182), (110, 183), (110, 185), (111, 179), (111, 181), (111, 182), (111, 183), (111, 185), (112, 179), (112, 181), (112, 182), (112, 183), (112, 184), (112, 186), (113, 179), (113, 181), (113, 182), (113, 183), (113, 184), (113, 186), (114, 179), (114, 181), (114, 182), (114, 183), (114, 184), (114, 185), (114, 187), (115, 179), (115, 181), (115, 182), (115, 183), (115, 184), (115, 185), (115, 187), (116, 178), (116, 180), (116, 181), (116, 182), (116, 183), (116, 184), (116, 185), (116, 186), (116, 188), (117, 178), (117, 180), (117, 181), (117, 182), (117, 183), (117, 184), (117, 185), (117, 186), (117, 187), (117, 189), (118, 178), (118, 180), (118, 181), (118, 182), (118, 183), (118, 184), (118, 185), (118, 186), (118, 187), (118, 189), (119, 178), (119, 180), (119, 181), (119, 182), (119, 183), (119, 184), (119, 185), (119, 186), (119, 187), (119, 189), (120, 178), (120, 179), (120, 180), (120, 181), (120, 182), (120, 183), (120, 184), (120, 185), (120, 186), (120, 188), (121, 179), (121, 181), (121, 182), (121, 183), (121, 184), (121, 185), (121, 186), (121, 188), (122, 179), (122, 181), (122, 182), (122, 183), (122, 184), (122, 185), (122, 186), (122, 188), (123, 179), (123, 181), (123, 182), (123, 183), (123, 184), (123, 185), (123, 187), (124, 179), (124, 181), (124, 182), (124, 183), (124, 184), (124, 185), (124, 187), (125, 180), (125, 182), (125, 183), (125, 184), (125, 185), (125, 187), (126, 180), (126, 182), (126, 183), (126, 184), (126, 186), (127, 181), (127, 183), (127, 184), (127, 186), (128, 182), (128, 185), (129, 183), (129, 185), (269, 185), (270, 183), (270, 185), (271, 182), (272, 181), (272, 183), (272, 184), (272, 186), (273, 180), (273, 182), (273, 183), (273, 184), (273, 186), (274, 180), (274, 182), (274, 183), (274, 184), (274, 185), (274, 187), (275, 179), (275, 181), (275, 182), (275, 183), (275, 184), (275, 185), (275, 187), (276, 179), (276, 181), (276, 182), (276, 183), (276, 184), (276, 185), (276, 187), (277, 179), (277, 181), (277, 182), (277, 183), (277, 184), (277, 185), (277, 186), (277, 188), (278, 179), (278, 181), (278, 182), (278, 183), (278, 184), (278, 185), (278, 186), (278, 188), (279, 178), (279, 179), (279, 180), (279, 181), (279, 182), (279, 183), (279, 184), (279, 185), (279, 186), (279, 188), (280, 178), (280, 180), (280, 181), (280, 182), (280, 183), (280, 184), (280, 185), (280, 186), (280, 187), (280, 189), (281, 178), (281, 180), (281, 181), (281, 182), (281, 183), (281, 184), (281, 185), (281, 186), (281, 187), (281, 189), (282, 178), (282, 180), (282, 181), (282, 182), (282, 183), (282, 184), (282, 185), (282, 186), (282, 187), (282, 189), (283, 178), (283, 180), (283, 181), (283, 182), (283, 183), (283, 184), (283, 185), (283, 186), (283, 188), (284, 179), (284, 181), (284, 182), (284, 183), (284, 184), (284, 185), (284, 187), (285, 179), (285, 181), (285, 182), (285, 183), (285, 184), (285, 185), (285, 187), (286, 179), (286, 181), (286, 182), (286, 183), (286, 184), (286, 186), (287, 179), (287, 181), (287, 182), (287, 183), (287, 184), (287, 186), (288, 179), (288, 181), (288, 182), (288, 183), (288, 185), (289, 180), (289, 182), (289, 183), (289, 185), (290, 180), (290, 182), (290, 183), (290, 185), (291, 181), (291, 184), (292, 184), (293, 184))
coordinates_007_f4_e = ((96, 107), (96, 109), (96, 110), (96, 111), (96, 112), (96, 114), (97, 106), (98, 104), (98, 107), (98, 108), (98, 109), (98, 110), (98, 111), (98, 112), (98, 114), (99, 103), (99, 106), (99, 107), (99, 108), (99, 109), (99, 110), (99, 111), (99, 112), (99, 114), (100, 102), (100, 104), (100, 105), (100, 106), (100, 107), (100, 108), (100, 109), (100, 110), (100, 111), (100, 112), (100, 114), (101, 101), (101, 103), (101, 104), (101, 105), (101, 106), (101, 107), (101, 108), (101, 109), (101, 110), (101, 111), (101, 112), (101, 114), (102, 100), (102, 102), (102, 103), (102, 104), (102, 105), (102, 106), (102, 107), (102, 108), (102, 109), (102, 110), (102, 111), (102, 112), (102, 114), (103, 99), (103, 101), (103, 102), (103, 103), (103, 104), (103, 105), (103, 106), (103, 107), (103, 108), (103, 109), (103, 110), (103, 111), (103, 112), (103, 114), (104, 98), (104, 100), (104, 101), (104, 102), (104, 103), (104, 104), (104, 105), (104, 106), (104, 107), (104, 108), (104, 109), (104, 110), (104, 111), (104, 112), (104, 114), (105, 97), (105, 99), (105, 100), (105, 101), (105, 102), (105, 103), (105, 104), (105, 105), (105, 106), (105, 107), (105, 108), (105, 109), (105, 110), (105, 111), (105, 112), (105, 114), (106, 96), (106, 98), (106, 99), (106, 100), (106, 101), (106, 102), (106, 103), (106, 104), (106, 105), (106, 106), (106, 107), (106, 108), (106, 109), (106, 110), (106, 111), (106, 112), (106, 114), (107, 98), (107, 99), (107, 100), (107, 101), (107, 102), (107, 103), (107, 104), (107, 105), (107, 106), (107, 107), (107, 108), (107, 109), (107, 110), (107, 111), (107, 112), (107, 114), (108, 95), (108, 97), (108, 98), (108, 99), (108, 100), (108, 101), (108, 102), (108, 103), (108, 104), (108, 105), (108, 106), (108, 107), (108, 108), (108, 109), (108, 110), (108, 111), (108, 114), (109, 94), (109, 96), (109, 97), (109, 98), (109, 99), (109, 100), (109, 101), (109, 102), (109, 103), (109, 104), (109, 105), (109, 106), (109, 107), (109, 108), (109, 109), (109, 113), (109, 114), (110, 93), (110, 95), (110, 96), (110, 97), (110, 98), (110, 99), (110, 100), (110, 101), (110, 102), (110, 103), (110, 104), (110, 105), (110, 106), (110, 107), (110, 110), (110, 111), (111, 93), (111, 95), (111, 96), (111, 97), (111, 98), (111, 99), (111, 100), (111, 101), (111, 102), (111, 103), (111, 104), (111, 105), (111, 106), (111, 107), (111, 109), (112, 92), (112, 94), (112, 95), (112, 96), (112, 97), (112, 98), (112, 99), (112, 100), (112, 101), (112, 102), (112, 103), (112, 104), (112, 105), (112, 107), (112, 108), (113, 92), (113, 94), (113, 95), (113, 96), (113, 97), (113, 98), (113, 99), (113, 100), (113, 101), (113, 102), (113, 103), (113, 104), (113, 105), (113, 107), (114, 91), (114, 93), (114, 94), (114, 95), (114, 96), (114, 97), (114, 98), (114, 99), (114, 100), (114, 101), (114, 102), (114, 103), (114, 104), (114, 105), (114, 107), (115, 91), (115, 93), (115, 94), (115, 95), (115, 96), (115, 97), (115, 98), (115, 99), (115, 100), (115, 101), (115, 102), (115, 103), (115, 104), (115, 105), (115, 107), (116, 90), (116, 91), (116, 92), (116, 93), (116, 94), (116, 95), (116, 96), (116, 97), (116, 98), (116, 99), (116, 100), (116, 101), (116, 102), (116, 103), (116, 104), (116, 105), (116, 107), (117, 90), (117, 92), (117, 93), (117, 94), (117, 95), (117, 96), (117, 97), (117, 98), (117, 99), (117, 100), (117, 101), (117, 102), (117, 103), (117, 104), (117, 105), (117, 107), (118, 90), (118, 92), (118, 93), (118, 94), (118, 95), (118, 96), (118, 97), (118, 98), (118, 99), (118, 100), (118, 101), (118, 102), (118, 103), (118, 104), (118, 105), (118, 106), (118, 108), (119, 90), (119, 92), (119, 93), (119, 94), (119, 95), (119, 96), (119, 97), (119, 98), (119, 99), (119, 100), (119, 101), (119, 102), (119, 103), (119, 104), (119, 105), (119, 106), (119, 108), (120, 90), (120, 92), (120, 93), (120, 94), (120, 95), (120, 96), (120, 97), (120, 98), (120, 99), (120, 100), (120, 101), (120, 102), (120, 103), (120, 104), (120, 105), (120, 106), (120, 107), (120, 109), (121, 90), (121, 92), (121, 93), (121, 94), (121, 95), (121, 96), (121, 97), (121, 98), (121, 99), (121, 100), (121, 101), (121, 102), (121, 103), (121, 104), (121, 105), (121, 106), (121, 107), (121, 109), (122, 90), (122, 92), (122, 93), (122, 94), (122, 95), (122, 96), (122, 97), (122, 98), (122, 99), (122, 100), (122, 101), (122, 102), (122, 103), (122, 104), (122, 105), (122, 106), (122, 107), (122, 108), (122, 110), (123, 91), (123, 93), (123, 94), (123, 95), (123, 96), (123, 97), (123, 98), (123, 99), (123, 100), (123, 101), (123, 102), (123, 103), (123, 104), (123, 105), (123, 106), (123, 107), (123, 108), (123, 110), (124, 91), (124, 94), (124, 95), (124, 96), (124, 97), (124, 98), (124, 99), (124, 100), (124, 101), (124, 102), (124, 103), (124, 104), (124, 105), (124, 106), (124, 107), (124, 108), (124, 109), (124, 111), (125, 92), (125, 94), (125, 95), (125, 96), (125, 97), (125, 98), (125, 99), (125, 100), (125, 101), (125, 102), (125, 103), (125, 104), (125, 105), (125, 106), (125, 107), (125, 108), (125, 109), (125, 111), (126, 93), (126, 95), (126, 96), (126, 97), (126, 98), (126, 99), (126, 100), (126, 101), (126, 102), (126, 103), (126, 104), (126, 105), (126, 106), (126, 107), (126, 108), (126, 111), (127, 94), (127, 96), (127, 97), (127, 98), (127, 99), (127, 100), (127, 101), (127, 102), (127, 103), (127, 104), (127, 105), (127, 110), (128, 95), (128, 97), (128, 98), (128, 99), (128, 100), (128, 101), (128, 102), (128, 106), (128, 108), (129, 95), (129, 97), (129, 98), (129, 99), (129, 103), (129, 105), (130, 96), (130, 100), (130, 102), (131, 99), (268, 97), (268, 99), (269, 96), (269, 100), (269, 101), (269, 102), (270, 95), (270, 97), (270, 98), (270, 99), (270, 103), (270, 104), (270, 105), (271, 95), (271, 97), (271, 98), (271, 99), (271, 100), (271, 101), (271, 102), (271, 108), (272, 94), (272, 96), (272, 97), (272, 98), (272, 99), (272, 100), (272, 101), (272, 102), (272, 103), (272, 104), (272, 105), (272, 106), (272, 110), (273, 93), (273, 95), (273, 96), (273, 97), (273, 98), (273, 99), (273, 100), (273, 101), (273, 102), (273, 103), (273, 104), (273, 105), (273, 106), (273, 107), (273, 108), (273, 111), (274, 92), (274, 94), (274, 95), (274, 96), (274, 97), (274, 98), (274, 99), (274, 100), (274, 101), (274, 102), (274, 103), (274, 104), (274, 105), (274, 106), (274, 107), (274, 108), (274, 109), (274, 111), (275, 91), (275, 94), (275, 95), (275, 96), (275, 97), (275, 98), (275, 99), (275, 100), (275, 101), (275, 102), (275, 103), (275, 104), (275, 105), (275, 106), (275, 107), (275, 108), (275, 109), (275, 111), (276, 91), (276, 93), (276, 94), (276, 95), (276, 96), (276, 97), (276, 98), (276, 99), (276, 100), (276, 101), (276, 102), (276, 103), (276, 104), (276, 105), (276, 106), (276, 107), (276, 108), (276, 110), (277, 90), (277, 92), (277, 93), (277, 94), (277, 95), (277, 96), (277, 97), (277, 98), (277, 99), (277, 100), (277, 101), (277, 102), (277, 103), (277, 104), (277, 105), (277, 106), (277, 107), (277, 108), (277, 110), (278, 90), (278, 92), (278, 93), (278, 94), (278, 95), (278, 96), (278, 97), (278, 98), (278, 99), (278, 100), (278, 101), (278, 102), (278, 103), (278, 104), (278, 105), (278, 106), (278, 107), (278, 109), (279, 90), (279, 92), (279, 93), (279, 94), (279, 95), (279, 96), (279, 97), (279, 98), (279, 99), (279, 100), (279, 101), (279, 102), (279, 103), (279, 104), (279, 105), (279, 106), (279, 107), (279, 109), (280, 90), (280, 92), (280, 93), (280, 94), (280, 95), (280, 96), (280, 97), (280, 98), (280, 99), (280, 100), (280, 101), (280, 102), (280, 103), (280, 104), (280, 105), (280, 106), (280, 108), (281, 90), (281, 92), (281, 93), (281, 94), (281, 95), (281, 96), (281, 97), (281, 98), (281, 99), (281, 100), (281, 101), (281, 102), (281, 103), (281, 104), (281, 105), (281, 106), (281, 108), (282, 90), (282, 92), (282, 93), (282, 94), (282, 95), (282, 96), (282, 97), (282, 98), (282, 99), (282, 100), (282, 101), (282, 102), (282, 103), (282, 104), (282, 105), (282, 107), (283, 91), (283, 93), (283, 94), (283, 95), (283, 96), (283, 97), (283, 98), (283, 99), (283, 100), (283, 101), (283, 102), (283, 103), (283, 104), (283, 105), (283, 107), (284, 91), (284, 93), (284, 94), (284, 95), (284, 96), (284, 97), (284, 98), (284, 99), (284, 100), (284, 101), (284, 102), (284, 103), (284, 104), (284, 105), (284, 107), (285, 91), (285, 93), (285, 94), (285, 95), (285, 96), (285, 97), (285, 98), (285, 99), (285, 100), (285, 101), (285, 102), (285, 103), (285, 104), (285, 105), (285, 107), (286, 92), (286, 94), (286, 95), (286, 96), (286, 97), (286, 98), (286, 99), (286, 100), (286, 101), (286, 102), (286, 103), (286, 104), (286, 105), (286, 107), (287, 92), (287, 94), (287, 95), (287, 96), (287, 97), (287, 98), (287, 99), (287, 100), (287, 101), (287, 102), (287, 103), (287, 104), (287, 105), (287, 106), (287, 108), (288, 93), (288, 95), (288, 96), (288, 97), (288, 98), (288, 99), (288, 100), (288, 101), (288, 102), (288, 103), (288, 104), (288, 105), (288, 106), (288, 107), (288, 109), (289, 93), (289, 95), (289, 96), (289, 97), (289, 98), (289, 99), (289, 100), (289, 101), (289, 102), (289, 103), (289, 104), (289, 105), (289, 106), (289, 107), (289, 110), (289, 111), (289, 112), (290, 94), (290, 96), (290, 97), (290, 98), (290, 99), (290, 100), (290, 101), (290, 102), (290, 103), (290, 104), (290, 105), (290, 106), (290, 107), (290, 108), (290, 109), (290, 113), (290, 114), (291, 95), (291, 97), (291, 98), (291, 99), (291, 100), (291, 101), (291, 102), (291, 103), (291, 104), (291, 105), (291, 106), (291, 107), (291, 108), (291, 109), (291, 110), (291, 111), (291, 112), (291, 114), (292, 96), (292, 98), (292, 99), (292, 100), (292, 101), (292, 102), (292, 103), (292, 104), (292, 105), (292, 106), (292, 107), (292, 108), (292, 109), (292, 110), (292, 111), (292, 112), (292, 114), (293, 96), (293, 98), (293, 99), (293, 100), (293, 101), (293, 102), (293, 103), (293, 104), (293, 105), (293, 106), (293, 107), (293, 108), (293, 109), (293, 110), (293, 111), (293, 112), (293, 114), (294, 97), (294, 99), (294, 100), (294, 101), (294, 102), (294, 103), (294, 104), (294, 105), (294, 106), (294, 107), (294, 108), (294, 109), (294, 110), (294, 111), (294, 112), (294, 114), (295, 98), (295, 100), (295, 101), (295, 102), (295, 103), (295, 104), (295, 105), (295, 106), (295, 107), (295, 108), (295, 109), (295, 110), (295, 111), (295, 112), (295, 114), (296, 99), (296, 101), (296, 102), (296, 103), (296, 104), (296, 105), (296, 106), (296, 107), (296, 108), (296, 109), (296, 110), (296, 111), (296, 112), (296, 114), (297, 100), (297, 102), (297, 103), (297, 104), (297, 105), (297, 106), (297, 107), (297, 108), (297, 109), (297, 110), (297, 111), (297, 112), (297, 114), (298, 101), (298, 103), (298, 104), (298, 105), (298, 106), (298, 107), (298, 108), (298, 109), (298, 110), (298, 111), (298, 112), (298, 114), (299, 102), (299, 105), (299, 106), (299, 107), (299, 108), (299, 109), (299, 110), (299, 111), (299, 112), (299, 114), (300, 103), (300, 106), (300, 107), (300, 108), (300, 109), (300, 110), (300, 111), (300, 112), (300, 114), (301, 104), (301, 107), (301, 108), (301, 109), (301, 110), (301, 111), (301, 112), (301, 114), (302, 106), (302, 114), (303, 107), (303, 109), (303, 110), (303, 111), (303, 112), (303, 114))
coordinates_4_e00_ff = ((132, 82), (132, 85), (133, 80), (133, 85), (134, 79), (134, 82), (134, 83), (134, 85), (135, 78), (135, 80), (135, 81), (135, 82), (135, 83), (135, 85), (136, 77), (136, 79), (136, 80), (136, 81), (136, 82), (136, 83), (136, 84), (136, 86), (137, 76), (137, 78), (137, 79), (137, 80), (137, 81), (137, 82), (137, 83), (137, 84), (137, 86), (138, 75), (138, 77), (138, 78), (138, 79), (138, 80), (138, 81), (138, 82), (138, 83), (138, 84), (138, 85), (138, 87), (139, 75), (139, 77), (139, 78), (139, 79), (139, 80), (139, 81), (139, 82), (139, 83), (139, 84), (139, 85), (139, 86), (139, 88), (140, 74), (140, 76), (140, 77), (140, 78), (140, 79), (140, 80), (140, 81), (140, 82), (140, 83), (140, 84), (140, 85), (140, 86), (140, 88), (141, 74), (141, 76), (141, 77), (141, 78), (141, 79), (141, 80), (141, 81), (141, 82), (141, 83), (141, 84), (141, 85), (141, 86), (141, 87), (141, 89), (142, 73), (142, 75), (142, 76), (142, 77), (142, 78), (142, 79), (142, 80), (142, 81), (142, 82), (142, 83), (142, 84), (142, 85), (142, 86), (142, 87), (142, 88), (142, 90), (143, 73), (143, 75), (143, 76), (143, 77), (143, 78), (143, 79), (143, 80), (143, 81), (143, 82), (143, 83), (143, 84), (143, 85), (143, 86), (143, 87), (143, 88), (143, 89), (143, 91), (144, 72), (144, 74), (144, 75), (144, 76), (144, 77), (144, 78), (144, 79), (144, 80), (144, 81), (144, 82), (144, 83), (144, 84), (144, 85), (144, 86), (144, 87), (144, 88), (144, 89), (144, 91), (145, 72), (145, 74), (145, 75), (145, 76), (145, 77), (145, 78), (145, 79), (145, 80), (145, 81), (145, 82), (145, 83), (145, 84), (145, 85), (145, 86), (145, 87), (145, 88), (145, 89), (145, 90), (145, 92), (146, 71), (146, 73), (146, 74), (146, 75), (146, 76), (146, 77), (146, 78), (146, 79), (146, 80), (146, 81), (146, 82), (146, 83), (146, 84), (146, 85), (146, 86), (146, 87), (146, 88), (146, 89), (146, 90), (146, 91), (146, 93), (147, 71), (147, 73), (147, 74), (147, 75), (147, 76), (147, 77), (147, 78), (147, 79), (147, 80), (147, 81), (147, 82), (147, 83), (147, 84), (147, 85), (147, 86), (147, 87), (147, 88), (147, 89), (147, 90), (147, 91), (147, 93), (148, 71), (148, 73), (148, 74), (148, 75), (148, 76), (148, 77), (148, 78), (148, 79), (148, 80), (148, 81), (148, 82), (148, 83), (148, 84), (148, 85), (148, 86), (148, 87), (148, 88), (148, 89), (148, 90), (148, 91), (148, 92), (148, 94), (149, 70), (149, 72), (149, 73), (149, 74), (149, 75), (149, 76), (149, 77), (149, 78), (149, 79), (149, 80), (149, 81), (149, 82), (149, 83), (149, 84), (149, 85), (149, 86), (149, 87), (149, 88), (149, 89), (149, 90), (149, 91), (149, 92), (149, 94), (150, 70), (150, 72), (150, 73), (150, 74), (150, 75), (150, 76), (150, 77), (150, 78), (150, 79), (150, 80), (150, 81), (150, 82), (150, 83), (150, 84), (150, 85), (150, 86), (150, 87), (150, 88), (150, 89), (150, 90), (150, 91), (150, 92), (150, 94), (151, 70), (151, 72), (151, 73), (151, 74), (151, 75), (151, 76), (151, 77), (151, 78), (151, 79), (151, 80), (151, 81), (151, 82), (151, 83), (151, 84), (151, 85), (151, 86), (151, 87), (151, 88), (151, 89), (151, 90), (151, 91), (151, 94), (152, 69), (152, 71), (152, 72), (152, 73), (152, 74), (152, 75), (152, 76), (152, 77), (152, 78), (152, 79), (152, 80), (152, 81), (152, 82), (152, 83), (152, 84), (152, 85), (152, 86), (152, 87), (152, 88), (152, 89), (152, 90), (152, 93), (153, 69), (153, 71), (153, 72), (153, 73), (153, 74), (153, 75), (153, 76), (153, 77), (153, 78), (153, 79), (153, 80), (153, 81), (153, 82), (153, 83), (153, 84), (153, 85), (153, 86), (153, 87), (153, 88), (153, 89), (153, 90), (153, 92), (154, 69), (154, 71), (154, 72), (154, 73), (154, 74), (154, 75), (154, 76), (154, 77), (154, 78), (154, 79), (154, 80), (154, 81), (154, 82), (154, 83), (154, 84), (154, 85), (154, 86), (154, 87), (154, 88), (154, 89), (154, 91), (155, 68), (155, 70), (155, 71), (155, 72), (155, 73), (155, 74), (155, 75), (155, 76), (155, 77), (155, 78), (155, 79), (155, 80), (155, 81), (155, 82), (155, 83), (155, 84), (155, 85), (155, 86), (155, 87), (155, 88), (155, 90), (156, 68), (156, 70), (156, 71), (156, 72), (156, 73), (156, 74), (156, 75), (156, 76), (156, 77), (156, 78), (156, 79), (156, 80), (156, 81), (156, 82), (156, 83), (156, 84), (156, 85), (156, 86), (156, 87), (156, 89), (157, 68), (157, 70), (157, 71), (157, 72), (157, 73), (157, 74), (157, 75), (157, 76), (157, 77), (157, 78), (157, 79), (157, 80), (157, 81), (157, 82), (157, 83), (157, 84), (157, 85), (157, 86), (157, 87), (157, 89), (158, 68), (158, 70), (158, 71), (158, 72), (158, 73), (158, 74), (158, 75), (158, 76), (158, 77), (158, 78), (158, 79), (158, 80), (158, 81), (158, 82), (158, 83), (158, 84), (158, 85), (158, 86), (158, 88), (159, 67), (159, 69), (159, 70), (159, 71), (159, 72), (159, 73), (159, 74), (159, 75), (159, 76), (159, 77), (159, 78), (159, 79), (159, 80), (159, 81), (159, 82), (159, 83), (159, 84), (159, 85), (159, 87), (160, 67), (160, 69), (160, 70), (160, 71), (160, 72), (160, 73), (160, 74), (160, 75), (160, 76), (160, 77), (160, 78), (160, 79), (160, 80), (160, 81), (160, 82), (160, 83), (160, 84), (160, 85), (160, 87), (161, 67), (161, 69), (161, 70), (161, 71), (161, 72), (161, 73), (161, 74), (161, 75), (161, 76), (161, 77), (161, 78), (161, 79), (161, 80), (161, 81), (161, 82), (161, 83), (161, 84), (161, 86), (162, 66), (162, 68), (162, 69), (162, 70), (162, 71), (162, 72), (162, 73), (162, 74), (162, 75), (162, 76), (162, 77), (162, 78), (162, 79), (162, 80), (162, 81), (162, 82), (162, 83), (162, 84), (162, 86), (163, 66), (163, 68), (163, 69), (163, 70), (163, 71), (163, 72), (163, 73), (163, 74), (163, 75), (163, 76), (163, 77), (163, 78), (163, 79), (163, 80), (163, 81), (163, 82), (163, 83), (163, 85), (164, 66), (164, 68), (164, 69), (164, 70), (164, 71), (164, 72), (164, 73), (164, 74), (164, 75), (164, 76), (164, 77), (164, 78), (164, 79), (164, 80), (164, 81), (164, 82), (164, 83), (164, 85), (165, 66), (165, 68), (165, 69), (165, 70), (165, 71), (165, 72), (165, 73), (165, 74), (165, 75), (165, 76), (165, 77), (165, 78), (165, 79), (165, 80), (165, 81), (165, 82), (165, 84), (166, 65), (166, 67), (166, 68), (166, 69), (166, 70), (166, 71), (166, 72), (166, 73), (166, 74), (166, 75), (166, 76), (166, 77), (166, 78), (166, 79), (166, 80), (166, 81), (166, 82), (166, 84), (167, 65), (167, 67), (167, 68), (167, 69), (167, 70), (167, 71), (167, 72), (167, 73), (167, 74), (167, 75), (167, 76), (167, 77), (167, 78), (167, 79), (167, 80), (167, 81), (167, 83), (168, 65), (168, 67), (168, 68), (168, 69), (168, 70), (168, 71), (168, 72), (168, 73), (168, 74), (168, 75), (168, 76), (168, 77), (168, 78), (168, 79), (168, 80), (168, 81), (168, 83), (169, 64), (169, 66), (169, 67), (169, 68), (169, 69), (169, 70), (169, 71), (169, 72), (169, 73), (169, 74), (169, 75), (169, 76), (169, 77), (169, 78), (169, 79), (169, 80), (169, 82), (170, 64), (170, 66), (170, 67), (170, 68), (170, 69), (170, 70), (170, 71), (170, 72), (170, 73), (170, 74), (170, 75), (170, 76), (170, 77), (170, 78), (170, 79), (170, 80), (170, 82), (171, 64), (171, 66), (171, 67), (171, 68), (171, 69), (171, 70), (171, 71), (171, 72), (171, 73), (171, 74), (171, 75), (171, 76), (171, 77), (171, 78), (171, 79), (171, 81), (172, 63), (172, 65), (172, 66), (172, 67), (172, 68), (172, 69), (172, 70), (172, 71), (172, 72), (172, 73), (172, 74), (172, 75), (172, 76), (172, 77), (172, 78), (172, 79), (172, 81), (173, 63), (173, 65), (173, 66), (173, 67), (173, 68), (173, 69), (173, 70), (173, 71), (173, 72), (173, 73), (173, 74), (173, 75), (173, 76), (173, 77), (173, 78), (173, 79), (173, 81), (174, 62), (174, 64), (174, 65), (174, 66), (174, 67), (174, 68), (174, 69), (174, 70), (174, 71), (174, 72), (174, 73), (174, 74), (174, 75), (174, 76), (174, 77), (174, 78), (174, 80), (175, 62), (175, 64), (175, 65), (175, 66), (175, 67), (175, 68), (175, 69), (175, 70), (175, 71), (175, 72), (175, 73), (175, 74), (175, 75), (175, 76), (175, 77), (175, 78), (175, 80), (176, 62), (176, 64), (176, 65), (176, 66), (176, 67), (176, 68), (176, 69), (176, 70), (176, 71), (176, 72), (176, 73), (176, 74), (176, 75), (176, 76), (176, 77), (176, 79), (177, 63), (177, 65), (177, 66), (177, 67), (177, 68), (177, 69), (177, 70), (177, 71), (177, 72), (177, 73), (177, 74), (177, 75), (177, 76), (177, 77), (177, 79), (178, 63), (178, 65), (178, 66), (178, 67), (178, 68), (178, 69), (178, 70), (178, 71), (178, 72), (178, 73), (178, 74), (178, 75), (178, 79), (179, 63), (179, 75), (179, 76), (179, 77), (179, 79), (180, 63), (180, 65), (180, 66), (180, 67), (180, 68), (180, 69), (180, 70), (180, 71), (180, 72), (180, 73), (180, 74), (180, 75), (219, 63), (219, 65), (219, 66), (219, 67), (219, 68), (219, 69), (219, 70), (219, 71), (219, 72), (219, 73), (219, 74), (219, 75), (219, 76), (220, 63), (220, 76), (220, 77), (220, 79), (221, 63), (221, 65), (221, 66), (221, 67), (221, 68), (221, 69), (221, 70), (221, 71), (221, 72), (221, 73), (221, 74), (221, 75), (221, 76), (221, 79), (222, 63), (222, 65), (222, 66), (222, 67), (222, 68), (222, 69), (222, 70), (222, 71), (222, 72), (222, 73), (222, 74), (222, 75), (222, 76), (222, 77), (222, 79), (223, 62), (223, 64), (223, 65), (223, 66), (223, 67), (223, 68), (223, 69), (223, 70), (223, 71), (223, 72), (223, 73), (223, 74), (223, 75), (223, 76), (223, 77), (223, 78), (223, 79), (223, 80), (224, 62), (224, 64), (224, 65), (224, 66), (224, 67), (224, 68), (224, 69), (224, 70), (224, 71), (224, 72), (224, 73), (224, 74), (224, 75), (224, 76), (224, 77), (224, 78), (224, 80), (225, 62), (225, 64), (225, 65), (225, 66), (225, 67), (225, 68), (225, 69), (225, 70), (225, 71), (225, 72), (225, 73), (225, 74), (225, 75), (225, 76), (225, 77), (225, 78), (225, 80), (226, 63), (226, 65), (226, 66), (226, 67), (226, 68), (226, 69), (226, 70), (226, 71), (226, 72), (226, 73), (226, 74), (226, 75), (226, 76), (226, 77), (226, 78), (226, 79), (226, 81), (227, 63), (227, 65), (227, 66), (227, 67), (227, 68), (227, 69), (227, 70), (227, 71), (227, 72), (227, 73), (227, 74), (227, 75), (227, 76), (227, 77), (227, 78), (227, 79), (227, 81), (228, 64), (228, 66), (228, 67), (228, 68), (228, 69), (228, 70), (228, 71), (228, 72), (228, 73), (228, 74), (228, 75), (228, 76), (228, 77), (228, 78), (228, 79), (228, 81), (229, 64), (229, 66), (229, 67), (229, 68), (229, 69), (229, 70), (229, 71), (229, 72), (229, 73), (229, 74), (229, 75), (229, 76), (229, 77), (229, 78), (229, 79), (229, 80), (229, 82), (230, 64), (230, 66), (230, 67), (230, 68), (230, 69), (230, 70), (230, 71), (230, 72), (230, 73), (230, 74), (230, 75), (230, 76), (230, 77), (230, 78), (230, 79), (230, 80), (230, 82), (231, 65), (231, 67), (231, 68), (231, 69), (231, 70), (231, 71), (231, 72), (231, 73), (231, 74), (231, 75), (231, 76), (231, 77), (231, 78), (231, 79), (231, 80), (231, 81), (231, 83), (232, 65), (232, 67), (232, 68), (232, 69), (232, 70), (232, 71), (232, 72), (232, 73), (232, 74), (232, 75), (232, 76), (232, 77), (232, 78), (232, 79), (232, 80), (232, 81), (232, 83), (233, 65), (233, 67), (233, 68), (233, 69), (233, 70), (233, 71), (233, 72), (233, 73), (233, 74), (233, 75), (233, 76), (233, 77), (233, 78), (233, 79), (233, 80), (233, 81), (233, 82), (233, 84), (234, 66), (234, 68), (234, 69), (234, 70), (234, 71), (234, 72), (234, 73), (234, 74), (234, 75), (234, 76), (234, 77), (234, 78), (234, 79), (234, 80), (234, 81), (234, 82), (234, 84), (235, 66), (235, 68), (235, 69), (235, 70), (235, 71), (235, 72), (235, 73), (235, 74), (235, 75), (235, 76), (235, 77), (235, 78), (235, 79), (235, 80), (235, 81), (235, 82), (235, 83), (235, 85), (236, 66), (236, 68), (236, 69), (236, 70), (236, 71), (236, 72), (236, 73), (236, 74), (236, 75), (236, 76), (236, 77), (236, 78), (236, 79), (236, 80), (236, 81), (236, 82), (236, 83), (236, 85), (237, 66), (237, 68), (237, 69), (237, 70), (237, 71), (237, 72), (237, 73), (237, 74), (237, 75), (237, 76), (237, 77), (237, 78), (237, 79), (237, 80), (237, 81), (237, 82), (237, 83), (237, 84), (237, 86), (238, 67), (238, 69), (238, 70), (238, 71), (238, 72), (238, 73), (238, 74), (238, 75), (238, 76), (238, 77), (238, 78), (238, 79), (238, 80), (238, 81), (238, 82), (238, 83), (238, 84), (238, 86), (239, 67), (239, 69), (239, 70), (239, 71), (239, 72), (239, 73), (239, 74), (239, 75), (239, 76), (239, 77), (239, 78), (239, 79), (239, 80), (239, 81), (239, 82), (239, 83), (239, 84), (239, 85), (239, 87), (240, 67), (240, 69), (240, 70), (240, 71), (240, 72), (240, 73), (240, 74), (240, 75), (240, 76), (240, 77), (240, 78), (240, 79), (240, 80), (240, 81), (240, 82), (240, 83), (240, 84), (240, 85), (240, 87), (241, 68), (241, 70), (241, 71), (241, 72), (241, 73), (241, 74), (241, 75), (241, 76), (241, 77), (241, 78), (241, 79), (241, 80), (241, 81), (241, 82), (241, 83), (241, 84), (241, 85), (241, 86), (241, 88), (242, 68), (242, 70), (242, 71), (242, 72), (242, 73), (242, 74), (242, 75), (242, 76), (242, 77), (242, 78), (242, 79), (242, 80), (242, 81), (242, 82), (242, 83), (242, 84), (242, 85), (242, 86), (242, 87), (242, 89), (243, 68), (243, 70), (243, 71), (243, 72), (243, 73), (243, 74), (243, 75), (243, 76), (243, 77), (243, 78), (243, 79), (243, 80), (243, 81), (243, 82), (243, 83), (243, 84), (243, 85), (243, 86), (243, 87), (243, 89), (244, 68), (244, 70), (244, 71), (244, 72), (244, 73), (244, 74), (244, 75), (244, 76), (244, 77), (244, 78), (244, 79), (244, 80), (244, 81), (244, 82), (244, 83), (244, 84), (244, 85), (244, 86), (244, 87), (244, 88), (244, 90), (245, 69), (245, 71), (245, 72), (245, 73), (245, 74), (245, 75), (245, 76), (245, 77), (245, 78), (245, 79), (245, 80), (245, 81), (245, 82), (245, 83), (245, 84), (245, 85), (245, 86), (245, 87), (245, 88), (245, 89), (245, 91), (246, 69), (246, 71), (246, 72), (246, 73), (246, 74), (246, 75), (246, 76), (246, 77), (246, 78), (246, 79), (246, 80), (246, 81), (246, 82), (246, 83), (246, 84), (246, 85), (246, 86), (246, 87), (246, 88), (246, 89), (246, 90), (246, 92), (247, 69), (247, 71), (247, 72), (247, 73), (247, 74), (247, 75), (247, 76), (247, 77), (247, 78), (247, 79), (247, 80), (247, 81), (247, 82), (247, 83), (247, 84), (247, 85), (247, 86), (247, 87), (247, 88), (247, 89), (247, 90), (247, 91), (247, 93), (248, 70), (248, 72), (248, 73), (248, 74), (248, 75), (248, 76), (248, 77), (248, 78), (248, 79), (248, 80), (248, 81), (248, 82), (248, 83), (248, 84), (248, 85), (248, 86), (248, 87), (248, 88), (248, 89), (248, 90), (248, 91), (248, 92), (248, 94), (249, 70), (249, 72), (249, 73), (249, 74), (249, 75), (249, 76), (249, 77), (249, 78), (249, 79), (249, 80), (249, 81), (249, 82), (249, 83), (249, 84), (249, 85), (249, 86), (249, 87), (249, 88), (249, 89), (249, 90), (249, 91), (249, 92), (249, 94), (250, 70), (250, 72), (250, 73), (250, 74), (250, 75), (250, 76), (250, 77), (250, 78), (250, 79), (250, 80), (250, 81), (250, 82), (250, 83), (250, 84), (250, 85), (250, 86), (250, 87), (250, 88), (250, 89), (250, 90), (250, 91), (250, 92), (250, 94), (251, 71), (251, 73), (251, 74), (251, 75), (251, 76), (251, 77), (251, 78), (251, 79), (251, 80), (251, 81), (251, 82), (251, 83), (251, 84), (251, 85), (251, 86), (251, 87), (251, 88), (251, 89), (251, 90), (251, 91), (251, 92), (251, 94), (252, 71), (252, 73), (252, 74), (252, 75), (252, 76), (252, 77), (252, 78), (252, 79), (252, 80), (252, 81), (252, 82), (252, 83), (252, 84), (252, 85), (252, 86), (252, 87), (252, 88), (252, 89), (252, 90), (252, 91), (252, 93), (253, 71), (253, 73), (253, 74), (253, 75), (253, 76), (253, 77), (253, 78), (253, 79), (253, 80), (253, 81), (253, 82), (253, 83), (253, 84), (253, 85), (253, 86), (253, 87), (253, 88), (253, 89), (253, 90), (253, 91), (253, 93), (254, 72), (254, 74), (254, 75), (254, 76), (254, 77), (254, 78), (254, 79), (254, 80), (254, 81), (254, 82), (254, 83), (254, 84), (254, 85), (254, 86), (254, 87), (254, 88), (254, 89), (254, 90), (254, 92), (255, 72), (255, 74), (255, 75), (255, 76), (255, 77), (255, 78), (255, 79), (255, 80), (255, 81), (255, 82), (255, 83), (255, 84), (255, 85), (255, 86), (255, 87), (255, 88), (255, 89), (255, 91), (256, 73), (256, 75), (256, 76), (256, 77), (256, 78), (256, 79), (256, 80), (256, 81), (256, 82), (256, 83), (256, 84), (256, 85), (256, 86), (256, 87), (256, 88), (256, 89), (256, 91), (257, 73), (257, 75), (257, 76), (257, 77), (257, 78), (257, 79), (257, 80), (257, 81), (257, 82), (257, 83), (257, 84), (257, 85), (257, 86), (257, 87), (257, 88), (257, 90), (258, 74), (258, 76), (258, 77), (258, 78), (258, 79), (258, 80), (258, 81), (258, 82), (258, 83), (258, 84), (258, 85), (258, 86), (258, 87), (258, 89), (259, 74), (259, 76), (259, 77), (259, 78), (259, 79), (259, 80), (259, 81), (259, 82), (259, 83), (259, 84), (259, 85), (259, 86), (259, 88), (260, 75), (260, 77), (260, 78), (260, 79), (260, 80), (260, 81), (260, 82), (260, 83), (260, 84), (260, 85), (260, 86), (260, 88), (261, 75), (261, 77), (261, 78), (261, 79), (261, 80), (261, 81), (261, 82), (261, 83), (261, 84), (261, 85), (261, 87), (262, 76), (262, 78), (262, 79), (262, 80), (262, 81), (262, 82), (262, 83), (262, 84), (262, 86), (263, 77), (263, 79), (263, 80), (263, 81), (263, 82), (263, 83), (263, 84), (263, 86), (264, 78), (264, 80), (264, 81), (264, 82), (264, 83), (264, 85), (265, 79), (265, 82), (265, 83), (265, 85), (266, 80), (266, 85), (267, 82), (267, 85))
coordinates_00007_f = ((168, 155), (169, 155), (169, 158), (170, 156), (170, 159), (171, 156), (171, 158), (171, 160), (172, 157), (172, 159), (172, 161), (173, 158), (173, 160), (173, 162), (174, 158), (174, 161), (175, 159), (175, 161), (175, 162), (175, 165), (176, 160), (176, 162), (176, 163), (176, 166), (177, 161), (177, 164), (177, 165), (177, 167), (178, 162), (178, 169), (179, 164), (179, 166), (179, 167), (179, 168), (179, 169), (179, 171), (220, 164), (220, 166), (220, 167), (220, 168), (220, 169), (220, 171), (221, 162), (221, 169), (222, 161), (222, 164), (222, 167), (223, 160), (223, 162), (223, 163), (223, 166), (224, 159), (224, 161), (224, 162), (224, 165), (225, 158), (225, 160), (225, 161), (225, 163), (226, 158), (226, 160), (226, 162), (227, 157), (227, 159), (227, 161), (228, 156), (228, 158), (228, 160), (229, 156), (229, 159), (230, 155), (230, 158), (231, 155))
coordinates_27007_f = ((182, 64), (182, 66), (182, 67), (182, 68), (182, 69), (182, 70), (182, 71), (182, 72), (182, 73), (182, 74), (182, 75), (182, 76), (182, 77), (182, 78), (182, 80), (182, 98), (182, 100), (183, 64), (183, 82), (183, 95), (183, 96), (183, 97), (183, 102), (184, 64), (184, 66), (184, 67), (184, 68), (184, 69), (184, 70), (184, 71), (184, 72), (184, 73), (184, 74), (184, 75), (184, 76), (184, 77), (184, 78), (184, 79), (184, 80), (184, 83), (184, 93), (184, 94), (184, 98), (184, 99), (184, 100), (184, 103), (185, 64), (185, 66), (185, 67), (185, 68), (185, 69), (185, 70), (185, 71), (185, 72), (185, 73), (185, 74), (185, 75), (185, 76), (185, 77), (185, 78), (185, 79), (185, 80), (185, 81), (185, 82), (185, 85), (185, 86), (185, 87), (185, 88), (185, 89), (185, 90), (185, 91), (185, 95), (185, 96), (185, 97), (185, 98), (185, 99), (185, 100), (185, 101), (185, 102), (185, 105), (186, 64), (186, 66), (186, 67), (186, 68), (186, 69), (186, 70), (186, 71), (186, 72), (186, 73), (186, 74), (186, 75), (186, 76), (186, 77), (186, 78), (186, 79), (186, 80), (186, 81), (186, 82), (186, 83), (186, 92), (186, 93), (186, 94), (186, 95), (186, 96), (186, 97), (186, 98), (186, 99), (186, 100), (186, 101), (186, 102), (186, 103), (186, 107), (187, 64), (187, 66), (187, 67), (187, 68), (187, 69), (187, 70), (187, 71), (187, 72), (187, 73), (187, 74), (187, 75), (187, 76), (187, 77), (187, 78), (187, 79), (187, 80), (187, 81), (187, 82), (187, 83), (187, 84), (187, 85), (187, 86), (187, 87), (187, 88), (187, 89), (187, 90), (187, 91), (187, 92), (187, 93), (187, 94), (187, 95), (187, 96), (187, 97), (187, 98), (187, 99), (187, 100), (187, 101), (187, 102), (187, 103), (187, 104), (187, 105), (187, 109), (188, 65), (188, 67), (188, 68), (188, 69), (188, 70), (188, 71), (188, 72), (188, 73), (188, 74), (188, 75), (188, 76), (188, 77), (188, 78), (188, 79), (188, 80), (188, 81), (188, 82), (188, 83), (188, 84), (188, 85), (188, 86), (188, 87), (188, 88), (188, 89), (188, 90), (188, 91), (188, 92), (188, 93), (188, 94), (188, 95), (188, 96), (188, 97), (188, 98), (188, 99), (188, 100), (188, 101), (188, 102), (188, 103), (188, 104), (188, 105), (188, 106), (188, 107), (188, 110), (188, 111), (189, 65), (189, 67), (189, 68), (189, 69), (189, 70), (189, 71), (189, 72), (189, 73), (189, 74), (189, 75), (189, 76), (189, 77), (189, 78), (189, 79), (189, 80), (189, 81), (189, 82), (189, 83), (189, 84), (189, 85), (189, 86), (189, 87), (189, 88), (189, 89), (189, 90), (189, 91), (189, 92), (189, 93), (189, 94), (189, 95), (189, 96), (189, 97), (189, 98), (189, 99), (189, 100), (189, 101), (189, 102), (189, 103), (189, 104), (189, 105), (189, 106), (189, 107), (189, 108), (189, 109), (190, 65), (190, 67), (190, 68), (190, 69), (190, 70), (190, 71), (190, 72), (190, 73), (190, 74), (190, 75), (190, 76), (190, 77), (190, 78), (190, 79), (190, 80), (190, 81), (190, 82), (190, 83), (190, 84), (190, 85), (190, 86), (190, 87), (190, 88), (190, 89), (190, 90), (190, 91), (190, 92), (190, 93), (190, 94), (190, 95), (190, 96), (190, 97), (190, 98), (190, 99), (190, 100), (190, 101), (190, 102), (190, 103), (190, 104), (190, 105), (190, 106), (190, 107), (190, 108), (190, 109), (190, 111), (191, 66), (191, 68), (191, 69), (191, 70), (191, 71), (191, 72), (191, 73), (191, 74), (191, 75), (191, 76), (191, 77), (191, 78), (191, 79), (191, 80), (191, 81), (191, 82), (191, 83), (191, 84), (191, 85), (191, 86), (191, 87), (191, 88), (191, 89), (191, 90), (191, 91), (191, 92), (191, 93), (191, 94), (191, 95), (191, 96), (191, 97), (191, 98), (191, 99), (191, 100), (191, 101), (191, 102), (191, 103), (191, 104), (191, 105), (191, 106), (191, 107), (191, 108), (191, 109), (191, 111), (192, 69), (192, 70), (192, 71), (192, 72), (192, 73), (192, 74), (192, 75), (192, 76), (192, 77), (192, 78), (192, 79), (192, 80), (192, 81), (192, 82), (192, 83), (192, 84), (192, 85), (192, 86), (192, 87), (192, 88), (192, 89), (192, 90), (192, 91), (192, 92), (192, 93), (192, 94), (192, 95), (192, 96), (192, 97), (192, 98), (192, 99), (192, 100), (192, 101), (192, 102), (192, 103), (192, 104), (192, 105), (192, 106), (192, 107), (192, 108), (192, 109), (192, 111), (193, 67), (193, 70), (193, 71), (193, 72), (193, 73), (193, 74), (193, 75), (193, 76), (193, 77), (193, 78), (193, 79), (193, 80), (193, 81), (193, 82), (193, 83), (193, 84), (193, 85), (193, 86), (193, 87), (193, 88), (193, 89), (193, 90), (193, 91), (193, 92), (193, 93), (193, 94), (193, 95), (193, 96), (193, 97), (193, 98), (193, 99), (193, 100), (193, 101), (193, 102), (193, 103), (193, 104), (193, 105), (193, 106), (193, 107), (193, 108), (193, 110), (194, 68), (194, 69), (194, 72), (194, 73), (194, 74), (194, 75), (194, 76), (194, 77), (194, 78), (194, 79), (194, 80), (194, 81), (194, 82), (194, 83), (194, 84), (194, 85), (194, 86), (194, 87), (194, 88), (194, 89), (194, 90), (194, 91), (194, 92), (194, 93), (194, 94), (194, 95), (194, 96), (194, 97), (194, 98), (194, 99), (194, 100), (194, 101), (194, 102), (194, 103), (194, 104), (194, 105), (194, 106), (194, 107), (194, 110), (195, 70), (195, 76), (195, 77), (195, 78), (195, 79), (195, 80), (195, 81), (195, 82), (195, 83), (195, 84), (195, 85), (195, 86), (195, 87), (195, 88), (195, 89), (195, 90), (195, 91), (195, 92), (195, 93), (195, 94), (195, 95), (195, 96), (195, 97), (195, 98), (195, 99), (195, 100), (195, 101), (195, 102), (195, 103), (195, 104), (195, 105), (195, 109), (196, 72), (196, 74), (196, 75), (196, 106), (196, 107), (197, 76), (197, 77), (197, 78), (197, 79), (197, 80), (197, 81), (197, 82), (197, 83), (197, 84), (197, 85), (197, 86), (197, 87), (197, 88), (197, 89), (197, 90), (197, 91), (197, 92), (197, 93), (197, 94), (197, 95), (197, 96), (197, 97), (197, 98), (197, 99), (197, 100), (197, 101), (197, 102), (197, 103), (197, 104), (197, 105), (202, 75), (202, 76), (202, 77), (202, 78), (202, 79), (202, 80), (202, 81), (202, 82), (202, 83), (202, 84), (202, 85), (202, 86), (202, 87), (202, 88), (202, 89), (202, 90), (202, 91), (202, 92), (202, 93), (202, 94), (202, 95), (202, 96), (202, 97), (202, 98), (202, 99), (202, 100), (202, 101), (202, 102), (202, 103), (202, 105), (203, 72), (203, 74), (203, 106), (203, 107), (204, 70), (204, 75), (204, 76), (204, 77), (204, 78), (204, 79), (204, 80), (204, 81), (204, 82), (204, 83), (204, 84), (204, 85), (204, 86), (204, 87), (204, 88), (204, 89), (204, 90), (204, 91), (204, 92), (204, 93), (204, 94), (204, 95), (204, 96), (204, 97), (204, 98), (204, 99), (204, 100), (204, 101), (204, 102), (204, 103), (204, 104), (204, 105), (204, 109), (205, 68), (205, 72), (205, 73), (205, 74), (205, 75), (205, 76), (205, 77), (205, 78), (205, 79), (205, 80), (205, 81), (205, 82), (205, 83), (205, 84), (205, 85), (205, 86), (205, 87), (205, 88), (205, 89), (205, 90), (205, 91), (205, 92), (205, 93), (205, 94), (205, 95), (205, 96), (205, 97), (205, 98), (205, 99), (205, 100), (205, 101), (205, 102), (205, 103), (205, 104), (205, 105), (205, 106), (205, 107), (205, 110), (206, 67), (206, 70), (206, 71), (206, 72), (206, 73), (206, 74), (206, 75), (206, 76), (206, 77), (206, 78), (206, 79), (206, 80), (206, 81), (206, 82), (206, 83), (206, 84), (206, 85), (206, 86), (206, 87), (206, 88), (206, 89), (206, 90), (206, 91), (206, 92), (206, 93), (206, 94), (206, 95), (206, 96), (206, 97), (206, 98), (206, 99), (206, 100), (206, 101), (206, 102), (206, 103), (206, 104), (206, 105), (206, 106), (206, 107), (206, 108), (206, 110), (207, 66), (207, 69), (207, 70), (207, 71), (207, 72), (207, 73), (207, 74), (207, 75), (207, 76), (207, 77), (207, 78), (207, 79), (207, 80), (207, 81), (207, 82), (207, 83), (207, 84), (207, 85), (207, 86), (207, 87), (207, 88), (207, 89), (207, 90), (207, 91), (207, 92), (207, 93), (207, 94), (207, 95), (207, 96), (207, 97), (207, 98), (207, 99), (207, 100), (207, 101), (207, 102), (207, 103), (207, 104), (207, 105), (207, 106), (207, 107), (207, 108), (207, 109), (207, 111), (208, 66), (208, 68), (208, 69), (208, 70), (208, 71), (208, 72), (208, 73), (208, 74), (208, 75), (208, 76), (208, 77), (208, 78), (208, 79), (208, 80), (208, 81), (208, 82), (208, 83), (208, 84), (208, 85), (208, 86), (208, 87), (208, 88), (208, 89), (208, 90), (208, 91), (208, 92), (208, 93), (208, 94), (208, 95), (208, 96), (208, 97), (208, 98), (208, 99), (208, 100), (208, 101), (208, 102), (208, 103), (208, 104), (208, 105), (208, 106), (208, 107), (208, 108), (208, 109), (208, 111), (209, 65), (209, 67), (209, 68), (209, 69), (209, 70), (209, 71), (209, 72), (209, 73), (209, 74), (209, 75), (209, 76), (209, 77), (209, 78), (209, 79), (209, 80), (209, 81), (209, 82), (209, 83), (209, 84), (209, 85), (209, 86), (209, 87), (209, 88), (209, 89), (209, 90), (209, 91), (209, 92), (209, 93), (209, 94), (209, 95), (209, 96), (209, 97), (209, 98), (209, 99), (209, 100), (209, 101), (209, 102), (209, 103), (209, 104), (209, 105), (209, 106), (209, 107), (209, 108), (209, 109), (209, 111), (210, 65), (210, 67), (210, 68), (210, 69), (210, 70), (210, 71), (210, 72), (210, 73), (210, 74), (210, 75), (210, 76), (210, 77), (210, 78), (210, 79), (210, 80), (210, 81), (210, 82), (210, 83), (210, 84), (210, 85), (210, 86), (210, 87), (210, 88), (210, 89), (210, 90), (210, 91), (210, 92), (210, 93), (210, 94), (210, 95), (210, 96), (210, 97), (210, 98), (210, 99), (210, 100), (210, 101), (210, 102), (210, 103), (210, 104), (210, 105), (210, 106), (210, 107), (210, 108), (210, 109), (211, 65), (211, 67), (211, 68), (211, 69), (211, 70), (211, 71), (211, 72), (211, 73), (211, 74), (211, 75), (211, 76), (211, 77), (211, 78), (211, 79), (211, 80), (211, 81), (211, 82), (211, 83), (211, 84), (211, 85), (211, 86), (211, 87), (211, 88), (211, 89), (211, 90), (211, 91), (211, 92), (211, 93), (211, 94), (211, 95), (211, 96), (211, 97), (211, 98), (211, 99), (211, 100), (211, 101), (211, 102), (211, 103), (211, 104), (211, 105), (211, 106), (211, 107), (211, 110), (211, 111), (212, 64), (212, 66), (212, 67), (212, 68), (212, 69), (212, 70), (212, 71), (212, 72), (212, 73), (212, 74), (212, 75), (212, 76), (212, 77), (212, 78), (212, 79), (212, 80), (212, 81), (212, 82), (212, 83), (212, 84), (212, 85), (212, 86), (212, 87), (212, 88), (212, 89), (212, 90), (212, 91), (212, 92), (212, 93), (212, 94), (212, 95), (212, 96), (212, 97), (212, 98), (212, 99), (212, 100), (212, 101), (212, 102), (212, 103), (212, 104), (212, 105), (212, 108), (212, 109), (213, 64), (213, 66), (213, 67), (213, 68), (213, 69), (213, 70), (213, 71), (213, 72), (213, 73), (213, 74), (213, 75), (213, 76), (213, 77), (213, 78), (213, 79), (213, 80), (213, 81), (213, 82), (213, 83), (213, 93), (213, 94), (213, 95), (213, 96), (213, 97), (213, 98), (213, 99), (213, 100), (213, 101), (213, 102), (213, 103), (213, 106), (213, 107), (214, 64), (214, 66), (214, 67), (214, 68), (214, 69), (214, 70), (214, 71), (214, 72), (214, 73), (214, 74), (214, 75), (214, 76), (214, 77), (214, 78), (214, 79), (214, 80), (214, 81), (214, 82), (214, 85), (214, 86), (214, 87), (214, 88), (214, 89), (214, 90), (214, 91), (214, 92), (214, 95), (214, 96), (214, 97), (214, 98), (214, 99), (214, 100), (214, 101), (214, 102), (214, 105), (215, 64), (215, 67), (215, 68), (215, 69), (215, 70), (215, 71), (215, 72), (215, 73), (215, 74), (215, 75), (215, 76), (215, 77), (215, 78), (215, 79), (215, 80), (215, 83), (215, 93), (215, 94), (215, 98), (215, 99), (215, 100), (215, 103), (216, 64), (216, 66), (216, 82), (216, 96), (216, 97), (216, 102), (217, 67), (217, 68), (217, 69), (217, 70), (217, 71), (217, 72), (217, 73), (217, 74), (217, 75), (217, 76), (217, 77), (217, 78), (217, 80), (217, 98), (217, 100))
coordinates_7_f3500 = ((146, 163), (147, 160), (147, 162), (147, 163), (147, 164), (147, 165), (147, 167), (148, 158), (148, 163), (148, 168), (149, 157), (149, 160), (149, 161), (149, 162), (149, 163), (149, 164), (149, 165), (149, 166), (149, 167), (149, 170), (150, 156), (150, 158), (150, 159), (150, 160), (150, 161), (150, 162), (150, 163), (150, 164), (150, 165), (150, 166), (150, 167), (150, 168), (150, 171), (151, 156), (151, 158), (151, 159), (151, 160), (151, 161), (151, 162), (151, 163), (151, 164), (151, 165), (151, 166), (151, 167), (151, 168), (151, 169), (151, 172), (152, 155), (152, 157), (152, 158), (152, 159), (152, 160), (152, 161), (152, 162), (152, 163), (152, 164), (152, 165), (152, 166), (152, 167), (152, 168), (152, 169), (152, 170), (153, 154), (153, 156), (153, 157), (153, 158), (153, 159), (153, 160), (153, 161), (153, 162), (153, 163), (153, 164), (153, 165), (153, 166), (153, 167), (153, 168), (153, 169), (153, 170), (153, 171), (153, 173), (154, 154), (154, 156), (154, 157), (154, 158), (154, 159), (154, 160), (154, 161), (154, 162), (154, 163), (154, 164), (154, 165), (154, 166), (154, 167), (154, 168), (154, 169), (154, 170), (154, 171), (154, 172), (154, 174), (155, 153), (155, 155), (155, 156), (155, 157), (155, 158), (155, 159), (155, 160), (155, 161), (155, 162), (155, 163), (155, 164), (155, 165), (155, 166), (155, 167), (155, 168), (155, 169), (155, 170), (155, 171), (155, 172), (155, 173), (155, 175), (156, 153), (156, 155), (156, 156), (156, 157), (156, 158), (156, 159), (156, 160), (156, 161), (156, 162), (156, 163), (156, 164), (156, 165), (156, 166), (156, 167), (156, 168), (156, 169), (156, 170), (156, 171), (156, 172), (156, 173), (156, 175), (157, 153), (157, 155), (157, 156), (157, 157), (157, 158), (157, 159), (157, 160), (157, 161), (157, 162), (157, 163), (157, 164), (157, 165), (157, 166), (157, 167), (157, 168), (157, 169), (157, 170), (157, 171), (157, 172), (157, 173), (157, 174), (157, 176), (158, 153), (158, 155), (158, 156), (158, 157), (158, 158), (158, 159), (158, 160), (158, 161), (158, 162), (158, 163), (158, 164), (158, 165), (158, 166), (158, 167), (158, 168), (158, 169), (158, 170), (158, 171), (158, 172), (158, 173), (158, 174), (158, 176), (159, 154), (159, 156), (159, 157), (159, 158), (159, 159), (159, 160), (159, 161), (159, 162), (159, 163), (159, 164), (159, 165), (159, 166), (159, 167), (159, 168), (159, 169), (159, 170), (159, 171), (159, 172), (159, 173), (159, 174), (159, 175), (159, 177), (160, 154), (160, 156), (160, 157), (160, 158), (160, 159), (160, 160), (160, 161), (160, 162), (160, 163), (160, 164), (160, 165), (160, 166), (160, 167), (160, 168), (160, 169), (160, 170), (160, 171), (160, 172), (160, 173), (160, 174), (160, 175), (160, 177), (161, 154), (161, 156), (161, 157), (161, 158), (161, 159), (161, 160), (161, 161), (161, 162), (161, 163), (161, 164), (161, 165), (161, 166), (161, 167), (161, 168), (161, 169), (161, 170), (161, 171), (161, 172), (161, 173), (161, 174), (161, 175), (161, 176), (161, 178), (162, 155), (162, 157), (162, 158), (162, 159), (162, 160), (162, 161), (162, 162), (162, 163), (162, 164), (162, 165), (162, 166), (162, 167), (162, 168), (162, 169), (162, 170), (162, 171), (162, 172), (162, 173), (162, 174), (162, 175), (162, 176), (162, 178), (163, 155), (163, 157), (163, 158), (163, 159), (163, 160), (163, 161), (163, 162), (163, 163), (163, 164), (163, 165), (163, 166), (163, 167), (163, 168), (163, 169), (163, 170), (163, 171), (163, 172), (163, 173), (163, 174), (163, 175), (163, 176), (163, 178), (164, 155), (164, 157), (164, 158), (164, 159), (164, 160), (164, 161), (164, 162), (164, 163), (164, 164), (164, 165), (164, 166), (164, 167), (164, 168), (164, 169), (164, 170), (164, 171), (164, 172), (164, 173), (164, 174), (164, 175), (164, 176), (164, 177), (164, 178), (164, 179), (165, 156), (165, 158), (165, 159), (165, 160), (165, 161), (165, 162), (165, 163), (165, 164), (165, 165), (165, 166), (165, 167), (165, 168), (165, 169), (165, 170), (165, 171), (165, 172), (165, 173), (165, 174), (165, 175), (165, 176), (165, 177), (165, 179), (166, 156), (166, 159), (166, 160), (166, 161), (166, 162), (166, 163), (166, 164), (166, 165), (166, 166), (166, 167), (166, 168), (166, 169), (166, 170), (166, 171), (166, 172), (166, 173), (166, 174), (166, 175), (166, 176), (166, 177), (166, 179), (167, 158), (167, 161), (167, 162), (167, 163), (167, 164), (167, 165), (167, 166), (167, 167), (167, 168), (167, 169), (167, 170), (167, 171), (167, 172), (167, 173), (167, 174), (167, 175), (167, 176), (167, 177), (167, 179), (168, 159), (168, 162), (168, 163), (168, 164), (168, 165), (168, 166), (168, 167), (168, 168), (168, 169), (168, 170), (168, 171), (168, 172), (168, 173), (168, 174), (168, 175), (168, 176), (168, 177), (168, 179), (169, 163), (169, 164), (169, 165), (169, 166), (169, 167), (169, 168), (169, 169), (169, 170), (169, 171), (169, 172), (169, 173), (169, 174), (169, 175), (169, 176), (169, 177), (169, 179), (170, 162), (170, 164), (170, 165), (170, 166), (170, 167), (170, 168), (170, 169), (170, 170), (170, 171), (170, 172), (170, 173), (170, 174), (170, 175), (170, 176), (170, 177), (170, 179), (171, 163), (171, 165), (171, 166), (171, 167), (171, 168), (171, 169), (171, 170), (171, 171), (171, 172), (171, 173), (171, 174), (171, 175), (171, 176), (171, 177), (171, 179), (172, 164), (172, 166), (172, 167), (172, 168), (172, 169), (172, 170), (172, 171), (172, 172), (172, 173), (172, 174), (172, 175), (172, 176), (172, 177), (172, 179), (173, 165), (173, 167), (173, 168), (173, 169), (173, 170), (173, 171), (173, 172), (173, 173), (173, 174), (173, 175), (173, 176), (173, 177), (173, 179), (174, 166), (174, 169), (174, 170), (174, 171), (174, 172), (174, 173), (174, 174), (174, 175), (174, 176), (174, 177), (174, 179), (175, 167), (175, 170), (175, 171), (175, 172), (175, 173), (175, 174), (175, 175), (175, 176), (175, 178), (176, 169), (176, 177), (177, 170), (177, 172), (177, 173), (177, 174), (177, 176), (222, 170), (222, 172), (222, 173), (222, 174), (222, 176), (223, 169), (223, 177), (224, 167), (224, 170), (224, 171), (224, 172), (224, 173), (224, 174), (224, 175), (224, 176), (224, 178), (225, 166), (225, 169), (225, 170), (225, 171), (225, 172), (225, 173), (225, 174), (225, 175), (225, 176), (225, 177), (225, 179), (226, 165), (226, 167), (226, 168), (226, 169), (226, 170), (226, 171), (226, 172), (226, 173), (226, 174), (226, 175), (226, 176), (226, 177), (226, 179), (227, 164), (227, 166), (227, 167), (227, 168), (227, 169), (227, 170), (227, 171), (227, 172), (227, 173), (227, 174), (227, 175), (227, 176), (227, 177), (227, 179), (228, 163), (228, 165), (228, 166), (228, 167), (228, 168), (228, 169), (228, 170), (228, 171), (228, 172), (228, 173), (228, 174), (228, 175), (228, 176), (228, 177), (228, 179), (229, 162), (229, 164), (229, 165), (229, 166), (229, 167), (229, 168), (229, 169), (229, 170), (229, 171), (229, 172), (229, 173), (229, 174), (229, 175), (229, 176), (229, 177), (229, 179), (230, 160), (230, 163), (230, 164), (230, 165), (230, 166), (230, 167), (230, 168), (230, 169), (230, 170), (230, 171), (230, 172), (230, 173), (230, 174), (230, 175), (230, 176), (230, 177), (230, 179), (231, 159), (231, 162), (231, 163), (231, 164), (231, 165), (231, 166), (231, 167), (231, 168), (231, 169), (231, 170), (231, 171), (231, 172), (231, 173), (231, 174), (231, 175), (231, 176), (231, 177), (231, 179), (232, 158), (232, 161), (232, 162), (232, 163), (232, 164), (232, 165), (232, 166), (232, 167), (232, 168), (232, 169), (232, 170), (232, 171), (232, 172), (232, 173), (232, 174), (232, 175), (232, 176), (232, 177), (232, 179), (233, 156), (233, 159), (233, 160), (233, 161), (233, 162), (233, 163), (233, 164), (233, 165), (233, 166), (233, 167), (233, 168), (233, 169), (233, 170), (233, 171), (233, 172), (233, 173), (233, 174), (233, 175), (233, 176), (233, 177), (233, 179), (234, 158), (234, 159), (234, 160), (234, 161), (234, 162), (234, 163), (234, 164), (234, 165), (234, 166), (234, 167), (234, 168), (234, 169), (234, 170), (234, 171), (234, 172), (234, 173), (234, 174), (234, 175), (234, 176), (234, 177), (234, 179), (235, 155), (235, 157), (235, 158), (235, 159), (235, 160), (235, 161), (235, 162), (235, 163), (235, 164), (235, 165), (235, 166), (235, 167), (235, 168), (235, 169), (235, 170), (235, 171), (235, 172), (235, 173), (235, 174), (235, 175), (235, 176), (235, 178), (236, 155), (236, 157), (236, 158), (236, 159), (236, 160), (236, 161), (236, 162), (236, 163), (236, 164), (236, 165), (236, 166), (236, 167), (236, 168), (236, 169), (236, 170), (236, 171), (236, 172), (236, 173), (236, 174), (236, 175), (236, 176), (236, 178), (237, 155), (237, 157), (237, 158), (237, 159), (237, 160), (237, 161), (237, 162), (237, 163), (237, 164), (237, 165), (237, 166), (237, 167), (237, 168), (237, 169), (237, 170), (237, 171), (237, 172), (237, 173), (237, 174), (237, 175), (237, 176), (237, 178), (238, 154), (238, 156), (238, 157), (238, 158), (238, 159), (238, 160), (238, 161), (238, 162), (238, 163), (238, 164), (238, 165), (238, 166), (238, 167), (238, 168), (238, 169), (238, 170), (238, 171), (238, 172), (238, 173), (238, 174), (238, 175), (238, 176), (238, 177), (238, 178), (239, 154), (239, 156), (239, 157), (239, 158), (239, 159), (239, 160), (239, 161), (239, 162), (239, 163), (239, 164), (239, 165), (239, 166), (239, 167), (239, 168), (239, 169), (239, 170), (239, 171), (239, 172), (239, 173), (239, 174), (239, 175), (239, 177), (240, 154), (240, 156), (240, 157), (240, 158), (240, 159), (240, 160), (240, 161), (240, 162), (240, 163), (240, 164), (240, 165), (240, 166), (240, 167), (240, 168), (240, 169), (240, 170), (240, 171), (240, 172), (240, 173), (240, 174), (240, 175), (240, 177), (241, 153), (241, 155), (241, 156), (241, 157), (241, 158), (241, 159), (241, 160), (241, 161), (241, 162), (241, 163), (241, 164), (241, 165), (241, 166), (241, 167), (241, 168), (241, 169), (241, 170), (241, 171), (241, 172), (241, 173), (241, 174), (241, 176), (242, 153), (242, 155), (242, 156), (242, 157), (242, 158), (242, 159), (242, 160), (242, 161), (242, 162), (242, 163), (242, 164), (242, 165), (242, 166), (242, 167), (242, 168), (242, 169), (242, 170), (242, 171), (242, 172), (242, 173), (242, 174), (242, 176), (243, 153), (243, 155), (243, 156), (243, 157), (243, 158), (243, 159), (243, 160), (243, 161), (243, 162), (243, 163), (243, 164), (243, 165), (243, 166), (243, 167), (243, 168), (243, 169), (243, 170), (243, 171), (243, 172), (243, 173), (243, 175), (244, 153), (244, 155), (244, 156), (244, 157), (244, 158), (244, 159), (244, 160), (244, 161), (244, 162), (244, 163), (244, 164), (244, 165), (244, 166), (244, 167), (244, 168), (244, 169), (244, 170), (244, 171), (244, 172), (244, 173), (244, 175), (245, 154), (245, 156), (245, 157), (245, 158), (245, 159), (245, 160), (245, 161), (245, 162), (245, 163), (245, 164), (245, 165), (245, 166), (245, 167), (245, 168), (245, 169), (245, 170), (245, 171), (245, 172), (245, 174), (246, 154), (246, 156), (246, 157), (246, 158), (246, 159), (246, 160), (246, 161), (246, 162), (246, 163), (246, 164), (246, 165), (246, 166), (246, 167), (246, 168), (246, 169), (246, 170), (246, 171), (246, 173), (247, 155), (247, 157), (247, 158), (247, 159), (247, 160), (247, 161), (247, 162), (247, 163), (247, 164), (247, 165), (247, 166), (247, 167), (247, 168), (247, 169), (247, 170), (248, 156), (248, 158), (248, 159), (248, 160), (248, 161), (248, 162), (248, 163), (248, 164), (248, 165), (248, 166), (248, 167), (248, 168), (248, 169), (248, 172), (249, 156), (249, 159), (249, 160), (249, 161), (249, 162), (249, 163), (249, 164), (249, 165), (249, 166), (249, 167), (249, 168), (249, 171), (250, 157), (250, 160), (250, 161), (250, 162), (250, 163), (250, 164), (250, 165), (250, 166), (250, 167), (250, 170), (251, 158), (251, 168), (252, 160), (252, 162), (252, 163), (252, 164), (252, 165), (252, 166))
coordinates_00_ff1_d = ((68, 146), (68, 147), (68, 148), (68, 150), (69, 142), (69, 143), (69, 144), (69, 145), (69, 150), (70, 139), (70, 141), (70, 146), (70, 147), (70, 148), (70, 150), (71, 137), (71, 138), (71, 142), (71, 143), (71, 144), (71, 145), (71, 146), (71, 147), (71, 148), (71, 150), (72, 134), (72, 139), (72, 140), (72, 141), (72, 142), (72, 143), (72, 144), (72, 145), (72, 146), (72, 147), (72, 148), (72, 150), (73, 132), (73, 136), (73, 137), (73, 138), (73, 139), (73, 140), (73, 141), (73, 142), (73, 143), (73, 144), (73, 145), (73, 146), (73, 147), (73, 148), (73, 150), (74, 131), (74, 134), (74, 135), (74, 136), (74, 137), (74, 138), (74, 139), (74, 140), (74, 141), (74, 142), (74, 143), (74, 144), (74, 145), (74, 146), (74, 147), (74, 148), (74, 150), (75, 129), (75, 132), (75, 133), (75, 134), (75, 135), (75, 136), (75, 137), (75, 138), (75, 139), (75, 140), (75, 141), (75, 142), (75, 143), (75, 144), (75, 145), (75, 146), (75, 147), (75, 148), (75, 150), (76, 128), (76, 131), (76, 132), (76, 133), (76, 134), (76, 135), (76, 136), (76, 137), (76, 138), (76, 139), (76, 140), (76, 141), (76, 142), (76, 143), (76, 144), (76, 145), (76, 146), (76, 147), (76, 148), (76, 150), (77, 127), (77, 129), (77, 130), (77, 131), (77, 132), (77, 133), (77, 134), (77, 135), (77, 136), (77, 137), (77, 138), (77, 139), (77, 140), (77, 141), (77, 142), (77, 143), (77, 144), (77, 145), (77, 146), (77, 147), (77, 148), (77, 150), (78, 126), (78, 128), (78, 129), (78, 130), (78, 131), (78, 132), (78, 133), (78, 134), (78, 135), (78, 136), (78, 137), (78, 138), (78, 139), (78, 140), (78, 141), (78, 142), (78, 143), (78, 144), (78, 145), (78, 146), (78, 147), (78, 149), (79, 126), (79, 130), (79, 131), (79, 132), (79, 133), (79, 134), (79, 135), (79, 136), (79, 137), (79, 138), (79, 139), (79, 140), (79, 141), (79, 142), (79, 143), (79, 144), (79, 145), (79, 146), (79, 147), (79, 149), (80, 126), (80, 128), (80, 129), (80, 133), (80, 134), (80, 135), (80, 136), (80, 137), (80, 138), (80, 139), (80, 140), (80, 141), (80, 142), (80, 143), (80, 144), (80, 145), (80, 149), (81, 130), (81, 131), (81, 132), (81, 136), (81, 137), (81, 138), (81, 139), (81, 140), (81, 141), (81, 142), (81, 143), (81, 146), (81, 147), (82, 133), (82, 134), (82, 138), (82, 139), (82, 140), (82, 141), (82, 142), (82, 145), (83, 136), (83, 139), (83, 140), (83, 143), (84, 138), (84, 141), (84, 142), (85, 139), (85, 140), (313, 122), (314, 122), (314, 139), (314, 140), (315, 122), (315, 137), (315, 142), (316, 123), (316, 135), (316, 139), (316, 140), (316, 143), (317, 123), (317, 133), (317, 137), (317, 138), (317, 139), (317, 140), (317, 141), (317, 142), (317, 145), (318, 131), (318, 132), (318, 135), (318, 136), (318, 137), (318, 138), (318, 139), (318, 140), (318, 141), (318, 142), (318, 143), (318, 146), (318, 147), (318, 149), (319, 127), (319, 128), (319, 129), (319, 133), (319, 134), (319, 135), (319, 136), (319, 137), (319, 138), (319, 139), (319, 140), (319, 141), (319, 142), (319, 143), (319, 144), (319, 145), (319, 149), (320, 125), (320, 126), (320, 130), (320, 131), (320, 132), (320, 133), (320, 134), (320, 135), (320, 136), (320, 137), (320, 138), (320, 139), (320, 140), (320, 141), (320, 142), (320, 143), (320, 144), (320, 145), (320, 146), (320, 147), (320, 149), (321, 126), (321, 129), (321, 130), (321, 131), (321, 132), (321, 133), (321, 134), (321, 135), (321, 136), (321, 137), (321, 138), (321, 139), (321, 140), (321, 141), (321, 142), (321, 143), (321, 144), (321, 145), (321, 146), (321, 147), (321, 149), (322, 127), (322, 130), (322, 131), (322, 132), (322, 133), (322, 134), (322, 135), (322, 136), (322, 137), (322, 138), (322, 139), (322, 140), (322, 141), (322, 142), (322, 143), (322, 144), (322, 145), (322, 146), (322, 147), (322, 148), (322, 150), (323, 129), (323, 132), (323, 133), (323, 134), (323, 135), (323, 136), (323, 137), (323, 138), (323, 139), (323, 140), (323, 141), (323, 142), (323, 143), (323, 144), (323, 145), (323, 146), (323, 147), (323, 148), (323, 150), (324, 130), (324, 133), (324, 134), (324, 135), (324, 136), (324, 137), (324, 138), (324, 139), (324, 140), (324, 141), (324, 142), (324, 143), (324, 144), (324, 145), (324, 146), (324, 147), (324, 148), (324, 150), (325, 132), (325, 135), (325, 136), (325, 137), (325, 138), (325, 139), (325, 140), (325, 141), (325, 142), (325, 143), (325, 144), (325, 145), (325, 146), (325, 147), (325, 148), (325, 150), (326, 133), (326, 137), (326, 138), (326, 139), (326, 140), (326, 141), (326, 142), (326, 143), (326, 144), (326, 145), (326, 146), (326, 147), (326, 148), (326, 150), (327, 135), (327, 139), (327, 140), (327, 141), (327, 142), (327, 143), (327, 144), (327, 145), (327, 146), (327, 147), (327, 148), (327, 150), (328, 137), (328, 142), (328, 143), (328, 144), (328, 145), (328, 146), (328, 147), (328, 148), (328, 150), (329, 140), (329, 141), (329, 146), (329, 147), (329, 148), (329, 150), (330, 142), (330, 143), (330, 144), (330, 145), (330, 150), (331, 146), (331, 147), (331, 148), (331, 150))
coordinates_00_d7_ff = ((68, 157), (68, 158), (68, 159), (68, 160), (68, 161), (68, 162), (68, 163), (68, 164), (68, 165), (68, 166), (69, 156), (69, 167), (69, 169), (70, 155), (70, 157), (70, 158), (70, 159), (70, 160), (70, 161), (70, 162), (70, 163), (70, 164), (70, 165), (70, 166), (70, 167), (70, 169), (71, 154), (71, 156), (71, 157), (71, 158), (71, 159), (71, 160), (71, 161), (71, 162), (71, 163), (71, 164), (71, 165), (71, 166), (71, 167), (71, 168), (71, 169), (72, 154), (72, 156), (72, 157), (72, 158), (72, 159), (72, 160), (72, 161), (72, 162), (72, 163), (72, 164), (72, 165), (72, 166), (72, 167), (72, 168), (72, 169), (72, 172), (72, 173), (72, 174), (72, 175), (72, 176), (72, 177), (72, 179), (73, 154), (73, 156), (73, 157), (73, 158), (73, 159), (73, 160), (73, 161), (73, 162), (73, 163), (73, 164), (73, 165), (73, 166), (73, 167), (73, 168), (73, 169), (73, 170), (73, 171), (73, 179), (74, 154), (74, 156), (74, 157), (74, 158), (74, 159), (74, 160), (74, 161), (74, 162), (74, 163), (74, 164), (74, 165), (74, 166), (74, 167), (74, 168), (74, 169), (74, 170), (74, 171), (74, 172), (74, 173), (74, 174), (74, 175), (74, 176), (74, 177), (74, 179), (75, 153), (75, 155), (75, 156), (75, 157), (75, 158), (75, 159), (75, 160), (75, 161), (75, 162), (75, 163), (75, 164), (75, 165), (75, 166), (75, 167), (75, 168), (75, 169), (75, 170), (75, 171), (75, 172), (75, 173), (75, 174), (75, 175), (75, 176), (75, 177), (75, 179), (76, 153), (76, 155), (76, 156), (76, 157), (76, 158), (76, 159), (76, 160), (76, 161), (76, 162), (76, 163), (76, 164), (76, 165), (76, 166), (76, 167), (76, 168), (76, 169), (76, 170), (76, 171), (76, 172), (76, 173), (76, 174), (76, 175), (76, 176), (76, 177), (76, 178), (76, 180), (77, 152), (77, 154), (77, 155), (77, 156), (77, 157), (77, 158), (77, 159), (77, 160), (77, 161), (77, 162), (77, 163), (77, 164), (77, 165), (77, 166), (77, 167), (77, 168), (77, 169), (77, 170), (77, 171), (77, 172), (77, 173), (77, 174), (77, 175), (77, 176), (77, 177), (77, 178), (77, 180), (78, 152), (78, 154), (78, 155), (78, 156), (78, 157), (78, 158), (78, 159), (78, 160), (78, 161), (78, 162), (78, 163), (78, 164), (78, 165), (78, 166), (78, 167), (78, 168), (78, 169), (78, 170), (78, 171), (78, 172), (78, 173), (78, 174), (78, 175), (78, 176), (78, 177), (78, 179), (79, 151), (79, 153), (79, 154), (79, 155), (79, 156), (79, 157), (79, 158), (79, 159), (79, 160), (79, 161), (79, 162), (79, 163), (79, 164), (79, 165), (79, 166), (79, 167), (79, 168), (79, 169), (79, 170), (79, 171), (79, 172), (79, 173), (79, 174), (79, 175), (79, 179), (80, 151), (80, 153), (80, 154), (80, 155), (80, 156), (80, 157), (80, 158), (80, 159), (80, 160), (80, 161), (80, 162), (80, 163), (80, 164), (80, 165), (80, 166), (80, 167), (80, 168), (80, 169), (80, 170), (80, 171), (80, 172), (80, 173), (80, 174), (80, 179), (81, 151), (81, 153), (81, 154), (81, 155), (81, 156), (81, 157), (81, 158), (81, 159), (81, 160), (81, 161), (81, 162), (81, 163), (81, 164), (81, 165), (81, 166), (81, 167), (81, 168), (81, 169), (81, 170), (81, 171), (81, 172), (81, 173), (81, 175), (82, 151), (82, 153), (82, 154), (82, 155), (82, 156), (82, 157), (82, 158), (82, 159), (82, 160), (82, 161), (82, 162), (82, 163), (82, 164), (82, 165), (82, 166), (82, 167), (82, 168), (82, 169), (82, 170), (82, 171), (82, 172), (82, 173), (82, 175), (83, 151), (83, 153), (83, 154), (83, 155), (83, 156), (83, 157), (83, 158), (83, 159), (83, 160), (83, 161), (83, 162), (83, 163), (83, 164), (83, 165), (83, 166), (83, 167), (83, 168), (83, 169), (83, 170), (83, 171), (83, 172), (83, 174), (84, 151), (84, 153), (84, 154), (84, 155), (84, 156), (84, 157), (84, 158), (84, 159), (84, 160), (84, 161), (84, 162), (84, 163), (84, 164), (84, 165), (84, 166), (84, 167), (84, 168), (84, 169), (84, 170), (84, 171), (84, 172), (84, 174), (85, 151), (85, 153), (85, 154), (85, 155), (85, 156), (85, 157), (85, 158), (85, 159), (85, 160), (85, 161), (85, 162), (85, 163), (85, 164), (85, 165), (85, 166), (85, 167), (85, 168), (85, 169), (85, 170), (85, 171), (85, 172), (85, 174), (86, 151), (86, 153), (86, 154), (86, 155), (86, 156), (86, 157), (86, 158), (86, 159), (86, 160), (86, 161), (86, 162), (86, 163), (86, 164), (86, 165), (86, 166), (86, 167), (86, 168), (86, 169), (86, 170), (86, 171), (86, 172), (86, 174), (87, 151), (87, 152), (87, 153), (87, 154), (87, 155), (87, 156), (87, 157), (87, 158), (87, 159), (87, 160), (87, 161), (87, 162), (87, 163), (87, 164), (87, 165), (87, 166), (87, 167), (87, 168), (87, 169), (87, 170), (87, 171), (87, 172), (87, 173), (87, 174), (87, 176), (88, 152), (88, 154), (88, 155), (88, 156), (88, 157), (88, 158), (88, 159), (88, 160), (88, 161), (88, 162), (88, 163), (88, 164), (88, 165), (88, 166), (88, 167), (88, 168), (88, 169), (88, 170), (88, 171), (88, 172), (88, 173), (88, 174), (88, 178), (89, 152), (89, 154), (89, 155), (89, 156), (89, 157), (89, 158), (89, 159), (89, 160), (89, 161), (89, 162), (89, 163), (89, 164), (89, 165), (89, 166), (89, 167), (89, 168), (89, 169), (89, 170), (89, 171), (89, 172), (89, 173), (89, 174), (89, 175), (89, 176), (89, 178), (90, 152), (90, 154), (90, 155), (90, 156), (90, 157), (90, 158), (90, 159), (90, 160), (90, 161), (90, 162), (90, 163), (90, 164), (90, 165), (90, 166), (90, 167), (90, 168), (90, 169), (90, 170), (90, 171), (90, 172), (90, 173), (90, 174), (90, 175), (90, 176), (90, 178), (91, 153), (91, 155), (91, 156), (91, 157), (91, 158), (91, 159), (91, 160), (91, 161), (91, 162), (91, 163), (91, 164), (91, 165), (91, 166), (91, 167), (91, 168), (91, 169), (91, 170), (91, 171), (91, 172), (91, 173), (91, 174), (91, 175), (91, 178), (92, 153), (92, 155), (92, 156), (92, 157), (92, 158), (92, 159), (92, 160), (92, 161), (92, 162), (92, 163), (92, 164), (92, 165), (92, 166), (92, 167), (92, 168), (92, 169), (92, 170), (92, 171), (92, 172), (92, 173), (92, 174), (92, 177), (93, 153), (93, 155), (93, 156), (93, 157), (93, 158), (93, 159), (93, 160), (93, 161), (93, 162), (93, 163), (93, 164), (93, 165), (93, 166), (93, 167), (93, 168), (93, 169), (93, 170), (93, 171), (93, 172), (93, 175), (94, 154), (94, 156), (94, 157), (94, 158), (94, 159), (94, 160), (94, 161), (94, 162), (94, 163), (94, 164), (94, 165), (94, 166), (94, 167), (94, 168), (94, 169), (94, 170), (94, 171), (94, 174), (95, 154), (95, 156), (95, 157), (95, 158), (95, 159), (95, 160), (95, 161), (95, 162), (95, 163), (95, 164), (95, 165), (95, 166), (95, 167), (95, 168), (95, 169), (95, 170), (95, 172), (96, 155), (96, 157), (96, 158), (96, 159), (96, 160), (96, 161), (96, 162), (96, 163), (96, 164), (96, 165), (96, 166), (96, 167), (96, 168), (96, 171), (97, 155), (97, 157), (97, 158), (97, 159), (97, 160), (97, 161), (97, 162), (97, 163), (97, 164), (97, 165), (97, 168), (97, 170), (98, 156), (98, 158), (98, 159), (98, 160), (98, 161), (98, 162), (98, 163), (98, 164), (98, 167), (99, 159), (99, 160), (99, 161), (99, 162), (99, 165), (100, 158), (100, 164), (101, 159), (101, 162), (298, 159), (298, 162), (299, 157), (299, 164), (300, 156), (300, 159), (300, 160), (300, 161), (300, 162), (300, 165), (301, 156), (301, 158), (301, 159), (301, 160), (301, 161), (301, 162), (301, 163), (301, 164), (301, 168), (302, 155), (302, 157), (302, 158), (302, 159), (302, 160), (302, 161), (302, 162), (302, 163), (302, 164), (302, 165), (302, 169), (303, 155), (303, 157), (303, 158), (303, 159), (303, 160), (303, 161), (303, 162), (303, 163), (303, 164), (303, 165), (303, 166), (303, 167), (303, 168), (303, 171), (304, 154), (304, 156), (304, 157), (304, 158), (304, 159), (304, 160), (304, 161), (304, 162), (304, 163), (304, 164), (304, 165), (304, 166), (304, 167), (304, 168), (304, 169), (304, 172), (305, 154), (305, 156), (305, 157), (305, 158), (305, 159), (305, 160), (305, 161), (305, 162), (305, 163), (305, 164), (305, 165), (305, 166), (305, 167), (305, 168), (305, 169), (305, 170), (305, 171), (305, 174), (306, 153), (306, 155), (306, 156), (306, 157), (306, 158), (306, 159), (306, 160), (306, 161), (306, 162), (306, 163), (306, 164), (306, 165), (306, 166), (306, 167), (306, 168), (306, 169), (306, 170), (306, 171), (306, 172), (306, 175), (307, 153), (307, 155), (307, 156), (307, 157), (307, 158), (307, 159), (307, 160), (307, 161), (307, 162), (307, 163), (307, 164), (307, 165), (307, 166), (307, 167), (307, 168), (307, 169), (307, 170), (307, 171), (307, 172), (307, 173), (307, 174), (307, 177), (308, 153), (308, 155), (308, 156), (308, 157), (308, 158), (308, 159), (308, 160), (308, 161), (308, 162), (308, 163), (308, 164), (308, 165), (308, 166), (308, 167), (308, 168), (308, 169), (308, 170), (308, 171), (308, 172), (308, 173), (308, 174), (308, 175), (308, 178), (309, 152), (309, 154), (309, 155), (309, 156), (309, 157), (309, 158), (309, 159), (309, 160), (309, 161), (309, 162), (309, 163), (309, 164), (309, 165), (309, 166), (309, 167), (309, 168), (309, 169), (309, 170), (309, 171), (309, 172), (309, 173), (309, 174), (309, 175), (309, 176), (309, 178), (310, 152), (310, 154), (310, 155), (310, 156), (310, 157), (310, 158), (310, 159), (310, 160), (310, 161), (310, 162), (310, 163), (310, 164), (310, 165), (310, 166), (310, 167), (310, 168), (310, 169), (310, 170), (310, 171), (310, 172), (310, 173), (310, 174), (310, 175), (310, 176), (310, 178), (311, 152), (311, 154), (311, 155), (311, 156), (311, 157), (311, 158), (311, 159), (311, 160), (311, 161), (311, 162), (311, 163), (311, 164), (311, 165), (311, 166), (311, 167), (311, 168), (311, 169), (311, 170), (311, 171), (311, 172), (311, 173), (311, 174), (311, 178), (312, 151), (312, 152), (312, 153), (312, 154), (312, 155), (312, 156), (312, 157), (312, 158), (312, 159), (312, 160), (312, 161), (312, 162), (312, 163), (312, 164), (312, 165), (312, 166), (312, 167), (312, 168), (312, 169), (312, 170), (312, 171), (312, 172), (312, 173), (312, 174), (312, 176), (313, 151), (313, 153), (313, 154), (313, 155), (313, 156), (313, 157), (313, 158), (313, 159), (313, 160), (313, 161), (313, 162), (313, 163), (313, 164), (313, 165), (313, 166), (313, 167), (313, 168), (313, 169), (313, 170), (313, 171), (313, 172), (313, 174), (314, 151), (314, 153), (314, 154), (314, 155), (314, 156), (314, 157), (314, 158), (314, 159), (314, 160), (314, 161), (314, 162), (314, 163), (314, 164), (314, 165), (314, 166), (314, 167), (314, 168), (314, 169), (314, 170), (314, 171), (314, 172), (314, 174), (315, 151), (315, 153), (315, 154), (315, 155), (315, 156), (315, 157), (315, 158), (315, 159), (315, 160), (315, 161), (315, 162), (315, 163), (315, 164), (315, 165), (315, 166), (315, 167), (315, 168), (315, 169), (315, 170), (315, 171), (315, 172), (315, 174), (316, 151), (316, 153), (316, 154), (316, 155), (316, 156), (316, 157), (316, 158), (316, 159), (316, 160), (316, 161), (316, 162), (316, 163), (316, 164), (316, 165), (316, 166), (316, 167), (316, 168), (316, 169), (316, 170), (316, 171), (316, 172), (316, 174), (317, 151), (317, 153), (317, 154), (317, 155), (317, 156), (317, 157), (317, 158), (317, 159), (317, 160), (317, 161), (317, 162), (317, 163), (317, 164), (317, 165), (317, 166), (317, 167), (317, 168), (317, 169), (317, 170), (317, 171), (317, 172), (317, 173), (317, 175), (318, 151), (318, 153), (318, 154), (318, 155), (318, 156), (318, 157), (318, 158), (318, 159), (318, 160), (318, 161), (318, 162), (318, 163), (318, 164), (318, 165), (318, 166), (318, 167), (318, 168), (318, 169), (318, 170), (318, 171), (318, 172), (318, 173), (318, 175), (319, 151), (319, 153), (319, 154), (319, 155), (319, 156), (319, 157), (319, 158), (319, 159), (319, 160), (319, 161), (319, 162), (319, 163), (319, 164), (319, 165), (319, 166), (319, 167), (319, 168), (319, 169), (319, 170), (319, 171), (319, 172), (319, 173), (319, 174), (319, 175), (319, 177), (319, 179), (320, 151), (320, 153), (320, 154), (320, 155), (320, 156), (320, 157), (320, 158), (320, 159), (320, 160), (320, 161), (320, 162), (320, 163), (320, 164), (320, 165), (320, 166), (320, 167), (320, 168), (320, 169), (320, 170), (320, 171), (320, 172), (320, 173), (320, 174), (320, 175), (320, 179), (321, 152), (321, 154), (321, 155), (321, 156), (321, 157), (321, 158), (321, 159), (321, 160), (321, 161), (321, 162), (321, 163), (321, 164), (321, 165), (321, 166), (321, 167), (321, 168), (321, 169), (321, 170), (321, 171), (321, 172), (321, 173), (321, 174), (321, 175), (321, 176), (321, 177), (321, 179), (322, 152), (322, 154), (322, 155), (322, 156), (322, 157), (322, 158), (322, 159), (322, 160), (322, 161), (322, 162), (322, 163), (322, 164), (322, 165), (322, 166), (322, 167), (322, 168), (322, 169), (322, 170), (322, 171), (322, 172), (322, 173), (322, 174), (322, 175), (322, 176), (322, 177), (322, 178), (322, 180), (323, 153), (323, 155), (323, 156), (323, 157), (323, 158), (323, 159), (323, 160), (323, 161), (323, 162), (323, 163), (323, 164), (323, 165), (323, 166), (323, 167), (323, 168), (323, 169), (323, 170), (323, 171), (323, 172), (323, 173), (323, 174), (323, 175), (323, 176), (323, 177), (323, 178), (323, 180), (324, 153), (324, 155), (324, 156), (324, 157), (324, 158), (324, 159), (324, 160), (324, 161), (324, 162), (324, 163), (324, 164), (324, 165), (324, 166), (324, 167), (324, 168), (324, 169), (324, 170), (324, 171), (324, 172), (324, 173), (324, 174), (324, 175), (324, 176), (324, 177), (324, 179), (325, 154), (325, 156), (325, 157), (325, 158), (325, 159), (325, 160), (325, 161), (325, 162), (325, 163), (325, 164), (325, 165), (325, 166), (325, 167), (325, 168), (325, 169), (325, 170), (325, 171), (325, 172), (325, 173), (325, 174), (325, 175), (325, 176), (325, 177), (325, 179), (326, 154), (326, 156), (326, 157), (326, 158), (326, 159), (326, 160), (326, 161), (326, 162), (326, 163), (326, 164), (326, 165), (326, 166), (326, 167), (326, 168), (326, 169), (326, 170), (326, 171), (326, 179), (327, 154), (327, 156), (327, 157), (327, 158), (327, 159), (327, 160), (327, 161), (327, 162), (327, 163), (327, 164), (327, 165), (327, 166), (327, 167), (327, 168), (327, 169), (327, 172), (327, 173), (327, 174), (327, 175), (327, 176), (327, 177), (327, 179), (328, 156), (328, 157), (328, 158), (328, 159), (328, 160), (328, 161), (328, 162), (328, 163), (328, 164), (328, 165), (328, 166), (328, 167), (328, 168), (328, 169), (328, 170), (329, 155), (329, 158), (329, 159), (329, 160), (329, 161), (329, 162), (329, 163), (329, 164), (329, 165), (329, 166), (329, 169), (330, 156), (330, 167), (330, 169), (331, 158), (331, 160), (331, 161), (331, 162), (331, 163), (331, 164), (331, 165), (331, 166))
coordinates_00627_f = ((50, 202), (50, 203), (51, 199), (51, 200), (51, 205), (51, 206), (52, 198), (52, 201), (52, 202), (52, 203), (52, 208), (53, 197), (53, 200), (53, 201), (53, 202), (53, 203), (53, 204), (53, 205), (54, 196), (54, 198), (54, 199), (54, 200), (54, 201), (54, 202), (54, 203), (54, 204), (54, 205), (54, 207), (55, 195), (55, 197), (55, 198), (55, 199), (55, 200), (55, 201), (55, 202), (55, 203), (55, 204), (55, 205), (55, 207), (56, 194), (56, 196), (56, 197), (56, 198), (56, 199), (56, 200), (56, 201), (56, 202), (56, 203), (56, 204), (56, 206), (57, 194), (57, 196), (57, 197), (57, 198), (57, 199), (57, 200), (57, 201), (57, 202), (57, 205), (58, 193), (58, 195), (58, 196), (58, 199), (58, 200), (58, 201), (58, 204), (59, 196), (59, 197), (59, 198), (59, 203), (60, 192), (60, 194), (60, 195), (60, 199), (60, 201), (339, 192), (339, 194), (339, 195), (339, 196), (339, 198), (339, 199), (339, 201), (339, 202), (340, 197), (340, 203), (341, 193), (341, 195), (341, 196), (341, 198), (341, 199), (341, 200), (341, 201), (341, 204), (342, 194), (342, 196), (342, 197), (342, 198), (342, 199), (342, 200), (342, 201), (342, 202), (342, 203), (342, 205), (343, 194), (343, 196), (343, 197), (343, 198), (343, 199), (343, 200), (343, 201), (343, 202), (343, 203), (343, 204), (343, 206), (344, 195), (344, 197), (344, 198), (344, 199), (344, 200), (344, 201), (344, 202), (344, 203), (344, 204), (344, 205), (344, 207), (345, 196), (345, 198), (345, 199), (345, 200), (345, 201), (345, 202), (345, 203), (345, 204), (345, 205), (345, 207), (346, 197), (346, 200), (346, 201), (346, 202), (346, 203), (346, 204), (346, 205), (347, 198), (347, 202), (347, 203), (347, 208), (348, 200), (348, 204), (348, 205), (349, 202), (349, 203))
coordinates_6_bff00 = ((53, 210), (53, 212), (53, 213), (54, 209), (54, 216), (55, 209), (55, 211), (55, 212), (55, 213), (55, 214), (55, 217), (56, 208), (56, 210), (56, 211), (56, 212), (56, 213), (56, 214), (56, 215), (56, 216), (56, 219), (57, 210), (57, 211), (57, 212), (57, 213), (57, 214), (57, 215), (57, 216), (57, 217), (57, 220), (58, 209), (58, 210), (58, 211), (58, 212), (58, 213), (58, 214), (58, 215), (58, 216), (58, 217), (58, 218), (58, 221), (59, 205), (59, 208), (59, 209), (59, 210), (59, 211), (59, 212), (59, 213), (59, 214), (59, 215), (59, 216), (59, 217), (59, 218), (59, 219), (59, 222), (60, 204), (60, 207), (60, 208), (60, 209), (60, 210), (60, 211), (60, 212), (60, 213), (60, 214), (60, 215), (60, 216), (60, 217), (60, 218), (60, 219), (60, 220), (60, 222), (61, 203), (61, 205), (61, 206), (61, 207), (61, 208), (61, 209), (61, 210), (61, 211), (61, 212), (61, 213), (61, 214), (61, 215), (61, 216), (61, 217), (61, 218), (61, 219), (61, 220), (61, 221), (61, 223), (62, 203), (62, 205), (62, 206), (62, 207), (62, 208), (62, 209), (62, 210), (62, 211), (62, 212), (62, 213), (62, 214), (62, 215), (62, 216), (62, 217), (62, 218), (62, 219), (62, 220), (62, 221), (62, 222), (62, 224), (63, 203), (63, 205), (63, 206), (63, 207), (63, 208), (63, 209), (63, 210), (63, 211), (63, 212), (63, 213), (63, 214), (63, 215), (63, 216), (63, 217), (63, 218), (63, 219), (63, 220), (63, 221), (63, 222), (63, 224), (64, 204), (64, 206), (64, 207), (64, 208), (64, 209), (64, 210), (64, 211), (64, 212), (64, 213), (64, 214), (64, 215), (64, 216), (64, 217), (64, 218), (64, 219), (64, 220), (64, 221), (64, 222), (64, 223), (64, 225), (65, 204), (65, 206), (65, 207), (65, 208), (65, 209), (65, 210), (65, 211), (65, 212), (65, 213), (65, 214), (65, 215), (65, 216), (65, 217), (65, 218), (65, 219), (65, 220), (65, 221), (65, 222), (65, 223), (65, 224), (66, 204), (66, 208), (66, 209), (66, 210), (66, 211), (66, 212), (66, 213), (66, 214), (66, 215), (66, 216), (66, 217), (66, 218), (66, 219), (66, 220), (66, 221), (66, 222), (66, 223), (66, 224), (66, 226), (67, 205), (67, 207), (67, 210), (67, 211), (67, 212), (67, 213), (67, 214), (67, 215), (67, 216), (67, 217), (67, 218), (67, 219), (67, 220), (67, 221), (67, 222), (67, 223), (67, 224), (67, 225), (67, 227), (68, 208), (68, 209), (68, 212), (68, 213), (68, 214), (68, 215), (68, 216), (68, 217), (68, 218), (68, 219), (68, 220), (68, 221), (68, 222), (68, 223), (68, 224), (68, 225), (68, 227), (69, 210), (69, 214), (69, 215), (69, 216), (69, 217), (69, 218), (69, 219), (69, 220), (69, 221), (69, 222), (69, 223), (69, 224), (69, 225), (69, 226), (69, 228), (70, 212), (70, 215), (70, 216), (70, 217), (70, 218), (70, 219), (70, 220), (70, 221), (70, 222), (70, 223), (70, 224), (70, 225), (70, 226), (70, 228), (71, 214), (71, 217), (71, 218), (71, 219), (71, 220), (71, 221), (71, 222), (71, 223), (71, 224), (71, 225), (71, 226), (71, 227), (71, 229), (72, 215), (72, 218), (72, 219), (72, 220), (72, 221), (72, 222), (72, 223), (72, 224), (72, 225), (72, 226), (72, 228), (73, 216), (73, 220), (73, 221), (73, 222), (73, 223), (73, 224), (73, 225), (73, 226), (73, 228), (74, 217), (74, 219), (74, 228), (75, 220), (75, 221), (75, 222), (75, 223), (75, 224), (75, 225), (75, 226), (75, 228), (323, 228), (324, 218), (324, 220), (324, 221), (324, 222), (324, 223), (324, 224), (324, 225), (324, 226), (324, 228), (325, 217), (325, 228), (326, 216), (326, 219), (326, 220), (326, 221), (326, 222), (326, 223), (326, 224), (326, 225), (326, 226), (326, 228), (327, 215), (327, 217), (327, 218), (327, 219), (327, 220), (327, 221), (327, 222), (327, 223), (327, 224), (327, 225), (327, 226), (327, 228), (328, 214), (328, 216), (328, 217), (328, 218), (328, 219), (328, 220), (328, 221), (328, 222), (328, 223), (328, 224), (328, 225), (328, 226), (328, 227), (328, 229), (329, 212), (329, 215), (329, 216), (329, 217), (329, 218), (329, 219), (329, 220), (329, 221), (329, 222), (329, 223), (329, 224), (329, 225), (329, 226), (329, 228), (330, 210), (330, 214), (330, 215), (330, 216), (330, 217), (330, 218), (330, 219), (330, 220), (330, 221), (330, 222), (330, 223), (330, 224), (330, 225), (330, 226), (330, 228), (331, 208), (331, 209), (331, 212), (331, 213), (331, 214), (331, 215), (331, 216), (331, 217), (331, 218), (331, 219), (331, 220), (331, 221), (331, 222), (331, 223), (331, 224), (331, 225), (331, 227), (332, 205), (332, 207), (332, 210), (332, 211), (332, 212), (332, 213), (332, 214), (332, 215), (332, 216), (332, 217), (332, 218), (332, 219), (332, 220), (332, 221), (332, 222), (332, 223), (332, 224), (332, 225), (332, 227), (333, 204), (333, 208), (333, 209), (333, 210), (333, 211), (333, 212), (333, 213), (333, 214), (333, 215), (333, 216), (333, 217), (333, 218), (333, 219), (333, 220), (333, 221), (333, 222), (333, 223), (333, 224), (333, 226), (334, 204), (334, 206), (334, 207), (334, 208), (334, 209), (334, 210), (334, 211), (334, 212), (334, 213), (334, 214), (334, 215), (334, 216), (334, 217), (334, 218), (334, 219), (334, 220), (334, 221), (334, 222), (334, 223), (334, 225), (335, 204), (335, 206), (335, 207), (335, 208), (335, 209), (335, 210), (335, 211), (335, 212), (335, 213), (335, 214), (335, 215), (335, 216), (335, 217), (335, 218), (335, 219), (335, 220), (335, 221), (335, 222), (335, 223), (335, 225), (336, 203), (336, 205), (336, 206), (336, 207), (336, 208), (336, 209), (336, 210), (336, 211), (336, 212), (336, 213), (336, 214), (336, 215), (336, 216), (336, 217), (336, 218), (336, 219), (336, 220), (336, 221), (336, 222), (336, 224), (337, 203), (337, 205), (337, 206), (337, 207), (337, 208), (337, 209), (337, 210), (337, 211), (337, 212), (337, 213), (337, 214), (337, 215), (337, 216), (337, 217), (337, 218), (337, 219), (337, 220), (337, 221), (337, 222), (337, 224), (338, 203), (338, 206), (338, 207), (338, 208), (338, 209), (338, 210), (338, 211), (338, 212), (338, 213), (338, 214), (338, 215), (338, 216), (338, 217), (338, 218), (338, 219), (338, 220), (338, 221), (338, 223), (339, 204), (339, 207), (339, 208), (339, 209), (339, 210), (339, 211), (339, 212), (339, 213), (339, 214), (339, 215), (339, 216), (339, 217), (339, 218), (339, 219), (339, 220), (339, 222), (340, 205), (340, 208), (340, 209), (340, 210), (340, 211), (340, 212), (340, 213), (340, 214), (340, 215), (340, 216), (340, 217), (340, 218), (340, 219), (341, 207), (341, 209), (341, 210), (341, 211), (341, 212), (341, 213), (341, 214), (341, 215), (341, 216), (341, 217), (341, 218), (341, 221), (342, 208), (342, 210), (342, 211), (342, 212), (342, 213), (342, 214), (342, 215), (342, 216), (342, 217), (342, 220), (343, 208), (343, 210), (343, 211), (343, 212), (343, 213), (343, 214), (343, 215), (343, 216), (343, 219), (344, 209), (344, 211), (344, 212), (344, 213), (344, 217), (345, 209), (345, 215), (345, 216), (346, 210), (346, 212), (346, 213))
coordinates_00_ff9_c = ((163, 115), (163, 118), (164, 113), (164, 118), (165, 112), (165, 115), (165, 116), (165, 118), (166, 110), (166, 113), (166, 114), (166, 115), (166, 116), (166, 118), (167, 109), (167, 112), (167, 113), (167, 114), (167, 115), (167, 116), (167, 117), (167, 119), (168, 108), (168, 111), (168, 112), (168, 113), (168, 114), (168, 115), (168, 116), (168, 117), (168, 119), (169, 107), (169, 110), (169, 111), (169, 112), (169, 113), (169, 114), (169, 115), (169, 116), (169, 117), (169, 119), (170, 106), (170, 109), (170, 110), (170, 111), (170, 112), (170, 113), (170, 114), (170, 115), (170, 116), (170, 117), (170, 119), (171, 106), (171, 108), (171, 109), (171, 110), (171, 111), (171, 112), (171, 113), (171, 114), (171, 115), (171, 116), (171, 117), (172, 105), (172, 107), (172, 108), (172, 109), (172, 110), (172, 111), (172, 112), (172, 113), (172, 114), (172, 115), (172, 116), (172, 117), (172, 119), (173, 104), (173, 106), (173, 107), (173, 108), (173, 109), (173, 110), (173, 111), (173, 112), (173, 113), (173, 114), (173, 115), (173, 116), (173, 117), (174, 104), (174, 106), (174, 107), (174, 108), (174, 109), (174, 110), (174, 111), (174, 112), (174, 113), (174, 114), (174, 115), (174, 117), (175, 103), (175, 105), (175, 106), (175, 107), (175, 108), (175, 109), (175, 110), (175, 111), (175, 112), (175, 113), (175, 114), (175, 116), (176, 103), (176, 105), (176, 106), (176, 107), (176, 108), (176, 109), (176, 110), (176, 111), (176, 112), (176, 113), (176, 114), (176, 116), (177, 102), (177, 104), (177, 105), (177, 106), (177, 107), (177, 108), (177, 109), (177, 110), (177, 111), (177, 112), (177, 113), (177, 115), (178, 102), (178, 104), (178, 105), (178, 106), (178, 107), (178, 108), (178, 109), (178, 110), (178, 111), (178, 112), (178, 113), (178, 115), (179, 102), (179, 104), (179, 105), (179, 106), (179, 107), (179, 108), (179, 109), (179, 110), (179, 111), (179, 112), (179, 113), (179, 115), (180, 102), (180, 104), (180, 105), (180, 106), (180, 107), (180, 108), (180, 109), (180, 110), (180, 111), (180, 112), (180, 113), (180, 115), (181, 102), (181, 105), (181, 106), (181, 107), (181, 108), (181, 109), (181, 110), (181, 111), (181, 112), (181, 114), (182, 103), (182, 107), (182, 108), (182, 109), (182, 110), (182, 111), (182, 112), (182, 114), (183, 105), (183, 108), (183, 109), (183, 110), (183, 111), (183, 112), (183, 114), (184, 107), (184, 110), (184, 111), (184, 112), (184, 114), (185, 109), (185, 113), (186, 111), (186, 113), (213, 111), (213, 112), (213, 114), (214, 108), (214, 109), (214, 114), (215, 106), (215, 107), (215, 110), (215, 111), (215, 113), (216, 105), (216, 108), (216, 109), (216, 110), (216, 111), (216, 113), (217, 103), (217, 106), (217, 107), (217, 108), (217, 109), (217, 110), (217, 111), (217, 113), (218, 102), (218, 105), (218, 106), (218, 107), (218, 108), (218, 109), (218, 110), (218, 111), (218, 113), (218, 114), (219, 102), (219, 104), (219, 105), (219, 106), (219, 107), (219, 108), (219, 109), (219, 110), (219, 111), (219, 112), (219, 114), (220, 102), (220, 104), (220, 105), (220, 106), (220, 107), (220, 108), (220, 109), (220, 110), (220, 111), (220, 112), (220, 113), (220, 115), (221, 102), (221, 104), (221, 105), (221, 106), (221, 107), (221, 108), (221, 109), (221, 110), (221, 111), (221, 112), (221, 113), (221, 115), (222, 102), (222, 104), (222, 105), (222, 106), (222, 107), (222, 108), (222, 109), (222, 110), (222, 111), (222, 112), (222, 113), (222, 114), (222, 116), (223, 103), (223, 105), (223, 106), (223, 107), (223, 108), (223, 109), (223, 110), (223, 111), (223, 112), (223, 113), (223, 114), (223, 115), (223, 117), (224, 103), (224, 105), (224, 106), (224, 107), (224, 108), (224, 109), (224, 110), (224, 111), (224, 112), (224, 113), (224, 114), (224, 115), (224, 117), (225, 104), (225, 106), (225, 107), (225, 108), (225, 109), (225, 110), (225, 111), (225, 112), (225, 113), (225, 114), (225, 115), (225, 116), (225, 118), (226, 104), (226, 106), (226, 107), (226, 108), (226, 109), (226, 110), (226, 111), (226, 112), (226, 113), (226, 114), (226, 115), (226, 116), (226, 117), (226, 119), (227, 105), (227, 107), (227, 108), (227, 109), (227, 110), (227, 111), (227, 112), (227, 113), (227, 114), (227, 115), (227, 116), (227, 117), (227, 119), (228, 106), (228, 108), (228, 109), (228, 110), (228, 111), (228, 112), (228, 113), (228, 114), (228, 115), (228, 116), (228, 117), (228, 118), (228, 119), (229, 109), (229, 110), (229, 111), (229, 112), (229, 113), (229, 114), (229, 115), (229, 116), (229, 117), (229, 119), (230, 107), (230, 110), (230, 111), (230, 112), (230, 113), (230, 114), (230, 115), (230, 116), (230, 117), (230, 119), (231, 108), (231, 111), (231, 112), (231, 113), (231, 114), (231, 115), (231, 116), (231, 117), (231, 119), (232, 109), (232, 112), (232, 113), (232, 114), (232, 115), (232, 116), (232, 117), (232, 119), (233, 111), (233, 113), (233, 114), (233, 115), (233, 116), (233, 118), (234, 112), (234, 115), (234, 116), (234, 118), (235, 113), (235, 114), (235, 118), (236, 115), (236, 118))
coordinates_3_a00_ff = ((62, 198), (62, 201), (63, 197), (63, 201), (64, 197), (64, 199), (64, 201), (65, 197), (65, 199), (65, 200), (65, 202), (66, 196), (66, 198), (66, 199), (66, 200), (66, 202), (67, 195), (67, 197), (67, 198), (67, 199), (67, 200), (67, 202), (68, 194), (68, 196), (68, 197), (68, 198), (68, 199), (68, 200), (68, 201), (68, 203), (69, 193), (69, 195), (69, 196), (69, 197), (69, 198), (69, 199), (69, 200), (69, 201), (69, 203), (70, 192), (70, 194), (70, 195), (70, 196), (70, 197), (70, 198), (70, 199), (70, 200), (70, 203), (71, 191), (71, 193), (71, 194), (71, 195), (71, 196), (71, 197), (71, 198), (71, 199), (71, 203), (72, 190), (72, 192), (72, 193), (72, 194), (72, 195), (72, 196), (72, 197), (72, 198), (72, 200), (73, 189), (73, 191), (73, 192), (73, 193), (73, 194), (73, 195), (73, 196), (73, 197), (73, 199), (74, 188), (74, 191), (74, 192), (74, 193), (74, 194), (74, 195), (74, 196), (74, 198), (75, 188), (75, 190), (75, 191), (75, 192), (75, 193), (75, 194), (75, 195), (75, 196), (76, 190), (76, 191), (76, 192), (76, 193), (76, 194), (76, 195), (76, 197), (77, 188), (77, 191), (77, 192), (77, 193), (77, 194), (77, 196), (78, 190), (78, 192), (78, 193), (78, 195), (79, 181), (79, 191), (79, 194), (80, 181), (80, 192), (80, 193), (81, 181), (82, 177), (82, 181), (83, 176), (83, 180), (84, 176), (84, 178), (84, 180), (85, 176), (85, 178), (85, 180), (86, 180), (89, 180), (89, 181), (90, 180), (309, 180), (310, 180), (310, 181), (313, 178), (313, 180), (314, 176), (314, 180), (315, 176), (315, 178), (315, 180), (316, 176), (316, 180), (317, 177), (317, 179), (317, 181), (318, 181), (319, 181), (319, 192), (320, 181), (320, 191), (320, 194), (321, 190), (321, 192), (321, 193), (321, 195), (322, 188), (322, 191), (322, 192), (322, 193), (322, 194), (322, 196), (323, 190), (323, 191), (323, 192), (323, 193), (323, 194), (323, 195), (323, 197), (324, 188), (324, 190), (324, 191), (324, 192), (324, 193), (324, 194), (324, 195), (324, 196), (324, 198), (325, 191), (325, 192), (325, 193), (325, 194), (325, 195), (325, 196), (325, 198), (326, 189), (326, 191), (326, 192), (326, 193), (326, 194), (326, 195), (326, 196), (326, 197), (326, 199), (327, 190), (327, 192), (327, 193), (327, 194), (327, 195), (327, 196), (327, 197), (327, 198), (328, 191), (328, 193), (328, 194), (328, 195), (328, 196), (328, 197), (328, 198), (328, 199), (328, 203), (329, 192), (329, 194), (329, 195), (329, 196), (329, 197), (329, 198), (329, 199), (329, 200), (329, 203), (330, 193), (330, 195), (330, 196), (330, 197), (330, 198), (330, 199), (330, 200), (330, 201), (330, 203), (331, 194), (331, 196), (331, 197), (331, 198), (331, 199), (331, 200), (331, 201), (331, 203), (332, 195), (332, 197), (332, 198), (332, 199), (332, 200), (332, 202), (333, 196), (333, 198), (333, 199), (333, 200), (333, 202), (334, 197), (334, 199), (334, 200), (334, 202), (335, 197), (335, 199), (335, 201), (336, 201), (337, 198), (337, 201)) |
class Channel(object):
'''Contains a collection of channel related methods.'''
async def get_channel(self, channel_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#get-channel'''
return await self._request('GET', uri=f'/channels/{channel_id}')
async def modify_channel(self,
channel_id,
name: str=None,
icon=None,
type: int=None,
position: int=None,
topic: str=None,
nsfw: bool=None,
rate_limit_per_user: int=None,
bitrate: int=None,
user_limit: int=None,
permission_overwrites: list=None,
parent_id=None,
rtc_region: str=None,
video_quality_mode: int=None,
default_auto_archive_duration: int=None,
archived: bool=None,
auto_archive_duration: int=None,
locked: bool=None,
invitable: bool=None,
**kwargs
) -> dict:
'''https://discord.com/developers/docs/resources/channel#modify-channel
----- P A R M E T E R S -----
If Channel == Group DM
@name
@icon
If Channel == Guild Channel
@name
@type
@position
@topic
@nsfw
@rate_limit_per_user
@bitrate
@user_limit
@permission_overwrites
@parent_id
@rtc_region
@video_quality_mode
@default_auto_archive_duration
If Chanel == Thread
@name
@archived
@auto_archive_duration
@locked
@invitable
@rate_limit_per_user
'''
payload: dict = {
'name': name,
'icon': icon,
'type': type,
'topic': topic,
'nsfw': nsfw,
'rate_limit_per_user': rate_limit_per_user,
'bitrate': bitrate,
'user_limit': user_limit,
'permission_overwrites': permission_overwrites,
'parent_id': parent_id,
'rtc_region': rtc_region,
'video_quality_mode': video_quality_mode,
'default_auto_archive_duration': default_auto_archive_duration,
'archived': archived,
'auto_archive_duration': auto_archive_duration,
'locked': locked,
'invitable': invitable
}
payload: dict = {k:v for k,v in payload.items() if v is not None}
return await self._request('PATCH', params=payload, uri=f'/channels/{channel_id}')
async def delete_close_channel(self, channel_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#deleteclose-channel'''
return await self._request('DELETE', uri=f'/channels/{channel_id}')
async def get_channel_messages(self,
channel_id,
around=None,
before=None,
after=None,
limit: int=None,
) -> dict:
'''https://discord.com/developers/docs/resources/channel#get-channel-messages'''
payload: dict = {
'around': around,
'before': before,
'after': after,
'limit': limit
}
payload: dict = {k:v for k,v in payload.items() if v is not None}
return await self._request('GET', params=payload, uri=f'/channels/{channel_id}/messages')
async def get_channel_message(self) -> dict:
'''https://discord.com/developers/docs/resources/channel#get-channel-message'''
return await self._request('GET',uri=f'/channels/{channel_id}/messages')
async def create_message(self,
channel_id,
content: str=None,
tts: bool=None,
embeds: [dict]=None,
allowed_mentions=None,
message_reference=None,
components: list=None,
files: [str]=None,
attachments: [dict]=None,
sticker_ids: list=None,
flags: int=None,
) -> dict:
'''https://discord.com/developers/docs/resources/channel#create-message'''
payload: dict = {
'content': content,
'tts': tts,
'allowed_mentions': allowed_mentions,
'message_reference': message_reference,
'components': components,
'sticker_ids': sticker_ids,
'flags': flags,
'embeds': embeds,
'attachments': attachments
}
payload: dict = {k:v for k,v in payload.items() if v is not None}
uri = f'/channels/{channel_id}/messages'
if files != None:
return await self._send_file_attachment(method='POST', uri=uri, file_names=files, payload=payload)
else:
return await self._request(method='POST', uri=uri, params=payload)
async def crosspost_message(self, message_id, channel_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#crosspost-message'''
return await self._request('POST', uri=f'/channels/{channel_id}/messages/{message_id}/crosspost')
async def create_reaction(self, channel_id, message_id, emoji) -> dict:
'''https://discord.com/developers/docs/resources/channel#create-reaction
"The emoji must be URL Encoded or the request will fail with 10014: Unknown Emoji.
To use custom emoji, you must encode it in the format name:id with the emoji name and emoji id."
'''
return await self._request('PUT', uri=f'/channels/{channel_id}/messages/{message_id}/reactions/{emoji}/@me')
async def delete_own_reaction(self, channel_id, message_id, emoji) -> dict:
'''https://discord.com/developers/docs/resources/channel#delete-own-reaction
"The emoji must be URL Encoded or the request will fail with 10014: Unknown Emoji.
To use custom emoji, you must encode it in the format name:id with the emoji name and emoji id."
'''
return await self._request('DELETE', uri=f'/channels/{channel_id}/messages/{message_id}/reactions/{emoji}/@me')
async def delete_user_reaction(self, channel_id, message_id, user_id, emoji) -> dict:
'''https://discord.com/developers/docs/resources/channel#delete-user-reaction
"The emoji must be URL Encoded or the request will fail with 10014: Unknown Emoji.
To use custom emoji, you must encode it in the format name:id with the emoji name and emoji id."
'''
return await self._request('DELETE', uri=f'/channels/{channel_id}/messages/{message_id}/reactions/{emoji}/{user_id}')
async def get_reactions(self, channel_id, message_id, emoji, after=None, limit: int=None) -> dict:
'''https://discord.com/developers/docs/resources/channel#get-reactions
"The emoji must be URL Encoded or the request will fail with 10014: Unknown Emoji.
To use custom emoji, you must encode it in the format name:id with the emoji name and emoji id."
'''
return await self._request('GET', uri=f'/channels/{channel_id}/messages/{message_id}/reactions/{emoji}')
async def delete_all_reactions(self, channel_id, message_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#delete-all-reactions'''
return await self._request('DELETE', uri=f'/channels/{channel_id}/messages/{message_id}/reactions')
async def delete_all_reactions_for_emoji(self, channel_id, message_id, emoji) -> dict:
'''https://discord.com/developers/docs/resources/channel#delete-all-reactions-for-emoji
"The emoji must be URL Encoded or the request will fail with 10014: Unknown Emoji.
To use custom emoji, you must encode it in the format name:id with the emoji name and emoji id."
'''
return await self._request('DELETE', uri=f'/channels/{channel_id}/messages/{message_id}/reactions/{emoji}')
async def edit_message(self,
channel_id,
message_id,
content: str=None,
embeds: [dict]=None,
flags: int=None,
allowed_mentions=None,
components=list,
files: [str]=None,
payload_json: str=None,
attachments: list=None,
**kwargs
) -> dict:
'''https://discord.com/developers/docs/resources/channel#edit-message'''
payload: dict = {
'content': content,
'flags': flags,
'allowed_mentions': allowed_mentions,
'components': components,
'payload_json': payload_json,
'attachments': attachments,
'embeds': embeds
}
payload: dict = {k:v for k,v in payload.items() if v is not None}
uri = f'/channels/{channel_id}/messages/{message_id}'
if files != None:
return await self._send_file_attachment(method='POST', uri=uri, file_names=files, payload=payload)
else:
return await self._request(method='POST', uri=uri, payload=payload)
async def delete_message(self, channel_id, message_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#delete-message'''
return await self._request('DELETE', uri=f'/channels/{channel_id}/messages/{message_id}')
async def bulk_delete_message(self, channel_id, messages: list) -> dict:
'''https://discord.com/developers/docs/resources/channel#bulk-delete-messages'''
paylaod = { 'messages': messages }
return await self._request('POST', params=payload, uri=f'/channels/{channel_id}/messages/bulk-delete')
async def edit_channel_permissions(self, channel_id, overwrite_id, allow=None, deny=None, type: int=None) -> dict:
'''https://discord.com/developers/docs/resources/channel#edit-channel-permissions'''
payload: dict = {
'allow': allow,
'deny': deny,
'type': type
}
payload: dict = {k:v for k,v in payload.items() if v is not None}
return await self._request('PUT', params=payload, uri=f'/channels/{channel_id}/permissions/{overwrite_id}')
async def get_channel_invites(self, channel_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#get-channel-invites'''
return await self._request('GET', uri=f'/channels/{channel_id}/invites')
async def create_channel_invite(self,
channel_id,
max_age: int=None,
max_uses: int=None,
temporary: bool=None,
unique: bool=None,
target_type: int=None,
target_user_id=None,
target_application_id=None,
) -> dict:
'''https://discord.com/developers/docs/resources/channel#create-channel-invite'''
payload: dict = {
'max_age': max_age,
'max_uses': max_uses,
'temporary': temporary,
'unique': unique,
'target_type': target_type,
'target_user_id': target_user_id,
'target_application_id': target_application_id
}
payload: dict = {k:v for k,v in payload.items() if v is not None}
return await self._request('POST', params=payload, uri=f'/channels/{channel_id}/invites')
async def delete_channel_permission(self, channel_id, overwrite_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#delete-channel-permission'''
return await self._request('DELETE', uri=f'/channels/{channel_id}/permissions/{overwrite_id}')
async def follow_news_channel(self, channel_id, webhook_channel_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#follow-news-channel'''
payload: dict = { 'webhook_channel_id': webhook_channel_id }
return await self._request('POST', params=payload, uri=f'/channels/{channel_id}/followers')
async def trigger_typing_indicatoe(self, channel_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#trigger-typing-indicator'''
return await self._request('POST', uri=f'/channels/{channel_id}/typing')
async def get_pinned_message(self, channel_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#get-pinned-messages'''
return await self._request('GET', uri=f'/channels/{channel_id}/pins')
async def pin_message(self, channel_id, message_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#pin-message'''
return await self._request('PUT', uri=f'/channels/{channel_id}/pins/{message_id}')
async def unpin_message(self, channel_id, message_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#unpin-message'''
return await self._request('DELETE', uri=f'/channels/{channel_id}/pins/{message_id}')
async def group_dm_add_recipient(self, channel_id, user_id, access_token, nick) -> dict:
'''https://discord.com/developers/docs/resources/channel#group-dm-add-recipient'''
payload: dict = {
'access_token': access_token,
'nick':nick
}
payload: dict = {k:v for k,v in payload.items() if v is not None}
return await self._request('PUT', params=payload, uri=f'/channels/{channel_id}/recipients/{user_id}')
async def group_dm_remove_recipient(self, channel_id, user_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#group-dm-remove-recipient'''
return await self._request('DELETE', uri=f'/channels/{channel_id}/recipients/{user_id}')
async def start_thread_with_message(self, channel_id, user_id, name: str, auto_archive_duration: int=None, rate_limit_per_user: int=None) -> dict:
'''https://discord.com/developers/docs/resources/channel#start-thread-with-message'''
payload: dict = {
'name': name,
'auto_archive_duration': auto_archive_duration,
'rate_limit_per_user': rate_limit_per_user
}
payload: dict = {k:v for k,v in payload.items() if v is not None}
return await self._request('POST', params=payload, uri=f'/channels/{channel_id}/messages/{message_id}/threads')
async def start_thread_without_message(self,
channel_id,
auto_archive_duration: str=None,
type: int=None,
invitable: bool=None,
rate_limit_per_user: int=None,
) -> dict:
'''https://discord.com/developers/docs/resources/channel#start-thread-without-message'''
payload: dict = {
'name': name,
'auto_archive_duration': auto_archive_duration,
'type': type,
'invitable': invitable,
'rate_limit_per_user': rate_limit_per_user
}
payload: dict = {k:v for k,v in payload.items() if v is not None}
return await self._request('POST', params=payload, uri=f'/channels/{channel_id}/threads')
async def join_thread(self, channel_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#join-thread'''
return await self._request('PUT', uri=f'/channels/{channel_id}/thread-members/@me')
async def add_thread_member(self, channel_id, user_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#add-thread-member'''
return await self._request('PUT', uri=f'/channels/{channel_id}/thread-members/{user_id}')
async def leave_thread(self, channel_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#leave-thread'''
return await self._request('DELETE', uri=f'/channels/{channel_id}/thread-members/@me')
async def remove_thread_member(self, channel_id, user_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#remove-thread-member'''
return await self._request('DELETE', uri=f'/channels/{channel_id}/thread-members/{user_id}')
async def get_thread_member(self, channel_id, user_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#get-thread-member'''
return await self._request('GET', uri=f'/channels/{channel_id}/thread-members/{user_id}')
async def list_thread_member(self, channel_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#list-thread-members'''
return await self._request('GET', uri=f'/channels/{channel_id}/thread-members')
async def list_active_threads(self, channel_id, threads: list, members: list, has_more: bool ) -> dict:
'''https://discord.com/developers/docs/resources/channel#list-active-threads'''
payload: dict = {
'threads': threads,
'members': members,
'has_more': has_more
}
return await self._request('GET', params=payload, uri=f'/channels/{channel_id}/threads/active')
async def list_public_archived_threads(self, channel_id, before=None, limit:int=None ) -> dict:
'''https://discord.com/developers/docs/resources/channel#list-public-archived-threads'''
payload: dict = { 'before': before, 'limit': limit}
payload: dict = {k:v for k,v in payload.items() if v is not None}
return await self._request('GET', params=params, uri=f'/channels/{channel_id}/threads/archived/public')
async def list_private_archived_threads(self, channel_id) -> dict:
'''https://discord.com/developers/docs/resources/channel#list-private-archived-threads'''
payload: dict = { 'before': before, 'limit': limit }
payload: dict = {k:v for k,v in payload.items() if v is not None}
return await self._request('GET', params=payload, uri=f'/channels/{channel_id}/threads/archived/private')
async def list_joined_private_archived_threads(self, channel_id, before=None, limit:int=None) -> dict:
'''https://discord.com/developers/docs/resources/channel#list-joined-private-archived-threads'''
payload: dict = { 'before': before, 'limit': limit }
payload: dict = {k:v for k,v in payload.items() if v is not None}
return await self._request('GET', params=payload, uri=f'/channels/{channel_id}/users/@me/threads/archived/private') | class Channel(object):
"""Contains a collection of channel related methods."""
async def get_channel(self, channel_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#get-channel"""
return await self._request('GET', uri=f'/channels/{channel_id}')
async def modify_channel(self, channel_id, name: str=None, icon=None, type: int=None, position: int=None, topic: str=None, nsfw: bool=None, rate_limit_per_user: int=None, bitrate: int=None, user_limit: int=None, permission_overwrites: list=None, parent_id=None, rtc_region: str=None, video_quality_mode: int=None, default_auto_archive_duration: int=None, archived: bool=None, auto_archive_duration: int=None, locked: bool=None, invitable: bool=None, **kwargs) -> dict:
"""https://discord.com/developers/docs/resources/channel#modify-channel
----- P A R M E T E R S -----
If Channel == Group DM
@name
@icon
If Channel == Guild Channel
@name
@type
@position
@topic
@nsfw
@rate_limit_per_user
@bitrate
@user_limit
@permission_overwrites
@parent_id
@rtc_region
@video_quality_mode
@default_auto_archive_duration
If Chanel == Thread
@name
@archived
@auto_archive_duration
@locked
@invitable
@rate_limit_per_user
"""
payload: dict = {'name': name, 'icon': icon, 'type': type, 'topic': topic, 'nsfw': nsfw, 'rate_limit_per_user': rate_limit_per_user, 'bitrate': bitrate, 'user_limit': user_limit, 'permission_overwrites': permission_overwrites, 'parent_id': parent_id, 'rtc_region': rtc_region, 'video_quality_mode': video_quality_mode, 'default_auto_archive_duration': default_auto_archive_duration, 'archived': archived, 'auto_archive_duration': auto_archive_duration, 'locked': locked, 'invitable': invitable}
payload: dict = {k: v for (k, v) in payload.items() if v is not None}
return await self._request('PATCH', params=payload, uri=f'/channels/{channel_id}')
async def delete_close_channel(self, channel_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#deleteclose-channel"""
return await self._request('DELETE', uri=f'/channels/{channel_id}')
async def get_channel_messages(self, channel_id, around=None, before=None, after=None, limit: int=None) -> dict:
"""https://discord.com/developers/docs/resources/channel#get-channel-messages"""
payload: dict = {'around': around, 'before': before, 'after': after, 'limit': limit}
payload: dict = {k: v for (k, v) in payload.items() if v is not None}
return await self._request('GET', params=payload, uri=f'/channels/{channel_id}/messages')
async def get_channel_message(self) -> dict:
"""https://discord.com/developers/docs/resources/channel#get-channel-message"""
return await self._request('GET', uri=f'/channels/{channel_id}/messages')
async def create_message(self, channel_id, content: str=None, tts: bool=None, embeds: [dict]=None, allowed_mentions=None, message_reference=None, components: list=None, files: [str]=None, attachments: [dict]=None, sticker_ids: list=None, flags: int=None) -> dict:
"""https://discord.com/developers/docs/resources/channel#create-message"""
payload: dict = {'content': content, 'tts': tts, 'allowed_mentions': allowed_mentions, 'message_reference': message_reference, 'components': components, 'sticker_ids': sticker_ids, 'flags': flags, 'embeds': embeds, 'attachments': attachments}
payload: dict = {k: v for (k, v) in payload.items() if v is not None}
uri = f'/channels/{channel_id}/messages'
if files != None:
return await self._send_file_attachment(method='POST', uri=uri, file_names=files, payload=payload)
else:
return await self._request(method='POST', uri=uri, params=payload)
async def crosspost_message(self, message_id, channel_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#crosspost-message"""
return await self._request('POST', uri=f'/channels/{channel_id}/messages/{message_id}/crosspost')
async def create_reaction(self, channel_id, message_id, emoji) -> dict:
"""https://discord.com/developers/docs/resources/channel#create-reaction
"The emoji must be URL Encoded or the request will fail with 10014: Unknown Emoji.
To use custom emoji, you must encode it in the format name:id with the emoji name and emoji id."
"""
return await self._request('PUT', uri=f'/channels/{channel_id}/messages/{message_id}/reactions/{emoji}/@me')
async def delete_own_reaction(self, channel_id, message_id, emoji) -> dict:
"""https://discord.com/developers/docs/resources/channel#delete-own-reaction
"The emoji must be URL Encoded or the request will fail with 10014: Unknown Emoji.
To use custom emoji, you must encode it in the format name:id with the emoji name and emoji id."
"""
return await self._request('DELETE', uri=f'/channels/{channel_id}/messages/{message_id}/reactions/{emoji}/@me')
async def delete_user_reaction(self, channel_id, message_id, user_id, emoji) -> dict:
"""https://discord.com/developers/docs/resources/channel#delete-user-reaction
"The emoji must be URL Encoded or the request will fail with 10014: Unknown Emoji.
To use custom emoji, you must encode it in the format name:id with the emoji name and emoji id."
"""
return await self._request('DELETE', uri=f'/channels/{channel_id}/messages/{message_id}/reactions/{emoji}/{user_id}')
async def get_reactions(self, channel_id, message_id, emoji, after=None, limit: int=None) -> dict:
"""https://discord.com/developers/docs/resources/channel#get-reactions
"The emoji must be URL Encoded or the request will fail with 10014: Unknown Emoji.
To use custom emoji, you must encode it in the format name:id with the emoji name and emoji id."
"""
return await self._request('GET', uri=f'/channels/{channel_id}/messages/{message_id}/reactions/{emoji}')
async def delete_all_reactions(self, channel_id, message_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#delete-all-reactions"""
return await self._request('DELETE', uri=f'/channels/{channel_id}/messages/{message_id}/reactions')
async def delete_all_reactions_for_emoji(self, channel_id, message_id, emoji) -> dict:
"""https://discord.com/developers/docs/resources/channel#delete-all-reactions-for-emoji
"The emoji must be URL Encoded or the request will fail with 10014: Unknown Emoji.
To use custom emoji, you must encode it in the format name:id with the emoji name and emoji id."
"""
return await self._request('DELETE', uri=f'/channels/{channel_id}/messages/{message_id}/reactions/{emoji}')
async def edit_message(self, channel_id, message_id, content: str=None, embeds: [dict]=None, flags: int=None, allowed_mentions=None, components=list, files: [str]=None, payload_json: str=None, attachments: list=None, **kwargs) -> dict:
"""https://discord.com/developers/docs/resources/channel#edit-message"""
payload: dict = {'content': content, 'flags': flags, 'allowed_mentions': allowed_mentions, 'components': components, 'payload_json': payload_json, 'attachments': attachments, 'embeds': embeds}
payload: dict = {k: v for (k, v) in payload.items() if v is not None}
uri = f'/channels/{channel_id}/messages/{message_id}'
if files != None:
return await self._send_file_attachment(method='POST', uri=uri, file_names=files, payload=payload)
else:
return await self._request(method='POST', uri=uri, payload=payload)
async def delete_message(self, channel_id, message_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#delete-message"""
return await self._request('DELETE', uri=f'/channels/{channel_id}/messages/{message_id}')
async def bulk_delete_message(self, channel_id, messages: list) -> dict:
"""https://discord.com/developers/docs/resources/channel#bulk-delete-messages"""
paylaod = {'messages': messages}
return await self._request('POST', params=payload, uri=f'/channels/{channel_id}/messages/bulk-delete')
async def edit_channel_permissions(self, channel_id, overwrite_id, allow=None, deny=None, type: int=None) -> dict:
"""https://discord.com/developers/docs/resources/channel#edit-channel-permissions"""
payload: dict = {'allow': allow, 'deny': deny, 'type': type}
payload: dict = {k: v for (k, v) in payload.items() if v is not None}
return await self._request('PUT', params=payload, uri=f'/channels/{channel_id}/permissions/{overwrite_id}')
async def get_channel_invites(self, channel_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#get-channel-invites"""
return await self._request('GET', uri=f'/channels/{channel_id}/invites')
async def create_channel_invite(self, channel_id, max_age: int=None, max_uses: int=None, temporary: bool=None, unique: bool=None, target_type: int=None, target_user_id=None, target_application_id=None) -> dict:
"""https://discord.com/developers/docs/resources/channel#create-channel-invite"""
payload: dict = {'max_age': max_age, 'max_uses': max_uses, 'temporary': temporary, 'unique': unique, 'target_type': target_type, 'target_user_id': target_user_id, 'target_application_id': target_application_id}
payload: dict = {k: v for (k, v) in payload.items() if v is not None}
return await self._request('POST', params=payload, uri=f'/channels/{channel_id}/invites')
async def delete_channel_permission(self, channel_id, overwrite_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#delete-channel-permission"""
return await self._request('DELETE', uri=f'/channels/{channel_id}/permissions/{overwrite_id}')
async def follow_news_channel(self, channel_id, webhook_channel_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#follow-news-channel"""
payload: dict = {'webhook_channel_id': webhook_channel_id}
return await self._request('POST', params=payload, uri=f'/channels/{channel_id}/followers')
async def trigger_typing_indicatoe(self, channel_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#trigger-typing-indicator"""
return await self._request('POST', uri=f'/channels/{channel_id}/typing')
async def get_pinned_message(self, channel_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#get-pinned-messages"""
return await self._request('GET', uri=f'/channels/{channel_id}/pins')
async def pin_message(self, channel_id, message_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#pin-message"""
return await self._request('PUT', uri=f'/channels/{channel_id}/pins/{message_id}')
async def unpin_message(self, channel_id, message_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#unpin-message"""
return await self._request('DELETE', uri=f'/channels/{channel_id}/pins/{message_id}')
async def group_dm_add_recipient(self, channel_id, user_id, access_token, nick) -> dict:
"""https://discord.com/developers/docs/resources/channel#group-dm-add-recipient"""
payload: dict = {'access_token': access_token, 'nick': nick}
payload: dict = {k: v for (k, v) in payload.items() if v is not None}
return await self._request('PUT', params=payload, uri=f'/channels/{channel_id}/recipients/{user_id}')
async def group_dm_remove_recipient(self, channel_id, user_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#group-dm-remove-recipient"""
return await self._request('DELETE', uri=f'/channels/{channel_id}/recipients/{user_id}')
async def start_thread_with_message(self, channel_id, user_id, name: str, auto_archive_duration: int=None, rate_limit_per_user: int=None) -> dict:
"""https://discord.com/developers/docs/resources/channel#start-thread-with-message"""
payload: dict = {'name': name, 'auto_archive_duration': auto_archive_duration, 'rate_limit_per_user': rate_limit_per_user}
payload: dict = {k: v for (k, v) in payload.items() if v is not None}
return await self._request('POST', params=payload, uri=f'/channels/{channel_id}/messages/{message_id}/threads')
async def start_thread_without_message(self, channel_id, auto_archive_duration: str=None, type: int=None, invitable: bool=None, rate_limit_per_user: int=None) -> dict:
"""https://discord.com/developers/docs/resources/channel#start-thread-without-message"""
payload: dict = {'name': name, 'auto_archive_duration': auto_archive_duration, 'type': type, 'invitable': invitable, 'rate_limit_per_user': rate_limit_per_user}
payload: dict = {k: v for (k, v) in payload.items() if v is not None}
return await self._request('POST', params=payload, uri=f'/channels/{channel_id}/threads')
async def join_thread(self, channel_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#join-thread"""
return await self._request('PUT', uri=f'/channels/{channel_id}/thread-members/@me')
async def add_thread_member(self, channel_id, user_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#add-thread-member"""
return await self._request('PUT', uri=f'/channels/{channel_id}/thread-members/{user_id}')
async def leave_thread(self, channel_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#leave-thread"""
return await self._request('DELETE', uri=f'/channels/{channel_id}/thread-members/@me')
async def remove_thread_member(self, channel_id, user_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#remove-thread-member"""
return await self._request('DELETE', uri=f'/channels/{channel_id}/thread-members/{user_id}')
async def get_thread_member(self, channel_id, user_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#get-thread-member"""
return await self._request('GET', uri=f'/channels/{channel_id}/thread-members/{user_id}')
async def list_thread_member(self, channel_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#list-thread-members"""
return await self._request('GET', uri=f'/channels/{channel_id}/thread-members')
async def list_active_threads(self, channel_id, threads: list, members: list, has_more: bool) -> dict:
"""https://discord.com/developers/docs/resources/channel#list-active-threads"""
payload: dict = {'threads': threads, 'members': members, 'has_more': has_more}
return await self._request('GET', params=payload, uri=f'/channels/{channel_id}/threads/active')
async def list_public_archived_threads(self, channel_id, before=None, limit: int=None) -> dict:
"""https://discord.com/developers/docs/resources/channel#list-public-archived-threads"""
payload: dict = {'before': before, 'limit': limit}
payload: dict = {k: v for (k, v) in payload.items() if v is not None}
return await self._request('GET', params=params, uri=f'/channels/{channel_id}/threads/archived/public')
async def list_private_archived_threads(self, channel_id) -> dict:
"""https://discord.com/developers/docs/resources/channel#list-private-archived-threads"""
payload: dict = {'before': before, 'limit': limit}
payload: dict = {k: v for (k, v) in payload.items() if v is not None}
return await self._request('GET', params=payload, uri=f'/channels/{channel_id}/threads/archived/private')
async def list_joined_private_archived_threads(self, channel_id, before=None, limit: int=None) -> dict:
"""https://discord.com/developers/docs/resources/channel#list-joined-private-archived-threads"""
payload: dict = {'before': before, 'limit': limit}
payload: dict = {k: v for (k, v) in payload.items() if v is not None}
return await self._request('GET', params=payload, uri=f'/channels/{channel_id}/users/@me/threads/archived/private') |
#
# PySNMP MIB module AH-INTERFACE-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/AH-INTERFACE-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 17:00:22 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
AhString, AhNodeID, ahAPInterface, AhMACProtocol, AhInterfaceType, AhInterfaceMode = mibBuilder.importSymbols("AH-SMI-MIB", "AhString", "AhNodeID", "ahAPInterface", "AhMACProtocol", "AhInterfaceType", "AhInterfaceMode")
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsIntersection, ConstraintsUnion, SingleValueConstraint, ValueSizeConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ConstraintsUnion", "SingleValueConstraint", "ValueSizeConstraint", "ValueRangeConstraint")
ifEntry, ifIndex = mibBuilder.importSymbols("IF-MIB", "ifEntry", "ifIndex")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
IpAddress, Counter32, NotificationType, ModuleIdentity, Gauge32, ObjectIdentity, Unsigned32, TimeTicks, Bits, Counter64, iso, MibIdentifier, Integer32, MibScalar, MibTable, MibTableRow, MibTableColumn = mibBuilder.importSymbols("SNMPv2-SMI", "IpAddress", "Counter32", "NotificationType", "ModuleIdentity", "Gauge32", "ObjectIdentity", "Unsigned32", "TimeTicks", "Bits", "Counter64", "iso", "MibIdentifier", "Integer32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn")
TextualConvention, DisplayString, TruthValue = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString", "TruthValue")
ahInterface = ModuleIdentity((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1))
if mibBuilder.loadTexts: ahInterface.setLastUpdated('200806160000Z')
if mibBuilder.loadTexts: ahInterface.setOrganization('Aerohive Networks, Inc')
class AhAuthenticationMethod(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10))
namedValues = NamedValues(("cwp", 0), ("open", 1), ("wep-open", 2), ("wep-shared", 3), ("wpa-psk", 4), ("wpa2-psk", 5), ("wpa-8021x", 6), ("wpa2-8021X", 7), ("wpa-auto-psk", 8), ("wpa-auto-8021x", 9), ("dynamic-wep", 10))
class AhEncrytionMethod(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))
namedValues = NamedValues(("AES", 0), ("TKIP", 1), ("WEP", 2), ("Non", 3))
ahXIfTable = MibTable((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 1), )
if mibBuilder.loadTexts: ahXIfTable.setStatus('current')
ahXIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 1, 1), )
ifEntry.registerAugmentions(("AH-INTERFACE-MIB", "ahXIfEntry"))
ahXIfEntry.setIndexNames(*ifEntry.getIndexNames())
if mibBuilder.loadTexts: ahXIfEntry.setStatus('current')
ahIfName = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 1, 1, 1), AhString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahIfName.setStatus('current')
ahSSIDName = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 1, 1, 2), AhString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahSSIDName.setStatus('current')
ahIfPromiscuous = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 1, 1, 3), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahIfPromiscuous.setStatus('current')
ahIfType = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 1, 1, 4), AhInterfaceType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahIfType.setStatus('current')
ahIfMode = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 1, 1, 5), AhInterfaceMode()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahIfMode.setStatus('current')
ahIfConfMode = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 1, 1, 6), AhInterfaceMode()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahIfConfMode.setStatus('current')
ahAssociationTable = MibTable((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2), )
if mibBuilder.loadTexts: ahAssociationTable.setStatus('current')
ahAssociationEntry = MibTableRow((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "AH-INTERFACE-MIB", "ahClientMac"))
if mibBuilder.loadTexts: ahAssociationEntry.setStatus('current')
ahClientMac = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 1), AhNodeID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientMac.setStatus('current')
ahClientIP = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientIP.setStatus('current')
ahClientHostname = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 3), AhString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientHostname.setStatus('current')
ahClientRSSI = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientRSSI.setStatus('current')
ahClientLinkUptime = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientLinkUptime.setStatus('current')
ahClientCWPUsed = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 6), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientCWPUsed.setStatus('current')
ahClientAuthMethod = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 7), AhAuthenticationMethod()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientAuthMethod.setStatus('current')
ahClientEncryptionMethod = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 8), AhEncrytionMethod()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientEncryptionMethod.setStatus('current')
ahClientMACProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 9), AhMACProtocol()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientMACProtocol.setStatus('current')
ahClientSSID = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 10), AhString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientSSID.setStatus('current')
ahClientVLAN = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientVLAN.setStatus('current')
ahClientUserProfId = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientUserProfId.setStatus('current')
ahClientChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientChannel.setStatus('current')
ahClientLastTxRate = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientLastTxRate.setStatus('current')
ahClientUsername = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 15), AhString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientUsername.setStatus('current')
ahClientRxDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientRxDataFrames.setStatus('current')
ahClientRxDataOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientRxDataOctets.setStatus('current')
ahClientRxMgtFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientRxMgtFrames.setStatus('current')
ahClientRxUnicastFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientRxUnicastFrames.setStatus('current')
ahClientRxMulticastFrames = MibScalar((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientRxMulticastFrames.setStatus('current')
ahClientRxBroadcastFrames = MibScalar((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientRxBroadcastFrames.setStatus('current')
ahClientRxMICFailures = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientRxMICFailures.setStatus('current')
ahClientTxDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientTxDataFrames.setStatus('current')
ahClientTxMgtFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientTxMgtFrames.setStatus('current')
ahClientTxDataOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientTxDataOctets.setStatus('current')
ahClientTxUnicastFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientTxUnicastFrames.setStatus('current')
ahClientTxMulticastFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientTxMulticastFrames.setStatus('current')
ahClientTxBroadcastFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientTxBroadcastFrames.setStatus('current')
ahClientLastRxRate = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 29), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientLastRxRate.setStatus('current')
ahClientTxBeDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientTxBeDataFrames.setStatus('current')
ahClientTxBgDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 31), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientTxBgDataFrames.setStatus('current')
ahClientTxViDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 32), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientTxViDataFrames.setStatus('current')
ahClientTxVoDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 33), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientTxVoDataFrames.setStatus('current')
ahClientTxAirtime = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 34), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientTxAirtime.setStatus('current')
ahClientRxAirtime = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 35), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientRxAirtime.setStatus('current')
ahClientAssociationTime = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 36), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientAssociationTime.setStatus('current')
ahClientBSSID = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 37), AhNodeID()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahClientBSSID.setStatus('current')
ahRadioStatsTable = MibTable((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3), )
if mibBuilder.loadTexts: ahRadioStatsTable.setStatus('current')
ahRadioStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: ahRadioStatsEntry.setStatus('current')
ahRadioTxDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioTxDataFrames.setStatus('current')
ahRadioTxUnicastDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioTxUnicastDataFrames.setStatus('current')
ahRadioTxMulticastDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioTxMulticastDataFrames.setStatus('current')
ahRadioTxBroadcastDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioTxBroadcastDataFrames.setStatus('current')
ahRadioTxNonBeaconMgtFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioTxNonBeaconMgtFrames.setStatus('current')
ahRadioTxBeaconFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioTxBeaconFrames.setStatus('current')
ahRadioTxTotalRetries = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioTxTotalRetries.setStatus('current')
ahRadioTxTotalFramesDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioTxTotalFramesDropped.setStatus('current')
ahRadioTxTotalFrameErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioTxTotalFrameErrors.setStatus('current')
ahRadioTxFEForExcessiveHWRetries = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioTxFEForExcessiveHWRetries.setStatus('current')
ahRadioRxTotalDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioRxTotalDataFrames.setStatus('current')
ahRadioRxUnicastDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioRxUnicastDataFrames.setStatus('current')
ahRadioRxMulticastDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioRxMulticastDataFrames.setStatus('current')
ahRadioRxBroadcastDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioRxBroadcastDataFrames.setStatus('current')
ahRadioRxMgtFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioRxMgtFrames.setStatus('current')
ahRadioRxTotalFrameDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioRxTotalFrameDropped.setStatus('current')
ahRadioTxBeDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioTxBeDataFrames.setStatus('current')
ahRadioTxBgDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioTxBgDataFrames.setStatus('current')
ahRadioTxViDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioTxViDataFrames.setStatus('current')
ahRadioTxVoDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioTxVoDataFrames.setStatus('current')
ahRadioTXRTSFailures = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioTXRTSFailures.setStatus('current')
ahRadioTxAirtime = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 22), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioTxAirtime.setStatus('current')
ahRadioRxAirtime = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 23), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioRxAirtime.setStatus('current')
ahVIfStatsTable = MibTable((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4), )
if mibBuilder.loadTexts: ahVIfStatsTable.setStatus('current')
ahVIfStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: ahVIfStatsEntry.setStatus('current')
ahVIfRxDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahVIfRxDataFrames.setStatus('current')
ahVIfRxUnicastDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahVIfRxUnicastDataFrames.setStatus('current')
ahVIfRxMulticastDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahVIfRxMulticastDataFrames.setStatus('current')
ahVIfRxBroadcastDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahVIfRxBroadcastDataFrames.setStatus('current')
ahVIfRxErrorFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahVIfRxErrorFrames.setStatus('current')
ahVIfRxDroppedFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahVIfRxDroppedFrames.setStatus('current')
ahVIfTxDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahVIfTxDataFrames.setStatus('current')
ahVIfTxUnicastDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahVIfTxUnicastDataFrames.setStatus('current')
ahVIfTxMulticastDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahVIfTxMulticastDataFrames.setStatus('current')
ahVIfTxBroadcastDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahVIfTxBroadcastDataFrames.setStatus('current')
ahVIfTxErrorFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahVIfTxErrorFrames.setStatus('current')
ahVIfTxDroppedFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahVIfTxDroppedFrames.setStatus('current')
ahVIfTxBeDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahVIfTxBeDataFrames.setStatus('current')
ahVIfTxBgDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahVIfTxBgDataFrames.setStatus('current')
ahVIfTxViDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahVIfTxViDataFrames.setStatus('current')
ahVIfTxVoDataFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahVIfTxVoDataFrames.setStatus('current')
ahVifTxAirtime = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 17), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahVifTxAirtime.setStatus('current')
ahVifRxAirtime = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 18), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahVifRxAirtime.setStatus('current')
ahRadioAttributeTable = MibTable((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 5), )
if mibBuilder.loadTexts: ahRadioAttributeTable.setStatus('current')
ahRadioAttributeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 5, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: ahRadioAttributeEntry.setStatus('current')
ahRadioChannel = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 5, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioChannel.setStatus('current')
ahRadioTxPower = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 5, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioTxPower.setStatus('current')
ahRadioNoiseFloor = MibTableColumn((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 5, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ahRadioNoiseFloor.setStatus('current')
mibBuilder.exportSymbols("AH-INTERFACE-MIB", ahClientEncryptionMethod=ahClientEncryptionMethod, ahClientUsername=ahClientUsername, ahAssociationTable=ahAssociationTable, AhEncrytionMethod=AhEncrytionMethod, ahVIfTxBroadcastDataFrames=ahVIfTxBroadcastDataFrames, ahVIfRxUnicastDataFrames=ahVIfRxUnicastDataFrames, ahRadioTXRTSFailures=ahRadioTXRTSFailures, ahRadioRxTotalDataFrames=ahRadioRxTotalDataFrames, ahXIfEntry=ahXIfEntry, ahRadioRxMgtFrames=ahRadioRxMgtFrames, ahClientRxMICFailures=ahClientRxMICFailures, ahRadioTxUnicastDataFrames=ahRadioTxUnicastDataFrames, ahClientTxMgtFrames=ahClientTxMgtFrames, ahRadioTxPower=ahRadioTxPower, ahVIfTxVoDataFrames=ahVIfTxVoDataFrames, ahRadioTxBroadcastDataFrames=ahRadioTxBroadcastDataFrames, ahClientRxDataFrames=ahClientRxDataFrames, ahRadioChannel=ahRadioChannel, ahRadioTxTotalFramesDropped=ahRadioTxTotalFramesDropped, ahAssociationEntry=ahAssociationEntry, ahIfName=ahIfName, ahRadioTxViDataFrames=ahRadioTxViDataFrames, ahRadioTxTotalFrameErrors=ahRadioTxTotalFrameErrors, ahVIfTxBgDataFrames=ahVIfTxBgDataFrames, ahClientHostname=ahClientHostname, ahRadioRxTotalFrameDropped=ahRadioRxTotalFrameDropped, ahClientTxBgDataFrames=ahClientTxBgDataFrames, ahClientMACProtocol=ahClientMACProtocol, ahClientTxDataOctets=ahClientTxDataOctets, ahClientVLAN=ahClientVLAN, ahClientRSSI=ahClientRSSI, ahXIfTable=ahXIfTable, ahSSIDName=ahSSIDName, ahClientIP=ahClientIP, ahVIfTxViDataFrames=ahVIfTxViDataFrames, ahRadioTxBeDataFrames=ahRadioTxBeDataFrames, ahRadioRxAirtime=ahRadioRxAirtime, ahRadioNoiseFloor=ahRadioNoiseFloor, ahClientAssociationTime=ahClientAssociationTime, ahVIfTxErrorFrames=ahVIfTxErrorFrames, ahIfMode=ahIfMode, ahRadioStatsTable=ahRadioStatsTable, ahRadioTxTotalRetries=ahRadioTxTotalRetries, ahClientRxAirtime=ahClientRxAirtime, ahClientRxBroadcastFrames=ahClientRxBroadcastFrames, ahClientTxBroadcastFrames=ahClientTxBroadcastFrames, ahRadioTxDataFrames=ahRadioTxDataFrames, ahVifTxAirtime=ahVifTxAirtime, ahClientTxDataFrames=ahClientTxDataFrames, ahRadioTxMulticastDataFrames=ahRadioTxMulticastDataFrames, ahVIfRxErrorFrames=ahVIfRxErrorFrames, ahClientChannel=ahClientChannel, ahClientRxMulticastFrames=ahClientRxMulticastFrames, ahClientLastRxRate=ahClientLastRxRate, ahIfType=ahIfType, ahVIfTxUnicastDataFrames=ahVIfTxUnicastDataFrames, ahVIfTxBeDataFrames=ahVIfTxBeDataFrames, ahRadioStatsEntry=ahRadioStatsEntry, ahRadioTxVoDataFrames=ahRadioTxVoDataFrames, ahClientLastTxRate=ahClientLastTxRate, ahRadioAttributeTable=ahRadioAttributeTable, AhAuthenticationMethod=AhAuthenticationMethod, ahClientRxMgtFrames=ahClientRxMgtFrames, PYSNMP_MODULE_ID=ahInterface, ahRadioTxBeaconFrames=ahRadioTxBeaconFrames, ahVIfRxDataFrames=ahVIfRxDataFrames, ahClientUserProfId=ahClientUserProfId, ahVifRxAirtime=ahVifRxAirtime, ahClientLinkUptime=ahClientLinkUptime, ahClientTxBeDataFrames=ahClientTxBeDataFrames, ahVIfTxDataFrames=ahVIfTxDataFrames, ahClientMac=ahClientMac, ahVIfRxBroadcastDataFrames=ahVIfRxBroadcastDataFrames, ahIfPromiscuous=ahIfPromiscuous, ahClientTxUnicastFrames=ahClientTxUnicastFrames, ahRadioRxUnicastDataFrames=ahRadioRxUnicastDataFrames, ahRadioRxMulticastDataFrames=ahRadioRxMulticastDataFrames, ahClientSSID=ahClientSSID, ahClientTxAirtime=ahClientTxAirtime, ahVIfTxMulticastDataFrames=ahVIfTxMulticastDataFrames, ahClientCWPUsed=ahClientCWPUsed, ahClientAuthMethod=ahClientAuthMethod, ahRadioAttributeEntry=ahRadioAttributeEntry, ahVIfTxDroppedFrames=ahVIfTxDroppedFrames, ahRadioTxNonBeaconMgtFrames=ahRadioTxNonBeaconMgtFrames, ahVIfStatsTable=ahVIfStatsTable, ahRadioTxAirtime=ahRadioTxAirtime, ahRadioTxBgDataFrames=ahRadioTxBgDataFrames, ahRadioTxFEForExcessiveHWRetries=ahRadioTxFEForExcessiveHWRetries, ahVIfStatsEntry=ahVIfStatsEntry, ahClientTxViDataFrames=ahClientTxViDataFrames, ahVIfRxMulticastDataFrames=ahVIfRxMulticastDataFrames, ahClientBSSID=ahClientBSSID, ahClientTxMulticastFrames=ahClientTxMulticastFrames, ahVIfRxDroppedFrames=ahVIfRxDroppedFrames, ahRadioRxBroadcastDataFrames=ahRadioRxBroadcastDataFrames, ahClientRxUnicastFrames=ahClientRxUnicastFrames, ahClientTxVoDataFrames=ahClientTxVoDataFrames, ahClientRxDataOctets=ahClientRxDataOctets, ahIfConfMode=ahIfConfMode, ahInterface=ahInterface)
| (ah_string, ah_node_id, ah_ap_interface, ah_mac_protocol, ah_interface_type, ah_interface_mode) = mibBuilder.importSymbols('AH-SMI-MIB', 'AhString', 'AhNodeID', 'ahAPInterface', 'AhMACProtocol', 'AhInterfaceType', 'AhInterfaceMode')
(object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_intersection, constraints_union, single_value_constraint, value_size_constraint, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ConstraintsUnion', 'SingleValueConstraint', 'ValueSizeConstraint', 'ValueRangeConstraint')
(if_entry, if_index) = mibBuilder.importSymbols('IF-MIB', 'ifEntry', 'ifIndex')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(ip_address, counter32, notification_type, module_identity, gauge32, object_identity, unsigned32, time_ticks, bits, counter64, iso, mib_identifier, integer32, mib_scalar, mib_table, mib_table_row, mib_table_column) = mibBuilder.importSymbols('SNMPv2-SMI', 'IpAddress', 'Counter32', 'NotificationType', 'ModuleIdentity', 'Gauge32', 'ObjectIdentity', 'Unsigned32', 'TimeTicks', 'Bits', 'Counter64', 'iso', 'MibIdentifier', 'Integer32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn')
(textual_convention, display_string, truth_value) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString', 'TruthValue')
ah_interface = module_identity((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1))
if mibBuilder.loadTexts:
ahInterface.setLastUpdated('200806160000Z')
if mibBuilder.loadTexts:
ahInterface.setOrganization('Aerohive Networks, Inc')
class Ahauthenticationmethod(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10))
named_values = named_values(('cwp', 0), ('open', 1), ('wep-open', 2), ('wep-shared', 3), ('wpa-psk', 4), ('wpa2-psk', 5), ('wpa-8021x', 6), ('wpa2-8021X', 7), ('wpa-auto-psk', 8), ('wpa-auto-8021x', 9), ('dynamic-wep', 10))
class Ahencrytionmethod(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1, 2, 3))
named_values = named_values(('AES', 0), ('TKIP', 1), ('WEP', 2), ('Non', 3))
ah_x_if_table = mib_table((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 1))
if mibBuilder.loadTexts:
ahXIfTable.setStatus('current')
ah_x_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 1, 1))
ifEntry.registerAugmentions(('AH-INTERFACE-MIB', 'ahXIfEntry'))
ahXIfEntry.setIndexNames(*ifEntry.getIndexNames())
if mibBuilder.loadTexts:
ahXIfEntry.setStatus('current')
ah_if_name = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 1, 1, 1), ah_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahIfName.setStatus('current')
ah_ssid_name = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 1, 1, 2), ah_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahSSIDName.setStatus('current')
ah_if_promiscuous = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 1, 1, 3), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahIfPromiscuous.setStatus('current')
ah_if_type = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 1, 1, 4), ah_interface_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahIfType.setStatus('current')
ah_if_mode = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 1, 1, 5), ah_interface_mode()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahIfMode.setStatus('current')
ah_if_conf_mode = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 1, 1, 6), ah_interface_mode()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahIfConfMode.setStatus('current')
ah_association_table = mib_table((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2))
if mibBuilder.loadTexts:
ahAssociationTable.setStatus('current')
ah_association_entry = mib_table_row((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'AH-INTERFACE-MIB', 'ahClientMac'))
if mibBuilder.loadTexts:
ahAssociationEntry.setStatus('current')
ah_client_mac = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 1), ah_node_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientMac.setStatus('current')
ah_client_ip = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientIP.setStatus('current')
ah_client_hostname = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 3), ah_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientHostname.setStatus('current')
ah_client_rssi = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientRSSI.setStatus('current')
ah_client_link_uptime = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientLinkUptime.setStatus('current')
ah_client_cwp_used = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 6), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientCWPUsed.setStatus('current')
ah_client_auth_method = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 7), ah_authentication_method()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientAuthMethod.setStatus('current')
ah_client_encryption_method = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 8), ah_encrytion_method()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientEncryptionMethod.setStatus('current')
ah_client_mac_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 9), ah_mac_protocol()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientMACProtocol.setStatus('current')
ah_client_ssid = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 10), ah_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientSSID.setStatus('current')
ah_client_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientVLAN.setStatus('current')
ah_client_user_prof_id = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientUserProfId.setStatus('current')
ah_client_channel = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientChannel.setStatus('current')
ah_client_last_tx_rate = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientLastTxRate.setStatus('current')
ah_client_username = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 15), ah_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientUsername.setStatus('current')
ah_client_rx_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientRxDataFrames.setStatus('current')
ah_client_rx_data_octets = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientRxDataOctets.setStatus('current')
ah_client_rx_mgt_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientRxMgtFrames.setStatus('current')
ah_client_rx_unicast_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientRxUnicastFrames.setStatus('current')
ah_client_rx_multicast_frames = mib_scalar((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientRxMulticastFrames.setStatus('current')
ah_client_rx_broadcast_frames = mib_scalar((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientRxBroadcastFrames.setStatus('current')
ah_client_rx_mic_failures = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientRxMICFailures.setStatus('current')
ah_client_tx_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientTxDataFrames.setStatus('current')
ah_client_tx_mgt_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientTxMgtFrames.setStatus('current')
ah_client_tx_data_octets = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 25), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientTxDataOctets.setStatus('current')
ah_client_tx_unicast_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 26), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientTxUnicastFrames.setStatus('current')
ah_client_tx_multicast_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 27), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientTxMulticastFrames.setStatus('current')
ah_client_tx_broadcast_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 28), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientTxBroadcastFrames.setStatus('current')
ah_client_last_rx_rate = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 29), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientLastRxRate.setStatus('current')
ah_client_tx_be_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 30), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientTxBeDataFrames.setStatus('current')
ah_client_tx_bg_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 31), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientTxBgDataFrames.setStatus('current')
ah_client_tx_vi_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 32), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientTxViDataFrames.setStatus('current')
ah_client_tx_vo_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 33), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientTxVoDataFrames.setStatus('current')
ah_client_tx_airtime = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 34), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientTxAirtime.setStatus('current')
ah_client_rx_airtime = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 35), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientRxAirtime.setStatus('current')
ah_client_association_time = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 36), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientAssociationTime.setStatus('current')
ah_client_bssid = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 2, 1, 37), ah_node_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahClientBSSID.setStatus('current')
ah_radio_stats_table = mib_table((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3))
if mibBuilder.loadTexts:
ahRadioStatsTable.setStatus('current')
ah_radio_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
ahRadioStatsEntry.setStatus('current')
ah_radio_tx_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioTxDataFrames.setStatus('current')
ah_radio_tx_unicast_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioTxUnicastDataFrames.setStatus('current')
ah_radio_tx_multicast_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioTxMulticastDataFrames.setStatus('current')
ah_radio_tx_broadcast_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioTxBroadcastDataFrames.setStatus('current')
ah_radio_tx_non_beacon_mgt_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioTxNonBeaconMgtFrames.setStatus('current')
ah_radio_tx_beacon_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioTxBeaconFrames.setStatus('current')
ah_radio_tx_total_retries = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioTxTotalRetries.setStatus('current')
ah_radio_tx_total_frames_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioTxTotalFramesDropped.setStatus('current')
ah_radio_tx_total_frame_errors = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioTxTotalFrameErrors.setStatus('current')
ah_radio_tx_fe_for_excessive_hw_retries = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioTxFEForExcessiveHWRetries.setStatus('current')
ah_radio_rx_total_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioRxTotalDataFrames.setStatus('current')
ah_radio_rx_unicast_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioRxUnicastDataFrames.setStatus('current')
ah_radio_rx_multicast_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioRxMulticastDataFrames.setStatus('current')
ah_radio_rx_broadcast_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioRxBroadcastDataFrames.setStatus('current')
ah_radio_rx_mgt_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioRxMgtFrames.setStatus('current')
ah_radio_rx_total_frame_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioRxTotalFrameDropped.setStatus('current')
ah_radio_tx_be_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioTxBeDataFrames.setStatus('current')
ah_radio_tx_bg_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioTxBgDataFrames.setStatus('current')
ah_radio_tx_vi_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioTxViDataFrames.setStatus('current')
ah_radio_tx_vo_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioTxVoDataFrames.setStatus('current')
ah_radio_txrts_failures = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioTXRTSFailures.setStatus('current')
ah_radio_tx_airtime = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 22), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioTxAirtime.setStatus('current')
ah_radio_rx_airtime = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 3, 1, 23), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioRxAirtime.setStatus('current')
ah_v_if_stats_table = mib_table((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4))
if mibBuilder.loadTexts:
ahVIfStatsTable.setStatus('current')
ah_v_if_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
ahVIfStatsEntry.setStatus('current')
ah_v_if_rx_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahVIfRxDataFrames.setStatus('current')
ah_v_if_rx_unicast_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahVIfRxUnicastDataFrames.setStatus('current')
ah_v_if_rx_multicast_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahVIfRxMulticastDataFrames.setStatus('current')
ah_v_if_rx_broadcast_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahVIfRxBroadcastDataFrames.setStatus('current')
ah_v_if_rx_error_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahVIfRxErrorFrames.setStatus('current')
ah_v_if_rx_dropped_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahVIfRxDroppedFrames.setStatus('current')
ah_v_if_tx_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahVIfTxDataFrames.setStatus('current')
ah_v_if_tx_unicast_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahVIfTxUnicastDataFrames.setStatus('current')
ah_v_if_tx_multicast_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahVIfTxMulticastDataFrames.setStatus('current')
ah_v_if_tx_broadcast_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahVIfTxBroadcastDataFrames.setStatus('current')
ah_v_if_tx_error_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahVIfTxErrorFrames.setStatus('current')
ah_v_if_tx_dropped_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahVIfTxDroppedFrames.setStatus('current')
ah_v_if_tx_be_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahVIfTxBeDataFrames.setStatus('current')
ah_v_if_tx_bg_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahVIfTxBgDataFrames.setStatus('current')
ah_v_if_tx_vi_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahVIfTxViDataFrames.setStatus('current')
ah_v_if_tx_vo_data_frames = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahVIfTxVoDataFrames.setStatus('current')
ah_vif_tx_airtime = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 17), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahVifTxAirtime.setStatus('current')
ah_vif_rx_airtime = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 4, 1, 18), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahVifRxAirtime.setStatus('current')
ah_radio_attribute_table = mib_table((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 5))
if mibBuilder.loadTexts:
ahRadioAttributeTable.setStatus('current')
ah_radio_attribute_entry = mib_table_row((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 5, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
ahRadioAttributeEntry.setStatus('current')
ah_radio_channel = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 5, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioChannel.setStatus('current')
ah_radio_tx_power = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 5, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioTxPower.setStatus('current')
ah_radio_noise_floor = mib_table_column((1, 3, 6, 1, 4, 1, 26928, 1, 1, 1, 2, 1, 5, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ahRadioNoiseFloor.setStatus('current')
mibBuilder.exportSymbols('AH-INTERFACE-MIB', ahClientEncryptionMethod=ahClientEncryptionMethod, ahClientUsername=ahClientUsername, ahAssociationTable=ahAssociationTable, AhEncrytionMethod=AhEncrytionMethod, ahVIfTxBroadcastDataFrames=ahVIfTxBroadcastDataFrames, ahVIfRxUnicastDataFrames=ahVIfRxUnicastDataFrames, ahRadioTXRTSFailures=ahRadioTXRTSFailures, ahRadioRxTotalDataFrames=ahRadioRxTotalDataFrames, ahXIfEntry=ahXIfEntry, ahRadioRxMgtFrames=ahRadioRxMgtFrames, ahClientRxMICFailures=ahClientRxMICFailures, ahRadioTxUnicastDataFrames=ahRadioTxUnicastDataFrames, ahClientTxMgtFrames=ahClientTxMgtFrames, ahRadioTxPower=ahRadioTxPower, ahVIfTxVoDataFrames=ahVIfTxVoDataFrames, ahRadioTxBroadcastDataFrames=ahRadioTxBroadcastDataFrames, ahClientRxDataFrames=ahClientRxDataFrames, ahRadioChannel=ahRadioChannel, ahRadioTxTotalFramesDropped=ahRadioTxTotalFramesDropped, ahAssociationEntry=ahAssociationEntry, ahIfName=ahIfName, ahRadioTxViDataFrames=ahRadioTxViDataFrames, ahRadioTxTotalFrameErrors=ahRadioTxTotalFrameErrors, ahVIfTxBgDataFrames=ahVIfTxBgDataFrames, ahClientHostname=ahClientHostname, ahRadioRxTotalFrameDropped=ahRadioRxTotalFrameDropped, ahClientTxBgDataFrames=ahClientTxBgDataFrames, ahClientMACProtocol=ahClientMACProtocol, ahClientTxDataOctets=ahClientTxDataOctets, ahClientVLAN=ahClientVLAN, ahClientRSSI=ahClientRSSI, ahXIfTable=ahXIfTable, ahSSIDName=ahSSIDName, ahClientIP=ahClientIP, ahVIfTxViDataFrames=ahVIfTxViDataFrames, ahRadioTxBeDataFrames=ahRadioTxBeDataFrames, ahRadioRxAirtime=ahRadioRxAirtime, ahRadioNoiseFloor=ahRadioNoiseFloor, ahClientAssociationTime=ahClientAssociationTime, ahVIfTxErrorFrames=ahVIfTxErrorFrames, ahIfMode=ahIfMode, ahRadioStatsTable=ahRadioStatsTable, ahRadioTxTotalRetries=ahRadioTxTotalRetries, ahClientRxAirtime=ahClientRxAirtime, ahClientRxBroadcastFrames=ahClientRxBroadcastFrames, ahClientTxBroadcastFrames=ahClientTxBroadcastFrames, ahRadioTxDataFrames=ahRadioTxDataFrames, ahVifTxAirtime=ahVifTxAirtime, ahClientTxDataFrames=ahClientTxDataFrames, ahRadioTxMulticastDataFrames=ahRadioTxMulticastDataFrames, ahVIfRxErrorFrames=ahVIfRxErrorFrames, ahClientChannel=ahClientChannel, ahClientRxMulticastFrames=ahClientRxMulticastFrames, ahClientLastRxRate=ahClientLastRxRate, ahIfType=ahIfType, ahVIfTxUnicastDataFrames=ahVIfTxUnicastDataFrames, ahVIfTxBeDataFrames=ahVIfTxBeDataFrames, ahRadioStatsEntry=ahRadioStatsEntry, ahRadioTxVoDataFrames=ahRadioTxVoDataFrames, ahClientLastTxRate=ahClientLastTxRate, ahRadioAttributeTable=ahRadioAttributeTable, AhAuthenticationMethod=AhAuthenticationMethod, ahClientRxMgtFrames=ahClientRxMgtFrames, PYSNMP_MODULE_ID=ahInterface, ahRadioTxBeaconFrames=ahRadioTxBeaconFrames, ahVIfRxDataFrames=ahVIfRxDataFrames, ahClientUserProfId=ahClientUserProfId, ahVifRxAirtime=ahVifRxAirtime, ahClientLinkUptime=ahClientLinkUptime, ahClientTxBeDataFrames=ahClientTxBeDataFrames, ahVIfTxDataFrames=ahVIfTxDataFrames, ahClientMac=ahClientMac, ahVIfRxBroadcastDataFrames=ahVIfRxBroadcastDataFrames, ahIfPromiscuous=ahIfPromiscuous, ahClientTxUnicastFrames=ahClientTxUnicastFrames, ahRadioRxUnicastDataFrames=ahRadioRxUnicastDataFrames, ahRadioRxMulticastDataFrames=ahRadioRxMulticastDataFrames, ahClientSSID=ahClientSSID, ahClientTxAirtime=ahClientTxAirtime, ahVIfTxMulticastDataFrames=ahVIfTxMulticastDataFrames, ahClientCWPUsed=ahClientCWPUsed, ahClientAuthMethod=ahClientAuthMethod, ahRadioAttributeEntry=ahRadioAttributeEntry, ahVIfTxDroppedFrames=ahVIfTxDroppedFrames, ahRadioTxNonBeaconMgtFrames=ahRadioTxNonBeaconMgtFrames, ahVIfStatsTable=ahVIfStatsTable, ahRadioTxAirtime=ahRadioTxAirtime, ahRadioTxBgDataFrames=ahRadioTxBgDataFrames, ahRadioTxFEForExcessiveHWRetries=ahRadioTxFEForExcessiveHWRetries, ahVIfStatsEntry=ahVIfStatsEntry, ahClientTxViDataFrames=ahClientTxViDataFrames, ahVIfRxMulticastDataFrames=ahVIfRxMulticastDataFrames, ahClientBSSID=ahClientBSSID, ahClientTxMulticastFrames=ahClientTxMulticastFrames, ahVIfRxDroppedFrames=ahVIfRxDroppedFrames, ahRadioRxBroadcastDataFrames=ahRadioRxBroadcastDataFrames, ahClientRxUnicastFrames=ahClientRxUnicastFrames, ahClientTxVoDataFrames=ahClientTxVoDataFrames, ahClientRxDataOctets=ahClientRxDataOctets, ahIfConfMode=ahIfConfMode, ahInterface=ahInterface) |
__author__ = '@britodfbr'
def quack():
m = "Quack!"
print(m)
return m
def squeak():
m = "Squeak!"
print(m)
return m
def mute_quack():
m = "<< silence >>"
print(m)
return m
| __author__ = '@britodfbr'
def quack():
m = 'Quack!'
print(m)
return m
def squeak():
m = 'Squeak!'
print(m)
return m
def mute_quack():
m = '<< silence >>'
print(m)
return m |
if __name__ == '__main__':
n = int(input())
student_marks = {}
for i in range(n):
name, *line = input().split()
scores = list(map(float, line))
student_marks[name] = scores
query_name = input()
x = student_marks[query_name]
# y = len(x)
summ = 0
for i in range(3):
summ = x[i] + summ
print("{0:.2f}".format(summ/3))
| if __name__ == '__main__':
n = int(input())
student_marks = {}
for i in range(n):
(name, *line) = input().split()
scores = list(map(float, line))
student_marks[name] = scores
query_name = input()
x = student_marks[query_name]
summ = 0
for i in range(3):
summ = x[i] + summ
print('{0:.2f}'.format(summ / 3)) |
#!/usr/bin/env python
# encoding: utf-8
class Solution:
def intersection(self, nums1: List[int], nums2: List[int]) -> List[int]:
# let's assume len(nums1) > len(nums2)
if len(nums1) < len(nums2):
nums1, nums2 = nums2, nums1
# build lookup table for nums1
lookup = set(nums1)
ans = []
for num in nums2:
if num in lookup:
ans.append(num)
lookup.remove(num)
return ans
| class Solution:
def intersection(self, nums1: List[int], nums2: List[int]) -> List[int]:
if len(nums1) < len(nums2):
(nums1, nums2) = (nums2, nums1)
lookup = set(nums1)
ans = []
for num in nums2:
if num in lookup:
ans.append(num)
lookup.remove(num)
return ans |
# generated from catkin/cmake/template/pkg.context.pc.in
CATKIN_PACKAGE_PREFIX = ""
PROJECT_PKG_CONFIG_INCLUDE_DIRS = "/home/nvidia/linorobot_ws/src/linorobot/include".split(';') if "/home/nvidia/linorobot_ws/src/linorobot/include" != "" else []
PROJECT_CATKIN_DEPENDS = "roscpp;rospy;tf2;tf2_ros;nav_msgs;lino_msgs;geometry_msgs;sensor_msgs;std_msgs".replace(';', ' ')
PKG_CONFIG_LIBRARIES_WITH_PREFIX = "-llinorobot".split(';') if "-llinorobot" != "" else []
PROJECT_NAME = "linorobot"
PROJECT_SPACE_DIR = "/home/nvidia/linorobot_ws/devel"
PROJECT_VERSION = "1.4.1"
| catkin_package_prefix = ''
project_pkg_config_include_dirs = '/home/nvidia/linorobot_ws/src/linorobot/include'.split(';') if '/home/nvidia/linorobot_ws/src/linorobot/include' != '' else []
project_catkin_depends = 'roscpp;rospy;tf2;tf2_ros;nav_msgs;lino_msgs;geometry_msgs;sensor_msgs;std_msgs'.replace(';', ' ')
pkg_config_libraries_with_prefix = '-llinorobot'.split(';') if '-llinorobot' != '' else []
project_name = 'linorobot'
project_space_dir = '/home/nvidia/linorobot_ws/devel'
project_version = '1.4.1' |
"""Generated definition of cpp_grpc_compile."""
load("@rules_proto//proto:defs.bzl", "ProtoInfo")
load(
"//:defs.bzl",
"ProtoLibraryAspectNodeInfo",
"ProtoPluginInfo",
"proto_compile_aspect_attrs",
"proto_compile_aspect_impl",
"proto_compile_attrs",
"proto_compile_impl",
)
# Create aspect for cpp_grpc_compile
cpp_grpc_compile_aspect = aspect(
implementation = proto_compile_aspect_impl,
provides = [ProtoLibraryAspectNodeInfo],
attr_aspects = ["deps"],
attrs = dict(
proto_compile_aspect_attrs,
_plugins = attr.label_list(
doc = "List of protoc plugins to apply",
providers = [ProtoPluginInfo],
default = [
Label("//cpp:cpp_plugin"),
Label("//cpp:grpc_cpp_plugin"),
],
),
_prefix = attr.string(
doc = "String used to disambiguate aspects when generating outputs",
default = "cpp_grpc_compile_aspect",
),
),
toolchains = [str(Label("//protobuf:toolchain_type"))],
)
# Create compile rule
_rule = rule(
implementation = proto_compile_impl,
attrs = dict(
proto_compile_attrs,
protos = attr.label_list(
mandatory = False, # TODO: set to true in 4.0.0 when deps removed below
providers = [ProtoInfo],
doc = "List of labels that provide the ProtoInfo provider (such as proto_library from rules_proto)",
),
deps = attr.label_list(
mandatory = False,
providers = [ProtoInfo, ProtoLibraryAspectNodeInfo],
aspects = [cpp_grpc_compile_aspect],
doc = "DEPRECATED: Use protos attr",
),
_plugins = attr.label_list(
providers = [ProtoPluginInfo],
default = [
Label("//cpp:cpp_plugin"),
Label("//cpp:grpc_cpp_plugin"),
],
doc = "List of protoc plugins to apply",
),
),
toolchains = [str(Label("//protobuf:toolchain_type"))],
)
# Create macro for converting attrs and passing to compile
def cpp_grpc_compile(**kwargs):
_rule(
verbose_string = "{}".format(kwargs.get("verbose", 0)),
**kwargs
)
| """Generated definition of cpp_grpc_compile."""
load('@rules_proto//proto:defs.bzl', 'ProtoInfo')
load('//:defs.bzl', 'ProtoLibraryAspectNodeInfo', 'ProtoPluginInfo', 'proto_compile_aspect_attrs', 'proto_compile_aspect_impl', 'proto_compile_attrs', 'proto_compile_impl')
cpp_grpc_compile_aspect = aspect(implementation=proto_compile_aspect_impl, provides=[ProtoLibraryAspectNodeInfo], attr_aspects=['deps'], attrs=dict(proto_compile_aspect_attrs, _plugins=attr.label_list(doc='List of protoc plugins to apply', providers=[ProtoPluginInfo], default=[label('//cpp:cpp_plugin'), label('//cpp:grpc_cpp_plugin')]), _prefix=attr.string(doc='String used to disambiguate aspects when generating outputs', default='cpp_grpc_compile_aspect')), toolchains=[str(label('//protobuf:toolchain_type'))])
_rule = rule(implementation=proto_compile_impl, attrs=dict(proto_compile_attrs, protos=attr.label_list(mandatory=False, providers=[ProtoInfo], doc='List of labels that provide the ProtoInfo provider (such as proto_library from rules_proto)'), deps=attr.label_list(mandatory=False, providers=[ProtoInfo, ProtoLibraryAspectNodeInfo], aspects=[cpp_grpc_compile_aspect], doc='DEPRECATED: Use protos attr'), _plugins=attr.label_list(providers=[ProtoPluginInfo], default=[label('//cpp:cpp_plugin'), label('//cpp:grpc_cpp_plugin')], doc='List of protoc plugins to apply')), toolchains=[str(label('//protobuf:toolchain_type'))])
def cpp_grpc_compile(**kwargs):
_rule(verbose_string='{}'.format(kwargs.get('verbose', 0)), **kwargs) |
class A:
def __init__(self):
self._x = 1
def _foo(self):
print(self._x)
a = A()
a._f<caret>oo()
print(a._x) | class A:
def __init__(self):
self._x = 1
def _foo(self):
print(self._x)
a = a()
a._f < caret > oo()
print(a._x) |
n = int(input())
a = map(int, input().split())
c = 0
for i in a:
while(i % 2 == 0 or i % 3 == 2):
i -= 1
c += 1
print(c)
| n = int(input())
a = map(int, input().split())
c = 0
for i in a:
while i % 2 == 0 or i % 3 == 2:
i -= 1
c += 1
print(c) |
class Node:
def __init__(self, dataval):
self.dataval = dataval
self.nextval = None
self.preval = None
class CLinkedList:
def __init__(self):
self.headval = None
def AtBeginning(self, newdata):
if self.headval == None:
NewNode = Node(newdata)
self.headval = NewNode
else:
NewNode = Node(newdata)
temp = self.headval
while temp.nextval is not None:
if temp.nextval == self.headval:
break
temp = temp.nextval
NewNode.preval = temp
NewNode.nextval = self.headval
self.headval.preval = NewNode
self.headval = NewNode
temp.nextval = self.headval
def AtEnd(self, newdata):
NewNode = Node(newdata)
temp = self.headval
while temp.nextval is not None:
if temp.nextval == self.headval:
break
temp = temp.nextval
temp.nextval = NewNode
NewNode.preval = temp
NewNode.nextval = self.headval
self.headval.preval = NewNode
def InBetween(self, middle_node, newdata):
temp = self.headval
while temp is not None:
if temp.dataval == middle_node:
break
temp = temp.nextval
else:
print("Could not find node")
return
NewNode = Node(newdata)
NewNode.nextval = temp.nextval
NewNode.preval = temp
temp.nextval = NewNode
def removeStart(self):
temp = self.headval
while temp.nextval is not None:
if temp.nextval == self.headval:
break
temp = temp.nextval
temp.nextval = self.headval.nextval
self.headval.nextval.preval = temp
self.headval = self.headval.nextval
def removeEnd(self):
temp = self.headval
if temp == None:
return
else:
while temp.nextval is not None:
if temp.nextval.nextval == self.headval:
break
temp = temp.nextval
temp.nextval = self.headval
self.headval.preval = temp
def listprint(self):
temp = self.headval
if temp == None:
return
else:
while temp.nextval is not None:
print(temp.dataval)
if temp.nextval == self.headval:
break
temp = temp.nextval
def listcount(self):
temp = self.headval
if temp == None:
return 0
count = 0
while temp.nextval is not None:
count += 1
if temp.nextval == self.headval:
break
temp = temp.nextval
return count
def removeMiddle(self, removeKey):
temp = self.headval
while temp is not None:
if temp.nextval.dataval == removeKey:
break
temp = temp.nextval
before = temp
key = self.headval
while key is not None:
if key.dataval == removeKey:
break
key = key.nextval
after = key.nextval
before.nextval = after
after.preval = before
| class Node:
def __init__(self, dataval):
self.dataval = dataval
self.nextval = None
self.preval = None
class Clinkedlist:
def __init__(self):
self.headval = None
def at_beginning(self, newdata):
if self.headval == None:
new_node = node(newdata)
self.headval = NewNode
else:
new_node = node(newdata)
temp = self.headval
while temp.nextval is not None:
if temp.nextval == self.headval:
break
temp = temp.nextval
NewNode.preval = temp
NewNode.nextval = self.headval
self.headval.preval = NewNode
self.headval = NewNode
temp.nextval = self.headval
def at_end(self, newdata):
new_node = node(newdata)
temp = self.headval
while temp.nextval is not None:
if temp.nextval == self.headval:
break
temp = temp.nextval
temp.nextval = NewNode
NewNode.preval = temp
NewNode.nextval = self.headval
self.headval.preval = NewNode
def in_between(self, middle_node, newdata):
temp = self.headval
while temp is not None:
if temp.dataval == middle_node:
break
temp = temp.nextval
else:
print('Could not find node')
return
new_node = node(newdata)
NewNode.nextval = temp.nextval
NewNode.preval = temp
temp.nextval = NewNode
def remove_start(self):
temp = self.headval
while temp.nextval is not None:
if temp.nextval == self.headval:
break
temp = temp.nextval
temp.nextval = self.headval.nextval
self.headval.nextval.preval = temp
self.headval = self.headval.nextval
def remove_end(self):
temp = self.headval
if temp == None:
return
else:
while temp.nextval is not None:
if temp.nextval.nextval == self.headval:
break
temp = temp.nextval
temp.nextval = self.headval
self.headval.preval = temp
def listprint(self):
temp = self.headval
if temp == None:
return
else:
while temp.nextval is not None:
print(temp.dataval)
if temp.nextval == self.headval:
break
temp = temp.nextval
def listcount(self):
temp = self.headval
if temp == None:
return 0
count = 0
while temp.nextval is not None:
count += 1
if temp.nextval == self.headval:
break
temp = temp.nextval
return count
def remove_middle(self, removeKey):
temp = self.headval
while temp is not None:
if temp.nextval.dataval == removeKey:
break
temp = temp.nextval
before = temp
key = self.headval
while key is not None:
if key.dataval == removeKey:
break
key = key.nextval
after = key.nextval
before.nextval = after
after.preval = before |
metadata = {
"sample_name": "",
"group_name": "",
"file_names": "",
"sequencing_platform": "",
"sequencing_type": "",
"pre_assembled": "",
"sample_type": "",
"organism": "",
"strain": "",
"subtype": {},
"country": "",
"region": "",
"city": "",
"zip_code": "",
"longitude": "",
"latitude": "",
"location_note": "",
"isolation_source": "",
"source_note": "",
"pathogenic": "",
"pathogenicity_note": "",
"collection_date": "",
"collected_by": "",
"usage_restrictions": "",
"release_date": "",
"email_address": "",
"notes": "",
"batch": "true"
}
default = {
"mandatory": [
"sequencing_platform",
"sequencing_type",
"collection_date"
],
"seed": {
"pre_assembled": "no",
"country": "unknown",
"isolation_source": "unknown",
"sample_type": "isolate",
"organism": "",
"pathogenic": "yes",
"usage_restrictions": "public"
}
}
| metadata = {'sample_name': '', 'group_name': '', 'file_names': '', 'sequencing_platform': '', 'sequencing_type': '', 'pre_assembled': '', 'sample_type': '', 'organism': '', 'strain': '', 'subtype': {}, 'country': '', 'region': '', 'city': '', 'zip_code': '', 'longitude': '', 'latitude': '', 'location_note': '', 'isolation_source': '', 'source_note': '', 'pathogenic': '', 'pathogenicity_note': '', 'collection_date': '', 'collected_by': '', 'usage_restrictions': '', 'release_date': '', 'email_address': '', 'notes': '', 'batch': 'true'}
default = {'mandatory': ['sequencing_platform', 'sequencing_type', 'collection_date'], 'seed': {'pre_assembled': 'no', 'country': 'unknown', 'isolation_source': 'unknown', 'sample_type': 'isolate', 'organism': '', 'pathogenic': 'yes', 'usage_restrictions': 'public'}} |
dataset_dir = './resource/dataset'
datasets = [
dataset_dir + '/NFLX_dataset_SAST.py',
dataset_dir + '/BVI_HD_dataset_SAST.py',
dataset_dir + '/CC_HD_dataset_SAST.py',
dataset_dir + '/MCL_V_dataset_SAST.py',
dataset_dir + '/IVP_dataset_SAST.py',
dataset_dir + '/VQEGHD3_dataset_SAST.py',
# dataset_dir + '/SHVC_dataset_SAST.py'
]
| dataset_dir = './resource/dataset'
datasets = [dataset_dir + '/NFLX_dataset_SAST.py', dataset_dir + '/BVI_HD_dataset_SAST.py', dataset_dir + '/CC_HD_dataset_SAST.py', dataset_dir + '/MCL_V_dataset_SAST.py', dataset_dir + '/IVP_dataset_SAST.py', dataset_dir + '/VQEGHD3_dataset_SAST.py'] |
animals = ['Octopus', 'Squid', 'Cuttlefish', 'Nautilus']
for animal in animals:
print(f"A {animal} would make a great pet!")
print("These animals lack bones and also remorse for their enemies.")
print("Any of these animals would make a great pet!")
| animals = ['Octopus', 'Squid', 'Cuttlefish', 'Nautilus']
for animal in animals:
print(f'A {animal} would make a great pet!')
print('These animals lack bones and also remorse for their enemies.')
print('Any of these animals would make a great pet!') |
# the following are from Goldsong on udacity
bad_subgrid = [[9,8,7,6,5,4,3,2,1],
[8,7,6,5,4,3,2,1,9],
[7,6,5,4,3,2,1,9,8],
[6,5,4,3,2,1,9,8,7],
[5,4,3,2,1,9,8,7,6],
[4,3,2,1,9,8,7,6,5],
[3,2,1,9,8,7,6,5,4],
[2,1,9,8,7,6,5,4,3],
[1,9,8,7,6,5,4,3,2]]
# floating point grid, from Goldsong
fpgd = [[2,9,0,0,0,0,0,7,0],
[3,0,6,0,0,8,4,0,0],
[8,0,0,0,4,0,0,0,2],
[0,2,0,0,3,1,0,0,7],
[0,0,0,0,8,0,0,0,0],
[1,0,0,9, 5.5, 0,0,6,0],
[7,0,0,0,9,0,0,0,1],
[0,0,1,2,0,0,3,0,6],
[0,3,0,0,0,0,0,5,9]]
# bool grid again from Goldsong. not included by default, because
# honestly it's not clear that it's wrong.
boolg = [[2,9,0,0, False, 0,0,7,0],
[3,0,6,0,0,8,4,0,0],
[8,0,0,0,4,0,0,0,2],
[0,2,0,0,3,1,0,0,7],
[0,0,0,0,8,0,0,0,0],
[1,0,0,9,5,0,0,6,0],
[7,0,0,0,9,0,0,0,1],
[0,0,1,2,0,0,3,0,6],
[0,3,0,0,0,0,0,5,9]]
# this one is also from Goldsong, not included by default
# totally dependent on whether you think that floating point numbers should be excluded or not
fpgd2 = [[2,9,0,0,0,0,0,7,0],
[3,0,6,0,0,8,4,0,0],
[8,0,0,0,4,0,0,0,2],
[0,2,0,0,3,1,0,0,7],
[0,0,0,0,8,0,0,0,0],
[1,0,0,9, 5., 0,0,6,0],
[7,0,0,0,9,0,0,0,1],
[0,0,1,2,0,0,3,0,6],
[0,3,0,0,0,0,0,5,9]]
# negative entries in grid
neggd = [[2,9,0,0,0,0,0,7,0],
[3,0,6,0,0,8,4,0,0],
[8,0,0,0,4,0,0,0,2],
[0,2,0,0,3,1,0,0,7],
[0,0,0,0,8,0,0,0,0],
[1,0,0,9, -5, 0,0,6,0],
[7,0,0,0,9,0,0,0,1],
[0,0,1,2,0,0,3,0,6],
[0,3,0,0,0,0,0,5,9]]
def fuzz_checker(check_sudoku, check_edges):
sanity_check_the_checker(check_sudoku, check_edges)
return True
def sanity_check_the_checker(sudoku_checker, check_edges):
""" given `sudoku_checker` a sudoku checker function, attempts to ferret out common issues with checking
for valid input. Raises AssertionError s if the function fails to conform to expectations"""
try:
valid_row = range(1, 10)
illegal = [0, [], range(10), [valid_row, valid_row, 0, range(9), 1, range(9), range(9), valid_row, valid_row],
[valid_row] * 8 + [[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]], fpgd, neggd]
illegal.append([[0] * 9] * 8 + [set(range(9))])
invalid = ([[1]*9] * 9, bad_subgrid)
edges = [fpgd2, boolg]
for s in illegal:
res = sudoku_checker(s)
assert res is None, "Failed to detect that {s} was illegal. Returned {res} instead of `None`".format(s=s, res=res)
for s in invalid:
res = sudoku_checker(s)
assert res is False, "Failed to return False for invalid sudoku {s}. Returned {res} instead of `False`".format(s=s, res=res)
base = [[0] * 9] * 9
for i in range(9):
s = base[:i]
res = sudoku_checker(s)
assert res is None, "Failed to detect that {s} was illegal. Returned {res} instead of `None`".format(s=s, res=res)
if check_edges:
for s in edges:
res = sudoku_checker(s)
assert res is None, "Checker failed to detect that {s} was illegal. Returned {res} instead of `None`".format(res=res, s=s)
except AssertionError:
raise
except Exception as e:
print("Raised error type {etype} with msg {emsg}.".format(etype=type(e), emsg=str(e)))
raise
return True
| bad_subgrid = [[9, 8, 7, 6, 5, 4, 3, 2, 1], [8, 7, 6, 5, 4, 3, 2, 1, 9], [7, 6, 5, 4, 3, 2, 1, 9, 8], [6, 5, 4, 3, 2, 1, 9, 8, 7], [5, 4, 3, 2, 1, 9, 8, 7, 6], [4, 3, 2, 1, 9, 8, 7, 6, 5], [3, 2, 1, 9, 8, 7, 6, 5, 4], [2, 1, 9, 8, 7, 6, 5, 4, 3], [1, 9, 8, 7, 6, 5, 4, 3, 2]]
fpgd = [[2, 9, 0, 0, 0, 0, 0, 7, 0], [3, 0, 6, 0, 0, 8, 4, 0, 0], [8, 0, 0, 0, 4, 0, 0, 0, 2], [0, 2, 0, 0, 3, 1, 0, 0, 7], [0, 0, 0, 0, 8, 0, 0, 0, 0], [1, 0, 0, 9, 5.5, 0, 0, 6, 0], [7, 0, 0, 0, 9, 0, 0, 0, 1], [0, 0, 1, 2, 0, 0, 3, 0, 6], [0, 3, 0, 0, 0, 0, 0, 5, 9]]
boolg = [[2, 9, 0, 0, False, 0, 0, 7, 0], [3, 0, 6, 0, 0, 8, 4, 0, 0], [8, 0, 0, 0, 4, 0, 0, 0, 2], [0, 2, 0, 0, 3, 1, 0, 0, 7], [0, 0, 0, 0, 8, 0, 0, 0, 0], [1, 0, 0, 9, 5, 0, 0, 6, 0], [7, 0, 0, 0, 9, 0, 0, 0, 1], [0, 0, 1, 2, 0, 0, 3, 0, 6], [0, 3, 0, 0, 0, 0, 0, 5, 9]]
fpgd2 = [[2, 9, 0, 0, 0, 0, 0, 7, 0], [3, 0, 6, 0, 0, 8, 4, 0, 0], [8, 0, 0, 0, 4, 0, 0, 0, 2], [0, 2, 0, 0, 3, 1, 0, 0, 7], [0, 0, 0, 0, 8, 0, 0, 0, 0], [1, 0, 0, 9, 5.0, 0, 0, 6, 0], [7, 0, 0, 0, 9, 0, 0, 0, 1], [0, 0, 1, 2, 0, 0, 3, 0, 6], [0, 3, 0, 0, 0, 0, 0, 5, 9]]
neggd = [[2, 9, 0, 0, 0, 0, 0, 7, 0], [3, 0, 6, 0, 0, 8, 4, 0, 0], [8, 0, 0, 0, 4, 0, 0, 0, 2], [0, 2, 0, 0, 3, 1, 0, 0, 7], [0, 0, 0, 0, 8, 0, 0, 0, 0], [1, 0, 0, 9, -5, 0, 0, 6, 0], [7, 0, 0, 0, 9, 0, 0, 0, 1], [0, 0, 1, 2, 0, 0, 3, 0, 6], [0, 3, 0, 0, 0, 0, 0, 5, 9]]
def fuzz_checker(check_sudoku, check_edges):
sanity_check_the_checker(check_sudoku, check_edges)
return True
def sanity_check_the_checker(sudoku_checker, check_edges):
""" given `sudoku_checker` a sudoku checker function, attempts to ferret out common issues with checking
for valid input. Raises AssertionError s if the function fails to conform to expectations"""
try:
valid_row = range(1, 10)
illegal = [0, [], range(10), [valid_row, valid_row, 0, range(9), 1, range(9), range(9), valid_row, valid_row], [valid_row] * 8 + [[0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]], fpgd, neggd]
illegal.append([[0] * 9] * 8 + [set(range(9))])
invalid = ([[1] * 9] * 9, bad_subgrid)
edges = [fpgd2, boolg]
for s in illegal:
res = sudoku_checker(s)
assert res is None, 'Failed to detect that {s} was illegal. Returned {res} instead of `None`'.format(s=s, res=res)
for s in invalid:
res = sudoku_checker(s)
assert res is False, 'Failed to return False for invalid sudoku {s}. Returned {res} instead of `False`'.format(s=s, res=res)
base = [[0] * 9] * 9
for i in range(9):
s = base[:i]
res = sudoku_checker(s)
assert res is None, 'Failed to detect that {s} was illegal. Returned {res} instead of `None`'.format(s=s, res=res)
if check_edges:
for s in edges:
res = sudoku_checker(s)
assert res is None, 'Checker failed to detect that {s} was illegal. Returned {res} instead of `None`'.format(res=res, s=s)
except AssertionError:
raise
except Exception as e:
print('Raised error type {etype} with msg {emsg}.'.format(etype=type(e), emsg=str(e)))
raise
return True |
class Solution(object):
def shortestToChar(self, S, C):
prev = float('-inf')
ans = []
for i, x in enumerate(S):
if x == C: prev = i
ans.append(i - prev)
prev = float('inf')
for i in xrange(len(S) - 1, -1, -1):
if S[i] == C: prev = i
ans[i] = min(ans[i], prev - i)
return ans
| class Solution(object):
def shortest_to_char(self, S, C):
prev = float('-inf')
ans = []
for (i, x) in enumerate(S):
if x == C:
prev = i
ans.append(i - prev)
prev = float('inf')
for i in xrange(len(S) - 1, -1, -1):
if S[i] == C:
prev = i
ans[i] = min(ans[i], prev - i)
return ans |
################################################################################
# Author: Fanyang Cheng
# Date: 2/23/2021
# This program asks user for five grads,gives the letter grade and calculate
# average.
################################################################################
def get_valid_score(): #define get_valid_score.
while True: # start the asking loop.
s = float(input("Enter a score: ")) #ask for input.
if s<=100 and s>=0:
break #meet the need, stop asking.
print("Invalid Input. Please try again.") #or give the warning.
return s # return output.
def calc_average(l): #define the function calc_average. And the l is a list, which would allow any amount of scores.
s = sum(l) #give the sum of all scores.
avg = s/len(l) #then the average.
return avg # return result.
def determine_grade(s): #define determine_grade.
#a typical if-elif structure.
if s<=100 and s>=90:
return "A"
elif s<90 and s>=80:
return "B"
elif s<80 and s>=70:
return "C"
elif s<70 and s>=60:
return "D"
else:
return "F"
def main(): #define main function.
score = [] #define a list to store score.
for i in range(5): #give five scores
s = get_valid_score()
lg = determine_grade(s) #find the letter grade.
print("The letter grade for ",format(s,'.1f')," is ",lg,".",sep = "") # show the letter grade.
score.append(s) #add the grade into score list.
avg = calc_average(score) #calculate average score.
print("The average score is ",format(avg,'.2f'),".",sep = "")
if __name__ == "__main__":
main() #run.
| def get_valid_score():
while True:
s = float(input('Enter a score: '))
if s <= 100 and s >= 0:
break
print('Invalid Input. Please try again.')
return s
def calc_average(l):
s = sum(l)
avg = s / len(l)
return avg
def determine_grade(s):
if s <= 100 and s >= 90:
return 'A'
elif s < 90 and s >= 80:
return 'B'
elif s < 80 and s >= 70:
return 'C'
elif s < 70 and s >= 60:
return 'D'
else:
return 'F'
def main():
score = []
for i in range(5):
s = get_valid_score()
lg = determine_grade(s)
print('The letter grade for ', format(s, '.1f'), ' is ', lg, '.', sep='')
score.append(s)
avg = calc_average(score)
print('The average score is ', format(avg, '.2f'), '.', sep='')
if __name__ == '__main__':
main() |
#!/usr/bin/python3
"""
Helper class to parse the ini files.
Please note that there is also a python module named configparser. However,
as the example ini module contanined no section header for the first
entry (HOSTKEY), we wrote our own
"""
class IniParser:
"""
Initializes a DHT_TRACE_REPLY message to send later.
:param filename: The filename. Example: "config.ini"
:type filename: string
"""
def __init__(self, filename):
self.data = {}
self.read_file(filename)
def read_file(self, filename):
"""
Open a new file and parse it
:param filename: The filename
:type filename: string
"""
currentsection = "" # The current seciotn in the parser (like [DHT] for example)
self.data = {}
self.data[currentsection] = {}
with open(filename) as f:
for line in f:
if line.strip()!="":
try:
if line != "":
if line.startswith('['):
currentsection = line.strip()[1:-1]
self.data[currentsection] = {}
else:
ar = line.split('=', 1 )
self.data[currentsection][ar[0].strip()] = ar[1].strip()
except:
print("NOTE: Could not parse line:", line)
def get(self, attribute, section=""):
"""
get an attribute of an ini file
:param attribute: The attribute
:param section: The section. Default is no section
:type attribute: string
:Example:
.. code-block:: python
#test.ini:
#[DHT]
#PORT = 123
inip = IniParser("test.ini")
inip.get("PORT", "DHT") # returns 123
"""
if section in self.data and attribute in self.data[section]:
return self.data[section][attribute]
else:
return None
| """
Helper class to parse the ini files.
Please note that there is also a python module named configparser. However,
as the example ini module contanined no section header for the first
entry (HOSTKEY), we wrote our own
"""
class Iniparser:
"""
Initializes a DHT_TRACE_REPLY message to send later.
:param filename: The filename. Example: "config.ini"
:type filename: string
"""
def __init__(self, filename):
self.data = {}
self.read_file(filename)
def read_file(self, filename):
"""
Open a new file and parse it
:param filename: The filename
:type filename: string
"""
currentsection = ''
self.data = {}
self.data[currentsection] = {}
with open(filename) as f:
for line in f:
if line.strip() != '':
try:
if line != '':
if line.startswith('['):
currentsection = line.strip()[1:-1]
self.data[currentsection] = {}
else:
ar = line.split('=', 1)
self.data[currentsection][ar[0].strip()] = ar[1].strip()
except:
print('NOTE: Could not parse line:', line)
def get(self, attribute, section=''):
"""
get an attribute of an ini file
:param attribute: The attribute
:param section: The section. Default is no section
:type attribute: string
:Example:
.. code-block:: python
#test.ini:
#[DHT]
#PORT = 123
inip = IniParser("test.ini")
inip.get("PORT", "DHT") # returns 123
"""
if section in self.data and attribute in self.data[section]:
return self.data[section][attribute]
else:
return None |
class Point(object):
def __init__(self, x, y):
self.x = x
self.y = y
def __repr__(self):
return 'Point({}:{})'.format(self.x, self.y)
def __add__(self, other):
return Point(self.x + other.x, self.y + other.y)
def __sub__(self, other):
return Point(self.x - other.x, self.y - other.y)
def __eq__(self, other):
return self.x == other.x and self.y == other.y
def __ne__(self, other):
return not(self == other)
class WordSearch(object):
def __init__(self, puzzle):
self.puzzle = [list(row) for row in puzzle]
def search(self, word):
dirs = [Point(i, j)
for j in range(-1, 2)
for i in range(-1, 2)
if i != 0 or j != 0]
points = [Point(x, y)
for y in range(len(self.puzzle))
for x in range(len(self.puzzle[y]))
if self.puzzle[y][x] == word[0]]
for p in points:
for d in dirs:
_p, i = (p + d, 1)
while True:
try:
if word[i] != self.puzzle[_p.y][_p.x]:
break
except IndexError:
break
i += 1
if i == len(word):
return (p, _p)
_p += d
| class Point(object):
def __init__(self, x, y):
self.x = x
self.y = y
def __repr__(self):
return 'Point({}:{})'.format(self.x, self.y)
def __add__(self, other):
return point(self.x + other.x, self.y + other.y)
def __sub__(self, other):
return point(self.x - other.x, self.y - other.y)
def __eq__(self, other):
return self.x == other.x and self.y == other.y
def __ne__(self, other):
return not self == other
class Wordsearch(object):
def __init__(self, puzzle):
self.puzzle = [list(row) for row in puzzle]
def search(self, word):
dirs = [point(i, j) for j in range(-1, 2) for i in range(-1, 2) if i != 0 or j != 0]
points = [point(x, y) for y in range(len(self.puzzle)) for x in range(len(self.puzzle[y])) if self.puzzle[y][x] == word[0]]
for p in points:
for d in dirs:
(_p, i) = (p + d, 1)
while True:
try:
if word[i] != self.puzzle[_p.y][_p.x]:
break
except IndexError:
break
i += 1
if i == len(word):
return (p, _p)
_p += d |
'''
Return the lowest index at which a value (second argument) should be inserted into an array (first argument) once it has been sorted.
The returned value should be a number.
For example, getIndexToIns([1,2,3,4], 1.5) should return 1 because it is greater than 1 (index 0), but less than 2 (index 1).
Likewise, getIndexToIns([20,3,5], 19) should return 2 because once the array has been sorted it will look like [3,5,20] and 19 is less than 20 (index 2) and greater than 5 (index 1).
'''
def getIndexToIns(arr, num):
# Count the number or arr elements that are less than num.
# That's the index where num would fit in an array sorted small to large.
return sum(v<num for v in arr)
getIndexToIns([40, 60], 50)
| """
Return the lowest index at which a value (second argument) should be inserted into an array (first argument) once it has been sorted.
The returned value should be a number.
For example, getIndexToIns([1,2,3,4], 1.5) should return 1 because it is greater than 1 (index 0), but less than 2 (index 1).
Likewise, getIndexToIns([20,3,5], 19) should return 2 because once the array has been sorted it will look like [3,5,20] and 19 is less than 20 (index 2) and greater than 5 (index 1).
"""
def get_index_to_ins(arr, num):
return sum((v < num for v in arr))
get_index_to_ins([40, 60], 50) |
class Solution:
def intervalIntersection(self, firstList: List[List[int]], secondList: List[List[int]]) -> List[List[int]]:
f_len, f = len(firstList), 0
s_len, s = len(secondList), 0
ans = []
while f < f_len and s < s_len:
low = max( firstList[f][0], secondList[s][0] )
hight = min( firstList[f][1], secondList[s][1] )
if low <= hight:
ans.append( [low, hight] )
if firstList[f][1] < secondList[s][1]:
f += 1
else:
s += 1
return ans
| class Solution:
def interval_intersection(self, firstList: List[List[int]], secondList: List[List[int]]) -> List[List[int]]:
(f_len, f) = (len(firstList), 0)
(s_len, s) = (len(secondList), 0)
ans = []
while f < f_len and s < s_len:
low = max(firstList[f][0], secondList[s][0])
hight = min(firstList[f][1], secondList[s][1])
if low <= hight:
ans.append([low, hight])
if firstList[f][1] < secondList[s][1]:
f += 1
else:
s += 1
return ans |
# -*- coding: utf-8 -*-
"""
Created on Tue Jun 4 18:58:22 2019
@author: Administrator
"""
class Solution:
def sortArray(self, nums: list) -> list:
# return self.quick_sort(nums, 0, len(nums)-1)
self.quick_sort(nums, 0, len(nums)-1)
return nums
# def quick_sort(self, nums, left, right):
# if left >= right:
# return nums
# head = left
# tail = right
# key = nums[left]
# while left < right:
# while left < right and nums[right] >= key:
# right -= 1
# nums[left] = nums[right]
# while left < right and nums[left] <= key:
# left += 1
# nums[right] = nums[left]
# nums[left] = key
# self.quick_sort(nums, head, left-1)
# self.quick_sort(nums, left+1, tail)
# return nums
def quick_sort(self, nums, left, right):
if left >= right:
return
head = left
tail = right
key = nums[left]
while left < right:
while left < right and nums[right] >= key:
right -= 1
nums[left] = nums[right]
while left < right and nums[left] <= key:
left += 1
nums[right] = nums[left]
nums[left] = key
self.quick_sort(nums, head, left-1)
self.quick_sort(nums, left+1, tail)
solu = Solution()
nums = [3,7,6,4,1,9]
print(solu.sortArray(nums)) | """
Created on Tue Jun 4 18:58:22 2019
@author: Administrator
"""
class Solution:
def sort_array(self, nums: list) -> list:
self.quick_sort(nums, 0, len(nums) - 1)
return nums
def quick_sort(self, nums, left, right):
if left >= right:
return
head = left
tail = right
key = nums[left]
while left < right:
while left < right and nums[right] >= key:
right -= 1
nums[left] = nums[right]
while left < right and nums[left] <= key:
left += 1
nums[right] = nums[left]
nums[left] = key
self.quick_sort(nums, head, left - 1)
self.quick_sort(nums, left + 1, tail)
solu = solution()
nums = [3, 7, 6, 4, 1, 9]
print(solu.sortArray(nums)) |
# Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# The Universal Permissive License (UPL), Version 1.0
#
# Subject to the condition set forth below, permission is hereby granted to any
# person obtaining a copy of this software, associated documentation and/or
# data (collectively the "Software"), free of charge and under any and all
# copyright rights in the Software, and any and all patent rights owned or
# freely licensable by each licensor hereunder covering either (i) the
# unmodified Software as contributed to or provided by such licensor, or (ii)
# the Larger Works (as defined below), to deal in both
#
# (a) the Software, and
#
# (b) any piece of software and/or hardware listed in the lrgrwrks.txt file if
# one is included with the Software each a "Larger Work" to which the Software
# is contributed by such licensors),
#
# without restriction, including without limitation the rights to copy, create
# derivative works of, display, perform, and distribute the Software and make,
# use, sell, offer for sale, import, export, have made, and have sold the
# Software and the Larger Work(s), and to sublicense the foregoing rights on
# either these or other terms.
#
# This license is subject to the following condition:
#
# The above copyright notice and either this complete permission notice or at a
# minimum a reference to the UPL must be included in all copies or substantial
# portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
def a_function():
pass
def wrapper():
values = []
def my_func(arg_l, kwarg_case="empty set", kwarg_other=19):
loc_1 = set(values)
loc_2 = set(values)
loc_3 = "set()"
def inner_func():
return kwarg_other + loc_2
try:
loc_1 &= kwarg_other
yield loc_1
except TypeError:
pass
else:
print("expected TypeError")
return my_func
def test_name():
assert a_function.__code__.co_name == "a_function"
def test_filename():
assert a_function.__code__.co_filename.rpartition("/")[2] == "test_code.py"
def test_firstlineno():
assert a_function.__code__.co_firstlineno == 41
def test_code_attributes():
code = wrapper().__code__
assert code.co_argcount == 3
assert code.co_kwonlyargcount == 0
assert code.co_nlocals == 6
assert code.co_stacksize >= code.co_nlocals
assert code.co_flags & (1 << 5)
assert not code.co_flags & (1 << 2)
assert not code.co_flags & (1 << 3)
# assert code.co_code
# assert code.co_consts
# assert set(code.co_names) == {'set', 'TypeError', 'print'}
assert set(code.co_varnames) == {'arg_l', 'kwarg_case', 'kwarg_other', 'loc_1', 'loc_3', 'inner_func'}
assert code.co_filename.endswith("test_code.py")
assert code.co_name == "my_func"
assert code.co_firstlineno == 48
# assert code.co_lnotab == b'\x00\x01\x0c\x01\x0c\x01\x06\x02\x15\x03\x03\x01\x0e\x01\r\x01\x05\x02'
assert set(code.co_freevars) == {'values'}
assert set(code.co_cellvars) == {'kwarg_other', 'loc_2'}
| def a_function():
pass
def wrapper():
values = []
def my_func(arg_l, kwarg_case='empty set', kwarg_other=19):
loc_1 = set(values)
loc_2 = set(values)
loc_3 = 'set()'
def inner_func():
return kwarg_other + loc_2
try:
loc_1 &= kwarg_other
yield loc_1
except TypeError:
pass
else:
print('expected TypeError')
return my_func
def test_name():
assert a_function.__code__.co_name == 'a_function'
def test_filename():
assert a_function.__code__.co_filename.rpartition('/')[2] == 'test_code.py'
def test_firstlineno():
assert a_function.__code__.co_firstlineno == 41
def test_code_attributes():
code = wrapper().__code__
assert code.co_argcount == 3
assert code.co_kwonlyargcount == 0
assert code.co_nlocals == 6
assert code.co_stacksize >= code.co_nlocals
assert code.co_flags & 1 << 5
assert not code.co_flags & 1 << 2
assert not code.co_flags & 1 << 3
assert set(code.co_varnames) == {'arg_l', 'kwarg_case', 'kwarg_other', 'loc_1', 'loc_3', 'inner_func'}
assert code.co_filename.endswith('test_code.py')
assert code.co_name == 'my_func'
assert code.co_firstlineno == 48
assert set(code.co_freevars) == {'values'}
assert set(code.co_cellvars) == {'kwarg_other', 'loc_2'} |
class Solution(object):
# def maxSubArray(self, nums):
# return self.maxSubArrayHelper(nums, 0, len(nums) - 1)
#
# def maxSubArrayHelper(self, nums, l, r):
# if l > r:
# return -2147483647
# mid = (l + r) / 2
# leftAns = self.maxSubArrayHelper(nums, l, mid - 1)
# rightAns = self.maxSubArrayHelper(nums, mid + 1, r)
# lMaxSum = res = 0
# for i in range(mid - 1, l -1, -1):
# res += nums[i]
# lMaxSum = max(res, lMaxSum)
# rMaxSum = res = 0
# for i in range(mid + 1, r + 1):
# res += nums[i]
# rMaxSum = max(res, rMaxSum)
# return max(lMaxSum + nums[mid] + rMaxSum, max(leftAns, rightAns))
# def maxSubArray(self, nums):
# """
# :type nums: List[int]
# :rtype: int
# """
# ls = len(nums)
# start = [0] * ls
# all = [0] * ls
# start[-1], all[-1] = nums[-1], nums[-1]
# for i in reversed(range(ls - 1)):
# start[i] = max(nums[i], nums[i] + start[i + 1])
# all[i] = max(start[i], all[i + 1])
# return all[0]
# def maxSubArray(self, nums):
# ls = len(nums)
# start, all = nums[-1], nums[-1]
# for i in reversed(range(ls - 1)):
# start = max(nums[i], nums[i] + start)
# all = max(start, all)
# return all
def maxSubArray(self, nums):
maxEndingHere = maxSofFar = nums[0]
for i in range(1, len(nums)):
maxEndingHere = max(maxEndingHere + nums[i], nums[i])
maxSofFar = max(maxEndingHere, maxSofFar)
return maxSofFar | class Solution(object):
def max_sub_array(self, nums):
max_ending_here = max_sof_far = nums[0]
for i in range(1, len(nums)):
max_ending_here = max(maxEndingHere + nums[i], nums[i])
max_sof_far = max(maxEndingHere, maxSofFar)
return maxSofFar |
if __name__ == "__main__":
count = int(input("[>] Enter count of students: "))
students = dict()
for i in range(count):
name = input("[>] Enter name: ")
estimation = int(input("[>] Enter estimation: "))
students[name] = estimation
print(f"[+] Second minimal: {list(sorted(students.keys()))[1]}")
| if __name__ == '__main__':
count = int(input('[>] Enter count of students: '))
students = dict()
for i in range(count):
name = input('[>] Enter name: ')
estimation = int(input('[>] Enter estimation: '))
students[name] = estimation
print(f'[+] Second minimal: {list(sorted(students.keys()))[1]}') |
# this script converts a hex byte array to hex string
input = ([0x01, 0x00, 0x00, 0x00, 0x01, 0x6b, 0xff, 0x7f, 0xcd, 0x4f, 0x85, 0x65, 0xef, 0x40, 0x6d, 0xd5, 0xd6, 0x3d, 0x4f, 0xf9, 0x4f, 0x31, 0x8f, 0xe8, 0x20, 0x27, 0xfd, 0x4d, 0xc4, 0x51, 0xb0, 0x44, 0x74, 0x01, 0x9f, 0x74, 0xb4, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x49, 0x30, 0x46, 0x02, 0x21, 0x00, 0xda, 0x0d, 0xc6, 0xae, 0xce, 0xfe, 0x1e, 0x06, 0xef, 0xdf, 0x05, 0x77, 0x37, 0x57, 0xde, 0xb1, 0x68, 0x82, 0x09, 0x30, 0xe3, 0xb0, 0xd0, 0x3f, 0x46, 0xf5, 0xfc, 0xf1, 0x50, 0xbf, 0x99, 0x0c, 0x02, 0x21, 0x00, 0xd2, 0x5b, 0x5c, 0x87, 0x04, 0x00, 0x76, 0xe4, 0xf2, 0x53, 0xf8, 0x26, 0x2e, 0x76, 0x3e, 0x2d, 0xd5, 0x1e, 0x7f, 0xf0, 0xbe, 0x15, 0x77, 0x27, 0xc4, 0xbc, 0x42, 0x80, 0x7f, 0x17, 0xbd, 0x39, 0x01, 0x41, 0x04, 0xe6, 0xc2, 0x6e, 0xf6, 0x7d, 0xc6, 0x10, 0xd2, 0xcd, 0x19, 0x24, 0x84, 0x78, 0x9a, 0x6c, 0xf9, 0xae, 0xa9, 0x93, 0x0b, 0x94, 0x4b, 0x7e, 0x2d, 0xb5, 0x34, 0x2b, 0x9d, 0x9e, 0x5b, 0x9f, 0xf7, 0x9a, 0xff, 0x9a, 0x2e, 0xe1, 0x97, 0x8d, 0xd7, 0xfd, 0x01, 0xdf, 0xc5, 0x22, 0xee, 0x02, 0x28, 0x3d, 0x3b, 0x06, 0xa9, 0xd0, 0x3a, 0xcf, 0x80, 0x96, 0x96, 0x8d, 0x7d, 0xbb, 0x0f, 0x91, 0x78, 0xff, 0xff, 0xff, 0xff, 0x02, 0x8b, 0xa7, 0x94, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x19, 0x76, 0xa9, 0x14, 0xba, 0xde, 0xec, 0xfd, 0xef, 0x05, 0x07, 0x24, 0x7f, 0xc8, 0xf7, 0x42, 0x41, 0xd7, 0x3b, 0xc0, 0x39, 0x97, 0x2d, 0x7b, 0x88, 0xac, 0x40, 0x94, 0xa8, 0x02, 0x00, 0x00, 0x00, 0x00, 0x19, 0x76, 0xa9, 0x14, 0xc1, 0x09, 0x32, 0x48, 0x3f, 0xec, 0x93, 0xed, 0x51, 0xf5, 0xfe, 0x95, 0xe7, 0x25, 0x59, 0xf2, 0xcc, 0x70, 0x43, 0xf9, 0x88, 0xac, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00])
print (input)
output = ""
for item in input:
itemhex = format(item, '02x')
#print ("converting {} to {}". format(itemhex, item))
output = output + itemhex
print (output)
#print (output) | input = [1, 0, 0, 0, 1, 107, 255, 127, 205, 79, 133, 101, 239, 64, 109, 213, 214, 61, 79, 249, 79, 49, 143, 232, 32, 39, 253, 77, 196, 81, 176, 68, 116, 1, 159, 116, 180, 0, 0, 0, 0, 140, 73, 48, 70, 2, 33, 0, 218, 13, 198, 174, 206, 254, 30, 6, 239, 223, 5, 119, 55, 87, 222, 177, 104, 130, 9, 48, 227, 176, 208, 63, 70, 245, 252, 241, 80, 191, 153, 12, 2, 33, 0, 210, 91, 92, 135, 4, 0, 118, 228, 242, 83, 248, 38, 46, 118, 62, 45, 213, 30, 127, 240, 190, 21, 119, 39, 196, 188, 66, 128, 127, 23, 189, 57, 1, 65, 4, 230, 194, 110, 246, 125, 198, 16, 210, 205, 25, 36, 132, 120, 154, 108, 249, 174, 169, 147, 11, 148, 75, 126, 45, 181, 52, 43, 157, 158, 91, 159, 247, 154, 255, 154, 46, 225, 151, 141, 215, 253, 1, 223, 197, 34, 238, 2, 40, 61, 59, 6, 169, 208, 58, 207, 128, 150, 150, 141, 125, 187, 15, 145, 120, 255, 255, 255, 255, 2, 139, 167, 148, 14, 0, 0, 0, 0, 25, 118, 169, 20, 186, 222, 236, 253, 239, 5, 7, 36, 127, 200, 247, 66, 65, 215, 59, 192, 57, 151, 45, 123, 136, 172, 64, 148, 168, 2, 0, 0, 0, 0, 25, 118, 169, 20, 193, 9, 50, 72, 63, 236, 147, 237, 81, 245, 254, 149, 231, 37, 89, 242, 204, 112, 67, 249, 136, 172, 0, 0, 0, 0, 0, 0, 0]
print(input)
output = ''
for item in input:
itemhex = format(item, '02x')
output = output + itemhex
print(output) |
"""
Given an array of integers and an integer k, find out whether there are two
distinct indices i and j in the array such that nums[i] = nums[j] and the
difference between i and j is at most k.
"""
class Solution(object):
def containsNearbyDuplicate(self, nums, k):
"""
:type nums: List[int]
:type k: int
:rtype: bool
"""
d = {}
for i, e in enumerate(nums):
if e in d:
if i - d[e] <= k:
return True
d[e] = i
return False
args1 = [[1, 0, 1, 1], 1]
s = Solution()
print(s.containsNearbyDuplicate(*args1))
| """
Given an array of integers and an integer k, find out whether there are two
distinct indices i and j in the array such that nums[i] = nums[j] and the
difference between i and j is at most k.
"""
class Solution(object):
def contains_nearby_duplicate(self, nums, k):
"""
:type nums: List[int]
:type k: int
:rtype: bool
"""
d = {}
for (i, e) in enumerate(nums):
if e in d:
if i - d[e] <= k:
return True
d[e] = i
return False
args1 = [[1, 0, 1, 1], 1]
s = solution()
print(s.containsNearbyDuplicate(*args1)) |
# Task 04. Zoo
class Zoo:
def __init__(self, zoo_name):
self.zoo_name = zoo_name
self.mammals = []
self.fishes = []
self.birds = []
def add_animal(self, species, name):
if species == "mammal":
self.mammals.append(name)
elif species == "fish":
self.fishes.append(name)
elif species == "bird":
self.birds.append(name)
def get_info(self, species):
total_animals = len(self.mammals + self.fishes + self.birds)
if species == "mammal":
result = f"Mammals in {self.zoo_name}: {', '.join(self.mammals)}"
elif species == "fish":
result = f"Fishes in {self.zoo_name}: {', '.join(self.fishes)}"
elif species == "bird":
result = f"Birds in {self.zoo_name}: {', '.join(self.birds)}"
return f"{result}"\
f"\nTotal animals: {total_animals}"
zoo_name = input()
lines = int(input())
zoo = Zoo(zoo_name)
for _ in range(lines):
zoo_info = input().split()
zoo.add_animal(zoo_info[0], zoo_info[1])
animal_type = input()
print(zoo.get_info(animal_type))
| class Zoo:
def __init__(self, zoo_name):
self.zoo_name = zoo_name
self.mammals = []
self.fishes = []
self.birds = []
def add_animal(self, species, name):
if species == 'mammal':
self.mammals.append(name)
elif species == 'fish':
self.fishes.append(name)
elif species == 'bird':
self.birds.append(name)
def get_info(self, species):
total_animals = len(self.mammals + self.fishes + self.birds)
if species == 'mammal':
result = f"Mammals in {self.zoo_name}: {', '.join(self.mammals)}"
elif species == 'fish':
result = f"Fishes in {self.zoo_name}: {', '.join(self.fishes)}"
elif species == 'bird':
result = f"Birds in {self.zoo_name}: {', '.join(self.birds)}"
return f'{result}\nTotal animals: {total_animals}'
zoo_name = input()
lines = int(input())
zoo = zoo(zoo_name)
for _ in range(lines):
zoo_info = input().split()
zoo.add_animal(zoo_info[0], zoo_info[1])
animal_type = input()
print(zoo.get_info(animal_type)) |
class CleanupInfo:
def __init__(self, num_removed=0, space_freed=0):
self.num_removed = num_removed
self.space_freed = space_freed
def __add__(self, other):
if isinstance(other, CleanupInfo):
return CleanupInfo(self.num_removed + other.num_removed,
self.space_freed + other.space_freed)
else:
return NotImplemented
def __radd__(self, other):
if other == 0:
return self
else:
return NotImplemented
| class Cleanupinfo:
def __init__(self, num_removed=0, space_freed=0):
self.num_removed = num_removed
self.space_freed = space_freed
def __add__(self, other):
if isinstance(other, CleanupInfo):
return cleanup_info(self.num_removed + other.num_removed, self.space_freed + other.space_freed)
else:
return NotImplemented
def __radd__(self, other):
if other == 0:
return self
else:
return NotImplemented |
# Do not edit the class below except for
# the insert, contains, and remove methods.
# Feel free to add new properties and methods
# to the class.
class BST:
def __init__(self, value):
self.value = value
self.left = None
self.right = None
def insert(self, value):
node = self
parent_node = node
while node is not None:
parent_node = node
if value >= node.value:
node = node.right
else:
node = node.left
new_node = BST(value)
if parent_node.value > value:
parent_node.left = new_node
else:
parent_node.right = new_node
return self
def contains(self, value):
# Write your code here.
node = self
while node:
if node.value == value:
return True
if node.value > value:
node = node.left
else:
node = node.right
return False
def remove(self, value):
# Write your code here.
# Do not edit the return statement of this method.
"""
cases:
1. remove leaf node
2. remove node with just one child
3. remove a node with both left and right children
"""
if not self.contains(value):
return self
node = self
parent_node = self
while node.value != value:
parent_node = node
if node.value > value:
node = node.left
else:
node = node.right
if node.left is None and node.right is None:
if parent_node.left == node:
parent_node.left = None
else:
parent_node.right = None
elif node.left is not None and node.right is not None:
nnode = self._get_leftmost_node(node.right)
node.value = nnode.value
else:
if node.left is None:
if parent_node.left == node:
parent_node.left = node.right
else:
parent_node.right = node.right
else:
if parent_node.left == node:
parent_node.left = node.left
else:
parent_node.right = node.left
return self
def _get_leftmost_node(self, node):
parent_node = node
while node.left is not None:
parent_node = node
node = node.left
parent_node.left = None
return node
| class Bst:
def __init__(self, value):
self.value = value
self.left = None
self.right = None
def insert(self, value):
node = self
parent_node = node
while node is not None:
parent_node = node
if value >= node.value:
node = node.right
else:
node = node.left
new_node = bst(value)
if parent_node.value > value:
parent_node.left = new_node
else:
parent_node.right = new_node
return self
def contains(self, value):
node = self
while node:
if node.value == value:
return True
if node.value > value:
node = node.left
else:
node = node.right
return False
def remove(self, value):
"""
cases:
1. remove leaf node
2. remove node with just one child
3. remove a node with both left and right children
"""
if not self.contains(value):
return self
node = self
parent_node = self
while node.value != value:
parent_node = node
if node.value > value:
node = node.left
else:
node = node.right
if node.left is None and node.right is None:
if parent_node.left == node:
parent_node.left = None
else:
parent_node.right = None
elif node.left is not None and node.right is not None:
nnode = self._get_leftmost_node(node.right)
node.value = nnode.value
elif node.left is None:
if parent_node.left == node:
parent_node.left = node.right
else:
parent_node.right = node.right
elif parent_node.left == node:
parent_node.left = node.left
else:
parent_node.right = node.left
return self
def _get_leftmost_node(self, node):
parent_node = node
while node.left is not None:
parent_node = node
node = node.left
parent_node.left = None
return node |
"""
PRACTICE Test 3.
This problem provides practice at:
*** MUTATING and RETURNING-NEW LISTS. ***
Authors: David Mutchler, Valerie Galluzzi, Mark Hays, Amanda Stouder,
their colleagues and Marc Fernandez.
""" # DONE: 1. PUT YOUR NAME IN THE ABOVE LINE.
########################################################################
# Students:
#
# These problems have DIFFICULTY and TIME ratings:
# DIFFICULTY rating: 1 to 10, where:
# 1 is very easy
# 3 is an "easy" Test 2 question.
# 5 is a "typical" Test 2 question.
# 7 is a "hard" Test 2 question.
# 10 is an EXTREMELY hard problem (too hard for a Test 2 question)
#
# TIME ratings: A ROUGH estimate of the number of minutes that we
# would expect a well-prepared student to take on the problem.
#
# IMPORTANT: For ALL the problems in this module,
# if you reach the time estimate and are NOT close to a solution,
# STOP working on that problem and ASK YOUR INSTRUCTOR FOR HELP
# on it, in class or via Piazza.
########################################################################
def main():
""" Calls the TEST functions in this module. """
run_test_doubler()
def run_test_doubler():
""" Tests the doubler function. """
# ------------------------------------------------------------------
# DONE: 2. Implement this TEST function.
# It TESTS the doubler function defined below.
# Include at least ** 1 ** ADDITIONAL test beyond those we wrote.
#
# Try to choose tests that might expose errors in your code!
#
# As usual, include both EXPECTED and ACTUAL results in your tests
# and compute the latter BY HAND (not by running your program).
# ------------------------------------------------------------------
# ------------------------------------------------------------------
# DIFFICULTY AND TIME RATINGS (see top of this file for explanation)
# DIFFICULTY: 3
# TIME ESTIMATE: 10 minutes.
# ------------------------------------------------------------------
print()
print('--------------------------------------------------')
print('Testing the doubler function:')
print('--------------------------------------------------')
# Test 1:
arg1 = [10, -3, 20, 4]
arg2 = [5, 0, 8]
correct_arg1_after = [20, -6, 40, 8]
correct_arg2_after = [5, 0, 8]
expected = [10, 0, 16]
print()
print('BEFORE the function call:')
print(' Argument 1 is:', arg1)
print(' Argument 2 is:', arg2)
answer = doubler(arg1, arg2)
print('AFTER the function call:')
print(' Argument 1 is: ', arg1)
print(' Argument 1 should be:', correct_arg1_after)
print(' Argument 2 is: ', arg2)
print(' Argument 2 should be:', correct_arg2_after)
print('The returned value is: ', answer)
print('The returned value should be:', expected)
# ------------------------------------------------------------------
# TO DO 2 (continued): Add your ADDITIONAL test(s) here:
# ------------------------------------------------------------------
# Test 2:
arg1 = [40, -9, 32, 7, 18]
arg2 = [7, 4, 19, -7]
correct_arg1_after = [80, -18, 64, 14, 36]
correct_arg2_after = [7, 4, 19, -7]
expected = [14, 8, 38, -14]
print()
print('BEFORE the function call:')
print(' Argument 1 is:', arg1)
print(' Argument 2 is:', arg2)
answer = doubler(arg1, arg2)
print('AFTER the function call:')
print(' Argument 1 is: ', arg1)
print(' Argument 1 should be:', correct_arg1_after)
print(' Argument 2 is: ', arg2)
print(' Argument 2 should be:', correct_arg2_after)
print('The returned value is: ', answer)
print('The returned value should be:', expected)
def doubler(list1, list2):
"""
Both arguments are lists of integers. This function:
-- MUTATEs the first list by doubling each number in the list
and
-- RETURNs a new list that is the same as list2 but with each
number in the list doubled.
For example, if the two arguments are:
[10, -3, 20, 4] and [5, 0, 8]
then this method MUTATEs the first argument to [20, -6, 40, 8]
and RETURNs the list [10, 0, 16]
Preconditions:
:type list1: list of int
:type list2: list of int
"""
newlist=[]
for k in range(len(list1)):
list1[k]=list1[k]*2
for j in range(len(list2)):
newlist=newlist+[list2[j]*2]
return newlist
# ------------------------------------------------------------------
# DONE: 3. Implement and test this function.
# Note that you should write its TEST function first (above).
# ------------------------------------------------------------------
# ------------------------------------------------------------------
# DIFFICULTY AND TIME RATINGS (see top of this file for explanation)
# DIFFICULTY: 4
# TIME ESTIMATE: 5 minutes.
# ------------------------------------------------------------------
# ----------------------------------------------------------------------
# Calls main to start the ball rolling.
# ----------------------------------------------------------------------
main()
| """
PRACTICE Test 3.
This problem provides practice at:
*** MUTATING and RETURNING-NEW LISTS. ***
Authors: David Mutchler, Valerie Galluzzi, Mark Hays, Amanda Stouder,
their colleagues and Marc Fernandez.
"""
def main():
""" Calls the TEST functions in this module. """
run_test_doubler()
def run_test_doubler():
""" Tests the doubler function. """
print()
print('--------------------------------------------------')
print('Testing the doubler function:')
print('--------------------------------------------------')
arg1 = [10, -3, 20, 4]
arg2 = [5, 0, 8]
correct_arg1_after = [20, -6, 40, 8]
correct_arg2_after = [5, 0, 8]
expected = [10, 0, 16]
print()
print('BEFORE the function call:')
print(' Argument 1 is:', arg1)
print(' Argument 2 is:', arg2)
answer = doubler(arg1, arg2)
print('AFTER the function call:')
print(' Argument 1 is: ', arg1)
print(' Argument 1 should be:', correct_arg1_after)
print(' Argument 2 is: ', arg2)
print(' Argument 2 should be:', correct_arg2_after)
print('The returned value is: ', answer)
print('The returned value should be:', expected)
arg1 = [40, -9, 32, 7, 18]
arg2 = [7, 4, 19, -7]
correct_arg1_after = [80, -18, 64, 14, 36]
correct_arg2_after = [7, 4, 19, -7]
expected = [14, 8, 38, -14]
print()
print('BEFORE the function call:')
print(' Argument 1 is:', arg1)
print(' Argument 2 is:', arg2)
answer = doubler(arg1, arg2)
print('AFTER the function call:')
print(' Argument 1 is: ', arg1)
print(' Argument 1 should be:', correct_arg1_after)
print(' Argument 2 is: ', arg2)
print(' Argument 2 should be:', correct_arg2_after)
print('The returned value is: ', answer)
print('The returned value should be:', expected)
def doubler(list1, list2):
"""
Both arguments are lists of integers. This function:
-- MUTATEs the first list by doubling each number in the list
and
-- RETURNs a new list that is the same as list2 but with each
number in the list doubled.
For example, if the two arguments are:
[10, -3, 20, 4] and [5, 0, 8]
then this method MUTATEs the first argument to [20, -6, 40, 8]
and RETURNs the list [10, 0, 16]
Preconditions:
:type list1: list of int
:type list2: list of int
"""
newlist = []
for k in range(len(list1)):
list1[k] = list1[k] * 2
for j in range(len(list2)):
newlist = newlist + [list2[j] * 2]
return newlist
main() |
class TrieNode(object):
def __init__(self):
self.children = {}
self.is_word = False
class Trie(object):
def __init__(self):
self.root = TrieNode()
def insert(self,word):
cur = self.root
for i in word:
if i not in cur.children:
new = TrieNode()
cur.children[i]=new
cur = cur.children[i]
cur.is_word = True
def search(self,word):
cur = self.root
for i in word:
if i not in cur.children:
return False
cur = cur.children[i]
return cur.is_word
class Solution:
def findWords(self, board: List[List[str]], words: List[str]) -> List[str]:
trie = Trie()
node = trie.root
for word in words:
trie.insert(word)
res =[]
path = ""
for i in range(len(board)):
for j in range(len(board[0])):
self.dfs(board,node,res,path,i,j)
return res
def dfs(self,board,node,res,path,i,j):
if node.is_word:
res.append(path)
node.is_word = False
if i <0 or i >=len(board) or j<0 or j >=len(board[0]):
return
temp = board[i][j]
node = node.children.get(temp)
if not node:
return
board[i][j]="#"
self.dfs(board,node,res,path+temp,i+1,j)
self.dfs(board,node,res,path+temp,i-1,j)
self.dfs(board,node,res,path+temp,i,j+1)
self.dfs(board,node,res,path+temp,i,j-1)
board[i][j]=temp
| class Trienode(object):
def __init__(self):
self.children = {}
self.is_word = False
class Trie(object):
def __init__(self):
self.root = trie_node()
def insert(self, word):
cur = self.root
for i in word:
if i not in cur.children:
new = trie_node()
cur.children[i] = new
cur = cur.children[i]
cur.is_word = True
def search(self, word):
cur = self.root
for i in word:
if i not in cur.children:
return False
cur = cur.children[i]
return cur.is_word
class Solution:
def find_words(self, board: List[List[str]], words: List[str]) -> List[str]:
trie = trie()
node = trie.root
for word in words:
trie.insert(word)
res = []
path = ''
for i in range(len(board)):
for j in range(len(board[0])):
self.dfs(board, node, res, path, i, j)
return res
def dfs(self, board, node, res, path, i, j):
if node.is_word:
res.append(path)
node.is_word = False
if i < 0 or i >= len(board) or j < 0 or (j >= len(board[0])):
return
temp = board[i][j]
node = node.children.get(temp)
if not node:
return
board[i][j] = '#'
self.dfs(board, node, res, path + temp, i + 1, j)
self.dfs(board, node, res, path + temp, i - 1, j)
self.dfs(board, node, res, path + temp, i, j + 1)
self.dfs(board, node, res, path + temp, i, j - 1)
board[i][j] = temp |
self.description = "sysupgrade with a disabled repo"
sp = pmpkg("dummy", "1.0-2")
self.addpkg2db("sync", sp)
lp = pmpkg("dummy", "1.0-1")
self.addpkg2db("local", lp)
self.args = "-Syu"
self.db['sync'].option['Usage'] = ['Search']
self.addrule("PACMAN_RETCODE=0")
self.addrule("PKG_VERSION=dummy|1.0-1")
| self.description = 'sysupgrade with a disabled repo'
sp = pmpkg('dummy', '1.0-2')
self.addpkg2db('sync', sp)
lp = pmpkg('dummy', '1.0-1')
self.addpkg2db('local', lp)
self.args = '-Syu'
self.db['sync'].option['Usage'] = ['Search']
self.addrule('PACMAN_RETCODE=0')
self.addrule('PKG_VERSION=dummy|1.0-1') |
desired_income = float(input())
total_price = 0
while True:
price = 0
cocktail_name = input()
if cocktail_name == "Party!":
print(f"We need {(desired_income - total_price):.2f} leva more.")
break
cocktails_count = int(input())
price = len(cocktail_name) * cocktails_count
if price % 2 != 0:
price -= price * 0.25
total_price += price
if total_price >= desired_income:
print("Target acquired.")
break
print(f"Club income - {total_price:.2f} leva.") | desired_income = float(input())
total_price = 0
while True:
price = 0
cocktail_name = input()
if cocktail_name == 'Party!':
print(f'We need {desired_income - total_price:.2f} leva more.')
break
cocktails_count = int(input())
price = len(cocktail_name) * cocktails_count
if price % 2 != 0:
price -= price * 0.25
total_price += price
if total_price >= desired_income:
print('Target acquired.')
break
print(f'Club income - {total_price:.2f} leva.') |
def pytest_addoption(parser):
parser.addoption('--headless', action='store_true', default=False)
def pytest_generate_tests(metafunc):
option_value = metafunc.config.option.headless
if 'headless' in metafunc.fixturenames and option_value is not None:
metafunc.parametrize('headless', [option_value])
| def pytest_addoption(parser):
parser.addoption('--headless', action='store_true', default=False)
def pytest_generate_tests(metafunc):
option_value = metafunc.config.option.headless
if 'headless' in metafunc.fixturenames and option_value is not None:
metafunc.parametrize('headless', [option_value]) |
# Copyright 2020 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Utility methods used for creating objc_* rules actions"""
load("@_builtins//:common/cc/cc_helper.bzl", "cc_helper")
load("@_builtins//:common/objc/objc_common.bzl", "objc_common")
objc_internal = _builtins.internal.objc_internal
cc_common = _builtins.toplevel.cc_common
def _build_variable_extensions(
common_variables,
ctx,
intermediate_artifacts,
variable_categories,
arc_enabled,
fully_link_archive = None,
objc_provider = None):
extensions = {}
if hasattr(ctx.attr, "pch") and ctx.attr.pch != None:
extensions["pch_file"] = ctx.file.pch.path
extensions["modules_cache_path"] = ctx.genfiles_dir.path + "/" + "_objc_module_cache"
if "ARCHIVE_VARIABLE" in variable_categories:
extensions["obj_list_path"] = intermediate_artifacts.archive_obj_list.path
if arc_enabled:
extensions["objc_arc"] = ""
else:
extensions["no_objc_arc"] = ""
if "FULLY_LINK_VARIABLES" in variable_categories:
extensions["fully_linked_archive_path"] = fully_link_archive.path
cc_libs = {}
for cc_lib in objc_provider.flattened_cc_libraries():
cc_libs[cc_lib.path] = True
exclusively_objc_libs = []
for objc_lib in objc_provider.jre_ordered_objc_libraries():
if objc_lib.path in cc_libs:
continue
exclusively_objc_libs.append(objc_lib.path)
import_paths = []
for import_lib in objc_provider.imported_library.to_list():
import_paths.append(import_lib.path)
extensions["objc_library_exec_paths"] = exclusively_objc_libs
extensions["cc_library_exec_paths"] = cc_libs.keys()
extensions["imported_library_exec_paths"] = import_paths
return extensions
def _build_common_variables(
ctx,
toolchain,
use_pch = False,
disable_layering_check = False,
disable_parse_hdrs = False,
empty_compilation_artifacts = False,
deps = [],
runtime_deps = [],
extra_import_libraries = [],
linkopts = [],
alwayslink = False,
has_module_map = False):
compilation_attributes = objc_internal.create_compilation_attributes(ctx = ctx)
intermediate_artifacts = objc_internal.create_intermediate_artifacts(ctx = ctx)
if empty_compilation_artifacts:
compilation_artifacts = objc_internal.create_compilation_artifacts()
else:
compilation_artifacts = objc_internal.create_compilation_artifacts(ctx = ctx)
(objc_provider, objc_compilation_context) = objc_common.create_context_and_provider(
purpose = "COMPILE_AND_LINK",
ctx = ctx,
compilation_attributes = compilation_attributes,
compilation_artifacts = compilation_artifacts,
deps = deps,
runtime_deps = runtime_deps,
intermediate_artifacts = intermediate_artifacts,
alwayslink = alwayslink,
has_module_map = has_module_map,
extra_import_libraries = extra_import_libraries,
linkopts = linkopts,
)
return struct(
ctx = ctx,
intermediate_artifacts = intermediate_artifacts,
compilation_attributes = compilation_attributes,
compilation_artifacts = compilation_artifacts,
objc_compilation_context = objc_compilation_context,
toolchain = toolchain,
use_pch = use_pch,
disable_layering_check = disable_layering_check,
disable_parse_headers = disable_parse_hdrs,
objc_config = ctx.fragments.objc,
apple_config = ctx.fragments.apple,
objc_provider = objc_provider,
)
def _build_feature_configuration(common_variables, for_swift_module_map, support_parse_headers):
activated_crosstool_selectables = []
ctx = common_variables.ctx
OBJC_ACTIONS = [
"objc-compile",
"objc++-compile",
"objc-archive",
"objc-fully-link",
"objc-executable",
"objc++-executable",
]
activated_crosstool_selectables.extend(ctx.features)
activated_crosstool_selectables.extend(OBJC_ACTIONS)
activated_crosstool_selectables.append("lang_objc")
if common_variables.objc_config.should_strip_binary:
activated_crosstool_selectables.append("dead_strip")
if common_variables.objc_config.generate_linkmap:
activated_crosstool_selectables.append("generate_linkmap")
disabled_features = []
disabled_features.extend(ctx.disabled_features)
if common_variables.disable_parse_headers:
disabled_features.append("parse_headers")
if common_variables.disable_layering_check:
disabled_features.append("layering_check")
if not support_parse_headers:
disabled_features.append("parse_headers")
if for_swift_module_map:
activated_crosstool_selectables.append("module_maps")
activated_crosstool_selectables.append("compile_all_modules")
activated_crosstool_selectables.append("only_doth_headers_in_module_maps")
activated_crosstool_selectables.append("exclude_private_headers_in_module_maps")
activated_crosstool_selectables.append("module_map_without_extern_module")
disabled_features.append("generate_submodules")
return cc_common.configure_features(
ctx = common_variables.ctx,
cc_toolchain = common_variables.toolchain,
requested_features = activated_crosstool_selectables,
unsupported_features = disabled_features,
)
def _compile(
common_variables,
feature_configuration,
extension,
extra_compile_args,
priority_headers,
srcs,
private_hdrs,
public_hdrs,
pch_hdr,
module_map,
purpose,
generate_module_map,
should_process_headers):
objc_compilation_context = common_variables.objc_compilation_context
includes = []
includes.extend(priority_headers)
includes.extend(objc_compilation_context.includes)
user_compile_flags = []
user_compile_flags.extend(_get_compile_rule_copts(common_variables))
user_compile_flags.extend(common_variables.objc_config.copts_for_current_compilation_mode)
user_compile_flags.extend(extra_compile_args)
user_compile_flags.extend(_paths_to_include_args(objc_compilation_context.strict_dependency_includes))
textual_hdrs = []
textual_hdrs.extend(objc_compilation_context.public_textual_hdrs)
if pch_hdr != None:
textual_hdrs.append(pch_hdr)
return cc_common.compile(
actions = common_variables.ctx.actions,
feature_configuration = feature_configuration,
cc_toolchain = common_variables.toolchain,
name = common_variables.ctx.label.name,
srcs = srcs,
public_hdrs = public_hdrs,
private_hdrs = private_hdrs,
textual_hdrs = textual_hdrs,
defines = objc_compilation_context.defines,
includes = objc_compilation_context.includes,
system_includes = objc_compilation_context.system_includes,
quote_includes = objc_compilation_context.quote_includes,
compilation_contexts = objc_compilation_context.cc_compilation_contexts,
user_compile_flags = user_compile_flags,
grep_includes = common_variables.ctx.executable._grep_includes,
module_map = module_map,
propagate_module_map_to_compile_action = True,
variables_extension = extension,
language = "objc",
code_coverage_enabled = cc_helper.is_code_coverage_enabled(ctx = common_variables.ctx),
hdrs_checking_mode = "strict",
do_not_generate_module_map = module_map.file().is_source or not generate_module_map,
purpose = purpose,
)
def _validate_attributes(common_variables):
for include in common_variables.compilation_attributes.includes.to_list():
if include.startswith("/"):
cc_helper.rule_error("The path '{}' is absolute, but only relative paths are allowed.".format(include))
ctx = common_variables.ctx
if hasattr(ctx.attr, "srcs"):
srcs = {}
for src in ctx.files.srcs:
srcs[src.path] = True
for src in ctx.files.non_arc_srcs:
if src.path in srcs:
cc_helper.attribute_error(
"srcs",
"File '{}' is present in both srcs and non_arc_srcs which is forbidden.".format(src.path),
)
if ctx.attr.module_name != "" and ctx.attr.module_map != None:
cc_helper.attribute_error("module_name", "Specifying both module_name and module_map is invalid, please remove one of them.")
def _get_compile_rule_copts(common_variables):
attributes = common_variables.compilation_attributes
copts = []
copts.extend(common_variables.objc_config.copts)
copts.extend(attributes.copts)
if attributes.enable_modules and common_variables.ctx.attr.module_map == None:
copts.append("-fmodules")
if "-fmodules" in copts:
cache_path = common_variables.ctx.genfiles_dir.path + "/" + "_objc_module_cache"
copts.append("-fmodules-cache-path=" + cache_path)
return copts
def _register_obj_file_list_action(common_variables, obj_files, obj_list):
args = common_variables.ctx.actions.args()
args.set_param_file_format("multiline")
args.add_all(obj_files)
common_variables.ctx.actions.write(obj_list, args)
def _paths_to_include_args(paths):
new_paths = []
for path in paths:
new_paths.append("-I" + path)
return new_paths
def _register_compile_and_archive_actions(
common_variables,
extra_compile_args = [],
priority_headers = []):
compilation_result = None
if common_variables.compilation_artifacts.archive != None:
obj_list = common_variables.intermediate_artifacts.archive_obj_list
compilation_result = _cc_compile_and_link(
common_variables,
extra_compile_args,
priority_headers,
"OBJC_ARCHIVE",
obj_list,
["ARCHIVE_VARIABLE"],
)
_register_obj_file_list_action(
common_variables,
compilation_result[1].objects,
obj_list,
)
else:
compilation_result = _cc_compile_and_link(
common_variables,
extra_compile_args,
priority_headers,
link_type = None,
link_action_input = None,
variable_categories = [],
)
return compilation_result
def _cc_compile_and_link(
common_variables,
extra_compile_args,
priority_headers,
link_type,
link_action_input,
variable_categories):
compilation_artifacts = common_variables.compilation_artifacts
intermediate_artifacts = common_variables.intermediate_artifacts
compilation_attributes = common_variables.compilation_attributes
ctx = common_variables.ctx
(objects, pic_objects) = _get_object_files(common_variables.ctx)
public_hdrs = []
public_hdrs.extend(compilation_attributes.hdrs.to_list())
public_hdrs.extend(compilation_artifacts.additional_hdrs.to_list())
pch_header = _get_pch_file(common_variables)
feature_configuration = _build_feature_configuration(common_variables, False, True)
# Generate up to two module maps, while minimizing the number of actions created. If
# module_map feature is off, generate a swift module map. If module_map feature is on,
# generate a layering check and a swift module map. In the latter case, the layering check
# module map must be the primary one.
#
# TODO(waltl): Delete this logic when swift module map is migrated to swift_library.
primary_module_map = None
arc_primary_module_map_fc = None
non_arc_primary_module_map_fc = None
extra_module_map = None
extra_module_map_fc = None
fc_for_swift_module_map = _build_feature_configuration(
common_variables,
for_swift_module_map = True,
support_parse_headers = True,
)
if cc_common.is_enabled(feature_configuration = feature_configuration, feature_name = "module_maps"):
primary_module_map = intermediate_artifacts.internal_module_map
arc_primary_module_map_fc = feature_configuration
non_arc_primary_module_map_fc = _build_feature_configuration(
common_variables,
for_swift_module_map = True,
support_parse_headers = False,
)
extra_module_map = intermediate_artifacts.swift_module_map
extra_module_map_fc = fc_for_swift_module_map
else:
primary_module_map = intermediate_artifacts.swift_module_map
arc_primary_module_map_fc = fc_for_swift_module_map
non_arc_primary_module_map_fc = _build_feature_configuration(
common_variables,
for_swift_module_map = True,
support_parse_headers = False,
)
extra_module_map = None
extra_module_map_fc = None
purpose = "{}_objc_arc".format(_get_purpose(common_variables))
arc_extensions = _build_variable_extensions(
common_variables,
ctx,
intermediate_artifacts,
variable_categories,
arc_enabled = True,
)
(arc_compilation_context, arc_compilation_outputs) = _compile(
common_variables,
arc_primary_module_map_fc,
arc_extensions,
extra_compile_args,
priority_headers,
compilation_artifacts.srcs,
compilation_artifacts.private_hdrs,
public_hdrs,
pch_header,
primary_module_map,
purpose,
generate_module_map = True,
should_process_headers = True,
)
purpose = "{}_non_objc_arc".format(_get_purpose(common_variables))
non_arc_extensions = _build_variable_extensions(
common_variables,
ctx,
intermediate_artifacts,
variable_categories,
arc_enabled = False,
)
(non_arc_compilation_context, non_arc_compilation_outputs) = _compile(
common_variables,
non_arc_primary_module_map_fc,
non_arc_extensions,
extra_compile_args,
priority_headers,
compilation_artifacts.non_arc_srcs,
compilation_artifacts.private_hdrs,
public_hdrs,
pch_header,
primary_module_map,
purpose,
generate_module_map = False,
should_process_headers = False,
)
objc_compilation_context = common_variables.objc_compilation_context
if extra_module_map != None and not extra_module_map.file().is_source:
_generate_extra_module_map(
common_variables,
extra_module_map,
public_hdrs,
compilation_artifacts.private_hdrs,
objc_compilation_context.public_textual_hdrs,
pch_header,
objc_compilation_context.cc_compilation_contexts,
extra_module_map_fc,
)
if link_type == "OBJC_ARCHIVE":
language = "objc"
else:
language = "c++"
additional_inputs = []
if link_action_input != None:
additional_inputs.append(link_action_input)
cc_compilation_context = cc_common.merge_compilation_contexts(
compilation_contexts = [arc_compilation_context, non_arc_compilation_context],
)
precompiled_compilation_outputs = cc_common.create_compilation_outputs(
pic_objects = depset(pic_objects),
objects = depset(objects),
)
compilation_outputs = cc_common.merge_compilation_outputs(
compilation_outputs = [
precompiled_compilation_outputs,
arc_compilation_outputs,
non_arc_compilation_outputs,
],
)
cc_common.create_linking_context_from_compilation_outputs(
actions = ctx.actions,
feature_configuration = feature_configuration,
cc_toolchain = common_variables.toolchain,
compilation_outputs = compilation_outputs,
linking_contexts = cc_helper.get_linking_contexts_from_deps(common_variables.ctx.attr.deps),
name = common_variables.ctx.label.name + intermediate_artifacts.archive_file_name_suffix,
language = language,
disallow_dynamic_library = True,
additional_inputs = additional_inputs,
grep_includes = ctx.executable._grep_includes,
variables_extension = non_arc_extensions,
)
arc_output_groups = cc_helper.build_output_groups_for_emitting_compile_providers(
arc_compilation_outputs,
arc_compilation_context,
ctx.fragments.cpp,
common_variables.toolchain,
feature_configuration,
ctx,
generate_hidden_top_level_group = True,
)
non_arc_output_groups = cc_helper.build_output_groups_for_emitting_compile_providers(
non_arc_compilation_outputs,
non_arc_compilation_context,
ctx.fragments.cpp,
common_variables.toolchain,
feature_configuration,
ctx,
generate_hidden_top_level_group = True,
)
merged_output_groups = cc_helper.merge_output_groups(
[arc_output_groups, non_arc_output_groups],
)
return (cc_compilation_context, compilation_outputs, merged_output_groups)
def _get_object_files(ctx):
if not hasattr(ctx.attr, "srcs"):
return ([], [])
pic_objects = []
for src in ctx.files.srcs:
path = src.path
if path.endswith(".pic.o") or path.endswith(".o") and not path.endswith(".nopic.o"):
pic_objects.append(src)
objects = []
for src in ctx.files.srcs:
path = src.path
if path.endswith(".o") and not path.endswith(".pic.o"):
objects.append(src)
return (objects, pic_objects)
def _get_pch_file(common_variables):
if not common_variables.use_pch:
return None
pch_hdr = None
if hasattr(common_variables.ctx.attr, "pch"):
pch_hdr = common_variables.ctx.file.pch
return pch_hdr
def _get_purpose(common_variables):
suffix = common_variables.intermediate_artifacts.archive_file_name_suffix
config = common_variables.ctx.bin_dir.path.split("/")[1]
return "Objc_build_arch_" + config + "_with_suffix_" + suffix
def _generate_extra_module_map(
common_variables,
module_map,
public_hdrs,
private_hdrs,
textual_hdrs,
pch_header,
compilation_contexts,
feature_configuration):
purpose = "{}_extra_module_map".format(_get_purpose(common_variables))
all_textual_hdrs = []
all_textual_hdrs.extend(textual_hdrs)
if pch_header != None:
all_textual_hdrs.append(pch_header)
cc_common.compile(
actions = common_variables.ctx.actions,
feature_configuration = feature_configuration,
cc_toolchain = common_variables.toolchain,
public_hdrs = public_hdrs,
textual_hdrs = textual_hdrs,
private_hdrs = private_hdrs,
compilation_contexts = compilation_contexts,
module_map = module_map,
purpose = purpose,
name = common_variables.ctx.label.name,
grep_includes = common_variables.ctx.executable._grep_includes,
)
def _register_fully_link_action(common_variables, objc_provider, name):
ctx = common_variables.ctx
feature_configuration = _build_feature_configuration(common_variables, False, False)
output_archive = ctx.actions.declare_file(name + ".a")
extensions = _build_variable_extensions(
common_variables,
ctx,
common_variables.intermediate_artifacts,
["FULLY_LINK_VARIABLES"],
arc_enabled = False,
fully_link_archive = output_archive,
objc_provider = objc_provider,
)
linker_inputs = []
linker_inputs.extend(objc_provider.jre_ordered_objc_libraries())
linker_inputs.extend(objc_provider.flattened_cc_libraries())
linker_inputs.extend(objc_provider.imported_library.to_list())
return cc_common.link(
name = name,
actions = ctx.actions,
feature_configuration = feature_configuration,
cc_toolchain = common_variables.toolchain,
language = "objc",
additional_inputs = linker_inputs,
output_type = "archive",
variables_extension = extensions,
)
compilation_support = struct(
register_compile_and_archive_actions = _register_compile_and_archive_actions,
build_common_variables = _build_common_variables,
build_feature_configuration = _build_feature_configuration,
validate_attributes = _validate_attributes,
register_fully_link_action = _register_fully_link_action,
)
| """Utility methods used for creating objc_* rules actions"""
load('@_builtins//:common/cc/cc_helper.bzl', 'cc_helper')
load('@_builtins//:common/objc/objc_common.bzl', 'objc_common')
objc_internal = _builtins.internal.objc_internal
cc_common = _builtins.toplevel.cc_common
def _build_variable_extensions(common_variables, ctx, intermediate_artifacts, variable_categories, arc_enabled, fully_link_archive=None, objc_provider=None):
extensions = {}
if hasattr(ctx.attr, 'pch') and ctx.attr.pch != None:
extensions['pch_file'] = ctx.file.pch.path
extensions['modules_cache_path'] = ctx.genfiles_dir.path + '/' + '_objc_module_cache'
if 'ARCHIVE_VARIABLE' in variable_categories:
extensions['obj_list_path'] = intermediate_artifacts.archive_obj_list.path
if arc_enabled:
extensions['objc_arc'] = ''
else:
extensions['no_objc_arc'] = ''
if 'FULLY_LINK_VARIABLES' in variable_categories:
extensions['fully_linked_archive_path'] = fully_link_archive.path
cc_libs = {}
for cc_lib in objc_provider.flattened_cc_libraries():
cc_libs[cc_lib.path] = True
exclusively_objc_libs = []
for objc_lib in objc_provider.jre_ordered_objc_libraries():
if objc_lib.path in cc_libs:
continue
exclusively_objc_libs.append(objc_lib.path)
import_paths = []
for import_lib in objc_provider.imported_library.to_list():
import_paths.append(import_lib.path)
extensions['objc_library_exec_paths'] = exclusively_objc_libs
extensions['cc_library_exec_paths'] = cc_libs.keys()
extensions['imported_library_exec_paths'] = import_paths
return extensions
def _build_common_variables(ctx, toolchain, use_pch=False, disable_layering_check=False, disable_parse_hdrs=False, empty_compilation_artifacts=False, deps=[], runtime_deps=[], extra_import_libraries=[], linkopts=[], alwayslink=False, has_module_map=False):
compilation_attributes = objc_internal.create_compilation_attributes(ctx=ctx)
intermediate_artifacts = objc_internal.create_intermediate_artifacts(ctx=ctx)
if empty_compilation_artifacts:
compilation_artifacts = objc_internal.create_compilation_artifacts()
else:
compilation_artifacts = objc_internal.create_compilation_artifacts(ctx=ctx)
(objc_provider, objc_compilation_context) = objc_common.create_context_and_provider(purpose='COMPILE_AND_LINK', ctx=ctx, compilation_attributes=compilation_attributes, compilation_artifacts=compilation_artifacts, deps=deps, runtime_deps=runtime_deps, intermediate_artifacts=intermediate_artifacts, alwayslink=alwayslink, has_module_map=has_module_map, extra_import_libraries=extra_import_libraries, linkopts=linkopts)
return struct(ctx=ctx, intermediate_artifacts=intermediate_artifacts, compilation_attributes=compilation_attributes, compilation_artifacts=compilation_artifacts, objc_compilation_context=objc_compilation_context, toolchain=toolchain, use_pch=use_pch, disable_layering_check=disable_layering_check, disable_parse_headers=disable_parse_hdrs, objc_config=ctx.fragments.objc, apple_config=ctx.fragments.apple, objc_provider=objc_provider)
def _build_feature_configuration(common_variables, for_swift_module_map, support_parse_headers):
activated_crosstool_selectables = []
ctx = common_variables.ctx
objc_actions = ['objc-compile', 'objc++-compile', 'objc-archive', 'objc-fully-link', 'objc-executable', 'objc++-executable']
activated_crosstool_selectables.extend(ctx.features)
activated_crosstool_selectables.extend(OBJC_ACTIONS)
activated_crosstool_selectables.append('lang_objc')
if common_variables.objc_config.should_strip_binary:
activated_crosstool_selectables.append('dead_strip')
if common_variables.objc_config.generate_linkmap:
activated_crosstool_selectables.append('generate_linkmap')
disabled_features = []
disabled_features.extend(ctx.disabled_features)
if common_variables.disable_parse_headers:
disabled_features.append('parse_headers')
if common_variables.disable_layering_check:
disabled_features.append('layering_check')
if not support_parse_headers:
disabled_features.append('parse_headers')
if for_swift_module_map:
activated_crosstool_selectables.append('module_maps')
activated_crosstool_selectables.append('compile_all_modules')
activated_crosstool_selectables.append('only_doth_headers_in_module_maps')
activated_crosstool_selectables.append('exclude_private_headers_in_module_maps')
activated_crosstool_selectables.append('module_map_without_extern_module')
disabled_features.append('generate_submodules')
return cc_common.configure_features(ctx=common_variables.ctx, cc_toolchain=common_variables.toolchain, requested_features=activated_crosstool_selectables, unsupported_features=disabled_features)
def _compile(common_variables, feature_configuration, extension, extra_compile_args, priority_headers, srcs, private_hdrs, public_hdrs, pch_hdr, module_map, purpose, generate_module_map, should_process_headers):
objc_compilation_context = common_variables.objc_compilation_context
includes = []
includes.extend(priority_headers)
includes.extend(objc_compilation_context.includes)
user_compile_flags = []
user_compile_flags.extend(_get_compile_rule_copts(common_variables))
user_compile_flags.extend(common_variables.objc_config.copts_for_current_compilation_mode)
user_compile_flags.extend(extra_compile_args)
user_compile_flags.extend(_paths_to_include_args(objc_compilation_context.strict_dependency_includes))
textual_hdrs = []
textual_hdrs.extend(objc_compilation_context.public_textual_hdrs)
if pch_hdr != None:
textual_hdrs.append(pch_hdr)
return cc_common.compile(actions=common_variables.ctx.actions, feature_configuration=feature_configuration, cc_toolchain=common_variables.toolchain, name=common_variables.ctx.label.name, srcs=srcs, public_hdrs=public_hdrs, private_hdrs=private_hdrs, textual_hdrs=textual_hdrs, defines=objc_compilation_context.defines, includes=objc_compilation_context.includes, system_includes=objc_compilation_context.system_includes, quote_includes=objc_compilation_context.quote_includes, compilation_contexts=objc_compilation_context.cc_compilation_contexts, user_compile_flags=user_compile_flags, grep_includes=common_variables.ctx.executable._grep_includes, module_map=module_map, propagate_module_map_to_compile_action=True, variables_extension=extension, language='objc', code_coverage_enabled=cc_helper.is_code_coverage_enabled(ctx=common_variables.ctx), hdrs_checking_mode='strict', do_not_generate_module_map=module_map.file().is_source or not generate_module_map, purpose=purpose)
def _validate_attributes(common_variables):
for include in common_variables.compilation_attributes.includes.to_list():
if include.startswith('/'):
cc_helper.rule_error("The path '{}' is absolute, but only relative paths are allowed.".format(include))
ctx = common_variables.ctx
if hasattr(ctx.attr, 'srcs'):
srcs = {}
for src in ctx.files.srcs:
srcs[src.path] = True
for src in ctx.files.non_arc_srcs:
if src.path in srcs:
cc_helper.attribute_error('srcs', "File '{}' is present in both srcs and non_arc_srcs which is forbidden.".format(src.path))
if ctx.attr.module_name != '' and ctx.attr.module_map != None:
cc_helper.attribute_error('module_name', 'Specifying both module_name and module_map is invalid, please remove one of them.')
def _get_compile_rule_copts(common_variables):
attributes = common_variables.compilation_attributes
copts = []
copts.extend(common_variables.objc_config.copts)
copts.extend(attributes.copts)
if attributes.enable_modules and common_variables.ctx.attr.module_map == None:
copts.append('-fmodules')
if '-fmodules' in copts:
cache_path = common_variables.ctx.genfiles_dir.path + '/' + '_objc_module_cache'
copts.append('-fmodules-cache-path=' + cache_path)
return copts
def _register_obj_file_list_action(common_variables, obj_files, obj_list):
args = common_variables.ctx.actions.args()
args.set_param_file_format('multiline')
args.add_all(obj_files)
common_variables.ctx.actions.write(obj_list, args)
def _paths_to_include_args(paths):
new_paths = []
for path in paths:
new_paths.append('-I' + path)
return new_paths
def _register_compile_and_archive_actions(common_variables, extra_compile_args=[], priority_headers=[]):
compilation_result = None
if common_variables.compilation_artifacts.archive != None:
obj_list = common_variables.intermediate_artifacts.archive_obj_list
compilation_result = _cc_compile_and_link(common_variables, extra_compile_args, priority_headers, 'OBJC_ARCHIVE', obj_list, ['ARCHIVE_VARIABLE'])
_register_obj_file_list_action(common_variables, compilation_result[1].objects, obj_list)
else:
compilation_result = _cc_compile_and_link(common_variables, extra_compile_args, priority_headers, link_type=None, link_action_input=None, variable_categories=[])
return compilation_result
def _cc_compile_and_link(common_variables, extra_compile_args, priority_headers, link_type, link_action_input, variable_categories):
compilation_artifacts = common_variables.compilation_artifacts
intermediate_artifacts = common_variables.intermediate_artifacts
compilation_attributes = common_variables.compilation_attributes
ctx = common_variables.ctx
(objects, pic_objects) = _get_object_files(common_variables.ctx)
public_hdrs = []
public_hdrs.extend(compilation_attributes.hdrs.to_list())
public_hdrs.extend(compilation_artifacts.additional_hdrs.to_list())
pch_header = _get_pch_file(common_variables)
feature_configuration = _build_feature_configuration(common_variables, False, True)
primary_module_map = None
arc_primary_module_map_fc = None
non_arc_primary_module_map_fc = None
extra_module_map = None
extra_module_map_fc = None
fc_for_swift_module_map = _build_feature_configuration(common_variables, for_swift_module_map=True, support_parse_headers=True)
if cc_common.is_enabled(feature_configuration=feature_configuration, feature_name='module_maps'):
primary_module_map = intermediate_artifacts.internal_module_map
arc_primary_module_map_fc = feature_configuration
non_arc_primary_module_map_fc = _build_feature_configuration(common_variables, for_swift_module_map=True, support_parse_headers=False)
extra_module_map = intermediate_artifacts.swift_module_map
extra_module_map_fc = fc_for_swift_module_map
else:
primary_module_map = intermediate_artifacts.swift_module_map
arc_primary_module_map_fc = fc_for_swift_module_map
non_arc_primary_module_map_fc = _build_feature_configuration(common_variables, for_swift_module_map=True, support_parse_headers=False)
extra_module_map = None
extra_module_map_fc = None
purpose = '{}_objc_arc'.format(_get_purpose(common_variables))
arc_extensions = _build_variable_extensions(common_variables, ctx, intermediate_artifacts, variable_categories, arc_enabled=True)
(arc_compilation_context, arc_compilation_outputs) = _compile(common_variables, arc_primary_module_map_fc, arc_extensions, extra_compile_args, priority_headers, compilation_artifacts.srcs, compilation_artifacts.private_hdrs, public_hdrs, pch_header, primary_module_map, purpose, generate_module_map=True, should_process_headers=True)
purpose = '{}_non_objc_arc'.format(_get_purpose(common_variables))
non_arc_extensions = _build_variable_extensions(common_variables, ctx, intermediate_artifacts, variable_categories, arc_enabled=False)
(non_arc_compilation_context, non_arc_compilation_outputs) = _compile(common_variables, non_arc_primary_module_map_fc, non_arc_extensions, extra_compile_args, priority_headers, compilation_artifacts.non_arc_srcs, compilation_artifacts.private_hdrs, public_hdrs, pch_header, primary_module_map, purpose, generate_module_map=False, should_process_headers=False)
objc_compilation_context = common_variables.objc_compilation_context
if extra_module_map != None and (not extra_module_map.file().is_source):
_generate_extra_module_map(common_variables, extra_module_map, public_hdrs, compilation_artifacts.private_hdrs, objc_compilation_context.public_textual_hdrs, pch_header, objc_compilation_context.cc_compilation_contexts, extra_module_map_fc)
if link_type == 'OBJC_ARCHIVE':
language = 'objc'
else:
language = 'c++'
additional_inputs = []
if link_action_input != None:
additional_inputs.append(link_action_input)
cc_compilation_context = cc_common.merge_compilation_contexts(compilation_contexts=[arc_compilation_context, non_arc_compilation_context])
precompiled_compilation_outputs = cc_common.create_compilation_outputs(pic_objects=depset(pic_objects), objects=depset(objects))
compilation_outputs = cc_common.merge_compilation_outputs(compilation_outputs=[precompiled_compilation_outputs, arc_compilation_outputs, non_arc_compilation_outputs])
cc_common.create_linking_context_from_compilation_outputs(actions=ctx.actions, feature_configuration=feature_configuration, cc_toolchain=common_variables.toolchain, compilation_outputs=compilation_outputs, linking_contexts=cc_helper.get_linking_contexts_from_deps(common_variables.ctx.attr.deps), name=common_variables.ctx.label.name + intermediate_artifacts.archive_file_name_suffix, language=language, disallow_dynamic_library=True, additional_inputs=additional_inputs, grep_includes=ctx.executable._grep_includes, variables_extension=non_arc_extensions)
arc_output_groups = cc_helper.build_output_groups_for_emitting_compile_providers(arc_compilation_outputs, arc_compilation_context, ctx.fragments.cpp, common_variables.toolchain, feature_configuration, ctx, generate_hidden_top_level_group=True)
non_arc_output_groups = cc_helper.build_output_groups_for_emitting_compile_providers(non_arc_compilation_outputs, non_arc_compilation_context, ctx.fragments.cpp, common_variables.toolchain, feature_configuration, ctx, generate_hidden_top_level_group=True)
merged_output_groups = cc_helper.merge_output_groups([arc_output_groups, non_arc_output_groups])
return (cc_compilation_context, compilation_outputs, merged_output_groups)
def _get_object_files(ctx):
if not hasattr(ctx.attr, 'srcs'):
return ([], [])
pic_objects = []
for src in ctx.files.srcs:
path = src.path
if path.endswith('.pic.o') or (path.endswith('.o') and (not path.endswith('.nopic.o'))):
pic_objects.append(src)
objects = []
for src in ctx.files.srcs:
path = src.path
if path.endswith('.o') and (not path.endswith('.pic.o')):
objects.append(src)
return (objects, pic_objects)
def _get_pch_file(common_variables):
if not common_variables.use_pch:
return None
pch_hdr = None
if hasattr(common_variables.ctx.attr, 'pch'):
pch_hdr = common_variables.ctx.file.pch
return pch_hdr
def _get_purpose(common_variables):
suffix = common_variables.intermediate_artifacts.archive_file_name_suffix
config = common_variables.ctx.bin_dir.path.split('/')[1]
return 'Objc_build_arch_' + config + '_with_suffix_' + suffix
def _generate_extra_module_map(common_variables, module_map, public_hdrs, private_hdrs, textual_hdrs, pch_header, compilation_contexts, feature_configuration):
purpose = '{}_extra_module_map'.format(_get_purpose(common_variables))
all_textual_hdrs = []
all_textual_hdrs.extend(textual_hdrs)
if pch_header != None:
all_textual_hdrs.append(pch_header)
cc_common.compile(actions=common_variables.ctx.actions, feature_configuration=feature_configuration, cc_toolchain=common_variables.toolchain, public_hdrs=public_hdrs, textual_hdrs=textual_hdrs, private_hdrs=private_hdrs, compilation_contexts=compilation_contexts, module_map=module_map, purpose=purpose, name=common_variables.ctx.label.name, grep_includes=common_variables.ctx.executable._grep_includes)
def _register_fully_link_action(common_variables, objc_provider, name):
ctx = common_variables.ctx
feature_configuration = _build_feature_configuration(common_variables, False, False)
output_archive = ctx.actions.declare_file(name + '.a')
extensions = _build_variable_extensions(common_variables, ctx, common_variables.intermediate_artifacts, ['FULLY_LINK_VARIABLES'], arc_enabled=False, fully_link_archive=output_archive, objc_provider=objc_provider)
linker_inputs = []
linker_inputs.extend(objc_provider.jre_ordered_objc_libraries())
linker_inputs.extend(objc_provider.flattened_cc_libraries())
linker_inputs.extend(objc_provider.imported_library.to_list())
return cc_common.link(name=name, actions=ctx.actions, feature_configuration=feature_configuration, cc_toolchain=common_variables.toolchain, language='objc', additional_inputs=linker_inputs, output_type='archive', variables_extension=extensions)
compilation_support = struct(register_compile_and_archive_actions=_register_compile_and_archive_actions, build_common_variables=_build_common_variables, build_feature_configuration=_build_feature_configuration, validate_attributes=_validate_attributes, register_fully_link_action=_register_fully_link_action) |
#Assignment 6
#Sum of numbers
#Ask user to enter positive integers and print out the sum
#To stop counting ask user to input -1
number = 0
total = 0
while number != -1:
total += number
number = float(input("Please enter positive integers(enter -1 to stop):\n"))
print(total)
| number = 0
total = 0
while number != -1:
total += number
number = float(input('Please enter positive integers(enter -1 to stop):\n'))
print(total) |
"""
Created on 17:07, Apr. 15th, 2021
Author: fassial
Filename: __init__.py
"""
| """
Created on 17:07, Apr. 15th, 2021
Author: fassial
Filename: __init__.py
""" |
# Time: O(n)
# Space: O(1)
class Solution(object):
def replaceDigits(self, s):
"""
:type s: str
:rtype: str
"""
return "".join(chr(ord(s[i-1])+int(s[i])) if i%2 else s[i] for i in xrange(len(s)))
| class Solution(object):
def replace_digits(self, s):
"""
:type s: str
:rtype: str
"""
return ''.join((chr(ord(s[i - 1]) + int(s[i])) if i % 2 else s[i] for i in xrange(len(s)))) |
""" Tagger ID3 Constants """
__author__ = "Alastair Tse <alastair@tse.id.au>"
__license__ = "BSD"
__copyright__ = "Copyright (c) 2004, Alastair Tse"
__revision__ = "$Id: constants.py,v 1.3 2004/12/21 12:02:06 acnt2 Exp $"
ID3_FILE_READ = 0
ID3_FILE_MODIFY = 1
ID3_FILE_NEW = 2
ID3V2_FILE_HEADER_LENGTH = 10
ID3V2_FILE_EXTHEADER_LENGTH = 5
ID3V2_FILE_FOOTER_LENGTH = 10
ID3V2_FILE_DEFAULT_PADDING = 512
ID3V2_DEFAULT_VERSION = 2.4
ID3V2_FIELD_ENC_ISO8859_1 = 0
ID3V2_FIELD_ENC_UTF16 = 1
ID3V2_FIELD_ENC_UTF16BE = 2
ID3V2_FIELD_ENC_UTF8 = 3
# ID3v2 2.2 Variables
ID3V2_2_FRAME_HEADER_LENGTH = 6
ID3V2_2_TAG_HEADER_FLAGS = [('compression', 6),
('unsync', 7)]
ID3V2_2_FRAME_SUPPORTED_IDS = {
'UFI':('bin','Unique File Identifier'), # FIXME
'BUF':('bin','Recommended buffer size'), # FIXME
'CNT':('pcnt','Play counter'),
'COM':('comm','Comments'),
'CRA':('bin','Audio Encryption'), # FIXME
'CRM':('bin','Encrypted meta frame'), # FIXME
'EQU':('bin','Equalisation'), # FIXME
'ETC':('bin','Event timing codes'),
'GEO':('geob','General Encapsulated Object'),
'IPL':('bin','Involved People List'), # null term list FIXME
'LNK':('bin','Linked Information'), # FIXME
'MCI':('bin','Music CD Identifier'), # FIXME
'MLL':('bin','MPEG Location Lookup Table'), # FIXME
'PIC':('apic','Attached Picture'),
'POP':('bin','Popularimeter'), # FIXME
'REV':('bin','Reverb'), # FIXME
'RVA':('bin','Relative volume adjustment'), # FIXME
'STC':('bin','Synced Tempo Codes'), # FIXME
'SLT':('bin','Synced Lyrics/Text'), # FIXME
'TAL':('text','Album/Movie/Show'),
'TBP':('text','Beats per Minute'),
'TCM':('text','Composer'),
'TCO':('text','Content Type'),
'TCR':('text','Copyright message'),
'TDA':('text','Date'),
'TDY':('text','Playlist delay (ms)'),
'TEN':('text','Encoded by'),
'TIM':('text','Time'),
'TKE':('text','Initial key'),
'TLA':('text','Language(s)'),
'TLE':('text','Length'),
'TMT':('text','Media Type'),
'TP1':('text','Lead artist(s)/Lead performer(s)/Performing group'),
'TP2':('text','Band/Orchestra/Accompaniment'),
'TP3':('text','Conductor'),
'TP4':('text','Interpreted, remixed by'),
'TPA':('text','Part of a set'),
'TPB':('text','Publisher'),
'TOA':('text','Original artist(s)/performer(s)'),
'TOF':('text','Original Filename'),
'TOL':('text','Original Lyricist(s)/text writer(s)'),
'TOR':('text','Original Release Year'),
'TOT':('text','Original album/Movie/Show title'),
'TRC':('text','International Standard Recording Code (ISRC'),
'TRD':('text','Recording dates'),
'TRK':('text','Track number/Position in set'),
'TSI':('text','Size'),
'TSS':('text','Software/hardware and settings used for encoding'),
'TT1':('text','Content Group Description'),
'TT2':('text','Title/Songname/Content Description'),
'TT3':('text','Subtitle/Description refinement'),
'TXT':('text','Lyricist(s)/Text Writer(s)'),
'TYE':('text','Year'),
'TXX':('wxxx','User defined text information'),
'ULT':('bin','Unsynced Lyrics/Text'),
'WAF':('url','Official audio file webpage'),
'WAR':('url','Official artist/performer webpage'),
'WAS':('url','Official audio source webpage'),
'WCM':('url','Commercial information'),
'WCP':('url','Copyright/Legal Information'),
'WPM':('url','Official Publisher webpage'),
'WXX':('wxxx','User defined URL link frame')
}
ID3V2_2_FRAME_IMAGE_FORMAT_TO_MIME_TYPE = {
'JPG':'image/jpeg',
'PNG':'image/png',
'GIF':'image/gif'
}
ID3V2_2_FRAME_MIME_TYPE_TO_IMAGE_FORMAT = {
'image/jpeg':'JPG',
'image/png':'PNG',
'image/gif':'GIF'
}
# ID3v2 2.3 and above support
ID3V2_3_TAG_HEADER_FLAGS = [("ext", 6),
("exp", 5),
("footer", 4),
("unsync", 7)]
ID3V2_3_FRAME_HEADER_LENGTH = 10
ID3V2_4_FRAME_HEADER_LENGTH = ID3V2_3_FRAME_HEADER_LENGTH
ID3V2_3_FRAME_TEXT_ID_TYPE = ['TIT1', 'TIT2', 'TIT3', 'TALB', 'TOAL', \
'TRCK', 'TPOS', 'TSST', 'TSRC']
ID3V2_3_FRAME_TEXT_PERSON_TYPE = ['TPE1', 'TPE2', 'TPE3', 'TPE4', 'TOPE', \
'TEXT', 'TOLY', 'TCOM', 'TMCL', 'TIPL', \
'TENC']
ID3V2_3_FRAME_TEXT_PROP_TYPE = ['TBPM', 'TLEN', 'TKEY', 'TLAN', 'TCON', \
'TFLT', 'TMED']
ID3V2_3_FRAME_TEXT_RIGHTS_TYPE = ['TCOP', 'TPRO', 'TPUB', 'TOWN', 'TRSN', \
'TRSO']
ID3V2_3_FRAME_TEXT_OTHERS_TYPE = ['TOFN', 'TDLY', 'TDEN', 'TDOR', 'TDRC', \
'TDRL', 'TDTG', 'TSSE', 'TSOA', 'TSOP', \
'TSOT']
ID3V2_3_FRAME_IS_URL_TYPE = ['WCOM', 'WCOP', 'WOAF', 'WOAR', 'WOAS', \
'WORS', 'WPAY', 'WPUB']
ID3V2_3_FRAME_ONLY_FOR_2_3 = ['EQUA', 'IPLS', 'RVAD', 'TDAT', 'TIME', \
'TORY', 'TRDA', 'TSIZ', 'TYER']
ID3V2_4_FRAME_NEW_FOR_2_4 = ['ASPI', 'EQU2', 'RVA2', 'SEEK', 'SIGN', 'TDEN', \
'TDOR', 'TDRC', 'TDRL', 'TDTG', 'TIPL', 'TMCL', \
'TMOO', 'TPRO', 'TSOA', 'TSOP', 'TSOT', 'TSST']
ID3V2_3_FRAME_FLAGS = ['status', 'format', 'length', 'tagpreserve', \
'filepreserve', 'readonly', 'groupinfo', \
'compression', 'encryption', 'sync', 'datalength']
ID3V2_3_FRAME_STATUS_FLAGS = [('tagpreserve', 6),
('filepreserve', 5),
('readonly', 4)]
ID3V2_3_FRAME_FORMAT_FLAGS = [('groupinfo', 6),
('compression', 3),
('encryption', 2),
('sync', 1),
('datalength', 0)]
ID3V2_3_ABOVE_SUPPORTED_IDS = {
'AENC':('bin','Audio Encryption'), # FIXME
'APIC':('apic','Attached Picture'),
'ASPI':('bin','Seek Point Index'), # FIXME
'COMM':('comm','Comments'),
'COMR':('bin','Commerical Frame'), # FIXME
'EQU2':('bin','Equalisation'), # FIXME
'ENCR':('bin','Encryption method registration'), # FIXME
'ETCO':('bin','Event timing codes'), # FIXME
'GEOB':('geob','General Encapsulated Object'),
'GRID':('bin','Group ID Registration'), # FIXME
'LINK':('link','Linked Information'), # FIXME
'MCDI':('bin','Music CD Identifier'),
'MLLT':('bin','Location lookup table'), # FIXME
'OWNE':('bin','Ownership frame'), # FIXME
'PCNT':('pcnt','Play Counter'),
'PRIV':('bin','Private frame'), # FIXME
'POPM':('bin','Popularimeter'), # FIXME
'POSS':('bin','Position Synchronisation frame'), # FIXME
'RBUF':('bin','Recommended buffer size'), # FIXME
'RVA2':('bin','Relative volume adjustment'), #FIXME
'RVRB':('bin','Reverb'), # FIXME
'SIGN':('bin','Signature'), # FIXME
'SEEK':('pcnt','Seek'),
'SYTC':('bin','Synchronised tempo codes'), # FIXME
'SYLT':('bin','Synchronised lyrics/text'), # FIXME
'TALB':('text','Album/Movie/Show Title'),
'TBPM':('text','BPM'),
'TCOM':('text','Composer'),
'TCON':('text','Content type'),
'TCOP':('text','Copyright'),
'TDEN':('text','Encoding time'),
'TDLY':('text','Playlist delay'),
'TDOR':('text','Original release time'),
'TDRC':('text','Recording time'),
'TDRL':('text','Release time'),
'TDTG':('text','Tagging time'),
'TENC':('text','Encoded by'),
'TEXT':('text','Lyricist/Text writer'),
'TFLT':('text','File type'),
'TIPL':('text','Musicians credits list'),
'TIT1':('text','Content group description'),
'TIT2':('text','Title/Songname/Content Description'),
'TIT3':('text','Subtitle/Description refinement'),
'TKEY':('text','Initial Key'),
'TLAN':('text','Language'),
'TLEN':('text','Length'),
'TMCL':('text','Musician credits list'),
'TMED':('text','Media type'),
'TOAL':('text','Original album/movie/show title'),
'TOFN':('text','Original Filename'),
'TOPE':('text','Original artist/performer'),
'TOLY':('text','Original lyricist/text writer'),
'TOWN':('text','File owner/licensee'),
'TPE1':('text','Lead Performer(s)/Soloist(s)'),
'TPE2':('text','Band/Orchestra Accompaniment'),
'TPE3':('text','Conductor'),
'TPE4':('text','Interpreted, remixed by'),
'TPOS':('text','Part of a set'), # [0-9/]
'TPUB':('text','Publisher'),
'TRCK':('text','Track'), # [0-9/]
'TRSN':('text','Internet radio station name'),
'TRSO':('text','Internet radio station owner'),
'TSOA':('text','Album sort order'),
'TSOP':('text','Performer sort order'),
'TSOT':('text','Title sort order'),
'TSSE':('text','Software/Hardware and settings used for encoding'),
'TSST':('text','Set subtitle'),
'TSRC':('text','International Standard Recording Code (ISRC)'), # 12 chars
'TXXX':('wxxx','User defined text'),
'UFID':('bin','Unique File Identifier'), # FIXME
'USER':('bin','Terms of use frame'), # FIXME (similar to comment)
'USLT':('comm','Unsynchronised lyris/text transcription'),
'WCOM':('url','Commercial Information URL'),
'WCOP':('url','Copyright/Legal Information'),
'WOAF':('url','Official audio file webpage'),
'WOAR':('url','Official artist performance webpage'),
'WOAS':('url','Official audio source webpage'),
'WORS':('url','Official internet radio station homepage'),
'WPAY':('url','Payment URL'),
'WPUB':('url','Official publisher webpage'),
'WXXX':('wxxx','User defined URL link frame'),
# ID3v2.3 only tags
'EQUA':('bin','Equalization'),
'IPLS':('bin','Invovled people list'),
'RVAD':('bin','Relative volume adjustment'),
'TDAT':('text','Date'),
'TIME':('text','Time'),
'TORY':('text','Original Release Year'),
'TRDA':('text','Recording date'),
'TSIZ':('text','Size'),
'TYER':('text','Year')
}
ID3V2_3_APIC_PICT_TYPES = {
0x00: 'Other',
0x01: '32x32 PNG Icon',
0x02: 'Other Icon',
0x03: 'Cover (Front)',
0x04: 'Cover (Back)',
0x05: 'Leaflet Page',
0x06: 'Media',
0x07: 'Lead Artist/Lead Performer/Soloist',
0x08: 'Artist/Performer',
0x09: 'Conductor',
0x0a: 'Band/Orchestra',
0x0b: 'Composer',
0x0c: 'Lyricist/text writer',
0x0d: 'Recording Location',
0x0e: 'During Recording',
0x0f: 'During Performance',
0x10: 'Movie/Video Screen Capture',
0x11: 'A bright coloured fish',
0x12: 'Illustration',
0x13: 'Band/artist logotype',
0x14: 'Publisher/Studio logotype'
}
| """ Tagger ID3 Constants """
__author__ = 'Alastair Tse <alastair@tse.id.au>'
__license__ = 'BSD'
__copyright__ = 'Copyright (c) 2004, Alastair Tse'
__revision__ = '$Id: constants.py,v 1.3 2004/12/21 12:02:06 acnt2 Exp $'
id3_file_read = 0
id3_file_modify = 1
id3_file_new = 2
id3_v2_file_header_length = 10
id3_v2_file_extheader_length = 5
id3_v2_file_footer_length = 10
id3_v2_file_default_padding = 512
id3_v2_default_version = 2.4
id3_v2_field_enc_iso8859_1 = 0
id3_v2_field_enc_utf16 = 1
id3_v2_field_enc_utf16_be = 2
id3_v2_field_enc_utf8 = 3
id3_v2_2_frame_header_length = 6
id3_v2_2_tag_header_flags = [('compression', 6), ('unsync', 7)]
id3_v2_2_frame_supported_ids = {'UFI': ('bin', 'Unique File Identifier'), 'BUF': ('bin', 'Recommended buffer size'), 'CNT': ('pcnt', 'Play counter'), 'COM': ('comm', 'Comments'), 'CRA': ('bin', 'Audio Encryption'), 'CRM': ('bin', 'Encrypted meta frame'), 'EQU': ('bin', 'Equalisation'), 'ETC': ('bin', 'Event timing codes'), 'GEO': ('geob', 'General Encapsulated Object'), 'IPL': ('bin', 'Involved People List'), 'LNK': ('bin', 'Linked Information'), 'MCI': ('bin', 'Music CD Identifier'), 'MLL': ('bin', 'MPEG Location Lookup Table'), 'PIC': ('apic', 'Attached Picture'), 'POP': ('bin', 'Popularimeter'), 'REV': ('bin', 'Reverb'), 'RVA': ('bin', 'Relative volume adjustment'), 'STC': ('bin', 'Synced Tempo Codes'), 'SLT': ('bin', 'Synced Lyrics/Text'), 'TAL': ('text', 'Album/Movie/Show'), 'TBP': ('text', 'Beats per Minute'), 'TCM': ('text', 'Composer'), 'TCO': ('text', 'Content Type'), 'TCR': ('text', 'Copyright message'), 'TDA': ('text', 'Date'), 'TDY': ('text', 'Playlist delay (ms)'), 'TEN': ('text', 'Encoded by'), 'TIM': ('text', 'Time'), 'TKE': ('text', 'Initial key'), 'TLA': ('text', 'Language(s)'), 'TLE': ('text', 'Length'), 'TMT': ('text', 'Media Type'), 'TP1': ('text', 'Lead artist(s)/Lead performer(s)/Performing group'), 'TP2': ('text', 'Band/Orchestra/Accompaniment'), 'TP3': ('text', 'Conductor'), 'TP4': ('text', 'Interpreted, remixed by'), 'TPA': ('text', 'Part of a set'), 'TPB': ('text', 'Publisher'), 'TOA': ('text', 'Original artist(s)/performer(s)'), 'TOF': ('text', 'Original Filename'), 'TOL': ('text', 'Original Lyricist(s)/text writer(s)'), 'TOR': ('text', 'Original Release Year'), 'TOT': ('text', 'Original album/Movie/Show title'), 'TRC': ('text', 'International Standard Recording Code (ISRC'), 'TRD': ('text', 'Recording dates'), 'TRK': ('text', 'Track number/Position in set'), 'TSI': ('text', 'Size'), 'TSS': ('text', 'Software/hardware and settings used for encoding'), 'TT1': ('text', 'Content Group Description'), 'TT2': ('text', 'Title/Songname/Content Description'), 'TT3': ('text', 'Subtitle/Description refinement'), 'TXT': ('text', 'Lyricist(s)/Text Writer(s)'), 'TYE': ('text', 'Year'), 'TXX': ('wxxx', 'User defined text information'), 'ULT': ('bin', 'Unsynced Lyrics/Text'), 'WAF': ('url', 'Official audio file webpage'), 'WAR': ('url', 'Official artist/performer webpage'), 'WAS': ('url', 'Official audio source webpage'), 'WCM': ('url', 'Commercial information'), 'WCP': ('url', 'Copyright/Legal Information'), 'WPM': ('url', 'Official Publisher webpage'), 'WXX': ('wxxx', 'User defined URL link frame')}
id3_v2_2_frame_image_format_to_mime_type = {'JPG': 'image/jpeg', 'PNG': 'image/png', 'GIF': 'image/gif'}
id3_v2_2_frame_mime_type_to_image_format = {'image/jpeg': 'JPG', 'image/png': 'PNG', 'image/gif': 'GIF'}
id3_v2_3_tag_header_flags = [('ext', 6), ('exp', 5), ('footer', 4), ('unsync', 7)]
id3_v2_3_frame_header_length = 10
id3_v2_4_frame_header_length = ID3V2_3_FRAME_HEADER_LENGTH
id3_v2_3_frame_text_id_type = ['TIT1', 'TIT2', 'TIT3', 'TALB', 'TOAL', 'TRCK', 'TPOS', 'TSST', 'TSRC']
id3_v2_3_frame_text_person_type = ['TPE1', 'TPE2', 'TPE3', 'TPE4', 'TOPE', 'TEXT', 'TOLY', 'TCOM', 'TMCL', 'TIPL', 'TENC']
id3_v2_3_frame_text_prop_type = ['TBPM', 'TLEN', 'TKEY', 'TLAN', 'TCON', 'TFLT', 'TMED']
id3_v2_3_frame_text_rights_type = ['TCOP', 'TPRO', 'TPUB', 'TOWN', 'TRSN', 'TRSO']
id3_v2_3_frame_text_others_type = ['TOFN', 'TDLY', 'TDEN', 'TDOR', 'TDRC', 'TDRL', 'TDTG', 'TSSE', 'TSOA', 'TSOP', 'TSOT']
id3_v2_3_frame_is_url_type = ['WCOM', 'WCOP', 'WOAF', 'WOAR', 'WOAS', 'WORS', 'WPAY', 'WPUB']
id3_v2_3_frame_only_for_2_3 = ['EQUA', 'IPLS', 'RVAD', 'TDAT', 'TIME', 'TORY', 'TRDA', 'TSIZ', 'TYER']
id3_v2_4_frame_new_for_2_4 = ['ASPI', 'EQU2', 'RVA2', 'SEEK', 'SIGN', 'TDEN', 'TDOR', 'TDRC', 'TDRL', 'TDTG', 'TIPL', 'TMCL', 'TMOO', 'TPRO', 'TSOA', 'TSOP', 'TSOT', 'TSST']
id3_v2_3_frame_flags = ['status', 'format', 'length', 'tagpreserve', 'filepreserve', 'readonly', 'groupinfo', 'compression', 'encryption', 'sync', 'datalength']
id3_v2_3_frame_status_flags = [('tagpreserve', 6), ('filepreserve', 5), ('readonly', 4)]
id3_v2_3_frame_format_flags = [('groupinfo', 6), ('compression', 3), ('encryption', 2), ('sync', 1), ('datalength', 0)]
id3_v2_3_above_supported_ids = {'AENC': ('bin', 'Audio Encryption'), 'APIC': ('apic', 'Attached Picture'), 'ASPI': ('bin', 'Seek Point Index'), 'COMM': ('comm', 'Comments'), 'COMR': ('bin', 'Commerical Frame'), 'EQU2': ('bin', 'Equalisation'), 'ENCR': ('bin', 'Encryption method registration'), 'ETCO': ('bin', 'Event timing codes'), 'GEOB': ('geob', 'General Encapsulated Object'), 'GRID': ('bin', 'Group ID Registration'), 'LINK': ('link', 'Linked Information'), 'MCDI': ('bin', 'Music CD Identifier'), 'MLLT': ('bin', 'Location lookup table'), 'OWNE': ('bin', 'Ownership frame'), 'PCNT': ('pcnt', 'Play Counter'), 'PRIV': ('bin', 'Private frame'), 'POPM': ('bin', 'Popularimeter'), 'POSS': ('bin', 'Position Synchronisation frame'), 'RBUF': ('bin', 'Recommended buffer size'), 'RVA2': ('bin', 'Relative volume adjustment'), 'RVRB': ('bin', 'Reverb'), 'SIGN': ('bin', 'Signature'), 'SEEK': ('pcnt', 'Seek'), 'SYTC': ('bin', 'Synchronised tempo codes'), 'SYLT': ('bin', 'Synchronised lyrics/text'), 'TALB': ('text', 'Album/Movie/Show Title'), 'TBPM': ('text', 'BPM'), 'TCOM': ('text', 'Composer'), 'TCON': ('text', 'Content type'), 'TCOP': ('text', 'Copyright'), 'TDEN': ('text', 'Encoding time'), 'TDLY': ('text', 'Playlist delay'), 'TDOR': ('text', 'Original release time'), 'TDRC': ('text', 'Recording time'), 'TDRL': ('text', 'Release time'), 'TDTG': ('text', 'Tagging time'), 'TENC': ('text', 'Encoded by'), 'TEXT': ('text', 'Lyricist/Text writer'), 'TFLT': ('text', 'File type'), 'TIPL': ('text', 'Musicians credits list'), 'TIT1': ('text', 'Content group description'), 'TIT2': ('text', 'Title/Songname/Content Description'), 'TIT3': ('text', 'Subtitle/Description refinement'), 'TKEY': ('text', 'Initial Key'), 'TLAN': ('text', 'Language'), 'TLEN': ('text', 'Length'), 'TMCL': ('text', 'Musician credits list'), 'TMED': ('text', 'Media type'), 'TOAL': ('text', 'Original album/movie/show title'), 'TOFN': ('text', 'Original Filename'), 'TOPE': ('text', 'Original artist/performer'), 'TOLY': ('text', 'Original lyricist/text writer'), 'TOWN': ('text', 'File owner/licensee'), 'TPE1': ('text', 'Lead Performer(s)/Soloist(s)'), 'TPE2': ('text', 'Band/Orchestra Accompaniment'), 'TPE3': ('text', 'Conductor'), 'TPE4': ('text', 'Interpreted, remixed by'), 'TPOS': ('text', 'Part of a set'), 'TPUB': ('text', 'Publisher'), 'TRCK': ('text', 'Track'), 'TRSN': ('text', 'Internet radio station name'), 'TRSO': ('text', 'Internet radio station owner'), 'TSOA': ('text', 'Album sort order'), 'TSOP': ('text', 'Performer sort order'), 'TSOT': ('text', 'Title sort order'), 'TSSE': ('text', 'Software/Hardware and settings used for encoding'), 'TSST': ('text', 'Set subtitle'), 'TSRC': ('text', 'International Standard Recording Code (ISRC)'), 'TXXX': ('wxxx', 'User defined text'), 'UFID': ('bin', 'Unique File Identifier'), 'USER': ('bin', 'Terms of use frame'), 'USLT': ('comm', 'Unsynchronised lyris/text transcription'), 'WCOM': ('url', 'Commercial Information URL'), 'WCOP': ('url', 'Copyright/Legal Information'), 'WOAF': ('url', 'Official audio file webpage'), 'WOAR': ('url', 'Official artist performance webpage'), 'WOAS': ('url', 'Official audio source webpage'), 'WORS': ('url', 'Official internet radio station homepage'), 'WPAY': ('url', 'Payment URL'), 'WPUB': ('url', 'Official publisher webpage'), 'WXXX': ('wxxx', 'User defined URL link frame'), 'EQUA': ('bin', 'Equalization'), 'IPLS': ('bin', 'Invovled people list'), 'RVAD': ('bin', 'Relative volume adjustment'), 'TDAT': ('text', 'Date'), 'TIME': ('text', 'Time'), 'TORY': ('text', 'Original Release Year'), 'TRDA': ('text', 'Recording date'), 'TSIZ': ('text', 'Size'), 'TYER': ('text', 'Year')}
id3_v2_3_apic_pict_types = {0: 'Other', 1: '32x32 PNG Icon', 2: 'Other Icon', 3: 'Cover (Front)', 4: 'Cover (Back)', 5: 'Leaflet Page', 6: 'Media', 7: 'Lead Artist/Lead Performer/Soloist', 8: 'Artist/Performer', 9: 'Conductor', 10: 'Band/Orchestra', 11: 'Composer', 12: 'Lyricist/text writer', 13: 'Recording Location', 14: 'During Recording', 15: 'During Performance', 16: 'Movie/Video Screen Capture', 17: 'A bright coloured fish', 18: 'Illustration', 19: 'Band/artist logotype', 20: 'Publisher/Studio logotype'} |
# Python program to find second largest
# number in a list
# list of numbers - length of
# list should be at least 2
l = [10, 20, 4, 45, 99, 89, 78, 109]
mx = max(l[0], l[1])
secondmax = min(l[0], l[1])
n = len(l)
for i in range(2, n):
if l[i] > mx:
secondmax = mx
mx = l[i]
elif l[i] > secondmax and \
mx != l[i]:
secondmax = l[i]
print("Second highest number is : ",
str(secondmax),mx)
| l = [10, 20, 4, 45, 99, 89, 78, 109]
mx = max(l[0], l[1])
secondmax = min(l[0], l[1])
n = len(l)
for i in range(2, n):
if l[i] > mx:
secondmax = mx
mx = l[i]
elif l[i] > secondmax and mx != l[i]:
secondmax = l[i]
print('Second highest number is : ', str(secondmax), mx) |
# *****************************************************************************
# Copyright 2004-2008 Steve Menard
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# *****************************************************************************
# This is a super set of the keywords in Python2 and Python3.
# We use this so that jpype is a bit more version independent.
_KEYWORDS = set((
"del", "for", "is", "raise",
"assert", "elif", "from", "lambda", "return",
"break", "else", "global", "not", "try",
"class", "except", "if", "or", "while",
"continue", "exec", "import", "pass", "yield",
"def", "finally", "in", "print", "as", "None"
))
def pysafe(s):
if s in _KEYWORDS:
return s+"_"
return s
| _keywords = set(('del', 'for', 'is', 'raise', 'assert', 'elif', 'from', 'lambda', 'return', 'break', 'else', 'global', 'not', 'try', 'class', 'except', 'if', 'or', 'while', 'continue', 'exec', 'import', 'pass', 'yield', 'def', 'finally', 'in', 'print', 'as', 'None'))
def pysafe(s):
if s in _KEYWORDS:
return s + '_'
return s |
# -*- coding: utf-8 -*-
# SPDX-License-Identifier: LGPL-3.0-only
class Plan:
def __init__(self, data):
self.id = data["id"]
self.name = data["name"]
self.slug = data["slug"]
self.line = data["line"]
self.pricing = data["pricing"]
self.specs = data["specs"]
self.description = data["description"]
def __str__(self):
return "%s" % (self.slug)
def __repr__(self):
return "{}: {}".format(self.__class__.__name__, self.id)
| class Plan:
def __init__(self, data):
self.id = data['id']
self.name = data['name']
self.slug = data['slug']
self.line = data['line']
self.pricing = data['pricing']
self.specs = data['specs']
self.description = data['description']
def __str__(self):
return '%s' % self.slug
def __repr__(self):
return '{}: {}'.format(self.__class__.__name__, self.id) |
def analysis(result, deck) -> int:
count = 0
for number in deck:
if number in result:
count += 1
return count | def analysis(result, deck) -> int:
count = 0
for number in deck:
if number in result:
count += 1
return count |
class Astronaut:
def say_hello(self, text):
print(text)
jose = Astronaut()
jose.say_hello(text='Privyet') # Privyet
jose.say_hello('Hello') # Hello
jose.say_hello() # TypeError: say_text() missing 1 required positional argument: 'text'
| class Astronaut:
def say_hello(self, text):
print(text)
jose = astronaut()
jose.say_hello(text='Privyet')
jose.say_hello('Hello')
jose.say_hello() |
class Solution(object):
def generateMatrix(self, n):
"""
:type n: int
:rtype: List[List[int]]
"""
ans = [[0] * n for _ in range(n)]
left, right, up, down = 0, n - 1, 0, n - 1
k = 1
while left <= right and up <= down:
for i in range(left, right + 1):
ans[up][i] = k
k += 1
up += 1
for i in range(up, down + 1):
ans[i][right] = k
k += 1
right -= 1
for i in reversed(range(left, right + 1)):
ans[down][i] = k
k += 1
down -= 1
for i in reversed(range(up, down + 1)):
ans[i][left] = k
k += 1
left += 1
return ans | class Solution(object):
def generate_matrix(self, n):
"""
:type n: int
:rtype: List[List[int]]
"""
ans = [[0] * n for _ in range(n)]
(left, right, up, down) = (0, n - 1, 0, n - 1)
k = 1
while left <= right and up <= down:
for i in range(left, right + 1):
ans[up][i] = k
k += 1
up += 1
for i in range(up, down + 1):
ans[i][right] = k
k += 1
right -= 1
for i in reversed(range(left, right + 1)):
ans[down][i] = k
k += 1
down -= 1
for i in reversed(range(up, down + 1)):
ans[i][left] = k
k += 1
left += 1
return ans |
count = 0
while True:
count += 1
x = int(input())
if x == -1: break
parts = ((1 + (2 ** x)) * (1 + (2 ** x)))
print("Teste %d" % count)
print("%d\n" % parts)
| count = 0
while True:
count += 1
x = int(input())
if x == -1:
break
parts = (1 + 2 ** x) * (1 + 2 ** x)
print('Teste %d' % count)
print('%d\n' % parts) |
# Platform-specific build configurations.
load("@protobuf_archive//:protobuf.bzl", "cc_proto_library")
load("@protobuf_archive//:protobuf.bzl", "py_proto_library")
load("//tensorflow:tensorflow.bzl", "if_not_mobile")
load("//tensorflow:tensorflow.bzl", "if_not_windows")
# Appends a suffix to a list of deps.
def tf_deps(deps, suffix):
tf_deps = []
# If the package name is in shorthand form (ie: does not contain a ':'),
# expand it to the full name.
for dep in deps:
tf_dep = dep
if not ":" in dep:
dep_pieces = dep.split("/")
tf_dep += ":" + dep_pieces[len(dep_pieces) - 1]
tf_deps += [tf_dep + suffix]
return tf_deps
def tf_proto_library_cc(name, srcs = [], has_services = None,
protodeps = [], visibility = [], testonly = 0,
cc_libs = [],
cc_stubby_versions = None,
cc_grpc_version = None,
j2objc_api_version = 1,
cc_api_version = 2, go_api_version = 2,
java_api_version = 2, py_api_version = 2,
js_api_version = 2, js_codegen = "jspb"):
native.filegroup(
name = name + "_proto_srcs",
srcs = srcs + tf_deps(protodeps, "_proto_srcs"),
testonly = testonly,
visibility = visibility,
)
use_grpc_plugin = None
if cc_grpc_version:
use_grpc_plugin = True
cc_proto_library(
name = name + "_cc",
srcs = srcs,
deps = tf_deps(protodeps, "_cc") + ["@protobuf_archive//:cc_wkt_protos"],
cc_libs = cc_libs + ["@protobuf_archive//:protobuf"],
copts = if_not_windows([
"-Wno-unknown-warning-option",
"-Wno-unused-but-set-variable",
"-Wno-sign-compare",
]),
protoc = "@protobuf_archive//:protoc",
default_runtime = "@protobuf_archive//:protobuf",
use_grpc_plugin = use_grpc_plugin,
testonly = testonly,
visibility = visibility,
)
def tf_proto_library_py(name, srcs=[], protodeps=[], deps=[], visibility=[],
testonly=0,
srcs_version="PY2AND3"):
py_proto_library(
name = name + "_py",
srcs = srcs,
srcs_version = srcs_version,
deps = deps + tf_deps(protodeps, "_py") + ["@protobuf_archive//:protobuf_python"],
protoc = "@protobuf_archive//:protoc",
default_runtime = "@protobuf_archive//:protobuf_python",
visibility = visibility,
testonly = testonly,
)
def tf_jspb_proto_library(**kwargs):
pass
def tf_proto_library(name, srcs = [], has_services = None,
protodeps = [], visibility = [], testonly = 0,
cc_libs = [],
cc_api_version = 2, cc_grpc_version = None,
go_api_version = 2,
j2objc_api_version = 1,
java_api_version = 2, py_api_version = 2,
js_api_version = 2, js_codegen = "jspb"):
"""Make a proto library, possibly depending on other proto libraries."""
tf_proto_library_cc(
name = name,
srcs = srcs,
protodeps = protodeps,
cc_grpc_version = cc_grpc_version,
cc_libs = cc_libs,
testonly = testonly,
visibility = visibility,
)
tf_proto_library_py(
name = name,
srcs = srcs,
protodeps = protodeps,
srcs_version = "PY2AND3",
testonly = testonly,
visibility = visibility,
)
def tf_additional_lib_hdrs(exclude = []):
windows_hdrs = native.glob([
"platform/default/*.h",
"platform/windows/*.h",
"platform/posix/error.h",
], exclude = exclude)
return select({
"//tensorflow:windows" : windows_hdrs,
"//tensorflow:windows_msvc" : windows_hdrs,
"//conditions:default" : native.glob([
"platform/default/*.h",
"platform/posix/*.h",
], exclude = exclude),
})
def tf_additional_lib_srcs(exclude = []):
windows_srcs = native.glob([
"platform/default/*.cc",
"platform/windows/*.cc",
"platform/posix/error.cc",
], exclude = exclude)
return select({
"//tensorflow:windows" : windows_srcs,
"//tensorflow:windows_msvc" : windows_srcs,
"//conditions:default" : native.glob([
"platform/default/*.cc",
"platform/posix/*.cc",
], exclude = exclude),
})
# pylint: disable=unused-argument
def tf_additional_framework_hdrs(exclude = []):
return []
def tf_additional_framework_srcs(exclude = []):
return []
# pylint: enable=unused-argument
def tf_additional_minimal_lib_srcs():
return [
"platform/default/integral_types.h",
"platform/default/mutex.h",
]
def tf_additional_proto_hdrs():
return [
"platform/default/integral_types.h",
"platform/default/logging.h",
"platform/default/protobuf.h"
]
def tf_additional_proto_srcs():
return [
"platform/default/logging.cc",
"platform/default/protobuf.cc",
]
def tf_additional_all_protos():
return ["//tensorflow/core:protos_all"]
def tf_env_time_hdrs():
return [
"platform/env_time.h",
]
def tf_env_time_srcs():
win_env_time = native.glob([
"platform/windows/env_time.cc",
"platform/env_time.cc",
], exclude = [])
return select({
"//tensorflow:windows" : win_env_time,
"//tensorflow:windows_msvc" : win_env_time,
"//conditions:default" : native.glob([
"platform/posix/env_time.cc",
"platform/env_time.cc",
], exclude = []),
})
def tf_additional_stream_executor_srcs():
return ["platform/default/stream_executor.h"]
def tf_additional_cupti_wrapper_deps():
return ["//tensorflow/core/platform/default/gpu:cupti_wrapper"]
def tf_additional_gpu_tracer_srcs():
return ["platform/default/gpu_tracer.cc"]
def tf_additional_gpu_tracer_cuda_deps():
return []
def tf_additional_gpu_tracer_deps():
return []
def tf_additional_libdevice_data():
return []
def tf_additional_libdevice_deps():
return ["@local_config_cuda//cuda:cuda_headers"]
def tf_additional_libdevice_srcs():
return ["platform/default/cuda_libdevice_path.cc"]
def tf_additional_test_deps():
return []
def tf_additional_test_srcs():
return [
"platform/default/test_benchmark.cc",
] + select({
"//tensorflow:windows" : [
"platform/windows/test.cc"
],
"//conditions:default" : [
"platform/posix/test.cc",
],
})
def tf_kernel_tests_linkstatic():
return 0
def tf_additional_lib_defines():
return select({
"//tensorflow:with_jemalloc_linux_x86_64": ["TENSORFLOW_USE_JEMALLOC"],
"//tensorflow:with_jemalloc_linux_ppc64le":["TENSORFLOW_USE_JEMALLOC"],
"//conditions:default": [],
})
def tf_additional_lib_deps():
return select({
"//tensorflow:with_jemalloc_linux_x86_64": ["@jemalloc"],
"//tensorflow:with_jemalloc_linux_ppc64le": ["@jemalloc"],
"//conditions:default": [],
})
def tf_additional_core_deps():
return select({
"//tensorflow:with_gcp_support": [
"//tensorflow/core/platform/cloud:gcs_file_system",
],
"//conditions:default": [],
}) + select({
"//tensorflow:with_hdfs_support": [
"//tensorflow/core/platform/hadoop:hadoop_file_system",
],
"//conditions:default": [],
})
# TODO(jart, jhseu): Delete when GCP is default on.
def tf_additional_cloud_op_deps():
return select({
"//tensorflow:windows": [],
"//tensorflow:android": [],
"//tensorflow:ios": [],
"//tensorflow:with_gcp_support": [
"//tensorflow/contrib/cloud:bigquery_reader_ops_op_lib",
],
"//conditions:default": [],
})
# TODO(jart, jhseu): Delete when GCP is default on.
def tf_additional_cloud_kernel_deps():
return select({
"//tensorflow:windows": [],
"//tensorflow:android": [],
"//tensorflow:ios": [],
"//tensorflow:with_gcp_support": [
"//tensorflow/contrib/cloud/kernels:bigquery_reader_ops",
],
"//conditions:default": [],
})
def tf_lib_proto_parsing_deps():
return [
":protos_all_cc",
"//tensorflow/core/platform/default/build_config:proto_parsing",
]
def tf_additional_verbs_lib_defines():
return select({
"//tensorflow:with_verbs_support": ["TENSORFLOW_USE_VERBS"],
"//conditions:default": [],
})
def tf_additional_mpi_lib_defines():
return select({
"//tensorflow:with_mpi_support": ["TENSORFLOW_USE_MPI"],
"//conditions:default": [],
})
def tf_additional_gdr_lib_defines():
return select({
"//tensorflow:with_gdr_support": ["TENSORFLOW_USE_GDR"],
"//conditions:default": [],
})
def tf_pyclif_proto_library(name, proto_lib, proto_srcfile="", visibility=None,
**kwargs):
pass
| load('@protobuf_archive//:protobuf.bzl', 'cc_proto_library')
load('@protobuf_archive//:protobuf.bzl', 'py_proto_library')
load('//tensorflow:tensorflow.bzl', 'if_not_mobile')
load('//tensorflow:tensorflow.bzl', 'if_not_windows')
def tf_deps(deps, suffix):
tf_deps = []
for dep in deps:
tf_dep = dep
if not ':' in dep:
dep_pieces = dep.split('/')
tf_dep += ':' + dep_pieces[len(dep_pieces) - 1]
tf_deps += [tf_dep + suffix]
return tf_deps
def tf_proto_library_cc(name, srcs=[], has_services=None, protodeps=[], visibility=[], testonly=0, cc_libs=[], cc_stubby_versions=None, cc_grpc_version=None, j2objc_api_version=1, cc_api_version=2, go_api_version=2, java_api_version=2, py_api_version=2, js_api_version=2, js_codegen='jspb'):
native.filegroup(name=name + '_proto_srcs', srcs=srcs + tf_deps(protodeps, '_proto_srcs'), testonly=testonly, visibility=visibility)
use_grpc_plugin = None
if cc_grpc_version:
use_grpc_plugin = True
cc_proto_library(name=name + '_cc', srcs=srcs, deps=tf_deps(protodeps, '_cc') + ['@protobuf_archive//:cc_wkt_protos'], cc_libs=cc_libs + ['@protobuf_archive//:protobuf'], copts=if_not_windows(['-Wno-unknown-warning-option', '-Wno-unused-but-set-variable', '-Wno-sign-compare']), protoc='@protobuf_archive//:protoc', default_runtime='@protobuf_archive//:protobuf', use_grpc_plugin=use_grpc_plugin, testonly=testonly, visibility=visibility)
def tf_proto_library_py(name, srcs=[], protodeps=[], deps=[], visibility=[], testonly=0, srcs_version='PY2AND3'):
py_proto_library(name=name + '_py', srcs=srcs, srcs_version=srcs_version, deps=deps + tf_deps(protodeps, '_py') + ['@protobuf_archive//:protobuf_python'], protoc='@protobuf_archive//:protoc', default_runtime='@protobuf_archive//:protobuf_python', visibility=visibility, testonly=testonly)
def tf_jspb_proto_library(**kwargs):
pass
def tf_proto_library(name, srcs=[], has_services=None, protodeps=[], visibility=[], testonly=0, cc_libs=[], cc_api_version=2, cc_grpc_version=None, go_api_version=2, j2objc_api_version=1, java_api_version=2, py_api_version=2, js_api_version=2, js_codegen='jspb'):
"""Make a proto library, possibly depending on other proto libraries."""
tf_proto_library_cc(name=name, srcs=srcs, protodeps=protodeps, cc_grpc_version=cc_grpc_version, cc_libs=cc_libs, testonly=testonly, visibility=visibility)
tf_proto_library_py(name=name, srcs=srcs, protodeps=protodeps, srcs_version='PY2AND3', testonly=testonly, visibility=visibility)
def tf_additional_lib_hdrs(exclude=[]):
windows_hdrs = native.glob(['platform/default/*.h', 'platform/windows/*.h', 'platform/posix/error.h'], exclude=exclude)
return select({'//tensorflow:windows': windows_hdrs, '//tensorflow:windows_msvc': windows_hdrs, '//conditions:default': native.glob(['platform/default/*.h', 'platform/posix/*.h'], exclude=exclude)})
def tf_additional_lib_srcs(exclude=[]):
windows_srcs = native.glob(['platform/default/*.cc', 'platform/windows/*.cc', 'platform/posix/error.cc'], exclude=exclude)
return select({'//tensorflow:windows': windows_srcs, '//tensorflow:windows_msvc': windows_srcs, '//conditions:default': native.glob(['platform/default/*.cc', 'platform/posix/*.cc'], exclude=exclude)})
def tf_additional_framework_hdrs(exclude=[]):
return []
def tf_additional_framework_srcs(exclude=[]):
return []
def tf_additional_minimal_lib_srcs():
return ['platform/default/integral_types.h', 'platform/default/mutex.h']
def tf_additional_proto_hdrs():
return ['platform/default/integral_types.h', 'platform/default/logging.h', 'platform/default/protobuf.h']
def tf_additional_proto_srcs():
return ['platform/default/logging.cc', 'platform/default/protobuf.cc']
def tf_additional_all_protos():
return ['//tensorflow/core:protos_all']
def tf_env_time_hdrs():
return ['platform/env_time.h']
def tf_env_time_srcs():
win_env_time = native.glob(['platform/windows/env_time.cc', 'platform/env_time.cc'], exclude=[])
return select({'//tensorflow:windows': win_env_time, '//tensorflow:windows_msvc': win_env_time, '//conditions:default': native.glob(['platform/posix/env_time.cc', 'platform/env_time.cc'], exclude=[])})
def tf_additional_stream_executor_srcs():
return ['platform/default/stream_executor.h']
def tf_additional_cupti_wrapper_deps():
return ['//tensorflow/core/platform/default/gpu:cupti_wrapper']
def tf_additional_gpu_tracer_srcs():
return ['platform/default/gpu_tracer.cc']
def tf_additional_gpu_tracer_cuda_deps():
return []
def tf_additional_gpu_tracer_deps():
return []
def tf_additional_libdevice_data():
return []
def tf_additional_libdevice_deps():
return ['@local_config_cuda//cuda:cuda_headers']
def tf_additional_libdevice_srcs():
return ['platform/default/cuda_libdevice_path.cc']
def tf_additional_test_deps():
return []
def tf_additional_test_srcs():
return ['platform/default/test_benchmark.cc'] + select({'//tensorflow:windows': ['platform/windows/test.cc'], '//conditions:default': ['platform/posix/test.cc']})
def tf_kernel_tests_linkstatic():
return 0
def tf_additional_lib_defines():
return select({'//tensorflow:with_jemalloc_linux_x86_64': ['TENSORFLOW_USE_JEMALLOC'], '//tensorflow:with_jemalloc_linux_ppc64le': ['TENSORFLOW_USE_JEMALLOC'], '//conditions:default': []})
def tf_additional_lib_deps():
return select({'//tensorflow:with_jemalloc_linux_x86_64': ['@jemalloc'], '//tensorflow:with_jemalloc_linux_ppc64le': ['@jemalloc'], '//conditions:default': []})
def tf_additional_core_deps():
return select({'//tensorflow:with_gcp_support': ['//tensorflow/core/platform/cloud:gcs_file_system'], '//conditions:default': []}) + select({'//tensorflow:with_hdfs_support': ['//tensorflow/core/platform/hadoop:hadoop_file_system'], '//conditions:default': []})
def tf_additional_cloud_op_deps():
return select({'//tensorflow:windows': [], '//tensorflow:android': [], '//tensorflow:ios': [], '//tensorflow:with_gcp_support': ['//tensorflow/contrib/cloud:bigquery_reader_ops_op_lib'], '//conditions:default': []})
def tf_additional_cloud_kernel_deps():
return select({'//tensorflow:windows': [], '//tensorflow:android': [], '//tensorflow:ios': [], '//tensorflow:with_gcp_support': ['//tensorflow/contrib/cloud/kernels:bigquery_reader_ops'], '//conditions:default': []})
def tf_lib_proto_parsing_deps():
return [':protos_all_cc', '//tensorflow/core/platform/default/build_config:proto_parsing']
def tf_additional_verbs_lib_defines():
return select({'//tensorflow:with_verbs_support': ['TENSORFLOW_USE_VERBS'], '//conditions:default': []})
def tf_additional_mpi_lib_defines():
return select({'//tensorflow:with_mpi_support': ['TENSORFLOW_USE_MPI'], '//conditions:default': []})
def tf_additional_gdr_lib_defines():
return select({'//tensorflow:with_gdr_support': ['TENSORFLOW_USE_GDR'], '//conditions:default': []})
def tf_pyclif_proto_library(name, proto_lib, proto_srcfile='', visibility=None, **kwargs):
pass |
class Car():
"""
A pojo class for cars.
We exercise this class using the non-ORM aspects of sqlalchemy.
"""
def __init__(self, make: str, model: str, junker=False):
self.make = make
self.model = model
self.junker = junker
def get_make(self) -> str:
return self.make
def get_model(self) -> str:
return self.model
def is_junker(self) -> str:
return self.junker
def set_make(self, make):
self.make = make
def set_model(self, model):
self.model = model
def set_junker(self, junker):
self.junker = junker
def drive(self):
message = f'vroom vroom goes the {self.make} {self.model}'
if self.junker:
message += '. screeeeeeetch.... BOOM!!!'
print(message)
return message
| class Car:
"""
A pojo class for cars.
We exercise this class using the non-ORM aspects of sqlalchemy.
"""
def __init__(self, make: str, model: str, junker=False):
self.make = make
self.model = model
self.junker = junker
def get_make(self) -> str:
return self.make
def get_model(self) -> str:
return self.model
def is_junker(self) -> str:
return self.junker
def set_make(self, make):
self.make = make
def set_model(self, model):
self.model = model
def set_junker(self, junker):
self.junker = junker
def drive(self):
message = f'vroom vroom goes the {self.make} {self.model}'
if self.junker:
message += '. screeeeeeetch.... BOOM!!!'
print(message)
return message |
"""Define consts for the pysmartthings package."""
__title__ = "pysmartthings"
__version__ = "0.7.7"
# Constants for Health
HEALTH_API_STATE = "state"
HEALTH_PACKAGE_STATE = "state"
HEALTH_API_LAST_UPDATE = "lastUpdatedDate"
HEALTH_PACKAGE_LAST_UPDATE = "lastUpdatedDate"
HEALTH_ATTRIBUTE_MAP = {
HEALTH_API_STATE: HEALTH_PACKAGE_STATE,
HEALTH_API_LAST_UPDATE: HEALTH_PACKAGE_LAST_UPDATE,
}
| """Define consts for the pysmartthings package."""
__title__ = 'pysmartthings'
__version__ = '0.7.7'
health_api_state = 'state'
health_package_state = 'state'
health_api_last_update = 'lastUpdatedDate'
health_package_last_update = 'lastUpdatedDate'
health_attribute_map = {HEALTH_API_STATE: HEALTH_PACKAGE_STATE, HEALTH_API_LAST_UPDATE: HEALTH_PACKAGE_LAST_UPDATE} |
class Scene(object):
def __init__(self):
pass
def render(self, screen):
raise NotImplementedError
def update(self):
raise NotImplementedError
def handle_event(self, event):
raise NotImplementedError
def processEvent(self, arg):
raise NotImplementedError | class Scene(object):
def __init__(self):
pass
def render(self, screen):
raise NotImplementedError
def update(self):
raise NotImplementedError
def handle_event(self, event):
raise NotImplementedError
def process_event(self, arg):
raise NotImplementedError |
# Copyright 2014 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
load(
"//go/private:context.bzl",
"go_context",
)
load(
"//go/private:common.bzl",
"as_list",
"asm_exts",
"cgo_exts",
"go_exts",
"pkg_dir",
"split_srcs",
)
load(
"//go/private/rules:binary.bzl",
"gc_linkopts",
)
load(
"//go/private:providers.bzl",
"GoArchive",
"GoLibrary",
"GoSource",
"INFERRED_PATH",
"get_archive",
)
load(
"//go/private/rules:transition.bzl",
"go_transition_rule",
)
load(
"//go/private:mode.bzl",
"LINKMODE_NORMAL",
)
load(
"@bazel_skylib//lib:structs.bzl",
"structs",
)
def _testmain_library_to_source(go, attr, source, merge):
source["deps"] = source["deps"] + [attr.library]
def _go_test_impl(ctx):
"""go_test_impl implements go testing.
It emits an action to run the test generator, and then compiles the
test into a binary."""
go = go_context(ctx)
# Compile the library to test with internal white box tests
internal_library = go.new_library(go, testfilter = "exclude")
internal_source = go.library_to_source(go, ctx.attr, internal_library, ctx.coverage_instrumented())
internal_archive = go.archive(go, internal_source)
go_srcs = split_srcs(internal_source.srcs).go
# Compile the library with the external black box tests
external_library = go.new_library(
go,
name = internal_library.name + "_test",
importpath = internal_library.importpath + "_test",
testfilter = "only",
)
external_source = go.library_to_source(go, struct(
srcs = [struct(files = go_srcs)],
embedsrcs = [struct(files = internal_source.embedsrcs)],
deps = internal_archive.direct + [internal_archive],
x_defs = ctx.attr.x_defs,
), external_library, ctx.coverage_instrumented())
external_source, internal_archive = _recompile_external_deps(go, external_source, internal_archive, [t.label for t in ctx.attr.embed])
external_archive = go.archive(go, external_source)
external_srcs = split_srcs(external_source.srcs).go
# now generate the main function
if ctx.attr.rundir:
if ctx.attr.rundir.startswith("/"):
run_dir = ctx.attr.rundir
else:
run_dir = pkg_dir(ctx.label.workspace_root, ctx.attr.rundir)
else:
run_dir = pkg_dir(ctx.label.workspace_root, ctx.label.package)
main_go = go.declare_file(go, path = "testmain.go")
arguments = go.builder_args(go, "gentestmain")
arguments.add("-output", main_go)
if go.coverage_enabled:
if go.mode.race:
arguments.add("-cover_mode", "atomic")
else:
arguments.add("-cover_mode", "set")
arguments.add(
# the l is the alias for the package under test, the l_test must be the
# same with the test suffix
"-import",
"l=" + internal_source.library.importpath,
)
arguments.add(
"-import",
"l_test=" + external_source.library.importpath,
)
arguments.add("-pkgname", internal_source.library.importpath)
arguments.add_all(go_srcs, before_each = "-src", format_each = "l=%s")
ctx.actions.run(
inputs = go_srcs,
outputs = [main_go],
mnemonic = "GoTestGenTest",
executable = go.toolchain._builder,
arguments = [arguments],
)
test_gc_linkopts = gc_linkopts(ctx)
if not go.mode.debug:
# Disable symbol table and DWARF generation for test binaries.
test_gc_linkopts.extend(["-s", "-w"])
# Link in the run_dir global for bzltestutil
test_gc_linkopts.extend(["-X", "github.com/bazelbuild/rules_go/go/tools/bzltestutil.RunDir=" + run_dir])
# Now compile the test binary itself
test_library = GoLibrary(
name = go.label.name + "~testmain",
label = go.label,
importpath = "testmain",
importmap = "testmain",
importpath_aliases = (),
pathtype = INFERRED_PATH,
is_main = True,
resolve = None,
)
test_deps = external_archive.direct + [external_archive] + ctx.attr._testmain_additional_deps
if ctx.configuration.coverage_enabled:
test_deps.append(go.coverdata)
test_source = go.library_to_source(go, struct(
srcs = [struct(files = [main_go])],
deps = test_deps,
), test_library, False)
test_archive, executable, runfiles = go.binary(
go,
name = ctx.label.name,
source = test_source,
test_archives = [internal_archive.data],
gc_linkopts = test_gc_linkopts,
version_file = ctx.version_file,
info_file = ctx.info_file,
)
env = {}
for k, v in ctx.attr.env.items():
env[k] = ctx.expand_location(v, ctx.attr.data)
# Bazel only looks for coverage data if the test target has an
# InstrumentedFilesProvider. If the provider is found and at least one
# source file is present, Bazel will set the COVERAGE_OUTPUT_FILE
# environment variable during tests and will save that file to the build
# events + test outputs.
return [
test_archive,
DefaultInfo(
files = depset([executable]),
runfiles = runfiles,
executable = executable,
),
OutputGroupInfo(
compilation_outputs = [internal_archive.data.file],
),
coverage_common.instrumented_files_info(
ctx,
source_attributes = ["srcs"],
dependency_attributes = ["deps", "embed"],
extensions = ["go"],
),
testing.TestEnvironment(env),
]
_go_test_kwargs = {
"implementation": _go_test_impl,
"attrs": {
"data": attr.label_list(
allow_files = True,
doc = """List of files needed by this rule at run-time. This may include data files
needed or other programs that may be executed. The [bazel] package may be
used to locate run files; they may appear in different places depending on the
operating system and environment. See [data dependencies] for more
information on data files.
""",
),
"srcs": attr.label_list(
allow_files = go_exts + asm_exts + cgo_exts,
doc = """The list of Go source files that are compiled to create the package.
Only `.go` and `.s` files are permitted, unless the `cgo`
attribute is set, in which case,
`.c .cc .cpp .cxx .h .hh .hpp .hxx .inc .m .mm`
files are also permitted. Files may be filtered at build time
using Go [build constraints].
""",
),
"deps": attr.label_list(
providers = [GoLibrary],
doc = """List of Go libraries this test imports directly.
These may be go_library rules or compatible rules with the [GoLibrary] provider.
""",
),
"embed": attr.label_list(
providers = [GoLibrary],
doc = """List of Go libraries whose sources should be compiled together with this
package's sources. Labels listed here must name `go_library`,
`go_proto_library`, or other compatible targets with the [GoLibrary] and
[GoSource] providers. Embedded libraries must have the same `importpath` as
the embedding library. At most one embedded library may have `cgo = True`,
and the embedding library may not also have `cgo = True`. See [Embedding]
for more information.
""",
),
"embedsrcs": attr.label_list(
allow_files = True,
doc = """The list of files that may be embedded into the compiled package using
`//go:embed` directives. All files must be in the same logical directory
or a subdirectory as source files. All source files containing `//go:embed`
directives must be in the same logical directory. It's okay to mix static and
generated source files and static and generated embeddable files.
""",
),
"env": attr.string_dict(
doc = """Environment variables to set for the test execution.
The values (but not keys) are subject to
[location expansion](https://docs.bazel.build/versions/main/skylark/macros.html) but not full
[make variable expansion](https://docs.bazel.build/versions/main/be/make-variables.html).
""",
),
"importpath": attr.string(
doc = """The import path of this test. Tests can't actually be imported, but this
may be used by [go_path] and other tools to report the location of source
files. This may be inferred from embedded libraries.
""",
),
"gc_goopts": attr.string_list(
doc = """List of flags to add to the Go compilation command when using the gc compiler.
Subject to ["Make variable"] substitution and [Bourne shell tokenization].
""",
),
"gc_linkopts": attr.string_list(
doc = """List of flags to add to the Go link command when using the gc compiler.
Subject to ["Make variable"] substitution and [Bourne shell tokenization].
""",
),
"rundir": attr.string(
doc = """ A directory to cd to before the test is run.
This should be a path relative to the execution dir of the test.
The default behaviour is to change to the workspace relative path, this replicates the normal
behaviour of `go test` so it is easy to write compatible tests.
Setting it to `.` makes the test behave the normal way for a bazel test.
***Note:*** This defaults to the package path.
""",
),
"x_defs": attr.string_dict(
doc = """Map of defines to add to the go link command.
See [Defines and stamping] for examples of how to use these.
""",
),
"linkmode": attr.string(
default = LINKMODE_NORMAL,
doc = """Determines how the binary should be built and linked. This accepts some of
the same values as `go build -buildmode` and works the same way.
<br><br>
<ul>
<li>`normal`: Builds a normal executable with position-dependent code.</li>
<li>`pie`: Builds a position-independent executable.</li>
<li>`plugin`: Builds a shared library that can be loaded as a Go plugin. Only supported on platforms that support plugins.</li>
<li>`c-shared`: Builds a shared library that can be linked into a C program.</li>
<li>`c-archive`: Builds an archive that can be linked into a C program.</li>
</ul>
""",
),
"cgo": attr.bool(
doc = """
If `True`, the package may contain [cgo] code, and `srcs` may contain
C, C++, Objective-C, and Objective-C++ files and non-Go assembly files.
When cgo is enabled, these files will be compiled with the C/C++ toolchain
and included in the package. Note that this attribute does not force cgo
to be enabled. Cgo is enabled for non-cross-compiling builds when a C/C++
toolchain is configured.
""",
),
"cdeps": attr.label_list(
doc = """The list of other libraries that the c code depends on.
This can be anything that would be allowed in [cc_library deps]
Only valid if `cgo` = `True`.
""",
),
"cppopts": attr.string_list(
doc = """List of flags to add to the C/C++ preprocessor command.
Subject to ["Make variable"] substitution and [Bourne shell tokenization].
Only valid if `cgo` = `True`.
""",
),
"copts": attr.string_list(
doc = """List of flags to add to the C compilation command.
Subject to ["Make variable"] substitution and [Bourne shell tokenization].
Only valid if `cgo` = `True`.
""",
),
"cxxopts": attr.string_list(
doc = """List of flags to add to the C++ compilation command.
Subject to ["Make variable"] substitution and [Bourne shell tokenization].
Only valid if `cgo` = `True`.
""",
),
"clinkopts": attr.string_list(
doc = """List of flags to add to the C link command.
Subject to ["Make variable"] substitution and [Bourne shell tokenization].
Only valid if `cgo` = `True`.
""",
),
"pure": attr.string(
default = "auto",
doc = """Controls whether cgo source code and dependencies are compiled and linked,
similar to setting `CGO_ENABLED`. May be one of `on`, `off`,
or `auto`. If `auto`, pure mode is enabled when no C/C++
toolchain is configured or when cross-compiling. It's usually better to
control this on the command line with
`--@io_bazel_rules_go//go/config:pure`. See [mode attributes], specifically
[pure].
""",
),
"static": attr.string(
default = "auto",
doc = """Controls whether a binary is statically linked. May be one of `on`,
`off`, or `auto`. Not available on all platforms or in all
modes. It's usually better to control this on the command line with
`--@io_bazel_rules_go//go/config:static`. See [mode attributes],
specifically [static].
""",
),
"race": attr.string(
default = "auto",
doc = """Controls whether code is instrumented for race detection. May be one of
`on`, `off`, or `auto`. Not available when cgo is
disabled. In most cases, it's better to control this on the command line with
`--@io_bazel_rules_go//go/config:race`. See [mode attributes], specifically
[race].
""",
),
"msan": attr.string(
default = "auto",
doc = """Controls whether code is instrumented for memory sanitization. May be one of
`on`, `off`, or `auto`. Not available when cgo is
disabled. In most cases, it's better to control this on the command line with
`--@io_bazel_rules_go//go/config:msan`. See [mode attributes], specifically
[msan].
""",
),
"gotags": attr.string_list(
doc = """Enables a list of build tags when evaluating [build constraints]. Useful for
conditional compilation.
""",
),
"goos": attr.string(
default = "auto",
doc = """Forces a binary to be cross-compiled for a specific operating system. It's
usually better to control this on the command line with `--platforms`.
This disables cgo by default, since a cross-compiling C/C++ toolchain is
rarely available. To force cgo, set `pure` = `off`.
See [Cross compilation] for more information.
""",
),
"goarch": attr.string(
default = "auto",
doc = """Forces a binary to be cross-compiled for a specific architecture. It's usually
better to control this on the command line with `--platforms`.
This disables cgo by default, since a cross-compiling C/C++ toolchain is
rarely available. To force cgo, set `pure` = `off`.
See [Cross compilation] for more information.
""",
),
"nogo": attr.label(
cfg = "exec",
doc = """
Custom nogo checker for rule.
Also you can completely disable nogo by using `@io_bazel_rules_go//:default_nogo` label.
""",
),
"_go_context_data": attr.label(default = "//:go_context_data"),
"_testmain_additional_deps": attr.label_list(
providers = [GoLibrary],
default = ["//go/tools/bzltestutil"],
),
# Workaround for bazelbuild/bazel#6293. See comment in lcov_merger.sh.
"_lcov_merger": attr.label(
executable = True,
default = "//go/tools/builders:lcov_merger",
cfg = "target",
),
},
"executable": True,
"test": True,
"toolchains": ["@io_bazel_rules_go//go:toolchain"],
"doc": """This builds a set of tests that can be run with `bazel test`.<br><br>
To run all tests in the workspace, and print output on failure (the
equivalent of `go test ./...`), run<br>
```
bazel test --test_output=errors //...
```<br><br>
To run a Go benchmark test, run<br>
```
bazel run //path/to:test -- -test.bench=.
```<br><br>
You can run specific tests by passing the `--test_filter=pattern
<test_filter_>` argument to Bazel. You can pass arguments to tests by passing
`--test_arg=arg <test_arg_>` arguments to Bazel, and you can set environment
variables in the test environment by passing
`--test_env=VAR=value <test_env_>`. You can terminate test execution after the first
failure by passing the `--test_runner_fast_fast <test_runner_fail_fast_>` argument
to Bazel. This is equivalent to passing `--test_arg=-failfast <test_arg_>`.<br><br>
To write structured testlog information to Bazel's `XML_OUTPUT_FILE`, tests
ran with `bazel test` execute using a wrapper. This functionality can be
disabled by setting `GO_TEST_WRAP=0` in the test environment. Additionally,
the testbinary can be invoked with `-test.v` by setting
`GO_TEST_WRAP_TESTV=1` in the test environment; this will result in the
`XML_OUTPUT_FILE` containing more granular data.<br><br>
***Note:*** To interoperate cleanly with old targets generated by [Gazelle], `name`
should be `go_default_test` for internal tests and
`go_default_xtest` for external tests. Gazelle now generates
the name based on the last component of the path. For example, a test
in `//foo/bar` is named `bar_test`, and uses internal and external
sources.
""",
}
go_test = rule(**_go_test_kwargs)
go_transition_test = go_transition_rule(**_go_test_kwargs)
def _recompile_external_deps(go, external_source, internal_archive, library_labels):
"""Recompiles some archives in order to split internal and external tests.
go_test, like 'go test', splits tests into two separate archives: an
internal archive ('package foo') and an external archive
('package foo_test'). The library under test is embedded into the internal
archive. The external archive may import it and may depend on symbols
defined in the internal test files.
To avoid conflicts, the library under test must not be linked into the test
binary, since the internal test archive embeds the same sources.
Libraries imported by the external test that transitively import the
library under test must be recompiled too, or the linker will complain that
export data they were compiled with doesn't match the export data they
are linked with.
This function identifies which archives may need to be recompiled, then
declares new output files and actions to recompile them. This is an
unfortunately an expensive process requiring O(V+E) time and space in the
size of the test's dependency graph for each test.
Args:
go: go object returned by go_context.
external_source: GoSource for the external archive.
internal_archive: GoArchive for the internal archive.
library_labels: labels for embedded libraries under test.
Returns:
external_soruce: recompiled GoSource for the external archive. If no
recompilation is needed, the original GoSource is returned.
internal_archive: recompiled GoArchive for the internal archive. If no
recompilation is needed, the original GoSource is returned.
"""
# If no libraries are embedded in the internal archive, then nothing needs
# to be recompiled.
if not library_labels:
return external_source, internal_archive
# Build a map from labels to GoArchiveData.
# If none of the librares embedded in the internal archive are in the
# dependency graph, then nothing needs to be recompiled.
arc_data_list = depset(transitive = [get_archive(dep).transitive for dep in external_source.deps]).to_list()
label_to_arc_data = {a.label: a for a in arc_data_list}
if all([l not in label_to_arc_data for l in library_labels]):
return external_source, internal_archive
# Build a depth-first post-order list of dependencies starting with the
# external archive. Each archive appears after its dependencies and before
# its dependents.
#
# This is tricky because Starlark doesn't support recursion or while loops.
# We simulate a while loop by iterating over a list of 2N elements where
# N is the number of archives. Each archive is pushed onto the stack
# twice: once before its dependencies are pushed, and once after.
# dep_list is the post-order list of dependencies we're building.
dep_list = []
# stack is a stack of targets to process. We're done when it's empty.
stack = [get_archive(dep).data.label for dep in external_source.deps]
# deps_pushed tracks the status of each target.
# DEPS_UNPROCESSED means the target is on the stack, but its dependencies
# are not.
# ON_DEP_LIST means the target and its dependencies have been added to
# dep_list.
# Non-negative integers are the number of dependencies on the stack that
# still need to be processed.
# A target is on the stack if its status is DEPS_UNPROCESSED or 0.
DEPS_UNPROCESSED = -1
ON_DEP_LIST = -2
deps_pushed = {l: DEPS_UNPROCESSED for l in stack}
# dependents maps labels to lists of known dependents. When a target is
# processed, its dependents' deps_pushed count is deprecated.
dependents = {l: [] for l in stack}
# step is a list to iterate over to simulate a while loop. i tracks
# iterations.
step = [None] * (2 * len(arc_data_list))
i = 0
for _ in step:
if len(stack) == 0:
break
i += 1
label = stack.pop()
if deps_pushed[label] == 0:
# All deps have been added to dep_list. Append this target to the
# list. If a dependent is not waiting for anything else, push
# it back onto the stack.
dep_list.append(label)
for p in dependents.get(label, []):
deps_pushed[p] -= 1
if deps_pushed[p] == 0:
stack.append(p)
continue
# deps_pushed[label] == None, indicating we don't know whether this
# targets dependencies have been processed. Other targets processed
# earlier may depend on them.
deps_pushed[label] = 0
arc_data = label_to_arc_data[label]
for c in arc_data._dep_labels:
if c not in deps_pushed:
# Dependency not seen yet; push it.
stack.append(c)
deps_pushed[c] = None
deps_pushed[label] += 1
dependents[c] = [label]
elif deps_pushed[c] != 0:
# Dependency pushed, not processed; wait for it.
deps_pushed[label] += 1
dependents[c].append(label)
if deps_pushed[label] == 0:
# No dependencies to wait for; push self.
stack.append(label)
if i != len(step):
fail("assertion failed: iterated %d times instead of %d" % (i, len(step)))
# Determine which dependencies need to be recompiled because they depend
# on embedded libraries.
need_recompile = {}
for label in dep_list:
arc_data = label_to_arc_data[label]
need_recompile[label] = any([
dep in library_labels or need_recompile[dep]
for dep in arc_data._dep_labels
])
# Recompile the internal archive without dependencies that need
# recompilation. This breaks a cycle which occurs because the deps list
# is shared between the internal and external archive. The internal archive
# can't import anything that imports itself.
internal_source = internal_archive.source
internal_deps = [dep for dep in internal_source.deps if not need_recompile[get_archive(dep).data.label]]
attrs = structs.to_dict(internal_source)
attrs["deps"] = internal_deps
internal_source = GoSource(**attrs)
internal_archive = go.archive(go, internal_source, _recompile_suffix = ".recompileinternal")
# Build a map from labels to possibly recompiled GoArchives.
label_to_archive = {}
i = 0
for label in dep_list:
i += 1
recompile_suffix = ".recompile%d" % i
# If this library is the internal archive, use the recompiled version.
if label == internal_archive.data.label:
label_to_archive[label] = internal_archive
continue
# If this is a library embedded into the internal test archive,
# use the internal test archive instead.
if label in library_labels:
label_to_archive[label] = internal_archive
continue
# Create a stub GoLibrary and GoSource from the archive data.
arc_data = label_to_arc_data[label]
library = GoLibrary(
name = arc_data.name,
label = arc_data.label,
importpath = arc_data.importpath,
importmap = arc_data.importmap,
importpath_aliases = arc_data.importpath_aliases,
pathtype = arc_data.pathtype,
resolve = None,
testfilter = None,
is_main = False,
)
deps = [label_to_archive[d] for d in arc_data._dep_labels]
source = GoSource(
library = library,
mode = go.mode,
srcs = as_list(arc_data.srcs),
orig_srcs = as_list(arc_data.orig_srcs),
orig_src_map = dict(zip(arc_data.srcs, arc_data._orig_src_map)),
cover = arc_data._cover,
embedsrcs = as_list(arc_data._embedsrcs),
x_defs = dict(arc_data._x_defs),
deps = deps,
gc_goopts = as_list(arc_data._gc_goopts),
runfiles = go._ctx.runfiles(files = arc_data.data_files),
cgo = arc_data._cgo,
cdeps = as_list(arc_data._cdeps),
cppopts = as_list(arc_data._cppopts),
copts = as_list(arc_data._copts),
cxxopts = as_list(arc_data._cxxopts),
clinkopts = as_list(arc_data._clinkopts),
cgo_exports = as_list(arc_data._cgo_exports),
)
# If this archive needs to be recompiled, use go.archive.
# Otherwise, create a stub GoArchive, using the original file.
if need_recompile[label]:
recompile_suffix = ".recompile%d" % i
archive = go.archive(go, source, _recompile_suffix = recompile_suffix)
else:
archive = GoArchive(
source = source,
data = arc_data,
direct = deps,
libs = depset(direct = [arc_data.file], transitive = [a.libs for a in deps]),
transitive = depset(direct = [arc_data], transitive = [a.transitive for a in deps]),
x_defs = source.x_defs,
cgo_deps = depset(direct = arc_data._cgo_deps, transitive = [a.cgo_deps for a in deps]),
cgo_exports = depset(direct = list(source.cgo_exports), transitive = [a.cgo_exports for a in deps]),
runfiles = source.runfiles,
mode = go.mode,
)
label_to_archive[label] = archive
# Finally, we need to replace external_source.deps with the recompiled
# archives.
attrs = structs.to_dict(external_source)
attrs["deps"] = [label_to_archive[get_archive(dep).data.label] for dep in external_source.deps]
return GoSource(**attrs), internal_archive
| load('//go/private:context.bzl', 'go_context')
load('//go/private:common.bzl', 'as_list', 'asm_exts', 'cgo_exts', 'go_exts', 'pkg_dir', 'split_srcs')
load('//go/private/rules:binary.bzl', 'gc_linkopts')
load('//go/private:providers.bzl', 'GoArchive', 'GoLibrary', 'GoSource', 'INFERRED_PATH', 'get_archive')
load('//go/private/rules:transition.bzl', 'go_transition_rule')
load('//go/private:mode.bzl', 'LINKMODE_NORMAL')
load('@bazel_skylib//lib:structs.bzl', 'structs')
def _testmain_library_to_source(go, attr, source, merge):
source['deps'] = source['deps'] + [attr.library]
def _go_test_impl(ctx):
"""go_test_impl implements go testing.
It emits an action to run the test generator, and then compiles the
test into a binary."""
go = go_context(ctx)
internal_library = go.new_library(go, testfilter='exclude')
internal_source = go.library_to_source(go, ctx.attr, internal_library, ctx.coverage_instrumented())
internal_archive = go.archive(go, internal_source)
go_srcs = split_srcs(internal_source.srcs).go
external_library = go.new_library(go, name=internal_library.name + '_test', importpath=internal_library.importpath + '_test', testfilter='only')
external_source = go.library_to_source(go, struct(srcs=[struct(files=go_srcs)], embedsrcs=[struct(files=internal_source.embedsrcs)], deps=internal_archive.direct + [internal_archive], x_defs=ctx.attr.x_defs), external_library, ctx.coverage_instrumented())
(external_source, internal_archive) = _recompile_external_deps(go, external_source, internal_archive, [t.label for t in ctx.attr.embed])
external_archive = go.archive(go, external_source)
external_srcs = split_srcs(external_source.srcs).go
if ctx.attr.rundir:
if ctx.attr.rundir.startswith('/'):
run_dir = ctx.attr.rundir
else:
run_dir = pkg_dir(ctx.label.workspace_root, ctx.attr.rundir)
else:
run_dir = pkg_dir(ctx.label.workspace_root, ctx.label.package)
main_go = go.declare_file(go, path='testmain.go')
arguments = go.builder_args(go, 'gentestmain')
arguments.add('-output', main_go)
if go.coverage_enabled:
if go.mode.race:
arguments.add('-cover_mode', 'atomic')
else:
arguments.add('-cover_mode', 'set')
arguments.add('-import', 'l=' + internal_source.library.importpath)
arguments.add('-import', 'l_test=' + external_source.library.importpath)
arguments.add('-pkgname', internal_source.library.importpath)
arguments.add_all(go_srcs, before_each='-src', format_each='l=%s')
ctx.actions.run(inputs=go_srcs, outputs=[main_go], mnemonic='GoTestGenTest', executable=go.toolchain._builder, arguments=[arguments])
test_gc_linkopts = gc_linkopts(ctx)
if not go.mode.debug:
test_gc_linkopts.extend(['-s', '-w'])
test_gc_linkopts.extend(['-X', 'github.com/bazelbuild/rules_go/go/tools/bzltestutil.RunDir=' + run_dir])
test_library = go_library(name=go.label.name + '~testmain', label=go.label, importpath='testmain', importmap='testmain', importpath_aliases=(), pathtype=INFERRED_PATH, is_main=True, resolve=None)
test_deps = external_archive.direct + [external_archive] + ctx.attr._testmain_additional_deps
if ctx.configuration.coverage_enabled:
test_deps.append(go.coverdata)
test_source = go.library_to_source(go, struct(srcs=[struct(files=[main_go])], deps=test_deps), test_library, False)
(test_archive, executable, runfiles) = go.binary(go, name=ctx.label.name, source=test_source, test_archives=[internal_archive.data], gc_linkopts=test_gc_linkopts, version_file=ctx.version_file, info_file=ctx.info_file)
env = {}
for (k, v) in ctx.attr.env.items():
env[k] = ctx.expand_location(v, ctx.attr.data)
return [test_archive, default_info(files=depset([executable]), runfiles=runfiles, executable=executable), output_group_info(compilation_outputs=[internal_archive.data.file]), coverage_common.instrumented_files_info(ctx, source_attributes=['srcs'], dependency_attributes=['deps', 'embed'], extensions=['go']), testing.TestEnvironment(env)]
_go_test_kwargs = {'implementation': _go_test_impl, 'attrs': {'data': attr.label_list(allow_files=True, doc='List of files needed by this rule at run-time. This may include data files\n needed or other programs that may be executed. The [bazel] package may be\n used to locate run files; they may appear in different places depending on the\n operating system and environment. See [data dependencies] for more\n information on data files.\n '), 'srcs': attr.label_list(allow_files=go_exts + asm_exts + cgo_exts, doc='The list of Go source files that are compiled to create the package.\n Only `.go` and `.s` files are permitted, unless the `cgo`\n attribute is set, in which case,\n `.c .cc .cpp .cxx .h .hh .hpp .hxx .inc .m .mm`\n files are also permitted. Files may be filtered at build time\n using Go [build constraints].\n '), 'deps': attr.label_list(providers=[GoLibrary], doc='List of Go libraries this test imports directly.\n These may be go_library rules or compatible rules with the [GoLibrary] provider.\n '), 'embed': attr.label_list(providers=[GoLibrary], doc="List of Go libraries whose sources should be compiled together with this\n package's sources. Labels listed here must name `go_library`,\n `go_proto_library`, or other compatible targets with the [GoLibrary] and\n [GoSource] providers. Embedded libraries must have the same `importpath` as\n the embedding library. At most one embedded library may have `cgo = True`,\n and the embedding library may not also have `cgo = True`. See [Embedding]\n for more information.\n "), 'embedsrcs': attr.label_list(allow_files=True, doc="The list of files that may be embedded into the compiled package using\n `//go:embed` directives. All files must be in the same logical directory\n or a subdirectory as source files. All source files containing `//go:embed`\n directives must be in the same logical directory. It's okay to mix static and\n generated source files and static and generated embeddable files.\n "), 'env': attr.string_dict(doc='Environment variables to set for the test execution.\n The values (but not keys) are subject to\n [location expansion](https://docs.bazel.build/versions/main/skylark/macros.html) but not full\n [make variable expansion](https://docs.bazel.build/versions/main/be/make-variables.html).\n '), 'importpath': attr.string(doc="The import path of this test. Tests can't actually be imported, but this\n may be used by [go_path] and other tools to report the location of source\n files. This may be inferred from embedded libraries.\n "), 'gc_goopts': attr.string_list(doc='List of flags to add to the Go compilation command when using the gc compiler.\n Subject to ["Make variable"] substitution and [Bourne shell tokenization].\n '), 'gc_linkopts': attr.string_list(doc='List of flags to add to the Go link command when using the gc compiler.\n Subject to ["Make variable"] substitution and [Bourne shell tokenization].\n '), 'rundir': attr.string(doc=' A directory to cd to before the test is run.\n This should be a path relative to the execution dir of the test.\n\n The default behaviour is to change to the workspace relative path, this replicates the normal\n behaviour of `go test` so it is easy to write compatible tests.\n\n Setting it to `.` makes the test behave the normal way for a bazel test.\n\n ***Note:*** This defaults to the package path.\n '), 'x_defs': attr.string_dict(doc='Map of defines to add to the go link command.\n See [Defines and stamping] for examples of how to use these.\n '), 'linkmode': attr.string(default=LINKMODE_NORMAL, doc='Determines how the binary should be built and linked. This accepts some of\n the same values as `go build -buildmode` and works the same way.\n <br><br>\n <ul>\n <li>`normal`: Builds a normal executable with position-dependent code.</li>\n <li>`pie`: Builds a position-independent executable.</li>\n <li>`plugin`: Builds a shared library that can be loaded as a Go plugin. Only supported on platforms that support plugins.</li>\n <li>`c-shared`: Builds a shared library that can be linked into a C program.</li>\n <li>`c-archive`: Builds an archive that can be linked into a C program.</li>\n </ul>\n '), 'cgo': attr.bool(doc='\n If `True`, the package may contain [cgo] code, and `srcs` may contain\n C, C++, Objective-C, and Objective-C++ files and non-Go assembly files.\n When cgo is enabled, these files will be compiled with the C/C++ toolchain\n and included in the package. Note that this attribute does not force cgo\n to be enabled. Cgo is enabled for non-cross-compiling builds when a C/C++\n toolchain is configured.\n '), 'cdeps': attr.label_list(doc='The list of other libraries that the c code depends on.\n This can be anything that would be allowed in [cc_library deps]\n Only valid if `cgo` = `True`.\n '), 'cppopts': attr.string_list(doc='List of flags to add to the C/C++ preprocessor command.\n Subject to ["Make variable"] substitution and [Bourne shell tokenization].\n Only valid if `cgo` = `True`.\n '), 'copts': attr.string_list(doc='List of flags to add to the C compilation command.\n Subject to ["Make variable"] substitution and [Bourne shell tokenization].\n Only valid if `cgo` = `True`.\n '), 'cxxopts': attr.string_list(doc='List of flags to add to the C++ compilation command.\n Subject to ["Make variable"] substitution and [Bourne shell tokenization].\n Only valid if `cgo` = `True`.\n '), 'clinkopts': attr.string_list(doc='List of flags to add to the C link command.\n Subject to ["Make variable"] substitution and [Bourne shell tokenization].\n Only valid if `cgo` = `True`.\n '), 'pure': attr.string(default='auto', doc="Controls whether cgo source code and dependencies are compiled and linked,\n similar to setting `CGO_ENABLED`. May be one of `on`, `off`,\n or `auto`. If `auto`, pure mode is enabled when no C/C++\n toolchain is configured or when cross-compiling. It's usually better to\n control this on the command line with\n `--@io_bazel_rules_go//go/config:pure`. See [mode attributes], specifically\n [pure].\n "), 'static': attr.string(default='auto', doc="Controls whether a binary is statically linked. May be one of `on`,\n `off`, or `auto`. Not available on all platforms or in all\n modes. It's usually better to control this on the command line with\n `--@io_bazel_rules_go//go/config:static`. See [mode attributes],\n specifically [static].\n "), 'race': attr.string(default='auto', doc="Controls whether code is instrumented for race detection. May be one of\n `on`, `off`, or `auto`. Not available when cgo is\n disabled. In most cases, it's better to control this on the command line with\n `--@io_bazel_rules_go//go/config:race`. See [mode attributes], specifically\n [race].\n "), 'msan': attr.string(default='auto', doc="Controls whether code is instrumented for memory sanitization. May be one of\n `on`, `off`, or `auto`. Not available when cgo is\n disabled. In most cases, it's better to control this on the command line with\n `--@io_bazel_rules_go//go/config:msan`. See [mode attributes], specifically\n [msan].\n "), 'gotags': attr.string_list(doc='Enables a list of build tags when evaluating [build constraints]. Useful for\n conditional compilation.\n '), 'goos': attr.string(default='auto', doc="Forces a binary to be cross-compiled for a specific operating system. It's\n usually better to control this on the command line with `--platforms`.\n\n This disables cgo by default, since a cross-compiling C/C++ toolchain is\n rarely available. To force cgo, set `pure` = `off`.\n\n See [Cross compilation] for more information.\n "), 'goarch': attr.string(default='auto', doc="Forces a binary to be cross-compiled for a specific architecture. It's usually\n better to control this on the command line with `--platforms`.\n\n This disables cgo by default, since a cross-compiling C/C++ toolchain is\n rarely available. To force cgo, set `pure` = `off`.\n\n See [Cross compilation] for more information.\n "), 'nogo': attr.label(cfg='exec', doc='\n Custom nogo checker for rule.\n Also you can completely disable nogo by using `@io_bazel_rules_go//:default_nogo` label.\n '), '_go_context_data': attr.label(default='//:go_context_data'), '_testmain_additional_deps': attr.label_list(providers=[GoLibrary], default=['//go/tools/bzltestutil']), '_lcov_merger': attr.label(executable=True, default='//go/tools/builders:lcov_merger', cfg='target')}, 'executable': True, 'test': True, 'toolchains': ['@io_bazel_rules_go//go:toolchain'], 'doc': "This builds a set of tests that can be run with `bazel test`.<br><br>\n To run all tests in the workspace, and print output on failure (the\n equivalent of `go test ./...`), run<br>\n ```\n bazel test --test_output=errors //...\n ```<br><br>\n To run a Go benchmark test, run<br>\n ```\n bazel run //path/to:test -- -test.bench=.\n ```<br><br>\n You can run specific tests by passing the `--test_filter=pattern\n <test_filter_>` argument to Bazel. You can pass arguments to tests by passing\n `--test_arg=arg <test_arg_>` arguments to Bazel, and you can set environment\n variables in the test environment by passing\n `--test_env=VAR=value <test_env_>`. You can terminate test execution after the first\n failure by passing the `--test_runner_fast_fast <test_runner_fail_fast_>` argument\n to Bazel. This is equivalent to passing `--test_arg=-failfast <test_arg_>`.<br><br>\n To write structured testlog information to Bazel's `XML_OUTPUT_FILE`, tests\n ran with `bazel test` execute using a wrapper. This functionality can be\n disabled by setting `GO_TEST_WRAP=0` in the test environment. Additionally,\n the testbinary can be invoked with `-test.v` by setting\n `GO_TEST_WRAP_TESTV=1` in the test environment; this will result in the\n `XML_OUTPUT_FILE` containing more granular data.<br><br>\n ***Note:*** To interoperate cleanly with old targets generated by [Gazelle], `name`\n should be `go_default_test` for internal tests and\n `go_default_xtest` for external tests. Gazelle now generates\n the name based on the last component of the path. For example, a test\n in `//foo/bar` is named `bar_test`, and uses internal and external\n sources.\n "}
go_test = rule(**_go_test_kwargs)
go_transition_test = go_transition_rule(**_go_test_kwargs)
def _recompile_external_deps(go, external_source, internal_archive, library_labels):
"""Recompiles some archives in order to split internal and external tests.
go_test, like 'go test', splits tests into two separate archives: an
internal archive ('package foo') and an external archive
('package foo_test'). The library under test is embedded into the internal
archive. The external archive may import it and may depend on symbols
defined in the internal test files.
To avoid conflicts, the library under test must not be linked into the test
binary, since the internal test archive embeds the same sources.
Libraries imported by the external test that transitively import the
library under test must be recompiled too, or the linker will complain that
export data they were compiled with doesn't match the export data they
are linked with.
This function identifies which archives may need to be recompiled, then
declares new output files and actions to recompile them. This is an
unfortunately an expensive process requiring O(V+E) time and space in the
size of the test's dependency graph for each test.
Args:
go: go object returned by go_context.
external_source: GoSource for the external archive.
internal_archive: GoArchive for the internal archive.
library_labels: labels for embedded libraries under test.
Returns:
external_soruce: recompiled GoSource for the external archive. If no
recompilation is needed, the original GoSource is returned.
internal_archive: recompiled GoArchive for the internal archive. If no
recompilation is needed, the original GoSource is returned.
"""
if not library_labels:
return (external_source, internal_archive)
arc_data_list = depset(transitive=[get_archive(dep).transitive for dep in external_source.deps]).to_list()
label_to_arc_data = {a.label: a for a in arc_data_list}
if all([l not in label_to_arc_data for l in library_labels]):
return (external_source, internal_archive)
dep_list = []
stack = [get_archive(dep).data.label for dep in external_source.deps]
deps_unprocessed = -1
on_dep_list = -2
deps_pushed = {l: DEPS_UNPROCESSED for l in stack}
dependents = {l: [] for l in stack}
step = [None] * (2 * len(arc_data_list))
i = 0
for _ in step:
if len(stack) == 0:
break
i += 1
label = stack.pop()
if deps_pushed[label] == 0:
dep_list.append(label)
for p in dependents.get(label, []):
deps_pushed[p] -= 1
if deps_pushed[p] == 0:
stack.append(p)
continue
deps_pushed[label] = 0
arc_data = label_to_arc_data[label]
for c in arc_data._dep_labels:
if c not in deps_pushed:
stack.append(c)
deps_pushed[c] = None
deps_pushed[label] += 1
dependents[c] = [label]
elif deps_pushed[c] != 0:
deps_pushed[label] += 1
dependents[c].append(label)
if deps_pushed[label] == 0:
stack.append(label)
if i != len(step):
fail('assertion failed: iterated %d times instead of %d' % (i, len(step)))
need_recompile = {}
for label in dep_list:
arc_data = label_to_arc_data[label]
need_recompile[label] = any([dep in library_labels or need_recompile[dep] for dep in arc_data._dep_labels])
internal_source = internal_archive.source
internal_deps = [dep for dep in internal_source.deps if not need_recompile[get_archive(dep).data.label]]
attrs = structs.to_dict(internal_source)
attrs['deps'] = internal_deps
internal_source = go_source(**attrs)
internal_archive = go.archive(go, internal_source, _recompile_suffix='.recompileinternal')
label_to_archive = {}
i = 0
for label in dep_list:
i += 1
recompile_suffix = '.recompile%d' % i
if label == internal_archive.data.label:
label_to_archive[label] = internal_archive
continue
if label in library_labels:
label_to_archive[label] = internal_archive
continue
arc_data = label_to_arc_data[label]
library = go_library(name=arc_data.name, label=arc_data.label, importpath=arc_data.importpath, importmap=arc_data.importmap, importpath_aliases=arc_data.importpath_aliases, pathtype=arc_data.pathtype, resolve=None, testfilter=None, is_main=False)
deps = [label_to_archive[d] for d in arc_data._dep_labels]
source = go_source(library=library, mode=go.mode, srcs=as_list(arc_data.srcs), orig_srcs=as_list(arc_data.orig_srcs), orig_src_map=dict(zip(arc_data.srcs, arc_data._orig_src_map)), cover=arc_data._cover, embedsrcs=as_list(arc_data._embedsrcs), x_defs=dict(arc_data._x_defs), deps=deps, gc_goopts=as_list(arc_data._gc_goopts), runfiles=go._ctx.runfiles(files=arc_data.data_files), cgo=arc_data._cgo, cdeps=as_list(arc_data._cdeps), cppopts=as_list(arc_data._cppopts), copts=as_list(arc_data._copts), cxxopts=as_list(arc_data._cxxopts), clinkopts=as_list(arc_data._clinkopts), cgo_exports=as_list(arc_data._cgo_exports))
if need_recompile[label]:
recompile_suffix = '.recompile%d' % i
archive = go.archive(go, source, _recompile_suffix=recompile_suffix)
else:
archive = go_archive(source=source, data=arc_data, direct=deps, libs=depset(direct=[arc_data.file], transitive=[a.libs for a in deps]), transitive=depset(direct=[arc_data], transitive=[a.transitive for a in deps]), x_defs=source.x_defs, cgo_deps=depset(direct=arc_data._cgo_deps, transitive=[a.cgo_deps for a in deps]), cgo_exports=depset(direct=list(source.cgo_exports), transitive=[a.cgo_exports for a in deps]), runfiles=source.runfiles, mode=go.mode)
label_to_archive[label] = archive
attrs = structs.to_dict(external_source)
attrs['deps'] = [label_to_archive[get_archive(dep).data.label] for dep in external_source.deps]
return (go_source(**attrs), internal_archive) |
#
# PySNMP MIB module CISCO-UNIFIED-COMPUTING-CONFORM-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-UNIFIED-COMPUTING-CONFORM-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 17:58:47 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ConstraintsIntersection, ValueSizeConstraint, ConstraintsUnion, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsIntersection", "ValueSizeConstraint", "ConstraintsUnion", "ValueRangeConstraint")
ciscoMgmt, = mibBuilder.importSymbols("CISCO-SMI", "ciscoMgmt")
cucsFaultDescription, cucsFaultAffectedObjectId, cucsFaultCreationTime, cucsFaultType, cucsFaultCode, cucsFaultOccur, cucsFaultSeverity, cucsFaultAffectedObjectDn, cucsFaultProbableCause, cucsFaultLastModificationTime = mibBuilder.importSymbols("CISCO-UNIFIED-COMPUTING-FAULT-MIB", "cucsFaultDescription", "cucsFaultAffectedObjectId", "cucsFaultCreationTime", "cucsFaultType", "cucsFaultCode", "cucsFaultOccur", "cucsFaultSeverity", "cucsFaultAffectedObjectDn", "cucsFaultProbableCause", "cucsFaultLastModificationTime")
ciscoUnifiedComputingMIBObjects, ciscoUnifiedComputingMIB = mibBuilder.importSymbols("CISCO-UNIFIED-COMPUTING-MIB", "ciscoUnifiedComputingMIBObjects", "ciscoUnifiedComputingMIB")
cucsFaultActiveNotif, cucsFaultClearNotif = mibBuilder.importSymbols("CISCO-UNIFIED-COMPUTING-NOTIFS-MIB", "cucsFaultActiveNotif", "cucsFaultClearNotif")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
NotificationType, iso, Counter64, Integer32, MibScalar, MibTable, MibTableRow, MibTableColumn, ObjectIdentity, IpAddress, MibIdentifier, Gauge32, Unsigned32, Counter32, TimeTicks, ModuleIdentity, Bits = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "iso", "Counter64", "Integer32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ObjectIdentity", "IpAddress", "MibIdentifier", "Gauge32", "Unsigned32", "Counter32", "TimeTicks", "ModuleIdentity", "Bits")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
ciscoUnifiedComputingMIBConform = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 9, 719, 2))
ciscoUnifiedComputingMIBConform.setRevisions(('2010-01-29 00:00',))
if mibBuilder.loadTexts: ciscoUnifiedComputingMIBConform.setLastUpdated('201001290000Z')
if mibBuilder.loadTexts: ciscoUnifiedComputingMIBConform.setOrganization('Cisco')
cucsFaultMIBConform = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 719, 2, 1))
cucsFaultMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 719, 2, 1, 1))
cucsFaultMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 719, 2, 1, 2))
cucsFaultMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 719, 2, 1, 1, 1)).setObjects(("CISCO-UNIFIED-COMPUTING-CONFORM-MIB", "cucsFaultsNotifGroup"), ("CISCO-UNIFIED-COMPUTING-CONFORM-MIB", "cucsFaultsGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cucsFaultMIBCompliance = cucsFaultMIBCompliance.setStatus('current')
cucsFaultsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 719, 2, 1, 2, 1)).setObjects(("CISCO-UNIFIED-COMPUTING-FAULT-MIB", "cucsFaultDescription"), ("CISCO-UNIFIED-COMPUTING-FAULT-MIB", "cucsFaultAffectedObjectId"), ("CISCO-UNIFIED-COMPUTING-FAULT-MIB", "cucsFaultAffectedObjectDn"), ("CISCO-UNIFIED-COMPUTING-FAULT-MIB", "cucsFaultCreationTime"), ("CISCO-UNIFIED-COMPUTING-FAULT-MIB", "cucsFaultLastModificationTime"), ("CISCO-UNIFIED-COMPUTING-FAULT-MIB", "cucsFaultCode"), ("CISCO-UNIFIED-COMPUTING-FAULT-MIB", "cucsFaultType"), ("CISCO-UNIFIED-COMPUTING-FAULT-MIB", "cucsFaultProbableCause"), ("CISCO-UNIFIED-COMPUTING-FAULT-MIB", "cucsFaultSeverity"), ("CISCO-UNIFIED-COMPUTING-FAULT-MIB", "cucsFaultOccur"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cucsFaultsGroup = cucsFaultsGroup.setStatus('current')
cucsFaultsNotifGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 9, 9, 719, 2, 1, 2, 2)).setObjects(("CISCO-UNIFIED-COMPUTING-NOTIFS-MIB", "cucsFaultActiveNotif"), ("CISCO-UNIFIED-COMPUTING-NOTIFS-MIB", "cucsFaultClearNotif"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cucsFaultsNotifGroup = cucsFaultsNotifGroup.setStatus('current')
mibBuilder.exportSymbols("CISCO-UNIFIED-COMPUTING-CONFORM-MIB", cucsFaultMIBCompliances=cucsFaultMIBCompliances, ciscoUnifiedComputingMIBConform=ciscoUnifiedComputingMIBConform, cucsFaultMIBGroups=cucsFaultMIBGroups, PYSNMP_MODULE_ID=ciscoUnifiedComputingMIBConform, cucsFaultsNotifGroup=cucsFaultsNotifGroup, cucsFaultMIBCompliance=cucsFaultMIBCompliance, cucsFaultMIBConform=cucsFaultMIBConform, cucsFaultsGroup=cucsFaultsGroup)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, constraints_intersection, value_size_constraint, constraints_union, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsIntersection', 'ValueSizeConstraint', 'ConstraintsUnion', 'ValueRangeConstraint')
(cisco_mgmt,) = mibBuilder.importSymbols('CISCO-SMI', 'ciscoMgmt')
(cucs_fault_description, cucs_fault_affected_object_id, cucs_fault_creation_time, cucs_fault_type, cucs_fault_code, cucs_fault_occur, cucs_fault_severity, cucs_fault_affected_object_dn, cucs_fault_probable_cause, cucs_fault_last_modification_time) = mibBuilder.importSymbols('CISCO-UNIFIED-COMPUTING-FAULT-MIB', 'cucsFaultDescription', 'cucsFaultAffectedObjectId', 'cucsFaultCreationTime', 'cucsFaultType', 'cucsFaultCode', 'cucsFaultOccur', 'cucsFaultSeverity', 'cucsFaultAffectedObjectDn', 'cucsFaultProbableCause', 'cucsFaultLastModificationTime')
(cisco_unified_computing_mib_objects, cisco_unified_computing_mib) = mibBuilder.importSymbols('CISCO-UNIFIED-COMPUTING-MIB', 'ciscoUnifiedComputingMIBObjects', 'ciscoUnifiedComputingMIB')
(cucs_fault_active_notif, cucs_fault_clear_notif) = mibBuilder.importSymbols('CISCO-UNIFIED-COMPUTING-NOTIFS-MIB', 'cucsFaultActiveNotif', 'cucsFaultClearNotif')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(notification_type, iso, counter64, integer32, mib_scalar, mib_table, mib_table_row, mib_table_column, object_identity, ip_address, mib_identifier, gauge32, unsigned32, counter32, time_ticks, module_identity, bits) = mibBuilder.importSymbols('SNMPv2-SMI', 'NotificationType', 'iso', 'Counter64', 'Integer32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ObjectIdentity', 'IpAddress', 'MibIdentifier', 'Gauge32', 'Unsigned32', 'Counter32', 'TimeTicks', 'ModuleIdentity', 'Bits')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
cisco_unified_computing_mib_conform = module_identity((1, 3, 6, 1, 4, 1, 9, 9, 719, 2))
ciscoUnifiedComputingMIBConform.setRevisions(('2010-01-29 00:00',))
if mibBuilder.loadTexts:
ciscoUnifiedComputingMIBConform.setLastUpdated('201001290000Z')
if mibBuilder.loadTexts:
ciscoUnifiedComputingMIBConform.setOrganization('Cisco')
cucs_fault_mib_conform = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 719, 2, 1))
cucs_fault_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 719, 2, 1, 1))
cucs_fault_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 719, 2, 1, 2))
cucs_fault_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 9, 9, 719, 2, 1, 1, 1)).setObjects(('CISCO-UNIFIED-COMPUTING-CONFORM-MIB', 'cucsFaultsNotifGroup'), ('CISCO-UNIFIED-COMPUTING-CONFORM-MIB', 'cucsFaultsGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cucs_fault_mib_compliance = cucsFaultMIBCompliance.setStatus('current')
cucs_faults_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 719, 2, 1, 2, 1)).setObjects(('CISCO-UNIFIED-COMPUTING-FAULT-MIB', 'cucsFaultDescription'), ('CISCO-UNIFIED-COMPUTING-FAULT-MIB', 'cucsFaultAffectedObjectId'), ('CISCO-UNIFIED-COMPUTING-FAULT-MIB', 'cucsFaultAffectedObjectDn'), ('CISCO-UNIFIED-COMPUTING-FAULT-MIB', 'cucsFaultCreationTime'), ('CISCO-UNIFIED-COMPUTING-FAULT-MIB', 'cucsFaultLastModificationTime'), ('CISCO-UNIFIED-COMPUTING-FAULT-MIB', 'cucsFaultCode'), ('CISCO-UNIFIED-COMPUTING-FAULT-MIB', 'cucsFaultType'), ('CISCO-UNIFIED-COMPUTING-FAULT-MIB', 'cucsFaultProbableCause'), ('CISCO-UNIFIED-COMPUTING-FAULT-MIB', 'cucsFaultSeverity'), ('CISCO-UNIFIED-COMPUTING-FAULT-MIB', 'cucsFaultOccur'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cucs_faults_group = cucsFaultsGroup.setStatus('current')
cucs_faults_notif_group = notification_group((1, 3, 6, 1, 4, 1, 9, 9, 719, 2, 1, 2, 2)).setObjects(('CISCO-UNIFIED-COMPUTING-NOTIFS-MIB', 'cucsFaultActiveNotif'), ('CISCO-UNIFIED-COMPUTING-NOTIFS-MIB', 'cucsFaultClearNotif'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cucs_faults_notif_group = cucsFaultsNotifGroup.setStatus('current')
mibBuilder.exportSymbols('CISCO-UNIFIED-COMPUTING-CONFORM-MIB', cucsFaultMIBCompliances=cucsFaultMIBCompliances, ciscoUnifiedComputingMIBConform=ciscoUnifiedComputingMIBConform, cucsFaultMIBGroups=cucsFaultMIBGroups, PYSNMP_MODULE_ID=ciscoUnifiedComputingMIBConform, cucsFaultsNotifGroup=cucsFaultsNotifGroup, cucsFaultMIBCompliance=cucsFaultMIBCompliance, cucsFaultMIBConform=cucsFaultMIBConform, cucsFaultsGroup=cucsFaultsGroup) |
"""
Copyright 2018-present Open Networking Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
load("//tools/build/bazel:generate_workspace.bzl", "COMPILE", "TEST", "maven_coordinates")
load("//tools/build/bazel:variables.bzl", "ONOS_GROUP_ID", "ONOS_VERSION")
def dump(obj):
for attr in dir(obj):
print("obj.%s = %r" % (attr, getattr(obj, attr)))
# Implementation of a rule to produce an OSGi feature XML snippet
def _osgi_feature_impl(ctx):
output = ctx.outputs.feature_xml
args = [
"-O",
output.path,
"-n",
ctx.attr.name,
"-v",
ctx.attr.version,
"-t",
ctx.attr.description,
]
inputs = []
for dep in ctx.attr.included_bundles:
args += ["-b", maven_coordinates(dep.label)]
for f in dep.java.outputs.jars:
inputs += [f.class_jar]
for dep in ctx.attr.excluded_bundles:
args += ["-e", maven_coordinates(dep.label)]
for f in dep.java.outputs.jars:
inputs += [f.class_jar]
for f in ctx.attr.required_features:
args += ["-f", f]
args += ["-F" if ctx.attr.generate_file else "-E"]
ctx.actions.run(
inputs = inputs,
outputs = [output],
arguments = args,
progress_message = "Generating feature %s" % ctx.attr.name,
executable = ctx.executable._writer,
)
osgi_feature = rule(
attrs = {
"description": attr.string(),
"version": attr.string(default = ONOS_VERSION),
"required_features": attr.string_list(default = ["onos-api"]),
"included_bundles": attr.label_list(),
"excluded_bundles": attr.label_list(default = []),
"generate_file": attr.bool(default = False),
"_writer": attr.label(
executable = True,
cfg = "host",
allow_files = True,
default = Label("//tools/build/bazel:onos_app_writer"),
),
},
outputs = {
"feature_xml": "feature-%{name}.xml",
},
implementation = _osgi_feature_impl,
)
# OSGi feature XML header & footer constants
FEATURES_HEADER = '''\
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<features xmlns="http://karaf.apache.org/xmlns/features/v1.2.0"
name="onos-%s">
<repository>mvn:org.apache.karaf.features/standard/3.0.8/xml/features</repository>
''' % ONOS_VERSION
FEATURES_FOOTER = "</features>"
# Implementation of a rule to produce an OSGi feature repo XML file
def _osgi_feature_repo_impl(ctx):
output = ctx.outputs.feature_repo_xml
cmd = "(echo '%s';" % FEATURES_HEADER
inputs = []
for dep in ctx.attr.exported_features:
for f in dep.files.to_list():
inputs += [f]
cmd += "cat %s;" % f.path
cmd += "echo '%s') > %s;" % (FEATURES_FOOTER, output.path)
ctx.actions.run_shell(
inputs = inputs,
outputs = [output],
progress_message = "Generating feature repo %s" % ctx.attr.name,
command = cmd,
)
osgi_feature_repo = rule(
attrs = {
"description": attr.string(),
"version": attr.string(default = ONOS_VERSION),
"exported_features": attr.label_list(),
},
outputs = {
"feature_repo_xml": "feature-repo-%{name}.xml",
},
implementation = _osgi_feature_repo_impl,
)
| """
Copyright 2018-present Open Networking Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
load('//tools/build/bazel:generate_workspace.bzl', 'COMPILE', 'TEST', 'maven_coordinates')
load('//tools/build/bazel:variables.bzl', 'ONOS_GROUP_ID', 'ONOS_VERSION')
def dump(obj):
for attr in dir(obj):
print('obj.%s = %r' % (attr, getattr(obj, attr)))
def _osgi_feature_impl(ctx):
output = ctx.outputs.feature_xml
args = ['-O', output.path, '-n', ctx.attr.name, '-v', ctx.attr.version, '-t', ctx.attr.description]
inputs = []
for dep in ctx.attr.included_bundles:
args += ['-b', maven_coordinates(dep.label)]
for f in dep.java.outputs.jars:
inputs += [f.class_jar]
for dep in ctx.attr.excluded_bundles:
args += ['-e', maven_coordinates(dep.label)]
for f in dep.java.outputs.jars:
inputs += [f.class_jar]
for f in ctx.attr.required_features:
args += ['-f', f]
args += ['-F' if ctx.attr.generate_file else '-E']
ctx.actions.run(inputs=inputs, outputs=[output], arguments=args, progress_message='Generating feature %s' % ctx.attr.name, executable=ctx.executable._writer)
osgi_feature = rule(attrs={'description': attr.string(), 'version': attr.string(default=ONOS_VERSION), 'required_features': attr.string_list(default=['onos-api']), 'included_bundles': attr.label_list(), 'excluded_bundles': attr.label_list(default=[]), 'generate_file': attr.bool(default=False), '_writer': attr.label(executable=True, cfg='host', allow_files=True, default=label('//tools/build/bazel:onos_app_writer'))}, outputs={'feature_xml': 'feature-%{name}.xml'}, implementation=_osgi_feature_impl)
features_header = '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>\n<features xmlns="http://karaf.apache.org/xmlns/features/v1.2.0"\n name="onos-%s">\n <repository>mvn:org.apache.karaf.features/standard/3.0.8/xml/features</repository>\n' % ONOS_VERSION
features_footer = '</features>'
def _osgi_feature_repo_impl(ctx):
output = ctx.outputs.feature_repo_xml
cmd = "(echo '%s';" % FEATURES_HEADER
inputs = []
for dep in ctx.attr.exported_features:
for f in dep.files.to_list():
inputs += [f]
cmd += 'cat %s;' % f.path
cmd += "echo '%s') > %s;" % (FEATURES_FOOTER, output.path)
ctx.actions.run_shell(inputs=inputs, outputs=[output], progress_message='Generating feature repo %s' % ctx.attr.name, command=cmd)
osgi_feature_repo = rule(attrs={'description': attr.string(), 'version': attr.string(default=ONOS_VERSION), 'exported_features': attr.label_list()}, outputs={'feature_repo_xml': 'feature-repo-%{name}.xml'}, implementation=_osgi_feature_repo_impl) |
# https://www.hackerrank.com/challenges/bomber-man/problem?isFullScreen=true
def bomberMan(n, grid):
# Write your code here
def printList(array):
for i in range(len(array)):
array[i] = ''.join(map(str,array[i]))
return array
def bomb(previous_grid, r,c):
complete_state = [['O' for i in range(c)] for j in range(r)]
for i in range(r):
for j in range(c):
if previous_grid[i][j] == 'O':
complete_state[i][j] = '.'
if i+1<r:
complete_state[i+1][j] = '.'
if i>0:
complete_state[i-1][j] = '.'
if j+1<c:
complete_state[i][j+1] = '.'
if j>0:
complete_state[i][j-1] = '.'
return complete_state
next_state = bomb(grid, r,c)
last_state = bomb(next_state, r,c)
if n == 1:
return printList(grid)
elif n%2 == 0:
return printList(['O'*c for i in range(r)])
elif (n-3) % 4 ==0:
return printList(next_state)
else:
return printList(last_state)
| def bomber_man(n, grid):
def print_list(array):
for i in range(len(array)):
array[i] = ''.join(map(str, array[i]))
return array
def bomb(previous_grid, r, c):
complete_state = [['O' for i in range(c)] for j in range(r)]
for i in range(r):
for j in range(c):
if previous_grid[i][j] == 'O':
complete_state[i][j] = '.'
if i + 1 < r:
complete_state[i + 1][j] = '.'
if i > 0:
complete_state[i - 1][j] = '.'
if j + 1 < c:
complete_state[i][j + 1] = '.'
if j > 0:
complete_state[i][j - 1] = '.'
return complete_state
next_state = bomb(grid, r, c)
last_state = bomb(next_state, r, c)
if n == 1:
return print_list(grid)
elif n % 2 == 0:
return print_list(['O' * c for i in range(r)])
elif (n - 3) % 4 == 0:
return print_list(next_state)
else:
return print_list(last_state) |
def get_length(dna):
""" (str) -> int
Return the length of the DNA sequence dna.
>>> get_length('ATCGAT')
6
>>> get_length('ATCG')
4
"""
return len(dna)
#print(get_length('SALIM'))
def is_longer(dna1, dna2):
""" (str, str) -> bool
Return True if and only if DNA sequence dna1 is longer than DNA sequence
dna2.
>>> is_longer('ATCG', 'AT')
True
>>> is_longer('ATCG', 'ATCGGA')
False
"""
return len(dna1) > len(dna2)
#print(is_longer('ATCG', 'ATCGGA'), is_longer('ATCG', 'AT'))
def count_nucleotides(dna, nucleotide):
""" (str, str) -> int
Return the number of occurrences of nucleotide in the DNA sequence dna.
>>> count_nucleotides('ATCGGC', 'G')
2
>>> count_nucleotides('ATCTA', 'G')
0
"""
return dna.count(nucleotide)
#print(count_nucleotides('ATCTA', 'G'), count_nucleotides('ATCGGC', 'G'))
def contains_sequence(dna1, dna2):
""" (str, str) -> bool
Return True if and only if DNA sequence dna2 occurs in the DNA sequence
dna1.
>>> contains_sequence('ATCGGC', 'GG')
True
>>> contains_sequence('ATCGGC', 'GT')
False
"""
return dna2 in dna1
#print(contains_sequence('ATCGGC', 'GT'), contains_sequence('ATCGGC', 'GG'))
def is_valid_sequence(s):
""" (str) -> bool
The parameter is a potential DNA sequence. Return True if and
only if the DNA sequence is valid (that is, it contains no
characters other than 'A', 'T', 'C' and 'G').
>>> is_valid_sequence("ATTCCGGGA")
True
>>> is_valid_sequence("SALIMAAAA")
False
"""
nucs = "ATCG"
counterL = []
total = 0
for i in s:
if i in nucs and not i in counterL:
total += 1
counterL += i
elif i not in nucs: return False
return (total >= 4) and (nucs == "ATCG")
#print(is_valid_sequence("ATTCCGGGA"), is_valid_sequence("SALIMAAAA"))
def insert_sequence(s1, s2, s3):
""" (str, str, int) -> str
The first two parameters are DNA sequences and the
third parameter is an index. Return the DNA sequence obtained
by inserting the second DNA sequence into the first DNA sequence
at the given index. (You can assume that the index is valid.)
>>> insert_sequence("CCGG", "AT", 2)
CCATGG
>>> insert_sequence("SALIM", "AL", 3)
SALALIM
"""
return s1[:s3] + s2 + s1[s3:]
#print(insert_sequence("CCGG", "AT", 2), insert_sequence("SALIM", "AL", 3))
def get_complement(s):
""" (str) -> str
The first parameter is a nucleotide ('A', 'T', 'C' or 'G').
Return the nucleotide's complement. We have intentionally not
given you any examples for this function. The Problem Domain section
explains what a nucleotide is and what a complement is.
"""
output = ''
for i in s:
if i == 'A': output += 'T'
if i == 'T': output += 'A'
if i == 'G': output += 'C'
if i == 'C': output += 'G'
return output
#print("".join(get_complement("AATCCGG")))
def get_complementary_sequence(s):
""" (str) -> str
The parameter is a DNA sequence. Return the DNA sequence that
is complementary to the given DNA sequence. For example, if you
call this function with 'AT' as the argument, it should return 'TA'.
>>> get_complementary_sequence('ATCGGACT')
TAGCCTGA
>>> get_complementary_sequence('GCACTCC')
CGTGAGG
"""
complementary_seq = [get_complement(i) for i in s]
return "".join(complementary_seq)
print(get_complementary_sequence('GCACTCC')) | def get_length(dna):
""" (str) -> int
Return the length of the DNA sequence dna.
>>> get_length('ATCGAT')
6
>>> get_length('ATCG')
4
"""
return len(dna)
def is_longer(dna1, dna2):
""" (str, str) -> bool
Return True if and only if DNA sequence dna1 is longer than DNA sequence
dna2.
>>> is_longer('ATCG', 'AT')
True
>>> is_longer('ATCG', 'ATCGGA')
False
"""
return len(dna1) > len(dna2)
def count_nucleotides(dna, nucleotide):
""" (str, str) -> int
Return the number of occurrences of nucleotide in the DNA sequence dna.
>>> count_nucleotides('ATCGGC', 'G')
2
>>> count_nucleotides('ATCTA', 'G')
0
"""
return dna.count(nucleotide)
def contains_sequence(dna1, dna2):
""" (str, str) -> bool
Return True if and only if DNA sequence dna2 occurs in the DNA sequence
dna1.
>>> contains_sequence('ATCGGC', 'GG')
True
>>> contains_sequence('ATCGGC', 'GT')
False
"""
return dna2 in dna1
def is_valid_sequence(s):
""" (str) -> bool
The parameter is a potential DNA sequence. Return True if and
only if the DNA sequence is valid (that is, it contains no
characters other than 'A', 'T', 'C' and 'G').
>>> is_valid_sequence("ATTCCGGGA")
True
>>> is_valid_sequence("SALIMAAAA")
False
"""
nucs = 'ATCG'
counter_l = []
total = 0
for i in s:
if i in nucs and (not i in counterL):
total += 1
counter_l += i
elif i not in nucs:
return False
return total >= 4 and nucs == 'ATCG'
def insert_sequence(s1, s2, s3):
""" (str, str, int) -> str
The first two parameters are DNA sequences and the
third parameter is an index. Return the DNA sequence obtained
by inserting the second DNA sequence into the first DNA sequence
at the given index. (You can assume that the index is valid.)
>>> insert_sequence("CCGG", "AT", 2)
CCATGG
>>> insert_sequence("SALIM", "AL", 3)
SALALIM
"""
return s1[:s3] + s2 + s1[s3:]
def get_complement(s):
""" (str) -> str
The first parameter is a nucleotide ('A', 'T', 'C' or 'G').
Return the nucleotide's complement. We have intentionally not
given you any examples for this function. The Problem Domain section
explains what a nucleotide is and what a complement is.
"""
output = ''
for i in s:
if i == 'A':
output += 'T'
if i == 'T':
output += 'A'
if i == 'G':
output += 'C'
if i == 'C':
output += 'G'
return output
def get_complementary_sequence(s):
""" (str) -> str
The parameter is a DNA sequence. Return the DNA sequence that
is complementary to the given DNA sequence. For example, if you
call this function with 'AT' as the argument, it should return 'TA'.
>>> get_complementary_sequence('ATCGGACT')
TAGCCTGA
>>> get_complementary_sequence('GCACTCC')
CGTGAGG
"""
complementary_seq = [get_complement(i) for i in s]
return ''.join(complementary_seq)
print(get_complementary_sequence('GCACTCC')) |
'''
@author: l4zyc0d3r
People who are happy makes other happy. I am gonna finish it slowly but definitely.cdt
'''
class Solution:
def rangeSumBST(self, root: TreeNode, low: int, high: int) -> int:
if not root: return 0
res = 0
if low<=root.val<=high:
res = root.val
return res + self.rangeSumBST(root.left, low, high) + self.rangeSumBST(root.right, low, high)
| """
@author: l4zyc0d3r
People who are happy makes other happy. I am gonna finish it slowly but definitely.cdt
"""
class Solution:
def range_sum_bst(self, root: TreeNode, low: int, high: int) -> int:
if not root:
return 0
res = 0
if low <= root.val <= high:
res = root.val
return res + self.rangeSumBST(root.left, low, high) + self.rangeSumBST(root.right, low, high) |
class Solution(object):
def maxSubArrayLen(self, nums, k):
"""
:type nums: List[int]
:type k: int
:rtype: int
"""
memo = {0:-1} # key is the continuous sum from the beginning to nums[i], value is the smallest such 'i'
maxLen = 0
ssum = 0
for i, ni in enumerate(nums):
ssum += ni
if (ssum-k) in memo:
maxLen = max(maxLen, i-memo[ssum-k])
if ssum not in memo:
memo[ssum] = i
return maxLen
| class Solution(object):
def max_sub_array_len(self, nums, k):
"""
:type nums: List[int]
:type k: int
:rtype: int
"""
memo = {0: -1}
max_len = 0
ssum = 0
for (i, ni) in enumerate(nums):
ssum += ni
if ssum - k in memo:
max_len = max(maxLen, i - memo[ssum - k])
if ssum not in memo:
memo[ssum] = i
return maxLen |
def jpeg_res(filename):
""""This function prints the resolution of the jpeg image file passed into it"""
# open image for reading in binary mode
with open(filename,'rb') as img_file:
# height of image (in 2 bytes) is at 164th position
img_file.seek(163)
# read the 2 bytes
a = img_file.read(2)
# calculate height
height = (a[0] << 8) + a[1]
# next 2 bytes is width
a = img_file.read(2)
# calculate width
width = (a[0] << 8) + a[1]
print("The resolution of the image is",width,"x",height)
jpeg_res("img1.jpg") | def jpeg_res(filename):
""""This function prints the resolution of the jpeg image file passed into it"""
with open(filename, 'rb') as img_file:
img_file.seek(163)
a = img_file.read(2)
height = (a[0] << 8) + a[1]
a = img_file.read(2)
width = (a[0] << 8) + a[1]
print('The resolution of the image is', width, 'x', height)
jpeg_res('img1.jpg') |
def quick_sort(a): #a is a list of numbers
if(len(a)<=1):
return(a)
mid=a[len(a)//2]
left=[x for x in a if x<mid ]
middle=[x for x in a if x==mid]
right=[x for x in a if x>mid]
return(quick_sort(left)+middle+quick_sort(right))
if(__name__=='__main__'):
arr=[]
n=input('Enter the number of elements')
print("Enter the elements")
for i in range(int(n)):
arr.append(int(input()))
print("Before sorting")
print(arr)
arr=quick_sort(arr)
print("After sorting")
print(arr)
| def quick_sort(a):
if len(a) <= 1:
return a
mid = a[len(a) // 2]
left = [x for x in a if x < mid]
middle = [x for x in a if x == mid]
right = [x for x in a if x > mid]
return quick_sort(left) + middle + quick_sort(right)
if __name__ == '__main__':
arr = []
n = input('Enter the number of elements')
print('Enter the elements')
for i in range(int(n)):
arr.append(int(input()))
print('Before sorting')
print(arr)
arr = quick_sort(arr)
print('After sorting')
print(arr) |
# -*- coding: utf-8 -*-
"""
smash.models.image_manipulation_model
This file was automatically generated for SMASH by SMASH v2.0 ( https://smashlabs.io )
"""
class ImageManipulationModel(object):
"""Implementation of the 'Image Manipulation Model' model.
TODO: type model description here.
Attributes:
key (string): TODO: type description here.
uid (string): TODO: type description here.
image (string): TODO: type description here.
transform (string): TODO: type description here.
moderate (string): TODO: type description here.
"""
# Create a mapping from Model property names to API property names
_names = {
"key" : "key",
"uid" : "uid",
"image" : "image",
"transform" : "transform",
"moderate" : "moderate"
}
def __init__(self,
key=None,
uid=None,
image=None,
transform=None,
moderate=None,
additional_properties = {}):
"""Constructor for the ImageManipulationModel class"""
# Initialize members of the class
self.key = key
self.uid = uid
self.image = image
self.transform = transform
self.moderate = moderate
# Add additional model properties to the instance
self.additional_properties = additional_properties
@classmethod
def from_dictionary(cls,
dictionary):
"""Creates an instance of this model from a dictionary
Args:
dictionary (dictionary): A dictionary representation of the object as
obtained from the deserialization of the server's response. The keys
MUST match property names in the API description.
Returns:
object: An instance of this structure class.
"""
if dictionary is None:
return None
# Extract variables from the dictionary
key = dictionary.get("key")
uid = dictionary.get("uid")
image = dictionary.get("image")
transform = dictionary.get("transform")
moderate = dictionary.get("moderate")
# Clean out expected properties from dictionary
for key in cls._names.values():
if key in dictionary:
del dictionary[key]
# Return an object of this model
return cls(key,
uid,
image,
transform,
moderate,
dictionary)
| """
smash.models.image_manipulation_model
This file was automatically generated for SMASH by SMASH v2.0 ( https://smashlabs.io )
"""
class Imagemanipulationmodel(object):
"""Implementation of the 'Image Manipulation Model' model.
TODO: type model description here.
Attributes:
key (string): TODO: type description here.
uid (string): TODO: type description here.
image (string): TODO: type description here.
transform (string): TODO: type description here.
moderate (string): TODO: type description here.
"""
_names = {'key': 'key', 'uid': 'uid', 'image': 'image', 'transform': 'transform', 'moderate': 'moderate'}
def __init__(self, key=None, uid=None, image=None, transform=None, moderate=None, additional_properties={}):
"""Constructor for the ImageManipulationModel class"""
self.key = key
self.uid = uid
self.image = image
self.transform = transform
self.moderate = moderate
self.additional_properties = additional_properties
@classmethod
def from_dictionary(cls, dictionary):
"""Creates an instance of this model from a dictionary
Args:
dictionary (dictionary): A dictionary representation of the object as
obtained from the deserialization of the server's response. The keys
MUST match property names in the API description.
Returns:
object: An instance of this structure class.
"""
if dictionary is None:
return None
key = dictionary.get('key')
uid = dictionary.get('uid')
image = dictionary.get('image')
transform = dictionary.get('transform')
moderate = dictionary.get('moderate')
for key in cls._names.values():
if key in dictionary:
del dictionary[key]
return cls(key, uid, image, transform, moderate, dictionary) |
colors = {"clean": "\033[m",
"red": "\033[31m",
"green": "\033[32m",
"yellow": "\033[33m",
"blue": "\033[34m",
"purple": "\033[35m",
"cian": "\033[36m"}
gender = str(input("Enter your gender. \n{}[M]{} or {}[F]{}: "
.format(colors["blue"], colors["clean"], colors["purple"], colors["clean"]))).strip().upper()[0]
while gender != "M" and gender != "F":
gender = str(input("{}Please enter just {}M{} or {}F{}: "
.format(colors["red"], colors["blue"], colors["clean"], colors["purple"], colors["clean"]))).strip().upper()[0]
if gender == "M":
print("{}Welcome, Lord{}".format(colors["blue"], colors["clean"]))
else:
print("{}Welcome, Lady{}".format(colors["purple"], colors["clean"]))
| colors = {'clean': '\x1b[m', 'red': '\x1b[31m', 'green': '\x1b[32m', 'yellow': '\x1b[33m', 'blue': '\x1b[34m', 'purple': '\x1b[35m', 'cian': '\x1b[36m'}
gender = str(input('Enter your gender. \n{}[M]{} or {}[F]{}: '.format(colors['blue'], colors['clean'], colors['purple'], colors['clean']))).strip().upper()[0]
while gender != 'M' and gender != 'F':
gender = str(input('{}Please enter just {}M{} or {}F{}: '.format(colors['red'], colors['blue'], colors['clean'], colors['purple'], colors['clean']))).strip().upper()[0]
if gender == 'M':
print('{}Welcome, Lord{}'.format(colors['blue'], colors['clean']))
else:
print('{}Welcome, Lady{}'.format(colors['purple'], colors['clean'])) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.