content
stringlengths
7
1.05M
'''Defines the `checkstyle_aspect`. ''' load("//java:providers/JavaCompilationInfo.bzl", "JavaCompilationInfo") load( "//java:common/extract/toolchain_info.bzl", "extract_java_runtime_toolchain_class_path_separator", "extract_checkstyle_toolchain_info", ) _JAVA_RUNTIME_TOOLCHAIN_TYPE = "@dwtj_rules_java//java/toolchains/java_runtime_toolchain:toolchain_type" CheckstyleAspectInfo = provider( fields = { 'output_file': "The output file generated by `checkstyle_aspect`. This will be `None` if the target doesn't include any Java sources to be checked.", } ) def _extract_java_executable(aspect_ctx): return aspect_ctx.toolchains[_JAVA_RUNTIME_TOOLCHAIN_TYPE] \ .java_runtime_toolchain_info \ .java_executable def _extract_class_path_separator(aspect_ctx): return aspect_ctx.toolchains[_JAVA_RUNTIME_TOOLCHAIN_TYPE] \ .java_runtime_toolchain_info \ .class_path_separator def _file_name(target, suffix): return "{}.checkstyle.{}".format(target.label.name, suffix) def _checkstyle_aspect_impl(target, aspect_ctx): # Skip a target if it doesn't provide a `JavaCompilationInfo`. if JavaCompilationInfo not in target: return [CheckstyleAspectInfo()] # Extract some information from the environment for brevity. actions = aspect_ctx.actions srcs = target[JavaCompilationInfo].srcs srcs_args_file = target[JavaCompilationInfo].srcs_args_file class_path_separator = _extract_class_path_separator(aspect_ctx) java_executable = _extract_java_executable(aspect_ctx) checkstyle_toolchain_info = extract_checkstyle_toolchain_info(aspect_ctx) checkstyle_java_info = checkstyle_toolchain_info.checkstyle_java_info # Declare an output log file for Checkstyle to write to. log_file = actions.declare_file(_file_name(target, "log")) # Create an args file containing Checkstyle's run-time class path. # TODO(dwtj): Move this into the toolchain so that it isn't re-created in # every instantiation/application of the `checkstyle_aspect`. class_path_args = actions.args() class_path_args.add_joined( checkstyle_java_info.transitive_runtime_jars, join_with = class_path_separator, omit_if_empty = False, ) class_path_args_file = actions.declare_file(_file_name(target, "class_path.args")) actions.write( class_path_args_file, content = class_path_args, is_executable = False, ) # Instantiate a script which will run Checkstyle from a template. run_checkstyle_script = actions.declare_file(_file_name(target, "sh")) actions.expand_template( template = aspect_ctx.file._run_checkstyle_script_template, output = run_checkstyle_script, substitutions = { "{JAVA_EXECUTABLE}": java_executable.path, "{JAVA_SOURCES_ARGS_FILE}": srcs_args_file.path, "{CHECKSTYLE_CLASS_PATH_ARGS_FILE}": class_path_args_file.path, "{CHECKSTYLE_LOG_FILE}": log_file.path, }, is_executable = True, ) # Lastly, run our Checkstyle script on the target's srcs: actions.run( executable = run_checkstyle_script, inputs = depset( direct = [ java_executable, srcs_args_file, class_path_args_file, ], transitive = [ srcs, checkstyle_java_info.transitive_runtime_jars, ] ), outputs = [log_file], mnemonic = "Checkstyle", progress_message = "Using Checkstyle to check Java sources of Java target `{}`".format(target.label), use_default_shell_env = False, ) return [ OutputGroupInfo(default = [log_file]), CheckstyleAspectInfo(output_file = log_file) ] checkstyle_aspect = aspect( implementation = _checkstyle_aspect_impl, provides = [CheckstyleAspectInfo], attrs = { "_run_checkstyle_script_template": attr.label( default = "@dwtj_rules_java//java:aspects/checkstyle_aspect/TEMPLATE.run_checkstyle.sh", allow_single_file = True, ), }, toolchains = [ '@dwtj_rules_java//java/toolchains/checkstyle_toolchain:toolchain_type', '@dwtj_rules_java//java/toolchains/java_runtime_toolchain:toolchain_type', ], )
"""Common constants used across image quality modules.""" VALID_MASK_FORMAT = 'valid_mask_%s' CERTAINTY_MASK_FORMAT = 'certainty_mask_%s' PREDICTIONS_MASK_FORMAT = 'predictions_mask_%s' ORIG_IMAGE_FORMAT = 'orig_name=%s' PATCH_SIDE_LENGTH = 84 REMOTE_MODEL_CHECKPOINT_PATH = "https://storage.googleapis.com/microscope-image-quality/static/model/model.ckpt-1000042"
expected_output = { "interface_name": "Gi1/0/1", "if_id": "75", "phy_registers": { "0": { "register_number": "0000", "hex_bit_value": "1140", "register_name": "Control Register", "bits": "0001000101000000", }, "1": { "register_number": "0001", "hex_bit_value": "796d", "register_name": "Control STATUS", "bits": "0111100101101101", }, "2": { "register_number": "0002", "hex_bit_value": "ae02", "register_name": "Phy(B:D3A6) ID 1", "bits": "1010111000000010", }, "3": { "register_number": "0003", "hex_bit_value": "5011", "register_name": "Phy(B:D3A6) ID 2", "bits": "0101000000010001", }, "4": { "register_number": "0004", "hex_bit_value": "01e1", "register_name": "Auto-Negotiation Advertisement", "bits": "0000000111100001", }, "5": { "register_number": "0005", "hex_bit_value": "c1e1", "register_name": "Auto-Negotiation Link Partner", "bits": "1100000111100001", }, "6": { "register_number": "0006", "hex_bit_value": "006d", "register_name": "Auto-Negotiation Expansion Reg", "bits": "0000000001101101", }, "7": { "register_number": "0007", "hex_bit_value": "2001", "register_name": "Next Page Transmit Register", "bits": "0010000000000001", }, "8": { "register_number": "0008", "hex_bit_value": "4e92", "register_name": "Link Partner Next page Register ", "bits": "0100111010010010", }, "9": { "register_number": "0009", "hex_bit_value": "0e00", "register_name": "1000T Base Control", "bits": "0000111000000000", }, "10": { "register_number": "0010", "hex_bit_value": "0001", "register_name": "PHY Specific Control", "bits": "0000000000000001", }, "11": { "register_number": "0011", "hex_bit_value": "1303", "register_name": "PHY Specific Status", "bits": "0001001100000011", }, "12": { "register_number": "0012", "hex_bit_value": "0000", "register_name": "PHY Specific Interrupt Enable", "bits": "0000000000000000", }, "13": { "register_number": "0013", "hex_bit_value": "0000", "register_name": "PHY Specific Interrupt Status", "bits": "0000000000000000", }, "14": { "register_number": "003d", "hex_bit_value": "c000", "register_name": "EEE Test Ctrl(0x803D)", "bits": "1100000000000000", }, "15": { "register_number": "0001", "hex_bit_value": "0046", "register_name": "EEE PCS Status1(0x1)", "bits": "0000000001000110", }, "16": { "register_number": "0014", "hex_bit_value": "0006", "register_name": "EEE Capability Reg(0x14)", "bits": "0000000000000110", }, "17": { "register_number": "003c", "hex_bit_value": "0000", "register_name": "EEE Advertisement Ctrl(0x3C)", "bits": "0000000000000000", }, "18": { "register_number": "003d", "hex_bit_value": "0000", "register_name": "EEE Link Partnet Advrt(0x3D)", "bits": "0000000000000000", }, "19": { "register_number": "003e", "hex_bit_value": "0000", "register_name": "EEE Resolution Status(0x803E)", "bits": "0000000000000000", }, "20": { "register_number": "001a", "hex_bit_value": "247e", "register_name": "Cu Interrupt Status(0x1A)", "bits": "0010010001111110", }, "21": { "register_number": "001b", "hex_bit_value": "0f7e", "register_name": "Cu Interrupt Mask(0x1B)", "bits": "0000111101111110", }, "22": { "register_number": "001e", "hex_bit_value": "0000", "register_name": "Test 1 Reg(0x1E)", "bits": "0000000000000000", }, "23": { "register_number": "002a", "hex_bit_value": "06c2", "register_name": "Cu Power MII Ctrl RDB(0x02A)", "bits": "0000011011000010", }, "24": { "register_number": "002c", "hex_bit_value": "4004", "register_name": "Cu Misc Test RDB(0x02C)", "bits": "0100000000000100", }, "25": { "register_number": "0003", "hex_bit_value": "82f3", "register_name": "DTE MII Control(0x03)", "bits": "1000001011110011", }, "26": { "register_number": "0007", "hex_bit_value": "7277", "register_name": "Cu Misc Cntrl Reg(0x07)", "bits": "0111001001110111", }, "27": { "register_number": "00e4", "hex_bit_value": "0000", "register_name": "10Base-T Radiation RDB Reg(0x01e4)", "bits": "0000000000000000", }, "28": { "register_number": "00ea", "hex_bit_value": "0100", "register_name": "10Base-T Radiation RDB Reg(0x01ea)", "bits": "0000000100000000", }, "29": { "register_number": "0021", "hex_bit_value": "7ea8", "register_name": "RDB Reg(0x21)", "bits": "0111111010101000", }, "30": { "register_number": "002b", "hex_bit_value": "82f3", "register_name": "RDB Reg(0x2B)", "bits": "1000001011110011", }, "31": { "register_number": "002f", "hex_bit_value": "7277", "register_name": "RDB Reg(0x2F)", "bits": "0111001001110111", }, "32": { "register_number": "0009", "hex_bit_value": "871c", "register_name": "RDB Reg(0x09)", "bits": "1000011100011100", }, "33": { "register_number": "000c", "hex_bit_value": "8800", "register_name": "RDB Reg(0x0C)", "bits": "1000100000000000", }, "34": { "register_number": "0019", "hex_bit_value": "871c", "register_name": "Cu Aux Status Summary(0x19)", "bits": "1000011100011100", }, }, }
class Solution: def intersection(self, nums1: List[int], nums2: List[int]) -> List[int]: l = set(nums1) ret = [i for i in nums2 if i in l] return list(set(ret))
temp=int(input("Ingrese la temperatura")) print("f° c°") for temp in range(0,temp,2): print(temp," ",int((temp-32)*5/9))
# Class attributes ... # # Use dot to assign values to a class instance class Point: """ a 2D point """ p = Point() p.x = 1 p.y = 2 assert p.x == 1 assert p.y == 2
"""API endpoints.""" class Endpoint(object): API_PREFIX = '/api/' VEHICLES = API_PREFIX + 'vehicles/' # ?dealer=AAA?model=XXX?fuel=YYY?transmission=ZZZ DEALERS_CLOSEST_LIST = API_PREFIX + 'dealers/' # ?dealer=AAA?model=XXX?fuel=YYY?transmission=ZZZ?latitude=LLL?longitude=OOO DEALER_CLOSEST = API_PREFIX + 'dealers/closest/' # ?dealer=AAA?model=XXX?fuel=YYY?transmission=ZZZ?latitude=LLL?longitude=OOO DEALERS_IN_POLYGON = API_PREFIX + 'dealers/polygon/' BOOKINGS_CREATE = API_PREFIX + 'bookings/create/' # {first_name, last_name, vehicle_id, pickup_date} BOOKINGS_CANCEL = API_PREFIX + 'bookings/cancel/' # {booking_id, reason}
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Sun Oct 6 20:34:16 2019 @author: sodatab MITx: 6.00.1x """ """ 01.2-Finger While Exercise 02 ---------------------------- 2. Convert the following into code that uses a while loop. prints Hello! prints 10 prints 8 prints 6 prints 4 prints 2 """ """Answer Script:""" num = 12 print('Hello!') while num > 2: num -= 2 print(num)
def solution(N): b_rep = '{:b}'.format(N) counter = 0 res = 0 prev_val = 0 count = False for val in b_rep: val = int(val) if val - prev_val == -1: count = True counter += 1 if val - prev_val == 0 and count: counter += 1 if val - prev_val == 1: count = False res = max(res, counter) counter = 0 prev_val = val return res
x = 30; y = 3; ## addition print("x + y : ",x + y); ## we can use + for concatenate string print("Hello, " + "World!"); ## Subtraction print("x - y : ",x - y); ## Division print("x / y : ",x / y); ## here division operator always return float type number ## Multiplication print("x * y : ",x*y); # we can use * operator to concatenate same string multiple time. print("'word '*5 : ",'word'*5); ## Remainder print("x%6 : ",x%6); ## Floor Division print("x//7 : ",x//7); ## return division result in floor int type ## exponentition print("2**4 : ",2**4); ## here 2 is base and 4 is power of base
class YAMLEmptyError(Exception): """The yaml configs file is empty, nothing to read from there.""" class BadInputs(Exception): """Bad inputs""" class PeaFailToStart(SystemError): """When pea is failed to started""" class GRPCServerError(Exception): """Can not connect to the grpc gateway""" class BadClient(Exception): """A wrongly defined grpc client, can not communicate with bert2tf server correctly """ class NoExplicitMessage(Exception): """Waiting until all partial messages are received""" class UnknownRequestError(Exception): """Unknown request type""" class DriverError(Exception): """Base driver error""" class UnattachedDriver(DriverError): """Driver is not attached to any BasePea or executor""" class NoDriverForRequest(DriverError): """No matched driver for this request """ class UnknownControlCommand(RuntimeError): """The control command received can not be recognized""" class RequestLoopEnd(KeyboardInterrupt): """The event loop of BasePea ends""" class FlowTopologyError(Exception): """Flow exception when the topology is ambiguous.""" class FlowMissingPodError(Exception): """Flow exception when a pod can not be found in the flow.""" class FlowEmptyError(Exception): """Flow exception when flow was not built and to call flow external function, such as `predict()` """
# Os números primos possuem várias aplicações dentro da Computação, por exemplo na Criptografia. Um número primo é aquele que é divisível apenas por um e por ele mesmo. Faça um programa que peça um número inteiro e determine se ele é ou não um número primo. numero = int(input("Digite um número: ")) div = [] count = 0 for i in range(numero): if numero % (i+1) == 0: count += 1 div.append(i+1) div = str(div).strip("[]") if count == 2: print("Esse número é primo divisível por", div) else: print("Esse número não é primo, divisível por", div)
#!/usr/bin/env python3 # Please make sure this file can be executed. # chmod +x hello.py print('Hello World!!')
def seta(n): for i in range(n): if i == n - 1: print((2 * n) * '*', end='') print((i + 1) * '*') else: print((2 * n) * ' ', end='') print((i + 1) * '*') for j in range(n - 1, 0, -1): print((2 * n) * ' ',end='') print(j * '*') seta(10)
'''input atcoder beginner contest ABC ''' # -*- coding: utf-8 -*- # AtCoder Beginner Contest # Problem A if __name__ == '__main__': a, b, c = input().split() result = a[0] + b[0] + c[0] print(result.upper())
#Desenvolva um programa que leia as duas notas de um aluno. Calcule e mostre a sua média n1 = int(input("Digite a nota de seu primeiro teste: ")) n2 = int(input("Digite a nota de seu segundo teste: ")) me = ((n1+n2)/2) print ("A média aritmética de suas notas é:",me)
file = open("AAPL.txt", "r") lines = file.readlines() prices = [] for line in lines: price = float(line) prices.append(price) print(price) print(prices)
''' Problem Description: -------------------- The program reads a file and counts the number of blank spaces in a text file. ''' print(__doc__) print('-'*25) fileName=input('Enter file name: ') k=0 with open(fileName,'r')as f: for line in f: words=line.split() for i in words: for letter in i: if letter.isspace: k+=1 print('Occurance of blank space in text file \'{%s}\' is %d times'%(fileName,k))
n = int(input('Digite um número para calcular a tabuada ')) m = 1 print('{} x {:2} = {}'.format(n, 1, n*1)) print('{} x {:2} = {}'.format(n, 2, n*2)) print('{} x {:2} = {}'.format(n, 3, n*3)) print('{} x {:2} = {}'.format(n, 4, n*4)) print('{} x {:2} = {}'.format(n, 5, n*5)) print('{} x {:2} = {}'.format(n, 6, n*6)) print('{} x {:2} = {}'.format(n, 7, n*7)) print('{} x {:2} = {}'.format(n, 8, n*8)) print('{} x {:2} = {}'.format(n, 9, n*9)) print('{} x {:2} = {}'.format(n, 10, n*10)) # Quando se usa :2 entre colchetes, o conteúdo vai ficar alinhado a direita com duas casas como é o caso dos números. # Não confundir com :.2f que serve para limitar a quantidade de casas decimais que aparecem depois da virgula.
functions = { 'Add': (2, lambda p: p[0] + p[1]), 'Minus': (2, lambda p: p[0] - p[1]), 'UnaryMinus': (1, lambda p: -p[0]), 'Divide': (2, lambda p: p[0] / p[1]), 'Multiply': (2, lambda p: p[0] * p[1]), 'Modulo': (2, lambda p: p[0] % p[1]), 'EqualTo': (2, lambda p: p[0] == p[1]), 'NotEqualTo': (2, lambda p: p[0] != p[1]), 'GreaterThan': (2, lambda p: p[0] > p[1]), 'GreaterThanOrEqualTo': (2, lambda p: p[0] >= p[1]), 'LessThan': (2, lambda p: p[0] < p[1]), 'LessThanOrEqualTo': (2, lambda p: p[0] <= p[1]), 'And': (2, lambda p: p[0] and p[1]), 'Or': (2, lambda p: p[0] or p[1]), 'Xor': (2, lambda p: p[0] ^ p[1]), 'Not': (1, lambda p: not p[0]) } typeMethods = { 'Boolean': ['EqualTo', 'NotEqualTo', 'And', 'Or', 'Xor', 'Not'], 'Number': ['EqualTo', 'NotEqualTo', 'Add', 'Minus', 'Divide', 'Multiply', 'Modulo', 'UnaryMinus', 'GreaterThan', 'GreaterThanOrEqualTo', 'LessThan', 'LessThanOrEqualTo'], 'String': ['EqualTo', 'NotEqualTo', 'Add'] } for type, methods in typeMethods.items(): for method in methods: functions[f'{type}.{method}'] = functions[method]
class Features: NOTEBOOKS = 'app.features.notebooks' class Deployment: SITE = 'app.deployment.site' class Branding: PRIVACY = 'app.configuration.privacy' LICENSE = 'app.configuration.license' HEADER_LOGO_ID = 'app.configuration.header.logo.file.id' FOOTER_LOGO_ID = 'app.configuration.footer.logo.file.id' FOOTER_LOGO_URL = 'app.configuration.footer.logo.url', FAVICON_ID = 'app.configuration.favicon.file.id'
"""This problem was asked by Snapchat. You are given an array of length N, where each element i represents the number of ways we can produce i units of change. For example, [1, 0, 1, 1, 2] would indicate that there is only one way to make 0, 2, or 3 units, and two ways of making 4 units. Given such an array, determine the denominations that must be in use. In the case above, for example, there must be coins with value 2, 3, and 4. """
WIDTH = 512 HEIGHT = 336 FPS = 50 PIX_FOR_BRIX = 16 STEPS_FOR_CYCLE = 16 N_STEP_FOR_TEST = 5 BLACK = (0, 0, 0) BKGR = (0, 0, 0)
# -*- coding: utf-8 -*- """ .. module:: pytfa :platform: Unix, Windows :synopsis: Thermodynamics-based Flux Analysis .. moduleauthor:: pyTFA team Pre-tuned configurations for faster solving """ def dg_relax_config(model): """ :param model: :return: """ # grbtune output on a hard model : # # Tested 6992 parameter sets in 46793.78s # # Baseline parameter set: mean runtime 142.09s # # Improved parameter set 1 (mean runtime 3.27s): # # NormAdjust 0 # BranchDir 1 # DegenMoves 0 # Heuristics 0 # MIPFocus 1 # Cuts 3 # # Improved parameter set 2 (mean runtime 3.30s): # # NormAdjust 0 # BranchDir 1 # DegenMoves 0 # Heuristics 0.001 # PreSparsify 0 # # Improved parameter set 3 (mean runtime 3.34s): # # NormAdjust 0 # BranchDir 1 # DegenMoves 0 # Heuristics 0.001 # # Improved parameter set 4 (mean runtime 5.22s): # # NormAdjust 1 # BranchDir 1 # DegenMoves 0 # # Improved parameter set 5 (mean runtime 7.18s): # # BranchDir 1 # DegenMoves 0 if model.solver.interface.__name__ == 'optlang.gurobi_interface': model.solver.problem.Params.NormAdjust = 0 model.solver.problem.Params.BranchDir = 1 model.solver.problem.Params.DegenMoves = 0 model.solver.problem.Params.Heuristics = 0.001 model.solver.problem.Params.Cuts = 3 model.solver.problem.Params.Presolve = 2 model.solver.problem.Params.Method = 0
""" PASSENGERS """ numPassengers = 3217 passenger_arriving = ( (6, 3, 5, 3, 2, 0, 6, 8, 4, 2, 4, 0), # 0 (5, 11, 6, 2, 1, 0, 7, 9, 7, 3, 1, 0), # 1 (3, 8, 6, 4, 3, 0, 5, 12, 3, 7, 1, 0), # 2 (6, 6, 6, 5, 3, 0, 3, 7, 5, 5, 3, 0), # 3 (1, 4, 7, 4, 4, 0, 7, 11, 9, 6, 3, 0), # 4 (5, 11, 5, 5, 0, 0, 5, 9, 4, 4, 1, 0), # 5 (3, 8, 16, 3, 2, 0, 7, 12, 5, 7, 2, 0), # 6 (2, 8, 6, 4, 1, 0, 4, 9, 4, 6, 2, 0), # 7 (5, 9, 5, 1, 3, 0, 5, 11, 0, 6, 1, 0), # 8 (4, 8, 6, 6, 3, 0, 5, 9, 5, 3, 3, 0), # 9 (6, 8, 11, 2, 1, 0, 7, 8, 6, 5, 0, 0), # 10 (5, 9, 2, 3, 3, 0, 3, 10, 5, 3, 3, 0), # 11 (4, 12, 9, 4, 3, 0, 4, 11, 6, 10, 2, 0), # 12 (4, 11, 10, 4, 1, 0, 8, 7, 4, 3, 1, 0), # 13 (3, 16, 9, 3, 2, 0, 7, 8, 6, 3, 1, 0), # 14 (3, 10, 2, 2, 1, 0, 9, 7, 5, 1, 3, 0), # 15 (7, 3, 9, 0, 1, 0, 6, 6, 10, 7, 6, 0), # 16 (5, 10, 6, 5, 5, 0, 4, 14, 6, 2, 2, 0), # 17 (1, 14, 4, 3, 3, 0, 6, 7, 8, 7, 3, 0), # 18 (3, 14, 10, 1, 1, 0, 13, 8, 5, 8, 3, 0), # 19 (3, 8, 7, 6, 2, 0, 5, 7, 8, 4, 3, 0), # 20 (5, 5, 6, 6, 3, 0, 6, 9, 7, 6, 1, 0), # 21 (3, 7, 11, 6, 0, 0, 4, 13, 5, 5, 0, 0), # 22 (2, 8, 7, 4, 2, 0, 5, 11, 7, 3, 0, 0), # 23 (6, 5, 8, 5, 1, 0, 5, 4, 9, 6, 4, 0), # 24 (4, 10, 7, 0, 0, 0, 11, 6, 8, 5, 2, 0), # 25 (3, 14, 10, 4, 3, 0, 7, 7, 11, 4, 3, 0), # 26 (5, 7, 9, 2, 2, 0, 4, 10, 6, 5, 3, 0), # 27 (5, 6, 8, 7, 2, 0, 5, 10, 3, 3, 1, 0), # 28 (6, 6, 8, 5, 1, 0, 1, 10, 2, 4, 3, 0), # 29 (6, 10, 7, 4, 3, 0, 10, 16, 7, 12, 1, 0), # 30 (2, 5, 9, 3, 1, 0, 7, 12, 5, 4, 1, 0), # 31 (5, 5, 14, 2, 2, 0, 7, 11, 6, 6, 1, 0), # 32 (7, 12, 8, 3, 9, 0, 2, 3, 7, 4, 5, 0), # 33 (6, 2, 11, 1, 0, 0, 7, 9, 4, 4, 4, 0), # 34 (8, 7, 10, 2, 3, 0, 6, 7, 3, 7, 3, 0), # 35 (6, 13, 11, 4, 2, 0, 5, 7, 8, 6, 2, 0), # 36 (4, 8, 10, 2, 2, 0, 6, 8, 3, 4, 2, 0), # 37 (8, 10, 2, 5, 2, 0, 7, 16, 9, 6, 0, 0), # 38 (3, 12, 7, 6, 3, 0, 8, 5, 2, 4, 6, 0), # 39 (3, 4, 6, 4, 2, 0, 7, 6, 3, 6, 0, 0), # 40 (3, 9, 7, 2, 1, 0, 3, 13, 8, 7, 5, 0), # 41 (3, 6, 6, 8, 1, 0, 4, 5, 4, 6, 2, 0), # 42 (3, 8, 6, 9, 1, 0, 11, 7, 5, 6, 1, 0), # 43 (5, 13, 8, 4, 2, 0, 5, 4, 7, 4, 5, 0), # 44 (5, 10, 7, 1, 3, 0, 5, 7, 3, 7, 2, 0), # 45 (2, 14, 4, 2, 2, 0, 6, 7, 8, 7, 4, 0), # 46 (6, 14, 10, 3, 1, 0, 10, 12, 10, 2, 4, 0), # 47 (4, 7, 7, 3, 1, 0, 4, 7, 4, 9, 2, 0), # 48 (5, 7, 7, 2, 0, 0, 4, 11, 5, 3, 3, 0), # 49 (5, 10, 6, 3, 1, 0, 3, 10, 10, 4, 7, 0), # 50 (5, 6, 9, 1, 4, 0, 6, 14, 5, 5, 5, 0), # 51 (5, 6, 6, 3, 3, 0, 11, 8, 5, 3, 5, 0), # 52 (4, 7, 4, 2, 1, 0, 5, 8, 6, 10, 1, 0), # 53 (4, 16, 6, 5, 1, 0, 6, 9, 3, 3, 3, 0), # 54 (3, 10, 7, 4, 1, 0, 6, 4, 8, 3, 3, 0), # 55 (4, 13, 6, 3, 2, 0, 9, 13, 5, 11, 6, 0), # 56 (2, 9, 11, 8, 3, 0, 6, 8, 7, 5, 3, 0), # 57 (4, 12, 4, 3, 2, 0, 7, 4, 4, 4, 3, 0), # 58 (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), # 59 ) station_arriving_intensity = ( (3.7095121817383676, 9.515044981060607, 11.19193043059126, 8.87078804347826, 10.000240384615385, 6.659510869565219), # 0 (3.7443308140669203, 9.620858238197952, 11.252381752534994, 8.920190141908213, 10.075193108974359, 6.657240994867151), # 1 (3.7787518681104277, 9.725101964085297, 11.31139817195087, 8.968504830917876, 10.148564102564103, 6.654901690821256), # 2 (3.8127461259877085, 9.827663671875001, 11.368936576156813, 9.01569089673913, 10.22028605769231, 6.652493274456523), # 3 (3.8462843698175795, 9.928430874719417, 11.424953852470724, 9.061707125603865, 10.290291666666668, 6.6500160628019325), # 4 (3.879337381718857, 10.027291085770905, 11.479406888210512, 9.106512303743962, 10.358513621794872, 6.647470372886473), # 5 (3.9118759438103607, 10.12413181818182, 11.53225257069409, 9.150065217391306, 10.424884615384617, 6.644856521739131), # 6 (3.943870838210907, 10.218840585104518, 11.58344778723936, 9.19232465277778, 10.489337339743592, 6.64217482638889), # 7 (3.975292847039314, 10.311304899691358, 11.632949425164242, 9.233249396135266, 10.551804487179488, 6.639425603864735), # 8 (4.006112752414399, 10.401412275094698, 11.680714371786634, 9.272798233695653, 10.61221875, 6.636609171195653), # 9 (4.03630133645498, 10.489050224466892, 11.72669951442445, 9.310929951690824, 10.670512820512823, 6.633725845410628), # 10 (4.065829381279876, 10.5741062609603, 11.7708617403956, 9.347603336352659, 10.726619391025642, 6.630775943538648), # 11 (4.094667669007903, 10.656467897727273, 11.813157937017996, 9.382777173913043, 10.780471153846154, 6.627759782608695), # 12 (4.122786981757876, 10.736022647920176, 11.85354499160954, 9.416410250603866, 10.832000801282053, 6.624677679649759), # 13 (4.15015810164862, 10.81265802469136, 11.891979791488144, 9.448461352657004, 10.881141025641025, 6.621529951690821), # 14 (4.1767518107989465, 10.886261541193182, 11.928419223971721, 9.478889266304348, 10.92782451923077, 6.618316915760871), # 15 (4.202538891327675, 10.956720710578002, 11.96282017637818, 9.507652777777778, 10.971983974358976, 6.61503888888889), # 16 (4.227490125353625, 11.023923045998176, 11.995139536025421, 9.53471067330918, 11.013552083333336, 6.611696188103866), # 17 (4.25157629499561, 11.087756060606061, 12.025334190231364, 9.560021739130436, 11.052461538461543, 6.608289130434783), # 18 (4.274768182372451, 11.148107267554012, 12.053361026313912, 9.58354476147343, 11.088645032051284, 6.604818032910629), # 19 (4.297036569602966, 11.204864179994388, 12.079176931590974, 9.60523852657005, 11.122035256410259, 6.601283212560387), # 20 (4.318352238805971, 11.257914311079544, 12.102738793380466, 9.625061820652174, 11.152564903846153, 6.597684986413044), # 21 (4.338685972100283, 11.307145173961842, 12.124003499000287, 9.642973429951692, 11.180166666666667, 6.5940236714975855), # 22 (4.358008551604722, 11.352444281793632, 12.142927935768354, 9.658932140700484, 11.204773237179488, 6.590299584842997), # 23 (4.3762907594381035, 11.393699147727272, 12.159468991002571, 9.672896739130437, 11.226317307692307, 6.586513043478261), # 24 (4.393503377719247, 11.430797284915124, 12.173583552020853, 9.684826011473431, 11.244731570512819, 6.582664364432368), # 25 (4.409617188566969, 11.46362620650954, 12.185228506141103, 9.694678743961353, 11.259948717948719, 6.5787538647343), # 26 (4.424602974100088, 11.492073425662877, 12.194360740681233, 9.702413722826089, 11.271901442307694, 6.574781861413045), # 27 (4.438431516437421, 11.516026455527497, 12.200937142959157, 9.707989734299519, 11.280522435897437, 6.570748671497586), # 28 (4.4510735976977855, 11.535372809255753, 12.204914600292774, 9.711365564613528, 11.285744391025641, 6.566654612016909), # 29 (4.4625, 11.55, 12.20625, 9.7125, 11.287500000000001, 6.562500000000001), # 30 (4.47319183983376, 11.56215031960227, 12.205248928140096, 9.712295118464054, 11.286861125886526, 6.556726763701484), # 31 (4.4836528452685425, 11.574140056818184, 12.202274033816424, 9.711684477124184, 11.28495815602837, 6.547834661835751), # 32 (4.493887715792838, 11.585967720170455, 12.197367798913046, 9.710674080882354, 11.281811569148937, 6.535910757121439), # 33 (4.503901150895141, 11.597631818181819, 12.19057270531401, 9.709269934640524, 11.277441843971632, 6.521042112277196), # 34 (4.513697850063939, 11.609130859374998, 12.181931234903383, 9.707478043300654, 11.27186945921986, 6.503315790021656), # 35 (4.523282512787724, 11.62046335227273, 12.171485869565219, 9.705304411764708, 11.265114893617023, 6.482818853073463), # 36 (4.532659838554988, 11.631627805397729, 12.159279091183576, 9.70275504493464, 11.257198625886524, 6.4596383641512585), # 37 (4.5418345268542195, 11.642622727272729, 12.145353381642513, 9.699835947712419, 11.248141134751775, 6.433861385973679), # 38 (4.5508112771739135, 11.653446626420456, 12.129751222826087, 9.696553125000001, 11.23796289893617, 6.40557498125937), # 39 (4.559594789002558, 11.664098011363638, 12.11251509661836, 9.692912581699348, 11.22668439716312, 6.37486621272697), # 40 (4.568189761828645, 11.674575390625, 12.093687484903382, 9.68892032271242, 11.214326108156028, 6.34182214309512), # 41 (4.576600895140665, 11.684877272727276, 12.07331086956522, 9.684582352941177, 11.2009085106383, 6.3065298350824595), # 42 (4.584832888427111, 11.69500216619318, 12.051427732487923, 9.679904677287583, 11.186452083333334, 6.26907635140763), # 43 (4.592890441176471, 11.704948579545455, 12.028080555555556, 9.674893300653595, 11.17097730496454, 6.229548754789272), # 44 (4.600778252877237, 11.714715021306818, 12.003311820652177, 9.669554227941177, 11.15450465425532, 6.188034107946028), # 45 (4.6085010230179035, 11.724300000000003, 11.97716400966184, 9.663893464052288, 11.137054609929079, 6.144619473596536), # 46 (4.616063451086957, 11.733702024147728, 11.9496796044686, 9.65791701388889, 11.118647650709221, 6.099391914459438), # 47 (4.623470236572891, 11.742919602272728, 11.920901086956523, 9.651630882352942, 11.099304255319149, 6.052438493253375), # 48 (4.630726078964194, 11.751951242897727, 11.890870939009663, 9.645041074346407, 11.079044902482272, 6.003846272696985), # 49 (4.6378356777493615, 11.760795454545454, 11.85963164251208, 9.638153594771243, 11.057890070921987, 5.953702315508913), # 50 (4.6448037324168805, 11.769450745738636, 11.827225679347826, 9.630974448529413, 11.035860239361703, 5.902093684407797), # 51 (4.651634942455243, 11.777915625, 11.793695531400965, 9.623509640522876, 11.012975886524824, 5.849107442112278), # 52 (4.658334007352941, 11.786188600852274, 11.759083680555555, 9.615765175653596, 10.989257491134753, 5.794830651340996), # 53 (4.6649056265984665, 11.79426818181818, 11.723432608695653, 9.60774705882353, 10.964725531914894, 5.739350374812594), # 54 (4.671354499680307, 11.802152876420456, 11.686784797705313, 9.599461294934642, 10.939400487588653, 5.682753675245711), # 55 (4.677685326086957, 11.809841193181818, 11.649182729468599, 9.59091388888889, 10.913302836879433, 5.625127615358988), # 56 (4.683902805306906, 11.817331640625003, 11.610668885869565, 9.582110845588236, 10.886453058510638, 5.566559257871065), # 57 (4.690011636828645, 11.824622727272727, 11.57128574879227, 9.573058169934642, 10.858871631205675, 5.507135665500583), # 58 (0.0, 0.0, 0.0, 0.0, 0.0, 0.0), # 59 ) passenger_arriving_acc = ( (6, 3, 5, 3, 2, 0, 6, 8, 4, 2, 4, 0), # 0 (11, 14, 11, 5, 3, 0, 13, 17, 11, 5, 5, 0), # 1 (14, 22, 17, 9, 6, 0, 18, 29, 14, 12, 6, 0), # 2 (20, 28, 23, 14, 9, 0, 21, 36, 19, 17, 9, 0), # 3 (21, 32, 30, 18, 13, 0, 28, 47, 28, 23, 12, 0), # 4 (26, 43, 35, 23, 13, 0, 33, 56, 32, 27, 13, 0), # 5 (29, 51, 51, 26, 15, 0, 40, 68, 37, 34, 15, 0), # 6 (31, 59, 57, 30, 16, 0, 44, 77, 41, 40, 17, 0), # 7 (36, 68, 62, 31, 19, 0, 49, 88, 41, 46, 18, 0), # 8 (40, 76, 68, 37, 22, 0, 54, 97, 46, 49, 21, 0), # 9 (46, 84, 79, 39, 23, 0, 61, 105, 52, 54, 21, 0), # 10 (51, 93, 81, 42, 26, 0, 64, 115, 57, 57, 24, 0), # 11 (55, 105, 90, 46, 29, 0, 68, 126, 63, 67, 26, 0), # 12 (59, 116, 100, 50, 30, 0, 76, 133, 67, 70, 27, 0), # 13 (62, 132, 109, 53, 32, 0, 83, 141, 73, 73, 28, 0), # 14 (65, 142, 111, 55, 33, 0, 92, 148, 78, 74, 31, 0), # 15 (72, 145, 120, 55, 34, 0, 98, 154, 88, 81, 37, 0), # 16 (77, 155, 126, 60, 39, 0, 102, 168, 94, 83, 39, 0), # 17 (78, 169, 130, 63, 42, 0, 108, 175, 102, 90, 42, 0), # 18 (81, 183, 140, 64, 43, 0, 121, 183, 107, 98, 45, 0), # 19 (84, 191, 147, 70, 45, 0, 126, 190, 115, 102, 48, 0), # 20 (89, 196, 153, 76, 48, 0, 132, 199, 122, 108, 49, 0), # 21 (92, 203, 164, 82, 48, 0, 136, 212, 127, 113, 49, 0), # 22 (94, 211, 171, 86, 50, 0, 141, 223, 134, 116, 49, 0), # 23 (100, 216, 179, 91, 51, 0, 146, 227, 143, 122, 53, 0), # 24 (104, 226, 186, 91, 51, 0, 157, 233, 151, 127, 55, 0), # 25 (107, 240, 196, 95, 54, 0, 164, 240, 162, 131, 58, 0), # 26 (112, 247, 205, 97, 56, 0, 168, 250, 168, 136, 61, 0), # 27 (117, 253, 213, 104, 58, 0, 173, 260, 171, 139, 62, 0), # 28 (123, 259, 221, 109, 59, 0, 174, 270, 173, 143, 65, 0), # 29 (129, 269, 228, 113, 62, 0, 184, 286, 180, 155, 66, 0), # 30 (131, 274, 237, 116, 63, 0, 191, 298, 185, 159, 67, 0), # 31 (136, 279, 251, 118, 65, 0, 198, 309, 191, 165, 68, 0), # 32 (143, 291, 259, 121, 74, 0, 200, 312, 198, 169, 73, 0), # 33 (149, 293, 270, 122, 74, 0, 207, 321, 202, 173, 77, 0), # 34 (157, 300, 280, 124, 77, 0, 213, 328, 205, 180, 80, 0), # 35 (163, 313, 291, 128, 79, 0, 218, 335, 213, 186, 82, 0), # 36 (167, 321, 301, 130, 81, 0, 224, 343, 216, 190, 84, 0), # 37 (175, 331, 303, 135, 83, 0, 231, 359, 225, 196, 84, 0), # 38 (178, 343, 310, 141, 86, 0, 239, 364, 227, 200, 90, 0), # 39 (181, 347, 316, 145, 88, 0, 246, 370, 230, 206, 90, 0), # 40 (184, 356, 323, 147, 89, 0, 249, 383, 238, 213, 95, 0), # 41 (187, 362, 329, 155, 90, 0, 253, 388, 242, 219, 97, 0), # 42 (190, 370, 335, 164, 91, 0, 264, 395, 247, 225, 98, 0), # 43 (195, 383, 343, 168, 93, 0, 269, 399, 254, 229, 103, 0), # 44 (200, 393, 350, 169, 96, 0, 274, 406, 257, 236, 105, 0), # 45 (202, 407, 354, 171, 98, 0, 280, 413, 265, 243, 109, 0), # 46 (208, 421, 364, 174, 99, 0, 290, 425, 275, 245, 113, 0), # 47 (212, 428, 371, 177, 100, 0, 294, 432, 279, 254, 115, 0), # 48 (217, 435, 378, 179, 100, 0, 298, 443, 284, 257, 118, 0), # 49 (222, 445, 384, 182, 101, 0, 301, 453, 294, 261, 125, 0), # 50 (227, 451, 393, 183, 105, 0, 307, 467, 299, 266, 130, 0), # 51 (232, 457, 399, 186, 108, 0, 318, 475, 304, 269, 135, 0), # 52 (236, 464, 403, 188, 109, 0, 323, 483, 310, 279, 136, 0), # 53 (240, 480, 409, 193, 110, 0, 329, 492, 313, 282, 139, 0), # 54 (243, 490, 416, 197, 111, 0, 335, 496, 321, 285, 142, 0), # 55 (247, 503, 422, 200, 113, 0, 344, 509, 326, 296, 148, 0), # 56 (249, 512, 433, 208, 116, 0, 350, 517, 333, 301, 151, 0), # 57 (253, 524, 437, 211, 118, 0, 357, 521, 337, 305, 154, 0), # 58 (253, 524, 437, 211, 118, 0, 357, 521, 337, 305, 154, 0), # 59 ) passenger_arriving_rate = ( (3.7095121817383676, 7.612035984848484, 6.715158258354756, 3.5483152173913037, 2.000048076923077, 0.0, 6.659510869565219, 8.000192307692307, 5.322472826086956, 4.476772172236504, 1.903008996212121, 0.0), # 0 (3.7443308140669203, 7.696686590558361, 6.751429051520996, 3.5680760567632848, 2.0150386217948717, 0.0, 6.657240994867151, 8.060154487179487, 5.352114085144928, 4.500952701013997, 1.9241716476395903, 0.0), # 1 (3.7787518681104277, 7.780081571268237, 6.786838903170522, 3.58740193236715, 2.0297128205128203, 0.0, 6.654901690821256, 8.118851282051281, 5.381102898550726, 4.524559268780347, 1.9450203928170593, 0.0), # 2 (3.8127461259877085, 7.8621309375, 6.821361945694087, 3.6062763586956517, 2.044057211538462, 0.0, 6.652493274456523, 8.176228846153847, 5.409414538043478, 4.547574630462725, 1.965532734375, 0.0), # 3 (3.8462843698175795, 7.942744699775533, 6.854972311482434, 3.624682850241546, 2.0580583333333333, 0.0, 6.6500160628019325, 8.232233333333333, 5.437024275362319, 4.569981540988289, 1.9856861749438832, 0.0), # 4 (3.879337381718857, 8.021832868616723, 6.887644132926307, 3.6426049214975844, 2.0717027243589743, 0.0, 6.647470372886473, 8.286810897435897, 5.463907382246377, 4.591762755284204, 2.005458217154181, 0.0), # 5 (3.9118759438103607, 8.099305454545455, 6.919351542416455, 3.660026086956522, 2.084976923076923, 0.0, 6.644856521739131, 8.339907692307692, 5.490039130434783, 4.612901028277636, 2.0248263636363637, 0.0), # 6 (3.943870838210907, 8.175072468083613, 6.950068672343615, 3.6769298611111116, 2.0978674679487184, 0.0, 6.64217482638889, 8.391469871794873, 5.515394791666668, 4.633379114895743, 2.043768117020903, 0.0), # 7 (3.975292847039314, 8.249043919753085, 6.979769655098544, 3.693299758454106, 2.1103608974358976, 0.0, 6.639425603864735, 8.44144358974359, 5.5399496376811594, 4.653179770065696, 2.062260979938271, 0.0), # 8 (4.006112752414399, 8.321129820075758, 7.00842862307198, 3.709119293478261, 2.12244375, 0.0, 6.636609171195653, 8.489775, 5.563678940217391, 4.672285748714653, 2.0802824550189394, 0.0), # 9 (4.03630133645498, 8.391240179573513, 7.03601970865467, 3.724371980676329, 2.134102564102564, 0.0, 6.633725845410628, 8.536410256410257, 5.586557971014494, 4.690679805769779, 2.0978100448933783, 0.0), # 10 (4.065829381279876, 8.459285008768239, 7.06251704423736, 3.739041334541063, 2.145323878205128, 0.0, 6.630775943538648, 8.581295512820512, 5.608562001811595, 4.70834469615824, 2.1148212521920597, 0.0), # 11 (4.094667669007903, 8.525174318181818, 7.087894762210797, 3.7531108695652167, 2.156094230769231, 0.0, 6.627759782608695, 8.624376923076923, 5.6296663043478254, 4.725263174807198, 2.1312935795454546, 0.0), # 12 (4.122786981757876, 8.58881811833614, 7.112126994965724, 3.766564100241546, 2.1664001602564102, 0.0, 6.624677679649759, 8.665600641025641, 5.649846150362319, 4.741417996643816, 2.147204529584035, 0.0), # 13 (4.15015810164862, 8.650126419753088, 7.135187874892886, 3.779384541062801, 2.1762282051282047, 0.0, 6.621529951690821, 8.704912820512819, 5.669076811594202, 4.756791916595257, 2.162531604938272, 0.0), # 14 (4.1767518107989465, 8.709009232954545, 7.157051534383032, 3.7915557065217387, 2.1855649038461538, 0.0, 6.618316915760871, 8.742259615384615, 5.6873335597826085, 4.771367689588688, 2.177252308238636, 0.0), # 15 (4.202538891327675, 8.7653765684624, 7.177692105826908, 3.803061111111111, 2.194396794871795, 0.0, 6.61503888888889, 8.77758717948718, 5.7045916666666665, 4.785128070551272, 2.1913441421156, 0.0), # 16 (4.227490125353625, 8.81913843679854, 7.197083721615253, 3.8138842693236716, 2.202710416666667, 0.0, 6.611696188103866, 8.810841666666668, 5.720826403985508, 4.798055814410168, 2.204784609199635, 0.0), # 17 (4.25157629499561, 8.870204848484848, 7.215200514138818, 3.824008695652174, 2.2104923076923084, 0.0, 6.608289130434783, 8.841969230769234, 5.736013043478262, 4.810133676092545, 2.217551212121212, 0.0), # 18 (4.274768182372451, 8.918485814043208, 7.232016615788346, 3.8334179045893717, 2.2177290064102566, 0.0, 6.604818032910629, 8.870916025641026, 5.750126856884058, 4.8213444105255645, 2.229621453510802, 0.0), # 19 (4.297036569602966, 8.96389134399551, 7.247506158954584, 3.8420954106280196, 2.2244070512820517, 0.0, 6.601283212560387, 8.897628205128207, 5.76314311594203, 4.831670772636389, 2.2409728359988774, 0.0), # 20 (4.318352238805971, 9.006331448863634, 7.261643276028279, 3.8500247282608693, 2.2305129807692303, 0.0, 6.597684986413044, 8.922051923076921, 5.775037092391305, 4.841095517352186, 2.2515828622159084, 0.0), # 21 (4.338685972100283, 9.045716139169473, 7.274402099400172, 3.8571893719806765, 2.2360333333333333, 0.0, 6.5940236714975855, 8.944133333333333, 5.785784057971015, 4.849601399600115, 2.2614290347923682, 0.0), # 22 (4.358008551604722, 9.081955425434906, 7.285756761461012, 3.8635728562801934, 2.2409546474358972, 0.0, 6.590299584842997, 8.963818589743589, 5.79535928442029, 4.857171174307341, 2.2704888563587264, 0.0), # 23 (4.3762907594381035, 9.114959318181818, 7.295681394601543, 3.869158695652174, 2.2452634615384612, 0.0, 6.586513043478261, 8.981053846153845, 5.803738043478262, 4.863787596401028, 2.2787398295454544, 0.0), # 24 (4.393503377719247, 9.1446378279321, 7.304150131212511, 3.8739304045893723, 2.2489463141025636, 0.0, 6.582664364432368, 8.995785256410255, 5.810895606884059, 4.869433420808341, 2.286159456983025, 0.0), # 25 (4.409617188566969, 9.17090096520763, 7.311137103684661, 3.8778714975845405, 2.2519897435897436, 0.0, 6.5787538647343, 9.007958974358974, 5.816807246376811, 4.874091402456441, 2.2927252413019077, 0.0), # 26 (4.424602974100088, 9.193658740530301, 7.31661644440874, 3.880965489130435, 2.2543802884615385, 0.0, 6.574781861413045, 9.017521153846154, 5.821448233695653, 4.877744296272493, 2.2984146851325753, 0.0), # 27 (4.438431516437421, 9.212821164421996, 7.320562285775494, 3.8831958937198072, 2.256104487179487, 0.0, 6.570748671497586, 9.024417948717948, 5.824793840579711, 4.8803748571836625, 2.303205291105499, 0.0), # 28 (4.4510735976977855, 9.228298247404602, 7.322948760175664, 3.884546225845411, 2.257148878205128, 0.0, 6.566654612016909, 9.028595512820512, 5.826819338768117, 4.881965840117109, 2.3070745618511506, 0.0), # 29 (4.4625, 9.24, 7.32375, 3.885, 2.2575000000000003, 0.0, 6.562500000000001, 9.030000000000001, 5.8275, 4.8825, 2.31, 0.0), # 30 (4.47319183983376, 9.249720255681815, 7.323149356884057, 3.884918047385621, 2.257372225177305, 0.0, 6.556726763701484, 9.02948890070922, 5.827377071078432, 4.882099571256038, 2.312430063920454, 0.0), # 31 (4.4836528452685425, 9.259312045454546, 7.3213644202898545, 3.884673790849673, 2.2569916312056737, 0.0, 6.547834661835751, 9.027966524822695, 5.82701068627451, 4.880909613526569, 2.3148280113636366, 0.0), # 32 (4.493887715792838, 9.268774176136363, 7.3184206793478275, 3.8842696323529413, 2.2563623138297872, 0.0, 6.535910757121439, 9.025449255319149, 5.826404448529412, 4.878947119565218, 2.3171935440340907, 0.0), # 33 (4.503901150895141, 9.278105454545454, 7.314343623188405, 3.8837079738562093, 2.2554883687943263, 0.0, 6.521042112277196, 9.021953475177305, 5.825561960784314, 4.876229082125604, 2.3195263636363634, 0.0), # 34 (4.513697850063939, 9.287304687499997, 7.3091587409420296, 3.882991217320261, 2.2543738918439717, 0.0, 6.503315790021656, 9.017495567375887, 5.824486825980392, 4.872772493961353, 2.3218261718749993, 0.0), # 35 (4.523282512787724, 9.296370681818182, 7.302891521739131, 3.8821217647058828, 2.253022978723404, 0.0, 6.482818853073463, 9.012091914893617, 5.823182647058824, 4.868594347826087, 2.3240926704545455, 0.0), # 36 (4.532659838554988, 9.305302244318183, 7.295567454710145, 3.881102017973856, 2.2514397251773044, 0.0, 6.4596383641512585, 9.005758900709218, 5.821653026960784, 4.86371163647343, 2.3263255610795457, 0.0), # 37 (4.5418345268542195, 9.314098181818181, 7.287212028985508, 3.8799343790849674, 2.249628226950355, 0.0, 6.433861385973679, 8.99851290780142, 5.819901568627452, 4.858141352657005, 2.3285245454545453, 0.0), # 38 (4.5508112771739135, 9.322757301136363, 7.277850733695652, 3.87862125, 2.247592579787234, 0.0, 6.40557498125937, 8.990370319148935, 5.817931875, 4.8519004891304345, 2.330689325284091, 0.0), # 39 (4.559594789002558, 9.33127840909091, 7.267509057971015, 3.8771650326797387, 2.245336879432624, 0.0, 6.37486621272697, 8.981347517730496, 5.815747549019608, 4.845006038647344, 2.3328196022727274, 0.0), # 40 (4.568189761828645, 9.3396603125, 7.256212490942029, 3.8755681290849675, 2.2428652216312055, 0.0, 6.34182214309512, 8.971460886524822, 5.813352193627452, 4.837474993961353, 2.334915078125, 0.0), # 41 (4.576600895140665, 9.34790181818182, 7.2439865217391315, 3.8738329411764707, 2.2401817021276598, 0.0, 6.3065298350824595, 8.960726808510639, 5.810749411764706, 4.829324347826088, 2.336975454545455, 0.0), # 42 (4.584832888427111, 9.356001732954544, 7.230856639492753, 3.8719618709150327, 2.2372904166666667, 0.0, 6.26907635140763, 8.949161666666667, 5.80794280637255, 4.820571092995169, 2.339000433238636, 0.0), # 43 (4.592890441176471, 9.363958863636363, 7.216848333333333, 3.8699573202614377, 2.2341954609929076, 0.0, 6.229548754789272, 8.93678184397163, 5.804935980392157, 4.811232222222222, 2.3409897159090907, 0.0), # 44 (4.600778252877237, 9.371772017045453, 7.201987092391306, 3.8678216911764705, 2.230900930851064, 0.0, 6.188034107946028, 8.923603723404256, 5.801732536764706, 4.80132472826087, 2.3429430042613633, 0.0), # 45 (4.6085010230179035, 9.379440000000002, 7.186298405797103, 3.8655573856209147, 2.2274109219858156, 0.0, 6.144619473596536, 8.909643687943262, 5.798336078431372, 4.790865603864735, 2.3448600000000006, 0.0), # 46 (4.616063451086957, 9.386961619318182, 7.16980776268116, 3.8631668055555552, 2.223729530141844, 0.0, 6.099391914459438, 8.894918120567375, 5.794750208333333, 4.77987184178744, 2.3467404048295455, 0.0), # 47 (4.623470236572891, 9.394335681818182, 7.152540652173913, 3.8606523529411763, 2.21986085106383, 0.0, 6.052438493253375, 8.87944340425532, 5.790978529411765, 4.7683604347826085, 2.3485839204545456, 0.0), # 48 (4.630726078964194, 9.401560994318181, 7.134522563405797, 3.8580164297385626, 2.2158089804964543, 0.0, 6.003846272696985, 8.863235921985817, 5.787024644607844, 4.7563483756038645, 2.3503902485795454, 0.0), # 49 (4.6378356777493615, 9.408636363636361, 7.115778985507247, 3.8552614379084966, 2.211578014184397, 0.0, 5.953702315508913, 8.846312056737588, 5.782892156862745, 4.743852657004831, 2.3521590909090904, 0.0), # 50 (4.6448037324168805, 9.415560596590907, 7.096335407608696, 3.852389779411765, 2.2071720478723407, 0.0, 5.902093684407797, 8.828688191489363, 5.778584669117648, 4.73089027173913, 2.353890149147727, 0.0), # 51 (4.651634942455243, 9.4223325, 7.0762173188405795, 3.84940385620915, 2.2025951773049646, 0.0, 5.849107442112278, 8.810380709219858, 5.774105784313726, 4.717478212560386, 2.355583125, 0.0), # 52 (4.658334007352941, 9.428950880681818, 7.055450208333333, 3.8463060702614382, 2.1978514982269504, 0.0, 5.794830651340996, 8.791405992907801, 5.769459105392158, 4.703633472222222, 2.3572377201704544, 0.0), # 53 (4.6649056265984665, 9.435414545454544, 7.034059565217391, 3.843098823529412, 2.192945106382979, 0.0, 5.739350374812594, 8.771780425531915, 5.764648235294119, 4.689373043478261, 2.358853636363636, 0.0), # 54 (4.671354499680307, 9.441722301136364, 7.012070878623187, 3.8397845179738566, 2.1878800975177306, 0.0, 5.682753675245711, 8.751520390070922, 5.759676776960785, 4.674713919082125, 2.360430575284091, 0.0), # 55 (4.677685326086957, 9.447872954545453, 6.989509637681159, 3.8363655555555556, 2.1826605673758865, 0.0, 5.625127615358988, 8.730642269503546, 5.754548333333334, 4.65967309178744, 2.361968238636363, 0.0), # 56 (4.683902805306906, 9.453865312500001, 6.966401331521738, 3.832844338235294, 2.1772906117021273, 0.0, 5.566559257871065, 8.70916244680851, 5.749266507352941, 4.644267554347826, 2.3634663281250003, 0.0), # 57 (4.690011636828645, 9.459698181818181, 6.942771449275362, 3.8292232679738563, 2.1717743262411346, 0.0, 5.507135665500583, 8.687097304964539, 5.743834901960785, 4.628514299516908, 2.3649245454545453, 0.0), # 58 (0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), # 59 ) passenger_allighting_rate = ( (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 0 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 1 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 2 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 3 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 4 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 5 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 6 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 7 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 8 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 9 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 10 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 11 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 12 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 13 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 14 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 15 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 16 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 17 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 18 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 19 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 20 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 21 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 22 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 23 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 24 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 25 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 26 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 27 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 28 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 29 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 30 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 31 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 32 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 33 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 34 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 35 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 36 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 37 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 38 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 39 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 40 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 41 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 42 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 43 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 44 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 45 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 46 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 47 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 48 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 49 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 50 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 51 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 52 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 53 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 54 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 55 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 56 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 57 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 58 (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 59 ) """ parameters for reproducibiliy. More information: https://numpy.org/doc/stable/reference/random/parallel.html """ #initial entropy entropy = 258194110137029475889902652135037600173 #index for seed sequence child child_seed_index = ( 1, # 0 49, # 1 )
#!/usr/bin/env python # -*- coding: utf-8 -*- """ synthqc.errors This module holds project defined errors Author: Jacob Reinhold ([email protected]) Created on: Nov 15, 2018 """ class SynthQCError(Exception): pass
__title__ = 'Sellsy' __description__ = 'https://api.sellsy.fr/documentation/methodes' __version__ = '0.0.4' __author__ = 'Cantin L.' print("API de ", __title__ ," lien de la documentation : ", __description__ ," c'est la version ", __version__ ," développer par ", __author__)
a = [1, 2, 3] b = a print(a == b) # => True print(a is b) # => True c = list(a) # == evaluates to true if the objects referred by the variables are equal print(a == c) # => True # is evaluates to true if both variables point to the same object print(a is c) # => false
# !/usr/bin/env python # -*- coding: utf-8 -*- """ @Project : acs-project-krr @File : model_v1.py @Author : Billy Sheng @Contact : [email protected] @Date : 2020/11/21 10:40 上午 @Version : 1.0.0 @License : Apache License 2.0 @Desc : None """ MODELS = [ { "DOMAIN": {'5', '3', '6', '7', '2', '4', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '4', '7'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('5', '2'), ('2', '4'), ('1', '2'), ('2', '5'), ('3', '6'), ('7', '3'), ('4', '2'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('3', '7'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '5'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')} }, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '4', '7'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('2', '4'), ('1', '2'), ('2', '6'), ('6', '2'), ('7', '3'), ('5', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('3', '7'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '5'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '4', '7'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('2', '4'), ('1', '2'), ('4', '2'), ('3', '6'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('3', '7'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '5'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '4', '7'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('3', '4'), ('5', '2'), ('1', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('3', '7'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '5'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '4', '7'}, "Road": {('2', '1'), ('3', '1'), ('3', '4'), ('5', '2'), ('1', '2'), ('2', '5'), ('3', '6'), ('4', '3'), ('7', '2'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('3', '7'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '5'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '4', '7'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '4'), ('1', '2'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('3', '7'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '5'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '4'), ('3', '7'), ('3', '8'), ('5', '2'), ('1', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('8', '3'), ('7', '3'), ('1', '3'), ('4', '1')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('2', '5'), ('3', '6'), ('7', '2'), ('8', '3'), ('6', '3'), ('2', '7'), ('1', '3'), ('4', '1')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '4'), ('3', '7'), ('5', '2'), ('8', '2'), ('2', '8'), ('1', '2'), ('2', '5'), ('3', '6'), ('6', '3'), ('7', '3'), ('1', '3'), ('4', '1')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '4'), ('3', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('7', '2'), ('8', '3'), ('5', '3'), ('2', '7'), ('1', '3'), ('4', '1')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '4'), ('3', '7'), ('8', '2'), ('2', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('5', '3'), ('7', '3'), ('1', '3'), ('4', '1')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '4'), ('8', '2'), ('2', '8'), ('1', '2'), ('3', '6'), ('7', '2'), ('5', '3'), ('6', '3'), ('2', '7'), ('1', '3'), ('4', '1')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '7'), ('3', '8'), ('2', '4'), ('1', '2'), ('2', '6'), ('6', '2'), ('7', '3'), ('8', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '8'), ('2', '4'), ('1', '2'), ('4', '2'), ('3', '6'), ('7', '2'), ('8', '3'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '6'), ('7', '3'), ('4', '2'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '4'), ('3', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '2'), ('8', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '4'), ('2', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('8', '2'), ('3', '4'), ('2', '8'), ('1', '2'), ('3', '6'), ('4', '3'), ('7', '2'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('3', '8'), ('5', '2'), ('2', '4'), ('1', '2'), ('2', '5'), ('1', '6'), ('7', '3'), ('6', '1'), ('8', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '8'), ('2', '4'), ('1', '2'), ('4', '2'), ('1', '6'), ('6', '1'), ('7', '2'), ('8', '3'), ('5', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('8', '2'), ('2', '4'), ('1', '2'), ('2', '8'), ('1', '6'), ('7', '3'), ('6', '1'), ('5', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('2', '5'), ('1', '6'), ('4', '3'), ('6', '1'), ('7', '2'), ('8', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '4'), ('5', '2'), ('2', '8'), ('1', '2'), ('2', '5'), ('1', '6'), ('4', '3'), ('6', '1'), ('7', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('8', '2'), ('3', '4'), ('2', '8'), ('1', '2'), ('1', '6'), ('4', '3'), ('6', '1'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '7'), ('3', '8'), ('2', '4'), ('1', '2'), ('5', '2'), ('2', '5'), ('3', '6'), ('7', '1'), ('8', '3'), ('4', '2'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '7'), ('3', '8'), ('2', '4'), ('1', '2'), ('2', '6'), ('6', '2'), ('7', '1'), ('8', '3'), ('5', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('8', '2'), ('1', '7'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '6'), ('7', '1'), ('5', '3'), ('4', '2'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '7'), ('3', '4'), ('3', '8'), ('1', '2'), ('5', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('7', '1'), ('4', '3'), ('8', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '7'), ('3', '4'), ('2', '8'), ('1', '2'), ('5', '2'), ('2', '5'), ('3', '6'), ('7', '1'), ('4', '3'), ('8', '2'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '7'), ('3', '4'), ('2', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('7', '1'), ('4', '3'), ('5', '3'), ('8', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '8'), ('3', '7'), ('5', '2'), ('2', '4'), ('1', '2'), ('2', '5'), ('3', '6'), ('7', '3'), ('4', '2'), ('1', '3'), ('6', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '8'), ('3', '7'), ('2', '4'), ('1', '2'), ('2', '6'), ('6', '2'), ('7', '3'), ('5', '3'), ('4', '2'), ('1', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '8'), ('2', '4'), ('1', '2'), ('4', '2'), ('3', '6'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3'), ('6', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '8'), ('3', '7'), ('3', '4'), ('5', '2'), ('1', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '3'), ('1', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '8'), ('3', '4'), ('5', '2'), ('1', '2'), ('2', '5'), ('3', '6'), ('4', '3'), ('7', '2'), ('2', '7'), ('1', '3'), ('6', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '8'), ('3', '4'), ('1', '2'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('3', '8'), ('5', '2'), ('2', '4'), ('1', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('7', '3'), ('8', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '8'), ('5', '2'), ('2', '4'), ('1', '2'), ('2', '5'), ('4', '2'), ('3', '6'), ('7', '2'), ('8', '3'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('5', '2'), ('2', '4'), ('1', '2'), ('2', '8'), ('2', '5'), ('3', '6'), ('7', '3'), ('4', '2'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('3', '8'), ('5', '2'), ('2', '4'), ('1', '2'), ('2', '5'), ('3', '6'), ('7', '3'), ('8', '3'), ('4', '2'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '8'), ('2', '4'), ('1', '2'), ('2', '6'), ('4', '2'), ('6', '2'), ('7', '2'), ('8', '3'), ('5', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('8', '2'), ('2', '4'), ('1', '2'), ('2', '8'), ('2', '6'), ('6', '2'), ('7', '3'), ('5', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('3', '8'), ('2', '4'), ('1', '2'), ('2', '6'), ('6', '2'), ('7', '3'), ('8', '3'), ('5', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('8', '2'), ('2', '4'), ('1', '2'), ('2', '8'), ('4', '2'), ('3', '6'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '8'), ('2', '4'), ('1', '2'), ('4', '2'), ('3', '6'), ('7', '2'), ('8', '3'), ('5', '3'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('8', '2'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '6'), ('7', '3'), ('5', '3'), ('4', '2'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '2'), ('8', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '4'), ('5', '2'), ('2', '8'), ('1', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('3', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('4', '3'), ('8', '3'), ('7', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('8', '2'), ('3', '4'), ('5', '2'), ('2', '8'), ('1', '2'), ('2', '5'), ('3', '6'), ('4', '3'), ('7', '2'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('2', '5'), ('3', '6'), ('4', '3'), ('7', '2'), ('8', '3'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '4'), ('5', '2'), ('2', '8'), ('1', '2'), ('2', '5'), ('3', '6'), ('4', '3'), ('7', '3'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('8', '2'), ('3', '4'), ('2', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '4'), ('3', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '2'), ('8', '3'), ('5', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '4'), ('2', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('4', '3'), ('5', '3'), ('7', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('8', '2'), ('3', '4'), ('2', '8'), ('1', '2'), ('3', '6'), ('4', '3'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '5'), ('1', '4'), ('1', '8'), ('1', '7'), ('3', '4'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '7'), ('2', '5'), ('3', '8'), ('2', '6'), ('3', '6'), ('1', '6'), ('2', '7'), ('1', '3')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '4'), ('3', '8'), ('3', '9'), ('5', '2'), ('1', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('7', '2'), ('8', '3'), ('9', '3'), ('2', '7'), ('1', '3'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '4'), ('3', '7'), ('5', '2'), ('3', '9'), ('2', '8'), ('1', '2'), ('8', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('9', '3'), ('7', '3'), ('1', '3'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '4'), ('3', '7'), ('3', '8'), ('5', '2'), ('1', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('9', '2'), ('8', '3'), ('7', '3'), ('1', '3'), ('2', '9'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '4'), ('3', '7'), ('3', '8'), ('3', '9'), ('5', '2'), ('1', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('8', '3'), ('9', '3'), ('7', '3'), ('1', '3'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '4'), ('8', '2'), ('5', '2'), ('3', '9'), ('2', '8'), ('1', '2'), ('2', '5'), ('3', '6'), ('7', '2'), ('9', '3'), ('6', '3'), ('2', '7'), ('1', '3'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('2', '5'), ('3', '6'), ('9', '2'), ('7', '2'), ('8', '3'), ('6', '3'), ('2', '7'), ('1', '3'), ('2', '9'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '4'), ('3', '8'), ('3', '9'), ('5', '2'), ('1', '2'), ('2', '5'), ('3', '6'), ('7', '2'), ('8', '3'), ('9', '3'), ('6', '3'), ('2', '7'), ('1', '3'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '4'), ('3', '7'), ('5', '2'), ('8', '2'), ('2', '8'), ('1', '2'), ('2', '5'), ('3', '6'), ('9', '2'), ('6', '3'), ('7', '3'), ('1', '3'), ('2', '9'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '4'), ('3', '7'), ('5', '2'), ('3', '9'), ('2', '8'), ('1', '2'), ('8', '2'), ('2', '5'), ('3', '6'), ('9', '3'), ('6', '3'), ('7', '3'), ('1', '3'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '4'), ('3', '7'), ('3', '8'), ('5', '2'), ('1', '2'), ('2', '5'), ('3', '6'), ('9', '2'), ('8', '3'), ('6', '3'), ('7', '3'), ('1', '3'), ('2', '9'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '4'), ('8', '2'), ('3', '9'), ('2', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('7', '2'), ('9', '3'), ('5', '3'), ('2', '7'), ('1', '3'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '4'), ('3', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('9', '2'), ('7', '2'), ('8', '3'), ('5', '3'), ('2', '7'), ('1', '3'), ('2', '9'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '4'), ('3', '8'), ('3', '9'), ('1', '2'), ('2', '6'), ('6', '2'), ('7', '2'), ('8', '3'), ('9', '3'), ('5', '3'), ('2', '7'), ('1', '3'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '4'), ('3', '7'), ('8', '2'), ('2', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('9', '2'), ('5', '3'), ('7', '3'), ('1', '3'), ('2', '9'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '4'), ('3', '7'), ('8', '2'), ('3', '9'), ('2', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('9', '3'), ('5', '3'), ('7', '3'), ('1', '3'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '4'), ('3', '7'), ('3', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('9', '2'), ('8', '3'), ('5', '3'), ('7', '3'), ('1', '3'), ('2', '9'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '4'), ('8', '2'), ('2', '8'), ('1', '2'), ('3', '6'), ('9', '2'), ('7', '2'), ('5', '3'), ('6', '3'), ('2', '7'), ('1', '3'), ('2', '9'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '4'), ('8', '2'), ('3', '9'), ('2', '8'), ('1', '2'), ('3', '6'), ('7', '2'), ('9', '3'), ('5', '3'), ('6', '3'), ('2', '7'), ('1', '3'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '4'), ('3', '8'), ('1', '2'), ('3', '6'), ('9', '2'), ('7', '2'), ('8', '3'), ('5', '3'), ('6', '3'), ('2', '7'), ('1', '3'), ('2', '9'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '4'), ('3', '7'), ('8', '2'), ('2', '8'), ('1', '2'), ('3', '6'), ('9', '2'), ('5', '3'), ('6', '3'), ('7', '3'), ('1', '3'), ('2', '9'), ('4', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '8'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '6'), ('4', '2'), ('6', '2'), ('7', '2'), ('8', '3'), ('9', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '8'), ('2', '6'), ('6', '2'), ('7', '3'), ('9', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '7'), ('3', '8'), ('2', '4'), ('1', '2'), ('2', '6'), ('6', '2'), ('7', '3'), ('9', '2'), ('8', '3'), ('4', '2'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '7'), ('3', '8'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '6'), ('6', '2'), ('7', '3'), ('8', '3'), ('9', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('8', '2'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '8'), ('4', '2'), ('3', '6'), ('7', '2'), ('9', '3'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '8'), ('2', '4'), ('1', '2'), ('4', '2'), ('3', '6'), ('9', '2'), ('7', '2'), ('8', '3'), ('2', '7'), ('1', '3'), ('2', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '8'), ('3', '9'), ('2', '4'), ('1', '2'), ('4', '2'), ('3', '6'), ('7', '2'), ('8', '3'), ('9', '3'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '6'), ('7', '3'), ('9', '2'), ('4', '2'), ('1', '3'), ('2', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '6'), ('7', '3'), ('9', '3'), ('4', '2'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '7'), ('3', '8'), ('2', '4'), ('1', '2'), ('3', '6'), ('7', '3'), ('9', '2'), ('8', '3'), ('4', '2'), ('1', '3'), ('2', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('8', '2'), ('3', '4'), ('3', '9'), ('2', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '2'), ('9', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '4'), ('3', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('9', '2'), ('4', '3'), ('7', '2'), ('8', '3'), ('2', '7'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '4'), ('3', '8'), ('3', '9'), ('1', '2'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '2'), ('8', '3'), ('9', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '4'), ('2', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('9', '2'), ('4', '3'), ('7', '3'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '4'), ('3', '9'), ('2', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('4', '3'), ('9', '3'), ('7', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '7'), ('3', '4'), ('3', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('9', '2'), ('4', '3'), ('8', '3'), ('7', '3'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('8', '2'), ('3', '4'), ('2', '8'), ('1', '2'), ('3', '6'), ('9', '2'), ('4', '3'), ('7', '2'), ('2', '7'), ('1', '3'), ('2', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('8', '2'), ('3', '4'), ('3', '9'), ('2', '8'), ('1', '2'), ('3', '6'), ('4', '3'), ('7', '2'), ('9', '3'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '4'), ('3', '8'), ('1', '2'), ('3', '6'), ('9', '2'), ('4', '3'), ('7', '2'), ('8', '3'), ('2', '7'), ('1', '3'), ('2', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('1', '5'), ('2', '1'), ('5', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '4'), ('2', '8'), ('1', '2'), ('3', '6'), ('9', '2'), ('4', '3'), ('7', '3'), ('1', '3'), ('2', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '8'), ('3', '9'), ('2', '4'), ('1', '2'), ('5', '2'), ('2', '5'), ('4', '2'), ('1', '6'), ('6', '1'), ('7', '2'), ('8', '3'), ('9', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('5', '2'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '8'), ('2', '5'), ('1', '6'), ('7', '3'), ('6', '1'), ('9', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('3', '8'), ('5', '2'), ('2', '4'), ('1', '2'), ('2', '5'), ('1', '6'), ('7', '3'), ('6', '1'), ('8', '3'), ('9', '2'), ('4', '2'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('3', '8'), ('3', '9'), ('2', '4'), ('1', '2'), ('5', '2'), ('2', '5'), ('1', '6'), ('7', '3'), ('6', '1'), ('8', '3'), ('9', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('8', '2'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '8'), ('4', '2'), ('1', '6'), ('6', '1'), ('7', '2'), ('9', '3'), ('5', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '8'), ('2', '4'), ('1', '2'), ('4', '2'), ('1', '6'), ('9', '2'), ('6', '1'), ('7', '2'), ('8', '3'), ('5', '3'), ('2', '7'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '8'), ('3', '9'), ('2', '4'), ('1', '2'), ('4', '2'), ('1', '6'), ('6', '1'), ('7', '2'), ('8', '3'), ('9', '3'), ('5', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('8', '2'), ('2', '4'), ('1', '2'), ('2', '8'), ('1', '6'), ('7', '3'), ('6', '1'), ('9', '2'), ('5', '3'), ('4', '2'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '8'), ('1', '6'), ('7', '3'), ('6', '1'), ('9', '3'), ('5', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('3', '8'), ('2', '4'), ('1', '2'), ('1', '6'), ('7', '3'), ('6', '1'), ('8', '3'), ('9', '2'), ('5', '3'), ('4', '2'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('8', '2'), ('3', '4'), ('3', '9'), ('2', '8'), ('1', '2'), ('5', '2'), ('2', '5'), ('1', '6'), ('4', '3'), ('6', '1'), ('7', '2'), ('9', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('2', '5'), ('1', '6'), ('9', '2'), ('4', '3'), ('6', '1'), ('7', '2'), ('8', '3'), ('2', '7'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '4'), ('3', '8'), ('3', '9'), ('1', '2'), ('5', '2'), ('2', '5'), ('9', '3'), ('1', '6'), ('4', '3'), ('6', '1'), ('7', '2'), ('8', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '4'), ('5', '2'), ('2', '8'), ('1', '2'), ('2', '5'), ('1', '6'), ('9', '2'), ('4', '3'), ('6', '1'), ('7', '3'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '4'), ('3', '9'), ('2', '8'), ('1', '2'), ('5', '2'), ('2', '5'), ('1', '6'), ('4', '3'), ('6', '1'), ('9', '3'), ('7', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('3', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('2', '5'), ('1', '6'), ('9', '2'), ('4', '3'), ('6', '1'), ('8', '3'), ('7', '3'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('8', '2'), ('3', '4'), ('2', '8'), ('1', '2'), ('1', '6'), ('9', '2'), ('4', '3'), ('6', '1'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('8', '2'), ('3', '4'), ('3', '9'), ('2', '8'), ('1', '2'), ('1', '6'), ('4', '3'), ('6', '1'), ('7', '2'), ('9', '3'), ('5', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '4'), ('3', '8'), ('1', '2'), ('1', '6'), ('9', '2'), ('4', '3'), ('6', '1'), ('7', '2'), ('8', '3'), ('5', '3'), ('2', '7'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '4'), ('2', '8'), ('1', '2'), ('1', '6'), ('9', '2'), ('4', '3'), ('6', '1'), ('5', '3'), ('7', '3'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '7'), ('3', '8'), ('2', '4'), ('1', '2'), ('3', '9'), ('5', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('7', '1'), ('8', '3'), ('9', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('8', '2'), ('1', '7'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '8'), ('5', '2'), ('2', '5'), ('3', '6'), ('7', '1'), ('9', '3'), ('4', '2'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '7'), ('3', '8'), ('2', '4'), ('1', '2'), ('5', '2'), ('2', '5'), ('3', '6'), ('7', '1'), ('9', '2'), ('8', '3'), ('4', '2'), ('1', '3'), ('2', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '7'), ('3', '8'), ('2', '4'), ('1', '2'), ('3', '9'), ('5', '2'), ('2', '5'), ('3', '6'), ('7', '1'), ('8', '3'), ('9', '3'), ('4', '2'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('8', '2'), ('1', '7'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '8'), ('2', '6'), ('6', '2'), ('7', '1'), ('9', '3'), ('5', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '7'), ('3', '8'), ('2', '4'), ('1', '2'), ('2', '6'), ('6', '2'), ('7', '1'), ('9', '2'), ('8', '3'), ('5', '3'), ('4', '2'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '7'), ('3', '8'), ('2', '4'), ('1', '2'), ('3', '9'), ('2', '6'), ('6', '2'), ('7', '1'), ('8', '3'), ('9', '3'), ('5', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('8', '2'), ('1', '7'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '6'), ('7', '1'), ('9', '2'), ('5', '3'), ('4', '2'), ('1', '3'), ('2', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('8', '2'), ('1', '7'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '6'), ('7', '1'), ('9', '3'), ('5', '3'), ('4', '2'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '7'), ('3', '8'), ('2', '4'), ('1', '2'), ('3', '6'), ('7', '1'), ('9', '2'), ('8', '3'), ('5', '3'), ('4', '2'), ('1', '3'), ('2', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '7'), ('3', '4'), ('2', '8'), ('1', '2'), ('3', '9'), ('5', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('7', '1'), ('4', '3'), ('9', '3'), ('8', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '7'), ('3', '4'), ('3', '8'), ('1', '2'), ('5', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('7', '1'), ('9', '2'), ('4', '3'), ('8', '3'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '7'), ('3', '4'), ('3', '8'), ('1', '2'), ('3', '9'), ('5', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('7', '1'), ('4', '3'), ('8', '3'), ('9', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '7'), ('3', '4'), ('2', '8'), ('1', '2'), ('5', '2'), ('2', '5'), ('3', '6'), ('7', '1'), ('9', '2'), ('4', '3'), ('8', '2'), ('1', '3'), ('2', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '7'), ('3', '4'), ('2', '8'), ('1', '2'), ('3', '9'), ('5', '2'), ('2', '5'), ('3', '6'), ('7', '1'), ('4', '3'), ('9', '3'), ('8', '2'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '7'), ('3', '4'), ('3', '8'), ('1', '2'), ('5', '2'), ('2', '5'), ('3', '6'), ('7', '1'), ('9', '2'), ('4', '3'), ('8', '3'), ('1', '3'), ('2', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '7'), ('3', '4'), ('2', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('7', '1'), ('9', '2'), ('4', '3'), ('5', '3'), ('8', '2'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '7'), ('3', '4'), ('2', '8'), ('1', '2'), ('3', '9'), ('2', '6'), ('6', '2'), ('7', '1'), ('4', '3'), ('9', '3'), ('5', '3'), ('8', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '7'), ('3', '4'), ('3', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('7', '1'), ('9', '2'), ('4', '3'), ('8', '3'), ('5', '3'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '7'), ('3', '4'), ('2', '8'), ('1', '2'), ('3', '6'), ('7', '1'), ('9', '2'), ('4', '3'), ('5', '3'), ('8', '2'), ('1', '3'), ('2', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '8'), ('3', '7'), ('5', '2'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('7', '3'), ('9', '3'), ('4', '2'), ('1', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '8'), ('5', '2'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '5'), ('4', '2'), ('3', '6'), ('7', '2'), ('9', '3'), ('2', '7'), ('1', '3'), ('6', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '8'), ('3', '7'), ('5', '2'), ('2', '4'), ('1', '2'), ('2', '5'), ('3', '6'), ('7', '3'), ('9', '2'), ('4', '2'), ('1', '3'), ('2', '9'), ('6', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '8'), ('3', '7'), ('5', '2'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '5'), ('3', '6'), ('7', '3'), ('9', '3'), ('4', '2'), ('1', '3'), ('6', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '8'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '6'), ('4', '2'), ('6', '2'), ('7', '2'), ('9', '3'), ('5', '3'), ('2', '7'), ('1', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '8'), ('3', '7'), ('2', '4'), ('1', '2'), ('2', '6'), ('6', '2'), ('7', '3'), ('9', '2'), ('5', '3'), ('4', '2'), ('1', '3'), ('2', '9'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '8'), ('3', '7'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '6'), ('6', '2'), ('7', '3'), ('9', '3'), ('5', '3'), ('4', '2'), ('1', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '8'), ('2', '4'), ('1', '2'), ('4', '2'), ('3', '6'), ('9', '2'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3'), ('2', '9'), ('6', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '8'), ('3', '9'), ('2', '4'), ('1', '2'), ('4', '2'), ('3', '6'), ('7', '2'), ('9', '3'), ('5', '3'), ('2', '7'), ('1', '3'), ('6', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '8'), ('3', '7'), ('2', '4'), ('1', '2'), ('3', '6'), ('7', '3'), ('9', '2'), ('5', '3'), ('4', '2'), ('1', '3'), ('2', '9'), ('6', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '8'), ('3', '4'), ('3', '9'), ('5', '2'), ('1', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '2'), ('9', '3'), ('2', '7'), ('1', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '8'), ('3', '7'), ('3', '4'), ('5', '2'), ('1', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('9', '2'), ('4', '3'), ('7', '3'), ('1', '3'), ('2', '9'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '8'), ('3', '7'), ('3', '4'), ('3', '9'), ('5', '2'), ('1', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('4', '3'), ('9', '3'), ('7', '3'), ('1', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '8'), ('3', '4'), ('5', '2'), ('1', '2'), ('2', '5'), ('3', '6'), ('9', '2'), ('4', '3'), ('7', '2'), ('2', '7'), ('1', '3'), ('2', '9'), ('6', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '8'), ('3', '4'), ('3', '9'), ('5', '2'), ('1', '2'), ('2', '5'), ('3', '6'), ('4', '3'), ('7', '2'), ('9', '3'), ('2', '7'), ('1', '3'), ('6', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('1', '8'), ('3', '7'), ('3', '4'), ('5', '2'), ('1', '2'), ('2', '5'), ('3', '6'), ('9', '2'), ('4', '3'), ('7', '3'), ('1', '3'), ('2', '9'), ('6', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '8'), ('3', '4'), ('1', '2'), ('2', '6'), ('6', '2'), ('9', '2'), ('4', '3'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3'), ('2', '9'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '8'), ('3', '4'), ('3', '9'), ('1', '2'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '2'), ('9', '3'), ('5', '3'), ('2', '7'), ('1', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '8'), ('3', '7'), ('3', '4'), ('1', '2'), ('2', '6'), ('6', '2'), ('9', '2'), ('4', '3'), ('5', '3'), ('7', '3'), ('1', '3'), ('2', '9'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('1', '8'), ('3', '4'), ('1', '2'), ('3', '6'), ('9', '2'), ('4', '3'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3'), ('2', '9'), ('6', '3'), ('8', '1')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('9', '1'), ('3', '1'), ('3', '7'), ('3', '8'), ('5', '2'), ('2', '4'), ('1', '2'), ('1', '9'), ('2', '5'), ('2', '6'), ('6', '2'), ('7', '3'), ('8', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('9', '1'), ('3', '1'), ('3', '8'), ('5', '2'), ('2', '4'), ('1', '2'), ('1', '9'), ('2', '5'), ('4', '2'), ('3', '6'), ('7', '2'), ('8', '3'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('9', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('5', '2'), ('2', '4'), ('1', '2'), ('1', '9'), ('2', '8'), ('2', '5'), ('3', '6'), ('7', '3'), ('4', '2'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('9', '1'), ('3', '1'), ('3', '7'), ('3', '8'), ('5', '2'), ('2', '4'), ('1', '2'), ('1', '9'), ('2', '5'), ('3', '6'), ('7', '3'), ('8', '3'), ('4', '2'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('9', '1'), ('3', '8'), ('2', '4'), ('1', '2'), ('1', '9'), ('2', '6'), ('4', '2'), ('6', '2'), ('7', '2'), ('8', '3'), ('5', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('8', '2'), ('9', '1'), ('2', '4'), ('1', '2'), ('1', '9'), ('2', '8'), ('2', '6'), ('6', '2'), ('7', '3'), ('5', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('9', '1'), ('3', '8'), ('2', '4'), ('1', '2'), ('1', '9'), ('2', '6'), ('6', '2'), ('7', '3'), ('8', '3'), ('5', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('8', '2'), ('9', '1'), ('2', '4'), ('1', '2'), ('1', '9'), ('2', '8'), ('4', '2'), ('3', '6'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('9', '1'), ('3', '8'), ('2', '4'), ('1', '2'), ('1', '9'), ('4', '2'), ('3', '6'), ('7', '2'), ('8', '3'), ('5', '3'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('8', '2'), ('9', '1'), ('2', '4'), ('1', '2'), ('1', '9'), ('2', '8'), ('3', '6'), ('7', '3'), ('5', '3'), ('4', '2'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('9', '1'), ('3', '1'), ('3', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('1', '9'), ('2', '5'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '2'), ('8', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('9', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '4'), ('5', '2'), ('2', '8'), ('1', '2'), ('1', '9'), ('2', '5'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('9', '1'), ('3', '1'), ('3', '7'), ('3', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('1', '9'), ('2', '5'), ('2', '6'), ('6', '2'), ('4', '3'), ('8', '3'), ('7', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('9', '1'), ('3', '1'), ('8', '2'), ('3', '4'), ('5', '2'), ('2', '8'), ('1', '2'), ('1', '9'), ('2', '5'), ('3', '6'), ('4', '3'), ('7', '2'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('9', '1'), ('3', '1'), ('3', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('1', '9'), ('2', '5'), ('3', '6'), ('4', '3'), ('7', '2'), ('8', '3'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('9', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '4'), ('5', '2'), ('2', '8'), ('1', '2'), ('1', '9'), ('2', '5'), ('3', '6'), ('4', '3'), ('7', '3'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('8', '2'), ('9', '1'), ('3', '4'), ('2', '8'), ('1', '2'), ('1', '9'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('9', '1'), ('3', '4'), ('3', '8'), ('1', '2'), ('1', '9'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '2'), ('8', '3'), ('5', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '4'), ('9', '1'), ('2', '8'), ('1', '2'), ('1', '9'), ('2', '6'), ('6', '2'), ('4', '3'), ('5', '3'), ('7', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('8', '2'), ('9', '1'), ('3', '4'), ('2', '8'), ('1', '2'), ('1', '9'), ('3', '6'), ('4', '3'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('3', '8'), ('3', '9'), ('2', '4'), ('1', '2'), ('5', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('7', '3'), ('8', '3'), ('9', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '8'), ('3', '9'), ('2', '4'), ('1', '2'), ('5', '2'), ('2', '5'), ('4', '2'), ('3', '6'), ('7', '2'), ('8', '3'), ('9', '3'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('5', '2'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '8'), ('2', '5'), ('3', '6'), ('7', '3'), ('9', '3'), ('4', '2'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('3', '8'), ('5', '2'), ('2', '4'), ('1', '2'), ('2', '5'), ('3', '6'), ('7', '3'), ('9', '2'), ('8', '3'), ('4', '2'), ('1', '3'), ('2', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '8'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '6'), ('4', '2'), ('6', '2'), ('7', '2'), ('8', '3'), ('9', '3'), ('5', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '8'), ('2', '6'), ('6', '2'), ('7', '3'), ('9', '3'), ('5', '3'), ('4', '2'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('3', '8'), ('2', '4'), ('1', '2'), ('2', '6'), ('6', '2'), ('7', '3'), ('9', '2'), ('8', '3'), ('5', '3'), ('4', '2'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('8', '2'), ('3', '9'), ('2', '4'), ('1', '2'), ('2', '8'), ('4', '2'), ('3', '6'), ('7', '2'), ('9', '3'), ('5', '3'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '8'), ('2', '4'), ('1', '2'), ('4', '2'), ('3', '6'), ('9', '2'), ('7', '2'), ('8', '3'), ('5', '3'), ('2', '7'), ('1', '3'), ('2', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('8', '2'), ('2', '4'), ('1', '2'), ('2', '8'), ('3', '6'), ('7', '3'), ('9', '2'), ('5', '3'), ('4', '2'), ('1', '3'), ('2', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '4'), ('3', '8'), ('3', '9'), ('1', '2'), ('5', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '2'), ('8', '3'), ('9', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '4'), ('3', '9'), ('2', '8'), ('1', '2'), ('5', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('4', '3'), ('9', '3'), ('7', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('3', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('2', '5'), ('2', '6'), ('6', '2'), ('9', '2'), ('4', '3'), ('8', '3'), ('7', '3'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('8', '2'), ('3', '4'), ('3', '9'), ('2', '8'), ('1', '2'), ('5', '2'), ('2', '5'), ('3', '6'), ('4', '3'), ('7', '2'), ('9', '3'), ('2', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('2', '5'), ('3', '6'), ('9', '2'), ('4', '3'), ('7', '2'), ('8', '3'), ('2', '7'), ('1', '3'), ('2', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '4'), ('5', '2'), ('2', '8'), ('1', '2'), ('2', '5'), ('3', '6'), ('9', '2'), ('4', '3'), ('7', '3'), ('1', '3'), ('2', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('8', '2'), ('3', '4'), ('3', '9'), ('2', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('4', '3'), ('7', '2'), ('9', '3'), ('5', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '4'), ('3', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('9', '2'), ('4', '3'), ('7', '2'), ('8', '3'), ('5', '3'), ('2', '7'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('8', '2'), ('3', '4'), ('2', '8'), ('1', '2'), ('2', '6'), ('6', '2'), ('9', '2'), ('4', '3'), ('5', '3'), ('7', '3'), ('1', '3'), ('2', '9')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '2', '9', '4', '8', '1'}, "City": {'1'}, "Town": {'3', '2'}, "Village": {'5', '6', '7', '9', '8', '4'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('8', '2'), ('3', '4'), ('2', '8'), ('1', '2'), ('3', '6'), ('9', '2'), ('4', '3'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3'), ('2', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '4'), ('3', '8'), ('3', '9'), ('2', '5'), ('2', '6'), ('2', '7'), ('1', '7'), ('1', '6'), ('1', '3'), ('2', '9'), ('1', '4'), ('1', '8'), ('1', '2'), ('1', '9'), ('3', '5'), ('3', '7'), ('2', '4'), ('2', '8'), ('3', '6')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('5', '2'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('3', '6'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '4'), ('4', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('5', '2'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('3', '6'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('8', '4'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('9', '4'), ('5', '2'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('3', '6'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('1', '3'), ('4', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('5', '2'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('3', '6'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '4'), ('4', '7'), ('1', '3'), ('8', '4'), ('6', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('9', '4'), ('5', '2'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('3', '6'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '4'), ('4', '7'), ('1', '3'), ('4', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('9', '4'), ('5', '2'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('3', '6'), ('3', '10'), ('10', '2'), ('2', '10'), ('8', '4'), ('1', '3'), ('4', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('5', '2'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('4', '6'), ('6', '4'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('5', '2'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '3'), ('1', '3'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('9', '4'), ('5', '2'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '3'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('5', '2'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('4', '6'), ('6', '4'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '3'), ('1', '3'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('9', '4'), ('5', '2'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('4', '6'), ('6', '4'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '3'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('9', '4'), ('5', '2'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '3'), ('1', '3'), ('4', '9'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '8'), ('5', '2'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('4', '6'), ('6', '4'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('8', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '8'), ('5', '2'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '4'), ('8', '3'), ('4', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('9', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('8', '3'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '8'), ('5', '2'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('4', '6'), ('6', '4'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '4'), ('8', '3'), ('4', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('9', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('4', '6'), ('6', '4'), ('3', '10'), ('10', '2'), ('2', '10'), ('8', '3'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('9', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '4'), ('8', '3'), ('4', '7'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('5', '2'), ('3', '9'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('4', '6'), ('6', '4'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('9', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('5', '2'), ('3', '9'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '4'), ('9', '3'), ('4', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('5', '2'), ('3', '9'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('9', '3'), ('8', '4'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('5', '2'), ('3', '9'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('4', '6'), ('6', '4'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '4'), ('9', '3'), ('4', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('5', '2'), ('3', '9'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('4', '6'), ('6', '4'), ('3', '10'), ('10', '2'), ('2', '10'), ('9', '3'), ('8', '4'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('5', '2'), ('3', '9'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '5'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '4'), ('9', '3'), ('4', '7'), ('1', '3'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('5', '2'), ('4', '8'), ('1', '2'), ('1', '4'), ('2', '5'), ('3', '6'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '3'), ('1', '3'), ('8', '4'), ('6', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('9', '4'), ('5', '2'), ('1', '2'), ('1', '4'), ('2', '5'), ('3', '6'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '3'), ('1', '3'), ('4', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('9', '4'), ('5', '2'), ('4', '8'), ('1', '2'), ('1', '4'), ('2', '5'), ('3', '6'), ('10', '2'), ('2', '10'), ('7', '3'), ('1', '3'), ('4', '9'), ('6', '3'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '8'), ('5', '2'), ('1', '2'), ('1', '4'), ('2', '5'), ('3', '6'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '4'), ('8', '3'), ('4', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('9', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('1', '4'), ('2', '5'), ('3', '6'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('8', '3'), ('1', '3'), ('4', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('9', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('1', '4'), ('2', '5'), ('3', '6'), ('10', '2'), ('2', '10'), ('7', '4'), ('8', '3'), ('4', '7'), ('1', '3'), ('4', '9'), ('6', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('5', '2'), ('3', '9'), ('1', '2'), ('1', '4'), ('2', '5'), ('3', '6'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '4'), ('9', '3'), ('4', '7'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('5', '2'), ('3', '9'), ('4', '8'), ('1', '2'), ('1', '4'), ('2', '5'), ('3', '6'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('9', '3'), ('8', '4'), ('1', '3'), ('6', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('5', '2'), ('3', '9'), ('4', '8'), ('1', '2'), ('1', '4'), ('2', '5'), ('3', '6'), ('10', '2'), ('2', '10'), ('7', '4'), ('9', '3'), ('4', '7'), ('1', '3'), ('8', '4'), ('6', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('3', '8'), ('5', '2'), ('1', '2'), ('1', '4'), ('2', '5'), ('4', '6'), ('6', '4'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('8', '3'), ('7', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('9', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('1', '4'), ('2', '5'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('8', '3'), ('7', '3'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('9', '4'), ('3', '8'), ('5', '2'), ('1', '2'), ('1', '4'), ('2', '5'), ('4', '6'), ('6', '4'), ('10', '2'), ('2', '10'), ('8', '3'), ('7', '3'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('5', '2'), ('3', '9'), ('1', '2'), ('1', '4'), ('2', '5'), ('4', '6'), ('6', '4'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('9', '3'), ('7', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('5', '2'), ('3', '9'), ('4', '8'), ('1', '2'), ('1', '4'), ('2', '5'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('9', '3'), ('7', '3'), ('1', '3'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('5', '2'), ('3', '9'), ('4', '8'), ('1', '2'), ('1', '4'), ('2', '5'), ('4', '6'), ('6', '4'), ('10', '2'), ('2', '10'), ('9', '3'), ('7', '3'), ('1', '3'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '8'), ('3', '9'), ('5', '2'), ('1', '2'), ('1', '4'), ('2', '5'), ('4', '6'), ('6', '4'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('8', '3'), ('9', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '8'), ('3', '9'), ('5', '2'), ('1', '2'), ('1', '4'), ('2', '5'), ('9', '3'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '4'), ('8', '3'), ('4', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '8'), ('3', '9'), ('5', '2'), ('1', '2'), ('1', '4'), ('2', '5'), ('4', '6'), ('6', '4'), ('10', '2'), ('2', '10'), ('7', '4'), ('8', '3'), ('9', '3'), ('4', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('4', '1'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '4'), ('5', '3'), ('4', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('4', '1'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('5', '3'), ('8', '4'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('4', '1'), ('9', '4'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('5', '3'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('4', '1'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '4'), ('5', '3'), ('4', '7'), ('1', '3'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('4', '1'), ('9', '4'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '4'), ('5', '3'), ('4', '7'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('4', '1'), ('9', '4'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('5', '3'), ('8', '4'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('5', '4'), ('1', '2'), ('1', '4'), ('10', '3'), ('4', '5'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '3'), ('1', '3'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('9', '4'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '3'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('5', '4'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('4', '5'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '3'), ('1', '3'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('9', '4'), ('5', '4'), ('1', '2'), ('1', '4'), ('10', '3'), ('4', '5'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '3'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('9', '4'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '3'), ('1', '3'), ('4', '9'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '8'), ('5', '4'), ('1', '2'), ('1', '4'), ('10', '3'), ('4', '5'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('8', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '4'), ('8', '3'), ('4', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('9', '4'), ('3', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('8', '3'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '8'), ('5', '4'), ('1', '2'), ('1', '4'), ('10', '3'), ('4', '5'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '4'), ('8', '3'), ('4', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('9', '4'), ('3', '8'), ('5', '4'), ('1', '2'), ('1', '4'), ('10', '3'), ('4', '5'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('8', '3'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('9', '4'), ('3', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '4'), ('8', '3'), ('4', '7'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('5', '4'), ('3', '9'), ('1', '2'), ('1', '4'), ('10', '3'), ('4', '5'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('9', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '9'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '4'), ('9', '3'), ('4', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '9'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('9', '3'), ('8', '4'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('5', '4'), ('3', '9'), ('1', '2'), ('1', '4'), ('10', '3'), ('4', '5'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '4'), ('9', '3'), ('4', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('5', '4'), ('3', '9'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('4', '5'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('9', '3'), ('8', '4'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '9'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('2', '6'), ('6', '2'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '4'), ('9', '3'), ('4', '7'), ('1', '3'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('4', '1'), ('4', '8'), ('1', '2'), ('1', '4'), ('2', '6'), ('6', '2'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('5', '3'), ('7', '3'), ('1', '3'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('4', '1'), ('9', '4'), ('1', '2'), ('1', '4'), ('2', '6'), ('6', '2'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('5', '3'), ('7', '3'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('3', '7'), ('4', '1'), ('9', '4'), ('4', '8'), ('1', '2'), ('1', '4'), ('2', '6'), ('6', '2'), ('10', '2'), ('2', '10'), ('5', '3'), ('7', '3'), ('1', '3'), ('4', '9'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('4', '1'), ('3', '8'), ('1', '2'), ('1', '4'), ('2', '6'), ('6', '2'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '4'), ('8', '3'), ('5', '3'), ('4', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('4', '1'), ('9', '4'), ('3', '8'), ('1', '2'), ('1', '4'), ('2', '6'), ('6', '2'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('8', '3'), ('5', '3'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('4', '1'), ('9', '4'), ('3', '8'), ('1', '2'), ('1', '4'), ('2', '6'), ('6', '2'), ('10', '2'), ('2', '10'), ('7', '4'), ('8', '3'), ('5', '3'), ('4', '7'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('4', '1'), ('3', '9'), ('1', '2'), ('1', '4'), ('2', '6'), ('6', '2'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '4'), ('9', '3'), ('5', '3'), ('4', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('4', '1'), ('3', '9'), ('4', '8'), ('1', '2'), ('1', '4'), ('2', '6'), ('6', '2'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('9', '3'), ('5', '3'), ('8', '4'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('4', '1'), ('3', '9'), ('4', '8'), ('1', '2'), ('1', '4'), ('2', '6'), ('6', '2'), ('10', '2'), ('2', '10'), ('7', '4'), ('9', '3'), ('5', '3'), ('4', '7'), ('1', '3'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('3', '8'), ('5', '4'), ('1', '2'), ('1', '4'), ('4', '5'), ('2', '6'), ('6', '2'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('8', '3'), ('7', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('9', '4'), ('3', '8'), ('1', '2'), ('1', '4'), ('2', '6'), ('6', '2'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('8', '3'), ('7', '3'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('9', '4'), ('3', '8'), ('5', '4'), ('1', '2'), ('1', '4'), ('4', '5'), ('2', '6'), ('6', '2'), ('10', '2'), ('2', '10'), ('8', '3'), ('7', '3'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('5', '4'), ('3', '9'), ('1', '2'), ('1', '4'), ('4', '5'), ('2', '6'), ('6', '2'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('9', '3'), ('7', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('3', '9'), ('4', '8'), ('1', '2'), ('1', '4'), ('2', '6'), ('6', '2'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('9', '3'), ('7', '3'), ('1', '3'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '7'), ('5', '4'), ('3', '9'), ('4', '8'), ('1', '2'), ('1', '4'), ('4', '5'), ('2', '6'), ('6', '2'), ('10', '2'), ('2', '10'), ('9', '3'), ('7', '3'), ('1', '3'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '8'), ('3', '9'), ('5', '4'), ('1', '2'), ('1', '4'), ('4', '5'), ('2', '6'), ('6', '2'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('8', '3'), ('9', '3'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '8'), ('3', '9'), ('1', '2'), ('1', '4'), ('2', '6'), ('6', '2'), ('10', '2'), ('9', '3'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '4'), ('8', '3'), ('4', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('4', '1'), ('3', '1'), ('3', '8'), ('3', '9'), ('5', '4'), ('1', '2'), ('1', '4'), ('4', '5'), ('2', '6'), ('6', '2'), ('10', '2'), ('2', '10'), ('7', '4'), ('8', '3'), ('9', '3'), ('4', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('4', '1'), ('1', '2'), ('1', '4'), ('10', '3'), ('4', '6'), ('6', '4'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('4', '1'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('4', '1'), ('9', '4'), ('1', '2'), ('1', '4'), ('10', '3'), ('3', '10'), ('10', '2'), ('2', '10'), ('4', '10'), ('10', '4'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('4', '1'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('4', '6'), ('6', '4'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('4', '1'), ('9', '4'), ('1', '2'), ('1', '4'), ('10', '3'), ('4', '6'), ('6', '4'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3'), ('4', '9')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}, {"DOMAIN": {'5', '3', '6', '7', '4', '2', '9', '8', '1', '10'}, "City": {'1'}, "Town": {'3', '4', '2'}, "Village": {'5', '6', '7', '9', '8', '10'}, "Road": {('2', '1'), ('3', '5'), ('3', '1'), ('4', '1'), ('9', '4'), ('4', '8'), ('1', '2'), ('1', '4'), ('10', '3'), ('3', '10'), ('10', '2'), ('2', '10'), ('7', '2'), ('5', '3'), ('2', '7'), ('1', '3'), ('4', '9'), ('8', '4')}, ">": {('1', '5'), ('3', '8'), ('3', '9'), ('1', '4'), ('2', '5'), ('2', '6'), ('3', '10'), ('2', '7'), ('1', '7'), ('4', '8'), ('1', '6'), ('4', '10'), ('1', '3'), ('2', '9'), ('1', '8'), ('1', '2'), ('1', '9'), ('4', '5'), ('4', '6'), ('4', '7'), ('3', '5'), ('3', '7'), ('2', '8'), ('3', '6'), ('2', '10'), ('4', '9'), ('1', '10')}}]
# Best # time O(log(n)) # space O(1) def binarySearch(array, target): low = 0 high = len(array)-1 while low<=high: mid = (low+high)//2 if array[mid] == target: return mid if target > array[mid]: low = mid + 1 else: high = mid - 1 return -1 # Good # time O(log(n)) - n is len(array) # space O(log(n)) - here n is max call stack size def binarySearchHelper(array, target, low, high): mid = (low+high)//2 # Base cases if array[mid] == target: return mid if low>high: return -1 # Recursive case if target>array[mid]: low = mid + 1 else: high = mid - 1 return binarySearchHelper(array, target, low, high) def binarySearch(array, target): return binarySearchHelper(array, target, 0, len(array)-1)
l = [1,2,3,4] def printCombo(l): for j in range(1, len(l)+1): for i in range(len(l)-1): l[i],l[i+1]=l[i+1],l[i] print(l) for i in range(len(l)): printCombo(l[i:])
def read_u8(f): """Reads an unsigned byte from the file object f. """ temp = f.read(1) if not temp: raise EOFError("EOF") return int.from_bytes(temp, byteorder='little', signed=False) def read_u16(f): """Reads a two byte unsigned value from the file object f. """ temp = f.read(2) if not temp: raise EOFError("EOF") return int.from_bytes(temp, byteorder='little', signed=False) def read_u32(f): """Reads a four byte unsigned value from the file object f. """ temp = f.read(4) if not temp: raise EOFError("EOF") return int.from_bytes(temp, byteorder='little', signed=False) def write_u8(f, v): """Writes the value v as an unsigned byte to the file object f. """ f.write(v.to_bytes(1, byteorder='little', signed=False)) def write_u16(f, v): """Writes the value v as a two byte unsigned value to the file object f. """ f.write(v.to_bytes(2, byteorder='little', signed=False)) def write_u32(f, v): """Writes the value v as a four byte unsigned value to the file object f. """ f.write(v.to_bytes(4, byteorder='little', signed=False)) def print_bytes(data): """Prints the bytes in data formatted to stdout. """ # Generator that returns l in chunks of size n def chunks(l, n): for i in range(0, len(l), n): yield l[i:i+n] for chunk in chunks(data, 16): # Lint to be printed line = "" # Add hex str_hex = [ "{:02X}".format(byte) for byte in chunk ] line += " ".join(str_hex) if len(str_hex) < 16: # Pad if less than 16 bytes line += " " * (16 - len(str_hex)) # Add ascii line += " |" str_ascii = ["{:c}".format(byte) if 31 < byte < 127 else "." for byte in chunk] line += "".join(str_ascii) if len(str_ascii) < 16: # Pad if less than 16 bytes line += " " * (16 - len(str_ascii)) line += "|" # Print line print(line)
# 多继承引入 class Father(object): def eat(self): print("文雅的吃饭") class Mom(object): def run(self): print("小碎步") class Son(Father, Mom): pass def main(): son = Son() son.eat() son.run() if __name__ == '__main__': main()
""" Author: David Oniani Purpose: Homework (problem 8) NOTE: I have not included the algorithm to check that 6210001000 is indeed the only number that meets the conditions. It needs a bit more explanation for optimizations so I decided to take it out. """ def check(ten_digit_number): """ Function to check whether the number satisfied the conditions stated in the problem or not. """ for idx in range(len(list(str(ten_digit_number)))): digit = list(str(ten_digit_number))[idx] if int(digit) != str(ten_digit_number).count(str(idx)): return False return True def main(): """ Verify that 6210001000 meets the conditions. """ print(check(6210001000)) # True! Thus, this number is indeed the answer if __name__ == "__main__": main()
s = """75 95 64 17 47 82 18 35 87 10 20 04 82 47 65 19 01 23 75 03 34 88 02 77 73 07 63 67 99 65 04 28 06 16 70 92 41 41 26 56 83 40 80 70 33 41 48 72 33 47 32 37 16 94 29 53 71 44 65 25 43 91 52 97 51 14 70 11 33 28 77 73 17 78 39 68 17 57 91 71 52 38 17 14 91 43 58 50 27 29 48 63 66 04 68 89 53 67 30 73 16 69 87 40 31 04 62 98 27 23 09 70 98 73 93 38 53 60 04 23""" max_level = 15 t = [] for l in s.split("\n"): t.append([int(x) for x in l.split()]) max_sum = 0 def search(node_sum, level, i_child): global max_sum if level == max_level-1: if node_sum > max_sum: max_sum = node_sum return search(node_sum + t[level+1][i_child], level+1, i_child) search(node_sum + t[level+1][i_child+1], level+1, i_child+1) search(75, 0, 0) print(max_sum)
f=open('This.txt','r') # this is Default read mode of file f=open('This.txt') #open file # data=f.read() data=f.read(5) #Starting 5 characters from file print(data) f.close()
# https://github.com/arrow-py/arrow """ >>> import arrow >>> arrow.get('2013-05-11T21:23:58.970460+07:00') <Arrow [2013-05-11T21:23:58.970460+07:00]> >>> utc = arrow.utcnow() >>> utc <Arrow [2013-05-11T21:23:58.970460+00:00]> >>> utc = utc.shift(hours=-1) >>> utc <Arrow [2013-05-11T20:23:58.970460+00:00]> >>> local = utc.to('US/Pacific') >>> local <Arrow [2013-05-11T13:23:58.970460-07:00]> >>> local.timestamp 1368303838 >>> local.format() '2013-05-11 13:23:58 -07:00' >>> local.format('YYYY-MM-DD HH:mm:ss ZZ') '2013-05-11 13:23:58 -07:00' >>> local.humanize() 'an hour ago' >>> local.humanize(locale='ko_kr') '1시간 전' >>> arrow.utcnow() <Arrow [2013-05-07T04:20:39.369271+00:00]> >>> arrow.now() <Arrow [2013-05-06T21:20:40.841085-07:00]> >>> arrow.now('US/Pacific') <Arrow [2013-05-06T21:20:44.761511-07:00]> >>> arrow.get(1367900664) <Arrow [2013-05-07T04:24:24+00:00]> >>> arrow.get(1367900664.152325) <Arrow [2013-05-07T04:24:24.152325+00:00]> >>> arrow.get(datetime.utcnow()) <Arrow [2013-05-07T04:24:24.152325+00:00]> >>> arrow.get(datetime(2013, 5, 5), 'US/Pacific') <Arrow [2013-05-05T00:00:00-07:00]> >>> from dateutil import tz >>> arrow.get(datetime(2013, 5, 5), tz.gettz('US/Pacific')) <Arrow [2013-05-05T00:00:00-07:00]> >>> arrow.get(datetime.now(tz.gettz('US/Pacific'))) <Arrow [2013-05-06T21:24:49.552236-07:00]> >>> arrow.get('2013-05-05 12:30:45', 'YYYY-MM-DD HH:mm:ss') <Arrow [2013-05-05T12:30:45+00:00]> >>> arrow.get('June was born in May 1980', 'MMMM YYYY') <Arrow [1980-05-01T00:00:00+00:00]> >>> arrow.get(2013, 5, 5) <Arrow [2013-05-05T00:00:00+00:00]> >>> past = arrow.utcnow().shift(hours=-1) >>> past.humanize() 'an hour ago' # 只需要时间间隔 >>> present = arrow.utcnow() >>> future = present.shift(hours=2) >>> future.humanize(present) 'in 2 hours' >>> future.humanize(present, only_distance=True) '2 hours' # 不同的时间粒度 >>> present = arrow.utcnow() >>> future = present.shift(minutes=66) >>> future.humanize(present, granularity="minute") 'in 66 minutes' >>> future.humanize(present, granularity=["hour", "minute"]) 'in an hour and 6 minutes' >>> present.humanize(future, granularity=["hour", "minute"]) 'an hour and 6 minutes ago' >>> future.humanize(present, only_distance=True, granularity=["hour", "minute"]) 'an hour and 6 minutes' >>> arrow.utcnow().span('hour') (<Arrow [2013-05-07T05:00:00+00:00]>, <Arrow [2013-05-07T05:59:59.999999+00:00]>) # 向下取整 >>> arrow.utcnow().floor('hour') <Arrow [2013-05-07T05:00:00+00:00]> # 向上取整 >>> arrow.utcnow().ceil('hour') <Arrow [2013-05-07T05:59:59.999999+00:00]> # 时间范围序列 >>> start = datetime(2013, 5, 5, 12, 30) >>> end = datetime(2013, 5, 5, 17, 15) >>> for r in arrow.Arrow.span_range('hour', start, end): ... print r ... (<Arrow [2013-05-05T12:00:00+00:00]>, <Arrow [2013-05-05T12:59:59.999999+00:00]>) (<Arrow [2013-05-05T13:00:00+00:00]>, <Arrow [2013-05-05T13:59:59.999999+00:00]>) (<Arrow [2013-05-05T14:00:00+00:00]>, <Arrow [2013-05-05T14:59:59.999999+00:00]>) (<Arrow [2013-05-05T15:00:00+00:00]>, <Arrow [2013-05-05T15:59:59.999999+00:00]>) (<Arrow [2013-05-05T16:00:00+00:00]>, <Arrow [2013-05-05T16:59:59.999999+00:00]>) """
# Create cache for known results factorial_memo = {} def factorial(k): if k < 2: return 1 if not k in factorial_memo: factorial_memo[k] = k * factorial(k-1) return factorial_memo[k] print(factorial_memo) print(factorial(4)) print(factorial_memo) print(factorial(5)) print(factorial_memo)
#自行替换 BOTTOKEN="114514191:AAF1z0dfbE3QEx6lLq2f1UjI1145141919810" BOTNAME="ranwengamebot" #PROXY="socks5h://localhost:1080" PROXY="" DEBUG=True PY=True#py钱
# author: Gonzalo Salazar # assigment: Homework #2 # description: contains three functions # First function: # Input: temperature value in degrees Centigrade # Output: temperature value in degrees Fahrenheit # Second function: # Input: temperature value in degrees Fahrenheit # Output: temperature value in degrees Centigrade # Third function: # Input: temperature value in degrees Fahrenheit and wind speed in mph # Output: wind chill factor for those parameters #Converts a Centigrade temperature to a Fahrenheit temperature def centigrade_to_fahrenheit(T_c): T_f = 9/5 * T_c + 32 return T_f #Converts a Fahrenheit temperature to a Centigrade temperature\ def fahrenheit_to_centigrade(T_f): T_c = 5/9 * (T_f - 32) return T_c #Calculates a wind chill factor (the "old" one) def wind_chill_factor(TEMPERATURE,WIND): wc = 0.0817 * (3.71 * WIND**0.5 + 5.81 - 0.25 * WIND) * (TEMPERATURE - 91.4) + 91.4 return wc
# -*- coding: utf-8 -*- """ Mobile Forms - Controllers """ module = request.controller # ----------------------------------------------------------------------------- def forms(): """ Controller to download a list of available forms """ if request.env.request_method == "GET": if auth.permission.format == "json": if settings.get_mobile_masterkey_filter(): # Filter form list by master key masterkey_id = 0 # filtering is mandatory # Expect the client to send a master key UUID in GET vars masterkey_uid = request.get_vars.get("mkuid") if masterkey_uid: table = s3db.auth_masterkey query = (table.uuid == masterkey_uid) masterkey = db(query).select(table.id, limitby = (0, 1), ).first() if masterkey: masterkey_id = masterkey.id # Alternatively, allow the client to authenticate with # the expected master key elif auth.s3_logged_in() and auth.user and auth.user.masterkey_id: masterkey_id = auth.user.masterkey_id else: # Do not filter the form list by master key masterkey_id = None response.headers["Content-Type"] = "application/json" return s3base.S3MobileFormList(masterkey_id=masterkey_id).json() else: error(415, "Invalid request format") else: error(405, "Unsupported request method") # ----------------------------------------------------------------------------- def error(status, message): """ Raise HTTP error status in non-interactive controllers @param status: the HTTP status code @param message: the error message """ headers = {"Content-Type":"text/plain"} current.log.error(message) raise HTTP(status, body=message, web2py_error=message, **headers) # END =========================================================================
# https://leetcode.com/problems/maximum-product-subarray/ class Solution: def maxProduct(self, nums: List[int]) -> int: res = nums[0] maxNum, minNum = 1, 1 for num in nums: tempMax = num * maxNum tempMin = num * minNum maxNum = max(num, tempMax, tempMin) minNum = min(num, tempMax, tempMin) res = max(res, maxNum) return res
# Program to reverse an array def reverseArray(arr : list) : for i in range(len(arr) // 2) : arr[i], arr[len(arr)-1-i] = arr[len(arr)-1-i], arr[i] if __name__ == "__main__": arr = [1,2,3,4,5,6,7] reverseArray(arr) print(arr)
# # PySNMP MIB module Juniper-MPLS-CONF (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/Juniper-MPLS-CONF # Produced by pysmi-0.3.4 at Mon Apr 29 19:52:41 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") SingleValueConstraint, ConstraintsIntersection, ConstraintsUnion, ValueRangeConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsIntersection", "ConstraintsUnion", "ValueRangeConstraint", "ValueSizeConstraint") juniAgents, = mibBuilder.importSymbols("Juniper-Agents", "juniAgents") ModuleCompliance, NotificationGroup, AgentCapabilities = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup", "AgentCapabilities") TimeTicks, ObjectIdentity, Unsigned32, MibScalar, MibTable, MibTableRow, MibTableColumn, IpAddress, Integer32, Gauge32, ModuleIdentity, NotificationType, MibIdentifier, iso, Bits, Counter64, Counter32 = mibBuilder.importSymbols("SNMPv2-SMI", "TimeTicks", "ObjectIdentity", "Unsigned32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "IpAddress", "Integer32", "Gauge32", "ModuleIdentity", "NotificationType", "MibIdentifier", "iso", "Bits", "Counter64", "Counter32") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") juniMplsAgent = ModuleIdentity((1, 3, 6, 1, 4, 1, 4874, 5, 2, 51)) juniMplsAgent.setRevisions(('2004-06-11 21:36', '2003-01-24 18:34', '2002-11-04 15:47', '2001-12-05 21:41',)) if mibBuilder.loadTexts: juniMplsAgent.setLastUpdated('200406231509Z') if mibBuilder.loadTexts: juniMplsAgent.setOrganization('Juniper Networks, Inc.') juniMplsAgentV1 = AgentCapabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 51, 1)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juniMplsAgentV1 = juniMplsAgentV1.setProductRelease('Version 1 of the MultiProtocol Label Switching (MPLS) component of the\n JUNOSe SNMP agent. This version of the MPLS component was supported in\n JUNOSe 4.0 system releases.') if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juniMplsAgentV1 = juniMplsAgentV1.setStatus('obsolete') juniMplsAgentV2 = AgentCapabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 51, 2)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juniMplsAgentV2 = juniMplsAgentV2.setProductRelease('Version 2 of the MultiProtocol Label Switching (MPLS) component of the\n JUNOSe SNMP agent. This version of the MPLS component was supported in\n JUNOSe 4.1 and subsequent 4.x system releases.') if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juniMplsAgentV2 = juniMplsAgentV2.setStatus('obsolete') juniMplsAgentV3 = AgentCapabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 51, 3)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juniMplsAgentV3 = juniMplsAgentV3.setProductRelease('Version 3 of the MultiProtocol Label Switching (MPLS) component of the\n JUNOSe SNMP agent. This version of the MPLS component is supported in\n JUNOSe 5.0 and subsequent system releases.') if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juniMplsAgentV3 = juniMplsAgentV3.setStatus('obsolete') juniMplsAgentV4 = AgentCapabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 51, 4)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juniMplsAgentV4 = juniMplsAgentV4.setProductRelease('Version 4 of the MultiProtocol Label Switching (MPLS) component of the\n JUNOSe SNMP agent. This version of the MPLS component is supported in\n JUNOSe 6.0 and subsequent system releases.') if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juniMplsAgentV4 = juniMplsAgentV4.setStatus('obsolete') juniMplsAgentV5 = AgentCapabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 51, 5)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juniMplsAgentV5 = juniMplsAgentV5.setProductRelease('Version 5 of the MultiProtocol Label Switching (MPLS) component of the\n JUNOSe SNMP agent. This version of the MPLS component is supported in\n JUNOSe 6.1 and subsequent system releases.') if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juniMplsAgentV5 = juniMplsAgentV5.setStatus('obsolete') juniMplsAgentV6 = AgentCapabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 51, 6)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juniMplsAgentV6 = juniMplsAgentV6.setProductRelease('Version 6 of the MultiProtocol Label Switching (MPLS) component of the\n JUNOSe SNMP agent. This version of the MPLS component is supported in\n JUNOSe 7.1 and subsequent system releases.') if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): juniMplsAgentV6 = juniMplsAgentV6.setStatus('current') mibBuilder.exportSymbols("Juniper-MPLS-CONF", juniMplsAgentV1=juniMplsAgentV1, juniMplsAgentV5=juniMplsAgentV5, juniMplsAgentV2=juniMplsAgentV2, juniMplsAgent=juniMplsAgent, juniMplsAgentV4=juniMplsAgentV4, juniMplsAgentV3=juniMplsAgentV3, juniMplsAgentV6=juniMplsAgentV6, PYSNMP_MODULE_ID=juniMplsAgent)
class Solution: def searchInsert(self, nums: List[int], target: int) -> int: s = 0 e = len(nums) - 1 while(s <= e): m = (s + e) // 2 if (nums[m] < target): s = m + 1 elif (nums[m] > target): e = m - 1 else: return m return s
''' Conestoga Computer Science Club Programming Challenges Instructions: Finish each method and run the test.py file to test the methods. ''' ''' Karaca Encrypt -------------- Make a function that encrypts a given input with these steps: Input: "apple" Step 1: Reverse the input: "elppa" Step 2: Replace all vowels using the following chart: a => 0 e => 1 i => 2 o => 3 u => 4 # "1lpp0" Step 3: Add "aca" to the end of the word: "1lpp0aca" Output: "1lpp0aca" Examples: encrypt("banana") ➞ "0n0n0baca" encrypt("karaca") ➞ "0c0r0kaca" encrypt("burak") ➞ "k0r3baca" encrypt("alpaca") ➞ "0c0pl0aca" Notes: All inputs are strings, no uppercases and all output must be strings. ''' def karacaEncrypt(word): # Code here map = {"a": "0", "e": "1", "i": "2", "o": "3", "u": "4"} backwords = word[:-1] ''' Convert to Hex Create a function that takes a strings characters as ASCII and returns each characters hexadecimal value as a string. Examples: convert_to_hex("hello world") ➞ "68 65 6c 6c 6f 20 77 6f 72 6c 64" convert_to_hex("Big Boi") ➞ "42 69 67 20 42 6f 69" convert_to_hex("Marty Poppinson") ➞ "4d 61 72 74 79 20 50 6f 70 70 69 6e 73 6f 6e" Notes: Each byte must be seperated by a space. All alpha hex characters must be lowercase. ''' def convertToHex(string): # Code here pass ''' Moran Numbers A Harshad number is a number which is divisible by the sum of its digits. For example, 132 is divisible by 6 (1+3+2). A subset of the Harshad numbers are the Moran numbers. Moran numbers yield a prime when divided by the sum of their digits. For example, 133 divided by 7 (1+3+3) yields 19, a prime. Create a function that takes a number and returns "M" if the number is a Moran number, "H" if it is a (non-Moran) Harshad number, or "Neither". Examples moran(132) ➞ "H" moran(133) ➞ "M" moran(134) ➞ "Neither" Notes: You may need to make a method to determine whether a number is prime. ''' def moran(num): # Code here pass
#%% # dutch_w = 0.664 # turkish_w = 0.075 # moroccan_w = 0.13 # ghanaian_w = 0.021 # suriname_w = 0.11 # sample_n = 4000 # dutch_pop = sample_n * dutch_w # suriname_pop = sample_n * suriname_w # turkish_pop = sample_n * turkish_w # moroccan_pop = sample_n * moroccan_w # ghanaian_pop = sample_n * ghanaian_w # ethnicity_weights = [ # dutch_w, # suriname_w, # moroccan_w, # turkish_w, # ghanaian_w, # ] # pops = [ # dutch_pop, # suriname_pop, # turkish_pop, # moroccan_pop, # ghanaian_pop # ] DEBUG = True SAVETYPE = "group" root = "C:/Users/Admin/Code/status/" results_dir = "C:/Users/Admin/Code/status/results/" param_dict = { # "population_size": [], # "chronic_threshold": [], "similarity_min": [], "interactions": [], "ses_noise": [], # "repeats": [], "vul_param": [], "psr_param": [], "coping_noise": [], "recover_param": [], "prestige_beta": [], "prestige_param": [], "stressor_param": [], } DAY = 1 WEEK = 7*DAY CHRONIC_STRESS_PERIOD = 10 MAX_STATUS_DIFFERENCE = 14 status_dict_linear = { "occ": { 1: 0, 2: 1, 3: 1, 4: 2, 5: 3, 6: 4, 7: 5, 8: 6 }, "edu": { 1: 0, 2: 2, 3: 4, 4: 6 }, "inc": { 1: -1, 2: -0.5, 3: 0.5, 4: 1 } } status_dict = { "occ": { 1: 0, 2: 1, 3: 1, 4: 2, 5: 2, 6: 3, 7: 4, 8: 5 }, "edu": { 1: 0, 2: 1, 3: 2, 4: 4 }, "inc": { 1: 0, 2: 0, 3: 1, 4: 1 } } base_columns = ["ID", "occupation","H1_InkHhMoeite","H1_Opleid","H1_Mastery_Sumscore","H1_SSQSa", "status_l", "psr", "H1_etniciteit", "prestige"] rename_columns = dict({ "ID": "id", "occupation":"occ", "H1_InkHhMoeite":"inc", "H1_Opleid":"edu", "H1_Mastery_Sumscore":"mastery", "H1_SSQSa":"support", "status_l" :"status", "H1_etniciteit": "eth", "H1_LO_BMI": "bmi", "H1_Roken": "smoke" }) columns_normalized = ["occ","edu","mastery","support"] # %%
entries = [ { 'env-title': 'atari-alien', 'env-variant': 'Human start', 'score': 570.20, }, { 'env-title': 'atari-amidar', 'env-variant': 'Human start', 'score': 133.40, }, { 'env-title': 'atari-assault', 'env-variant': 'Human start', 'score': 3332.30, }, { 'env-title': 'atari-asterix', 'env-variant': 'Human start', 'score': 124.50, }, { 'env-title': 'atari-asteroids', 'env-variant': 'Human start', 'score': 697.10, }, { 'env-title': 'atari-atlantis', 'env-variant': 'Human start', 'score': 76108.00, }, { 'env-title': 'atari-bank-heist', 'env-variant': 'Human start', 'score': 176.30, }, { 'env-title': 'atari-battle-zone', 'env-variant': 'Human start', 'score': 17560.00, }, { 'env-title': 'atari-beam-rider', 'env-variant': 'Human start', 'score': 8672.40, }, { 'env-title': 'atari-bowling', 'env-variant': 'Human start', 'score': 41.20, }, { 'env-title': 'atari-boxing', 'env-variant': 'Human start', 'score': 25.80, }, { 'env-title': 'atari-breakout', 'env-variant': 'Human start', 'score': 303.90, }, { 'env-title': 'atari-centipede', 'env-variant': 'Human start', 'score': 3773.10, }, { 'env-title': 'atari-chopper-command', 'env-variant': 'Human start', 'score': 3046.00, }, { 'env-title': 'atari-crazy-climber', 'env-variant': 'Human start', 'score': 50992.00, }, { 'env-title': 'atari-demon-attack', 'env-variant': 'Human start', 'score': 12835.20, }, { 'env-title': 'atari-double-dunk', 'env-variant': 'Human start', 'score': -21.60, }, { 'env-title': 'atari-enduro', 'env-variant': 'Human start', 'score': 475.60, }, { 'env-title': 'atari-fishing-derby', 'env-variant': 'Human start', 'score': -2.30, }, { 'env-title': 'atari-freeway', 'env-variant': 'Human start', 'score': 25.80, }, { 'env-title': 'atari-frostbite', 'env-variant': 'Human start', 'score': 157.40, }, { 'env-title': 'atari-gopher', 'env-variant': 'Human start', 'score': 2731.80, }, { 'env-title': 'atari-gravitar', 'env-variant': 'Human start', 'score': 216.50, }, { 'env-title': 'atari-hero', 'env-variant': 'Human start', 'score': 12952.50, }, { 'env-title': 'atari-ice-hockey', 'env-variant': 'Human start', 'score': -3.80, }, { 'env-title': 'atari-jamesbond', 'env-variant': 'Human start', 'score': 348.50, }, { 'env-title': 'atari-kangaroo', 'env-variant': 'Human start', 'score': 2696.00, }, { 'env-title': 'atari-krull', 'env-variant': 'Human start', 'score': 3864.00, }, { 'env-title': 'atari-kung-fu-master', 'env-variant': 'Human start', 'score': 11875.00, }, { 'env-title': 'atari-montezuma-revenge', 'env-variant': 'Human start', 'score': 50.00, }, { 'env-title': 'atari-ms-pacman', 'env-variant': 'Human start', 'score': 763.50, }, { 'env-title': 'atari-name-this-game', 'env-variant': 'Human start', 'score': 5439.90, }, { 'env-title': 'atari-pong', 'env-variant': 'Human start', 'score': 16.20, }, { 'env-title': 'atari-private-eye', 'env-variant': 'Human start', 'score': 298.20, }, { 'env-title': 'atari-qbert', 'env-variant': 'Human start', 'score': 4589.80, }, { 'env-title': 'atari-riverraid', 'env-variant': 'Human start', 'score': 4065.30, }, { 'env-title': 'atari-road-runner', 'env-variant': 'Human start', 'score': 9264.00, }, { 'env-title': 'atari-robotank', 'env-variant': 'Human start', 'score': 58.50, }, { 'env-title': 'atari-seaquest', 'env-variant': 'Human start', 'score': 2793.90, }, { 'env-title': 'atari-space-invaders', 'env-variant': 'Human start', 'score': 1449.70, }, { 'env-title': 'atari-star-gunner', 'env-variant': 'Human start', 'score': 34081.00, }, { 'env-title': 'atari-tennis', 'env-variant': 'Human start', 'score': -2.30, }, { 'env-title': 'atari-time-pilot', 'env-variant': 'Human start', 'score': 5640.00, }, { 'env-title': 'atari-tutankham', 'env-variant': 'Human start', 'score': 32.40, }, { 'env-title': 'atari-up-n-down', 'env-variant': 'Human start', 'score': 3311.30, }, { 'env-title': 'atari-venture', 'env-variant': 'Human start', 'score': 54.00, }, { 'env-title': 'atari-video-pinball', 'env-variant': 'Human start', 'score': 20228.10, }, { 'env-title': 'atari-wizard-of-wor', 'env-variant': 'Human start', 'score': 246.00, }, { 'env-title': 'atari-zaxxon', 'env-variant': 'Human start', 'score': 831.00, }, ]
''' Cho một list chứa nhiều phần tử mang nhiều kiểu dữ liệu khác nhau, trong đó có một phần tử kiểu tuple. Viết chương trình đếm số lượng các phần tử trong một list đó, đến khi gặp một phần tử kiểu tuple. ''' list = [1, 2, 'Vietnam', (99, 'hello', 2 + 3j)] count = 0 print(type(list[3])) for i in range(len(list)): if type(list[i]) is not tuple: count += 1 print(f'Số lượng phần tử trong list đến khi gặp phần tử kiểu tuple là: {count}')
SECRET_KEY = 'secret' ROOT_URLCONF = 'jsonrpc.tests.test_backend_django.urls' ALLOWED_HOSTS = ['testserver'] DATABASE_ENGINE = 'django.db.backends.sqlite3' DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': ':memory:', } } JSONRPC_MAP_VIEW_ENABLED = True
packages = { 'Greenspace': { 'description': '', 'foundations' : [ 'neighborhood_development_18_027', 'neighborhood_development_18_021' ], 'default_foundation' : 'neighborhood_development_18_027', 'slides' : [ 'neighborhood_development_18_003', 'neighborhood_development_18_004', 'neighborhood_development_18_005' ], 'default_slide' : [ 'neighborhood_development_18_003', 'neighborhood_development_18_004' ], }, 'Food Access': { 'description': '', 'foundations' : [ 'Percent Renter Occupied', 'poverty rate' ], 'default_foundation' : 'poverty rate', 'slides' : [ 'neighborhood_development_18_007', 'neighborhood_development_18_008', 'neighborhood_development_18_005', 'neighborhood_development_18_012' ], 'default_slide' : 'neighborhood_development_18_008' }, 'Sweeps': { 'description': '', 'foundations' : [ 'neighborhood_development_18_020', 'neighborhood_development_18_021', 'neighborhood_development_18_027', 'neighborhood_development_18_034', 'neighborhood_development_18_028', 'neighborhood_development_18_030' ], 'default_foundation' : 'neighborhood_development_18_020', 'slides' : [ 'neighborhood_development_18_010', 'neighborhood_development_18_011', 'neighborhood_development_18_009', 'neighborhood_development_18_003', 'neighborhood_development_18_004', ], 'default_slide' : [ 'neighborhood_development_18_010', ], }, 'Bikes': { 'description': '', 'foundations' : [ 'neighborhood_development_18_021' ], 'default_foundation' : 'neighborhood_development_18_021', 'slides' : [ 'neighborhood_development_18_001', 'neighborhood_development_18_002', 'neighborhood_development_18_006', 'neighborhood_development_18_014', 'neighborhood_development_18_013' ], 'default_slide' : [ 'neighborhood_development_18_001', 'neighborhood_development_18_002' ], }, 'Disaster Resilience': { 'description': '', 'foundations' : [ 'disaster_resilience_18_002', 'disaster_resilience_18_003', 'disaster_resilience_18_004', 'disaster_resilience_18_005', ], 'default_foundation' : 'disaster_resilience_18_002', 'slides' : [ 'disaster_resilience_18_001', ], 'default_slide' : [ 'disaster_resilience_18_001', ] }, 'Evictions': { 'description': '', 'foundations' : [ 'neighborhood_development_18_022', 'neighborhood_development_18_023', 'neighborhood_development_18_024', 'neighborhood_development_18_025', 'neighborhood_development_18_026', 'neighborhood_development_18_032', ], 'default_foundation' : 'neighborhood_development_18_024', 'slides' : [ 'neighborhood_development_18_012', 'neighborhood_development_18_007', 'neighborhood_development_18_009', 'housing_affordability_18_001' ], 'default_slide' : ['neighborhood_development_18_009',] }, 'Voters': { 'description': '', 'foundations' : [ 'neighborhood_development_18_015', 'neighborhood_development_18_016', 'neighborhood_development_18_017', 'neighborhood_development_18_018', 'neighborhood_development_18_019' ], 'default_foundation' : 'voters18', 'slides' : [ 'neighborhood_development_18_007', 'neighborhood_development_18_004', 'neighborhood_development_18_006', 'neighborhood_development_18_002', ], 'default_slide' : [] }, 'Transportation': { 'description': '', 'foundations' : [ 'transportation_systems_18_005', ], 'default_foundation' : 'transportation_systems_18_005', 'slides' : [ 'transportation_systems_18_001', 'transportation_systems_18_003', 'transportation_systems_18_004', ], 'default_slide' : [ 'transportation_systems_18_001', 'transportation_systems_18_003', 'transportation_systems_18_004', ], } }
# Solution 2 # def fib(num, l=[]): # a=b=1 # while(True): # a+=b # if a % 2 == 0: # l.append(a) # a,b=b,a # if a >= num: # break # return l # print(sum(fib(4000000))) # Solution 3 # import math # def factors(num): # factors_list = [] # for value in range(2, math.ceil(math.sqrt(num))): # if not num % value: # factors_list.append(value) # factors_list.append(num / value) # return factors_list # def prime_factors(): # facts = factors(600851475143) # primes = [] # for num in facts: # for val in range(2, math.ceil(math.sqrt(num))): # if not num % val: # break # else: # primes.append(num) # return primes # print(prime_factors()) # Solution 4 palindrome = [] for val in range(2, 1000)[::-1]: for value in range(2, val)[::-1]: str_int = str(val * value) if list(str_int) == list(str_int)[::-1]: palindrome.append((val * value)) print (max(palindrome))
l = [4, 3, 5, 4, -3,10,2,33,98,4] print(l) min = l[0] max = l[0] n = len(l) for i in range(1, n): curr = l[i] if curr < min: min=curr if curr>max: max=curr print("Min=",min,"Max=",max)
class MinMaxHeap: # Checks if a binary tree is a min/max heap. @staticmethod def is_valid(values, index, level, min_value, max_value): if index >= len(values): return True if (values[index] > min_value and values[index] < max_value) == False: return False if level % 2 != 0: # odd min_value = values[index] else: # even max_value = values[index] return (MinMaxHeap.is_valid(values, index * 2 + 1, level + 1, min_value, max_value) and MinMaxHeap.is_valid(values, index * 2 + 2, level + 1, min_value, max_value)) def main(): # "8 71 41 31 10 11 16 46 51 31 21 13" - YES # "8 71 41 31 25 11 16 46 51 31 21 13" - NO N = int(input("N: ")) line = input() l = line.split() values = [] for number in l: values.append(int(number)) result = MinMaxHeap.is_valid(values, 0, 1, 0, 1e10) if result: print("YES") else: print("NO") if __name__ == '__main__': main()
chars2get = set() with open('biofic2take.tsv', encoding = 'utf-8') as f: for line in f: fields = line.strip().split('\t') charid = fields[0] chars2get.add(charid) outlines = [] with open('../biofic50/biofic50_doctopics.txt', encoding = 'utf-8') as f: for line in f: fields = line.strip().split('\t') charid = fields[1] if charid in chars2get: outlines.append(line) with open('../biofic50/biofic50_viz.tsv', mode = 'w', encoding = 'utf-8') as f: for line in outlines: f.write(line)
# Homework 01 - Game of life # # Your task is to implement part of the cell automata called # Game of life. The automata is a 2D simulation where each cell # on the grid is either dead or alive. # # State of each cell is updated in every iteration based state of neighbouring cells. # Cell neighbours are cells that are horizontally, vertically, or diagonally adjacent. # # Rules for update are as follows: # # 1. Any live cell with fewer than two live neighbours dies, as if by underpopulation. # 2. Any live cell with two or three live neighbours lives on to the next generation. # 3. Any live cell with more than three live neighbours dies, as if by overpopulation. # 4. Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction. # # # Our implementation will use coordinate system will use grid coordinates starting from (0, 0) - upper left corner. # The first coordinate is row and second is column. # # Do not use wrap around (toroid) when reaching edge of the board. # # For more details about Game of Life, see Wikipedia - https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life def createBoard(rows, cols): board = [[False] * cols for i in range(rows)] return board def fillBoard(board, alive): for j in alive: x, y = j board[x][y] = True return None def isAlive(board, x, y, rows, cols): if x < 0 or x >= rows: return False if y < 0 or y >= cols: return False return board[x][y] def sumAliveNeighbors(board, r, c, rows, cols) -> int: sumN = 0 sumN += isAlive(board, r - 1, c, rows, cols) # up sumN += isAlive(board, r + 1, c, rows, cols) # down sumN += isAlive(board, r, c - 1, rows, cols) # left sumN += isAlive(board, r, c + 1, rows, cols) # right sumN += isAlive(board, r - 1, c - 1, rows, cols) # up left sumN += isAlive(board, r - 1, c + 1, rows, cols) # up right sumN += isAlive(board, r + 1, c - 1, rows, cols) # down left sumN += isAlive(board, r + 1, c + 1, rows, cols) # down right return sumN def makeGameStep(current_board, rows, cols): next_board = createBoard(rows, cols) for r in range(rows): for c in range(cols): sumN = sumAliveNeighbors(current_board, r, c, rows, cols) if current_board[r][c]: if sumN < 2 or sumN > 3: next_board[r][c] = False if sumN == 2 or sumN == 3: next_board[r][c] = True else: if sumN == 3: next_board[r][c] = True current_board = next_board return current_board def getAliveSet(board, rows, cols): result = set() for row in range(rows): for column in range(cols): if board[row][column]: t = (row, column) result.add(t) return result def update(alive, size, iter_n): rows, cols = size current_board = createBoard(rows, cols) fillBoard(current_board, alive) i = 0 while i < iter_n: current_board = makeGameStep(current_board, rows, cols) i += 1 # Return the set of alive cells from the last current_board return getAliveSet(current_board, rows, cols) def draw(alive, size): """ alive - set of cell coordinates marked as alive, can be empty size - size of simulation grid as tuple - ( output - string showing the board state with alive cells marked with X """ # Don't call print in this method, just return board string as output. # Example of 3x3 board with 1 alive cell at coordinates (0, 2): # +---+ # | X| # | | # | | # +---+ rows, cols = size outputString = "+" for i in range(cols): outputString += "-" outputString += "+\n" for i in range(rows): outputString += "|" for j in range(cols): if (i, j) in alive: outputString += "X" else: outputString += " " outputString += "|\n" outputString += "+" for i in range(cols): outputString += "-" outputString += "+" return outputString
class BoundingBox: def __init__(self, top: float, right: float, bottom: float, left: float): self.top = top self.right = right self.bottom = bottom self.left = left def to_flickr_bounding_box(self): return '{self.left}, {self.bottom}, {self.right}, {self.top}'.format(self=self)
#!/usr/bin/python3.6 class Reaction: # the sets of reactants, inhibitors and products of the reaction name = None reactants = set() inhibitors = set() products = set() # the creation of a reaction is made through the called of a function in which all the controls are performed, so we can # assume that reactants, inhibitors and products arrives to this initialization already as sets, and we can # assume moreover that the checks of correctness of the reaction is already been done def __init__(self,_name,_reactants,_inhibitors,_products): self.name = _name self.reactants = _reactants self.inhibitors = _inhibitors self.products = _products # special method to print easily a reaction def __str__(self): # put in string the reactants rappresentation = "({" for r in self.reactants: rappresentation += r + ',' rappresentation = rappresentation[:-1] # remove the , # put in string the inhibitors rappresentation += "},{" for i in self.inhibitors: rappresentation += i + ',' rappresentation = rappresentation[:-1] # remove the , # put in string the products rappresentation += "},{" for p in self.products: rappresentation += p + ',' rappresentation = rappresentation[:-1] # remove the , rappresentation += "})" return 'reaction_' + self.name + ' = ' + rappresentation # check if a reaction belong to a given nonempty set def BelongTo(self,s): return self.reactants.issubset(s) and self.inhibitors.issubset(s) and self.products.issubset(s) # check if a reaction is enabled by a given nonempty set def EnabledBy(self,t): return self.reactants.issubset(t) and self.inhibitors.isdisjoint(t) # special method to permit a list of reactions to map into a set def __hash__(self): return 0 # special method to check if two reactions are equals def __eq__(self,other): if isinstance(other,Reaction): return self.reactants == other.reactants and self.products == other.products and self.inhibitors == other.inhibitors return NotImplemented
def create_empty_list(): phone_device_types = [] print(phone_device_types) return def access_list_item(): phone_device_types = ["IOS", "Android"] print(phone_device_types) # ['IOS', 'Android'] print(phone_device_types[0]) print(phone_device_types[0].title()) # -1 = last item. 倒数第一个 print(phone_device_types[-1]) # Android # -2 = 倒数第二个 print(phone_device_types[-2]) # print(phone_device_types[-3]) # ERROR: Traceback (most recent call last): IndexError: list index out of range shopping_name = [] # print(shopping_name[0]) # ERROR:Traceback (most recent call last):IndexError: list index out of range # print(shopping_name[-1]) # ERROR:Traceback (most recent call last):IndexError: list index out of range return def modify_item(): nums = [10, 20, 30] print(nums) # [10, 20, 30] # modify item nums[0] = 1 print(nums) # [1, 20, 30] return def add_item(): nums = [10, 20, 30, 40] # add item print(nums) # [10, 20, 30, 40] # insert item before index nums.insert(1, 50) print(nums) # [10, 50, 20, 30, 40] nums.insert(10, 10) print(nums) # [10, 50, 20, 30, 40, 10] return def remove_item(): nums = [1, 2, 3, 4, 5, 6] print(nums) # [1, 2, 3, 4, 5, 6] # remove item # remove item - by index del nums[0] print(nums) # [2, 3, 4, 5, 6] empty_list = [] # del empty_list[2] # ERROR: Traceback (most recent call last): IndexError: list assignment index out of range # remove item - by pop pop_num = nums.pop() print(nums) # [2, 3, 4, 5] print(pop_num) # 6 pop_num2 = nums.pop(1) print(nums) # [2, 4, 5] print(pop_num2) # 3 # empty_list.pop() # ERROR: Traceback (most recent call last):IndexError: pop from empty list # empty_list.pop(2) # ERROR: Traceback (most recent call last):IndexError: pop from empty list list2 = [1] # list2.pop(2) # ERROR: Traceback (most recent call last): IndexError: pop index out of range # remove item - by value strings = ['A', 'B', "B", 'C', 'D'] strings.remove('C') print(strings) # ['A', 'B', 'B', 'D'] # strings.remove('d') # ERROR: Traceback (most recent call last): ValueError: list.remove(x): x not in list # print(strings) strings.remove('B') # remove() Only delete the first pointed value. If want to delete all same values, remove them by looping. print(strings) # ['A', 'B', 'D'] return def sort_list(): sort_list_by_permanent_order() sort_list_by_temporary_order() return def sort_list_by_permanent_order(): # Permanent order cars = ["bw", "ya", "abc", "ca"] cars.sort() # 正序排列,永久排序 print(cars) # ['abc', 'bw', 'ca', 'ya'] print("\n") languages = ['Java', 'C', "Python"] languages.sort(reverse=True) # 倒序排列,永久排序 print(languages) # ['Python', 'Java', 'C'] return def sort_list_by_temporary_order(): nums = [1, 10, 5, 8] num_temp = sorted(nums) # 正序排列,临时排序 print(num_temp) # [1, 5, 8, 10] print(nums) # [1, 10, 5, 8] print("\n") prices = [100, 5, 10] prices_temp = sorted(prices, reverse=True) # 倒序排列,临时排序 print(prices_temp) # [100, 10, 5] print(prices) # [100, 5, 10] return def reverse_list(): reverse_list_by_permanent_order() reverse_list_by_temporary_order() def reverse_list_by_permanent_order(): stu = ["A", "C", "B"] stu.reverse() # 反转列表,not 倒序排列. 永久性修改,但通过再次调用恢复原来的排列顺序 print(stu) # ['B', 'C', 'A'] stu.reverse() print(stu) # ['A', 'C', 'B'] return def reverse_list_by_temporary_order(): money = [5, 10, 8] money_temp = list(reversed(money)) # 反转列表,not 倒序排列. 临时反转 # reversed(money) -> list_reverseiterator object at 0x1057fe450 print(money_temp) # [8, 10, 5] print(money) # [5, 10, 8] return def length_of_list(): names = ["A", "C"] print(len(names)) # 2 print(len([])) # 0 return def traversing_list(): score = [90, 94, 98] for item in score: print(item) return def traversing_list(): score = [90, 94, 98] for item in score: print(item) return def create_value_list(): create_empty_list() create_value_list4_use_range() return def create_value_list4_use_range(): # range(): start from first param, stop until second param. [) for value in range(1, 5): print(value) # list(range(1, 5)):convert result to a list nums = list(range(1, 5)) # [1, 2, 3, 4] print(nums) # create list with step: [) even_number = list(range(2, 11, 2)) print(even_number) # [2, 4, 6, 8, 10] even_number2 = list(range(2, 12, 2)) print(even_number2) # [2, 4, 6, 8, 10] return # 统计计算 def statistical_computing(): digits = [1, 10, 3] min_digit = min(digits) print(min_digit) # 1 max_digit = max(digits) print(max_digit) # 10 sum_of_digits = sum(digits) print(sum_of_digits) # 14 return # 列表解析 def list_comprehension(): squares = [] for value in range(1, 5): # square = value ** 2 # squares.append(square) squares.append(value ** 2) print(squares) # [1, 4, 9, 16] # 列表解析将for循环和创建新元素的代码合并成一行,并自动附加新元素。 # 首先指定一个描述性的列表名,squares2;然后,指定一个左方括号, 并定义一个表达式,用于生成你要存储到列表中的值。在这个示例中,表达式为value**2,它计 算平方值。接下来,编写一个for循环,用于给表达式提供值,再加上右方括号。 # 在这个示例中,for循环为for value in range(1,11),它将值1~10提供给表达式value**2。 # Why use it ? 使用代码生成列表太繁琐。创建列表解析,以简化生成列表。 squares2 = [value ** 2 for value in range(1, 5)] print(squares2) # [1, 4, 9, 16] return # 切片 def segment(): players = ["1", '2', "3", "4", "5", '6'] # [startIndex : endIndex] print(players[0:2]) # ['1', '2'] print(players[1:4]) # ['2', '3', '4'] print(players[1:10]) # ['2', '3', '4', '5', '6'] # When no start index, [0: print(players[:2]) # ['1', '2'] # When no end index, :lastIndex] print(players[1:]) # ['2', '3', '4', '5', '6'] # 负数索引: [倒数第n个:last index] print(players[-3:]) # ['4', '5', '6'] print(players[-10:]) # ['1', '2', '3', '4', '5', '6'] # traversing segment # 1 # 2 for item in players[:2]: print(item) # Copy list # Copy whole list # =[:]:value copy # 使用列表副本 my_shopping_foods = ["pizza", 'cake', 'coffee'] friend_shopping_foods = my_shopping_foods[:] print(my_shopping_foods) # ['pizza', 'cake', 'coffee'] print(friend_shopping_foods) # ['pizza', 'cake', 'coffee'] my_shopping_foods.append('water') friend_shopping_foods.append('ice cream') print(my_shopping_foods) # ['pizza', 'cake', 'coffee', 'water'] print(friend_shopping_foods) # ['pizza', 'cake', 'coffee', 'ice cream'] # = : set ref # 设置引用 my_languages = ['C', "C++", 'Java', "JS"] friend_languages = my_languages print(my_languages) print(friend_languages) my_languages.append('Python') friend_languages.append("Excel") print(my_languages) # ['C', 'C++', 'Java', 'JS', 'Python', 'Excel'] print(friend_languages) # ['C', 'C++', 'Java', 'JS', 'Python', 'Excel'] # Copy segment return def test(): # access_list_item() # modify_item() # add_item() # remove_item() # sort_list() # reverse_list() # length_of_list() # traversing_list() # create_value_list() # statistical_computing() # list_comprehension() segment() return test()
# adapted from https://raw.githubusercontent.com/lucien2k/wipy-urllib/master/urllib.py def unquote(s): """Kindly rewritten by Damien from Micropython""" """No longer uses caching because of memory limitations""" res = s.split('%') for i in range(1, len(res)): item = res[i] try: res[i] = chr(int(item[:2], 16)) + item[2:] except ValueError: res[i] = '%' + item return "".join(res) def unquote_plus(s): """unquote('%7e/abc+def') -> '~/abc def'""" s = s.replace('+', ' ') return unquote(s)
# Description: Find H-bonds around a residue. # Source: placeHolder """ cmd.do('remove element h; distance hbonds, all, all, 3.2, mode=2;') """ cmd.do('remove element h; distance hbonds, all, all, 3.2, mode=2;')
# Pattern that would startup the DUT, then do nothing else. # Should still generate. with Pattern() as pat: ...
# -*- coding: utf-8 -*- """001 = Deixando tudo pronto Automatically generated by Colaboratory. Original file is located at https://colab.research.google.com/drive/1GhfZy4Dql6Q-h1khGuR5Uji39RilKx9T """ msg = "Olá, Mundo" print(msg)
N = int(input()) total = 0 for i in range(1, N+1): if (i % 3) != 0 and (i % 5) != 0: total = total+i print(total)
INSTRUCTIONS = { "SUM": 0b00001, "SUB": 0b00010, "MULT": 0b00011, "DIV": 0b00101, } def instrFor(instr): return INSTRUCTIONS[instr]
class Solution(object): # def isPerfectSquare(self, num): # """ # :type num: int # :rtype: bool # """ # i = 1 # while num > 0: # num -= i # i += 2 # return num == 0 def isPerfectSquare(self, num): low, high = 1, num while low <= high: mid = (low + high) / 2 mid_square = mid * mid if mid_square == num: return True elif mid_square < num: low = mid + 1 else: high = mid - 1 return False # def isPerfectSquare(self, num): # x = num # while x * x > num: # x = (x + num / x) / 2 # return x * x == num
VAT_NUMBER_REGEXES = { # EU VAT number regexes have a high certainty 'AT': r'^U\d{8}$', 'BE': r'^[01]\d{9}$', 'BG': r'^\d{9,10}$', 'CY': r'^\d{8}[A-Z]$', 'CZ': r'^\d{8,10}$', 'DE': r'^\d{9}$', 'DK': r'^\d{8}$', 'EE': r'^\d{9}$', 'EL': r'^\d{9}$', 'ES': r'^([A-Z]\d{7}[A-Z0-9]|\d{8}[A-Z])$', 'FI': r'^\d{8}$', 'FR': r'^[A-Z0-9]{2}\d{9}$', 'GB': r'^(\d{9}|\d{12}|GD\d{3}|HA\d{3})$', 'HR': r'^\d{11}$', 'HU': r'^[0-9]{8}$', 'IE': r'^(\d[A-Z0-9]\d{5}[A-Z]|\d{7}[A-Z]{2})$', 'IT': r'^\d{11}$', 'LT': r'^(\d{9}|\d{12})$', 'LU': r'^\d{8}$', 'LV': r'^\d{11}$', 'MT': r'^\d{8}$', 'NL': r'^\d{9}B\d{2}$', 'PL': r'^\d{10}$', 'PT': r'^\d{9}$', 'RO': r'^\d{2,10}$', 'SE': r'^\d{12}$', 'SI': r'^\d{8}$', 'SK': r'^\d{10}$', 'EU': r'^\d{9}$', # Others # if no source listed below, these regexes are based on Wikipedia # patches (with sources) for these are welcome 'AL': r'^[JK]\d{8}[A-Z]$', 'MK': r'^\d{13}$', 'AU': r'^\d{9}$', 'BY': r'^\d{9}$', 'CA': r'^\d{9}R[TPCMRDENGZ]\d{4}$', 'IS': r'^\d{5,6}$', 'IN': r'^\d{11}[CV]$', 'ID': r'^\d{15}$', 'IL': r'^\d{9}$', 'KZ': r'^\d{12}$', 'NZ': r'^\d{9}$', 'NG': r'^\d{12}$', 'NO': r'^\d{9}$', 'PH': r'^\d{12}$', 'RU': r'^(\d{10}|\d{12})$', 'SM': r'^\d{5}$', 'RS': r'^\d{9}$', 'CH': r'^\d{9}$', 'TR': r'^\d{10}$', 'UA': r'^\d{12}$', 'UZ': r'^\d{9}$', 'AR': r'^\d{11}$', 'BO': r'^\d{7}$', 'BR': r'^\d{14}$', 'CL': r'^\d{9}$', 'CO': r'^\d{10}$', 'CR': r'^\d{9,12}$', 'EC': r'^\d{13}$', 'SV': r'^\d{14}$', 'GT': r'^\d{8}$', # HN 'MX': r'^[A-Z0-9]{3,4}\d{6}[A-Z0-9]{3}$', 'NI': r'^\d{13}[A-Z]$', # PA 'PY': r'^\d{7,9}$', 'PE': r'^\d{11}$', 'DO': r'^(\d{9}|\d{11})$', 'UY': r'^\d{12}$', 'VE': r'^[EGJV]\d{9}$', } """List of all VAT number regexes to be used for validating European VAT numbers. Regexes do not include any formatting characters. Sources: EU: http://www.hmrc.gov.uk/vat/managing/international/esl/country-codes.htm CA: http://www.cra-arc.gc.ca/tx/bsnss/tpcs/bn-ne/wrks-eng.html others: https://en.wikipedia.org/wiki/VAT_identification_number """ EU_VAT_AREA = ['AT', 'BE', 'BG', 'CY', 'CZ', 'DE', 'DK', 'EE', 'EL', 'ES', 'FI', 'FR', 'GB', 'HR', 'HU', 'IE', 'IT', 'LT', 'LU', 'LV', 'MT', 'NL', 'PL', 'PT', 'RO', 'SE', 'SI', 'SK'] VAT_MIN_LENGTH = 4 # Romania seems to have the shortest VAT_MAX_LENGTH = 16 # BR seems to be the longest
# # This file contains the Python code from Program 6.7 of # "Data Structures and Algorithms # with Object-Oriented Design Patterns in Python" # by Bruno R. Preiss. # # Copyright (c) 2003 by Bruno R. Preiss, P.Eng. All rights reserved. # # http://www.brpreiss.com/books/opus7/programs/pgm06_07.txt # class StackAsLinkedList(Stack): def push(self, obj): self._list.prepend(obj) self._count += 1 def pop(self): if self._count == 0: raise ContainerEmpty result = self._list.first self._list.extract(result) self._count -= 1 return result def getTop(self): if self._count == 0: raise ContainerEmpty return self._list.first # ...
class Model(): def __init__(self, model): pass
pound = int(input()) conv_to_dollar = pound * 1.31 print(f"{conv_to_dollar:.3f}")
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2020/4/30 13:40 # @Author : zengsm # @File : config #爬取公众号文章 PROXY_POOL_URL = 'http://127.0.0.1:5000/get' KEYWORD ='计算机等级二级' # 输入关键词 MONGO_URI = 'localhost' MONGO_DB = 'data' MAX_COUNT = 5
""" Codemonk link: https://www.hackerearth.com/practice/basic-programming/implementation/basics-of-implementation/practice-problems/algorithm/binary-movement/ You are given a bit array (0 and 1) of size n. Your task is to perform Q queries. In each query you have to toggle all the bits from the index L to R (L and R inclusive). After performing all the queries, print the count of all the set bits and the newly updated array. Input - Output: The first line contains an integer N denoting the size of the array. The Second line contains N space-separated binary numbers. The third line contains Q denoting the number of queries. The next Q lines contain L and R for each ith query. Print the count of all the set bits and newly updated array in the new line. Sample input: 6 1 0 1 1 0 1 3 1 3 4 5 2 5 Sample Output: 3 0 0 1 1 0 1 """ """ The problem can be translated to the following: To find the value of each index, find how many queries start before this index and how many end before or after this specific index. If, overall, we find an even odd number of queries starting before and ending after or at the position of the index, then we change its value. O(N) for the first and second "for". Final complexity: O(2*N) => O(N) """ inp_len = int(input()) bit_list = list(map(int, input().rstrip().split())) q_len = int(input()) # Creating 2 supplementary arrays. count_queries_before = [0] * inp_len count_queries_after = [0] * inp_len count = 0 count_ones = 0 for i in range(0, q_len): rl = list(map(int, input().rstrip().split())) # The first array contains the starting positions of all the queries. # The second array contains the ending positions of all the queries. count_queries_before[rl[0]-1] += 1 count_queries_after[rl[1]-1] += 1 count += count_queries_before[0] if count % 2 != 0: if bit_list[0] == 0: bit_list[0] = 1 else: bit_list[0] = 0 for i in range(1, inp_len): # For each next index, # add the amount of of queries starting from there and # subtract the amount of queries ending 1 index before. count += count_queries_before[i] count -= count_queries_after[i-1] if count % 2 != 0: if bit_list[i] == 0: bit_list[i] = 1 else: bit_list[i] = 0 count_ones += bit_list[i] print(count_ones) print(*bit_list)
# Desenvolva um programa que leia quatro valores # pelo teclado e guarde-os em uma tupla. # No final, mostre: # A) Quantas vezes apareceu o valor 9. # B) Em que posição foi digitado o primeiro valor 3. # C) Quais foram os números pares. num = (int(input('Digite um numero: ')), int(input('Digite outro numero: ')), int(input('Digite mais um numero: ')), int(input('Digite o ultimo numero: '))) print(f'Voce digitou os valors: {num}') print(f'O valor 9 apareceu {num.count(9)} vezes') if 3 in num: print(f'O valor 3 apareceu {num.index(3)+1}° posição') else: print('O valor 3 não foi digitado.') print('Os numeros pares foram: ') for i in num: if i % 2 ==0: print(i, end=' ') else: print('Não foram digitados numeros pares') break
# Given an unsorted array of integers, find the length of longest continuous increasing subsequence (subarray). # Example 1: # Input: [1,3,5,4,7] # Output: 3 # Explanation: The longest continuous increasing subsequence is [1,3,5], its length is 3. # Even though [1,3,5,7] is also an increasing subsequence, it's not a continuous one where 5 and 7 are separated by 4. # Example 2: # Input: [2,2,2,2,2] # Output: 1 # Explanation: The longest continuous increasing subsequence is [2], its length is 1. # Note: Length of the array will not exceed 10,000. class Solution(object): def findLengthOfLCIS(self, nums): """ :type nums: List[int] :rtype: int """ l = len(nums) if (l < 2): return l lens = 0 temp = 1 for i in range(1,l): if (nums[i] <= nums[i-1]): lens = max(lens, temp) temp = 1 i += 1 else: temp += 1 return max(lens, temp)
S, W = map(int, input().split()) if(W >= S): print("unsafe") else: print("safe")
#medicine = 'Coughussin' #dosage = 5 #duration = 4.5 #instructions = '{} - Take {} ML by mouth every {} hours.'.format(medicine, dosage, duration) #print(instructions) #instructions = '{2} - Take {1} ML by mouth every {0} hours'.format(medicine, dosage, duration) #print(instructions) #instructions = '{medicine} - Take {dosage} ML by mouth every {duration} hours'.format(medicine = 'Sneezergen', dosage = 10, duration = 6) #print(instructions) #name = 'World' #message = f'Hello, {name}' #print(message) #count = 10 #value = 3.14 #message = f'Count to {10}. Multiply by {value}.' #print(message) #width = 5 #height = 10 #print(f'The perimeter is {2 * width + 2 * height} and the area is {width * height}.') value = 'hi' print(f'.{value:<25}.') print(f'.{value:>25}.') print(f'.{value:^25}.') print(f'.{value:-^25}.')
# TWITTER PYTHON # Copyright 2022 Billyfranklim # See LICENSE for details. __version__ = '0.1.0' __author__ = 'Billyfranklim Pereira' __license__ = 'MIT'
""" 586. Sqrt(x) II Implement double sqrt(double x) and x >= 0. Compute and return the square root of x. You do not care about the accuracy of the result, we will help you to output results. binary search? by result? """ class Solution: """ @param x: a double @return: the square root of x """ def sqrt(self, x): # write your code here if x >= 1: left, right = 0, x * 1.0 else: left, right = x * 1.0, 1.0 while right - left > 1e-10: mid = (left + right) / 2.0 if mid * mid < x: left = mid else: right = mid return mid s = Solution() print(s.sqrt(3))
"""Top-level package for Female Health Analysis.""" __author__ = """Daniel Schulz""" __email__ = '[email protected]' __version__ = '0.1.0'
# Time: O(n) # Space: O(n) # 1182 biweekly contest 8 9/7/2019 # You are given an array colors, in which there are three colors: 1, 2 and 3. # # You are also given some queries. Each query consists of two integers i and c, return the shortest distance # between the given index i and the target color c. If there is no solution return -1. # 1 <= colors.length, queries.length <= 5*10^4 # Input: colors = [1,1,2,1,3,2,2,3,3], queries = [[1,3],[2,2],[6,1]] # Output: [3,0,3] try: xrange except NameError: xrange = range class Solution(object): # dp[c][j] distance from nearest color c to jth elem def shortestDistanceColor(self, colors, queries): N = len(colors) dp = [[float('inf')] * N for _ in xrange(4)] # forward pass, get nearest to the left dp[colors[0]][0] = 0 for i in range(1, N): for c in range(1, 4): dp[c][i] = 1 + dp[c][i-1] dp[colors[i]][i] = 0 # backward pass, get nearest to the right for i in reversed(range(N-1)): for c in range(1, 4): dp[c][i] = min(dp[c][i], dp[c][i+1] + 1) return [dp[c][i] if dp[c][i] != float('inf') else -1 for i, c in queries] # dp[c][j] index of nearest color c to jth elem def shortestDistanceColor_kamyu(self, colors, queries): """ :type colors: List[int] :type queries: List[List[int]] :rtype: List[int] """ N = len(colors) dp = [[-1] * N for _ in xrange(4)] dp[colors[0]][0] = 0 for i in xrange(1, N): for color in xrange(1, 4): dp[color][i] = dp[color][i-1] dp[colors[i]][i] = i for i in reversed(xrange(N-1)): for color in xrange(1, 4): if dp[color][i+1] == -1: continue if dp[color][i] == -1 or \ abs(dp[color][i+1]-i) < abs(dp[color][i]-i): dp[color][i] = dp[color][i+1] return [abs(dp[color][i]-i) if dp[color][i] != -1 else -1 \ for i, color in queries] print(Solution().shortestDistanceColor([1,1,2,1,3,2,2,3,3], [[1,3],[2,2],[6,1]])) # [3,0,3] print(Solution().shortestDistanceColor([1,2], [[0,3]])) # [-1]
# def print_hi(name): # print(f'Hi, {name}') # if __name__ == '__main__': # print_hi('PyCharm') print("Hello World Python xd") # Para saber la direccion de memoria de cierta variable se usa el metodo id() name = "Juan Diego Castellanos" print(name) print(id(name)) print("------") print("tipo de dato") print(type(name)) # Agregar hints o pistas de que tipo deben ser las variables last_name: str = "Castellanos Jerez" print(last_name) print("---------Day Qualifier--------") dia = int(input("How was your day? (between 1 to 10 ): ")) print(f"Your day was: {dia}") print("----------------Book info----------------") author = input("Please provide the author's name: ") title = input("Please provide the book's title: ") print("thanks for your information! ") print(f"The {title} it was written by {author}") print("--------------Rectangle Area and Perimeter-------------") height = int(input("Please provide the height: ")) width = int(input("Please provide the width: ")) print(f"The Area is {(height*width)}") print(f"The Perimeter is {((height+width)*2)}")
""" Shared constant values. """ """ ## Handling Concurrency. When appending events to a stream, you can supply a *stream state* or *stream revision*. Your client can use this to tell EventStoreDB what state or version you expect the stream to be in when you append. If the stream isn't in that state the an exception will be thrown. The are three available stream states: * Any * NoStream * StreamExists This check can be used to implement optimistic concurrency. When you retrieve a stream from EventStoreDB, you take note of the current version number, then when you save it back you can determine if somebody else has modified the record in the meantime. """ NO_STREAM = "NO_STREAM" ANY = "ANY" STREAM_EXISTS = "STREAM_EXISTS" """ ## Directions """ FORWARDS = "FORWARDS" BACKWARDS = "BACKWARDS" """ ## Revision positions. """ START = "START" END = "END" """ ## OTHERS """ WRONG_EXPECTED_VERSION = "wrong_expected_version"
""" Django Rest Framework Auth provides very simple & quick way to adopt authentication APIs' to your django project. Rationale --------- django-rest-framework's `Serializer` is nice idea for detaching business logic from view functions. It's very similar to django's ``Form``, but serializer is not obligible for rendering response data, and should not. - django forms also do this, seriously!!! some expert beginners just know form is ONLY FOR `html form rendering` :( Unluckily, even though django already provides forms and views for authentication, We cannot use these for REST-APIs. It uses forms!! (rest_framework does not use forms.) We think there should be some serializers & views (or viewsets) to use ``rest_framework``'s full features. (such as throttling, pagination, versioning or content-negotiations) Let's have a good taste of these elegant implementations. API Endpoints ------------- Below API endpoints can be re-configured if you write your urls.py * POST /login/ * username * password authenticate user and persist him/her to website * POST /logout/ let a user logged out. .. NOTE:: Logout from HTTP GET is not implemented. * POST /forgot/ * email send a link for resetting password to user * GET /reset/{uid64}/{token}/ * uid64, token - automatically generated tokens (when email is sent) * new_password * new_password (confirm) reset a password for user * GET /reset/d/ a view seen by user after resetting password * POST /change-password/ * old_password * new_password * new_password (confirm) change a password for user * GET /api-root/ * see api lists * POST /signup/ * username * email * password * confirm_password Create a user. verification e-mail is sent when you set ``REST_AUTH_SIGNUP_REQUIRE_EMAIL_CONFIRMATION`` * GET /signup/v/{uid64}/{token}/ Verify user. After verification, user can use full features of websites. """ __version__ = '1.0.0' default_app_config = 'rest_auth.apps.AppConfig'
''' 0. 用 while 语句实现与以下 for 语句相同的功能: for each in range(5): print(each) ''' r = iter(range(5)) while 1: try: each = next(r) except StopIteration: break print(each)
''' Your plot of the ECDF and determination of the confidence interval make it pretty clear that the beaks of G. scandens on Daphne Major have gotten deeper. But is it possible that this effect is just due to random chance? In other words, what is the probability that we would get the observed difference in mean beak depth if the means were the same? Be careful! The hypothesis we are testing is not that the beak depths come from the same distribution. For that we could use a permutation test. The hypothesis is that the means are equal. To perform this hypothesis test, we need to shift the two data sets so that they have the same mean and then use bootstrap sampling to compute the difference of means. ''' # Compute mean of combined data set: combined_mean combined_mean = np.mean(np.concatenate((bd_1975, bd_2012))) # Shift the samples bd_1975_shifted = bd_1975 - np.mean(bd_1975) + combined_mean bd_2012_shifted = bd_2012 - np.mean(bd_2012) + combined_mean # Get bootstrap replicates of shifted data sets bs_replicates_1975 = draw_bs_reps(bd_1975_shifted, np.mean, 10000) bs_replicates_2012 = draw_bs_reps(bd_2012_shifted, np.mean, 10000) # Compute replicates of difference of means: bs_diff_replicates bs_diff_replicates = bs_replicates_2012 - bs_replicates_1975 # Compute the p-value p = np.sum(bs_diff_replicates >= mean_diff) / len(bs_diff_replicates) # Print p-value print('p =', p)
#!/usr/bin/env python3 def isBalanced(s: str) -> bool: stack = [] pair = {'(': ')', '{': '}', '[': ']'} for ch in s: # For left brackets push right brackets if (ch in pair.keys()): stack.append(pair[ch]) else: # Unmatch right char if len(stack) == 0: return False # Ensure a match if (ch != stack[-1]): return False # Good match, pop stack.pop() return len(stack) == 0 if __name__ == "__main__": print(isBalanced("((){[]})")) print(isBalanced("")) print(isBalanced("[[["))
# # if type(input) == string: # find if palindrome # elif type(input) == number: # find factorial # find if palindrome # def pal(st): l = len(st) i = 0 flag = True while i < l//2: if st[i] == st[l-i-1]: pass else: flag = False i += 1 return flag while True: print("Menu\n1. for palindrome\n2. for factorial\n3. exit") ip = int(input("enter your choise: ")) if ip == 1: st = input("enter number or string: ") if pal(st): print("the input is a plaindrome") else: print("the input is not a plindrome") elif ip == 2: st = int(input("enter number: ")) i = 1 fact = 1 while i <= int(st): fact *= i i += 1 print("fact of",ip, "is",fact) elif ip == 3: break else: print("enter valid choise")
class TSDBClientException(Exception): pass class TSDBNotAlive(TSDBClientException): pass class TagsError(TSDBClientException): pass class ValidationError(TSDBClientException): pass class UnknownTSDBConnectProtocol(TSDBClientException): def __init__(self, protocol): self.protocol = protocol def __str__(self): return "Unknown TSDB connection protocol: %s" % self.protocol
# Author: Jocelino F.G a, b = input().split(), input().split() q1 = int(a[1]) v1 = float(a[2]) q2 = int(b[1]) v2 = float(b[2]) t1 = q1 * v1 t2 = q2 * v2 tt = t1 + t2 print('VALOR A PAGAR: R$ %.2f' %tt)
def merge_sort(unsorted_list): if len(unsorted_list) <= 1: return unsorted_list # Finding the middle point and partitioning the array into two halves middle = len(unsorted_list) // 2 left = unsorted_list[:middle] right = unsorted_list[middle:] left = merge_sort(left) right = merge_sort(right) return list(merge(left, right)) #Merging the sorted halves def merge(left,right): res = [] while len(left) != 0 and len(right) != 0: if left[0] < right[0]: res.append(left[0]) left.remove(left[0]) else: res.append(right[0]) right.remove(right[0]) if len(left) == 0: res = res + right else: res = res + left return res input_list = list(map(int,input("Enter unsorted input list: ").split())) print("Unsorted Input: ", input_list) print("Sorted Output: ", merge_sort(input_list))
x = 0 drone_chk = [112, 334, 4444, 4444, 445, 112, 27466, 445, 27466] for i in drone_chk: x ^= i print("The missing drone order ID is:", x)
############################################################################ # # Copyright (C) 2016 The Qt Company Ltd. # Contact: https://www.qt.io/licensing/ # # This file is part of Qt Creator. # # Commercial License Usage # Licensees holding valid commercial Qt licenses may use this file in # accordance with the commercial license agreement provided with the # Software or, alternatively, in accordance with the terms contained in # a written agreement between you and The Qt Company. For licensing terms # and conditions see https://www.qt.io/terms-conditions. For further # information use the contact form at https://www.qt.io/contact-us. # # GNU General Public License Usage # Alternatively, this file may be used under the terms of the GNU # General Public License version 3 as published by the Free Software # Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT # included in the packaging of this file. Please review the following # information to ensure the GNU General Public License requirements will # be met: https://www.gnu.org/licenses/gpl-3.0.html. # ############################################################################ source("../../shared/qtcreator.py") def main(): files = checkAndCopyFiles(testData.dataset("files.tsv"), "filename", tempDir()) if not files: return startApplication("qtcreator" + SettingsPath) if not startedWithoutPluginError(): return for currentFile in files: test.log("Opening file %s" % currentFile) invokeMenuItem("File", "Open File or Project...") selectFromFileDialog(currentFile) editor = getEditorForFileSuffix(currentFile) if editor == None: test.fatal("Could not get the editor for '%s'" % currentFile, "Skipping this file for now.") continue contentBefore = readFile(currentFile) os.remove(currentFile) if not currentFile.endswith(".bin"): popupText = ("The file %s has been removed from disk. Do you want to " "save it under a different name, or close the editor?") test.compare(waitForObject(":File has been removed_QMessageBox").text, popupText % currentFile) clickButton(waitForObject(":File has been removed.Save_QPushButton")) waitFor("os.path.exists(currentFile)", 5000) # avoids a lock-up on some Linux machines, purely empiric, might have different cause waitFor("checkIfObjectExists(':File has been removed_QMessageBox', False, 0)", 5000) test.compare(readFile(currentFile), contentBefore, "Verifying that file '%s' was restored correctly" % currentFile) # Test for QTCREATORBUG-8130 os.remove(currentFile) test.compare(waitForObject(":File has been removed_QMessageBox").text, popupText % currentFile) clickButton(waitForObject(":File has been removed.Close_QPushButton")) test.verify(checkIfObjectExists(objectMap.realName(editor), False), "Was the editor closed after deleting the file?") invokeMenuItem("File", "Exit")
""" Code Challenge 1 Certificate Generator Develop a Python code that can generate certificates in image format. It must take names and other required information from the user and generates certificate of participation in a Python Bootcamp conducted by Forsk. Certificate should have Forsk Seal, Forsk Signature, Different Fonts Code Challenge 2 I-Card Generation System Write a Python code for a system that generates I-card for all studentsof Forsk Summer Developer Program and store them in image format. It must take names and other required information from the user. Code Challenge 3 Watermarking Application Have some pictures you want copyright protected? Add your own logo or text lightly across the background so that no one can simply steal your graphics off your site. Make a program that will add this watermark to the picture. Code Challenge 4 GIF Creator A program that puts together multiple images (PNGs, JPGs, TIFFs) to make a smooth GIF that can be exported. Make the program convert small video files to GIFs as well. Code Challenge 5 Fortune Teller (Horoscope) A program that checks your horoscope on various astrology sites and puts them together for you each day. The code should share the Horoscope on Tweeter account of the user. """
# # PySNMP MIB module F5-3DNS-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/F5-3DNS-MIB # Produced by pysmi-0.3.4 at Wed May 1 13:11:39 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueSizeConstraint, ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint", "SingleValueConstraint") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") Counter32, Counter64, ObjectIdentity, Bits, NotificationType, Unsigned32, Integer32, Gauge32, NotificationType, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, IpAddress, TimeTicks, enterprises, iso, ModuleIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "Counter32", "Counter64", "ObjectIdentity", "Bits", "NotificationType", "Unsigned32", "Integer32", "Gauge32", "NotificationType", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "IpAddress", "TimeTicks", "enterprises", "iso", "ModuleIdentity") TextualConvention, DisplayString, DateAndTime = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString", "DateAndTime") f5 = MibIdentifier((1, 3, 6, 1, 4, 1, 3375)) f5systems = MibIdentifier((1, 3, 6, 1, 4, 1, 3375, 1)) f53dns = MibIdentifier((1, 3, 6, 1, 4, 1, 3375, 1, 2)) f53dnsMIB = MibIdentifier((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1)) f53dnsMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1)) globals = MibIdentifier((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1)) dataCenters = MibIdentifier((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 2)) lbRouters = MibIdentifier((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3)) hosts = MibIdentifier((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4)) lbDnsServs = MibIdentifier((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5)) lbDomains = MibIdentifier((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6)) summary = MibIdentifier((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 7)) threednsTrap = MibIdentifier((1, 3, 6, 1, 4, 1, 3375, 1, 2, 2)) threednsTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 3375, 1, 2, 2, 2)) globalCheckStaticDepends = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalCheckStaticDepends.setStatus('mandatory') if mibBuilder.loadTexts: globalCheckStaticDepends.setDescription('Indicates whether the availability of virtual servers on load-balancing routers and hosts is checked. Normally true, but can be false for testing.') globalDefaultAlternate = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19))).clone(namedValues=NamedValues(("returnDNS", 1), ("none", 2), ("returnVS", 3), ("roundRobin", 4), ("ratio", 5), ("random", 6), ("topology", 7), ("staticPersist", 8), ("globalAvailability", 9), ("servers", 10), ("connections", 11), ("roundTripTime", 12), ("hops", 13), ("packetRate", 14), ("mem", 15), ("cpu", 16), ("diskSpace", 17), ("hitRatio", 18), ("qos", 19)))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalDefaultAlternate.setStatus('mandatory') if mibBuilder.loadTexts: globalDefaultAlternate.setDescription('Default static load balancing mode.') globalTimerGetLBRouterData = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalTimerGetLBRouterData.setStatus('mandatory') if mibBuilder.loadTexts: globalTimerGetLBRouterData.setDescription('Interval in seconds between refreshes of load-balancing router data.') globalTimerGetVServData = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalTimerGetVServData.setStatus('mandatory') if mibBuilder.loadTexts: globalTimerGetVServData.setDescription('Interval in seconds between refreshes of virtual server data.') globalTimerGetPathData = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalTimerGetPathData.setStatus('mandatory') if mibBuilder.loadTexts: globalTimerGetPathData.setDescription('Interval in seconds between refreshes of path data.') globalLBRouterTTL = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalLBRouterTTL.setStatus('mandatory') if mibBuilder.loadTexts: globalLBRouterTTL.setDescription('Amount of time in seconds that load-balancing router data is considered valid for name resolution and load balancing.') globalVSTTL = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalVSTTL.setStatus('mandatory') if mibBuilder.loadTexts: globalVSTTL.setDescription('Amount of time in seconds that virtual server data is considered valid for name resolution and load balancing.') globalPathTTL = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalPathTTL.setStatus('mandatory') if mibBuilder.loadTexts: globalPathTTL.setDescription('Amount of time in seconds that path data is considered valid for name resolution and load balancing.') globalRTTTimeout = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalRTTTimeout.setStatus('mandatory') if mibBuilder.loadTexts: globalRTTTimeout.setDescription('Amount of time in seconds that the RTT listener daemon waits for a probe.') globalRTTSampleCount = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 25))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalRTTSampleCount.setStatus('mandatory') if mibBuilder.loadTexts: globalRTTSampleCount.setDescription('Number of packets to send when measuring round-trip times.') globalRTTPacketLength = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(64, 500))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalRTTPacketLength.setStatus('mandatory') if mibBuilder.loadTexts: globalRTTPacketLength.setDescription('Length in bytes of packets used for measuring round-trip times.') globalRTTProbeProtocol = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("icmp", 1), ("tcp", 2), ("udp", 3), ("dnsnslookupDot", 4), ("dnsRetrieveBindVers", 5), ("numberItems", 6), ("none", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalRTTProbeProtocol.setStatus('mandatory') if mibBuilder.loadTexts: globalRTTProbeProtocol.setDescription('Probing protocol used for measuring round-trip times.') globalEncryption = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalEncryption.setStatus('mandatory') if mibBuilder.loadTexts: globalEncryption.setDescription('Indicates whether encryption is used for iQuery events.') globalEncryptionKeyFile = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 14), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalEncryptionKeyFile.setStatus('mandatory') if mibBuilder.loadTexts: globalEncryptionKeyFile.setDescription('The pathname of the key file used for encryption.') globalPathHiWater = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalPathHiWater.setStatus('mandatory') if mibBuilder.loadTexts: globalPathHiWater.setDescription('Path memory usage level that triggers reaping, in bytes.') globalPathLoWater = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalPathLoWater.setStatus('mandatory') if mibBuilder.loadTexts: globalPathLoWater.setDescription('Path memory usage level at which reaping is discontinued, in bytes.') globalPathDuration = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(3600, 2419200))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalPathDuration.setStatus('mandatory') if mibBuilder.loadTexts: globalPathDuration.setDescription('Interval in seconds between checks of path memory usage to determine whether to reap.') globalPathReapAlg = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("lru", 1), ("fewestHits", 2), ("numberItems", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalPathReapAlg.setStatus('mandatory') if mibBuilder.loadTexts: globalPathReapAlg.setDescription('Algorithm used for selecting paths to be discarded when reaping.') globalTimerKeepAlive = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalTimerKeepAlive.setStatus('mandatory') if mibBuilder.loadTexts: globalTimerKeepAlive.setDescription('Interval in seconds between periodic queries of load-balancing routers.') globalRxBufSize = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(8192, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalRxBufSize.setStatus('mandatory') if mibBuilder.loadTexts: globalRxBufSize.setDescription('Size of each socket receive buffer, in bytes.') globalTxBufSize = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(8192, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalTxBufSize.setStatus('mandatory') if mibBuilder.loadTexts: globalTxBufSize.setDescription('Size of each socket transmit buffer, in bytes.') globalQosCoeffRTT = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalQosCoeffRTT.setStatus('mandatory') if mibBuilder.loadTexts: globalQosCoeffRTT.setDescription('Relative weight given to the round-trip time in the quality of service load balancing mode.') globalQosCoeffCompletionRate = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalQosCoeffCompletionRate.setStatus('mandatory') if mibBuilder.loadTexts: globalQosCoeffCompletionRate.setDescription('Relative weight given to the completion rate in the quality of service load balancing mode.') globalQosCoeffHops = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalQosCoeffHops.setStatus('mandatory') if mibBuilder.loadTexts: globalQosCoeffHops.setDescription('Relative weight given to the hop count in the quality of service load balancing mode.') globalQosCoeffPacketRate = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 25), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalQosCoeffPacketRate.setStatus('mandatory') if mibBuilder.loadTexts: globalQosCoeffPacketRate.setDescription('Relative weight given to the packet rate in the quality of service load balancing mode.') globalPathsNoClobber = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 26), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalPathsNoClobber.setStatus('mandatory') if mibBuilder.loadTexts: globalPathsNoClobber.setDescription('Specifies whether the load-balancing DNS server overwrites existing path data with blank data when a path probe fails.') globalPathsNeverDie = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 27), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalPathsNeverDie.setStatus('mandatory') if mibBuilder.loadTexts: globalPathsNeverDie.setDescription('Specifies whether dynamic load balancing modes can use path data even after the ttl for the path data has expired.') globalRegulateInit = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 28), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalRegulateInit.setStatus('mandatory') if mibBuilder.loadTexts: globalRegulateInit.setDescription('Defines the initial amount of path probe requests 3DNS will send to each big3d after initialization. After the first series of probe requests, 3DNS adjusts the number of future probe requests according to the amount received during the last probe interval (defined by timer_get_path_data) plus the increment defined by regulate_paths.') globalRegulatePaths = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 29), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalRegulatePaths.setStatus('mandatory') if mibBuilder.loadTexts: globalRegulatePaths.setDescription("If zero, no path regulation will be attempted. Every path in the cache that is not fresh will be sent to each big3d every timer_get_path_data seconds. If non-zero, this defines the increment over the amount of path's probed and refreshed over the past interval to determine an upper bound for probe requests to send to each big3d.") globalProberAddr = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 30), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: globalProberAddr.setStatus('mandatory') if mibBuilder.loadTexts: globalProberAddr.setDescription('The default prober for host status.') globalCheckDynamicDepends = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalCheckDynamicDepends.setStatus('mandatory') if mibBuilder.loadTexts: globalCheckDynamicDepends.setDescription('Indicates whether the load-balancing DNS server checks the availability of a path before it uses the path for load balancing.') globalDefaultFallback = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19))).clone(namedValues=NamedValues(("returnDNS", 1), ("none", 2), ("returnVS", 3), ("roundRobin", 4), ("ratio", 5), ("random", 6), ("topology", 7), ("staticPersist", 8), ("globalAvailability", 9), ("servers", 10), ("connections", 11), ("roundTripTime", 12), ("hops", 13), ("packetRate", 14), ("mem", 15), ("cpu", 16), ("diskSpace", 17), ("hitRatio", 18), ("qos", 19)))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalDefaultFallback.setStatus('mandatory') if mibBuilder.loadTexts: globalDefaultFallback.setDescription('The default load balancing mode used for the fallback method.') globalDefaultTTL = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 33), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalDefaultTTL.setStatus('mandatory') if mibBuilder.loadTexts: globalDefaultTTL.setDescription('The amount of time (in seconds) that information is to be used for name resolution and load balancing.') globalPersistLDns = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 34), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalPersistLDns.setStatus('mandatory') if mibBuilder.loadTexts: globalPersistLDns.setDescription("If TRUE (default), then 3DNS will remember all LDNS's that make requests in its cache. This must be TRUE in order to store and use path information.") globalFbRespectAcl = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 35), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalFbRespectAcl.setStatus('mandatory') if mibBuilder.loadTexts: globalFbRespectAcl.setDescription('Indicates whether the load-balancing DNS server imposes access control when load balancing switches to the specified fallback mode.') globalFbRespectDepends = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 36), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalFbRespectDepends.setStatus('mandatory') if mibBuilder.loadTexts: globalFbRespectDepends.setDescription('Indicates whether the load-balancing DNS server respects virtual server status when load balancing switches to the specified fallback mode.') globalHostTTL = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalHostTTL.setStatus('mandatory') if mibBuilder.loadTexts: globalHostTTL.setDescription('The amount of time (in seconds) that host machine information is to be used for name resolution and load balancing.') globalTimerGetHostData = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 38), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalTimerGetHostData.setStatus('mandatory') if mibBuilder.loadTexts: globalTimerGetHostData.setDescription('The interval (in seconds) between refreshes of host information.') globalRTTRetireZero = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 39), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalRTTRetireZero.setStatus('mandatory') if mibBuilder.loadTexts: globalRTTRetireZero.setDescription('Default 0. Coefficient used in custom path prioritization algorithm.') globalRTTPortDiscovery = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalRTTPortDiscovery.setStatus('mandatory') if mibBuilder.loadTexts: globalRTTPortDiscovery.setDescription('Indicates whether the load-balancing DNS server uses the discovery factory to find an alternate port to be used by the probing factory, if probing on port 53 fails.') globalRTTDiscoveryMethod = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 41), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("short", 1), ("wks", 2), ("full", 3), ("all", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalRTTDiscoveryMethod.setStatus('mandatory') if mibBuilder.loadTexts: globalRTTDiscoveryMethod.setDescription('Indicates the set of ports scanned when searching for an alternate port to be used bythe probing factory, if probing on port 53 fails.') globalRTTProbeDynamic = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 42), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalRTTProbeDynamic.setStatus('mandatory') if mibBuilder.loadTexts: globalRTTProbeDynamic.setDescription('Indicates whether the load-balancing DNS server attempts a second probe using the alternate probe protocol if the probe protocol specified by globalRTTProbeProtocol fails during the first probe.') globalResolverRXBufSize = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 43), Integer32().subtype(subtypeSpec=ValueRangeConstraint(8192, 131072))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalResolverRXBufSize.setStatus('mandatory') if mibBuilder.loadTexts: globalResolverRXBufSize.setDescription('The UDP receive buffer size.') globalResolverTXBufSize = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 44), Integer32().subtype(subtypeSpec=ValueRangeConstraint(8192, 32768))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalResolverTXBufSize.setStatus('mandatory') if mibBuilder.loadTexts: globalResolverTXBufSize.setDescription('The TCP send buffer size.') globalCoeffLastAccess = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 45), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 424967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalCoeffLastAccess.setStatus('mandatory') if mibBuilder.loadTexts: globalCoeffLastAccess.setDescription('Default 0. Coefficient used in custom path prioritization algorithm.') globalCoeffFreshRemain = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 46), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 424967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalCoeffFreshRemain.setStatus('mandatory') if mibBuilder.loadTexts: globalCoeffFreshRemain.setDescription('Default 0. Coefficient used in custom path prioritization algorithm.') globalCoeffAccessRefresh = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 47), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 424967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalCoeffAccessRefresh.setStatus('mandatory') if mibBuilder.loadTexts: globalCoeffAccessRefresh.setDescription('Default 0. Coefficient used in custom path prioritization algorithm.') globalCoeffAccessTotal = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 48), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 424967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalCoeffAccessTotal.setStatus('mandatory') if mibBuilder.loadTexts: globalCoeffAccessTotal.setDescription('Default 0. Coefficient used in custom path prioritization algorithm.') globalCoeffDRTT = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 49), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 424967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalCoeffDRTT.setStatus('mandatory') if mibBuilder.loadTexts: globalCoeffDRTT.setDescription('Relative weighting for round trip time when the load balancing mode is set to Quality of Service.') globalCoeffDCompletionRate = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 50), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 424967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalCoeffDCompletionRate.setStatus('mandatory') if mibBuilder.loadTexts: globalCoeffDCompletionRate.setDescription('Default 0. Coefficient used in custom path prioritization algorithm.') globalQosCoeffTopology = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 51), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalQosCoeffTopology.setStatus('mandatory') if mibBuilder.loadTexts: globalQosCoeffTopology.setDescription('Relative weighting for topology when the load balancing mode is set to Quality of Service.') globalQosFactorRTT = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 52), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 424967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalQosFactorRTT.setStatus('mandatory') if mibBuilder.loadTexts: globalQosFactorRTT.setDescription('Factor used to normalize raw RTT values when computing the QOS score.') globalQosFactorHops = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 53), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 424967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalQosFactorHops.setStatus('mandatory') if mibBuilder.loadTexts: globalQosFactorHops.setDescription('Factor used to normalize raw RTT values when computing the QOS score.') globalQosFactorCompletionRate = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 54), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 424967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalQosFactorCompletionRate.setStatus('mandatory') if mibBuilder.loadTexts: globalQosFactorCompletionRate.setDescription('Factor used to normalize raw RTT values when computing the QOS score.') globalQosFactorPacketRate = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 55), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 424967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalQosFactorPacketRate.setStatus('mandatory') if mibBuilder.loadTexts: globalQosFactorPacketRate.setDescription('Factor used to normalize raw RTT values when computing the QOS score.') globalQosFactorTopology = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 56), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 424967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalQosFactorTopology.setStatus('mandatory') if mibBuilder.loadTexts: globalQosFactorTopology.setDescription('Factor used to normalize raw RTT values when computing the QOS score.') globalLDnsHiWater = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 57), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 424967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalLDnsHiWater.setStatus('mandatory') if mibBuilder.loadTexts: globalLDnsHiWater.setDescription('LDNS memory usage level that triggers reaping, in bytes.') globalLDnsLoWater = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 58), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 424967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalLDnsLoWater.setStatus('mandatory') if mibBuilder.loadTexts: globalLDnsLoWater.setDescription('LDNS memory usage level at which reaping is discontinued, in bytes.') globalLDnsDuration = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 59), Integer32().subtype(subtypeSpec=ValueRangeConstraint(3600, 424967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalLDnsDuration.setStatus('mandatory') if mibBuilder.loadTexts: globalLDnsDuration.setDescription('Interval in seconds between checks of LDNS memory usage to determine whether to reap.') globalLDnsReapAlg = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 60), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("lru", 1), ("fewestHits", 2), ("numberItems", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalLDnsReapAlg.setStatus('mandatory') if mibBuilder.loadTexts: globalLDnsReapAlg.setDescription('Algorithm used for selecting LDNS entries to be discarded when reaping.') globalUseAltIqPort = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 61), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalUseAltIqPort.setStatus('mandatory') if mibBuilder.loadTexts: globalUseAltIqPort.setDescription('If true, the registered port 4353 is used for iQuery traffic. If false, the traditional port 245 is used.') globalMultiplexIq = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 62), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalMultiplexIq.setStatus('mandatory') if mibBuilder.loadTexts: globalMultiplexIq.setDescription('If true, port 4353 is used for all incoming iQuery traffic. If false, ports from the ephemeral port range are used.') globalRTTProbeProtocolList = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 63), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalRTTProbeProtocolList.setStatus('mandatory') if mibBuilder.loadTexts: globalRTTProbeProtocolList.setDescription('List of RTT probe protocols to use. The protocols are listed in the order in which they will be attempted. If an attempt to use a specified protocol fails, the next one in the list will be used for a subsequent attempt. If the last protocol in the list fails the first one in the list will then be used.') globalRTTProbeProtocolState = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 64), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: globalRTTProbeProtocolState.setStatus('mandatory') if mibBuilder.loadTexts: globalRTTProbeProtocolState.setDescription('The current RTT probe protocol being used. This will return the name of the protocol being used followed by a number signifying the position of that protocol in the list of protocols returned by globalRTTProbeProtocolList.') globalResetCounters = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 65), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("reset", 1), ("unreset", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: globalResetCounters.setStatus('mandatory') if mibBuilder.loadTexts: globalResetCounters.setDescription('Writing a one to this variable will cause counters within 3DNS to be reset. If the counters have been reset this variable will have a value of 1. If the counters have not been reset the variable will have a value of 2.') globalResetCounterTime = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 1, 66), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: globalResetCounterTime.setStatus('mandatory') if mibBuilder.loadTexts: globalResetCounterTime.setDescription('The time of the last reset of the 3DNS counters. If the counters have not been reset this variable will contain the time when statistic gathering first started.') dataCenterTable = MibTable((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 2, 1), ) if mibBuilder.loadTexts: dataCenterTable.setStatus('mandatory') if mibBuilder.loadTexts: dataCenterTable.setDescription('Information describing the defined data centers.') dataCenterEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 2, 1, 1), ).setIndexNames((0, "F5-3DNS-MIB", "dataCenterName")) if mibBuilder.loadTexts: dataCenterEntry.setStatus('mandatory') if mibBuilder.loadTexts: dataCenterEntry.setDescription('This table contains a row for each data center. The rows are indexed by the names of the data centers.') dataCenterName = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 2, 1, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: dataCenterName.setStatus('mandatory') if mibBuilder.loadTexts: dataCenterName.setDescription('The name of the data center in this row of the table.') dataCenterContact = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 2, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: dataCenterContact.setStatus('mandatory') if mibBuilder.loadTexts: dataCenterContact.setDescription('Contact information for the data center in this row of the table.') dataCenterLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 2, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: dataCenterLocation.setStatus('mandatory') if mibBuilder.loadTexts: dataCenterLocation.setDescription('The location of the data center in this row of the table.') dataCenterPathCount = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 2, 1, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dataCenterPathCount.setStatus('mandatory') if mibBuilder.loadTexts: dataCenterPathCount.setDescription('The number of paths in the data center in this row of the table.') dataCenterDisabled = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 2, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dataCenterDisabled.setStatus('mandatory') if mibBuilder.loadTexts: dataCenterDisabled.setDescription('Is this datacenter disabled. If a datacenter is disabled then all servers within the datacenter are treated as disabled.') dataCenterDisableDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 2, 1, 1, 6), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: dataCenterDisableDuration.setStatus('mandatory') if mibBuilder.loadTexts: dataCenterDisableDuration.setDescription('The duration of a disable of this datacenter.') dataCenterServTable = MibTable((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 2, 2), ) if mibBuilder.loadTexts: dataCenterServTable.setStatus('mandatory') if mibBuilder.loadTexts: dataCenterServTable.setDescription('Information about the servers associated with each data center.') dataCenterServEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 2, 2, 1), ).setIndexNames((0, "F5-3DNS-MIB", "dataCenterName"), (0, "F5-3DNS-MIB", "dataCenterServAddr")) if mibBuilder.loadTexts: dataCenterServEntry.setStatus('mandatory') if mibBuilder.loadTexts: dataCenterServEntry.setDescription('This table contains a row for each server in each data center.') dataCenterServAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 2, 2, 1, 1), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: dataCenterServAddr.setStatus('mandatory') if mibBuilder.loadTexts: dataCenterServAddr.setDescription('The IP address of the server.') dataCenterServType = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 2, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("unknown", 1), ("lbRouter", 2), ("lbDnsServ", 3), ("host", 4), ("lDns", 5), ("prober", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dataCenterServType.setStatus('mandatory') if mibBuilder.loadTexts: dataCenterServType.setDescription('The server type.') lbRouterTable = MibTable((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 1), ) if mibBuilder.loadTexts: lbRouterTable.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterTable.setDescription('Information about the defined load-balancing routers.') lbRouterEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 1, 1), ).setIndexNames((0, "F5-3DNS-MIB", "lbRouterAddr")) if mibBuilder.loadTexts: lbRouterEntry.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterEntry.setDescription("This table contains a row for each load-balancing router known to the system. It is indexed by the router's canonical IP address.") lbRouterAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 1, 1, 1), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterAddr.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterAddr.setDescription("The load-balancing router's canonical IP address.") lbRouterName = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterName.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterName.setDescription("The load-balancing router's name.") lbRouterVServCount = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 1, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterVServCount.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterVServCount.setDescription('The number of virtual servers associated with the load-balancing router.') lbRouterPicks = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 1, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterPicks.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterPicks.setDescription('The number of times the specified load-balancing router has been chosen by the load-balancing DNS server.') lbRouterRefreshes = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 1, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterRefreshes.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterRefreshes.setDescription('The number of times that server and connection counts have been refreshed with new data from the load-balancing router.') lbRouterDisabled = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterDisabled.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterDisabled.setDescription('Is this load -balancing router disabled. If a load-balancing router is disabled then all of its virtual servers are considered to be disabled.') lbRouterDisableDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 1, 1, 7), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterDisableDuration.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterDisableDuration.setDescription('Duration of a disable of this load-balancing router.') lbRouterIQProto = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("tcp", 1), ("udp", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterIQProto.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIQProto.setDescription('IQuery protocol to use for this load-balancing router.') lbRouterIfTable = MibTable((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 2), ) if mibBuilder.loadTexts: lbRouterIfTable.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfTable.setDescription('Information about the network interfaces on a load-balancing router.') lbRouterIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 2, 1), ).setIndexNames((0, "F5-3DNS-MIB", "lbRouterAddr"), (0, "F5-3DNS-MIB", "lbRouterIfAddr")) if mibBuilder.loadTexts: lbRouterIfEntry.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfEntry.setDescription('This table contains a row for each network interface associated with a load-balancing router. It is indexed by the canonical IP address of the router and the specific IP address of the interface.') lbRouterIfAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 2, 1, 1), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterIfAddr.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfAddr.setDescription('The specific IP address of the network interface in this row of the table.') lbRouterIfShared = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterIfShared.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfShared.setDescription('Whether the interface is the shared IP address of the load-balancing router.') lbRouterIfStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("unknown", 1), ("up", 2), ("down", 3), ("waiting", 4), ("alert", 5), ("panic", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterIfStatus.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfStatus.setDescription('The status of the network interface.') lbRouterIfTXPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 2, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterIfTXPackets.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfTXPackets.setDescription('The number of packets that have been transmitted on the network interface.') lbRouterIfRXPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 2, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterIfRXPackets.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfRXPackets.setDescription('The number of packets that have been received on the network interface.') lbRouterIfPacketRate = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 2, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterIfPacketRate.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfPacketRate.setDescription("The interface's current packet rate in packets per second.") lbRouterIfUpTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 2, 1, 7), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterIfUpTime.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfUpTime.setDescription('The amount of time the interface has been up.') lbRouterIfAliveTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 2, 1, 8), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterIfAliveTime.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfAliveTime.setDescription('The most recent date and time when the interface was known to be running.') lbRouterIfDataTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 2, 1, 9), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterIfDataTime.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfDataTime.setDescription('The most recent date and time when data was transmitted through the interface.') lbRouterIfPathSentTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 2, 1, 10), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterIfPathSentTime.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfPathSentTime.setDescription('The date and time when path data corresponding to the interface was most recently sent.') lbRouterIfPathsSent = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 2, 1, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterIfPathsSent.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfPathsSent.setDescription('The number of paths sent in the most recent batch.') lbRouterIfPathsRcvd = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 2, 1, 12), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterIfPathsRcvd.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfPathsRcvd.setDescription('The number of paths received in the most recent batch.') lbRouterIfPathSends = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 2, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterIfPathSends.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfPathSends.setDescription('The number of batches of paths that have been sent.') lbRouterIfPathRcvs = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 2, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterIfPathRcvs.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfPathRcvs.setDescription('The number of batches of paths that have been received.') lbRouterIfAvgPathsSentX1000 = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 2, 1, 15), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterIfAvgPathsSentX1000.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfAvgPathsSentX1000.setDescription('The average sent path batch size, multiplied by 1000.') lbRouterIfAvgPathsRcvdX1000 = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 2, 1, 16), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterIfAvgPathsRcvdX1000.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfAvgPathsRcvdX1000.setDescription('The average received path batch size, multiplied by 1000.') lbRouterIfFctryTable = MibTable((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 3), ) if mibBuilder.loadTexts: lbRouterIfFctryTable.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfFctryTable.setDescription('Information about the factories running on each load-balancing router interface.') lbRouterIfFctryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 3, 1), ).setIndexNames((0, "F5-3DNS-MIB", "lbRouterAddr"), (0, "F5-3DNS-MIB", "lbRouterIfAddr"), (0, "F5-3DNS-MIB", "lbRouterIfFctryType")) if mibBuilder.loadTexts: lbRouterIfFctryEntry.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfFctryEntry.setDescription('This table gives the number of factories of each type that are running on each load-balancing router interface.') lbRouterIfFctryType = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 3, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("lbRouter", 1), ("prober", 2), ("discovery", 3), ("snmp", 4), ("hops", 5), ("server", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterIfFctryType.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfFctryType.setDescription('The type of the factory in this row of the table.') lbRouterIfFctryCount = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 3, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterIfFctryCount.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterIfFctryCount.setDescription('The number of factories of the type corresponding to this row of the table.') lbRouterVServTable = MibTable((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 4), ) if mibBuilder.loadTexts: lbRouterVServTable.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterVServTable.setDescription('Information about the virtual servers associated with each load-balancing router.') lbRouterVServEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 4, 1), ).setIndexNames((0, "F5-3DNS-MIB", "lbRouterAddr"), (0, "F5-3DNS-MIB", "lbRouterVServAddr"), (0, "F5-3DNS-MIB", "lbRouterVServPort")) if mibBuilder.loadTexts: lbRouterVServEntry.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterVServEntry.setDescription('This table contains a row for each virtual server on each load-balancing router. It is indexed by the router address and by the address/port combination that defines the virtual server.') lbRouterVServAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 4, 1, 1), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterVServAddr.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterVServAddr.setDescription('The IP address of the virtual server.') lbRouterVServPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterVServPort.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterVServPort.setDescription('The port number of the virtual server.') lbRouterVServXlatedAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 4, 1, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterVServXlatedAddr.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterVServXlatedAddr.setDescription('The translated (NAT) address of the virtual server.') lbRouterVServXlatedPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 4, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterVServXlatedPort.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterVServXlatedPort.setDescription('The translated (NAT) port number of the virtual server.') lbRouterVServProbeProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 4, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("icmp", 1), ("tcp", 2), ("udp", 3), ("dnsnslookupDot", 4), ("dnsRetrieveBindVers", 5), ("numberItems", 6), ("none", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterVServProbeProtocol.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterVServProbeProtocol.setDescription('The probing protocol used for measuring round-trip times to the virtual server.') lbRouterVServPicks = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 4, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterVServPicks.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterVServPicks.setDescription('The number of times the specified virtual server has been chosen by the load-balancing DNS server.') lbRouterVServRefreshes = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 4, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterVServRefreshes.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterVServRefreshes.setDescription('The number of times that data associated with the virtual server have been refreshed with new information.') lbRouterVServAliveTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 4, 1, 8), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterVServAliveTime.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterVServAliveTime.setDescription('When the virtual server was last known to be up.') lbRouterVServDataTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 4, 1, 9), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterVServDataTime.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterVServDataTime.setDescription('When data was last received from the virtual server.') lbRouterVServCurConns = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 4, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterVServCurConns.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterVServCurConns.setDescription('The current number of connections being processed by the virtual server.') lbRouterVServCurConnLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 4, 1, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterVServCurConnLimit.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterVServCurConnLimit.setDescription('The current connection limit for the virtual server.') lbRouterVServCurNodesUp = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 4, 1, 12), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterVServCurNodesUp.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterVServCurNodesUp.setDescription('The current number of nodes associated with the virtual server that are up.') lbRouterVServCurEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 4, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterVServCurEnabled.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterVServCurEnabled.setDescription('Whether the virtual server is currently enabled.') lbRouterVServDnsServDisabled = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 4, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterVServDnsServDisabled.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterVServDnsServDisabled.setDescription('Whether the virtual server is currently disabled from the load-balancing DNS server.') lbRouterVServDisableDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 3, 4, 1, 15), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbRouterVServDisableDuration.setStatus('mandatory') if mibBuilder.loadTexts: lbRouterVServDisableDuration.setDescription('Duration of a disable of this server by the load-balancing DNS server.') hostTable = MibTable((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1), ) if mibBuilder.loadTexts: hostTable.setStatus('mandatory') if mibBuilder.loadTexts: hostTable.setDescription('Information about the defined hosts other than load-balancing routers.') hostEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1), ).setIndexNames((0, "F5-3DNS-MIB", "hostAddr")) if mibBuilder.loadTexts: hostEntry.setStatus('mandatory') if mibBuilder.loadTexts: hostEntry.setDescription('This table contains a row for each host other than the load-balancing routers. It is indexed by the canonical IP address of each host.') hostAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 1), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostAddr.setStatus('mandatory') if mibBuilder.loadTexts: hostAddr.setDescription('The canonical IP address of the host.') hostName = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: hostName.setStatus('mandatory') if mibBuilder.loadTexts: hostName.setDescription('The name of the host.') hostProber = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostProber.setStatus('mandatory') if mibBuilder.loadTexts: hostProber.setDescription('The IP address of the prober for the host.') hostProbeProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("icmp", 1), ("tcp", 2), ("udp", 3), ("dnsnslookupDot", 4), ("dnsRetrieveBindVers", 5), ("numberItems", 6), ("none", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hostProbeProtocol.setStatus('mandatory') if mibBuilder.loadTexts: hostProbeProtocol.setDescription('The protocol used when probing the host.') hostProbePort = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostProbePort.setStatus('mandatory') if mibBuilder.loadTexts: hostProbePort.setDescription('The port to which probes are directed.') hostVServCount = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostVServCount.setStatus('mandatory') if mibBuilder.loadTexts: hostVServCount.setDescription('The number of virtual servers associated with the host.') hostStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("unknown", 1), ("up", 2), ("down", 3), ("waiting", 4), ("alert", 5), ("panic", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hostStatus.setStatus('mandatory') if mibBuilder.loadTexts: hostStatus.setDescription('The current status of the host.') hostPicks = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostPicks.setStatus('mandatory') if mibBuilder.loadTexts: hostPicks.setDescription('The number of times the host has been chosen by the load-balancing DNS server.') hostRefreshes = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostRefreshes.setStatus('mandatory') if mibBuilder.loadTexts: hostRefreshes.setDescription('The number of times the data from the host has been refreshed with new information.') hostDisabled = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hostDisabled.setStatus('mandatory') if mibBuilder.loadTexts: hostDisabled.setDescription('Is this load host disabled. If a host is disabled then all of its virtual servers are considered to be disabled.') hostDisableDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 11), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostDisableDuration.setStatus('mandatory') if mibBuilder.loadTexts: hostDisableDuration.setDescription('Duration of a disable of this host.') hostMetrics = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("unkown", 1), ("yes", 2), ("no", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hostMetrics.setStatus('mandatory') if mibBuilder.loadTexts: hostMetrics.setDescription('Are Cisco virtual server metrics available for the virtual servers on this host.') hostMemory = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 13), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostMemory.setStatus('mandatory') if mibBuilder.loadTexts: hostMemory.setDescription('Total number of kilobytes of free virtual memory for this host. If this statistic is not available it will have a value of -1.') hostCPU = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostCPU.setStatus('mandatory') if mibBuilder.loadTexts: hostCPU.setDescription('CPU utilization. All CPU utilization is expressed a percentage rounded up to the nearest integer. CPU utilization is computed differently for each SNMP agent. CPU usage is computed for the UCD mib as the load average in the last 5 minutes divided by a configured maximum saturated load average. CPU usage is computed for the Solstice mib as the number of time ticks spent in user and system execution divided by the total number of elapsed time tics. If this statistic is not available it will have a value of -1.') hostDiskSpace = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 15), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostDiskSpace.setStatus('mandatory') if mibBuilder.loadTexts: hostDiskSpace.setDescription('The amount of available disk space for / in kilobytes. If this statistic is not available it will have a value of -1.') hostSNMPConfigured = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 16), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostSNMPConfigured.setStatus('mandatory') if mibBuilder.loadTexts: hostSNMPConfigured.setDescription('Is an SNMP agent configured for this host.') hostSNMPAgentType = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("ciscold", 1), ("ciscold2", 2), ("ciscold3", 3), ("ucd", 4), ("solstice", 5), ("ntserv", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hostSNMPAgentType.setStatus('mandatory') if mibBuilder.loadTexts: hostSNMPAgentType.setDescription('Is an SNMP agent configured for this host.') hostSNMPAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 18), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostSNMPAddress.setStatus('mandatory') if mibBuilder.loadTexts: hostSNMPAddress.setDescription('The IP address of the SNMP agent for this host. If no SNMP agent is configured for this host this will have a value of 0.0.0.0.') hostSNMPPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 19), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostSNMPPort.setStatus('mandatory') if mibBuilder.loadTexts: hostSNMPPort.setDescription('The port for the SNMP agent of this host. If no SNMP agent is configured for this host this will have a value of -1.') hostSNMPRetries = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 20), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostSNMPRetries.setStatus('mandatory') if mibBuilder.loadTexts: hostSNMPRetries.setDescription('Number of retries to use when attempting to query the SNMP agent of this host. If no SNMP agent is configured for this host this will have a value of -1.') hostSNMPTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 21), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostSNMPTimeout.setStatus('mandatory') if mibBuilder.loadTexts: hostSNMPTimeout.setDescription('Time in seconds to wait before retrying a query of the SNMP agent for this host. If no SNMP agent is configured for this host this will have a value of -1.') hostSNMPVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("v1", 1), ("v2", 2), ("v3", 3), ("notset", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hostSNMPVersion.setStatus('mandatory') if mibBuilder.loadTexts: hostSNMPVersion.setDescription('SNMP version number to use when communicating with the SNMP agent for this host. If no SNMP agent is configured for this host this will have a value of -1.') hostSNMPCommunity = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 1, 1, 23), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readonly") if mibBuilder.loadTexts: hostSNMPCommunity.setStatus('mandatory') if mibBuilder.loadTexts: hostSNMPCommunity.setDescription('SNMP community name to use when communicating with the SNMP agent for this host. If no SNMP agent is configured for this host this will have a value of none.') hostIfTable = MibTable((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 2), ) if mibBuilder.loadTexts: hostIfTable.setStatus('mandatory') if mibBuilder.loadTexts: hostIfTable.setDescription('Information about the network interfaces on a host.') hostIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 2, 1), ).setIndexNames((0, "F5-3DNS-MIB", "hostAddr"), (0, "F5-3DNS-MIB", "hostIfAddr")) if mibBuilder.loadTexts: hostIfEntry.setStatus('mandatory') if mibBuilder.loadTexts: hostIfEntry.setDescription('This table contains a row for each network interface associated with a host. It is indexed by the canonical IP address of the host and the specific IP address of the interface.') hostIfAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 2, 1, 1), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostIfAddr.setStatus('mandatory') if mibBuilder.loadTexts: hostIfAddr.setDescription('The specific IP address of the network interface in this row of the table.') hostIfShared = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hostIfShared.setStatus('mandatory') if mibBuilder.loadTexts: hostIfShared.setDescription('Whether the interface is the shared IP address of the host.') hostIfStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("unknown", 1), ("up", 2), ("down", 3), ("waiting", 4), ("alert", 5), ("panic", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hostIfStatus.setStatus('mandatory') if mibBuilder.loadTexts: hostIfStatus.setDescription('The status of the network interface.') hostIfTXPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 2, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostIfTXPackets.setStatus('mandatory') if mibBuilder.loadTexts: hostIfTXPackets.setDescription('The number of packets that have been transmitted on the network interface.') hostIfRXPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 2, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostIfRXPackets.setStatus('mandatory') if mibBuilder.loadTexts: hostIfRXPackets.setDescription('The number of packets that have been received on the network interface.') hostIfUpTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 2, 1, 6), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostIfUpTime.setStatus('mandatory') if mibBuilder.loadTexts: hostIfUpTime.setDescription('The amount of time the interface has been up.') hostIfAliveTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 2, 1, 7), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostIfAliveTime.setStatus('mandatory') if mibBuilder.loadTexts: hostIfAliveTime.setDescription('The most recent date and time when the interface was known to be running.') hostIfDataTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 2, 1, 8), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostIfDataTime.setStatus('mandatory') if mibBuilder.loadTexts: hostIfDataTime.setDescription('The most recent date and time when data was transmitted through the interface.') hostIfPathSentTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 2, 1, 9), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostIfPathSentTime.setStatus('mandatory') if mibBuilder.loadTexts: hostIfPathSentTime.setDescription('The date and time when path data corresponding to the interface was most recently sent.') hostIfPathsSent = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 2, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostIfPathsSent.setStatus('mandatory') if mibBuilder.loadTexts: hostIfPathsSent.setDescription('The number of paths sent in the most recent batch.') hostIfPathsRcvd = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 2, 1, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostIfPathsRcvd.setStatus('mandatory') if mibBuilder.loadTexts: hostIfPathsRcvd.setDescription('The number of paths received in the most recent batch.') hostIfPathSends = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 2, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostIfPathSends.setStatus('mandatory') if mibBuilder.loadTexts: hostIfPathSends.setDescription('The number of batches of paths that have been sent.') hostIfPathRcvs = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 2, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostIfPathRcvs.setStatus('mandatory') if mibBuilder.loadTexts: hostIfPathRcvs.setDescription('The number of batches of paths that have been received.') hostIfAvgPathsSentX1000 = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 2, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostIfAvgPathsSentX1000.setStatus('mandatory') if mibBuilder.loadTexts: hostIfAvgPathsSentX1000.setDescription('The average sent path batch size, multiplied by 1000.') hostIfAvgPathsRcvdX1000 = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 2, 1, 15), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostIfAvgPathsRcvdX1000.setStatus('mandatory') if mibBuilder.loadTexts: hostIfAvgPathsRcvdX1000.setDescription('The average received path batch size, multiplied by 1000.') hostIfFctryTable = MibTable((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 3), ) if mibBuilder.loadTexts: hostIfFctryTable.setStatus('mandatory') if mibBuilder.loadTexts: hostIfFctryTable.setDescription('Information about the factories running on each host interface.') hostIfFctryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 3, 1), ).setIndexNames((0, "F5-3DNS-MIB", "hostAddr"), (0, "F5-3DNS-MIB", "hostIfAddr"), (0, "F5-3DNS-MIB", "hostIfFctryType")) if mibBuilder.loadTexts: hostIfFctryEntry.setStatus('mandatory') if mibBuilder.loadTexts: hostIfFctryEntry.setDescription('This table gives the number of factories of each type that are running on each host interface.') hostIfFctryType = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 3, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("lbRouter", 1), ("prober", 2), ("discovery", 3), ("snmp", 4), ("hops", 5), ("server", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hostIfFctryType.setStatus('mandatory') if mibBuilder.loadTexts: hostIfFctryType.setDescription('The type of the factory in this row of the table.') hostIfFctryCount = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 3, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostIfFctryCount.setStatus('mandatory') if mibBuilder.loadTexts: hostIfFctryCount.setDescription('The number of factories of the type corresponding to this row of the table.') hostVServTable = MibTable((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 4), ) if mibBuilder.loadTexts: hostVServTable.setStatus('mandatory') if mibBuilder.loadTexts: hostVServTable.setDescription('Information about the virtual servers associated with each host.') hostVServEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 4, 1), ).setIndexNames((0, "F5-3DNS-MIB", "hostAddr"), (0, "F5-3DNS-MIB", "hostVServAddr"), (0, "F5-3DNS-MIB", "hostVServPort")) if mibBuilder.loadTexts: hostVServEntry.setStatus('mandatory') if mibBuilder.loadTexts: hostVServEntry.setDescription('This table contains a row for each virtual server on each host other than load-balancing routers. It is indexed by the host address and by the address/port combination that defines the virtual server.') hostVServAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 4, 1, 1), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostVServAddr.setStatus('mandatory') if mibBuilder.loadTexts: hostVServAddr.setDescription('The IP address of the virtual server.') hostVServPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: hostVServPort.setStatus('mandatory') if mibBuilder.loadTexts: hostVServPort.setDescription('The port number of the virtual server.') hostVServXlatedAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 4, 1, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostVServXlatedAddr.setStatus('mandatory') if mibBuilder.loadTexts: hostVServXlatedAddr.setDescription('The translated (NAT) address of the virtual server.') hostVServXlatedPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 4, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostVServXlatedPort.setStatus('mandatory') if mibBuilder.loadTexts: hostVServXlatedPort.setDescription('The translated (NAT) port number of the virtual server.') hostVServProbeProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 4, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("icmp", 1), ("tcp", 2), ("udp", 3), ("dnsnslookupDot", 4), ("dnsRetrieveBindVers", 5), ("numberItems", 6), ("none", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hostVServProbeProtocol.setStatus('mandatory') if mibBuilder.loadTexts: hostVServProbeProtocol.setDescription('The probing protocol used for measuring round-trip times to the virtual server.') hostVServPicks = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 4, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostVServPicks.setStatus('mandatory') if mibBuilder.loadTexts: hostVServPicks.setDescription('The number of times the specified virtual server has been chosen by the load-balancing DNS server.') hostVServRefreshes = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 4, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostVServRefreshes.setStatus('mandatory') if mibBuilder.loadTexts: hostVServRefreshes.setDescription('The number of times that data associated with the virtual server have been refreshed with new information.') hostVServAliveTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 4, 1, 8), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostVServAliveTime.setStatus('mandatory') if mibBuilder.loadTexts: hostVServAliveTime.setDescription('When the virtual server was last known to be up.') hostVServDataTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 4, 1, 9), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostVServDataTime.setStatus('mandatory') if mibBuilder.loadTexts: hostVServDataTime.setDescription('When data was last received from the virtual server.') hostVServDisabled = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 4, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hostVServDisabled.setStatus('mandatory') if mibBuilder.loadTexts: hostVServDisabled.setDescription('Is this virtual server disabled. If a virtual server is disabled it is considered unavailable for load balancing by 3DNS.') hostVServDisableDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 4, 4, 1, 11), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: hostVServDisableDuration.setStatus('mandatory') if mibBuilder.loadTexts: hostVServDisableDuration.setDescription('Disable duration of this virtual server.') lbDnsServTable = MibTable((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 1), ) if mibBuilder.loadTexts: lbDnsServTable.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServTable.setDescription('Information about the load-balancing DNS servers.') lbDnsServEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 1, 1), ).setIndexNames((0, "F5-3DNS-MIB", "lbDnsServAddr")) if mibBuilder.loadTexts: lbDnsServEntry.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServEntry.setDescription("This table contains a row for each load-balancing DNS server, indexed by the server's canonical IP address.") lbDnsServAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 1, 1, 1), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServAddr.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServAddr.setDescription('The canonical IP address of the load-balancing DNS server.') lbDnsServName = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServName.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServName.setDescription('The name of the load-balancing DNS server.') lbDnsServProber = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 1, 1, 3), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServProber.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServProber.setDescription("The IP address of the server's prober.") lbDnsServProbeProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("icmp", 1), ("tcp", 2), ("udp", 3), ("dnsnslookupDot", 4), ("dnsRetrieveBindVers", 5), ("numberItems", 6), ("none", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServProbeProtocol.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServProbeProtocol.setDescription('The The probing protocol used for measuring round-trip times to the server.') lbDnsServProbePort = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 1, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServProbePort.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServProbePort.setDescription('The port to which probes are directed.') lbDnsServStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("unknown", 1), ("up", 2), ("down", 3), ("waiting", 4), ("alert", 5), ("panic", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServStatus.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServStatus.setDescription('The current status of the server.') lbDnsServPicks = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 1, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServPicks.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServPicks.setDescription('The number of times the host has been chosen.') lbDnsServRefreshes = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 1, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServRefreshes.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServRefreshes.setDescription('The number of times the data from the server has been refreshed with new information.') lbDnsServDisabled = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServDisabled.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServDisabled.setDescription('Is this load-balancing DNS server disabled. If a load balancing DNS server is disabled then it is not available for load-balancing and it will not be included in any sync groups.') lbDnsServDisableDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 1, 1, 10), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServDisableDuration.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServDisableDuration.setDescription('Duration of a disable of this load-balancing DNS server.') lbDnsServIQProto = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("tcp", 1), ("udp", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServIQProto.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIQProto.setDescription('Iquery protocol to use for this load-balancing DNS server.') lbDnsServIfTable = MibTable((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 2), ) if mibBuilder.loadTexts: lbDnsServIfTable.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfTable.setDescription('Information about the network interfaces on a load-balancing DNS server.') lbDnsServIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 2, 1), ).setIndexNames((0, "F5-3DNS-MIB", "lbDnsServAddr"), (0, "F5-3DNS-MIB", "lbDnsServIfAddr")) if mibBuilder.loadTexts: lbDnsServIfEntry.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfEntry.setDescription('This table contains a row for each network interface associated with a load-balancing DNS server. It is indexed by the canonical IP address of the server and the specific IP address of the interface.') lbDnsServIfAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 2, 1, 1), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServIfAddr.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfAddr.setDescription('The specific IP address of the network interface in this row of the table.') lbDnsServIfShared = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServIfShared.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfShared.setDescription('Whether the interface is the shared IP address of the server.') lbDnsServIfStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("unknown", 1), ("up", 2), ("down", 3), ("waiting", 4), ("alert", 5), ("panic", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServIfStatus.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfStatus.setDescription('The status of the network interface.') lbDnsServIfTXPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 2, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServIfTXPackets.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfTXPackets.setDescription('The number of packets that have been transmitted on the network interface.') lbDnsServIfRXPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 2, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServIfRXPackets.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfRXPackets.setDescription('The number of packets that have been received on the network interface.') lbDnsServIfUpTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 2, 1, 6), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServIfUpTime.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfUpTime.setDescription('The amount of time the interface has been up.') lbDnsServIfAliveTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 2, 1, 7), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServIfAliveTime.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfAliveTime.setDescription('The most recent date and time when the interface was known to be running.') lbDnsServIfDataTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 2, 1, 8), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServIfDataTime.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfDataTime.setDescription('The most recent date and time when data was transmitted through the interface.') lbDnsServIfPathSentTime = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 2, 1, 9), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServIfPathSentTime.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfPathSentTime.setDescription('The date and time when path data corresponding to the interface was most recently sent.') lbDnsServIfPathsSent = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 2, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServIfPathsSent.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfPathsSent.setDescription('The number of paths sent in the most recent batch.') lbDnsServIfPathsRcvd = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 2, 1, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServIfPathsRcvd.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfPathsRcvd.setDescription('The number of paths received in the most recent batch.') lbDnsServIfPathSends = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 2, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServIfPathSends.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfPathSends.setDescription('The number of batches of paths that have been sent.') lbDnsServIfPathRcvs = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 2, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServIfPathRcvs.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfPathRcvs.setDescription('The number of batches of paths that have been received.') lbDnsServIfAvgPathsSentX1000 = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 2, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServIfAvgPathsSentX1000.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfAvgPathsSentX1000.setDescription('The average sent path batch size, multiplied by 1000.') lbDnsServIfAvgPathsRcvdX1000 = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 2, 1, 15), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServIfAvgPathsRcvdX1000.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfAvgPathsRcvdX1000.setDescription('The average received path batch size, multiplied by 1000.') lbDnsServIfFctryTable = MibTable((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 3), ) if mibBuilder.loadTexts: lbDnsServIfFctryTable.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfFctryTable.setDescription('Information about the factories running on each load-balancing DNS server interface.') lbDnsServIfFctryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 3, 1), ).setIndexNames((0, "F5-3DNS-MIB", "lbDnsServAddr"), (0, "F5-3DNS-MIB", "lbDnsServIfAddr"), (0, "F5-3DNS-MIB", "lbDnsServIfFctryType")) if mibBuilder.loadTexts: lbDnsServIfFctryEntry.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfFctryEntry.setDescription('This table gives the number of factories of each type that are running on each load-balancing DNS server interface.') lbDnsServIfFctryType = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 3, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("lbRouter", 1), ("prober", 2), ("discovery", 3), ("snmp", 4), ("hops", 5), ("server", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServIfFctryType.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfFctryType.setDescription('The type of the factory in this row of the table.') lbDnsServIfFctryCount = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 5, 3, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDnsServIfFctryCount.setStatus('mandatory') if mibBuilder.loadTexts: lbDnsServIfFctryCount.setDescription('The number of factories of the type corresponding to this row of the table.') lbDomainTable = MibTable((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1), ) if mibBuilder.loadTexts: lbDomainTable.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainTable.setDescription('Information about the load-balanced domains.') lbDomainEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1), ).setIndexNames((0, "F5-3DNS-MIB", "lbDomainName")) if mibBuilder.loadTexts: lbDomainEntry.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainEntry.setDescription('This table contains a row for each load-balanced domain. It is indexed by the domain name.') lbDomainName = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainName.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainName.setDescription('The domain name of the load-balanced domain in this row of the table.') lbDomainAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 2), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainAddr.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainAddr.setDescription('The canonical IP address of the load-balanced domain.') lbDomainPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPort.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPort.setDescription("The load-balanced domain's default service port number.") lbDomainTTL = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainTTL.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainTTL.setDescription("The amount of time (in seconds) that the specified domain's information is to be used by the load-balancing DNS server for name resolution and load balancing.") lbDomainLBModePool = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19))).clone(namedValues=NamedValues(("returnDNS", 1), ("none", 2), ("returnVS", 3), ("roundRobin", 4), ("ratio", 5), ("random", 6), ("topology", 7), ("staticPersist", 8), ("globalAvailability", 9), ("servers", 10), ("connections", 11), ("roundTripTime", 12), ("hops", 13), ("packetRate", 14), ("mem", 15), ("cpu", 16), ("diskSpace", 17), ("hitRatio", 18), ("qos", 19)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainLBModePool.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainLBModePool.setDescription('The load balancing mode to use to balance requests over all pools.') lbDomainQosCoeffRTT = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainQosCoeffRTT.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainQosCoeffRTT.setDescription('Relative weighting for round trip time when the load balancing mode is set to Quality of Service.') lbDomainQosCoeffHops = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainQosCoeffHops.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainQosCoeffHops.setDescription('Relative weighting for number of hops when the load balancing mode is set to Quality of Service.') lbDomainQosCoeffTopology = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainQosCoeffTopology.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainQosCoeffTopology.setDescription('Relative weighting for topology when the load balancing mode is set to Quality of Service.') lbDomainQosCoeffCompletionRate = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainQosCoeffCompletionRate.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainQosCoeffCompletionRate.setDescription('Relative weighting for completion rate when the load balancing mode is set to Quality of Service.') lbDomainQosCoeffPacketRate = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainQosCoeffPacketRate.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainQosCoeffPacketRate.setDescription('Relative weighting for packet rate when the load balancing mode is set to Quality of Service.') lbDomainRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainRequests.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainRequests.setDescription('The number of DNS requests for this domain.') lbDomainPreferredResolves = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPreferredResolves.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPreferredResolves.setDescription('The number of times the domain has been resolved using the preferred mode.') lbDomainAlternateResolves = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainAlternateResolves.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainAlternateResolves.setDescription('The number of times the domain has been resolved using the alternate mode.') lbDomainFallbackResolves = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainFallbackResolves.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainFallbackResolves.setDescription('The number of times the domain has been resolved using the fallback mode.') lbDomainReturnsToDns = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainReturnsToDns.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainReturnsToDns.setDescription('The number of times the domain has been resolved using standard DNS.') lbDomainLastResolve = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 16), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainLastResolve.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainLastResolve.setDescription('When the domain was most recently resolved.') lbDomainDisabled = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainDisabled.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainDisabled.setDescription('Is this domain disabled. If a domain is disabled then all name resolution requests are returned to DNS.') lbDomainDisableDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 18), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainDisableDuration.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainDisableDuration.setDescription('The duration of a disable of this domain.') lbDomainPersist = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPersist.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPersist.setDescription("When this is true this domain will maintain connections between LDNS's and virtual servers.") lbDomainPersistTTL = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 1, 1, 20), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPersistTTL.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPersistTTL.setDescription("The duration that the domain will maintain connections between LDNS's and virtual servers.") lbDomainAliasTable = MibTable((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 2), ) if mibBuilder.loadTexts: lbDomainAliasTable.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainAliasTable.setDescription('Information about the domain names serverd by each load-balanced domain.') lbDomainAliasEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 2, 1), ).setIndexNames((0, "F5-3DNS-MIB", "lbDomainName"), (0, "F5-3DNS-MIB", "lbDomainAliasIndex")) if mibBuilder.loadTexts: lbDomainAliasEntry.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainAliasEntry.setDescription('This table contains a row for each domain name associated with a load-balanced domain. The table is indexed by the canonical domain name as well as a numeric index into the list of associated domain names.') lbDomainAliasIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainAliasIndex.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainAliasIndex.setDescription('The index into the list of domain names.') lbDomainAliasName = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 2, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainAliasName.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainAliasName.setDescription('The domain name in this row of the table.') lbDomainAliasRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 2, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainAliasRequests.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainAliasRequests.setDescription('The number of requests for the domain name in this row of the table.') lbDomainPortTable = MibTable((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 3), ) if mibBuilder.loadTexts: lbDomainPortTable.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPortTable.setDescription('Information about the ports associated with a load-balanced domain.') lbDomainPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 3, 1), ).setIndexNames((0, "F5-3DNS-MIB", "lbDomainName"), (0, "F5-3DNS-MIB", "lbDomainPortPort")) if mibBuilder.loadTexts: lbDomainPortEntry.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPortEntry.setDescription('This table contains a row for each port associated with each load-balanced domain. It is indexed by the canonical domain name and by the port number.') lbDomainPortPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPortPort.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPortPort.setDescription('A port number associated with the load-balanced domain.') lbDomainPoolTable = MibTable((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4), ) if mibBuilder.loadTexts: lbDomainPoolTable.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolTable.setDescription('Information about the resource pools associated with each load-balanced domain.') lbDomainPoolEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4, 1), ).setIndexNames((0, "F5-3DNS-MIB", "lbDomainName"), (0, "F5-3DNS-MIB", "lbDomainPoolIndex")) if mibBuilder.loadTexts: lbDomainPoolEntry.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolEntry.setDescription('This table contains a row for each resource pool associated with each load-balanced domain. It is indexed by the canonical domain name as well as by a numeric index specifying the resource pool.') lbDomainPoolIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolIndex.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolIndex.setDescription('A numeric index into the list of resource pools for this domain.') lbDomainPoolName = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolName.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolName.setDescription('The name of the resource pool in this row of the table.') lbDomainPoolType = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("unknown", 1), ("lbRouter", 2), ("host", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolType.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolType.setDescription('The type of the resource pool.') lbDomainPoolState = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("unknown", 1), ("preferred", 2), ("alternate", 3), ("fallback", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolState.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolState.setDescription('The current state of the pool.') lbDomainPoolVSCount = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolVSCount.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolVSCount.setDescription('The number of virtual servers in the pool.') lbDomainPoolLBMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19))).clone(namedValues=NamedValues(("returnDNS", 1), ("none", 2), ("returnVS", 3), ("roundRobin", 4), ("ratio", 5), ("random", 6), ("topology", 7), ("staticPersist", 8), ("globalAvailability", 9), ("servers", 10), ("connections", 11), ("roundTripTime", 12), ("hops", 13), ("packetRate", 14), ("mem", 15), ("cpu", 16), ("diskSpace", 17), ("hitRatio", 18), ("qos", 19)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolLBMode.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolLBMode.setDescription('The preferred load-balancing mode for the pool.') lbDomainPoolAlternateLBMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19))).clone(namedValues=NamedValues(("returnDNS", 1), ("none", 2), ("returnVS", 3), ("roundRobin", 4), ("ratio", 5), ("random", 6), ("topology", 7), ("staticPersist", 8), ("globalAvailability", 9), ("servers", 10), ("connections", 11), ("roundTripTime", 12), ("hops", 13), ("packetRate", 14), ("mem", 15), ("cpu", 16), ("diskSpace", 17), ("hitRatio", 18), ("qos", 19)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolAlternateLBMode.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolAlternateLBMode.setDescription('The alternate load-balancing mode for the pool.') lbDomainPoolFallbackLBMode = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19))).clone(namedValues=NamedValues(("returnDNS", 1), ("none", 2), ("returnVS", 3), ("roundRobin", 4), ("ratio", 5), ("random", 6), ("topology", 7), ("staticPersist", 8), ("globalAvailability", 9), ("servers", 10), ("connections", 11), ("roundTripTime", 12), ("hops", 13), ("packetRate", 14), ("mem", 15), ("cpu", 16), ("diskSpace", 17), ("hitRatio", 18), ("qos", 19)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolFallbackLBMode.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolFallbackLBMode.setDescription('The fallback load-balancing mode for the pool.') lbDomainPoolCheckStaticDepends = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolCheckStaticDepends.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolCheckStaticDepends.setDescription('Indicates whether the availability of virtual servers in the pool is checked.') lbDomainPoolCheckDynamicDepends = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolCheckDynamicDepends.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolCheckDynamicDepends.setDescription('Indicates whether the availability of paths associated with the pool is checked.') lbDomainPoolRatio = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4, 1, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolRatio.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolRatio.setDescription('The default weighting to use with respect to other pools.') lbDomainPoolRipeness = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4, 1, 12), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolRipeness.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolRipeness.setDescription('The counter used to determine whether the pool can be chosen during load balancing when the pool_lbmode is ratio. It is initialized to the pool ratio value, and decremented each time the pool is chosen. When non-zero the pool can be chosen. When zero, the pool will be skipped. When all pools reach zero ripeness, all pool ripeness values are re-initialized to their ratio values.') lbDomainPoolPreferredResolves = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolPreferredResolves.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolPreferredResolves.setDescription('The number of times the pool has been resolved using the preferred mode.') lbDomainPoolAlternateResolves = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolAlternateResolves.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolAlternateResolves.setDescription('The number of times the pool has been resolved using the alternate mode.') lbDomainPoolFallbackResolves = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolFallbackResolves.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolFallbackResolves.setDescription('The number of times the pool has been resolved using the fallback mode.') lbDomainPoolReturnsToDns = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolReturnsToDns.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolReturnsToDns.setDescription('The number of times the pool has been resolved using standard DNS.') lbDomainPoolRRLdns = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolRRLdns.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolRRLdns.setDescription('Enables passing of blocks of ip addresses back to local dns servers.') lbDomainPoolRRLdnsLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 4, 1, 18), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolRRLdnsLimit.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolRRLdnsLimit.setDescription('The limit of the number of addresses to be passed back in an rr_ldns block. There will be no limit if this attribute is 0.') lbDomainPoolVSTable = MibTable((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 5), ) if mibBuilder.loadTexts: lbDomainPoolVSTable.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolVSTable.setDescription('Information about the virtual servers in each resource pool.') lbDomainPoolVSEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 5, 1), ).setIndexNames((0, "F5-3DNS-MIB", "lbDomainName"), (0, "F5-3DNS-MIB", "lbDomainPoolIndex"), (0, "F5-3DNS-MIB", "lbDomainPoolVSAddr"), (0, "F5-3DNS-MIB", "lbDomainPoolVSPort")) if mibBuilder.loadTexts: lbDomainPoolVSEntry.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolVSEntry.setDescription('This table contains a row for each virtual server in each resource pool associated with each load-balanced domain.') lbDomainPoolVSAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 5, 1, 1), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolVSAddr.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolVSAddr.setDescription('The IP address of the virtual server.') lbDomainPoolVSPort = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 5, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolVSPort.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolVSPort.setDescription('The port number of the virtual server.') lbDomainPoolVSRatio = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 5, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolVSRatio.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolVSRatio.setDescription('The weighting to use with respect to other virtual servers in the pool.') lbDomainPoolVSRipeness = MibTableColumn((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 6, 5, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: lbDomainPoolVSRipeness.setStatus('mandatory') if mibBuilder.loadTexts: lbDomainPoolVSRipeness.setDescription('The counter used to determine whether the VS can be chosen during load balancing when the lbmode is ratio. It is initialized to the VS ratio value as specified in the pool, and decremented each time the VS is chosen. When non-zero the VS can be chosen. When zero, the VS will be skipped. When all VS reach zero ripeness, all VS ripeness values are re-initialized to their ratio values.') summaryVersion = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 7, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: summaryVersion.setStatus('mandatory') if mibBuilder.loadTexts: summaryVersion.setDescription('The version number of the system.') summaryUpTime = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 7, 2), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: summaryUpTime.setStatus('mandatory') if mibBuilder.loadTexts: summaryUpTime.setDescription('The elapsed time since the system was last initialized.') summaryDate = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 7, 3), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: summaryDate.setStatus('mandatory') if mibBuilder.loadTexts: summaryDate.setDescription("The system's notion of the local date and time of day.") summaryLastReload = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 7, 4), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: summaryLastReload.setStatus('mandatory') if mibBuilder.loadTexts: summaryLastReload.setDescription('The value of summaryUpTime when the system was most recently commanded to reload its DNS database.') summaryLastDump = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 7, 5), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: summaryLastDump.setStatus('mandatory') if mibBuilder.loadTexts: summaryLastDump.setDescription('The value of summaryUpTime when the system was most recently commanded to dump its database, cache, and status information.') summaryRequests = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 7, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: summaryRequests.setStatus('mandatory') if mibBuilder.loadTexts: summaryRequests.setDescription('The total number of requests received.') summarySyncMode = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 7, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("primary", 1), ("secondary", 2), ("none", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: summarySyncMode.setStatus('mandatory') if mibBuilder.loadTexts: summarySyncMode.setDescription('Whether the system is a primary 3DNS, secondary 3DNS, or neither.') summarySyncFile = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 7, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: summarySyncFile.setStatus('mandatory') if mibBuilder.loadTexts: summarySyncFile.setDescription('The pathname of the file to which sync dumps are written. Valid only if summarySyncMode is primary.') summarySyncIns = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 7, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: summarySyncIns.setStatus('mandatory') if mibBuilder.loadTexts: summarySyncIns.setDescription('The total number of incoming syncs performed.') summarySyncInErrors = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 7, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: summarySyncInErrors.setStatus('mandatory') if mibBuilder.loadTexts: summarySyncInErrors.setDescription('The total number of errors encountered when performing incoming syncs.') summaryLastSyncIn = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 7, 11), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: summaryLastSyncIn.setStatus('mandatory') if mibBuilder.loadTexts: summaryLastSyncIn.setDescription('The value of summaryUpTime when the most recent incoming sync was performed.') summarySyncOuts = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 7, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: summarySyncOuts.setStatus('mandatory') if mibBuilder.loadTexts: summarySyncOuts.setDescription('The total number of outgoing syncs performed.') summarySyncOutErrors = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 7, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: summarySyncOutErrors.setStatus('mandatory') if mibBuilder.loadTexts: summarySyncOutErrors.setDescription('The total number of errors encountered when performing outgoing syncs.') summaryLastSyncOut = MibScalar((1, 3, 6, 1, 4, 1, 3375, 1, 2, 1, 1, 7, 14), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: summaryLastSyncOut.setStatus('mandatory') if mibBuilder.loadTexts: summaryLastSyncOut.setDescription('The value of summaryUpTime when the most recent outgoing sync was performed.') threednsTrapVSGreenToRed = NotificationType((1, 3, 6, 1, 4, 1, 3375, 1, 2, 2, 2) + (0,1)) if mibBuilder.loadTexts: threednsTrapVSGreenToRed.setDescription('Virtual server change from green to red status.') threednsTrapVSRedToGreen = NotificationType((1, 3, 6, 1, 4, 1, 3375, 1, 2, 2, 2) + (0,2)) if mibBuilder.loadTexts: threednsTrapVSRedToGreen.setDescription('Virtual server change from red to green status.') threednsTrapServerRedToGreen = NotificationType((1, 3, 6, 1, 4, 1, 3375, 1, 2, 2, 2) + (0,3)) if mibBuilder.loadTexts: threednsTrapServerRedToGreen.setDescription('Server change from red to green status.') threednsTrapServerGreenToRed = NotificationType((1, 3, 6, 1, 4, 1, 3375, 1, 2, 2, 2) + (0,4)) if mibBuilder.loadTexts: threednsTrapServerGreenToRed.setDescription('Server change from green to red status.') threednsTrapCRCFailure = NotificationType((1, 3, 6, 1, 4, 1, 3375, 1, 2, 2, 2) + (0,5)) if mibBuilder.loadTexts: threednsTrapCRCFailure.setDescription('CRC failure.') mibBuilder.exportSymbols("F5-3DNS-MIB", summaryRequests=summaryRequests, hostIfPathSends=hostIfPathSends, hostTable=hostTable, lbRouterVServProbeProtocol=lbRouterVServProbeProtocol, lbDnsServStatus=lbDnsServStatus, lbDnsServIQProto=lbDnsServIQProto, hostSNMPConfigured=hostSNMPConfigured, f5systems=f5systems, hostIfAliveTime=hostIfAliveTime, summarySyncIns=summarySyncIns, lbDomainAddr=lbDomainAddr, hostIfFctryType=hostIfFctryType, lbDomainPortPort=lbDomainPortPort, globalCoeffDRTT=globalCoeffDRTT, f53dnsMIBObjects=f53dnsMIBObjects, globalQosFactorHops=globalQosFactorHops, hostProber=hostProber, globalQosCoeffTopology=globalQosCoeffTopology, lbDnsServProber=lbDnsServProber, globalPathLoWater=globalPathLoWater, threednsTrap=threednsTrap, hostSNMPCommunity=hostSNMPCommunity, lbDnsServRefreshes=lbDnsServRefreshes, lbRouterIfTXPackets=lbRouterIfTXPackets, globalPathDuration=globalPathDuration, globalRTTPacketLength=globalRTTPacketLength, globalRTTSampleCount=globalRTTSampleCount, globalPathHiWater=globalPathHiWater, hostIfUpTime=hostIfUpTime, lbRouterVServPicks=lbRouterVServPicks, globalTimerKeepAlive=globalTimerKeepAlive, globalFbRespectDepends=globalFbRespectDepends, lbDomainPoolVSRatio=lbDomainPoolVSRatio, dataCenterTable=dataCenterTable, lbDomainPoolReturnsToDns=lbDomainPoolReturnsToDns, dataCenterEntry=dataCenterEntry, hostIfAvgPathsSentX1000=hostIfAvgPathsSentX1000, lbDomainQosCoeffRTT=lbDomainQosCoeffRTT, lbDnsServIfFctryType=lbDnsServIfFctryType, summaryDate=summaryDate, lbRouterVServDataTime=lbRouterVServDataTime, hostVServTable=hostVServTable, lbDnsServIfShared=lbDnsServIfShared, lbDnsServIfFctryTable=lbDnsServIfFctryTable, hostIfEntry=hostIfEntry, lbDomainPoolCheckStaticDepends=lbDomainPoolCheckStaticDepends, globalCoeffAccessRefresh=globalCoeffAccessRefresh, lbDomainQosCoeffPacketRate=lbDomainQosCoeffPacketRate, globalPathReapAlg=globalPathReapAlg, lbDomainPoolType=lbDomainPoolType, globalTxBufSize=globalTxBufSize, lbRouterIfFctryEntry=lbRouterIfFctryEntry, hostIfTable=hostIfTable, lbDomainPoolLBMode=lbDomainPoolLBMode, lbDnsServIfAliveTime=lbDnsServIfAliveTime, lbDomainPoolRatio=lbDomainPoolRatio, lbDomainTable=lbDomainTable, globalCoeffDCompletionRate=globalCoeffDCompletionRate, threednsTrapServerGreenToRed=threednsTrapServerGreenToRed, hostVServPicks=hostVServPicks, lbRouterIfAliveTime=lbRouterIfAliveTime, summarySyncMode=summarySyncMode, lbDomainPoolVSPort=lbDomainPoolVSPort, f5=f5, lbRouterIQProto=lbRouterIQProto, globalEncryptionKeyFile=globalEncryptionKeyFile, globalLBRouterTTL=globalLBRouterTTL, lbDomainQosCoeffHops=lbDomainQosCoeffHops, summarySyncFile=summarySyncFile, hostPicks=hostPicks, lbRouterVServAddr=lbRouterVServAddr, lbDomainPreferredResolves=lbDomainPreferredResolves, globalQosFactorRTT=globalQosFactorRTT, globalRTTProbeProtocol=globalRTTProbeProtocol, lbRouterIfAddr=lbRouterIfAddr, lbRouterIfFctryTable=lbRouterIfFctryTable, lbDnsServIfAddr=lbDnsServIfAddr, summarySyncInErrors=summarySyncInErrors, hostVServProbeProtocol=hostVServProbeProtocol, hostIfStatus=hostIfStatus, globalQosFactorPacketRate=globalQosFactorPacketRate, globalCheckStaticDepends=globalCheckStaticDepends, threednsTrapCRCFailure=threednsTrapCRCFailure, lbDomainTTL=lbDomainTTL, hostDisableDuration=hostDisableDuration, globalVSTTL=globalVSTTL, lbDomainPoolFallbackLBMode=lbDomainPoolFallbackLBMode, lbRouterIfStatus=lbRouterIfStatus, lbRouters=lbRouters, globalUseAltIqPort=globalUseAltIqPort, lbDnsServIfFctryEntry=lbDnsServIfFctryEntry, hostSNMPAgentType=hostSNMPAgentType, lbRouterAddr=lbRouterAddr, hostSNMPPort=hostSNMPPort, lbRouterVServDisableDuration=lbRouterVServDisableDuration, dataCenterLocation=dataCenterLocation, hostIfPathSentTime=hostIfPathSentTime, lbDnsServName=lbDnsServName, globalCheckDynamicDepends=globalCheckDynamicDepends, lbRouterIfEntry=lbRouterIfEntry, threednsTrapServerRedToGreen=threednsTrapServerRedToGreen, hostSNMPTimeout=hostSNMPTimeout, lbDomainQosCoeffTopology=lbDomainQosCoeffTopology, lbDomainAliasEntry=lbDomainAliasEntry, threednsTrapVSGreenToRed=threednsTrapVSGreenToRed, hostIfFctryEntry=hostIfFctryEntry, summarySyncOutErrors=summarySyncOutErrors, lbDnsServIfUpTime=lbDnsServIfUpTime, hostVServAliveTime=hostVServAliveTime, lbDomainLastResolve=lbDomainLastResolve, hostMetrics=hostMetrics, globalResolverTXBufSize=globalResolverTXBufSize, globalTimerGetLBRouterData=globalTimerGetLBRouterData, lbRouterVServCurConnLimit=lbRouterVServCurConnLimit, lbDomainLBModePool=lbDomainLBModePool, lbRouterVServEntry=lbRouterVServEntry, globalQosCoeffCompletionRate=globalQosCoeffCompletionRate, lbRouterIfDataTime=lbRouterIfDataTime, lbRouterIfAvgPathsRcvdX1000=lbRouterIfAvgPathsRcvdX1000, globalCoeffLastAccess=globalCoeffLastAccess, globalQosFactorCompletionRate=globalQosFactorCompletionRate, lbRouterVServXlatedPort=lbRouterVServXlatedPort, hostSNMPRetries=hostSNMPRetries, lbDnsServAddr=lbDnsServAddr, summaryVersion=summaryVersion, lbDomainPoolEntry=lbDomainPoolEntry, lbDnsServIfPathsRcvd=lbDnsServIfPathsRcvd, hostVServPort=hostVServPort, lbRouterIfTable=lbRouterIfTable, globalQosFactorTopology=globalQosFactorTopology, lbRouterVServPort=lbRouterVServPort, globalRTTProbeDynamic=globalRTTProbeDynamic, lbRouterVServCurConns=lbRouterVServCurConns, dataCenterServAddr=dataCenterServAddr, lbDnsServProbePort=lbDnsServProbePort, lbRouterIfPathRcvs=lbRouterIfPathRcvs, lbDomainPoolVSRipeness=lbDomainPoolVSRipeness, summaryLastSyncIn=summaryLastSyncIn, lbRouterEntry=lbRouterEntry, hostIfAvgPathsRcvdX1000=hostIfAvgPathsRcvdX1000, hostProbeProtocol=hostProbeProtocol, globalRTTProbeProtocolList=globalRTTProbeProtocolList, hostMemory=hostMemory, threednsTraps=threednsTraps, lbRouterIfFctryCount=lbRouterIfFctryCount, lbDnsServIfPathsSent=lbDnsServIfPathsSent, lbDomainPoolVSCount=lbDomainPoolVSCount, globalResetCounterTime=globalResetCounterTime, lbRouterVServAliveTime=lbRouterVServAliveTime, globalRTTDiscoveryMethod=globalRTTDiscoveryMethod, lbDomainPortEntry=lbDomainPortEntry, hostVServXlatedAddr=hostVServXlatedAddr, hostIfShared=hostIfShared, lbRouterIfAvgPathsSentX1000=lbRouterIfAvgPathsSentX1000, hostVServDisabled=hostVServDisabled, lbDnsServIfTable=lbDnsServIfTable, lbDnsServIfAvgPathsSentX1000=lbDnsServIfAvgPathsSentX1000, lbDomainPoolIndex=lbDomainPoolIndex, lbDomainPoolTable=lbDomainPoolTable, hosts=hosts, globalQosCoeffRTT=globalQosCoeffRTT, lbRouterVServDnsServDisabled=lbRouterVServDnsServDisabled, globalTimerGetVServData=globalTimerGetVServData, lbRouterVServCount=lbRouterVServCount, summaryLastDump=summaryLastDump, lbDomainName=lbDomainName, lbDnsServEntry=lbDnsServEntry, lbDnsServIfEntry=lbDnsServIfEntry, hostIfDataTime=hostIfDataTime, lbRouterVServCurNodesUp=lbRouterVServCurNodesUp, lbDomainFallbackResolves=lbDomainFallbackResolves, lbDnsServIfPathSends=lbDnsServIfPathSends, summaryLastSyncOut=summaryLastSyncOut, lbRouterDisableDuration=lbRouterDisableDuration, hostName=hostName, globalProberAddr=globalProberAddr, lbDomainPoolRipeness=lbDomainPoolRipeness, lbDnsServIfRXPackets=lbDnsServIfRXPackets, f53dns=f53dns, hostDisabled=hostDisabled, hostIfPathRcvs=hostIfPathRcvs, hostProbePort=hostProbePort, globalRTTPortDiscovery=globalRTTPortDiscovery, hostRefreshes=hostRefreshes, lbDnsServIfStatus=lbDnsServIfStatus, lbRouterIfShared=lbRouterIfShared, dataCenterDisabled=dataCenterDisabled, globalHostTTL=globalHostTTL, lbDnsServIfPathSentTime=lbDnsServIfPathSentTime, lbDomainPoolVSTable=lbDomainPoolVSTable, lbRouterIfFctryType=lbRouterIfFctryType, globalDefaultTTL=globalDefaultTTL, lbDomainAliasIndex=lbDomainAliasIndex, dataCenterContact=dataCenterContact, lbRouterVServTable=lbRouterVServTable, lbDnsServs=lbDnsServs, lbRouterRefreshes=lbRouterRefreshes, lbDnsServIfDataTime=lbDnsServIfDataTime, globalDefaultAlternate=globalDefaultAlternate, lbDomainEntry=lbDomainEntry, dataCenterDisableDuration=dataCenterDisableDuration, lbDnsServDisableDuration=lbDnsServDisableDuration, hostSNMPAddress=hostSNMPAddress, lbRouterIfUpTime=lbRouterIfUpTime, lbRouterIfPacketRate=lbRouterIfPacketRate, lbRouterTable=lbRouterTable, globalCoeffFreshRemain=globalCoeffFreshRemain, globalDefaultFallback=globalDefaultFallback, lbDomainPoolName=lbDomainPoolName, hostIfFctryCount=hostIfFctryCount, globalTimerGetHostData=globalTimerGetHostData, lbDomainDisabled=lbDomainDisabled, dataCenterServTable=dataCenterServTable, globalMultiplexIq=globalMultiplexIq, hostIfTXPackets=hostIfTXPackets, dataCenters=dataCenters, summaryLastReload=summaryLastReload, f53dnsMIB=f53dnsMIB, hostVServCount=hostVServCount, lbDomainQosCoeffCompletionRate=lbDomainQosCoeffCompletionRate, globalPathTTL=globalPathTTL, lbDnsServIfFctryCount=lbDnsServIfFctryCount, lbDomainAliasRequests=lbDomainAliasRequests, lbRouterVServCurEnabled=lbRouterVServCurEnabled, lbDomainAlternateResolves=lbDomainAlternateResolves, lbDomainPoolPreferredResolves=lbDomainPoolPreferredResolves, lbDomainReturnsToDns=lbDomainReturnsToDns, lbDomainPoolAlternateResolves=lbDomainPoolAlternateResolves, lbDomainPoolRRLdnsLimit=lbDomainPoolRRLdnsLimit, globalRTTTimeout=globalRTTTimeout, globalEncryption=globalEncryption, dataCenterName=dataCenterName, lbDomainPortTable=lbDomainPortTable, globalRegulatePaths=globalRegulatePaths, lbDomainPoolCheckDynamicDepends=lbDomainPoolCheckDynamicDepends, lbDomainAliasTable=lbDomainAliasTable, lbDnsServIfPathRcvs=lbDnsServIfPathRcvs, lbDomains=lbDomains, globalFbRespectAcl=globalFbRespectAcl, lbRouterIfPathSends=lbRouterIfPathSends, hostVServDataTime=hostVServDataTime, globalLDnsHiWater=globalLDnsHiWater, hostIfFctryTable=hostIfFctryTable, lbRouterIfRXPackets=lbRouterIfRXPackets, hostIfPathsSent=hostIfPathsSent, dataCenterServType=dataCenterServType, summary=summary, hostVServRefreshes=hostVServRefreshes, lbDnsServIfTXPackets=lbDnsServIfTXPackets, globalPathsNoClobber=globalPathsNoClobber, globalQosCoeffPacketRate=globalQosCoeffPacketRate, hostIfRXPackets=hostIfRXPackets, lbRouterIfPathsRcvd=lbRouterIfPathsRcvd, globalRegulateInit=globalRegulateInit) mibBuilder.exportSymbols("F5-3DNS-MIB", globalLDnsLoWater=globalLDnsLoWater, lbRouterPicks=lbRouterPicks, hostStatus=hostStatus, globalResetCounters=globalResetCounters, lbRouterDisabled=lbRouterDisabled, summarySyncOuts=summarySyncOuts, lbDomainPort=lbDomainPort, lbDomainPoolAlternateLBMode=lbDomainPoolAlternateLBMode, lbDomainPoolVSEntry=lbDomainPoolVSEntry, lbDomainPoolRRLdns=lbDomainPoolRRLdns, globalRxBufSize=globalRxBufSize, lbDomainPoolVSAddr=lbDomainPoolVSAddr, globalQosCoeffHops=globalQosCoeffHops, globalCoeffAccessTotal=globalCoeffAccessTotal, lbDnsServDisabled=lbDnsServDisabled, lbRouterIfPathsSent=lbRouterIfPathsSent, dataCenterPathCount=dataCenterPathCount, hostCPU=hostCPU, lbDomainPersist=lbDomainPersist, globalTimerGetPathData=globalTimerGetPathData, hostVServEntry=hostVServEntry, lbRouterIfPathSentTime=lbRouterIfPathSentTime, globals=globals, lbRouterVServXlatedAddr=lbRouterVServXlatedAddr, hostVServAddr=hostVServAddr, hostDiskSpace=hostDiskSpace, hostIfPathsRcvd=hostIfPathsRcvd, lbDomainPersistTTL=lbDomainPersistTTL, lbDnsServIfAvgPathsRcvdX1000=lbDnsServIfAvgPathsRcvdX1000, lbDomainPoolFallbackResolves=lbDomainPoolFallbackResolves, globalResolverRXBufSize=globalResolverRXBufSize, lbDnsServProbeProtocol=lbDnsServProbeProtocol, globalRTTRetireZero=globalRTTRetireZero, lbRouterName=lbRouterName, lbDnsServTable=lbDnsServTable, lbRouterVServRefreshes=lbRouterVServRefreshes, summaryUpTime=summaryUpTime, globalPathsNeverDie=globalPathsNeverDie, lbDomainDisableDuration=lbDomainDisableDuration, lbDomainPoolState=lbDomainPoolState, hostVServDisableDuration=hostVServDisableDuration, hostVServXlatedPort=hostVServXlatedPort, lbDnsServPicks=lbDnsServPicks, threednsTrapVSRedToGreen=threednsTrapVSRedToGreen, globalLDnsReapAlg=globalLDnsReapAlg, hostEntry=hostEntry, lbDomainAliasName=lbDomainAliasName, dataCenterServEntry=dataCenterServEntry, hostIfAddr=hostIfAddr, globalRTTProbeProtocolState=globalRTTProbeProtocolState, globalLDnsDuration=globalLDnsDuration, globalPersistLDns=globalPersistLDns, hostSNMPVersion=hostSNMPVersion, hostAddr=hostAddr, lbDomainRequests=lbDomainRequests)
#Return the sum of all the multiples of 3 or 5 below the number passed in. def solution(number): lit = [] for i in range(0, number): if i % 3 == 0 or i % 5 == 0: lit.append(i) return sum(lit) #Alternate Solution def solution(number): return sum(x for x in range(number) if x % 3 == 0 or x % 5 == 0)
print('Notas: menor que 5, REPROVADO / entre 5 e 6.9, RECUPERAÇÃO / maior ou igual a 7, APROVADO') nota1 = float(input('Primeira nota: ')) nota2 = float(input('Segunda nota: ')) media = (nota1 + nota2) / 2 if media < 5: print('Sua média é {} e você está REPROVADO!!'.format(media)) elif media >= 5 and media < 7: print('Sua média é {} e você está de RECUPERAÇÃO!!'.format(media)) elif media >= 7: print('Sua média é {} e você está APROVADO!!'.format(media))
class Queue: def __init__(self, initial_values): self.queue = initial_values def enqueue(self, val): self.queue.insert(0, val) def dequeue(self): if self.is_empty(): return None else: return self.queue.pop() def size(self): return len(self.queue) def is_empty(self): return self.size() == 0
# <auto-generated> # This code was generated by the UnitCodeGenerator tool # # Changes to this file will be lost if the code is regenerated # </auto-generated> def to_millilitres(value): return value * 14.786764781249998848 def to_litres(value): return value * 0.014786764781249998848 def to_kilolitres(value): return value * 0.000014786764781249998 def to_teaspoons(value): return value * 2.4980215213991718912 def to_tablespoons(value): return value * 0.83267384046639071232 def to_quarts(value): return value * 0.013010528757287354368 def to_pints(value): return value * 0.026021057514574708736 def to_gallons(value): return value * 0.003252632189321838592 def to_fluid_ounces(value): return value * 0.52042115029149417472 def to_u_s_teaspoons(value): return value * 3.0 def to_u_s_quarts(value): return value / 64.0 def to_u_s_pints(value): return value / 32.0 def to_u_s_gallons(value): return value / 256.0 def to_u_s_fluid_ounces(value): return value / 2.0 def to_u_s_cups(value): return value / 16.0
# Configure schema: 'Column_name': ['List', 'of', 'synonyms'] columns_with_synonyms = { 'Name': ['Mitglied des Landtages'], 'Fraktion': ['Partei', 'Fraktion (ggf. Partei)', ], 'Wahlkreis': ['Landtagswahlkreis der Direktkandidaten', 'Landtagswahlkreis', 'Wahlkreis/Liste', ], 'Kommentar': ['Anmerkung', 'Anmerkungen', 'Bemerkungen', ], 'Bild': ['Foto'], 'Wikipedia-URL': [] } # Automatically generate schema and synonym map for scraper (dev only) schema = list(columns_with_synonyms.keys()) schema_map = {} for column in columns_with_synonyms.keys(): for synonym in columns_with_synonyms[column]: schema_map[synonym] = column
# -*- coding: utf-8 -*- """ Editor de Spyder Este es un archivo temporal. """ #import pdb def biseccion(f, a=-100, b=100, epsilon=0.001, max_iter=100): guess = (a + b) / 2 # Contador de iteraciones num_guesses = 0 #pdb.set_trace() while abs(f(guess)) >= epsilon and num_guesses < max_iter: if f(a)*f(guess) > 0: # Si f(a) y f(guess) tienen el mismo signo, se debe # acortar el intervalo por la izquierda # Tu código acá: a = guess else: # De lo contrario, se acorta por el lado derecho # Tu código acá: b = guess # Siguiente guess en el punto medio del espacio de búsqueda guess = (a + b) / 2 num_guesses += 1 print('Iteraciones: ', num_guesses) print('Solución encontrada: f(%0.4f) = %0.4f' % (guess, f(guess))) return guess f = lambda x: x**2 - x - 1 approx_phi = biseccion(f, a=1, b=2, epsilon=1e-6) print(approx_phi)