content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
#2D Array matrix=[ [1,2,3], [4,5,6], [7,8,9] ] for row in matrix: for col in row: print(col)
matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] for row in matrix: for col in row: print(col)
class Solution: def isPowerOfThree(self, n: int) -> bool: if n <= 0: return False num, remainder = n // 3, n % 3 if not remainder: return self.isPowerOfThree(num) else: return True if not num and remainder == 1 else False
class Solution: def is_power_of_three(self, n: int) -> bool: if n <= 0: return False (num, remainder) = (n // 3, n % 3) if not remainder: return self.isPowerOfThree(num) else: return True if not num and remainder == 1 else False
with open ('text.txt', 'r') as f: names = sorted (name.rstrip ('\n') for name in f) print (names)
with open('text.txt', 'r') as f: names = sorted((name.rstrip('\n') for name in f)) print(names)
# # PySNMP MIB module CXQLLC-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CXQLLC-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 18:17:48 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") ValueSizeConstraint, ValueRangeConstraint, SingleValueConstraint, ConstraintsIntersection, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ValueRangeConstraint", "SingleValueConstraint", "ConstraintsIntersection", "ConstraintsUnion") SapIndex, Alias, ThruputClass, cxQLLC = mibBuilder.importSymbols("CXProduct-SMI", "SapIndex", "Alias", "ThruputClass", "cxQLLC") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") IpAddress, MibScalar, MibTable, MibTableRow, MibTableColumn, ObjectIdentity, iso, Counter32, TimeTicks, Counter64, NotificationType, ModuleIdentity, Gauge32, MibIdentifier, Integer32, Unsigned32, Bits = mibBuilder.importSymbols("SNMPv2-SMI", "IpAddress", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ObjectIdentity", "iso", "Counter32", "TimeTicks", "Counter64", "NotificationType", "ModuleIdentity", "Gauge32", "MibIdentifier", "Integer32", "Unsigned32", "Bits") DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention") class X25Address(DisplayString): subtypeSpec = DisplayString.subtypeSpec + ValueSizeConstraint(0, 15) class PacketSize(Integer32): subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(4, 5, 6, 7, 8, 9, 10, 11, 12)) namedValues = NamedValues(("bytes16", 4), ("bytes32", 5), ("bytes64", 6), ("bytes128", 7), ("bytes256", 8), ("bytes512", 9), ("bytes1024", 10), ("bytes2048", 11), ("bytes4096", 12)) qllcSapTable = MibTable((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 1), ) if mibBuilder.loadTexts: qllcSapTable.setStatus('mandatory') qllcSapEntry = MibTableRow((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 1, 1), ).setIndexNames((0, "CXQLLC-MIB", "qllcSapNumber")) if mibBuilder.loadTexts: qllcSapEntry.setStatus('mandatory') qllcSapNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 1, 1, 1), SapIndex()).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcSapNumber.setStatus('mandatory') qllcSapRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("invalid", 1), ("valid", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: qllcSapRowStatus.setStatus('mandatory') qllcSapType = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("lower", 1), ("upper", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: qllcSapType.setStatus('mandatory') qllcSapAlias = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 1, 1, 4), Alias()).setMaxAccess("readwrite") if mibBuilder.loadTexts: qllcSapAlias.setStatus('mandatory') qllcSapCompanionAlias = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 1, 1, 5), Alias()).setMaxAccess("readwrite") if mibBuilder.loadTexts: qllcSapCompanionAlias.setStatus('mandatory') qllcSapSnalcRef = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: qllcSapSnalcRef.setStatus('mandatory') qllcSapOperationalMode = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 1, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("offline", 1), ("online", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcSapOperationalMode.setStatus('mandatory') qllcDteTable = MibTable((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2), ) if mibBuilder.loadTexts: qllcDteTable.setStatus('mandatory') qllcDteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1), ).setIndexNames((0, "CXQLLC-MIB", "qllcDteSap"), (0, "CXQLLC-MIB", "qllcDteIndex")) if mibBuilder.loadTexts: qllcDteEntry.setStatus('mandatory') qllcDteSap = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 1), SapIndex()).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcDteSap.setStatus('mandatory') qllcDteIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 64))).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcDteIndex.setStatus('mandatory') qllcDteRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("invalid", 1), ("valid", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: qllcDteRowStatus.setStatus('mandatory') qllcDteType = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("terminalInterfaceUnit", 1), ("hostInterfaceUnit", 2))).clone('terminalInterfaceUnit')).setMaxAccess("readwrite") if mibBuilder.loadTexts: qllcDteType.setStatus('mandatory') qllcDteCalledAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 5), X25Address()).setMaxAccess("readwrite") if mibBuilder.loadTexts: qllcDteCalledAddress.setStatus('mandatory') qllcDteCallingAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 6), X25Address()).setMaxAccess("readwrite") if mibBuilder.loadTexts: qllcDteCallingAddress.setStatus('mandatory') qllcDteDBitCall = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2))).clone('yes')).setMaxAccess("readwrite") if mibBuilder.loadTexts: qllcDteDBitCall.setStatus('mandatory') qllcDteWindow = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 7)).clone(7)).setMaxAccess("readwrite") if mibBuilder.loadTexts: qllcDteWindow.setStatus('mandatory') qllcDtePacketSize = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 9), PacketSize().clone('bytes128')).setMaxAccess("readwrite") if mibBuilder.loadTexts: qllcDtePacketSize.setStatus('mandatory') qllcDteThroughput = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 10), ThruputClass().clone('bps9600')).setMaxAccess("readwrite") if mibBuilder.loadTexts: qllcDteThroughput.setStatus('mandatory') qllcDteUserData = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 12))).setMaxAccess("readwrite") if mibBuilder.loadTexts: qllcDteUserData.setStatus('mandatory') qllcDteFacility = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 12), OctetString()).setMaxAccess("readwrite") if mibBuilder.loadTexts: qllcDteFacility.setStatus('mandatory') qllcDteMemotec = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("nonmemotec", 1), ("cx900", 2), ("legacy", 3), ("pvc", 4))).clone('cx900')).setMaxAccess("readwrite") if mibBuilder.loadTexts: qllcDteMemotec.setStatus('mandatory') qllcDtePvc = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2))).clone('no')).setMaxAccess("readwrite") if mibBuilder.loadTexts: qllcDtePvc.setStatus('mandatory') qllcDteConnectMethod = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("userdata", 1), ("callingaddress", 2))).clone('userdata')).setMaxAccess("readwrite") if mibBuilder.loadTexts: qllcDteConnectMethod.setStatus('mandatory') qllcDteControl = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("clearStats", 1)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: qllcDteControl.setStatus('mandatory') qllcDteStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("connected", 1), ("pendingConnect", 2), ("disconnected", 3), ("pendingDisconnect", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcDteStatus.setStatus('mandatory') qllcDteOperationalMode = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("offline", 1), ("online", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcDteOperationalMode.setStatus('mandatory') qllcDteState = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("opened", 1), ("closed", 2), ("xidcmd", 3), ("tstcmd", 4), ("xidrsp", 5), ("tstrsp", 6), ("reset", 7), ("setmode", 8), ("disc", 9), ("reqdisc", 10), ("unknown", 11)))).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcDteState.setStatus('mandatory') qllcDteConnectionType = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("svc", 2), ("pvc", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcDteConnectionType.setStatus('mandatory') qllcDteCalls = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 40), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcDteCalls.setStatus('mandatory') qllcDteClears = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 41), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcDteClears.setStatus('mandatory') qllcDteTxPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 42), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcDteTxPackets.setStatus('mandatory') qllcDteRxPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 43), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcDteRxPackets.setStatus('mandatory') qllcDteQdc = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 44), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcDteQdc.setStatus('mandatory') qllcDteQxid = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 45), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcDteQxid.setStatus('mandatory') qllcDteQua = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 46), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcDteQua.setStatus('mandatory') qllcDteQsm = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 47), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcDteQsm.setStatus('mandatory') qllcDteX25Reset = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 48), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcDteX25Reset.setStatus('mandatory') qllcDteSnalcRnr = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 49), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcDteSnalcRnr.setStatus('mandatory') qllcDteSnalcRr = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 50), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcDteSnalcRr.setStatus('mandatory') qllcDteX25Rnr = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 51), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcDteX25Rnr.setStatus('mandatory') qllcDteX25Rr = MibTableColumn((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 52), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcDteX25Rr.setStatus('mandatory') qllcMibLevel = MibScalar((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: qllcMibLevel.setStatus('mandatory') mibBuilder.exportSymbols("CXQLLC-MIB", qllcDteX25Rnr=qllcDteX25Rnr, qllcSapSnalcRef=qllcSapSnalcRef, qllcMibLevel=qllcMibLevel, qllcSapEntry=qllcSapEntry, qllcDteX25Reset=qllcDteX25Reset, qllcDteCallingAddress=qllcDteCallingAddress, qllcDteFacility=qllcDteFacility, qllcDteSnalcRnr=qllcDteSnalcRnr, qllcDtePvc=qllcDtePvc, qllcDteConnectMethod=qllcDteConnectMethod, qllcDteMemotec=qllcDteMemotec, qllcDteIndex=qllcDteIndex, qllcSapNumber=qllcSapNumber, qllcDteQdc=qllcDteQdc, qllcDteRowStatus=qllcDteRowStatus, qllcSapType=qllcSapType, qllcDteType=qllcDteType, PacketSize=PacketSize, qllcDteThroughput=qllcDteThroughput, qllcDteRxPackets=qllcDteRxPackets, qllcDteX25Rr=qllcDteX25Rr, qllcDteTable=qllcDteTable, qllcSapAlias=qllcSapAlias, qllcDteSap=qllcDteSap, qllcDteTxPackets=qllcDteTxPackets, qllcDteConnectionType=qllcDteConnectionType, qllcDtePacketSize=qllcDtePacketSize, qllcDteCalls=qllcDteCalls, qllcDteEntry=qllcDteEntry, qllcDteUserData=qllcDteUserData, qllcDteOperationalMode=qllcDteOperationalMode, qllcDteCalledAddress=qllcDteCalledAddress, qllcSapRowStatus=qllcSapRowStatus, qllcSapTable=qllcSapTable, qllcDteClears=qllcDteClears, qllcSapCompanionAlias=qllcSapCompanionAlias, qllcSapOperationalMode=qllcSapOperationalMode, qllcDteControl=qllcDteControl, qllcDteStatus=qllcDteStatus, qllcDteQsm=qllcDteQsm, qllcDteWindow=qllcDteWindow, qllcDteState=qllcDteState, qllcDteSnalcRr=qllcDteSnalcRr, qllcDteDBitCall=qllcDteDBitCall, qllcDteQua=qllcDteQua, qllcDteQxid=qllcDteQxid, X25Address=X25Address)
(object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_size_constraint, value_range_constraint, single_value_constraint, constraints_intersection, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ValueRangeConstraint', 'SingleValueConstraint', 'ConstraintsIntersection', 'ConstraintsUnion') (sap_index, alias, thruput_class, cx_qllc) = mibBuilder.importSymbols('CXProduct-SMI', 'SapIndex', 'Alias', 'ThruputClass', 'cxQLLC') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (ip_address, mib_scalar, mib_table, mib_table_row, mib_table_column, object_identity, iso, counter32, time_ticks, counter64, notification_type, module_identity, gauge32, mib_identifier, integer32, unsigned32, bits) = mibBuilder.importSymbols('SNMPv2-SMI', 'IpAddress', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ObjectIdentity', 'iso', 'Counter32', 'TimeTicks', 'Counter64', 'NotificationType', 'ModuleIdentity', 'Gauge32', 'MibIdentifier', 'Integer32', 'Unsigned32', 'Bits') (display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention') class X25Address(DisplayString): subtype_spec = DisplayString.subtypeSpec + value_size_constraint(0, 15) class Packetsize(Integer32): subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(4, 5, 6, 7, 8, 9, 10, 11, 12)) named_values = named_values(('bytes16', 4), ('bytes32', 5), ('bytes64', 6), ('bytes128', 7), ('bytes256', 8), ('bytes512', 9), ('bytes1024', 10), ('bytes2048', 11), ('bytes4096', 12)) qllc_sap_table = mib_table((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 1)) if mibBuilder.loadTexts: qllcSapTable.setStatus('mandatory') qllc_sap_entry = mib_table_row((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 1, 1)).setIndexNames((0, 'CXQLLC-MIB', 'qllcSapNumber')) if mibBuilder.loadTexts: qllcSapEntry.setStatus('mandatory') qllc_sap_number = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 1, 1, 1), sap_index()).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcSapNumber.setStatus('mandatory') qllc_sap_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('invalid', 1), ('valid', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: qllcSapRowStatus.setStatus('mandatory') qllc_sap_type = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('lower', 1), ('upper', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: qllcSapType.setStatus('mandatory') qllc_sap_alias = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 1, 1, 4), alias()).setMaxAccess('readwrite') if mibBuilder.loadTexts: qllcSapAlias.setStatus('mandatory') qllc_sap_companion_alias = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 1, 1, 5), alias()).setMaxAccess('readwrite') if mibBuilder.loadTexts: qllcSapCompanionAlias.setStatus('mandatory') qllc_sap_snalc_ref = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: qllcSapSnalcRef.setStatus('mandatory') qllc_sap_operational_mode = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 1, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('offline', 1), ('online', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcSapOperationalMode.setStatus('mandatory') qllc_dte_table = mib_table((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2)) if mibBuilder.loadTexts: qllcDteTable.setStatus('mandatory') qllc_dte_entry = mib_table_row((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1)).setIndexNames((0, 'CXQLLC-MIB', 'qllcDteSap'), (0, 'CXQLLC-MIB', 'qllcDteIndex')) if mibBuilder.loadTexts: qllcDteEntry.setStatus('mandatory') qllc_dte_sap = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 1), sap_index()).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcDteSap.setStatus('mandatory') qllc_dte_index = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 64))).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcDteIndex.setStatus('mandatory') qllc_dte_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('invalid', 1), ('valid', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: qllcDteRowStatus.setStatus('mandatory') qllc_dte_type = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('terminalInterfaceUnit', 1), ('hostInterfaceUnit', 2))).clone('terminalInterfaceUnit')).setMaxAccess('readwrite') if mibBuilder.loadTexts: qllcDteType.setStatus('mandatory') qllc_dte_called_address = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 5), x25_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: qllcDteCalledAddress.setStatus('mandatory') qllc_dte_calling_address = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 6), x25_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: qllcDteCallingAddress.setStatus('mandatory') qllc_dte_d_bit_call = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2))).clone('yes')).setMaxAccess('readwrite') if mibBuilder.loadTexts: qllcDteDBitCall.setStatus('mandatory') qllc_dte_window = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(1, 7)).clone(7)).setMaxAccess('readwrite') if mibBuilder.loadTexts: qllcDteWindow.setStatus('mandatory') qllc_dte_packet_size = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 9), packet_size().clone('bytes128')).setMaxAccess('readwrite') if mibBuilder.loadTexts: qllcDtePacketSize.setStatus('mandatory') qllc_dte_throughput = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 10), thruput_class().clone('bps9600')).setMaxAccess('readwrite') if mibBuilder.loadTexts: qllcDteThroughput.setStatus('mandatory') qllc_dte_user_data = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 12))).setMaxAccess('readwrite') if mibBuilder.loadTexts: qllcDteUserData.setStatus('mandatory') qllc_dte_facility = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 12), octet_string()).setMaxAccess('readwrite') if mibBuilder.loadTexts: qllcDteFacility.setStatus('mandatory') qllc_dte_memotec = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('nonmemotec', 1), ('cx900', 2), ('legacy', 3), ('pvc', 4))).clone('cx900')).setMaxAccess('readwrite') if mibBuilder.loadTexts: qllcDteMemotec.setStatus('mandatory') qllc_dte_pvc = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2))).clone('no')).setMaxAccess('readwrite') if mibBuilder.loadTexts: qllcDtePvc.setStatus('mandatory') qllc_dte_connect_method = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('userdata', 1), ('callingaddress', 2))).clone('userdata')).setMaxAccess('readwrite') if mibBuilder.loadTexts: qllcDteConnectMethod.setStatus('mandatory') qllc_dte_control = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('clearStats', 1)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: qllcDteControl.setStatus('mandatory') qllc_dte_status = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('connected', 1), ('pendingConnect', 2), ('disconnected', 3), ('pendingDisconnect', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcDteStatus.setStatus('mandatory') qllc_dte_operational_mode = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('offline', 1), ('online', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcDteOperationalMode.setStatus('mandatory') qllc_dte_state = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 32), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('opened', 1), ('closed', 2), ('xidcmd', 3), ('tstcmd', 4), ('xidrsp', 5), ('tstrsp', 6), ('reset', 7), ('setmode', 8), ('disc', 9), ('reqdisc', 10), ('unknown', 11)))).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcDteState.setStatus('mandatory') qllc_dte_connection_type = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('svc', 2), ('pvc', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcDteConnectionType.setStatus('mandatory') qllc_dte_calls = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 40), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcDteCalls.setStatus('mandatory') qllc_dte_clears = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 41), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcDteClears.setStatus('mandatory') qllc_dte_tx_packets = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 42), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcDteTxPackets.setStatus('mandatory') qllc_dte_rx_packets = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 43), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcDteRxPackets.setStatus('mandatory') qllc_dte_qdc = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 44), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcDteQdc.setStatus('mandatory') qllc_dte_qxid = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 45), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcDteQxid.setStatus('mandatory') qllc_dte_qua = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 46), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcDteQua.setStatus('mandatory') qllc_dte_qsm = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 47), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcDteQsm.setStatus('mandatory') qllc_dte_x25_reset = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 48), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcDteX25Reset.setStatus('mandatory') qllc_dte_snalc_rnr = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 49), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcDteSnalcRnr.setStatus('mandatory') qllc_dte_snalc_rr = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 50), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcDteSnalcRr.setStatus('mandatory') qllc_dte_x25_rnr = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 51), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcDteX25Rnr.setStatus('mandatory') qllc_dte_x25_rr = mib_table_column((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 2, 1, 52), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcDteX25Rr.setStatus('mandatory') qllc_mib_level = mib_scalar((1, 3, 6, 1, 4, 1, 495, 2, 1, 6, 38, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: qllcMibLevel.setStatus('mandatory') mibBuilder.exportSymbols('CXQLLC-MIB', qllcDteX25Rnr=qllcDteX25Rnr, qllcSapSnalcRef=qllcSapSnalcRef, qllcMibLevel=qllcMibLevel, qllcSapEntry=qllcSapEntry, qllcDteX25Reset=qllcDteX25Reset, qllcDteCallingAddress=qllcDteCallingAddress, qllcDteFacility=qllcDteFacility, qllcDteSnalcRnr=qllcDteSnalcRnr, qllcDtePvc=qllcDtePvc, qllcDteConnectMethod=qllcDteConnectMethod, qllcDteMemotec=qllcDteMemotec, qllcDteIndex=qllcDteIndex, qllcSapNumber=qllcSapNumber, qllcDteQdc=qllcDteQdc, qllcDteRowStatus=qllcDteRowStatus, qllcSapType=qllcSapType, qllcDteType=qllcDteType, PacketSize=PacketSize, qllcDteThroughput=qllcDteThroughput, qllcDteRxPackets=qllcDteRxPackets, qllcDteX25Rr=qllcDteX25Rr, qllcDteTable=qllcDteTable, qllcSapAlias=qllcSapAlias, qllcDteSap=qllcDteSap, qllcDteTxPackets=qllcDteTxPackets, qllcDteConnectionType=qllcDteConnectionType, qllcDtePacketSize=qllcDtePacketSize, qllcDteCalls=qllcDteCalls, qllcDteEntry=qllcDteEntry, qllcDteUserData=qllcDteUserData, qllcDteOperationalMode=qllcDteOperationalMode, qllcDteCalledAddress=qllcDteCalledAddress, qllcSapRowStatus=qllcSapRowStatus, qllcSapTable=qllcSapTable, qllcDteClears=qllcDteClears, qllcSapCompanionAlias=qllcSapCompanionAlias, qllcSapOperationalMode=qllcSapOperationalMode, qllcDteControl=qllcDteControl, qllcDteStatus=qllcDteStatus, qllcDteQsm=qllcDteQsm, qllcDteWindow=qllcDteWindow, qllcDteState=qllcDteState, qllcDteSnalcRr=qllcDteSnalcRr, qllcDteDBitCall=qllcDteDBitCall, qllcDteQua=qllcDteQua, qllcDteQxid=qllcDteQxid, X25Address=X25Address)
''' openarm Python library configurations ''' # protocol HEAD = 0x5a # debug DEBUG = False
""" openarm Python library configurations """ head = 90 debug = False
''' Navigator's kill board communicates over serial using the hex codes listed below. This should be the same as the codes on: http://docs.mil.ufl.edu/pages/viewpage.action?spaceKey=NAV&title=Kill+Communication+Commands The board can operate both in a request / response way, or it can be periodically pinged and will respond with many bytes indicating the status of all addresses. For the ping/Async method, send PING, than continue to read the buffer and parse the various response bytes below. For the sync / request method, send the REQUEST byte for whatever addresses you are interested in, then read a 1 byte response for either RESPONSE_FALSE or RESPONSE_TRUE The computer can also command a kill (for example, if ROS notices a criticaly low battery) by sending the COMPUTER.KILL.REQUEST and undone with COMPUTER.CLEAR.REQUEST ''' constants = { 'TIMEOUT_SECONDS': 8.0, # How often board must be pinged to not set HEARTBERAT_REMOTE True # Note: not official documented, this is just a guess 'RESPONSE_FALSE': '\x00', # True status for synchronous requests of individual addresses 'RESPONSE_TRUE': '\x01', # False status for synchronous requests of individual addresses 'PING': { 'REQUEST': '\x20', 'RESPONSE': '\x30' }, 'KILLS': ['OVERALL', 'BUTTON_FRONT_PORT', 'BUTTON_AFT_PORT', 'BUTTON_FRONT_STARBOARD',\ 'BUTTON_AFT_STARBOARD', 'HEARTBEAT_COMPUTER', 'BUTTON_REMOTE',\ 'HEARTBEAT_REMOTE', 'COMPUTER'], 'OVERALL': { # Should be True if any of the over are True 'REQUEST': '\x21', 'TRUE': '\x10', 'FALSE': '\x11' }, 'BUTTON_FRONT_PORT': { 'REQUEST': '\x22', 'TRUE': '\x12', 'FALSE': '\x13' }, 'BUTTON_AFT_PORT': { 'REQUEST': '\x23', 'TRUE': '\x14', 'FALSE': '\x15' }, 'BUTTON_FRONT_STARBOARD': { 'REQUEST': '\x24', 'TRUE': '\x16', 'FALSE': '\x17' }, 'BUTTON_AFT_STARBOARD': { 'REQUEST': '\x25', 'TRUE': '\x18', 'FALSE': '\x19' }, 'HEARTBEAT_COMPUTER': { # Will return True if board is not pinged by mobo often enough 'REQUEST': '\x26', 'TRUE': '\x1A', 'FALSE': '\x1B' }, 'BUTTON_REMOTE': { 'REQUEST': '\x28', 'TRUE': '\x3A', 'FALSE': '\x3B' }, 'HEARTBEAT_REMOTE': { # Will return True if board is not pinged by controller often enough 'REQUEST': '\x29', 'TRUE': '\x3C', 'FALSE': '\x3D' }, 'COMPUTER': { # Allows board to be killed over serial (like through ROS) 'KILL': { 'REQUEST': '\x45', 'RESPONSE': '\x55' }, 'CLEAR': { 'REQUEST': '\x46', 'RESPONSE': '\x56' }, 'REQUEST': '\x27', 'TRUE': '\x1C', 'FALSE': '\x1D' }, 'CONNECTED': { 'TRUE': '\x1E', 'FALSE': '\x1F' }, 'LIGHTS': { # Note: YELLOW turns off GREEN and visa versa 'OFF_REQUEST': '\x40', 'OFF_RESPONSE': '\x50', 'YELLOW_REQUEST': '\x41', 'YELLOW_RESPONSE': '\x51', 'GREEN_REQUEST': '\x42', 'GREEN_RESPONSE': '\x52', }, 'CONTROLLER': '\xA0', # Signifies the start of a controller message (joysticks & buttons) # Immediately followed by 8 bytes: 6 joystick bytes, 2 button bytes # Joystick message is 3 signed ints from -2048 to 2047 # Button message is 16 bits signifying up to 16 buttons on/off 'CTRL_STICKS': ['UD', 'LR', 'TQ'], # Up/Down, Left/Right, Torque 'CTRL_BUTTONS': ['X', 'Y', 'A', 'B', 'DL', 'DR', 'START'], 'CTRL_BUTTONS_VALUES': { # Amount of buttons and labels will be changed in the future # This currently mimics xbox controller labels and numbering 'X': '\x00\x04', # Button 2 'Y': '\x00\x08', # Button 3 'A': '\x00\x01', # Button 0 'B': '\x00\x02', # Button 1 'DL': '\x08\x00', # Dpad Left (Button 11) 'DR': '\x10\x00', # Dpad Right (Button 12) 'START': '\x00\x80', # Start (Button 7) } }
""" Navigator's kill board communicates over serial using the hex codes listed below. This should be the same as the codes on: http://docs.mil.ufl.edu/pages/viewpage.action?spaceKey=NAV&title=Kill+Communication+Commands The board can operate both in a request / response way, or it can be periodically pinged and will respond with many bytes indicating the status of all addresses. For the ping/Async method, send PING, than continue to read the buffer and parse the various response bytes below. For the sync / request method, send the REQUEST byte for whatever addresses you are interested in, then read a 1 byte response for either RESPONSE_FALSE or RESPONSE_TRUE The computer can also command a kill (for example, if ROS notices a criticaly low battery) by sending the COMPUTER.KILL.REQUEST and undone with COMPUTER.CLEAR.REQUEST """ constants = {'TIMEOUT_SECONDS': 8.0, 'RESPONSE_FALSE': '\x00', 'RESPONSE_TRUE': '\x01', 'PING': {'REQUEST': ' ', 'RESPONSE': '0'}, 'KILLS': ['OVERALL', 'BUTTON_FRONT_PORT', 'BUTTON_AFT_PORT', 'BUTTON_FRONT_STARBOARD', 'BUTTON_AFT_STARBOARD', 'HEARTBEAT_COMPUTER', 'BUTTON_REMOTE', 'HEARTBEAT_REMOTE', 'COMPUTER'], 'OVERALL': {'REQUEST': '!', 'TRUE': '\x10', 'FALSE': '\x11'}, 'BUTTON_FRONT_PORT': {'REQUEST': '"', 'TRUE': '\x12', 'FALSE': '\x13'}, 'BUTTON_AFT_PORT': {'REQUEST': '#', 'TRUE': '\x14', 'FALSE': '\x15'}, 'BUTTON_FRONT_STARBOARD': {'REQUEST': '$', 'TRUE': '\x16', 'FALSE': '\x17'}, 'BUTTON_AFT_STARBOARD': {'REQUEST': '%', 'TRUE': '\x18', 'FALSE': '\x19'}, 'HEARTBEAT_COMPUTER': {'REQUEST': '&', 'TRUE': '\x1a', 'FALSE': '\x1b'}, 'BUTTON_REMOTE': {'REQUEST': '(', 'TRUE': ':', 'FALSE': ';'}, 'HEARTBEAT_REMOTE': {'REQUEST': ')', 'TRUE': '<', 'FALSE': '='}, 'COMPUTER': {'KILL': {'REQUEST': 'E', 'RESPONSE': 'U'}, 'CLEAR': {'REQUEST': 'F', 'RESPONSE': 'V'}, 'REQUEST': "'", 'TRUE': '\x1c', 'FALSE': '\x1d'}, 'CONNECTED': {'TRUE': '\x1e', 'FALSE': '\x1f'}, 'LIGHTS': {'OFF_REQUEST': '@', 'OFF_RESPONSE': 'P', 'YELLOW_REQUEST': 'A', 'YELLOW_RESPONSE': 'Q', 'GREEN_REQUEST': 'B', 'GREEN_RESPONSE': 'R'}, 'CONTROLLER': '\xa0', 'CTRL_STICKS': ['UD', 'LR', 'TQ'], 'CTRL_BUTTONS': ['X', 'Y', 'A', 'B', 'DL', 'DR', 'START'], 'CTRL_BUTTONS_VALUES': {'X': '\x00\x04', 'Y': '\x00\x08', 'A': '\x00\x01', 'B': '\x00\x02', 'DL': '\x08\x00', 'DR': '\x10\x00', 'START': '\x00\x80'}}
# -*- coding: utf-8 class History(object): requests = [] responses = [] _instance = None @classmethod def instance(cls): if not cls._instance: cls._instance = cls() return cls._instance def add_response(self, response_obj): self.responses.append(response_obj) def add_request(self, request_obj): self.requests.append(request_obj) @property def request(self): if len(self.requests) == 0: return None else: return self.requests[-1] @property def response(self): if len(self.responses) == 0: return None else: return self.responses[-1] def clear(self): del self.requests[:] del self.responses[:]
class History(object): requests = [] responses = [] _instance = None @classmethod def instance(cls): if not cls._instance: cls._instance = cls() return cls._instance def add_response(self, response_obj): self.responses.append(response_obj) def add_request(self, request_obj): self.requests.append(request_obj) @property def request(self): if len(self.requests) == 0: return None else: return self.requests[-1] @property def response(self): if len(self.responses) == 0: return None else: return self.responses[-1] def clear(self): del self.requests[:] del self.responses[:]
# # PySNMP MIB module RADLAN-DOT1X-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/RADLAN-DOT1X-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 20:38:04 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") ValueRangeConstraint, ValueSizeConstraint, SingleValueConstraint, ConstraintsUnion, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ValueSizeConstraint", "SingleValueConstraint", "ConstraintsUnion", "ConstraintsIntersection") MacAddress, = mibBuilder.importSymbols("BRIDGE-MIB", "MacAddress") PaeControlledPortStatus, dot1xAuthSessionStatsEntry, dot1xPaePortNumber = mibBuilder.importSymbols("IEEE8021-PAE-MIB", "PaeControlledPortStatus", "dot1xAuthSessionStatsEntry", "dot1xPaePortNumber") PortList, dot1qFdbId, VlanIndex = mibBuilder.importSymbols("Q-BRIDGE-MIB", "PortList", "dot1qFdbId", "VlanIndex") rnd, = mibBuilder.importSymbols("RADLAN-MIB", "rnd") SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") iso, ModuleIdentity, Integer32, Gauge32, ObjectIdentity, Counter64, IpAddress, Bits, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, NotificationType, TimeTicks, Counter32 = mibBuilder.importSymbols("SNMPv2-SMI", "iso", "ModuleIdentity", "Integer32", "Gauge32", "ObjectIdentity", "Counter64", "IpAddress", "Bits", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "NotificationType", "TimeTicks", "Counter32") TextualConvention, TruthValue, RowStatus, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "TruthValue", "RowStatus", "DisplayString") rldot1x = ModuleIdentity((1, 3, 6, 1, 4, 1, 89, 95)) rldot1x.setRevisions(('2007-01-02 00:00',)) if mibBuilder.loadTexts: rldot1x.setLastUpdated('200701020000Z') if mibBuilder.loadTexts: rldot1x.setOrganization('Radlan - a MARVELL company. Marvell Semiconductor, Inc.') rldot1xMibVersion = MibScalar((1, 3, 6, 1, 4, 1, 89, 95, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xMibVersion.setStatus('current') rldot1xExtAuthSessionStatsTable = MibTable((1, 3, 6, 1, 4, 1, 89, 95, 2), ) if mibBuilder.loadTexts: rldot1xExtAuthSessionStatsTable.setStatus('current') rldot1xExtAuthSessionStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 89, 95, 2, 1), ) dot1xAuthSessionStatsEntry.registerAugmentions(("RADLAN-DOT1X-MIB", "rldot1xExtAuthSessionStatsEntry")) rldot1xExtAuthSessionStatsEntry.setIndexNames(*dot1xAuthSessionStatsEntry.getIndexNames()) if mibBuilder.loadTexts: rldot1xExtAuthSessionStatsEntry.setStatus('current') rlDot1xAuthSessionAuthenticMethod = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("remoteAuthServer", 1), ("localAuthServer", 2), ("none", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: rlDot1xAuthSessionAuthenticMethod.setStatus('current') rldot1xGuestVlanSupported = MibScalar((1, 3, 6, 1, 4, 1, 89, 95, 3), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xGuestVlanSupported.setStatus('current') rldot1xGuestVlanVID = MibScalar((1, 3, 6, 1, 4, 1, 89, 95, 4), VlanIndex()).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xGuestVlanVID.setStatus('current') rldot1xGuestVlanPorts = MibScalar((1, 3, 6, 1, 4, 1, 89, 95, 5), PortList()).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xGuestVlanPorts.setStatus('current') rldot1xUnAuthenticatedVlanSupported = MibScalar((1, 3, 6, 1, 4, 1, 89, 95, 6), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xUnAuthenticatedVlanSupported.setStatus('current') rldot1xUnAuthenticatedVlanTable = MibTable((1, 3, 6, 1, 4, 1, 89, 95, 7), ) if mibBuilder.loadTexts: rldot1xUnAuthenticatedVlanTable.setStatus('current') rldot1xUnAuthenticatedVlanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 89, 95, 7, 1), ).setIndexNames((0, "Q-BRIDGE-MIB", "dot1qFdbId")) if mibBuilder.loadTexts: rldot1xUnAuthenticatedVlanEntry.setStatus('current') rldot1xUnAuthenticatedVlanStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 7, 1, 1), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: rldot1xUnAuthenticatedVlanStatus.setStatus('current') rldot1xUserBasedVlanSupported = MibScalar((1, 3, 6, 1, 4, 1, 89, 95, 8), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xUserBasedVlanSupported.setStatus('current') rldot1xUserBasedVlanPorts = MibScalar((1, 3, 6, 1, 4, 1, 89, 95, 9), PortList()).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xUserBasedVlanPorts.setStatus('current') rldot1xAuthenticationPortTable = MibTable((1, 3, 6, 1, 4, 1, 89, 95, 10), ) if mibBuilder.loadTexts: rldot1xAuthenticationPortTable.setStatus('current') rldot1xAuthenticationPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 89, 95, 10, 1), ).setIndexNames((0, "IEEE8021-PAE-MIB", "dot1xPaePortNumber")) if mibBuilder.loadTexts: rldot1xAuthenticationPortEntry.setStatus('current') rldot1xAuthenticationPortMethod = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("eapolOnly", 1), ("macAndEapol", 2), ("macOnly", 3), ("webOnly", 4), ("webAndEapol", 5), ("webAndMac", 6), ("webAndMacAndEapol", 7))).clone('eapolOnly')).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xAuthenticationPortMethod.setStatus('current') rldot1xRadiusAttrVlanIdEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 2), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xRadiusAttrVlanIdEnabled.setStatus('current') rldot1xRadiusAttAclNameEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 3), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xRadiusAttAclNameEnabled.setStatus('current') rldot1xTimeBasedName = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 4), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xTimeBasedName.setStatus('current') rldot1xTimeBasedActive = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 5), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xTimeBasedActive.setStatus('current') rldot1xRadiusAttrVlanIdentifier = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 6), VlanIndex()).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xRadiusAttrVlanIdentifier.setStatus('current') rldot1xMaxHosts = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 7), Unsigned32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xMaxHosts.setStatus('current') rldot1xMaxLoginAttempts = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xMaxLoginAttempts.setStatus('current') rldot1xTimeoutSilencePeriod = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xTimeoutSilencePeriod.setStatus('current') rldot1xNumOfAuthorizedHosts = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xNumOfAuthorizedHosts.setStatus('current') rldot1xAuthenticationOpenEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 11), TruthValue().clone('false')).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xAuthenticationOpenEnabled.setStatus('current') rldot1xAuthMultiStatsTable = MibTable((1, 3, 6, 1, 4, 1, 89, 95, 11), ) if mibBuilder.loadTexts: rldot1xAuthMultiStatsTable.setStatus('current') rldot1xAuthMultiStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 89, 95, 11, 1), ).setIndexNames((0, "RADLAN-DOT1X-MIB", "rldot1xAuthMultiStatsPortNumber"), (0, "RADLAN-DOT1X-MIB", "rldot1xAuthMultiStatsSourceMac")) if mibBuilder.loadTexts: rldot1xAuthMultiStatsEntry.setStatus('current') rldot1xAuthMultiStatsPortNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiStatsPortNumber.setStatus('current') rldot1xAuthMultiStatsSourceMac = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 2), MacAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiStatsSourceMac.setStatus('current') rldot1xAuthMultiEapolFramesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiEapolFramesRx.setStatus('current') rldot1xAuthMultiEapolFramesTx = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiEapolFramesTx.setStatus('current') rldot1xAuthMultiEapolStartFramesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiEapolStartFramesRx.setStatus('current') rldot1xAuthMultiEapolLogoffFramesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiEapolLogoffFramesRx.setStatus('current') rldot1xAuthMultiEapolRespIdFramesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiEapolRespIdFramesRx.setStatus('current') rldot1xAuthMultiEapolRespFramesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiEapolRespFramesRx.setStatus('current') rldot1xAuthMultiEapolReqIdFramesTx = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiEapolReqIdFramesTx.setStatus('current') rldot1xAuthMultiEapolReqFramesTx = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiEapolReqFramesTx.setStatus('current') rldot1xAuthMultiInvalidEapolFramesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiInvalidEapolFramesRx.setStatus('current') rldot1xAuthMultiEapLengthErrorFramesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiEapLengthErrorFramesRx.setStatus('current') rldot1xAuthMultiDiagTable = MibTable((1, 3, 6, 1, 4, 1, 89, 95, 12), ) if mibBuilder.loadTexts: rldot1xAuthMultiDiagTable.setStatus('current') rldot1xAuthMultiDiagEntry = MibTableRow((1, 3, 6, 1, 4, 1, 89, 95, 12, 1), ).setIndexNames((0, "RADLAN-DOT1X-MIB", "rldot1xAuthMultiDiagPortNumber"), (0, "RADLAN-DOT1X-MIB", "rldot1xAuthMultiDiagSourceMac")) if mibBuilder.loadTexts: rldot1xAuthMultiDiagEntry.setStatus('current') rldot1xAuthMultiDiagPortNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiDiagPortNumber.setStatus('current') rldot1xAuthMultiDiagSourceMac = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 2), MacAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiDiagSourceMac.setStatus('current') rldot1xAuthMultiEntersConnecting = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiEntersConnecting.setStatus('current') rldot1xAuthMultiEntersAuthenticating = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiEntersAuthenticating.setStatus('current') rldot1xAuthMultiAuthSuccessWhileAuthenticating = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiAuthSuccessWhileAuthenticating.setStatus('current') rldot1xAuthMultiAuthFailWhileAuthenticating = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiAuthFailWhileAuthenticating.setStatus('current') rldot1xAuthMultiAuthReauthsWhileAuthenticating = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiAuthReauthsWhileAuthenticating.setStatus('current') rldot1xAuthMultiAuthEapStartsWhileAuthenticating = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiAuthEapStartsWhileAuthenticating.setStatus('current') rldot1xAuthMultiAuthReauthsWhileAuthenticated = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiAuthReauthsWhileAuthenticated.setStatus('current') rldot1xAuthMultiAuthEapStartsWhileAuthenticated = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiAuthEapStartsWhileAuthenticated.setStatus('current') rldot1xAuthMultiBackendResponses = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiBackendResponses.setStatus('current') rldot1xAuthMultiBackendAccessChallenges = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiBackendAccessChallenges.setStatus('current') rldot1xAuthMultiBackendOtherRequestsToSupplicant = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiBackendOtherRequestsToSupplicant.setStatus('current') rldot1xAuthMultiBackendNonNakResponsesFromSupplicant = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiBackendNonNakResponsesFromSupplicant.setStatus('current') rldot1xAuthMultiBackendAuthSuccesses = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiBackendAuthSuccesses.setStatus('current') rldot1xAuthMultiSessionStatsTable = MibTable((1, 3, 6, 1, 4, 1, 89, 95, 13), ) if mibBuilder.loadTexts: rldot1xAuthMultiSessionStatsTable.setStatus('current') rldot1xAuthMultiSessionStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 89, 95, 13, 1), ).setIndexNames((0, "RADLAN-DOT1X-MIB", "rldot1xAuthMultiSessionStatsPortNumber"), (0, "RADLAN-DOT1X-MIB", "rldot1xAuthMultiSessionStatsSourceMac")) if mibBuilder.loadTexts: rldot1xAuthMultiSessionStatsEntry.setStatus('current') rldot1xAuthMultiSessionStatsPortNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiSessionStatsPortNumber.setStatus('current') rldot1xAuthMultiSessionStatsSourceMac = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 2), MacAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiSessionStatsSourceMac.setStatus('current') rldot1xAuthMultiSessionOctetsRx = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 3), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiSessionOctetsRx.setStatus('current') rldot1xAuthMultiSessionOctetsTx = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 4), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiSessionOctetsTx.setStatus('current') rldot1xAuthMultiSessionFramesRx = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiSessionFramesRx.setStatus('current') rldot1xAuthMultiSessionFramesTx = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiSessionFramesTx.setStatus('current') rldot1xAuthMultiSessionId = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 7), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiSessionId.setStatus('current') rldot1xAuthMultiSessionTime = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 8), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiSessionTime.setStatus('current') rldot1xAuthMultiSessionUserName = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 9), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiSessionUserName.setStatus('current') rldot1xAuthMultiSessionRadiusAttrVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiSessionRadiusAttrVlan.setStatus('current') rldot1xAuthMultiSessionRadiusAttrFilterId = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 11), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiSessionRadiusAttrFilterId.setStatus('current') rldot1xAuthMultiSessionRadiusAttrSecondFilterId = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 12), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiSessionRadiusAttrSecondFilterId.setStatus('current') rlDot1xAuthMultiSessionMonitorResultsReason = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24))).clone(namedValues=NamedValues(("notRejected", 0), ("aclNotExst", 1), ("aclOvrfl", 2), ("authErr", 3), ("fltrErr", 4), ("ipv6WithMac", 5), ("ipv6WithNotIp", 6), ("polBasicMode", 7), ("aclDel", 8), ("polDel", 9), ("vlanDfly", 10), ("vlanDynam", 11), ("vlanGuest", 12), ("vlanNoInMsg", 13), ("vlanNotExst", 14), ("vlanOvfl", 15), ("vlanVoice", 16), ("vlanUnauth", 17), ("frsMthDeny", 18), ("radApierr", 19), ("radInvlres", 20), ("radNoresp", 21), ("aclEgress", 22), ("maxHosts", 23), ("noActivity", 24)))).setMaxAccess("readonly") if mibBuilder.loadTexts: rlDot1xAuthMultiSessionMonitorResultsReason.setStatus('current') rlDot1xAuthMultiSessionMethodType = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("eapol", 1), ("mac", 2), ("web", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: rlDot1xAuthMultiSessionMethodType.setStatus('current') rldot1xAuthMultiConfigTable = MibTable((1, 3, 6, 1, 4, 1, 89, 95, 14), ) if mibBuilder.loadTexts: rldot1xAuthMultiConfigTable.setStatus('current') rldot1xAuthMultiConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 89, 95, 14, 1), ).setIndexNames((0, "RADLAN-DOT1X-MIB", "rldot1xAuthMultiPortNumber"), (0, "RADLAN-DOT1X-MIB", "rldot1xAuthMultiSourceMac")) if mibBuilder.loadTexts: rldot1xAuthMultiConfigEntry.setStatus('current') rldot1xAuthMultiPortNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 14, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiPortNumber.setStatus('current') rldot1xAuthMultiSourceMac = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 14, 1, 2), MacAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiSourceMac.setStatus('current') rldot1xAuthMultiPaeState = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 14, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("initialize", 1), ("disconnected", 2), ("connecting", 3), ("authenticating", 4), ("authenticated", 5), ("aborting", 6), ("held", 7), ("forceAuth", 8), ("forceUnauth", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiPaeState.setStatus('current') rldot1xAuthMultiBackendAuthState = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 14, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("request", 1), ("response", 2), ("success", 3), ("fail", 4), ("timeout", 5), ("idle", 6), ("initialize", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiBackendAuthState.setStatus('current') rldot1xAuthMultiControlledPortStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 14, 1, 5), PaeControlledPortStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xAuthMultiControlledPortStatus.setStatus('current') rldot1xBpduFilteringEnabled = MibScalar((1, 3, 6, 1, 4, 1, 89, 95, 15), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xBpduFilteringEnabled.setStatus('current') rldot1xRadiusAttributesErrorsAclReject = MibScalar((1, 3, 6, 1, 4, 1, 89, 95, 18), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xRadiusAttributesErrorsAclReject.setStatus('current') rldot1xGuestVlanTimeInterval = MibScalar((1, 3, 6, 1, 4, 1, 89, 95, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 180))).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xGuestVlanTimeInterval.setStatus('current') rldot1xMacAuthSuccessTrapEnabled = MibScalar((1, 3, 6, 1, 4, 1, 89, 95, 20), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xMacAuthSuccessTrapEnabled.setStatus('current') rldot1xMacAuthFailureTrapEnabled = MibScalar((1, 3, 6, 1, 4, 1, 89, 95, 21), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xMacAuthFailureTrapEnabled.setStatus('current') rldot1xLegacyPortTable = MibTable((1, 3, 6, 1, 4, 1, 89, 95, 22), ) if mibBuilder.loadTexts: rldot1xLegacyPortTable.setStatus('current') rldot1xLegacyPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 89, 95, 22, 1), ).setIndexNames((0, "IEEE8021-PAE-MIB", "dot1xPaePortNumber")) if mibBuilder.loadTexts: rldot1xLegacyPortEntry.setStatus('current') rldot1xLegacyPortModeEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 22, 1, 1), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xLegacyPortModeEnabled.setStatus('current') rldot1xSystemAuthControlMonitorVlan = MibScalar((1, 3, 6, 1, 4, 1, 89, 95, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4094))).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xSystemAuthControlMonitorVlan.setStatus('current') rldot1xClearPortMibCounters = MibScalar((1, 3, 6, 1, 4, 1, 89, 95, 24), PortList()).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xClearPortMibCounters.setStatus('current') rldot1xWebQuietFailureTrapEnabled = MibScalar((1, 3, 6, 1, 4, 1, 89, 95, 25), TruthValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xWebQuietFailureTrapEnabled.setStatus('current') rldot1xMacWebAuthSuccessTrapEnabled = MibScalar((1, 3, 6, 1, 4, 1, 89, 95, 26), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("none", 0), ("eapolOnly", 1), ("macAndEapol", 2), ("macOnly", 3), ("webOnly", 4), ("webAndEapol", 5), ("webAndMac", 6), ("webAndMacAndEapol", 7)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xMacWebAuthSuccessTrapEnabled.setStatus('current') rldot1xMacWebAuthFailureTrapEnabled = MibScalar((1, 3, 6, 1, 4, 1, 89, 95, 27), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("none", 0), ("eapolOnly", 1), ("macAndEapol", 2), ("macOnly", 3), ("webOnly", 4), ("webAndEapol", 5), ("webAndMac", 6), ("webAndMacAndEapol", 7)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xMacWebAuthFailureTrapEnabled.setStatus('current') rldot1xLockedCientsTable = MibTable((1, 3, 6, 1, 4, 1, 89, 95, 28), ) if mibBuilder.loadTexts: rldot1xLockedCientsTable.setStatus('current') rldot1xLockedCientsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 89, 95, 28, 1), ).setIndexNames((0, "RADLAN-DOT1X-MIB", "rldot1xLockedCientsPortNumber"), (0, "RADLAN-DOT1X-MIB", "rldot1xLockedCientsSourceMac")) if mibBuilder.loadTexts: rldot1xLockedCientsEntry.setStatus('current') rldot1xLockedCientsPortNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 28, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xLockedCientsPortNumber.setStatus('current') rldot1xLockedCientsSourceMac = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 28, 1, 2), MacAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xLockedCientsSourceMac.setStatus('current') rldot1xLockedCientsRemainedTime = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 28, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1xLockedCientsRemainedTime.setStatus('current') rldot1xLockedCientsRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 95, 28, 1, 4), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1xLockedCientsRowStatus.setStatus('current') mibBuilder.exportSymbols("RADLAN-DOT1X-MIB", rldot1xAuthMultiAuthReauthsWhileAuthenticated=rldot1xAuthMultiAuthReauthsWhileAuthenticated, rldot1xAuthMultiStatsEntry=rldot1xAuthMultiStatsEntry, rldot1xAuthMultiStatsSourceMac=rldot1xAuthMultiStatsSourceMac, rldot1xWebQuietFailureTrapEnabled=rldot1xWebQuietFailureTrapEnabled, rlDot1xAuthSessionAuthenticMethod=rlDot1xAuthSessionAuthenticMethod, rldot1xAuthMultiEapolReqFramesTx=rldot1xAuthMultiEapolReqFramesTx, rldot1xAuthMultiEapolRespIdFramesRx=rldot1xAuthMultiEapolRespIdFramesRx, rldot1xAuthMultiDiagEntry=rldot1xAuthMultiDiagEntry, rldot1xAuthMultiSessionStatsSourceMac=rldot1xAuthMultiSessionStatsSourceMac, rldot1xAuthMultiAuthReauthsWhileAuthenticating=rldot1xAuthMultiAuthReauthsWhileAuthenticating, rldot1xLockedCientsRowStatus=rldot1xLockedCientsRowStatus, PYSNMP_MODULE_ID=rldot1x, rldot1xAuthMultiDiagTable=rldot1xAuthMultiDiagTable, rldot1xMacWebAuthSuccessTrapEnabled=rldot1xMacWebAuthSuccessTrapEnabled, rldot1xAuthenticationPortTable=rldot1xAuthenticationPortTable, rldot1xLockedCientsSourceMac=rldot1xLockedCientsSourceMac, rldot1xUnAuthenticatedVlanStatus=rldot1xUnAuthenticatedVlanStatus, rldot1xLockedCientsEntry=rldot1xLockedCientsEntry, rldot1xClearPortMibCounters=rldot1xClearPortMibCounters, rldot1xAuthMultiEapolRespFramesRx=rldot1xAuthMultiEapolRespFramesRx, rldot1xAuthMultiAuthFailWhileAuthenticating=rldot1xAuthMultiAuthFailWhileAuthenticating, rldot1xAuthMultiSessionStatsEntry=rldot1xAuthMultiSessionStatsEntry, rldot1xExtAuthSessionStatsEntry=rldot1xExtAuthSessionStatsEntry, rldot1xAuthMultiAuthSuccessWhileAuthenticating=rldot1xAuthMultiAuthSuccessWhileAuthenticating, rldot1xAuthMultiSessionTime=rldot1xAuthMultiSessionTime, rldot1xAuthMultiBackendAuthSuccesses=rldot1xAuthMultiBackendAuthSuccesses, rldot1xUnAuthenticatedVlanEntry=rldot1xUnAuthenticatedVlanEntry, rldot1xAuthMultiEapolStartFramesRx=rldot1xAuthMultiEapolStartFramesRx, rldot1xUserBasedVlanSupported=rldot1xUserBasedVlanSupported, rldot1xAuthMultiEapolReqIdFramesTx=rldot1xAuthMultiEapolReqIdFramesTx, rldot1xMaxLoginAttempts=rldot1xMaxLoginAttempts, rldot1xNumOfAuthorizedHosts=rldot1xNumOfAuthorizedHosts, rldot1xGuestVlanVID=rldot1xGuestVlanVID, rldot1xUnAuthenticatedVlanSupported=rldot1xUnAuthenticatedVlanSupported, rldot1xAuthMultiPortNumber=rldot1xAuthMultiPortNumber, rldot1xMaxHosts=rldot1xMaxHosts, rldot1xAuthMultiAuthEapStartsWhileAuthenticated=rldot1xAuthMultiAuthEapStartsWhileAuthenticated, rldot1xLegacyPortTable=rldot1xLegacyPortTable, rldot1xAuthMultiPaeState=rldot1xAuthMultiPaeState, rldot1xAuthMultiSessionId=rldot1xAuthMultiSessionId, rldot1xAuthMultiSessionRadiusAttrVlan=rldot1xAuthMultiSessionRadiusAttrVlan, rldot1xAuthMultiDiagPortNumber=rldot1xAuthMultiDiagPortNumber, rldot1xAuthMultiSessionUserName=rldot1xAuthMultiSessionUserName, rldot1xAuthMultiEntersAuthenticating=rldot1xAuthMultiEntersAuthenticating, rldot1xAuthMultiEntersConnecting=rldot1xAuthMultiEntersConnecting, rldot1xAuthMultiBackendNonNakResponsesFromSupplicant=rldot1xAuthMultiBackendNonNakResponsesFromSupplicant, rldot1x=rldot1x, rldot1xAuthMultiSessionFramesTx=rldot1xAuthMultiSessionFramesTx, rldot1xRadiusAttrVlanIdEnabled=rldot1xRadiusAttrVlanIdEnabled, rldot1xMibVersion=rldot1xMibVersion, rldot1xAuthMultiSessionRadiusAttrFilterId=rldot1xAuthMultiSessionRadiusAttrFilterId, rldot1xAuthenticationOpenEnabled=rldot1xAuthenticationOpenEnabled, rldot1xAuthMultiEapolFramesRx=rldot1xAuthMultiEapolFramesRx, rldot1xGuestVlanSupported=rldot1xGuestVlanSupported, rldot1xRadiusAttrVlanIdentifier=rldot1xRadiusAttrVlanIdentifier, rldot1xRadiusAttAclNameEnabled=rldot1xRadiusAttAclNameEnabled, rldot1xUserBasedVlanPorts=rldot1xUserBasedVlanPorts, rldot1xAuthMultiSessionRadiusAttrSecondFilterId=rldot1xAuthMultiSessionRadiusAttrSecondFilterId, rldot1xTimeoutSilencePeriod=rldot1xTimeoutSilencePeriod, rldot1xGuestVlanPorts=rldot1xGuestVlanPorts, rldot1xMacAuthFailureTrapEnabled=rldot1xMacAuthFailureTrapEnabled, rlDot1xAuthMultiSessionMonitorResultsReason=rlDot1xAuthMultiSessionMonitorResultsReason, rldot1xAuthMultiEapolFramesTx=rldot1xAuthMultiEapolFramesTx, rldot1xAuthMultiStatsPortNumber=rldot1xAuthMultiStatsPortNumber, rldot1xTimeBasedName=rldot1xTimeBasedName, rldot1xAuthMultiSessionOctetsRx=rldot1xAuthMultiSessionOctetsRx, rldot1xGuestVlanTimeInterval=rldot1xGuestVlanTimeInterval, rldot1xLegacyPortModeEnabled=rldot1xLegacyPortModeEnabled, rldot1xAuthMultiDiagSourceMac=rldot1xAuthMultiDiagSourceMac, rldot1xAuthMultiAuthEapStartsWhileAuthenticating=rldot1xAuthMultiAuthEapStartsWhileAuthenticating, rldot1xAuthMultiSessionStatsPortNumber=rldot1xAuthMultiSessionStatsPortNumber, rldot1xUnAuthenticatedVlanTable=rldot1xUnAuthenticatedVlanTable, rldot1xRadiusAttributesErrorsAclReject=rldot1xRadiusAttributesErrorsAclReject, rldot1xLockedCientsRemainedTime=rldot1xLockedCientsRemainedTime, rldot1xTimeBasedActive=rldot1xTimeBasedActive, rldot1xAuthMultiSourceMac=rldot1xAuthMultiSourceMac, rldot1xAuthMultiBackendAccessChallenges=rldot1xAuthMultiBackendAccessChallenges, rldot1xExtAuthSessionStatsTable=rldot1xExtAuthSessionStatsTable, rldot1xLockedCientsTable=rldot1xLockedCientsTable, rldot1xAuthMultiEapolLogoffFramesRx=rldot1xAuthMultiEapolLogoffFramesRx, rldot1xAuthMultiEapLengthErrorFramesRx=rldot1xAuthMultiEapLengthErrorFramesRx, rldot1xAuthMultiSessionOctetsTx=rldot1xAuthMultiSessionOctetsTx, rlDot1xAuthMultiSessionMethodType=rlDot1xAuthMultiSessionMethodType, rldot1xSystemAuthControlMonitorVlan=rldot1xSystemAuthControlMonitorVlan, rldot1xAuthMultiInvalidEapolFramesRx=rldot1xAuthMultiInvalidEapolFramesRx, rldot1xAuthMultiBackendOtherRequestsToSupplicant=rldot1xAuthMultiBackendOtherRequestsToSupplicant, rldot1xAuthMultiSessionFramesRx=rldot1xAuthMultiSessionFramesRx, rldot1xAuthMultiConfigEntry=rldot1xAuthMultiConfigEntry, rldot1xLockedCientsPortNumber=rldot1xLockedCientsPortNumber, rldot1xAuthMultiBackendAuthState=rldot1xAuthMultiBackendAuthState, rldot1xMacAuthSuccessTrapEnabled=rldot1xMacAuthSuccessTrapEnabled, rldot1xAuthMultiSessionStatsTable=rldot1xAuthMultiSessionStatsTable, rldot1xAuthMultiConfigTable=rldot1xAuthMultiConfigTable, rldot1xMacWebAuthFailureTrapEnabled=rldot1xMacWebAuthFailureTrapEnabled, rldot1xLegacyPortEntry=rldot1xLegacyPortEntry, rldot1xAuthMultiControlledPortStatus=rldot1xAuthMultiControlledPortStatus, rldot1xAuthenticationPortEntry=rldot1xAuthenticationPortEntry, rldot1xAuthMultiBackendResponses=rldot1xAuthMultiBackendResponses, rldot1xAuthMultiStatsTable=rldot1xAuthMultiStatsTable, rldot1xBpduFilteringEnabled=rldot1xBpduFilteringEnabled, rldot1xAuthenticationPortMethod=rldot1xAuthenticationPortMethod)
(object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_range_constraint, value_size_constraint, single_value_constraint, constraints_union, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ValueSizeConstraint', 'SingleValueConstraint', 'ConstraintsUnion', 'ConstraintsIntersection') (mac_address,) = mibBuilder.importSymbols('BRIDGE-MIB', 'MacAddress') (pae_controlled_port_status, dot1x_auth_session_stats_entry, dot1x_pae_port_number) = mibBuilder.importSymbols('IEEE8021-PAE-MIB', 'PaeControlledPortStatus', 'dot1xAuthSessionStatsEntry', 'dot1xPaePortNumber') (port_list, dot1q_fdb_id, vlan_index) = mibBuilder.importSymbols('Q-BRIDGE-MIB', 'PortList', 'dot1qFdbId', 'VlanIndex') (rnd,) = mibBuilder.importSymbols('RADLAN-MIB', 'rnd') (snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (iso, module_identity, integer32, gauge32, object_identity, counter64, ip_address, bits, mib_identifier, mib_scalar, mib_table, mib_table_row, mib_table_column, unsigned32, notification_type, time_ticks, counter32) = mibBuilder.importSymbols('SNMPv2-SMI', 'iso', 'ModuleIdentity', 'Integer32', 'Gauge32', 'ObjectIdentity', 'Counter64', 'IpAddress', 'Bits', 'MibIdentifier', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Unsigned32', 'NotificationType', 'TimeTicks', 'Counter32') (textual_convention, truth_value, row_status, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'TruthValue', 'RowStatus', 'DisplayString') rldot1x = module_identity((1, 3, 6, 1, 4, 1, 89, 95)) rldot1x.setRevisions(('2007-01-02 00:00',)) if mibBuilder.loadTexts: rldot1x.setLastUpdated('200701020000Z') if mibBuilder.loadTexts: rldot1x.setOrganization('Radlan - a MARVELL company. Marvell Semiconductor, Inc.') rldot1x_mib_version = mib_scalar((1, 3, 6, 1, 4, 1, 89, 95, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xMibVersion.setStatus('current') rldot1x_ext_auth_session_stats_table = mib_table((1, 3, 6, 1, 4, 1, 89, 95, 2)) if mibBuilder.loadTexts: rldot1xExtAuthSessionStatsTable.setStatus('current') rldot1x_ext_auth_session_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 89, 95, 2, 1)) dot1xAuthSessionStatsEntry.registerAugmentions(('RADLAN-DOT1X-MIB', 'rldot1xExtAuthSessionStatsEntry')) rldot1xExtAuthSessionStatsEntry.setIndexNames(*dot1xAuthSessionStatsEntry.getIndexNames()) if mibBuilder.loadTexts: rldot1xExtAuthSessionStatsEntry.setStatus('current') rl_dot1x_auth_session_authentic_method = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('remoteAuthServer', 1), ('localAuthServer', 2), ('none', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: rlDot1xAuthSessionAuthenticMethod.setStatus('current') rldot1x_guest_vlan_supported = mib_scalar((1, 3, 6, 1, 4, 1, 89, 95, 3), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xGuestVlanSupported.setStatus('current') rldot1x_guest_vlan_vid = mib_scalar((1, 3, 6, 1, 4, 1, 89, 95, 4), vlan_index()).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xGuestVlanVID.setStatus('current') rldot1x_guest_vlan_ports = mib_scalar((1, 3, 6, 1, 4, 1, 89, 95, 5), port_list()).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xGuestVlanPorts.setStatus('current') rldot1x_un_authenticated_vlan_supported = mib_scalar((1, 3, 6, 1, 4, 1, 89, 95, 6), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xUnAuthenticatedVlanSupported.setStatus('current') rldot1x_un_authenticated_vlan_table = mib_table((1, 3, 6, 1, 4, 1, 89, 95, 7)) if mibBuilder.loadTexts: rldot1xUnAuthenticatedVlanTable.setStatus('current') rldot1x_un_authenticated_vlan_entry = mib_table_row((1, 3, 6, 1, 4, 1, 89, 95, 7, 1)).setIndexNames((0, 'Q-BRIDGE-MIB', 'dot1qFdbId')) if mibBuilder.loadTexts: rldot1xUnAuthenticatedVlanEntry.setStatus('current') rldot1x_un_authenticated_vlan_status = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 7, 1, 1), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: rldot1xUnAuthenticatedVlanStatus.setStatus('current') rldot1x_user_based_vlan_supported = mib_scalar((1, 3, 6, 1, 4, 1, 89, 95, 8), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xUserBasedVlanSupported.setStatus('current') rldot1x_user_based_vlan_ports = mib_scalar((1, 3, 6, 1, 4, 1, 89, 95, 9), port_list()).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xUserBasedVlanPorts.setStatus('current') rldot1x_authentication_port_table = mib_table((1, 3, 6, 1, 4, 1, 89, 95, 10)) if mibBuilder.loadTexts: rldot1xAuthenticationPortTable.setStatus('current') rldot1x_authentication_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 89, 95, 10, 1)).setIndexNames((0, 'IEEE8021-PAE-MIB', 'dot1xPaePortNumber')) if mibBuilder.loadTexts: rldot1xAuthenticationPortEntry.setStatus('current') rldot1x_authentication_port_method = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('eapolOnly', 1), ('macAndEapol', 2), ('macOnly', 3), ('webOnly', 4), ('webAndEapol', 5), ('webAndMac', 6), ('webAndMacAndEapol', 7))).clone('eapolOnly')).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xAuthenticationPortMethod.setStatus('current') rldot1x_radius_attr_vlan_id_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 2), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xRadiusAttrVlanIdEnabled.setStatus('current') rldot1x_radius_att_acl_name_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 3), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xRadiusAttAclNameEnabled.setStatus('current') rldot1x_time_based_name = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 4), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xTimeBasedName.setStatus('current') rldot1x_time_based_active = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 5), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xTimeBasedActive.setStatus('current') rldot1x_radius_attr_vlan_identifier = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 6), vlan_index()).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xRadiusAttrVlanIdentifier.setStatus('current') rldot1x_max_hosts = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 7), unsigned32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xMaxHosts.setStatus('current') rldot1x_max_login_attempts = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xMaxLoginAttempts.setStatus('current') rldot1x_timeout_silence_period = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xTimeoutSilencePeriod.setStatus('current') rldot1x_num_of_authorized_hosts = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 10), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xNumOfAuthorizedHosts.setStatus('current') rldot1x_authentication_open_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 10, 1, 11), truth_value().clone('false')).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xAuthenticationOpenEnabled.setStatus('current') rldot1x_auth_multi_stats_table = mib_table((1, 3, 6, 1, 4, 1, 89, 95, 11)) if mibBuilder.loadTexts: rldot1xAuthMultiStatsTable.setStatus('current') rldot1x_auth_multi_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 89, 95, 11, 1)).setIndexNames((0, 'RADLAN-DOT1X-MIB', 'rldot1xAuthMultiStatsPortNumber'), (0, 'RADLAN-DOT1X-MIB', 'rldot1xAuthMultiStatsSourceMac')) if mibBuilder.loadTexts: rldot1xAuthMultiStatsEntry.setStatus('current') rldot1x_auth_multi_stats_port_number = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiStatsPortNumber.setStatus('current') rldot1x_auth_multi_stats_source_mac = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 2), mac_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiStatsSourceMac.setStatus('current') rldot1x_auth_multi_eapol_frames_rx = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiEapolFramesRx.setStatus('current') rldot1x_auth_multi_eapol_frames_tx = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiEapolFramesTx.setStatus('current') rldot1x_auth_multi_eapol_start_frames_rx = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiEapolStartFramesRx.setStatus('current') rldot1x_auth_multi_eapol_logoff_frames_rx = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiEapolLogoffFramesRx.setStatus('current') rldot1x_auth_multi_eapol_resp_id_frames_rx = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiEapolRespIdFramesRx.setStatus('current') rldot1x_auth_multi_eapol_resp_frames_rx = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiEapolRespFramesRx.setStatus('current') rldot1x_auth_multi_eapol_req_id_frames_tx = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiEapolReqIdFramesTx.setStatus('current') rldot1x_auth_multi_eapol_req_frames_tx = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiEapolReqFramesTx.setStatus('current') rldot1x_auth_multi_invalid_eapol_frames_rx = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiInvalidEapolFramesRx.setStatus('current') rldot1x_auth_multi_eap_length_error_frames_rx = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 11, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiEapLengthErrorFramesRx.setStatus('current') rldot1x_auth_multi_diag_table = mib_table((1, 3, 6, 1, 4, 1, 89, 95, 12)) if mibBuilder.loadTexts: rldot1xAuthMultiDiagTable.setStatus('current') rldot1x_auth_multi_diag_entry = mib_table_row((1, 3, 6, 1, 4, 1, 89, 95, 12, 1)).setIndexNames((0, 'RADLAN-DOT1X-MIB', 'rldot1xAuthMultiDiagPortNumber'), (0, 'RADLAN-DOT1X-MIB', 'rldot1xAuthMultiDiagSourceMac')) if mibBuilder.loadTexts: rldot1xAuthMultiDiagEntry.setStatus('current') rldot1x_auth_multi_diag_port_number = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiDiagPortNumber.setStatus('current') rldot1x_auth_multi_diag_source_mac = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 2), mac_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiDiagSourceMac.setStatus('current') rldot1x_auth_multi_enters_connecting = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiEntersConnecting.setStatus('current') rldot1x_auth_multi_enters_authenticating = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiEntersAuthenticating.setStatus('current') rldot1x_auth_multi_auth_success_while_authenticating = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiAuthSuccessWhileAuthenticating.setStatus('current') rldot1x_auth_multi_auth_fail_while_authenticating = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiAuthFailWhileAuthenticating.setStatus('current') rldot1x_auth_multi_auth_reauths_while_authenticating = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiAuthReauthsWhileAuthenticating.setStatus('current') rldot1x_auth_multi_auth_eap_starts_while_authenticating = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiAuthEapStartsWhileAuthenticating.setStatus('current') rldot1x_auth_multi_auth_reauths_while_authenticated = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiAuthReauthsWhileAuthenticated.setStatus('current') rldot1x_auth_multi_auth_eap_starts_while_authenticated = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiAuthEapStartsWhileAuthenticated.setStatus('current') rldot1x_auth_multi_backend_responses = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiBackendResponses.setStatus('current') rldot1x_auth_multi_backend_access_challenges = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiBackendAccessChallenges.setStatus('current') rldot1x_auth_multi_backend_other_requests_to_supplicant = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiBackendOtherRequestsToSupplicant.setStatus('current') rldot1x_auth_multi_backend_non_nak_responses_from_supplicant = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiBackendNonNakResponsesFromSupplicant.setStatus('current') rldot1x_auth_multi_backend_auth_successes = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 12, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiBackendAuthSuccesses.setStatus('current') rldot1x_auth_multi_session_stats_table = mib_table((1, 3, 6, 1, 4, 1, 89, 95, 13)) if mibBuilder.loadTexts: rldot1xAuthMultiSessionStatsTable.setStatus('current') rldot1x_auth_multi_session_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 89, 95, 13, 1)).setIndexNames((0, 'RADLAN-DOT1X-MIB', 'rldot1xAuthMultiSessionStatsPortNumber'), (0, 'RADLAN-DOT1X-MIB', 'rldot1xAuthMultiSessionStatsSourceMac')) if mibBuilder.loadTexts: rldot1xAuthMultiSessionStatsEntry.setStatus('current') rldot1x_auth_multi_session_stats_port_number = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiSessionStatsPortNumber.setStatus('current') rldot1x_auth_multi_session_stats_source_mac = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 2), mac_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiSessionStatsSourceMac.setStatus('current') rldot1x_auth_multi_session_octets_rx = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 3), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiSessionOctetsRx.setStatus('current') rldot1x_auth_multi_session_octets_tx = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 4), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiSessionOctetsTx.setStatus('current') rldot1x_auth_multi_session_frames_rx = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiSessionFramesRx.setStatus('current') rldot1x_auth_multi_session_frames_tx = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiSessionFramesTx.setStatus('current') rldot1x_auth_multi_session_id = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 7), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiSessionId.setStatus('current') rldot1x_auth_multi_session_time = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 8), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiSessionTime.setStatus('current') rldot1x_auth_multi_session_user_name = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 9), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiSessionUserName.setStatus('current') rldot1x_auth_multi_session_radius_attr_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 10), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiSessionRadiusAttrVlan.setStatus('current') rldot1x_auth_multi_session_radius_attr_filter_id = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 11), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiSessionRadiusAttrFilterId.setStatus('current') rldot1x_auth_multi_session_radius_attr_second_filter_id = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 12), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiSessionRadiusAttrSecondFilterId.setStatus('current') rl_dot1x_auth_multi_session_monitor_results_reason = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24))).clone(namedValues=named_values(('notRejected', 0), ('aclNotExst', 1), ('aclOvrfl', 2), ('authErr', 3), ('fltrErr', 4), ('ipv6WithMac', 5), ('ipv6WithNotIp', 6), ('polBasicMode', 7), ('aclDel', 8), ('polDel', 9), ('vlanDfly', 10), ('vlanDynam', 11), ('vlanGuest', 12), ('vlanNoInMsg', 13), ('vlanNotExst', 14), ('vlanOvfl', 15), ('vlanVoice', 16), ('vlanUnauth', 17), ('frsMthDeny', 18), ('radApierr', 19), ('radInvlres', 20), ('radNoresp', 21), ('aclEgress', 22), ('maxHosts', 23), ('noActivity', 24)))).setMaxAccess('readonly') if mibBuilder.loadTexts: rlDot1xAuthMultiSessionMonitorResultsReason.setStatus('current') rl_dot1x_auth_multi_session_method_type = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 13, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('eapol', 1), ('mac', 2), ('web', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: rlDot1xAuthMultiSessionMethodType.setStatus('current') rldot1x_auth_multi_config_table = mib_table((1, 3, 6, 1, 4, 1, 89, 95, 14)) if mibBuilder.loadTexts: rldot1xAuthMultiConfigTable.setStatus('current') rldot1x_auth_multi_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 89, 95, 14, 1)).setIndexNames((0, 'RADLAN-DOT1X-MIB', 'rldot1xAuthMultiPortNumber'), (0, 'RADLAN-DOT1X-MIB', 'rldot1xAuthMultiSourceMac')) if mibBuilder.loadTexts: rldot1xAuthMultiConfigEntry.setStatus('current') rldot1x_auth_multi_port_number = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 14, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiPortNumber.setStatus('current') rldot1x_auth_multi_source_mac = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 14, 1, 2), mac_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiSourceMac.setStatus('current') rldot1x_auth_multi_pae_state = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 14, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=named_values(('initialize', 1), ('disconnected', 2), ('connecting', 3), ('authenticating', 4), ('authenticated', 5), ('aborting', 6), ('held', 7), ('forceAuth', 8), ('forceUnauth', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiPaeState.setStatus('current') rldot1x_auth_multi_backend_auth_state = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 14, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('request', 1), ('response', 2), ('success', 3), ('fail', 4), ('timeout', 5), ('idle', 6), ('initialize', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiBackendAuthState.setStatus('current') rldot1x_auth_multi_controlled_port_status = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 14, 1, 5), pae_controlled_port_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xAuthMultiControlledPortStatus.setStatus('current') rldot1x_bpdu_filtering_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 89, 95, 15), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xBpduFilteringEnabled.setStatus('current') rldot1x_radius_attributes_errors_acl_reject = mib_scalar((1, 3, 6, 1, 4, 1, 89, 95, 18), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xRadiusAttributesErrorsAclReject.setStatus('current') rldot1x_guest_vlan_time_interval = mib_scalar((1, 3, 6, 1, 4, 1, 89, 95, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 180))).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xGuestVlanTimeInterval.setStatus('current') rldot1x_mac_auth_success_trap_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 89, 95, 20), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xMacAuthSuccessTrapEnabled.setStatus('current') rldot1x_mac_auth_failure_trap_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 89, 95, 21), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xMacAuthFailureTrapEnabled.setStatus('current') rldot1x_legacy_port_table = mib_table((1, 3, 6, 1, 4, 1, 89, 95, 22)) if mibBuilder.loadTexts: rldot1xLegacyPortTable.setStatus('current') rldot1x_legacy_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 89, 95, 22, 1)).setIndexNames((0, 'IEEE8021-PAE-MIB', 'dot1xPaePortNumber')) if mibBuilder.loadTexts: rldot1xLegacyPortEntry.setStatus('current') rldot1x_legacy_port_mode_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 22, 1, 1), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xLegacyPortModeEnabled.setStatus('current') rldot1x_system_auth_control_monitor_vlan = mib_scalar((1, 3, 6, 1, 4, 1, 89, 95, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 4094))).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xSystemAuthControlMonitorVlan.setStatus('current') rldot1x_clear_port_mib_counters = mib_scalar((1, 3, 6, 1, 4, 1, 89, 95, 24), port_list()).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xClearPortMibCounters.setStatus('current') rldot1x_web_quiet_failure_trap_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 89, 95, 25), truth_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xWebQuietFailureTrapEnabled.setStatus('current') rldot1x_mac_web_auth_success_trap_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 89, 95, 26), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('none', 0), ('eapolOnly', 1), ('macAndEapol', 2), ('macOnly', 3), ('webOnly', 4), ('webAndEapol', 5), ('webAndMac', 6), ('webAndMacAndEapol', 7)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xMacWebAuthSuccessTrapEnabled.setStatus('current') rldot1x_mac_web_auth_failure_trap_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 89, 95, 27), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('none', 0), ('eapolOnly', 1), ('macAndEapol', 2), ('macOnly', 3), ('webOnly', 4), ('webAndEapol', 5), ('webAndMac', 6), ('webAndMacAndEapol', 7)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xMacWebAuthFailureTrapEnabled.setStatus('current') rldot1x_locked_cients_table = mib_table((1, 3, 6, 1, 4, 1, 89, 95, 28)) if mibBuilder.loadTexts: rldot1xLockedCientsTable.setStatus('current') rldot1x_locked_cients_entry = mib_table_row((1, 3, 6, 1, 4, 1, 89, 95, 28, 1)).setIndexNames((0, 'RADLAN-DOT1X-MIB', 'rldot1xLockedCientsPortNumber'), (0, 'RADLAN-DOT1X-MIB', 'rldot1xLockedCientsSourceMac')) if mibBuilder.loadTexts: rldot1xLockedCientsEntry.setStatus('current') rldot1x_locked_cients_port_number = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 28, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xLockedCientsPortNumber.setStatus('current') rldot1x_locked_cients_source_mac = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 28, 1, 2), mac_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xLockedCientsSourceMac.setStatus('current') rldot1x_locked_cients_remained_time = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 28, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1xLockedCientsRemainedTime.setStatus('current') rldot1x_locked_cients_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 89, 95, 28, 1, 4), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1xLockedCientsRowStatus.setStatus('current') mibBuilder.exportSymbols('RADLAN-DOT1X-MIB', rldot1xAuthMultiAuthReauthsWhileAuthenticated=rldot1xAuthMultiAuthReauthsWhileAuthenticated, rldot1xAuthMultiStatsEntry=rldot1xAuthMultiStatsEntry, rldot1xAuthMultiStatsSourceMac=rldot1xAuthMultiStatsSourceMac, rldot1xWebQuietFailureTrapEnabled=rldot1xWebQuietFailureTrapEnabled, rlDot1xAuthSessionAuthenticMethod=rlDot1xAuthSessionAuthenticMethod, rldot1xAuthMultiEapolReqFramesTx=rldot1xAuthMultiEapolReqFramesTx, rldot1xAuthMultiEapolRespIdFramesRx=rldot1xAuthMultiEapolRespIdFramesRx, rldot1xAuthMultiDiagEntry=rldot1xAuthMultiDiagEntry, rldot1xAuthMultiSessionStatsSourceMac=rldot1xAuthMultiSessionStatsSourceMac, rldot1xAuthMultiAuthReauthsWhileAuthenticating=rldot1xAuthMultiAuthReauthsWhileAuthenticating, rldot1xLockedCientsRowStatus=rldot1xLockedCientsRowStatus, PYSNMP_MODULE_ID=rldot1x, rldot1xAuthMultiDiagTable=rldot1xAuthMultiDiagTable, rldot1xMacWebAuthSuccessTrapEnabled=rldot1xMacWebAuthSuccessTrapEnabled, rldot1xAuthenticationPortTable=rldot1xAuthenticationPortTable, rldot1xLockedCientsSourceMac=rldot1xLockedCientsSourceMac, rldot1xUnAuthenticatedVlanStatus=rldot1xUnAuthenticatedVlanStatus, rldot1xLockedCientsEntry=rldot1xLockedCientsEntry, rldot1xClearPortMibCounters=rldot1xClearPortMibCounters, rldot1xAuthMultiEapolRespFramesRx=rldot1xAuthMultiEapolRespFramesRx, rldot1xAuthMultiAuthFailWhileAuthenticating=rldot1xAuthMultiAuthFailWhileAuthenticating, rldot1xAuthMultiSessionStatsEntry=rldot1xAuthMultiSessionStatsEntry, rldot1xExtAuthSessionStatsEntry=rldot1xExtAuthSessionStatsEntry, rldot1xAuthMultiAuthSuccessWhileAuthenticating=rldot1xAuthMultiAuthSuccessWhileAuthenticating, rldot1xAuthMultiSessionTime=rldot1xAuthMultiSessionTime, rldot1xAuthMultiBackendAuthSuccesses=rldot1xAuthMultiBackendAuthSuccesses, rldot1xUnAuthenticatedVlanEntry=rldot1xUnAuthenticatedVlanEntry, rldot1xAuthMultiEapolStartFramesRx=rldot1xAuthMultiEapolStartFramesRx, rldot1xUserBasedVlanSupported=rldot1xUserBasedVlanSupported, rldot1xAuthMultiEapolReqIdFramesTx=rldot1xAuthMultiEapolReqIdFramesTx, rldot1xMaxLoginAttempts=rldot1xMaxLoginAttempts, rldot1xNumOfAuthorizedHosts=rldot1xNumOfAuthorizedHosts, rldot1xGuestVlanVID=rldot1xGuestVlanVID, rldot1xUnAuthenticatedVlanSupported=rldot1xUnAuthenticatedVlanSupported, rldot1xAuthMultiPortNumber=rldot1xAuthMultiPortNumber, rldot1xMaxHosts=rldot1xMaxHosts, rldot1xAuthMultiAuthEapStartsWhileAuthenticated=rldot1xAuthMultiAuthEapStartsWhileAuthenticated, rldot1xLegacyPortTable=rldot1xLegacyPortTable, rldot1xAuthMultiPaeState=rldot1xAuthMultiPaeState, rldot1xAuthMultiSessionId=rldot1xAuthMultiSessionId, rldot1xAuthMultiSessionRadiusAttrVlan=rldot1xAuthMultiSessionRadiusAttrVlan, rldot1xAuthMultiDiagPortNumber=rldot1xAuthMultiDiagPortNumber, rldot1xAuthMultiSessionUserName=rldot1xAuthMultiSessionUserName, rldot1xAuthMultiEntersAuthenticating=rldot1xAuthMultiEntersAuthenticating, rldot1xAuthMultiEntersConnecting=rldot1xAuthMultiEntersConnecting, rldot1xAuthMultiBackendNonNakResponsesFromSupplicant=rldot1xAuthMultiBackendNonNakResponsesFromSupplicant, rldot1x=rldot1x, rldot1xAuthMultiSessionFramesTx=rldot1xAuthMultiSessionFramesTx, rldot1xRadiusAttrVlanIdEnabled=rldot1xRadiusAttrVlanIdEnabled, rldot1xMibVersion=rldot1xMibVersion, rldot1xAuthMultiSessionRadiusAttrFilterId=rldot1xAuthMultiSessionRadiusAttrFilterId, rldot1xAuthenticationOpenEnabled=rldot1xAuthenticationOpenEnabled, rldot1xAuthMultiEapolFramesRx=rldot1xAuthMultiEapolFramesRx, rldot1xGuestVlanSupported=rldot1xGuestVlanSupported, rldot1xRadiusAttrVlanIdentifier=rldot1xRadiusAttrVlanIdentifier, rldot1xRadiusAttAclNameEnabled=rldot1xRadiusAttAclNameEnabled, rldot1xUserBasedVlanPorts=rldot1xUserBasedVlanPorts, rldot1xAuthMultiSessionRadiusAttrSecondFilterId=rldot1xAuthMultiSessionRadiusAttrSecondFilterId, rldot1xTimeoutSilencePeriod=rldot1xTimeoutSilencePeriod, rldot1xGuestVlanPorts=rldot1xGuestVlanPorts, rldot1xMacAuthFailureTrapEnabled=rldot1xMacAuthFailureTrapEnabled, rlDot1xAuthMultiSessionMonitorResultsReason=rlDot1xAuthMultiSessionMonitorResultsReason, rldot1xAuthMultiEapolFramesTx=rldot1xAuthMultiEapolFramesTx, rldot1xAuthMultiStatsPortNumber=rldot1xAuthMultiStatsPortNumber, rldot1xTimeBasedName=rldot1xTimeBasedName, rldot1xAuthMultiSessionOctetsRx=rldot1xAuthMultiSessionOctetsRx, rldot1xGuestVlanTimeInterval=rldot1xGuestVlanTimeInterval, rldot1xLegacyPortModeEnabled=rldot1xLegacyPortModeEnabled, rldot1xAuthMultiDiagSourceMac=rldot1xAuthMultiDiagSourceMac, rldot1xAuthMultiAuthEapStartsWhileAuthenticating=rldot1xAuthMultiAuthEapStartsWhileAuthenticating, rldot1xAuthMultiSessionStatsPortNumber=rldot1xAuthMultiSessionStatsPortNumber, rldot1xUnAuthenticatedVlanTable=rldot1xUnAuthenticatedVlanTable, rldot1xRadiusAttributesErrorsAclReject=rldot1xRadiusAttributesErrorsAclReject, rldot1xLockedCientsRemainedTime=rldot1xLockedCientsRemainedTime, rldot1xTimeBasedActive=rldot1xTimeBasedActive, rldot1xAuthMultiSourceMac=rldot1xAuthMultiSourceMac, rldot1xAuthMultiBackendAccessChallenges=rldot1xAuthMultiBackendAccessChallenges, rldot1xExtAuthSessionStatsTable=rldot1xExtAuthSessionStatsTable, rldot1xLockedCientsTable=rldot1xLockedCientsTable, rldot1xAuthMultiEapolLogoffFramesRx=rldot1xAuthMultiEapolLogoffFramesRx, rldot1xAuthMultiEapLengthErrorFramesRx=rldot1xAuthMultiEapLengthErrorFramesRx, rldot1xAuthMultiSessionOctetsTx=rldot1xAuthMultiSessionOctetsTx, rlDot1xAuthMultiSessionMethodType=rlDot1xAuthMultiSessionMethodType, rldot1xSystemAuthControlMonitorVlan=rldot1xSystemAuthControlMonitorVlan, rldot1xAuthMultiInvalidEapolFramesRx=rldot1xAuthMultiInvalidEapolFramesRx, rldot1xAuthMultiBackendOtherRequestsToSupplicant=rldot1xAuthMultiBackendOtherRequestsToSupplicant, rldot1xAuthMultiSessionFramesRx=rldot1xAuthMultiSessionFramesRx, rldot1xAuthMultiConfigEntry=rldot1xAuthMultiConfigEntry, rldot1xLockedCientsPortNumber=rldot1xLockedCientsPortNumber, rldot1xAuthMultiBackendAuthState=rldot1xAuthMultiBackendAuthState, rldot1xMacAuthSuccessTrapEnabled=rldot1xMacAuthSuccessTrapEnabled, rldot1xAuthMultiSessionStatsTable=rldot1xAuthMultiSessionStatsTable, rldot1xAuthMultiConfigTable=rldot1xAuthMultiConfigTable, rldot1xMacWebAuthFailureTrapEnabled=rldot1xMacWebAuthFailureTrapEnabled, rldot1xLegacyPortEntry=rldot1xLegacyPortEntry, rldot1xAuthMultiControlledPortStatus=rldot1xAuthMultiControlledPortStatus, rldot1xAuthenticationPortEntry=rldot1xAuthenticationPortEntry, rldot1xAuthMultiBackendResponses=rldot1xAuthMultiBackendResponses, rldot1xAuthMultiStatsTable=rldot1xAuthMultiStatsTable, rldot1xBpduFilteringEnabled=rldot1xBpduFilteringEnabled, rldot1xAuthenticationPortMethod=rldot1xAuthenticationPortMethod)
def find_minor(arr): minor = arr[0] minor_index = 0 for i in range(0, len(arr)): if arr[i] < minor: minor = arr[i] minor_index = i return minor_index def ordenation_by_selection(arr): new_arr = [] for i in range(0, len(arr)): minor = find_minor(arr) new_arr.append(arr.pop(minor)) return new_arr print(ordenation_by_selection([5, 2, 1, 4, 3, 6, 9, 7, 8]))
def find_minor(arr): minor = arr[0] minor_index = 0 for i in range(0, len(arr)): if arr[i] < minor: minor = arr[i] minor_index = i return minor_index def ordenation_by_selection(arr): new_arr = [] for i in range(0, len(arr)): minor = find_minor(arr) new_arr.append(arr.pop(minor)) return new_arr print(ordenation_by_selection([5, 2, 1, 4, 3, 6, 9, 7, 8]))
name = 'Phennyfyxata. http://phenny.venefyxatu.be' nick = 'Phennyfyxata' host = 'irc.freenode.net' channels = ['#dutchnano', '#venefyxatu'] #channels = ['#venefyxatu'] owner = 'venefyxatu' password = 'PLACEHOLDER_PASSWORD' # This isn't implemented yet: # serverpass = 'yourserverpassword' # These are people who will be able to use admin.py's functions... admins = [owner] # strings with other nicknames # But admin.py is disabled by default, as follows: #exclude = ['admin'] # If you want to enumerate a list of modules rather than disabling # some, use "enable = ['example']", which takes precedent over exclude # # enable = [] # Directories to load opt modules from extra = [] # Services to load: maps channel names to white or black lists external = { '#dutchnano': ['!'], # allow all '#venefyxatu': ['!'], '#conservative': [], # allow none '*': ['py', 'whois', 'glyph'], # default whitelist } # EOF tell_filename = "/home/venefyatu/tellfile"
name = 'Phennyfyxata. http://phenny.venefyxatu.be' nick = 'Phennyfyxata' host = 'irc.freenode.net' channels = ['#dutchnano', '#venefyxatu'] owner = 'venefyxatu' password = 'PLACEHOLDER_PASSWORD' admins = [owner] extra = [] external = {'#dutchnano': ['!'], '#venefyxatu': ['!'], '#conservative': [], '*': ['py', 'whois', 'glyph']} tell_filename = '/home/venefyatu/tellfile'
expected_output = { "trustpoints": { "TP-self-signed-4146203551": { "associated_trustpoints": { "router_self_signed_certificate": { "issuer": {"cn": "IOS-Self-Signed-Certificate-4146203551"}, "serial_number_in_hex": "01", "status": "Available", "storage": "nvram:IOS-Self-Sig#1.cer", "subject": { "cn": "IOS-Self-Signed-Certificate-4146203551", "name": "IOS-Self-Signed-Certificate-4146203551", }, "usage": "General Purpose", "validity_date": { "end_date": "00:00:00 UTC Jan 1 2020", "start_date": "21:37:27 UTC Apr 23 2018", }, } } } } }
expected_output = {'trustpoints': {'TP-self-signed-4146203551': {'associated_trustpoints': {'router_self_signed_certificate': {'issuer': {'cn': 'IOS-Self-Signed-Certificate-4146203551'}, 'serial_number_in_hex': '01', 'status': 'Available', 'storage': 'nvram:IOS-Self-Sig#1.cer', 'subject': {'cn': 'IOS-Self-Signed-Certificate-4146203551', 'name': 'IOS-Self-Signed-Certificate-4146203551'}, 'usage': 'General Purpose', 'validity_date': {'end_date': '00:00:00 UTC Jan 1 2020', 'start_date': '21:37:27 UTC Apr 23 2018'}}}}}}
print('-------ATM-------\n---Caixa Automatico--') x = int(input('Val: ')) ced = [100,50,20,10,5,2,1] c = 0 for i in ced: d = x // i x = x % i c = c + 1 if d > 0: print(f'{d} ===> {i}')
print('-------ATM-------\n---Caixa Automatico--') x = int(input('Val: ')) ced = [100, 50, 20, 10, 5, 2, 1] c = 0 for i in ced: d = x // i x = x % i c = c + 1 if d > 0: print(f'{d} ===> {i}')
expected_output = { "policy_map": { "pm_hier2_child_0_2": { "class": { "cm_0": { "priority_levels": 1, "police": { "cir_percent": 5, "bc_ms": 2, "be_ms": 0, "conform_action": ["transmit"], "exceed_action": ["drop"], "violate_action": ["drop"], }, "queue_limit_packets": 77, }, "cm_1": { "average_rate_traffic_shaping": True, "cir_percent": 80, "bandwidth_remaining_ratio": 80, }, "class-default": { "average_rate_traffic_shaping": True, "cir_percent": 50, "bandwidth_remaining_ratio": 20, }, } } } }
expected_output = {'policy_map': {'pm_hier2_child_0_2': {'class': {'cm_0': {'priority_levels': 1, 'police': {'cir_percent': 5, 'bc_ms': 2, 'be_ms': 0, 'conform_action': ['transmit'], 'exceed_action': ['drop'], 'violate_action': ['drop']}, 'queue_limit_packets': 77}, 'cm_1': {'average_rate_traffic_shaping': True, 'cir_percent': 80, 'bandwidth_remaining_ratio': 80}, 'class-default': {'average_rate_traffic_shaping': True, 'cir_percent': 50, 'bandwidth_remaining_ratio': 20}}}}}
list1 = range(2, 20, 3) list1_len = len(list1) print(list1_len)
list1 = range(2, 20, 3) list1_len = len(list1) print(list1_len)
class Solution: def flatten(self, head: 'Node') -> 'Node': def flatten(head: 'Node', rest: 'Node') -> 'Node': if not head: return rest head.next = flatten(head.child, flatten(head.next, rest)) if head.next: head.next.prev = head head.child = None return head return flatten(head, None)
class Solution: def flatten(self, head: 'Node') -> 'Node': def flatten(head: 'Node', rest: 'Node') -> 'Node': if not head: return rest head.next = flatten(head.child, flatten(head.next, rest)) if head.next: head.next.prev = head head.child = None return head return flatten(head, None)
while True: print("this phrase will always print") break print("Does this phrase print?") print("We are done with the while loop.") x = 0 while x < 10: print("we are incrementing x") if x % 2 == 0: x += 3 continue if x % 3 == 0: x += 5 x += 1 print("Done with our loop! X has the value: " + str(x))
while True: print('this phrase will always print') break print('Does this phrase print?') print('We are done with the while loop.') x = 0 while x < 10: print('we are incrementing x') if x % 2 == 0: x += 3 continue if x % 3 == 0: x += 5 x += 1 print('Done with our loop! X has the value: ' + str(x))
for _i in range(100000): str(_i) JS_CODE = ''' for (var i = 0; i < 100000; i++) { new String(i); } '''
for _i in range(100000): str(_i) js_code = '\nfor (var i = 0; i < 100000; i++) {\n\tnew String(i);\n}\n'
bin = [] def decToBin(dec): while(True): if((dec % 2) == 0): bin.append(0) else: bin.append(1) dec = dec // 2 if(dec == 0): break decToBin(10) while bin: print(str(bin.pop()), end= '')
bin = [] def dec_to_bin(dec): while True: if dec % 2 == 0: bin.append(0) else: bin.append(1) dec = dec // 2 if dec == 0: break dec_to_bin(10) while bin: print(str(bin.pop()), end='')
slate_config ={'layers': [{'encoder': {'button': (1, 205), 'decrement': (1, 234), 'increment': (1, 233)}, 'joystick': {'button': (7, 1), 'x+': (8, [100, 0, 0]), 'x-': (8, [-100, 0, 0]), 'y+': (8, [0, 100, 0]), 'y-': (8, [0, -100, 0])}, 'key_shortcuts': [{'actions': (2, [224, 6]), 'assigned_key': 0}, {'actions': (2, [224, 25]), 'assigned_key': 1}, {'actions': (None, None), 'assigned_key': 2}, {'actions': (1, 111), 'assigned_key': 3}, {'actions': (2, [224, 4]), 'assigned_key': 4}, {'actions': (2, [224, 9]), 'assigned_key': 5}, {'actions': (None, None), 'assigned_key': 6}, {'actions': (1, 112), 'assigned_key': 7}], 'name': 'Slate', 'touch_shortcuts': [{'actions': (9, '"C:\\Program Files ' '(x86)\\Steam\\steam.exe"'), 'icon': 'icons/td_steam.bmp', 'label': 'Steam'}, {'actions': (9, '"C:\\Program ' 'Files\\Google\\Chrome\\Application\\chrome.exe"'), 'icon': 'icons/td_chrome.bmp', 'label': 'Chrome'}, {'actions': (9, 'C:\\Users\\Jacob\\AppData\\Local\\Discord\\Update.exe ' '--processStart Discord.exe'), 'icon': 'icons/td_discord.bmp', 'label': 'Discord'}, {'actions': (9, 'C:\\Users\\Jacob\\AppData\\Roaming\\Spotify\\Spotify.exe'), 'icon': 'icons/td_spotify.bmp', 'label': 'Spotify'}, {'actions': (9, '"C:\\Program ' 'Files\\Adobe\\Adobe Photoshop ' 'CC 2019\\Photoshop.exe"'), 'icon': 'icons/td_photoshop.bmp', 'label': 'Photoshop'}, {'actions': (9, '"C:\\Program ' 'Files\\Adobe\\Adobe Premiere ' 'Pro CC 2019\\Adobe Premiere ' 'Pro.exe"'), 'icon': 'icons/td_premiere.bmp', 'label': 'Premiere Pro'}, {'actions': (9, '"C:\\Program Files\\Microsoft ' 'VS Code\\Code.exe"'), 'icon': 'icons/td_vscode.bmp', 'label': 'VSCode'}, {'actions': (9, 'calc'), 'icon': 'icons/td_calc.bmp', 'label': 'Calculator'}, {'actions': (2, [227, 43]), 'icon': 'icons/td_switchapp.bmp', 'label': 'Task View'}, {'actions': (2, [224, 225, 41]), 'icon': 'icons/td_taskmanager.bmp', 'label': 'Task Manager'}, {'actions': (2, [227, 229, 22]), 'icon': 'icons/td_snip.bmp', 'label': 'Snipping Tool'}, {'actions': (3, 'Slate can type text for you!'), 'icon': 'icons/slate.bmp', 'label': 'Slate'}]}, {'encoder': {'button': (2, [14]), 'decrement': (2, [80]), 'increment': (2, [79])}, 'joystick': {'button': (None, None), 'x+': (None, None), 'x-': (None, None), 'y+': (None, None), 'y-': (None, None)}, 'key_shortcuts': [{'actions': (2, [14]), 'assigned_key': 0}, {'actions': (2, [14]), 'assigned_key': 1}, {'actions': (2, [80]), 'assigned_key': 2}, {'actions': (2, [79]), 'assigned_key': 3}, {'actions': (2, [9]), 'assigned_key': 4}, {'actions': (2, [54]), 'assigned_key': 5}, {'actions': (2, [55]), 'assigned_key': 6}, {'actions': (2, [16]), 'assigned_key': 7}], 'name': 'Youtube Controls', 'touch_shortcuts': [{'actions': (2, [14]), 'icon': 'icons/pr_play.bmp', 'label': 'Play'}, {'actions': (2, [14]), 'icon': 'icons/pr_pause.bmp', 'label': 'Pause'}, {'actions': (2, [80]), 'icon': 'icons/pr_rewind.bmp', 'label': 'Rewind'}, {'actions': (2, [79]), 'icon': 'icons/pr_ffwd.bmp', 'label': 'FastForward'}, {'actions': (2, [225, 19]), 'icon': 'icons/pr_previous.bmp', 'label': 'Previous'}, {'actions': (2, [225, 17]), 'icon': 'icons/pr_next.bmp', 'label': 'Next'}, {'actions': (1, 234), 'icon': 'icons/pr_voldown.bmp', 'label': 'Vol -'}, {'actions': (1, 233), 'icon': 'icons/pr_volup.bmp', 'label': 'Vol +'}, {'actions': (2, [9]), 'icon': 'icons/pr_fullscreen.bmp', 'label': 'Fullscreen'}, {'actions': (2, [225, 54]), 'icon': 'icons/pr_slow.bmp', 'label': 'Slow'}, {'actions': (2, [225, 55]), 'icon': 'icons/pr_fast.bmp', 'label': 'Fast'}, {'actions': (2, [16]), 'icon': 'icons/pr_mute.bmp', 'label': 'Mute'}]}]}
slate_config = {'layers': [{'encoder': {'button': (1, 205), 'decrement': (1, 234), 'increment': (1, 233)}, 'joystick': {'button': (7, 1), 'x+': (8, [100, 0, 0]), 'x-': (8, [-100, 0, 0]), 'y+': (8, [0, 100, 0]), 'y-': (8, [0, -100, 0])}, 'key_shortcuts': [{'actions': (2, [224, 6]), 'assigned_key': 0}, {'actions': (2, [224, 25]), 'assigned_key': 1}, {'actions': (None, None), 'assigned_key': 2}, {'actions': (1, 111), 'assigned_key': 3}, {'actions': (2, [224, 4]), 'assigned_key': 4}, {'actions': (2, [224, 9]), 'assigned_key': 5}, {'actions': (None, None), 'assigned_key': 6}, {'actions': (1, 112), 'assigned_key': 7}], 'name': 'Slate', 'touch_shortcuts': [{'actions': (9, '"C:\\Program Files (x86)\\Steam\\steam.exe"'), 'icon': 'icons/td_steam.bmp', 'label': 'Steam'}, {'actions': (9, '"C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe"'), 'icon': 'icons/td_chrome.bmp', 'label': 'Chrome'}, {'actions': (9, 'C:\\Users\\Jacob\\AppData\\Local\\Discord\\Update.exe --processStart Discord.exe'), 'icon': 'icons/td_discord.bmp', 'label': 'Discord'}, {'actions': (9, 'C:\\Users\\Jacob\\AppData\\Roaming\\Spotify\\Spotify.exe'), 'icon': 'icons/td_spotify.bmp', 'label': 'Spotify'}, {'actions': (9, '"C:\\Program Files\\Adobe\\Adobe Photoshop CC 2019\\Photoshop.exe"'), 'icon': 'icons/td_photoshop.bmp', 'label': 'Photoshop'}, {'actions': (9, '"C:\\Program Files\\Adobe\\Adobe Premiere Pro CC 2019\\Adobe Premiere Pro.exe"'), 'icon': 'icons/td_premiere.bmp', 'label': 'Premiere Pro'}, {'actions': (9, '"C:\\Program Files\\Microsoft VS Code\\Code.exe"'), 'icon': 'icons/td_vscode.bmp', 'label': 'VSCode'}, {'actions': (9, 'calc'), 'icon': 'icons/td_calc.bmp', 'label': 'Calculator'}, {'actions': (2, [227, 43]), 'icon': 'icons/td_switchapp.bmp', 'label': 'Task View'}, {'actions': (2, [224, 225, 41]), 'icon': 'icons/td_taskmanager.bmp', 'label': 'Task Manager'}, {'actions': (2, [227, 229, 22]), 'icon': 'icons/td_snip.bmp', 'label': 'Snipping Tool'}, {'actions': (3, 'Slate can type text for you!'), 'icon': 'icons/slate.bmp', 'label': 'Slate'}]}, {'encoder': {'button': (2, [14]), 'decrement': (2, [80]), 'increment': (2, [79])}, 'joystick': {'button': (None, None), 'x+': (None, None), 'x-': (None, None), 'y+': (None, None), 'y-': (None, None)}, 'key_shortcuts': [{'actions': (2, [14]), 'assigned_key': 0}, {'actions': (2, [14]), 'assigned_key': 1}, {'actions': (2, [80]), 'assigned_key': 2}, {'actions': (2, [79]), 'assigned_key': 3}, {'actions': (2, [9]), 'assigned_key': 4}, {'actions': (2, [54]), 'assigned_key': 5}, {'actions': (2, [55]), 'assigned_key': 6}, {'actions': (2, [16]), 'assigned_key': 7}], 'name': 'Youtube Controls', 'touch_shortcuts': [{'actions': (2, [14]), 'icon': 'icons/pr_play.bmp', 'label': 'Play'}, {'actions': (2, [14]), 'icon': 'icons/pr_pause.bmp', 'label': 'Pause'}, {'actions': (2, [80]), 'icon': 'icons/pr_rewind.bmp', 'label': 'Rewind'}, {'actions': (2, [79]), 'icon': 'icons/pr_ffwd.bmp', 'label': 'FastForward'}, {'actions': (2, [225, 19]), 'icon': 'icons/pr_previous.bmp', 'label': 'Previous'}, {'actions': (2, [225, 17]), 'icon': 'icons/pr_next.bmp', 'label': 'Next'}, {'actions': (1, 234), 'icon': 'icons/pr_voldown.bmp', 'label': 'Vol -'}, {'actions': (1, 233), 'icon': 'icons/pr_volup.bmp', 'label': 'Vol +'}, {'actions': (2, [9]), 'icon': 'icons/pr_fullscreen.bmp', 'label': 'Fullscreen'}, {'actions': (2, [225, 54]), 'icon': 'icons/pr_slow.bmp', 'label': 'Slow'}, {'actions': (2, [225, 55]), 'icon': 'icons/pr_fast.bmp', 'label': 'Fast'}, {'actions': (2, [16]), 'icon': 'icons/pr_mute.bmp', 'label': 'Mute'}]}]}
def clear_screen(): Xs = [ 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4 ]; Ys = [ 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4 ]; i = 0 while i < 25: led.unplot(Xs[i], Ys[i]) i = i + 1 def on_forever(): if input.temperature() < 40: clear_screen() Xs = [ 0, 1, 2, 3, 4 ] Ys = [ 3, 4, 3, 2, 1 ] indice = 0 while indice < 5: led.plot(Xs[indice], Ys[indice]) indice = indice + 1 elif input.temperature() > 40: clear_screen() Xs = [ 0, 2, 4, 0, 2, 4, 0, 2, 4, 0, 2, 4 ] Ys = [ 0, 0, 0, 1, 1, 1, 2, 2, 2, 4, 4, 4 ] indice = 0 while indice < 12: led.plot(Xs[indice], Ys[indice]) indice = indice + 1 basic.forever(on_forever)
def clear_screen(): xs = [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4] ys = [0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4] i = 0 while i < 25: led.unplot(Xs[i], Ys[i]) i = i + 1 def on_forever(): if input.temperature() < 40: clear_screen() xs = [0, 1, 2, 3, 4] ys = [3, 4, 3, 2, 1] indice = 0 while indice < 5: led.plot(Xs[indice], Ys[indice]) indice = indice + 1 elif input.temperature() > 40: clear_screen() xs = [0, 2, 4, 0, 2, 4, 0, 2, 4, 0, 2, 4] ys = [0, 0, 0, 1, 1, 1, 2, 2, 2, 4, 4, 4] indice = 0 while indice < 12: led.plot(Xs[indice], Ys[indice]) indice = indice + 1 basic.forever(on_forever)
_MESH_ID_COUNTER = 0 def _get_mesh_id(): global _MESH_ID_COUNTER _MESH_ID_COUNTER += 1 return _MESH_ID_COUNTER class Mesh(object): def __init__(self): self.id = _get_mesh_id() self.timestamp = 0 def has_submeshes(self): return False def submeshes(self): return []
_mesh_id_counter = 0 def _get_mesh_id(): global _MESH_ID_COUNTER _mesh_id_counter += 1 return _MESH_ID_COUNTER class Mesh(object): def __init__(self): self.id = _get_mesh_id() self.timestamp = 0 def has_submeshes(self): return False def submeshes(self): return []
def draw_chessboard(n, s, upper_left = 'black'): black_white = int(n/2) * (s * '1' + s * '0') white_black = int(n/2) * (s * '0' + s * '1') if upper_left == 'black': first = black_white second = white_black else: first = white_black second = black_white for n_row in range(int(n/2)): for s_row in range(s): print(first) for s_row in range(s): print(second) # draw example draw_chessboard(6, 3, upper_left = 'white')
def draw_chessboard(n, s, upper_left='black'): black_white = int(n / 2) * (s * '1' + s * '0') white_black = int(n / 2) * (s * '0' + s * '1') if upper_left == 'black': first = black_white second = white_black else: first = white_black second = black_white for n_row in range(int(n / 2)): for s_row in range(s): print(first) for s_row in range(s): print(second) draw_chessboard(6, 3, upper_left='white')
def create_model_definition(clazz): return ModelDefinition(clazz.swagger_types, clazz.attribute_map, clazz) class ModelDefinition(object): def __init__(self, swagger_types, attribute_map, model_clazz): self.swagger_types = swagger_types self.attribute_map = attribute_map self.model_clazz = model_clazz def create_model(self, **kwargs): return self.model_clazz(**kwargs)
def create_model_definition(clazz): return model_definition(clazz.swagger_types, clazz.attribute_map, clazz) class Modeldefinition(object): def __init__(self, swagger_types, attribute_map, model_clazz): self.swagger_types = swagger_types self.attribute_map = attribute_map self.model_clazz = model_clazz def create_model(self, **kwargs): return self.model_clazz(**kwargs)
class Solution: def getMaximumGenerated(self, n: int) -> int: if n==0:return 0 nums=[0,1] for i in range(2,n+1): if i%2==0: nums.append(nums[i//2]) else: nums.append(nums[i//2]+nums[(i//2)+1]) return max(nums)
class Solution: def get_maximum_generated(self, n: int) -> int: if n == 0: return 0 nums = [0, 1] for i in range(2, n + 1): if i % 2 == 0: nums.append(nums[i // 2]) else: nums.append(nums[i // 2] + nums[i // 2 + 1]) return max(nums)
class TB3Importer: def __init__(self,import_path): self.path = import_path def import_bank(self): assert(False)
class Tb3Importer: def __init__(self, import_path): self.path = import_path def import_bank(self): assert False
# terrascript/resource/azurerm.py __all__ = []
__all__ = []
price = float(input("Please enter your total price = ")) member = input("Are you a member, please enter y or n = ") if price >= 100: price -= 50 elif price >= 50: price -= 30 elif price >= 30: price -= 10 else: price = price if member == "y": price *= 0.8 print("Your final price=%.2f" % price)
price = float(input('Please enter your total price = ')) member = input('Are you a member, please enter y or n = ') if price >= 100: price -= 50 elif price >= 50: price -= 30 elif price >= 30: price -= 10 else: price = price if member == 'y': price *= 0.8 print('Your final price=%.2f' % price)
app = ix.application # Propose to save the project if it's modified reponse, filename = ix.check_need_save() if reponse.is_yes(): app.save_project(filename) if not reponse.is_cancelled(): recent_location = app.get_current_project_filename() if (recent_location == "" and app.get_recent_files("project").get_count() > 0): recent_location = app.get_recent_files("project")[0] extensions = app.get_project_extension_name() str_ext = "{" for i in range(extensions.get_count()): str_ext += extensions[i] if (i+1) < extensions.get_count(): str_ext += "," str_ext += "}" filename = ix.api.GuiWidget.open_file(app, recent_location, "Open Project File...", "Known Files\t*." + str_ext) if filename != "": clarisse_win = app.get_event_window() old_cursor = clarisse_win.get_mouse_cursor() clarisse_win.set_mouse_cursor(ix.api.Gui.MOUSE_CURSOR_WAIT) app.disable() app.load_project(filename) app.enable() clarisse_win.set_mouse_cursor(old_cursor)
app = ix.application (reponse, filename) = ix.check_need_save() if reponse.is_yes(): app.save_project(filename) if not reponse.is_cancelled(): recent_location = app.get_current_project_filename() if recent_location == '' and app.get_recent_files('project').get_count() > 0: recent_location = app.get_recent_files('project')[0] extensions = app.get_project_extension_name() str_ext = '{' for i in range(extensions.get_count()): str_ext += extensions[i] if i + 1 < extensions.get_count(): str_ext += ',' str_ext += '}' filename = ix.api.GuiWidget.open_file(app, recent_location, 'Open Project File...', 'Known Files\t*.' + str_ext) if filename != '': clarisse_win = app.get_event_window() old_cursor = clarisse_win.get_mouse_cursor() clarisse_win.set_mouse_cursor(ix.api.Gui.MOUSE_CURSOR_WAIT) app.disable() app.load_project(filename) app.enable() clarisse_win.set_mouse_cursor(old_cursor)
def letter_queue(commands): queue = [] for command in commands: if command == 'POP': if len(queue) > 0: queue.pop(0) else: queue.append(command.split(' ')[1]) return ''.join(queue) if __name__ == '__main__': # These "asserts" using only for self-checking and not necessary for auto-testing assert letter_queue(("PUSH A", "POP", "POP", "PUSH Z", "PUSH D", "PUSH O", "POP", "PUSH T")) == "DOT", "dot example" assert letter_queue(("POP", "POP")) == "", "Pop, Pop, empty" assert letter_queue(("PUSH H", "PUSH I")) == "HI", "Hi!" assert letter_queue(()) == "", "Nothing" print("All done? Earn rewards by using the 'Check' button!")
def letter_queue(commands): queue = [] for command in commands: if command == 'POP': if len(queue) > 0: queue.pop(0) else: queue.append(command.split(' ')[1]) return ''.join(queue) if __name__ == '__main__': assert letter_queue(('PUSH A', 'POP', 'POP', 'PUSH Z', 'PUSH D', 'PUSH O', 'POP', 'PUSH T')) == 'DOT', 'dot example' assert letter_queue(('POP', 'POP')) == '', 'Pop, Pop, empty' assert letter_queue(('PUSH H', 'PUSH I')) == 'HI', 'Hi!' assert letter_queue(()) == '', 'Nothing' print("All done? Earn rewards by using the 'Check' button!")
class Graph: def __init__(self, graph_dict={}): self.graph_dictionary = graph_dict def vertices(self): return list(self.graph_dictionary.keys()) def generateEdges(self): edges = [] for vertex in self.graph_dictionary: #print("vertex = ") for neighbour in self.graph_dictionary[vertex]: if {neighbour, vertex} not in edges: edges.append({vertex, neighbour}) return edges def edges(self): return self.generateEdges() def addVertex(self, vertex): if vertex not in self.graph_dictionary: self.graph_dictionary[vertex] = [] def addEdge(self, edge): edge = set(edge) vertex1, vertex2 = tuple(edge) if vertex1 in self.graph_dictionary: self.graph_dictionary[vertex1].append(vertex2) else: self.graph_dictionary[vertex1] = [vertex2] def checkForPath(self, source, destination, path=[]): graph = self.graph_dictionary path = path+[source] if source == destination: return path if source not in graph: return None for vertex in graph[source]: if vertex not in path: extendedPath = self.checkForPath(vertex, destination, path) if extendedPath: return extendedPath return None if __name__ == "__main__": g = { "a": ["c"], "b": ["c", "e"], "c": ["a", "b", "d", "e"], "d": ["c"], "e": ["c", "b"], "f": [] } graph = Graph(g) print("vertices : ", graph.vertices()) print() print("edges : ", graph.edges()) print() pathResult = graph.checkForPath("a", "b") if pathResult == None: print("No path") else: print("path is : ", pathResult)
class Graph: def __init__(self, graph_dict={}): self.graph_dictionary = graph_dict def vertices(self): return list(self.graph_dictionary.keys()) def generate_edges(self): edges = [] for vertex in self.graph_dictionary: for neighbour in self.graph_dictionary[vertex]: if {neighbour, vertex} not in edges: edges.append({vertex, neighbour}) return edges def edges(self): return self.generateEdges() def add_vertex(self, vertex): if vertex not in self.graph_dictionary: self.graph_dictionary[vertex] = [] def add_edge(self, edge): edge = set(edge) (vertex1, vertex2) = tuple(edge) if vertex1 in self.graph_dictionary: self.graph_dictionary[vertex1].append(vertex2) else: self.graph_dictionary[vertex1] = [vertex2] def check_for_path(self, source, destination, path=[]): graph = self.graph_dictionary path = path + [source] if source == destination: return path if source not in graph: return None for vertex in graph[source]: if vertex not in path: extended_path = self.checkForPath(vertex, destination, path) if extendedPath: return extendedPath return None if __name__ == '__main__': g = {'a': ['c'], 'b': ['c', 'e'], 'c': ['a', 'b', 'd', 'e'], 'd': ['c'], 'e': ['c', 'b'], 'f': []} graph = graph(g) print('vertices : ', graph.vertices()) print() print('edges : ', graph.edges()) print() path_result = graph.checkForPath('a', 'b') if pathResult == None: print('No path') else: print('path is : ', pathResult)
def nMatchedChar(str1,str2): temp1=str1.lower() temp2=str2.lower() count=0 for ch1 in temp1: for ch2 in temp2: if ch1==ch2: count+=1 return count print(nMatchedChar("Hello","hello"))
def n_matched_char(str1, str2): temp1 = str1.lower() temp2 = str2.lower() count = 0 for ch1 in temp1: for ch2 in temp2: if ch1 == ch2: count += 1 return count print(n_matched_char('Hello', 'hello'))
BOARD_SIZE = 3 # for a standard h4 board use '3' SHOW_HINTS = True # displays possible moves (doesn't include captures) FRAME_RATE = 30 FONT = 'Cambria' FONT_SIZE = 40 WINDOW_WIDTH = 500 WINDOW_HEIGHT = 500 HEX_SIZE = 40 TEXT_COLOR = (255, 255, 255) BACKGROUND_COLOR = (60, 71, 77) BOARD_COLOR = (64, 128, 172) # blue HINT_COLOR = (200, 0, 0) TIMED_MODE = 0 # 1 for per-move, 2 for per-game, 3 for per-player. 0 counts elapsed time up. Anything else disables the timer display. TIME_LIMIT = 300 * FRAME_RATE # number of frames # BOARD_COLOR = (210, 65, 65) # red # HINT_COLOR = (0, 200, 0) # BOARD_COLOR = (70, 160, 85) # green # HINT_COLOR = (0, 0, 200)
board_size = 3 show_hints = True frame_rate = 30 font = 'Cambria' font_size = 40 window_width = 500 window_height = 500 hex_size = 40 text_color = (255, 255, 255) background_color = (60, 71, 77) board_color = (64, 128, 172) hint_color = (200, 0, 0) timed_mode = 0 time_limit = 300 * FRAME_RATE
def is_self_dividing(x): s = str(x) for d in s: if d == '0' or x % int(d) != 0: return False return True class Solution: def selfDividingNumbers(self, left, right): ans = [] for x in range(left, right+1): if is_self_dividing(x): ans.append(x) return ans
def is_self_dividing(x): s = str(x) for d in s: if d == '0' or x % int(d) != 0: return False return True class Solution: def self_dividing_numbers(self, left, right): ans = [] for x in range(left, right + 1): if is_self_dividing(x): ans.append(x) return ans
expected_output = { 'total': 4, 'interfaces': { 'ethernet1/1': { 'area': 0, 'network': '10.254.32.221/30', 'cost': 410, 'state': 'down', 'full_neighbors': 0, 'configured_neighbors': 0 }, 'ethernet5/1': { 'area': 0, 'network': '10.254.32.3/31', 'cost': 21, 'state': 'ptpt', 'full_neighbors': 1, 'configured_neighbors': 1 }, 'ethernet7/1': { 'area': 0, 'network': '10.254.32.109/31', 'cost': 20, 'state': 'ptpt', 'full_neighbors': 1, 'configured_neighbors': 1 }, 'loopback1': { 'area': 0, 'network': '23.33.33.22/32', 'cost': 1, 'state': 'DR', 'full_neighbors': 0, 'configured_neighbors': 0 } } }
expected_output = {'total': 4, 'interfaces': {'ethernet1/1': {'area': 0, 'network': '10.254.32.221/30', 'cost': 410, 'state': 'down', 'full_neighbors': 0, 'configured_neighbors': 0}, 'ethernet5/1': {'area': 0, 'network': '10.254.32.3/31', 'cost': 21, 'state': 'ptpt', 'full_neighbors': 1, 'configured_neighbors': 1}, 'ethernet7/1': {'area': 0, 'network': '10.254.32.109/31', 'cost': 20, 'state': 'ptpt', 'full_neighbors': 1, 'configured_neighbors': 1}, 'loopback1': {'area': 0, 'network': '23.33.33.22/32', 'cost': 1, 'state': 'DR', 'full_neighbors': 0, 'configured_neighbors': 0}}}
#!/usr/bin/env python3 ############################################################################################ # # # Program purpose: Determines if a string is an integer or not. # # Program Author : Happi Yvan <ivensteinpoker@gmail.com> # # Creation Date : January 28, 2019 # # # ############################################################################################ def obtain_user_input(input_mess: str) -> str: user_data, valid = '', False while not valid: try: user_data = input(input_mess) if len(user_data) == 0: raise ValueError(f'Oops! data needed') valid = True except ValueError as ve: print(f'[ERROR]: {ve}') return user_data def determine_type(main_test: str) -> None: try: result_int = int(main_test) if result_int: print(f'String is an integer') except ValueError: print(f'String is not an ingeer') if __name__ == "__main__": test_int = obtain_user_input(input_mess='Enter a string: ') determine_type(main_test=test_int)
def obtain_user_input(input_mess: str) -> str: (user_data, valid) = ('', False) while not valid: try: user_data = input(input_mess) if len(user_data) == 0: raise value_error(f'Oops! data needed') valid = True except ValueError as ve: print(f'[ERROR]: {ve}') return user_data def determine_type(main_test: str) -> None: try: result_int = int(main_test) if result_int: print(f'String is an integer') except ValueError: print(f'String is not an ingeer') if __name__ == '__main__': test_int = obtain_user_input(input_mess='Enter a string: ') determine_type(main_test=test_int)
l = 10 # Global variable def fun1(n): global l # permit for make operation on global variable #l = 5 # Local variable l = l + 50 #We cant make operation on global variable print(l) print(n, "I have printed") fun1("This is me") print(l)
l = 10 def fun1(n): global l l = l + 50 print(l) print(n, 'I have printed') fun1('This is me') print(l)
# -*- encoding: utf-8 -*- ''' @Filename : simulate_settings.py @Datetime : 2020/09/24 10:21:18 @Author : Joe-Bu @version : 1.0 ''' NORMAL_ITEMS = ['watertemp', 'pH', 'DO', 'conductivity', 'turbidity'] NORMAL_INDEX = ['codmn', 'nh3n', 'tp', 'tn'] model_params = dict( savedir = '../../model', modes = 'predict', # train/predict index = 'codmn', # TP/TN/NH3N/CODMn indexs = ['codmn','nh3n','tp','tn'], # TP+TN+NH3N+CODMn model = 'XGB', # RF/GBRT/XGB models = ['RF','GBRT','XGB'] # RF+GBRT+XGB )
""" @Filename : simulate_settings.py @Datetime : 2020/09/24 10:21:18 @Author : Joe-Bu @version : 1.0 """ normal_items = ['watertemp', 'pH', 'DO', 'conductivity', 'turbidity'] normal_index = ['codmn', 'nh3n', 'tp', 'tn'] model_params = dict(savedir='../../model', modes='predict', index='codmn', indexs=['codmn', 'nh3n', 'tp', 'tn'], model='XGB', models=['RF', 'GBRT', 'XGB'])
# ds_config.py # # DocuSign configuration settings DS_CONFIG = { "ds_client_id": "{INTEGRATION_KEY_AUTH_CODE}", # The app's DocuSign integration key "ds_client_secret": "{SECRET_KEY}", # The app's DocuSign integration key's secret "signer_email": "{SIGNER_EMAIL}", "signer_name": "{SIGNER_NAME}", "app_url": "http://localhost:5000", # The url of the application. Eg http://localhost:5000 # NOTE: You must add a Redirect URI of appUrl/ds/callback to your Integration Key. # Example: http://localhost:5000/ds/callback "authorization_server": "https://account-d.docusign.com", "allow_silent_authentication": True, # a user can be silently authenticated if they have an # active login session on another tab of the same browser "target_account_id": None, # Set if you want a specific DocuSign AccountId, # If None, the user's default account will be used. "demo_doc_path": "demo_documents", "doc_salary_docx": "World_Wide_Corp_salary.docx", "doc_docx": "World_Wide_Corp_Battle_Plan_Trafalgar.docx", "doc_pdf": "World_Wide_Corp_lorem.pdf", # Payment gateway information is optional "gateway_account_id": "{DS_PAYMENT_GATEWAY_ID}", "gateway_name": "stripe", "gateway_display_name": "Stripe", "github_example_url": "https://github.com/docusign/code-examples-python/tree/master/app/", "documentation": "", # Use an empty string to indicate no documentation path. "quickstart": "{QUICKSTART_VALUE}" } DS_JWT = { "ds_client_id": "{INTEGRATION_KEY_JWT}", "ds_impersonated_user_id": "{IMPERSONATED_USER_ID}", # The id of the user. "private_key_file": "./private.key", # Create a new file in your repo source folder named private.key then copy and paste your RSA private key there and save it. "authorization_server": "account-d.docusign.com" }
ds_config = {'ds_client_id': '{INTEGRATION_KEY_AUTH_CODE}', 'ds_client_secret': '{SECRET_KEY}', 'signer_email': '{SIGNER_EMAIL}', 'signer_name': '{SIGNER_NAME}', 'app_url': 'http://localhost:5000', 'authorization_server': 'https://account-d.docusign.com', 'allow_silent_authentication': True, 'target_account_id': None, 'demo_doc_path': 'demo_documents', 'doc_salary_docx': 'World_Wide_Corp_salary.docx', 'doc_docx': 'World_Wide_Corp_Battle_Plan_Trafalgar.docx', 'doc_pdf': 'World_Wide_Corp_lorem.pdf', 'gateway_account_id': '{DS_PAYMENT_GATEWAY_ID}', 'gateway_name': 'stripe', 'gateway_display_name': 'Stripe', 'github_example_url': 'https://github.com/docusign/code-examples-python/tree/master/app/', 'documentation': '', 'quickstart': '{QUICKSTART_VALUE}'} ds_jwt = {'ds_client_id': '{INTEGRATION_KEY_JWT}', 'ds_impersonated_user_id': '{IMPERSONATED_USER_ID}', 'private_key_file': './private.key', 'authorization_server': 'account-d.docusign.com'}
# table.py def print_table(objects, colnames): ''' Make a nicely formatted table showing attributes from a list of objects ''' # Emit table headers for colname in colnames: print('{:>10s}'.format(colname), end=' ') print() for obj in objects: # Emit a row of table data for colname in colnames: print('{:>10s}'.format(str(getattr(obj, colname))), end=' ') print() def print_table(objects, colnames, formatter): ''' Make a nicely formatted table showing attributes from a list of objects ''' formatter.headings(colnames) for obj in objects: rowdata = [str(getattr(obj, colname)) for colname in colnames ] formatter.row(rowdata) class TableFormatter(object): # Serves a design spec for making tables (use inheritance to customize) def headings(self, headers): raise NotImplementedError def row(self, rowdata): raise NotImplementedError class TextTableFormatter(TableFormatter): def headings(self, headers): for header in headers: print('{:>10s}'.format(header), end=' ') print() def row(self, rowdata): for item in rowdata: print('{:>10s}'.format(item), end=' ') print() class CSVTableFormatter(TableFormatter): def headings(self, headers): print(','.join(headers)) def row(self, rowdata): print(','.join(rowdata)) class HTMLTableFormatter(TableFormatter): def headings(self, headers): print('<tr>', end='') for h in headers: print('<th>{}</th>'.format(h), end='') print('</tr>') def row(self, rowdata): print('<tr>', end='') for d in rowdata: print('<td>{}</td>'.format(d), end='') print('</tr>')
def print_table(objects, colnames): """ Make a nicely formatted table showing attributes from a list of objects """ for colname in colnames: print('{:>10s}'.format(colname), end=' ') print() for obj in objects: for colname in colnames: print('{:>10s}'.format(str(getattr(obj, colname))), end=' ') print() def print_table(objects, colnames, formatter): """ Make a nicely formatted table showing attributes from a list of objects """ formatter.headings(colnames) for obj in objects: rowdata = [str(getattr(obj, colname)) for colname in colnames] formatter.row(rowdata) class Tableformatter(object): def headings(self, headers): raise NotImplementedError def row(self, rowdata): raise NotImplementedError class Texttableformatter(TableFormatter): def headings(self, headers): for header in headers: print('{:>10s}'.format(header), end=' ') print() def row(self, rowdata): for item in rowdata: print('{:>10s}'.format(item), end=' ') print() class Csvtableformatter(TableFormatter): def headings(self, headers): print(','.join(headers)) def row(self, rowdata): print(','.join(rowdata)) class Htmltableformatter(TableFormatter): def headings(self, headers): print('<tr>', end='') for h in headers: print('<th>{}</th>'.format(h), end='') print('</tr>') def row(self, rowdata): print('<tr>', end='') for d in rowdata: print('<td>{}</td>'.format(d), end='') print('</tr>')
''' @Author: qinzhonghe96@163.com @Date: 2020-03-01 14:31:44 @LastEditors: qinzhonghe96@163.com @LastEditTime: 2020-03-01 17:34:18 @Description: '''
""" @Author: qinzhonghe96@163.com @Date: 2020-03-01 14:31:44 @LastEditors: qinzhonghe96@163.com @LastEditTime: 2020-03-01 17:34:18 @Description: """
class Treasure(object): def __init__(self, value): self.value = value class Coins(Treasure): def __init__(self): super().__init__(2) class Pouch(Treasure): def __init__(self): super().__init__(6) class GoldJewelry(Treasure): def __init__(self): super().__init__(10) class Gemstone(Treasure): def __init__(self): super().__init__(14) class SmallTreasureChest(Treasure): def __init__(self): super().__init__(20)
class Treasure(object): def __init__(self, value): self.value = value class Coins(Treasure): def __init__(self): super().__init__(2) class Pouch(Treasure): def __init__(self): super().__init__(6) class Goldjewelry(Treasure): def __init__(self): super().__init__(10) class Gemstone(Treasure): def __init__(self): super().__init__(14) class Smalltreasurechest(Treasure): def __init__(self): super().__init__(20)
'''Given two integers A and B, A modulo B is the remainder when dividing A by B. For example, the numbers 7, 14, 27 and 38 become 1, 2, 0 and 2, modulo 3. Write a program that accepts 10 numbers as input and outputs the number of distinct numbers in the input, if the numbers are considered modulo 42. The input will contain 10 non-negative integers, each smaller than 1000, one per line. Output the number of distinct values when considered modulo 42 on a single line. ''' mod_result = [] for i in range(10): a = int(input()) mod_result.append(a%42) mod_result = set(mod_result) print(len(mod_result))
"""Given two integers A and B, A modulo B is the remainder when dividing A by B. For example, the numbers 7, 14, 27 and 38 become 1, 2, 0 and 2, modulo 3. Write a program that accepts 10 numbers as input and outputs the number of distinct numbers in the input, if the numbers are considered modulo 42. The input will contain 10 non-negative integers, each smaller than 1000, one per line. Output the number of distinct values when considered modulo 42 on a single line. """ mod_result = [] for i in range(10): a = int(input()) mod_result.append(a % 42) mod_result = set(mod_result) print(len(mod_result))
# AUTOMATICALLY GENERATED BY GENGUPPY about="(iguppy.gsl.Text\nRecordingInter\np1\n(dp2\nS'tag_configs'\np3\n(dp4\nI0\n((S'spacing1'\np5\nI11\ntp6\n(S'font'\np7\n(S'times'\np8\nI24\nS'bold'\ntttp9\nsI1\n(g6\n(S'tabs'\np10\n(F23.5\nS'center'\np11\nF57\nS'left'\np12\nttp13\n(g7\n(g8\nI12\nS'bold'\ntp14\ntp15\ntp16\nsI2\n(g6\ng15\ntp17\nsI3\n(g6\n(g7\n(g8\nI12\ntp18\ntp19\ntp20\nsI4\n((g5\nI6\ntp21\ng13\ntp22\nsI5\n(g21\n(g7\n(g8\nI10\nS'italic'\ntttp23\nsI6\n(g21\n(g7\n(g8\nI10\ntttp24\nsI7\n(g21\ng19\ntp25\nsI8\n(g19\ntp26\nssS'_gsl_tk_geometry'\np27\nS'400x200'\np28\nsS'_gsl_title'\np29\nS'About Heapy Profile Browser'\np30\nsS'appends'\np31\n(lp32\nI0\naS'Heapy Profile Browser \\n'\np33\naI1\naS'\\t'\naI2\naS'Version'\np34\naI1\naS'\\t'\naI3\naS'0.1\\n'\np35\naI4\naS'\\t'\naI2\naS'Author'\np36\naI4\naS'\\t'\naI3\naS'Sverker Nilsson\\n'\np37\naI4\naS'\\t'\naI2\naS'Email'\np38\naI4\naS'\\t'\naI3\naS'sn@sncs.se\\n'\np39\naI4\naS'\\t'\naI2\naS'License'\np40\naI4\naS'\\t'\naI3\naS'MIT \\n'\np41\naI5\naS'Copyright (c) 2005--2008'\np42\naI6\naS' S. Nilsson Computer System AB Linkoping, Sweden '\np43\naI7\naS'\\n'\nasb." help='(iguppy.gsl.Text\nRecordingInter\np1\n(dp2\nS\'tag_configs\'\np3\n(dp4\nI0\n((S\'spacing1\'\np5\nI10\ntp6\n(S\'font\'\np7\n(S\'times\'\np8\nI20\nS\'bold\'\ntttp9\nsI1\n(g6\n(g7\n(g8\nI12\nttp10\ntp11\nsI2\n((g5\nI6\ntp12\ng10\ntp13\nsI3\n((g5\nI9\ntp14\n(g7\n(g8\nI16\nS\'bold\'\ntttp15\nsI4\n(g10\ntp16\nsI5\n((S\'lmargin2\'\np17\nI36\ntp18\ng12\n(S\'tabs\'\np19\n(F97.5\nS\'center\'\np20\nF169\nS\'left\'\np21\nttp22\n(S\'lmargin1\'\np23\nI36\ntp24\n(g7\n(g8\nI12\nS\'bold\'\ntp25\ntp26\ntp27\nsI6\n(g18\ng12\ng24\ng26\ntp28\nsI7\n(g18\ng12\ng24\ng10\ntp29\nsI8\n(g22\ntp30\nsI9\n(g12\ng22\ntp31\nsI10\n(g18\ng24\ng10\ntp32\nsI11\n(g18\ng12\n(g19\n(F96\ng20\nF166\ng21\nttp33\ng24\ng26\ntp34\nsI12\n(g12\ng33\ntp35\nsI13\n(g18\ng12\n(g19\n(F71.5\ng20\nF117\ng21\nttp36\ng24\ng26\ntp37\nsI14\n(g36\ntp38\nsI15\n(g12\ng36\ntp39\nsI16\n(g18\ng24\n(g7\n(g8\nI10\nttp40\ntp41\nsI17\n(g18\n(g5\nI8\ntp42\ng24\ng26\ntp43\nsI18\n((g17\nI72\ntp44\n(g23\nI72\ntp45\ng10\ntp46\nsI19\n(g44\ng12\n(g19\n(F125.5\ng20\nF189\ng21\nttp47\ng45\ng26\ntp48\nsI20\n(g44\ng12\ng45\ng26\ntp49\nsI21\n(g44\ng12\ng45\ng10\ntp50\nsI22\n(g47\ntp51\nsI23\n(g12\ng47\ntp52\nsI24\n(g44\ng45\ng26\ntp53\nsI25\n(g44\ng12\n(g19\n(F116.5\ng20\nF171\ng21\nttp54\ng45\ng26\ntp55\nsI26\n(g54\ntp56\nsI27\n(g18\ng12\n(g19\n(F54.5\ng20\nF83\ng21\nttp57\ng24\ng26\ntp58\nsI28\n(g12\ng57\ntp59\nsI29\n(g14\ng10\ntp60\nsI30\n(g44\ng12\n(g19\n(F115.5\ng20\nF169\ng21\nttp61\ng45\ng26\ntp62\nsI31\n(g61\ntp63\nsI32\n(g12\ng61\ntp64\nsI33\n(g44\ng45\ng40\ntp65\nsI34\n(g44\ng12\n(g19\n(F111.5\ng20\nF161\ng21\nttp66\ng45\ng26\ntp67\nsI35\n(g66\ntp68\nsI36\n(g12\ng66\ntp69\nsI37\n(g18\ng42\ng24\ng10\ntp70\nssS\'_gsl_title\'\np71\nS\'Help for Heapy Profile Browser\'\np72\nsS\'appends\'\np73\n(lp74\nI0\naS\'Menus\\n\'\np75\naI1\naS\'Click on the dotted line at the top of a menu to "tear it off": a separate window containing the menu is created. \\n\'\np76\naI3\naS\'File Menu\\n\'\np77\naI5\naS\'\\t\'\naI6\naS\'New Profile Browser\'\np78\naI5\naS\'\\t\'\naI7\naS\'Create a new browser window with the same\\n\'\np79\naI8\naS\'\\t\\t\'\np80\naI7\naS\'file as the one opened in the current window. \\n\'\np81\naI9\naS\'\\t\'\naI6\naS\'Open Profile\'\np82\naI9\naS\'\\t\'\naI7\naS\'Open a profile data file in the current window.\\n\'\np83\naI9\naS\'\\t\'\naI6\naS\'Close Window\'\np84\naI9\naS\'\\t\'\naI7\naS\'Close the current window (exits from Tk if it\\n\'\np85\naI8\nag80\naI7\naS\'was the last browser window). \\n\'\np86\naI9\naS\'\\t\'\naI6\naS\'Clear Cache\'\np87\naI9\naS\'\\t\'\naI7\naS\'Clear the sample cache, releasing its memory.\\n\'\np88\naI8\nag80\naI7\naS\'The cache will be automatically filled again\\n\'\np89\naI8\nag80\naI7\naS\'when needed. \\n\'\np90\naI8\nag80\naI10\naS\'This command is a kind of temporary /\'\np91\naI7\naS\'\\n\'\naI8\nag80\naI10\naS\'experimental feature. I think the cache handling\'\np92\naI7\naS\'\\n\'\naI8\nag80\naI10\naS\'should be made automatic and less memory\'\np93\naI7\naS\'\\n\'\naI8\nag80\naI10\naS\'consuming. \'\np94\naI7\naS\'\\n\'\naI3\naS\'Pane Menu\\n\'\np95\naI11\naS\'\\t\'\naI6\naS\'Show Control Panel\'\np96\naI11\naS\'\\t\'\naI7\naS\'Show the control panel pane.\\n\'\np97\naI12\naS\'\\t\'\naI6\naS\'Show Graph\'\np98\naI12\naS\'\\t\'\naI7\naS\'Show the graph pane.\\n\'\np99\naI12\naS\'\\t\'\naI6\naS\'Show Table\'\np100\naI12\naS\'\\t\'\naI7\naS\'Show the table pane. \\n\'\np101\naI3\naS\'Graph Menu\\n\'\np102\naI13\naS\'\\t\'\naI6\naS\'Bars / Lines\'\np103\naI13\naS\'\\t\'\naI7\naS\'Choose whether the graph should be displayed using bars\\n\'\np104\naI14\nag80\naI7\naS\'or lines. \\n\'\np105\naI14\nag80\naI10\naS\'When using bars, the sample value (size or count) for\'\np106\naI7\naS\'\\n\'\naI14\nag80\naI10\naS\'different kinds of objects will be stacked on top of each\'\np107\naI7\naS\'\\n\'\naI14\nag80\naI10\naS\'other so the total height represents the total value of a\'\np108\naI7\naS\'\\n\'\naI14\nag80\naI10\naS\'sample. When using lines, each line represents the value\'\np109\naI7\naS\'\\n\'\naI14\nag80\naI10\naS\'for a single kind of object. The 10 largest values are\'\np110\naI7\naS\'\\n\'\naI14\nag80\naI10\naS\'shown in each sample point. Each kind has a particular\'\np111\naI7\naS\'\\n\'\naI14\nag80\naI10\naS\'color, choosen arbitrary but it is always the same color\'\np112\naI7\naS\'\\n\'\naI14\nag80\naI10\naS\'for the same kind. The remaing kinds, if any, are shown in\'\np113\naI7\naS\'\\n\'\naI14\nag80\naI10\naS\'black. \'\np114\naI7\naS\'\\n\'\naI15\naS\'\\t\'\naI6\naS\'Size / Count\'\np115\naI15\naS\'\\t\'\naI7\naS\'Choose whether the graph should display the size of\\n\'\np116\naI14\nag80\naI7\naS\'objects of a particular kind or the number of objects of\\n\'\np117\naI14\nag80\naI7\naS\'that kind. \\n\'\np118\naI14\nag80\naI16\naS\'(Note that this affects only the graph, the table will still\'\np119\naI7\naS\'\\n\'\naI14\nag80\naI16\naS\'choose size or kind as it were choosen in the table menu.)\'\np120\naI7\naS\'\\n\'\naI14\nag80\naI7\naS\'\\n\'\naI3\naS\'Table Menu\\n\'\np121\naI17\naS\'Header submenu\\n\'\np122\naI18\naS\'This menu has a choice of header for each column of the table. The data of each column is determined by the header of that column, as well as the headers of previous columns. So if you change the first column header (A/B), the data in that column will change as well as the data under the next header (Size/Count) and the ones that follow. \\n\'\np123\naI19\naS\'\\t\'\naI20\naS\'A / B\'\np124\naI19\naS\'\\t\'\naI21\naS\'Use the sample at the A or B marker in the graph.\\n\'\np125\naI22\nag80\naI18\naS\'The kinds of objects shown in the table under this\'\np126\naI21\naS\'\\n\'\naI22\nag80\naI18\naS\'column are taken from the 10 largest sample values\'\np127\naI21\naS\'\\n\'\naI22\nag80\naI18\naS\'at that point, in the same order as they are shown in\'\np128\naI21\naS\'\\n\'\naI22\nag80\naI18\naS\'the graph. The ordering in the graph depends on\'\np129\naI21\naS\'\\n\'\naI22\nag80\naI18\naS\'the choice of count or size in the graph menu.\'\np130\naI21\naS\'\\n\'\naI22\nag80\naI18\naS\'However, the table may show count or size\'\np131\naI21\naS\'\\n\'\naI22\nag80\naI18\naS\'independent from the choice in the graph. \'\np132\naI21\naS\'\\n\'\naI23\naS\'\\t\'\naI20\nag115\naI23\naS\'\\t\'\naI21\naS\'Show the size or count of the kinds of objects in\\n\'\np133\naI22\nag80\naI21\naS\'each row, taken from those choosen in the A / B\\n\'\np134\naI22\nag80\naI21\naS\'column. \\n\'\np135\naI23\naS\'\\t\'\naI20\naS\'%A:Tot / %B:Tot\'\np136\naI23\naS\'\\t\'\naI21\naS\'Show percentage of the Size / Count column,\\n\'\np137\naI22\nag80\naI21\naS\'relative to the total (size or count) at either the A or\\n\'\np138\naI22\nag80\naI21\naS\'B sample point. \\n\'\np139\naI23\naS\'\\t\'\naI20\naS\'Cumul /\'\np140\naI23\naS\'\\t\'\naI21\naS\'Show either a cumulative sum of the Size / Count\\n\'\np141\naI22\naS\'\\t\'\naI20\naS\'\'\naI24\naS\'A-B / B-A\'\np142\naI22\naS\'\\t\'\naI21\naS\'column, or the difference A-B or B-A. \\n\'\np143\naI22\nag80\naI18\naS\'The cumulative sum is taken by summing from the\'\np144\naI21\naS\'\\n\'\naI22\nag80\naI18\naS\'first table row down to the last row. \'\np145\naI21\naS\'\\n\'\naI23\naS\'\\t\'\naI20\nag136\naI23\naS\'\\t\'\naI21\naS\'Show percentage of the previous field, relative to\\n\'\np146\naI22\nag80\naI21\naS\'either the A or B total. \\n\'\np147\naI23\naS\'\\t\'\naI20\naS\'Kind\'\np148\naI23\naS\'\\t\'\naI21\naS\'Shows the kind of objects. This is currently the only\\n\'\np149\naI22\nag80\naI21\naS\'alternative for this column. The kind shown\\n\'\np150\naI22\nag80\naI21\naS\'corresponds to the color shown in the A / B\\n\'\np151\naI22\nag80\naI21\naS\'column. A special kind is <Other> which\\n\'\np152\naI22\nag80\naI21\naS\'summarizes the remaining data if there were more\\n\'\np153\naI22\nag80\naI21\naS\'than 10 different kinds in the sample. \\n\'\np154\naI17\naS\'Scrollbar submenu\\n\'\np155\naI25\naS\'\\t\'\naI20\naS\'Auto / On / Off\'\np156\naI25\naS\'\\t\'\naI21\naS\'Choose a scrollbar mode. The usual setting is Auto\\n\'\np157\naI26\nag80\naI21\naS\'which shows the scrollbar only when needed. \\n\'\np158\naI3\naS\'Window Menu\\n\'\np159\naI10\naS\'This menu lists the names of all open windows. Selecting one brings it to the top, deiconifying it if necessary. \\n\'\np160\naI3\naS\'Help Menu\\n\'\np161\naI27\naS\'\\t\'\naI6\naS\'About\'\np162\naI27\naS\'\\t\'\naI7\naS\'Version, author, email, copyright.\\n\'\np163\naI28\naS\'\\t\'\naI6\naS\'Help\'\np164\naI28\naS\'\\t\'\naI7\naS\'Open this help window. \\n\'\np165\naI0\naS\'Panes\\n\'\np166\naI1\naS\'There are 3 panes in the main window shown by default. At the top is the Control Panel, at the bottom left the Graph and at the bottom right the Table. \\n\'\np167\naI3\naS\'Control Panel Pane\\n\'\np168\naI29\naS\'This contains controls for the graph and the markers. It also has a quick-exit button and a collect button.\\n\'\np169\naI17\naS\'X / Y axis control\\n\'\np170\naI18\naS\'The two frames in the Control Panel having an X or Y button in the top left corner control each axis of the graph. The X, horizontal, axis shows the sample point. The Y axis shows either the size or count, as choosen in the Graph menu. \\n\'\np171\naI30\naS\'\\t\'\naI20\naS\'X / Y Button\'\np172\naI30\naS\'\\t\'\naI21\naS\'Brings up a menu, currently containing some buttons\\n\'\np173\naI31\nag80\naI21\naS\'that can also be accessed directly in the panel. \\n\'\np174\naI32\naS\'\\t\'\naI20\naS\'Grid button\'\np175\naI32\naS\'\\t\'\naI21\naS\'Select if the graph should show grid lines.\\n\'\np176\naI32\naS\'\\t\'\naI20\naS\'Range buttons\'\np177\naI32\naS\'\\t\'\naI21\naS\'Change the range that is shown in the displayed\\n\'\np178\naI31\naS\'\\t\'\naI20\naS\'\'\naI24\naS\'- / +\'\np179\naI31\naS\'\\t\'\naI21\naS\'portion of the graph. For each time + or - is pressed the\\n\'\np180\naI31\nag80\naI21\naS\'range will be stepped up or down in the sequence (1, 2,\\n\'\np181\naI31\nag80\naI21\naS\'5) and multiples thereoff. \\n\'\np182\naI32\naS\'\\t\'\naI20\naS\'Range field\'\np183\naI32\naS\'\\t\'\naI21\naS\'The current range is shown here, and a new range can\\n\'\np184\naI31\nag80\naI21\naS\'be entered by writing to this field and pressing Enter.\\n\'\np185\naI31\nag80\naI21\naS\'The format is an integer that may be followed by a\\n\'\np186\naI31\nag80\naI21\naS\'multiplier, K, M, G, or T, meaning that the value is\\n\'\np187\naI31\nag80\naI21\naS\'multipled by 1000, 1E6, 1E9, or 1E12 respectively.\\n\'\np188\naI31\nag80\naI21\naS\'The maximum range is 1T. \\n\'\np189\naI17\naS\'A / B sample control\\n\'\np190\naI18\naS\'Each of the frames showing A or B in the top left corner controls one of the sample markers. The current position is shown in the bottom left corner.\'\np191\naI33\naS\'(This is currently not an entry field - TODO - but the marker may be moved long distances by directly dragging it in the Graph frame.) \'\np192\naI18\naS\'\\n\'\naI34\naS\'\\t\'\naI20\naS\'- / + \'\np193\naI34\naS\'\\t\'\naI21\naS\'Step the marker one step to the left (-) or to the right (+).\\n\'\np194\naI35\nag80\naI18\naS\'The table will be updated to show new data if it was set\'\np195\naI21\naS\'\\n\'\naI35\nag80\naI18\naS\'to show such data that were dependent on the marker\'\np196\naI21\naS\'\\n\'\naI35\nag80\naI18\naS\'moved. \'\np197\naI21\naS\'\\n\'\naI35\nag80\naI18\naS\'The graph will show the new marker position. If the\'\np198\naI21\naS\'\\n\'\naI35\nag80\naI18\naS\'marker was outside of the displayed portion of the\'\np199\naI21\naS\'\\n\'\naI35\nag80\naI18\naS\'graph, the graph will scroll so the marker becomes\'\np200\naI21\naS\'\\n\'\naI35\nag80\naI18\naS\'visible. \'\np201\naI21\naS\'\\n\'\naI36\naS\'\\t\'\naI20\naS\'Track button\'\np202\naI36\naS\'\\t\'\naI21\naS\'Press to set the marker to the last sample in the file and\\n\'\np203\naI35\nag80\naI21\naS\'stay at the end as new samples are added. (New\\n\'\np204\naI35\nag80\naI21\naS\'samples are periodically read from the end of the file\\n\'\np205\naI35\nag80\naI21\naS\'when auto-collect is selected via the Collect button.) \\n\'\np206\naI35\nag80\naI18\naS\'Tracking is turned off when the marker is manually\'\np207\naI21\naS\'\\n\'\naI35\nag80\naI18\nag197\naI21\naS\'\\n\'\naI17\naS\'Exit button\\n\'\np208\naI18\naS\'Exits the program, a shortcut for the Exit command in the File menu.\\n\'\np209\naI17\naS\'Collect button\\n\'\np210\naI18\naS\'When selected, the browser will collect new samples from the current file, and will continue to do this periodically.\\n\'\np211\naI33\naS\'Currently it will check the file for new data once a second. \'\np212\naI18\naS\'\\n\'\naI3\naS\'Graph Pane\\n\'\np213\naI10\naS\'This pane shows the currently visible portion of the sample file. It can be scrolled via an horizontal scrollbar. The two markers are shown as buttons labeled A and B above the graph and with lines extending down in the graph. Markers can be moved by the mouse. \\n\'\np214\naI7\naS\'How to move the markers is hopefully quite self evident when tried out but I wrote up some details about it anyway.\\n\'\np215\naI17\naS\'Marker movement details\\n\'\np216\naI37\naS"Holding down the mouse button and moving the mouse moves the underlying marker. Klicking the mouse button over a marker without moving the mouse, selects the marker. While it is selected any movement of the mouse within the graph will move the marker with it. Klicking again anywhere in the graph will deselect the marker. If the marker can be moved, the cursor will be an arrow indicating the direction it can be moved, left or right or both. If the marker can not be moved in any direction, the cursor will show a circle or disc. The marker can not move outside the available samples. Moving the mouse outside of the graph also restricts the movement of the mouse, even if the mouse button is pressed. This is intentional so that the marker can be moved longer distances than the mouse can move. Moving the mouse to the right of the graph, the marker can only be moved to the right - moving back the mouse will not move the marker back until the mouse enters the graph area again. Similarly for the left side. Above or below the graph, the mouse will not move the marker at all but will show a circle to indicate that the mouse may be \'recirculated\' to move back into the graph. \\n"\np217\naI3\naS\'Table Pane\\n\'\np218\naI10\naS\'This pane shows a table based on the configuration set in the Table menu. The sample number and time stamp show in the header. \\n\'\np219\nasb.'
about = "(iguppy.gsl.Text\nRecordingInter\np1\n(dp2\nS'tag_configs'\np3\n(dp4\nI0\n((S'spacing1'\np5\nI11\ntp6\n(S'font'\np7\n(S'times'\np8\nI24\nS'bold'\ntttp9\nsI1\n(g6\n(S'tabs'\np10\n(F23.5\nS'center'\np11\nF57\nS'left'\np12\nttp13\n(g7\n(g8\nI12\nS'bold'\ntp14\ntp15\ntp16\nsI2\n(g6\ng15\ntp17\nsI3\n(g6\n(g7\n(g8\nI12\ntp18\ntp19\ntp20\nsI4\n((g5\nI6\ntp21\ng13\ntp22\nsI5\n(g21\n(g7\n(g8\nI10\nS'italic'\ntttp23\nsI6\n(g21\n(g7\n(g8\nI10\ntttp24\nsI7\n(g21\ng19\ntp25\nsI8\n(g19\ntp26\nssS'_gsl_tk_geometry'\np27\nS'400x200'\np28\nsS'_gsl_title'\np29\nS'About Heapy Profile Browser'\np30\nsS'appends'\np31\n(lp32\nI0\naS'Heapy Profile Browser \\n'\np33\naI1\naS'\\t'\naI2\naS'Version'\np34\naI1\naS'\\t'\naI3\naS'0.1\\n'\np35\naI4\naS'\\t'\naI2\naS'Author'\np36\naI4\naS'\\t'\naI3\naS'Sverker Nilsson\\n'\np37\naI4\naS'\\t'\naI2\naS'Email'\np38\naI4\naS'\\t'\naI3\naS'sn@sncs.se\\n'\np39\naI4\naS'\\t'\naI2\naS'License'\np40\naI4\naS'\\t'\naI3\naS'MIT \\n'\np41\naI5\naS'Copyright (c) 2005--2008'\np42\naI6\naS' S. Nilsson Computer System AB Linkoping, Sweden '\np43\naI7\naS'\\n'\nasb." help = '(iguppy.gsl.Text\nRecordingInter\np1\n(dp2\nS\'tag_configs\'\np3\n(dp4\nI0\n((S\'spacing1\'\np5\nI10\ntp6\n(S\'font\'\np7\n(S\'times\'\np8\nI20\nS\'bold\'\ntttp9\nsI1\n(g6\n(g7\n(g8\nI12\nttp10\ntp11\nsI2\n((g5\nI6\ntp12\ng10\ntp13\nsI3\n((g5\nI9\ntp14\n(g7\n(g8\nI16\nS\'bold\'\ntttp15\nsI4\n(g10\ntp16\nsI5\n((S\'lmargin2\'\np17\nI36\ntp18\ng12\n(S\'tabs\'\np19\n(F97.5\nS\'center\'\np20\nF169\nS\'left\'\np21\nttp22\n(S\'lmargin1\'\np23\nI36\ntp24\n(g7\n(g8\nI12\nS\'bold\'\ntp25\ntp26\ntp27\nsI6\n(g18\ng12\ng24\ng26\ntp28\nsI7\n(g18\ng12\ng24\ng10\ntp29\nsI8\n(g22\ntp30\nsI9\n(g12\ng22\ntp31\nsI10\n(g18\ng24\ng10\ntp32\nsI11\n(g18\ng12\n(g19\n(F96\ng20\nF166\ng21\nttp33\ng24\ng26\ntp34\nsI12\n(g12\ng33\ntp35\nsI13\n(g18\ng12\n(g19\n(F71.5\ng20\nF117\ng21\nttp36\ng24\ng26\ntp37\nsI14\n(g36\ntp38\nsI15\n(g12\ng36\ntp39\nsI16\n(g18\ng24\n(g7\n(g8\nI10\nttp40\ntp41\nsI17\n(g18\n(g5\nI8\ntp42\ng24\ng26\ntp43\nsI18\n((g17\nI72\ntp44\n(g23\nI72\ntp45\ng10\ntp46\nsI19\n(g44\ng12\n(g19\n(F125.5\ng20\nF189\ng21\nttp47\ng45\ng26\ntp48\nsI20\n(g44\ng12\ng45\ng26\ntp49\nsI21\n(g44\ng12\ng45\ng10\ntp50\nsI22\n(g47\ntp51\nsI23\n(g12\ng47\ntp52\nsI24\n(g44\ng45\ng26\ntp53\nsI25\n(g44\ng12\n(g19\n(F116.5\ng20\nF171\ng21\nttp54\ng45\ng26\ntp55\nsI26\n(g54\ntp56\nsI27\n(g18\ng12\n(g19\n(F54.5\ng20\nF83\ng21\nttp57\ng24\ng26\ntp58\nsI28\n(g12\ng57\ntp59\nsI29\n(g14\ng10\ntp60\nsI30\n(g44\ng12\n(g19\n(F115.5\ng20\nF169\ng21\nttp61\ng45\ng26\ntp62\nsI31\n(g61\ntp63\nsI32\n(g12\ng61\ntp64\nsI33\n(g44\ng45\ng40\ntp65\nsI34\n(g44\ng12\n(g19\n(F111.5\ng20\nF161\ng21\nttp66\ng45\ng26\ntp67\nsI35\n(g66\ntp68\nsI36\n(g12\ng66\ntp69\nsI37\n(g18\ng42\ng24\ng10\ntp70\nssS\'_gsl_title\'\np71\nS\'Help for Heapy Profile Browser\'\np72\nsS\'appends\'\np73\n(lp74\nI0\naS\'Menus\\n\'\np75\naI1\naS\'Click on the dotted line at the top of a menu to "tear it off": a separate window containing the menu is created. \\n\'\np76\naI3\naS\'File Menu\\n\'\np77\naI5\naS\'\\t\'\naI6\naS\'New Profile Browser\'\np78\naI5\naS\'\\t\'\naI7\naS\'Create a new browser window with the same\\n\'\np79\naI8\naS\'\\t\\t\'\np80\naI7\naS\'file as the one opened in the current window. \\n\'\np81\naI9\naS\'\\t\'\naI6\naS\'Open Profile\'\np82\naI9\naS\'\\t\'\naI7\naS\'Open a profile data file in the current window.\\n\'\np83\naI9\naS\'\\t\'\naI6\naS\'Close Window\'\np84\naI9\naS\'\\t\'\naI7\naS\'Close the current window (exits from Tk if it\\n\'\np85\naI8\nag80\naI7\naS\'was the last browser window). \\n\'\np86\naI9\naS\'\\t\'\naI6\naS\'Clear Cache\'\np87\naI9\naS\'\\t\'\naI7\naS\'Clear the sample cache, releasing its memory.\\n\'\np88\naI8\nag80\naI7\naS\'The cache will be automatically filled again\\n\'\np89\naI8\nag80\naI7\naS\'when needed. \\n\'\np90\naI8\nag80\naI10\naS\'This command is a kind of temporary /\'\np91\naI7\naS\'\\n\'\naI8\nag80\naI10\naS\'experimental feature. I think the cache handling\'\np92\naI7\naS\'\\n\'\naI8\nag80\naI10\naS\'should be made automatic and less memory\'\np93\naI7\naS\'\\n\'\naI8\nag80\naI10\naS\'consuming. \'\np94\naI7\naS\'\\n\'\naI3\naS\'Pane Menu\\n\'\np95\naI11\naS\'\\t\'\naI6\naS\'Show Control Panel\'\np96\naI11\naS\'\\t\'\naI7\naS\'Show the control panel pane.\\n\'\np97\naI12\naS\'\\t\'\naI6\naS\'Show Graph\'\np98\naI12\naS\'\\t\'\naI7\naS\'Show the graph pane.\\n\'\np99\naI12\naS\'\\t\'\naI6\naS\'Show Table\'\np100\naI12\naS\'\\t\'\naI7\naS\'Show the table pane. \\n\'\np101\naI3\naS\'Graph Menu\\n\'\np102\naI13\naS\'\\t\'\naI6\naS\'Bars / Lines\'\np103\naI13\naS\'\\t\'\naI7\naS\'Choose whether the graph should be displayed using bars\\n\'\np104\naI14\nag80\naI7\naS\'or lines. \\n\'\np105\naI14\nag80\naI10\naS\'When using bars, the sample value (size or count) for\'\np106\naI7\naS\'\\n\'\naI14\nag80\naI10\naS\'different kinds of objects will be stacked on top of each\'\np107\naI7\naS\'\\n\'\naI14\nag80\naI10\naS\'other so the total height represents the total value of a\'\np108\naI7\naS\'\\n\'\naI14\nag80\naI10\naS\'sample. When using lines, each line represents the value\'\np109\naI7\naS\'\\n\'\naI14\nag80\naI10\naS\'for a single kind of object. The 10 largest values are\'\np110\naI7\naS\'\\n\'\naI14\nag80\naI10\naS\'shown in each sample point. Each kind has a particular\'\np111\naI7\naS\'\\n\'\naI14\nag80\naI10\naS\'color, choosen arbitrary but it is always the same color\'\np112\naI7\naS\'\\n\'\naI14\nag80\naI10\naS\'for the same kind. The remaing kinds, if any, are shown in\'\np113\naI7\naS\'\\n\'\naI14\nag80\naI10\naS\'black. \'\np114\naI7\naS\'\\n\'\naI15\naS\'\\t\'\naI6\naS\'Size / Count\'\np115\naI15\naS\'\\t\'\naI7\naS\'Choose whether the graph should display the size of\\n\'\np116\naI14\nag80\naI7\naS\'objects of a particular kind or the number of objects of\\n\'\np117\naI14\nag80\naI7\naS\'that kind. \\n\'\np118\naI14\nag80\naI16\naS\'(Note that this affects only the graph, the table will still\'\np119\naI7\naS\'\\n\'\naI14\nag80\naI16\naS\'choose size or kind as it were choosen in the table menu.)\'\np120\naI7\naS\'\\n\'\naI14\nag80\naI7\naS\'\\n\'\naI3\naS\'Table Menu\\n\'\np121\naI17\naS\'Header submenu\\n\'\np122\naI18\naS\'This menu has a choice of header for each column of the table. The data of each column is determined by the header of that column, as well as the headers of previous columns. So if you change the first column header (A/B), the data in that column will change as well as the data under the next header (Size/Count) and the ones that follow. \\n\'\np123\naI19\naS\'\\t\'\naI20\naS\'A / B\'\np124\naI19\naS\'\\t\'\naI21\naS\'Use the sample at the A or B marker in the graph.\\n\'\np125\naI22\nag80\naI18\naS\'The kinds of objects shown in the table under this\'\np126\naI21\naS\'\\n\'\naI22\nag80\naI18\naS\'column are taken from the 10 largest sample values\'\np127\naI21\naS\'\\n\'\naI22\nag80\naI18\naS\'at that point, in the same order as they are shown in\'\np128\naI21\naS\'\\n\'\naI22\nag80\naI18\naS\'the graph. The ordering in the graph depends on\'\np129\naI21\naS\'\\n\'\naI22\nag80\naI18\naS\'the choice of count or size in the graph menu.\'\np130\naI21\naS\'\\n\'\naI22\nag80\naI18\naS\'However, the table may show count or size\'\np131\naI21\naS\'\\n\'\naI22\nag80\naI18\naS\'independent from the choice in the graph. \'\np132\naI21\naS\'\\n\'\naI23\naS\'\\t\'\naI20\nag115\naI23\naS\'\\t\'\naI21\naS\'Show the size or count of the kinds of objects in\\n\'\np133\naI22\nag80\naI21\naS\'each row, taken from those choosen in the A / B\\n\'\np134\naI22\nag80\naI21\naS\'column. \\n\'\np135\naI23\naS\'\\t\'\naI20\naS\'%A:Tot / %B:Tot\'\np136\naI23\naS\'\\t\'\naI21\naS\'Show percentage of the Size / Count column,\\n\'\np137\naI22\nag80\naI21\naS\'relative to the total (size or count) at either the A or\\n\'\np138\naI22\nag80\naI21\naS\'B sample point. \\n\'\np139\naI23\naS\'\\t\'\naI20\naS\'Cumul /\'\np140\naI23\naS\'\\t\'\naI21\naS\'Show either a cumulative sum of the Size / Count\\n\'\np141\naI22\naS\'\\t\'\naI20\naS\'\'\naI24\naS\'A-B / B-A\'\np142\naI22\naS\'\\t\'\naI21\naS\'column, or the difference A-B or B-A. \\n\'\np143\naI22\nag80\naI18\naS\'The cumulative sum is taken by summing from the\'\np144\naI21\naS\'\\n\'\naI22\nag80\naI18\naS\'first table row down to the last row. \'\np145\naI21\naS\'\\n\'\naI23\naS\'\\t\'\naI20\nag136\naI23\naS\'\\t\'\naI21\naS\'Show percentage of the previous field, relative to\\n\'\np146\naI22\nag80\naI21\naS\'either the A or B total. \\n\'\np147\naI23\naS\'\\t\'\naI20\naS\'Kind\'\np148\naI23\naS\'\\t\'\naI21\naS\'Shows the kind of objects. This is currently the only\\n\'\np149\naI22\nag80\naI21\naS\'alternative for this column. The kind shown\\n\'\np150\naI22\nag80\naI21\naS\'corresponds to the color shown in the A / B\\n\'\np151\naI22\nag80\naI21\naS\'column. A special kind is <Other> which\\n\'\np152\naI22\nag80\naI21\naS\'summarizes the remaining data if there were more\\n\'\np153\naI22\nag80\naI21\naS\'than 10 different kinds in the sample. \\n\'\np154\naI17\naS\'Scrollbar submenu\\n\'\np155\naI25\naS\'\\t\'\naI20\naS\'Auto / On / Off\'\np156\naI25\naS\'\\t\'\naI21\naS\'Choose a scrollbar mode. The usual setting is Auto\\n\'\np157\naI26\nag80\naI21\naS\'which shows the scrollbar only when needed. \\n\'\np158\naI3\naS\'Window Menu\\n\'\np159\naI10\naS\'This menu lists the names of all open windows. Selecting one brings it to the top, deiconifying it if necessary. \\n\'\np160\naI3\naS\'Help Menu\\n\'\np161\naI27\naS\'\\t\'\naI6\naS\'About\'\np162\naI27\naS\'\\t\'\naI7\naS\'Version, author, email, copyright.\\n\'\np163\naI28\naS\'\\t\'\naI6\naS\'Help\'\np164\naI28\naS\'\\t\'\naI7\naS\'Open this help window. \\n\'\np165\naI0\naS\'Panes\\n\'\np166\naI1\naS\'There are 3 panes in the main window shown by default. At the top is the Control Panel, at the bottom left the Graph and at the bottom right the Table. \\n\'\np167\naI3\naS\'Control Panel Pane\\n\'\np168\naI29\naS\'This contains controls for the graph and the markers. It also has a quick-exit button and a collect button.\\n\'\np169\naI17\naS\'X / Y axis control\\n\'\np170\naI18\naS\'The two frames in the Control Panel having an X or Y button in the top left corner control each axis of the graph. The X, horizontal, axis shows the sample point. The Y axis shows either the size or count, as choosen in the Graph menu. \\n\'\np171\naI30\naS\'\\t\'\naI20\naS\'X / Y Button\'\np172\naI30\naS\'\\t\'\naI21\naS\'Brings up a menu, currently containing some buttons\\n\'\np173\naI31\nag80\naI21\naS\'that can also be accessed directly in the panel. \\n\'\np174\naI32\naS\'\\t\'\naI20\naS\'Grid button\'\np175\naI32\naS\'\\t\'\naI21\naS\'Select if the graph should show grid lines.\\n\'\np176\naI32\naS\'\\t\'\naI20\naS\'Range buttons\'\np177\naI32\naS\'\\t\'\naI21\naS\'Change the range that is shown in the displayed\\n\'\np178\naI31\naS\'\\t\'\naI20\naS\'\'\naI24\naS\'- / +\'\np179\naI31\naS\'\\t\'\naI21\naS\'portion of the graph. For each time + or - is pressed the\\n\'\np180\naI31\nag80\naI21\naS\'range will be stepped up or down in the sequence (1, 2,\\n\'\np181\naI31\nag80\naI21\naS\'5) and multiples thereoff. \\n\'\np182\naI32\naS\'\\t\'\naI20\naS\'Range field\'\np183\naI32\naS\'\\t\'\naI21\naS\'The current range is shown here, and a new range can\\n\'\np184\naI31\nag80\naI21\naS\'be entered by writing to this field and pressing Enter.\\n\'\np185\naI31\nag80\naI21\naS\'The format is an integer that may be followed by a\\n\'\np186\naI31\nag80\naI21\naS\'multiplier, K, M, G, or T, meaning that the value is\\n\'\np187\naI31\nag80\naI21\naS\'multipled by 1000, 1E6, 1E9, or 1E12 respectively.\\n\'\np188\naI31\nag80\naI21\naS\'The maximum range is 1T. \\n\'\np189\naI17\naS\'A / B sample control\\n\'\np190\naI18\naS\'Each of the frames showing A or B in the top left corner controls one of the sample markers. The current position is shown in the bottom left corner.\'\np191\naI33\naS\'(This is currently not an entry field - TODO - but the marker may be moved long distances by directly dragging it in the Graph frame.) \'\np192\naI18\naS\'\\n\'\naI34\naS\'\\t\'\naI20\naS\'- / + \'\np193\naI34\naS\'\\t\'\naI21\naS\'Step the marker one step to the left (-) or to the right (+).\\n\'\np194\naI35\nag80\naI18\naS\'The table will be updated to show new data if it was set\'\np195\naI21\naS\'\\n\'\naI35\nag80\naI18\naS\'to show such data that were dependent on the marker\'\np196\naI21\naS\'\\n\'\naI35\nag80\naI18\naS\'moved. \'\np197\naI21\naS\'\\n\'\naI35\nag80\naI18\naS\'The graph will show the new marker position. If the\'\np198\naI21\naS\'\\n\'\naI35\nag80\naI18\naS\'marker was outside of the displayed portion of the\'\np199\naI21\naS\'\\n\'\naI35\nag80\naI18\naS\'graph, the graph will scroll so the marker becomes\'\np200\naI21\naS\'\\n\'\naI35\nag80\naI18\naS\'visible. \'\np201\naI21\naS\'\\n\'\naI36\naS\'\\t\'\naI20\naS\'Track button\'\np202\naI36\naS\'\\t\'\naI21\naS\'Press to set the marker to the last sample in the file and\\n\'\np203\naI35\nag80\naI21\naS\'stay at the end as new samples are added. (New\\n\'\np204\naI35\nag80\naI21\naS\'samples are periodically read from the end of the file\\n\'\np205\naI35\nag80\naI21\naS\'when auto-collect is selected via the Collect button.) \\n\'\np206\naI35\nag80\naI18\naS\'Tracking is turned off when the marker is manually\'\np207\naI21\naS\'\\n\'\naI35\nag80\naI18\nag197\naI21\naS\'\\n\'\naI17\naS\'Exit button\\n\'\np208\naI18\naS\'Exits the program, a shortcut for the Exit command in the File menu.\\n\'\np209\naI17\naS\'Collect button\\n\'\np210\naI18\naS\'When selected, the browser will collect new samples from the current file, and will continue to do this periodically.\\n\'\np211\naI33\naS\'Currently it will check the file for new data once a second. \'\np212\naI18\naS\'\\n\'\naI3\naS\'Graph Pane\\n\'\np213\naI10\naS\'This pane shows the currently visible portion of the sample file. It can be scrolled via an horizontal scrollbar. The two markers are shown as buttons labeled A and B above the graph and with lines extending down in the graph. Markers can be moved by the mouse. \\n\'\np214\naI7\naS\'How to move the markers is hopefully quite self evident when tried out but I wrote up some details about it anyway.\\n\'\np215\naI17\naS\'Marker movement details\\n\'\np216\naI37\naS"Holding down the mouse button and moving the mouse moves the underlying marker. Klicking the mouse button over a marker without moving the mouse, selects the marker. While it is selected any movement of the mouse within the graph will move the marker with it. Klicking again anywhere in the graph will deselect the marker. If the marker can be moved, the cursor will be an arrow indicating the direction it can be moved, left or right or both. If the marker can not be moved in any direction, the cursor will show a circle or disc. The marker can not move outside the available samples. Moving the mouse outside of the graph also restricts the movement of the mouse, even if the mouse button is pressed. This is intentional so that the marker can be moved longer distances than the mouse can move. Moving the mouse to the right of the graph, the marker can only be moved to the right - moving back the mouse will not move the marker back until the mouse enters the graph area again. Similarly for the left side. Above or below the graph, the mouse will not move the marker at all but will show a circle to indicate that the mouse may be \'recirculated\' to move back into the graph. \\n"\np217\naI3\naS\'Table Pane\\n\'\np218\naI10\naS\'This pane shows a table based on the configuration set in the Table menu. The sample number and time stamp show in the header. \\n\'\np219\nasb.'
# AUTOGENERATED BY NBDEV! DO NOT EDIT! __all__ = ["index", "modules", "custom_doc_links", "git_url"] index = {"get_splits": "00_data.ipynb", "TitledStrEx": "00_data.ipynb", "PreprocCategorize": "00_data.ipynb", "PreprocCategoryBlock": "00_data.ipynb", "TextGetter": "00_data.ipynb", "KeyGetter": "00_data.ipynb", "TransTensorText": "00_data.ipynb", "find_first": "00_data.ipynb", "split_by_sep": "00_data.ipynb", "TokTransform": "00_data.ipynb", "TokBatchTransform": "00_data.ipynb", "PadBatchTransform": "00_data.ipynb", "untuple": "00_data.ipynb", "to_tuple": "00_data.ipynb", "LMBatchTfm": "00_data.ipynb", "Undict": "00_data.ipynb", "UndictS2S": "00_data.ipynb", "TransformersTextBlock": "00_data.ipynb", "TransformersLMBlock": "00_data.ipynb", "tokenize": "00_data.ipynb", "group_texts": "00_data.ipynb", "MultiChoiceTransform": "00_data.ipynb", "MultiChoiceBlock": "00_data.ipynb", "PadTokBatchTransform": "00_data.ipynb", "TokenClassificationBlock": "00_data.ipynb", "default_splitter": "01_learner.ipynb", "to_device": "01_learner.ipynb", "TransCallback": "01_learner.ipynb", "GeneratePreds": "01_learner.ipynb", "TransLearner": "01_learner.ipynb", "MetricCallback": "02_metrics.ipynb", "RougeScore": "02_metrics.ipynb", "Seqeval": "02_metrics.ipynb"} modules = ["data.py", "learner.py", "metrics.py"] doc_url = "https://aikindergarten.github.io/fasthugs/" git_url = "https://github.com/aikindergarten/fasthugs/tree/master/" def custom_doc_links(name): return None
__all__ = ['index', 'modules', 'custom_doc_links', 'git_url'] index = {'get_splits': '00_data.ipynb', 'TitledStrEx': '00_data.ipynb', 'PreprocCategorize': '00_data.ipynb', 'PreprocCategoryBlock': '00_data.ipynb', 'TextGetter': '00_data.ipynb', 'KeyGetter': '00_data.ipynb', 'TransTensorText': '00_data.ipynb', 'find_first': '00_data.ipynb', 'split_by_sep': '00_data.ipynb', 'TokTransform': '00_data.ipynb', 'TokBatchTransform': '00_data.ipynb', 'PadBatchTransform': '00_data.ipynb', 'untuple': '00_data.ipynb', 'to_tuple': '00_data.ipynb', 'LMBatchTfm': '00_data.ipynb', 'Undict': '00_data.ipynb', 'UndictS2S': '00_data.ipynb', 'TransformersTextBlock': '00_data.ipynb', 'TransformersLMBlock': '00_data.ipynb', 'tokenize': '00_data.ipynb', 'group_texts': '00_data.ipynb', 'MultiChoiceTransform': '00_data.ipynb', 'MultiChoiceBlock': '00_data.ipynb', 'PadTokBatchTransform': '00_data.ipynb', 'TokenClassificationBlock': '00_data.ipynb', 'default_splitter': '01_learner.ipynb', 'to_device': '01_learner.ipynb', 'TransCallback': '01_learner.ipynb', 'GeneratePreds': '01_learner.ipynb', 'TransLearner': '01_learner.ipynb', 'MetricCallback': '02_metrics.ipynb', 'RougeScore': '02_metrics.ipynb', 'Seqeval': '02_metrics.ipynb'} modules = ['data.py', 'learner.py', 'metrics.py'] doc_url = 'https://aikindergarten.github.io/fasthugs/' git_url = 'https://github.com/aikindergarten/fasthugs/tree/master/' def custom_doc_links(name): return None
class JsIdentifier: def __init__(self, data: object): self.name = data.name self.type = 'any' def set_type(self, new_type: str) -> None: self.type = new_type def to_dict(self) -> dict: return { 'name': self.name, 'type': self.type }
class Jsidentifier: def __init__(self, data: object): self.name = data.name self.type = 'any' def set_type(self, new_type: str) -> None: self.type = new_type def to_dict(self) -> dict: return {'name': self.name, 'type': self.type}
def start_processes(pool_of_workers): for worker in pool_of_workers: worker.start() print ("--- Workers started")
def start_processes(pool_of_workers): for worker in pool_of_workers: worker.start() print('--- Workers started')
def description_from_url_walmart(link): description = '' try: remove_initial = link.replace("https://www.walmart.com/ip/","") for i in remove_initial: if(i!="/"): description += i else: break description = description.replace('-',' ') except: description = '' return description
def description_from_url_walmart(link): description = '' try: remove_initial = link.replace('https://www.walmart.com/ip/', '') for i in remove_initial: if i != '/': description += i else: break description = description.replace('-', ' ') except: description = '' return description
actually = list(map(int, input().split())) da, ma, ya = actually expected = list(map(int, input().split())) de, me, ye = expected fine = 0 if ya > ye: fine = 10000 elif ya == ye: if ma > me: fine = (ma - me) * 500 elif ma == me and da > de: fine = (da - de) * 15 print(fine)
actually = list(map(int, input().split())) (da, ma, ya) = actually expected = list(map(int, input().split())) (de, me, ye) = expected fine = 0 if ya > ye: fine = 10000 elif ya == ye: if ma > me: fine = (ma - me) * 500 elif ma == me and da > de: fine = (da - de) * 15 print(fine)
def is_char_mapped(str_a, str_b): if len(str_a) != len(str_b): return False char_map = dict() for char_a, char_b in zip(str_a, str_b): if char_a not in char_map: char_map[char_a] = char_b elif char_map[char_a] != char_b: return False return True # Tests assert is_char_mapped("abc", "bcd") assert not is_char_mapped("foo", "bar")
def is_char_mapped(str_a, str_b): if len(str_a) != len(str_b): return False char_map = dict() for (char_a, char_b) in zip(str_a, str_b): if char_a not in char_map: char_map[char_a] = char_b elif char_map[char_a] != char_b: return False return True assert is_char_mapped('abc', 'bcd') assert not is_char_mapped('foo', 'bar')
# isFoldable.py # determine flat foldability of maps # Author: Sam Vinitsky # Date: 3/5/16 # class to store an N by N map class Map: m = 1 n = 1 cp = [[]] def __init__(self, cp): self.cp = cp self.m = len(cp) + 1 self.n = len(cp[0]) + 1 # m x n map is specified by (m-1)x(n-1) creases # determine if this linear ordering satisfies the butterfly condition for this map def satisfiesButterflyCondition(self, linearOrdering): return True # determine if this linear ordering satisfies the partial ordering induces by the checkerboard pattern + cp def satisfiesPartialOrdering(self, linearOrdering): return True # map is an N by N array, linear ordering is stored as a list # determine if map can be folded into linearOrdering def isLinearOrderingValid(self, linearOrdering): if self.satisfiesButterflyCondition(linearOrdering): if self.satisfiesPartialOrdering(linearOrdering): return True return False # an ordering of the faces (0,0) through (m-1,n-1) class LinearOrdering: m = 1 n = 1 linearOrdering = [(0,0)] def __init__(self, m, n, lo): self.m = m self.n = n self.linearOrdering = lo def main(): cp = [[]] myMap = Map(cp) myLinearOrdering = LinearOrdering(1, 1, [(0,0)]) print(myMap.isLinearOrderingValid(myLinearOrdering)) if __name__ == "__main__": main()
class Map: m = 1 n = 1 cp = [[]] def __init__(self, cp): self.cp = cp self.m = len(cp) + 1 self.n = len(cp[0]) + 1 def satisfies_butterfly_condition(self, linearOrdering): return True def satisfies_partial_ordering(self, linearOrdering): return True def is_linear_ordering_valid(self, linearOrdering): if self.satisfiesButterflyCondition(linearOrdering): if self.satisfiesPartialOrdering(linearOrdering): return True return False class Linearordering: m = 1 n = 1 linear_ordering = [(0, 0)] def __init__(self, m, n, lo): self.m = m self.n = n self.linearOrdering = lo def main(): cp = [[]] my_map = map(cp) my_linear_ordering = linear_ordering(1, 1, [(0, 0)]) print(myMap.isLinearOrderingValid(myLinearOrdering)) if __name__ == '__main__': main()
n = int(input()) collection = set() for _ in range(n): username = input() collection.add(username) [print(x) for x in collection]
n = int(input()) collection = set() for _ in range(n): username = input() collection.add(username) [print(x) for x in collection]
#!/usr/bin/env python3 # Q learning learning rate alpha = 1.0 # Q learning discount rate gamma = 0.4 # Epsilon initial epsilon_initial = 0.9 # Epsilon final epsilon_final = 0.0 # Annealing timesteps annealing_timesteps = 1000 # threshold threshold = 16.0
alpha = 1.0 gamma = 0.4 epsilon_initial = 0.9 epsilon_final = 0.0 annealing_timesteps = 1000 threshold = 16.0
def test_home(client): rv = client.post("/test", json={"a": 12}) assert rv.is_json assert rv.json["a"] == 12 def test_home_bad(client): rv = client.post("/test", json={"a": "str"}) assert rv.is_json assert rv.status_code == 400
def test_home(client): rv = client.post('/test', json={'a': 12}) assert rv.is_json assert rv.json['a'] == 12 def test_home_bad(client): rv = client.post('/test', json={'a': 'str'}) assert rv.is_json assert rv.status_code == 400
ary=[3,7,1,6,1,1,1,1,1,1,5,1,1,1,99,1,1,88,1,1,1,1,1,2] one_is_count=0 count=0 for i in range(0,len(ary)): if ary[i]==1: one_is_count+=1 if one_is_count%3==0: count+=1 if ary[i]==99: break print(count)
ary = [3, 7, 1, 6, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 99, 1, 1, 88, 1, 1, 1, 1, 1, 2] one_is_count = 0 count = 0 for i in range(0, len(ary)): if ary[i] == 1: one_is_count += 1 if one_is_count % 3 == 0: count += 1 if ary[i] == 99: break print(count)
#!/usr/local/bin/python # Code Fights Create Array Problem def createArray(size): return [1] * size def main(): tests = [ [4, [1, 1, 1, 1]], [2, [1, 1]], [1, [1]], [5, [1, 1, 1, 1, 1]] ] for t in tests: res = createArray(t[0]) ans = t[1] if ans == res: print("PASSED: createArray({}) returned {}" .format(t[0], res)) else: print("FAILED: createArray({}) returned {}, answer: {}" .format(t[0], res, ans)) if __name__ == '__main__': main()
def create_array(size): return [1] * size def main(): tests = [[4, [1, 1, 1, 1]], [2, [1, 1]], [1, [1]], [5, [1, 1, 1, 1, 1]]] for t in tests: res = create_array(t[0]) ans = t[1] if ans == res: print('PASSED: createArray({}) returned {}'.format(t[0], res)) else: print('FAILED: createArray({}) returned {}, answer: {}'.format(t[0], res, ans)) if __name__ == '__main__': main()
def to_roman(base, base_1, base_5, base_10): d = {} for i in range(1, 10): if 0 <= i <= 3: d[i * base] = base_1 * i elif i == 4: d[i * base] = base_1 + base_5 elif 5 <= i <= 8: d[i * base] = base_5 + (i - 5) * base_1 elif i == 9: d[i * base] = base_1 + base_10 return d roman_numerals = to_roman(1, 'I', 'V', 'X') roman_numerals.update(to_roman(10, 'X', 'L', 'C')) roman_numerals.update(to_roman(100, 'C', 'D', 'M')) roman_numerals.update({i: 'M' * (i // 1000) for i in range(1000, 10000, 1000)}) print(roman_numerals) def numeral(number): r = [] for n, v in enumerate(reversed(list(str(number)))): roman_numerals.get(int(v) * pow(10, n), '') r.append(roman_numerals.get(int(v) * pow(10, n), '')) return ''.join(reversed(r)) '''Another good solution: roman_numbers = ( ( 'M', 1000 ), ( 'CM', 900 ), ( 'D', 500 ), ( 'CD', 400 ), ( 'C', 100 ), ( 'XC', 90 ), ( 'L', 50 ), ( 'XL', 40 ), ( 'X', 10 ), ( 'IX', 9 ), ( 'V', 5 ), ( 'IV', 4 ), ( 'I', 1 ) ) def numeral(arabic): if arabic < 1: raise ValueError("Romans did not count below 1") if arabic > 3000: raise ValueError("Romans did not count beyond 3000") roman = "" for roman_number, value in roman_numbers: while arabic >= value: roman += roman_number arabic -= value return roman '''
def to_roman(base, base_1, base_5, base_10): d = {} for i in range(1, 10): if 0 <= i <= 3: d[i * base] = base_1 * i elif i == 4: d[i * base] = base_1 + base_5 elif 5 <= i <= 8: d[i * base] = base_5 + (i - 5) * base_1 elif i == 9: d[i * base] = base_1 + base_10 return d roman_numerals = to_roman(1, 'I', 'V', 'X') roman_numerals.update(to_roman(10, 'X', 'L', 'C')) roman_numerals.update(to_roman(100, 'C', 'D', 'M')) roman_numerals.update({i: 'M' * (i // 1000) for i in range(1000, 10000, 1000)}) print(roman_numerals) def numeral(number): r = [] for (n, v) in enumerate(reversed(list(str(number)))): roman_numerals.get(int(v) * pow(10, n), '') r.append(roman_numerals.get(int(v) * pow(10, n), '')) return ''.join(reversed(r)) 'Another good solution:\nroman_numbers = (\n ( \'M\', 1000 ), ( \'CM\', 900 ),\n ( \'D\', 500 ), ( \'CD\', 400 ),\n ( \'C\', 100 ), ( \'XC\', 90 ),\n ( \'L\', 50 ), ( \'XL\', 40 ),\n ( \'X\', 10 ), ( \'IX\', 9 ),\n ( \'V\', 5 ), ( \'IV\', 4 ),\n ( \'I\', 1 )\n)\n\ndef numeral(arabic):\n\n if arabic < 1:\n raise ValueError("Romans did not count below 1")\n if arabic > 3000:\n raise ValueError("Romans did not count beyond 3000")\n\n roman = ""\n\n for roman_number, value in roman_numbers:\n while arabic >= value:\n roman += roman_number\n arabic -= value\n\n return roman\n'
# LC Contest 170 # Time: O(n^2), n=len(s) # Space: O(n^2) class Solution: def minInsertions(self, s: str) -> int: memo = {} return self.util(s, memo) def util(self, s, memo): if s in memo: return memo[s] start = 0 end = len(s)-1 if len(s)==1 or len(s)==0: return 0 if len(s)==2 and s[0]!=s[1]: return 1 if s[start]==s[end]: memo[s] = self.util(s[1:-1], memo) else: memo[s] = 1+min(self.util(s[1:], memo), self.util(s[:-1], memo)) return memo[s]
class Solution: def min_insertions(self, s: str) -> int: memo = {} return self.util(s, memo) def util(self, s, memo): if s in memo: return memo[s] start = 0 end = len(s) - 1 if len(s) == 1 or len(s) == 0: return 0 if len(s) == 2 and s[0] != s[1]: return 1 if s[start] == s[end]: memo[s] = self.util(s[1:-1], memo) else: memo[s] = 1 + min(self.util(s[1:], memo), self.util(s[:-1], memo)) return memo[s]
# # (c) Copyright 2015 Hewlett Packard Enterprise Development LP # (c) Copyright 2017-2018 SUSE LLC # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # class Server(object): @staticmethod def name(elem_s): return elem_s.get('name', None) @staticmethod def address(elem_s): return elem_s.get('addr', None) @staticmethod def components(elem_s): return elem_s.get('components', []) @staticmethod def services(elem_s): return elem_s.get('services', []) @staticmethod def num_components(elem_s): return len(elem_s.get('components', [])) @staticmethod def num_services(elem_s): return len(elem_s.get('services', [])) @staticmethod def interfaces(elem_s): return elem_s.get('interfaces', dict()) @staticmethod def routes(elem_s): return elem_s.get('routes', dict()) @staticmethod def num_routes(elem_s): return len(elem_s.get('routes', []))
class Server(object): @staticmethod def name(elem_s): return elem_s.get('name', None) @staticmethod def address(elem_s): return elem_s.get('addr', None) @staticmethod def components(elem_s): return elem_s.get('components', []) @staticmethod def services(elem_s): return elem_s.get('services', []) @staticmethod def num_components(elem_s): return len(elem_s.get('components', [])) @staticmethod def num_services(elem_s): return len(elem_s.get('services', [])) @staticmethod def interfaces(elem_s): return elem_s.get('interfaces', dict()) @staticmethod def routes(elem_s): return elem_s.get('routes', dict()) @staticmethod def num_routes(elem_s): return len(elem_s.get('routes', []))
## @file # This file is used to define common items of class object # # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR> # SPDX-License-Identifier: BSD-2-Clause-Patent ## SkuInfoClass # # This class defined SkuInfo item used in Module/Platform/Package files # # @param object: Inherited from object class # @param SkuIdName: Input value for SkuIdName, default is '' # @param SkuId: Input value for SkuId, default is '' # @param VariableName: Input value for VariableName, default is '' # @param VariableGuid: Input value for VariableGuid, default is '' # @param VariableOffset: Input value for VariableOffset, default is '' # @param HiiDefaultValue: Input value for HiiDefaultValue, default is '' # @param VpdOffset: Input value for VpdOffset, default is '' # @param DefaultValue: Input value for DefaultValue, default is '' # # @var SkuIdName: To store value for SkuIdName # @var SkuId: To store value for SkuId # @var VariableName: To store value for VariableName # @var VariableGuid: To store value for VariableGuid # @var VariableOffset: To store value for VariableOffset # @var HiiDefaultValue: To store value for HiiDefaultValue # @var VpdOffset: To store value for VpdOffset # @var DefaultValue: To store value for DefaultValue # class SkuInfoClass(object): def __init__(self, SkuIdName = '', SkuId = '', VariableName = '', VariableGuid = '', VariableOffset = '', HiiDefaultValue = '', VpdOffset = '', DefaultValue = '', VariableGuidValue = '', VariableAttribute = '', DefaultStore = None): self.SkuIdName = SkuIdName self.SkuId = SkuId # # Used by Hii # if DefaultStore is None: DefaultStore = {} self.VariableName = VariableName self.VariableGuid = VariableGuid self.VariableGuidValue = VariableGuidValue self.VariableOffset = VariableOffset self.HiiDefaultValue = HiiDefaultValue self.VariableAttribute = VariableAttribute self.DefaultStoreDict = DefaultStore # # Used by Vpd # self.VpdOffset = VpdOffset # # Used by Default # self.DefaultValue = DefaultValue ## Convert the class to a string # # Convert each member of the class to string # Organize to a single line format string # # @retval Rtn Formatted String # def __str__(self): Rtn = 'SkuId = ' + str(self.SkuId) + "," + \ 'SkuIdName = ' + str(self.SkuIdName) + "," + \ 'VariableName = ' + str(self.VariableName) + "," + \ 'VariableGuid = ' + str(self.VariableGuid) + "," + \ 'VariableOffset = ' + str(self.VariableOffset) + "," + \ 'HiiDefaultValue = ' + str(self.HiiDefaultValue) + "," + \ 'VpdOffset = ' + str(self.VpdOffset) + "," + \ 'DefaultValue = ' + str(self.DefaultValue) + "," return Rtn def __deepcopy__(self,memo): new_sku = SkuInfoClass() new_sku.SkuIdName = self.SkuIdName new_sku.SkuId = self.SkuId new_sku.VariableName = self.VariableName new_sku.VariableGuid = self.VariableGuid new_sku.VariableGuidValue = self.VariableGuidValue new_sku.VariableOffset = self.VariableOffset new_sku.HiiDefaultValue = self.HiiDefaultValue new_sku.VariableAttribute = self.VariableAttribute new_sku.DefaultStoreDict = {key:value for key,value in self.DefaultStoreDict.items()} new_sku.VpdOffset = self.VpdOffset new_sku.DefaultValue = self.DefaultValue return new_sku
class Skuinfoclass(object): def __init__(self, SkuIdName='', SkuId='', VariableName='', VariableGuid='', VariableOffset='', HiiDefaultValue='', VpdOffset='', DefaultValue='', VariableGuidValue='', VariableAttribute='', DefaultStore=None): self.SkuIdName = SkuIdName self.SkuId = SkuId if DefaultStore is None: default_store = {} self.VariableName = VariableName self.VariableGuid = VariableGuid self.VariableGuidValue = VariableGuidValue self.VariableOffset = VariableOffset self.HiiDefaultValue = HiiDefaultValue self.VariableAttribute = VariableAttribute self.DefaultStoreDict = DefaultStore self.VpdOffset = VpdOffset self.DefaultValue = DefaultValue def __str__(self): rtn = 'SkuId = ' + str(self.SkuId) + ',' + 'SkuIdName = ' + str(self.SkuIdName) + ',' + 'VariableName = ' + str(self.VariableName) + ',' + 'VariableGuid = ' + str(self.VariableGuid) + ',' + 'VariableOffset = ' + str(self.VariableOffset) + ',' + 'HiiDefaultValue = ' + str(self.HiiDefaultValue) + ',' + 'VpdOffset = ' + str(self.VpdOffset) + ',' + 'DefaultValue = ' + str(self.DefaultValue) + ',' return Rtn def __deepcopy__(self, memo): new_sku = sku_info_class() new_sku.SkuIdName = self.SkuIdName new_sku.SkuId = self.SkuId new_sku.VariableName = self.VariableName new_sku.VariableGuid = self.VariableGuid new_sku.VariableGuidValue = self.VariableGuidValue new_sku.VariableOffset = self.VariableOffset new_sku.HiiDefaultValue = self.HiiDefaultValue new_sku.VariableAttribute = self.VariableAttribute new_sku.DefaultStoreDict = {key: value for (key, value) in self.DefaultStoreDict.items()} new_sku.VpdOffset = self.VpdOffset new_sku.DefaultValue = self.DefaultValue return new_sku
def all_hillslopes(landuse, soils): return list(landuse.domlc_d.keys()) def _identify_outcrop_mukeys(soils): outcrop_mukeys = [] _soils = soils.subs_summary for top in _soils: desc = _soils[top]['desc'].lower() if 'melody-rock outcrop' in desc or 'ellispeak-rock outcrop' in desc: mukey = str(_soils[top]['mukey']) outcrop_mukeys.append(mukey) return outcrop_mukeys def bare_or_sodgrass_or_bunchgrass_selector(landuse, soils): domlc_d = landuse.domlc_d topaz_ids = [] for top in domlc_d: if domlc_d[top] in ['100', '101', '103']: topaz_ids.append(top) return topaz_ids def not_shrub_and_not_outcrop_selector(landuse, soils): domlc_d = landuse.domlc_d domsoil_d = soils.domsoil_d outcrop_mukeys = _identify_outcrop_mukeys(soils) topaz_ids = [] for top in domsoil_d: if str(domsoil_d[top]) not in outcrop_mukeys and domlc_d[top] != '104': topaz_ids.append(top) return topaz_ids def shrub_and_not_outcrop_selector(landuse, soils): domlc_d = landuse.domlc_d domsoil_d = soils.domsoil_d outcrop_mukeys = _identify_outcrop_mukeys(soils) topaz_ids = [] for top in domsoil_d: if str(domsoil_d[top]) not in outcrop_mukeys and domlc_d[top] == '104': topaz_ids.append(top) return topaz_ids def not_shrub_selector(landuse, soils): domlc_d = landuse.domlc_d topaz_ids = [] for top in domlc_d: if str(domlc_d[top]) != '104': topaz_ids.append(top) return topaz_ids def shrub_selector(landuse, soils): domlc_d = landuse.domlc_d topaz_ids = [] for top in domlc_d: if domlc_d[top] == '104': topaz_ids.append(top) return topaz_ids def outcrop_selector(landuse, soils): domsoil_d = soils.domsoil_d outcrop_mukeys = _identify_outcrop_mukeys(soils) topaz_ids = [] for top in domsoil_d: if domsoil_d[top] in outcrop_mukeys: topaz_ids.append(top) return topaz_ids def not_outcrop_selector(landuse, soils): domsoil_d = soils.domsoil_d outcrop_mukeys = _identify_outcrop_mukeys(soils) topaz_ids = [] for top in domsoil_d: if domsoil_d[top] not in outcrop_mukeys: topaz_ids.append(top) return topaz_ids
def all_hillslopes(landuse, soils): return list(landuse.domlc_d.keys()) def _identify_outcrop_mukeys(soils): outcrop_mukeys = [] _soils = soils.subs_summary for top in _soils: desc = _soils[top]['desc'].lower() if 'melody-rock outcrop' in desc or 'ellispeak-rock outcrop' in desc: mukey = str(_soils[top]['mukey']) outcrop_mukeys.append(mukey) return outcrop_mukeys def bare_or_sodgrass_or_bunchgrass_selector(landuse, soils): domlc_d = landuse.domlc_d topaz_ids = [] for top in domlc_d: if domlc_d[top] in ['100', '101', '103']: topaz_ids.append(top) return topaz_ids def not_shrub_and_not_outcrop_selector(landuse, soils): domlc_d = landuse.domlc_d domsoil_d = soils.domsoil_d outcrop_mukeys = _identify_outcrop_mukeys(soils) topaz_ids = [] for top in domsoil_d: if str(domsoil_d[top]) not in outcrop_mukeys and domlc_d[top] != '104': topaz_ids.append(top) return topaz_ids def shrub_and_not_outcrop_selector(landuse, soils): domlc_d = landuse.domlc_d domsoil_d = soils.domsoil_d outcrop_mukeys = _identify_outcrop_mukeys(soils) topaz_ids = [] for top in domsoil_d: if str(domsoil_d[top]) not in outcrop_mukeys and domlc_d[top] == '104': topaz_ids.append(top) return topaz_ids def not_shrub_selector(landuse, soils): domlc_d = landuse.domlc_d topaz_ids = [] for top in domlc_d: if str(domlc_d[top]) != '104': topaz_ids.append(top) return topaz_ids def shrub_selector(landuse, soils): domlc_d = landuse.domlc_d topaz_ids = [] for top in domlc_d: if domlc_d[top] == '104': topaz_ids.append(top) return topaz_ids def outcrop_selector(landuse, soils): domsoil_d = soils.domsoil_d outcrop_mukeys = _identify_outcrop_mukeys(soils) topaz_ids = [] for top in domsoil_d: if domsoil_d[top] in outcrop_mukeys: topaz_ids.append(top) return topaz_ids def not_outcrop_selector(landuse, soils): domsoil_d = soils.domsoil_d outcrop_mukeys = _identify_outcrop_mukeys(soils) topaz_ids = [] for top in domsoil_d: if domsoil_d[top] not in outcrop_mukeys: topaz_ids.append(top) return topaz_ids
#!/usr/bin/python3 # * Copyright (c) 2020-2021, Happiest Minds Technologies Limited Intellectual Property. All rights reserved. # * # * SPDX-License-Identifier: LGPL-2.1-only validate_ospf_status = 'run show protocols ospf neighbor' validate_vpn_tunnel_status = 'run show vpn ipsec sa' validate_vpn_ipsec_status = 'run show vpn ipsec status' R1_pingcheck = ['R2R1interfaceIP', 'R2R3interfaceIP', 'R3R2interfaceIP'] R2_pingcheck = ['R1R2interfaceIP', 'R3R2interfaceIP'] R3_pingcheck = ['R2R3interfaceIP', 'R1R2interfaceIP', 'R2R1interfaceIP'] R1_interface_config = [ 'interfaces dataplane R1H1interface address INTERFACE1IP/24', 'interfaces dataplane R1R2interface address INTERFACE2IP/24', ] R1_interface_tunnel_config = [ 'interfaces tunnel tun0 local-ip R1tunnelinterfaceLocal', 'interfaces tunnel tun0 remote-ip R1tunnelinterfaceRemote', 'interfaces tunnel tun0 encapsulation gre', ] R1_protocol_config = ['protocols ospf area 0 network NW/24',] R1_ipsec_vpn_config = [ 'security vpn ike make-before-break', 'security vpn ipsec esp-group vm1-esp proposal 1 encryption aes128gcm128', 'security vpn ipsec esp-group vm1-esp proposal 1 hash null', 'security vpn ipsec ike-group vm1-ike ike-version 2', 'security vpn ipsec ike-group vm1-ike proposal 1 dh-group 19', 'security vpn ipsec ike-group vm1-ike proposal 1 encryption aes128gcm128', 'security vpn ipsec ike-group vm1-ike proposal 1 hash sha2_512', 'security vpn ipsec site-to-site peer R1ipsecvpnpeerIP', 'security vpn ipsec site-to-site peer R1ipsecvpnpeerIP authenticat mode pre-shared-secret', 'security vpn ipsec site-to-site peer R1ipsecvpnpeerIP authenticat pre-shared-secret test123', 'security vpn ipsec site-to-site peer R1ipsecvpnpeerIP default-esp-group vm1-esp', 'security vpn ipsec site-to-site peer R1ipsecvpnpeerIP ike-group vm1-ike ', 'security vpn ipsec site-to-site peer R1ipsecvpnpeerIP local-address R1ipsecvpnlocalIP', 'security vpn ipsec site-to-site peer R1ipsecvpnpeerIP tunnel 0', 'security vpn ipsec site-to-site peer R1ipsecvpnpeerIP tunnel 0 local prefix R1ipsecvpnPeerLocalPrefix/24', 'security vpn ipsec site-to-site peer R1ipsecvpnpeerIP tunnel 0 remote prefix R1ipsecvpnPeerRemotePrefix/24', ] R2_interface_config = [ 'interfaces dataplane R2R1interface address INTERFACE1IP/24', 'interfaces dataplane R2R3interface address INTERFACE2IP/24', ] R2_protocol_config = [ 'protocols ospf area 0 network NW/24', 'protocols ospf area 0 network NW/24', ] R3_interface_config = [ 'interfaces dataplane R3R2interface address INTERFACE1IP/24', 'interfaces dataplane R3H2interface address INTERFACE2IP/24', ] R3_interface_tunnel_config = [ 'interfaces tunnel tun0 local-ip R3tunnelinterfaceLocal', 'interfaces tunnel tun0 remote-ip R3tunnelinterfaceRemote', 'interfaces tunnel tun0 encapsulation gre', ] R3_protocol_config = ['protocols ospf area 0 network NW/24',] R3_ipsec_vpn_config = [ 'security vpn ike make-before-break', 'security vpn ipsec esp-group vm3-esp proposal 1 encryption aes128gcm128', 'security vpn ipsec esp-group vm3-esp proposal 1 hash null', 'security vpn ipsec ike-group vm2-ike ike-version 2', 'security vpn ipsec ike-group vm2-ike proposal 1 dh-group 19', 'security vpn ipsec ike-group vm2-ike proposal 1 encryption aes128gcm128', 'security vpn ipsec ike-group vm2-ike proposal 1 hash sha2_512', 'security vpn ipsec site-to-site peer R3ipsecvpnpeerIP', 'security vpn ipsec site-to-site peer R3ipsecvpnpeerIP authenticat mode pre-shared-secret', 'security vpn ipsec site-to-site peer R3ipsecvpnpeerIP authenticat pre-shared-secret test123', 'security vpn ipsec site-to-site peer R3ipsecvpnpeerIP default-esp-group vm3-esp', 'security vpn ipsec site-to-site peer R3ipsecvpnpeerIP ike-group vm2-ike ', 'security vpn ipsec site-to-site peer R3ipsecvpnpeerIP local-address R3ipsecvpnlocalIP', 'security vpn ipsec site-to-site peer R3ipsecvpnpeerIP tunnel 0', 'security vpn ipsec site-to-site peer R3ipsecvpnpeerIP tunnel 0 remote prefix R3ipsecvpnPeerRemotePrefix/24', 'security vpn ipsec site-to-site peer R3ipsecvpnpeerIP tunnel 0 local prefix R3ipsecvpnPeerLocalPrefix/24', ]
validate_ospf_status = 'run show protocols ospf neighbor' validate_vpn_tunnel_status = 'run show vpn ipsec sa' validate_vpn_ipsec_status = 'run show vpn ipsec status' r1_pingcheck = ['R2R1interfaceIP', 'R2R3interfaceIP', 'R3R2interfaceIP'] r2_pingcheck = ['R1R2interfaceIP', 'R3R2interfaceIP'] r3_pingcheck = ['R2R3interfaceIP', 'R1R2interfaceIP', 'R2R1interfaceIP'] r1_interface_config = ['interfaces dataplane R1H1interface address INTERFACE1IP/24', 'interfaces dataplane R1R2interface address INTERFACE2IP/24'] r1_interface_tunnel_config = ['interfaces tunnel tun0 local-ip R1tunnelinterfaceLocal', 'interfaces tunnel tun0 remote-ip R1tunnelinterfaceRemote', 'interfaces tunnel tun0 encapsulation gre'] r1_protocol_config = ['protocols ospf area 0 network NW/24'] r1_ipsec_vpn_config = ['security vpn ike make-before-break', 'security vpn ipsec esp-group vm1-esp proposal 1 encryption aes128gcm128', 'security vpn ipsec esp-group vm1-esp proposal 1 hash null', 'security vpn ipsec ike-group vm1-ike ike-version 2', 'security vpn ipsec ike-group vm1-ike proposal 1 dh-group 19', 'security vpn ipsec ike-group vm1-ike proposal 1 encryption aes128gcm128', 'security vpn ipsec ike-group vm1-ike proposal 1 hash sha2_512', 'security vpn ipsec site-to-site peer R1ipsecvpnpeerIP', 'security vpn ipsec site-to-site peer R1ipsecvpnpeerIP authenticat mode pre-shared-secret', 'security vpn ipsec site-to-site peer R1ipsecvpnpeerIP authenticat pre-shared-secret test123', 'security vpn ipsec site-to-site peer R1ipsecvpnpeerIP default-esp-group vm1-esp', 'security vpn ipsec site-to-site peer R1ipsecvpnpeerIP ike-group vm1-ike ', 'security vpn ipsec site-to-site peer R1ipsecvpnpeerIP local-address R1ipsecvpnlocalIP', 'security vpn ipsec site-to-site peer R1ipsecvpnpeerIP tunnel 0', 'security vpn ipsec site-to-site peer R1ipsecvpnpeerIP tunnel 0 local prefix R1ipsecvpnPeerLocalPrefix/24', 'security vpn ipsec site-to-site peer R1ipsecvpnpeerIP tunnel 0 remote prefix R1ipsecvpnPeerRemotePrefix/24'] r2_interface_config = ['interfaces dataplane R2R1interface address INTERFACE1IP/24', 'interfaces dataplane R2R3interface address INTERFACE2IP/24'] r2_protocol_config = ['protocols ospf area 0 network NW/24', 'protocols ospf area 0 network NW/24'] r3_interface_config = ['interfaces dataplane R3R2interface address INTERFACE1IP/24', 'interfaces dataplane R3H2interface address INTERFACE2IP/24'] r3_interface_tunnel_config = ['interfaces tunnel tun0 local-ip R3tunnelinterfaceLocal', 'interfaces tunnel tun0 remote-ip R3tunnelinterfaceRemote', 'interfaces tunnel tun0 encapsulation gre'] r3_protocol_config = ['protocols ospf area 0 network NW/24'] r3_ipsec_vpn_config = ['security vpn ike make-before-break', 'security vpn ipsec esp-group vm3-esp proposal 1 encryption aes128gcm128', 'security vpn ipsec esp-group vm3-esp proposal 1 hash null', 'security vpn ipsec ike-group vm2-ike ike-version 2', 'security vpn ipsec ike-group vm2-ike proposal 1 dh-group 19', 'security vpn ipsec ike-group vm2-ike proposal 1 encryption aes128gcm128', 'security vpn ipsec ike-group vm2-ike proposal 1 hash sha2_512', 'security vpn ipsec site-to-site peer R3ipsecvpnpeerIP', 'security vpn ipsec site-to-site peer R3ipsecvpnpeerIP authenticat mode pre-shared-secret', 'security vpn ipsec site-to-site peer R3ipsecvpnpeerIP authenticat pre-shared-secret test123', 'security vpn ipsec site-to-site peer R3ipsecvpnpeerIP default-esp-group vm3-esp', 'security vpn ipsec site-to-site peer R3ipsecvpnpeerIP ike-group vm2-ike ', 'security vpn ipsec site-to-site peer R3ipsecvpnpeerIP local-address R3ipsecvpnlocalIP', 'security vpn ipsec site-to-site peer R3ipsecvpnpeerIP tunnel 0', 'security vpn ipsec site-to-site peer R3ipsecvpnpeerIP tunnel 0 remote prefix R3ipsecvpnPeerRemotePrefix/24', 'security vpn ipsec site-to-site peer R3ipsecvpnpeerIP tunnel 0 local prefix R3ipsecvpnPeerLocalPrefix/24']
def isMonotonic(array): if not array or len(array) == 1: return True return monotonic(False, array) or monotonic(True, array) def monotonic(increasing, array): if increasing: # check for increasing monotonic for i in range(1, len(array)): if array[i - 1] > array[i]: return False else: # check for decreasing monotonic for i in range(1, len(array)): if array[i - 1] < array[i]: return False return True
def is_monotonic(array): if not array or len(array) == 1: return True return monotonic(False, array) or monotonic(True, array) def monotonic(increasing, array): if increasing: for i in range(1, len(array)): if array[i - 1] > array[i]: return False else: for i in range(1, len(array)): if array[i - 1] < array[i]: return False return True
# Possible values for Boolean truth checking TRUTH = ('true', 't', 'yes', 'y', '1') # Parent HPO-Term IDs of modifier terms MODIFIER_IDS = {5, 12823, 40279, 31797, 32223, 32443}
truth = ('true', 't', 'yes', 'y', '1') modifier_ids = {5, 12823, 40279, 31797, 32223, 32443}
if __name__ == '__main__': x = int(input()) y = int(input()) z = int(input()) n = int(input()) print ([[a,b,c] for a in range(0,x+1) for b in range(0,y+1) for c in range(0,z+1) if a + b + c != n ])
if __name__ == '__main__': x = int(input()) y = int(input()) z = int(input()) n = int(input()) print([[a, b, c] for a in range(0, x + 1) for b in range(0, y + 1) for c in range(0, z + 1) if a + b + c != n])
class Solution: def getMaximumXor(self, nums: List[int], maximumBit: int) -> List[int]: n = len(nums) answer = [0 for _ in range(n)] # N.B. Nobody says maximumBit > 0 if maximumBit <= 0: return answer # From now on, we are assured maximumBit is a positive integer xor_int = nums[0] for i in range(1,n): xor_int ^= nums[i] # Decide k for each i below for i in range(n): xor_bitstr = bin(xor_int)[2:] n_bits = len(xor_bitstr) if n_bits >= maximumBit: #sub_xor_bitstr = xor_bitstr[-maximumBit:] sub_xor_int = xor_int & int("1"*maximumBit, 2) k = ~sub_xor_int & int("1"*(len(bin(sub_xor_int))-2), 2) else: k_bitstr = "1"*(maximumBit - n_bits) + xor_bitstr.replace("0", "2").replace("1", "0").replace("2", "1") k = int(k_bitstr, 2) answer[i] = k discarded = nums.pop() xor_int ^= discarded return answer def test(nums, maximumBit, expected): sol = getMaximumXor(nums, maximumBit) if sol == expected: print("Congratulations!") else: print(f"sol = {sol}") print(f"expected = {expected}") print() if __name__ == "__main__": test_id = 0 test_id += 1 print(f"testcase {test_id}") nums = [0,1,1,3] maximumBit = 2 expected = [0,3,2,3] test(nums, maximumBit, expected) test_id += 1 print(f"testcase {test_id}") nums = [2,3,4,7] maximumBit = 3 expected = [5,2,6,5] test(nums, maximumBit, expected) test_id += 1 print(f"testcase {test_id}") nums = [0,1,2,2,5,7] maximumBit = 3 expected = [4,3,6,4,6,7] test(nums, maximumBit, expected)
class Solution: def get_maximum_xor(self, nums: List[int], maximumBit: int) -> List[int]: n = len(nums) answer = [0 for _ in range(n)] if maximumBit <= 0: return answer xor_int = nums[0] for i in range(1, n): xor_int ^= nums[i] for i in range(n): xor_bitstr = bin(xor_int)[2:] n_bits = len(xor_bitstr) if n_bits >= maximumBit: sub_xor_int = xor_int & int('1' * maximumBit, 2) k = ~sub_xor_int & int('1' * (len(bin(sub_xor_int)) - 2), 2) else: k_bitstr = '1' * (maximumBit - n_bits) + xor_bitstr.replace('0', '2').replace('1', '0').replace('2', '1') k = int(k_bitstr, 2) answer[i] = k discarded = nums.pop() xor_int ^= discarded return answer def test(nums, maximumBit, expected): sol = get_maximum_xor(nums, maximumBit) if sol == expected: print('Congratulations!') else: print(f'sol = {sol}') print(f'expected = {expected}') print() if __name__ == '__main__': test_id = 0 test_id += 1 print(f'testcase {test_id}') nums = [0, 1, 1, 3] maximum_bit = 2 expected = [0, 3, 2, 3] test(nums, maximumBit, expected) test_id += 1 print(f'testcase {test_id}') nums = [2, 3, 4, 7] maximum_bit = 3 expected = [5, 2, 6, 5] test(nums, maximumBit, expected) test_id += 1 print(f'testcase {test_id}') nums = [0, 1, 2, 2, 5, 7] maximum_bit = 3 expected = [4, 3, 6, 4, 6, 7] test(nums, maximumBit, expected)
# Time: O(n) # Space: O(1) class Solution: # @param {integer[]} preorder # @return {boolean} def verifyPreorder(self, preorder): low, i = float("-inf"), -1 for p in preorder: if p < low: return False while i >= 0 and p > preorder[i]: low = preorder[i] i -= 1 i += 1 preorder[i] = p return True class Solution2: # @param {integer[]} preorder # @return {boolean} def verifyPreorder(self, preorder): low = float("-inf") path = [] for p in preorder: if p < low: return False while path and p > path[-1]: low = path[-1] path.pop() path.append(p) return True
class Solution: def verify_preorder(self, preorder): (low, i) = (float('-inf'), -1) for p in preorder: if p < low: return False while i >= 0 and p > preorder[i]: low = preorder[i] i -= 1 i += 1 preorder[i] = p return True class Solution2: def verify_preorder(self, preorder): low = float('-inf') path = [] for p in preorder: if p < low: return False while path and p > path[-1]: low = path[-1] path.pop() path.append(p) return True
# .gitignore should include reference to config.py # SAVE THIS FILE AS CONFIG.PY consumer_key = "YOUR_CONSUMER_KEY" consumer_secret = "YOUR_CONSUMER_SECRET" access_token = "YOUR_ACCESS_TOKEN" access_token_secret = "YOUR_ACCESS_TOKEN_SECRET"
consumer_key = 'YOUR_CONSUMER_KEY' consumer_secret = 'YOUR_CONSUMER_SECRET' access_token = 'YOUR_ACCESS_TOKEN' access_token_secret = 'YOUR_ACCESS_TOKEN_SECRET'
# Copyright 2018 the rules_bison authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # SPDX-License-Identifier: Apache-2.0 load("@rules_m4//m4:m4.bzl", "M4_TOOLCHAIN_TYPE", "m4_toolchain") BISON_TOOLCHAIN_TYPE = "@rules_bison//bison:toolchain_type" BisonToolchainInfo = provider(fields = ["all_files", "bison_tool", "bison_env"]) def _template_vars(toolchain): return platform_common.TemplateVariableInfo({ "BISON": toolchain.bison_tool.executable.path, }) def _bison_toolchain_info(ctx): m4 = m4_toolchain(ctx) bison_runfiles = ctx.attr.bison_tool[DefaultInfo].default_runfiles.files bison_env = dict(m4.m4_env) if "M4" not in bison_env: bison_env["M4"] = "{}.runfiles/{}/{}".format( ctx.executable.bison_tool.path, ctx.executable.bison_tool.owner.workspace_name, m4.m4_tool.executable.short_path, ) bison_env["BISON_PKGDATADIR"] = "{}.runfiles/{}/data".format( ctx.executable.bison_tool.path, ctx.executable.bison_tool.owner.workspace_name, ) bison_env.update(ctx.attr.bison_env) toolchain = BisonToolchainInfo( all_files = depset( direct = [ctx.executable.bison_tool], transitive = [bison_runfiles, m4.all_files], ), bison_tool = ctx.attr.bison_tool.files_to_run, bison_env = bison_env, ) return [ platform_common.ToolchainInfo(bison_toolchain = toolchain), _template_vars(toolchain), ] bison_toolchain_info = rule( _bison_toolchain_info, attrs = { "bison_tool": attr.label( mandatory = True, executable = True, cfg = "host", ), "bison_env": attr.string_dict(), }, provides = [ platform_common.ToolchainInfo, platform_common.TemplateVariableInfo, ], toolchains = [M4_TOOLCHAIN_TYPE], ) def _bison_toolchain_alias(ctx): toolchain = ctx.toolchains[BISON_TOOLCHAIN_TYPE].bison_toolchain return [ DefaultInfo(files = toolchain.all_files), _template_vars(toolchain), ] bison_toolchain_alias = rule( _bison_toolchain_alias, toolchains = [BISON_TOOLCHAIN_TYPE], provides = [ DefaultInfo, platform_common.TemplateVariableInfo, ], )
load('@rules_m4//m4:m4.bzl', 'M4_TOOLCHAIN_TYPE', 'm4_toolchain') bison_toolchain_type = '@rules_bison//bison:toolchain_type' bison_toolchain_info = provider(fields=['all_files', 'bison_tool', 'bison_env']) def _template_vars(toolchain): return platform_common.TemplateVariableInfo({'BISON': toolchain.bison_tool.executable.path}) def _bison_toolchain_info(ctx): m4 = m4_toolchain(ctx) bison_runfiles = ctx.attr.bison_tool[DefaultInfo].default_runfiles.files bison_env = dict(m4.m4_env) if 'M4' not in bison_env: bison_env['M4'] = '{}.runfiles/{}/{}'.format(ctx.executable.bison_tool.path, ctx.executable.bison_tool.owner.workspace_name, m4.m4_tool.executable.short_path) bison_env['BISON_PKGDATADIR'] = '{}.runfiles/{}/data'.format(ctx.executable.bison_tool.path, ctx.executable.bison_tool.owner.workspace_name) bison_env.update(ctx.attr.bison_env) toolchain = bison_toolchain_info(all_files=depset(direct=[ctx.executable.bison_tool], transitive=[bison_runfiles, m4.all_files]), bison_tool=ctx.attr.bison_tool.files_to_run, bison_env=bison_env) return [platform_common.ToolchainInfo(bison_toolchain=toolchain), _template_vars(toolchain)] bison_toolchain_info = rule(_bison_toolchain_info, attrs={'bison_tool': attr.label(mandatory=True, executable=True, cfg='host'), 'bison_env': attr.string_dict()}, provides=[platform_common.ToolchainInfo, platform_common.TemplateVariableInfo], toolchains=[M4_TOOLCHAIN_TYPE]) def _bison_toolchain_alias(ctx): toolchain = ctx.toolchains[BISON_TOOLCHAIN_TYPE].bison_toolchain return [default_info(files=toolchain.all_files), _template_vars(toolchain)] bison_toolchain_alias = rule(_bison_toolchain_alias, toolchains=[BISON_TOOLCHAIN_TYPE], provides=[DefaultInfo, platform_common.TemplateVariableInfo])
class TrieNode: def __init__(self, char, parent=None): self._char = char self._word_at = {} self._parent = parent self._children = [] @property def is_root(self): return self._parent is None @property def is_leaf(self): return len(self._children) == 0 @property def char(self): return self._char @property def children(self): return self._children @property def parent(self): return self._parent @property def word_at(self): return self._word_at class Trie: def __init__(self): self._root = TrieNode('#') def is_empty(self): return self._root is None def empty(self): self._root = TrieNode('#') def depth(self, node): d = 0 current_node = node while current_node.parent is not None: d += 1 current_node = current_node.parent return d def preorder(self, func): self._preorder(self._root, func) def _preorder(self, node, func): func(node) for child in node.children: self._preorder(child, func) def postorder(self, func: TrieNode) -> None: self._postorder(self._root, func) def _postorder(self, node, func): for child in node.children: self._postorder(child, func) func(node) def print_node(self, node: TrieNode) -> None: print(node.char) def print_trie(self): func = self.print_node self.preorder(func) def add_word(self, string, file_path): current_node = self._root for char in string: add_to_node = True for child in current_node.children: if child.char == char: current_node = child add_to_node = False break if add_to_node: new_node = TrieNode(char, current_node) current_node.children.append(new_node) current_node = new_node count_at_node = current_node.word_at.get(file_path, 0) current_node.word_at[file_path] = count_at_node + 1 # trazi rec u trie stablu i vraca recnik koji sadrzi # dokumente gde je rec nadjena i broj nadjenih reci u svakom dokumentu def find_word(self, word): string = word.lower() current_node = self._root for char in string: char_found = False for child in current_node.children: if child.char.lower() == char: current_node = child char_found = True break if not char_found: return {} return current_node.word_at.copy()
class Trienode: def __init__(self, char, parent=None): self._char = char self._word_at = {} self._parent = parent self._children = [] @property def is_root(self): return self._parent is None @property def is_leaf(self): return len(self._children) == 0 @property def char(self): return self._char @property def children(self): return self._children @property def parent(self): return self._parent @property def word_at(self): return self._word_at class Trie: def __init__(self): self._root = trie_node('#') def is_empty(self): return self._root is None def empty(self): self._root = trie_node('#') def depth(self, node): d = 0 current_node = node while current_node.parent is not None: d += 1 current_node = current_node.parent return d def preorder(self, func): self._preorder(self._root, func) def _preorder(self, node, func): func(node) for child in node.children: self._preorder(child, func) def postorder(self, func: TrieNode) -> None: self._postorder(self._root, func) def _postorder(self, node, func): for child in node.children: self._postorder(child, func) func(node) def print_node(self, node: TrieNode) -> None: print(node.char) def print_trie(self): func = self.print_node self.preorder(func) def add_word(self, string, file_path): current_node = self._root for char in string: add_to_node = True for child in current_node.children: if child.char == char: current_node = child add_to_node = False break if add_to_node: new_node = trie_node(char, current_node) current_node.children.append(new_node) current_node = new_node count_at_node = current_node.word_at.get(file_path, 0) current_node.word_at[file_path] = count_at_node + 1 def find_word(self, word): string = word.lower() current_node = self._root for char in string: char_found = False for child in current_node.children: if child.char.lower() == char: current_node = child char_found = True break if not char_found: return {} return current_node.word_at.copy()
# Copyright 2015 Ufora Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. class OperationsToTest(object): @staticmethod def allOperations(): def add(x, y): return x + y def mult(x, y): return x * y def div(x, y): return x / y def sub(x, y): return x - y def eq(x, y): return x == y def ne(x, y): return x != y def gt(x, y): return x > y def lt(x, y): return x < y def power(x, y): return x ** y def xor(x, y): return x ^ y return [add, mult, div, sub, eq, ne, gt, lt, power, xor]
class Operationstotest(object): @staticmethod def all_operations(): def add(x, y): return x + y def mult(x, y): return x * y def div(x, y): return x / y def sub(x, y): return x - y def eq(x, y): return x == y def ne(x, y): return x != y def gt(x, y): return x > y def lt(x, y): return x < y def power(x, y): return x ** y def xor(x, y): return x ^ y return [add, mult, div, sub, eq, ne, gt, lt, power, xor]
# Time: O(k), where k is the steps to be happy number # Space: O(k) # 202 # Write an algorithm to determine if a number is "happy". # # A happy number is a number defined by the following process: # Starting with any positive integer, replace the number by the sum # of the squares of its digits, and repeat the process until # the number equals 1 (where it will stay), or it loops endlessly # in a cycle which does not include 1. Those numbers for which # this process ends in 1 are happy numbers. # # Example: 19 is a happy number # # 1^2 + 9^2 = 82 # 8^2 + 2^2 = 68 # 6^2 + 8^2 = 100 # 1^2 + 0^2 + 0^2 = 1 # class Solution: # @param {integer} n # @return {boolean} def isHappy(self, n): # USE THIS lookup = set() while n != 1 and n not in lookup: lookup.add(n) n = sum(int(c)**2 for c in str(n)) return n == 1 def isHappy2(self, n): ht = set() while n != 1 and n not in ht: ht.add(n) m = 0 while n: n, p = divmod(n, 10) m += p**2 n = m return n == 1 print(Solution().isHappy(19)) # True
class Solution: def is_happy(self, n): lookup = set() while n != 1 and n not in lookup: lookup.add(n) n = sum((int(c) ** 2 for c in str(n))) return n == 1 def is_happy2(self, n): ht = set() while n != 1 and n not in ht: ht.add(n) m = 0 while n: (n, p) = divmod(n, 10) m += p ** 2 n = m return n == 1 print(solution().isHappy(19))
#!/usr/bin/env python def selection_sort(array: list): for i in range(len(array) - 1): min_value = min(array[i:]) min_index = array.index(min_value, i) if min_index == i: # already in-place continue else: array[i], array[min_index] = array[min_index], array[i]
def selection_sort(array: list): for i in range(len(array) - 1): min_value = min(array[i:]) min_index = array.index(min_value, i) if min_index == i: continue else: (array[i], array[min_index]) = (array[min_index], array[i])
# # PySNMP MIB module PDN-ENTITY-SENSOR-EXT-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/PDN-ENTITY-SENSOR-EXT-MIB # Produced by pysmi-0.3.4 at Wed May 1 14:38:45 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") SingleValueConstraint, ValueSizeConstraint, ConstraintsIntersection, ValueRangeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueSizeConstraint", "ConstraintsIntersection", "ValueRangeConstraint", "ConstraintsUnion") entPhySensorEntry, entPhySensorValue, EntitySensorValue = mibBuilder.importSymbols("ENTITY-SENSOR-MIB", "entPhySensorEntry", "entPhySensorValue", "EntitySensorValue") pdn_common, = mibBuilder.importSymbols("PDN-HEADER-MIB", "pdn-common") ModuleCompliance, NotificationGroup, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup", "ObjectGroup") ModuleIdentity, Counter32, NotificationType, iso, Counter64, Gauge32, MibScalar, MibTable, MibTableRow, MibTableColumn, Bits, IpAddress, ObjectIdentity, TimeTicks, MibIdentifier, Integer32, Unsigned32 = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "Counter32", "NotificationType", "iso", "Counter64", "Gauge32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Bits", "IpAddress", "ObjectIdentity", "TimeTicks", "MibIdentifier", "Integer32", "Unsigned32") DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention") pdnEntitySensorExtMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45)) pdnEntitySensorExtMIB.setRevisions(('2003-06-06 00:00', '2003-04-24 00:00', '2003-04-16 00:00',)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: pdnEntitySensorExtMIB.setRevisionsDescriptions(('Removed pdnEntPhySensorExtIndex. This object was originally added to be one of the objects each notification. However, this is redundent in that each notification object has the index as part of its instance. So the object is not needed.', 'Change the conformance/compliance section to be consistent with standard MIBs.', 'Initial release.',)) if mibBuilder.loadTexts: pdnEntitySensorExtMIB.setLastUpdated('200306060000Z') if mibBuilder.loadTexts: pdnEntitySensorExtMIB.setOrganization('Paradyne Networks MIB Working Group Other information about group editing the MIB') if mibBuilder.loadTexts: pdnEntitySensorExtMIB.setContactInfo('Paradyne Networks, Inc. 8545 126th Avenue North Largo, FL 33733 www.paradyne.com General Comments to: mibwg_team@paradyne.com Editors Jesus Pinto Clay Sikes') if mibBuilder.loadTexts: pdnEntitySensorExtMIB.setDescription('This MIB module is a supplement to the ENTITY-SENSOR-MIB, RFC 3433.') pdnEntitySensorExtNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 0)) pdnEntitySensorExtObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 1)) pdnEntitySensorExtAFNs = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 2)) pdnEntitySensorExtConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 3)) pdnEntPhySensorExtTable = MibTable((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 1, 1), ) if mibBuilder.loadTexts: pdnEntPhySensorExtTable.setStatus('current') if mibBuilder.loadTexts: pdnEntPhySensorExtTable.setDescription('This table extends the entPhySensorTable.') pdnEntPhySensorExtEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 1, 1, 1), ) entPhySensorEntry.registerAugmentions(("PDN-ENTITY-SENSOR-EXT-MIB", "pdnEntPhySensorExtEntry")) pdnEntPhySensorExtEntry.setIndexNames(*entPhySensorEntry.getIndexNames()) if mibBuilder.loadTexts: pdnEntPhySensorExtEntry.setStatus('current') if mibBuilder.loadTexts: pdnEntPhySensorExtEntry.setDescription('An extended entry in the entPhySensorTable.') pdnEntPhySensorExtNotificationEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 1, 1, 1, 1), Bits().clone(namedValues=NamedValues(("thresholdExceeded", 0)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: pdnEntPhySensorExtNotificationEnable.setStatus('current') if mibBuilder.loadTexts: pdnEntPhySensorExtNotificationEnable.setDescription('Provides that ability to enable and disable notifications relative to objects in this table. When this bit is set, pdnEntPhySensorExtThesholdExceededSet and pdnEntPhySensorExtThesholdExceededCleared notifications should be generated. When this bit is reset, pdnEntPhySensorExtThesholdExceededSet, and pdnEntPhySensorExtThesholdExceededCleared notifications should be not be generated.') pdnEntPhySensorExtUpperThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 1, 1, 1, 2), EntitySensorValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: pdnEntPhySensorExtUpperThreshold.setStatus('current') if mibBuilder.loadTexts: pdnEntPhySensorExtUpperThreshold.setDescription("This object sets the upper limit of a sensor's threshold. When the value of entPhySensorValue becomes greater than the value of this object, an 'Upper Threshold Exceeded' state is entered.") pdnEntPhySensorExtLowerThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 1, 1, 1, 3), EntitySensorValue()).setMaxAccess("readwrite") if mibBuilder.loadTexts: pdnEntPhySensorExtLowerThreshold.setStatus('current') if mibBuilder.loadTexts: pdnEntPhySensorExtLowerThreshold.setDescription("This object sets the lower limit of a sensor's threshold. When the value of entPhySensorValue becomes less than the value of this object, a 'Lower Threshold Exceeded' state is entered.") pdnEntPhySensorExtThresholdState = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("noThresholdsExceeded", 1), ("upperThresholdExceeded", 2), ("lowerThresholdExceeded", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: pdnEntPhySensorExtThresholdState.setStatus('current') if mibBuilder.loadTexts: pdnEntPhySensorExtThresholdState.setDescription('This object returns the threshold state of the sensor.') pdnEntPhySensorExtThresholdExceededSet = NotificationType((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 0, 1)).setObjects(("ENTITY-SENSOR-MIB", "entPhySensorValue"), ("PDN-ENTITY-SENSOR-EXT-MIB", "pdnEntPhySensorExtThresholdState")) if mibBuilder.loadTexts: pdnEntPhySensorExtThresholdExceededSet.setStatus('current') if mibBuilder.loadTexts: pdnEntPhySensorExtThresholdExceededSet.setDescription('This trap/notification signifies that a sensor value has exceeded its threshold limit. i.e. its entPhySensorValue is greater than its pdnEntPhySensorExtUpperThreshold or less than its pdnEntPhySensorExtLowerThreshold.') pdnEntPhySensorExtThresholdExceededCleared = NotificationType((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 0, 100)).setObjects(("ENTITY-SENSOR-MIB", "entPhySensorValue"), ("PDN-ENTITY-SENSOR-EXT-MIB", "pdnEntPhySensorExtThresholdState")) if mibBuilder.loadTexts: pdnEntPhySensorExtThresholdExceededCleared.setStatus('current') if mibBuilder.loadTexts: pdnEntPhySensorExtThresholdExceededCleared.setDescription('This trap/notification signifies that a sensor value that had exceeded its threshold limit, is now operating with in its threshold limits. i.e. its entPhySensorValue is less than or equal to its pdnEntPhySensorExtUpperThreshold and greater than or equal to its pdnEntPhySensorExtLowerThreshold.') pdnEntitySensorExtCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 3, 1)) pdnEntitySensorExtGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 3, 2)) pdnEntitySensorExtMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 3, 1, 1)).setObjects(("PDN-ENTITY-SENSOR-EXT-MIB", "pdnEntitySensorExtThresholdGroup"), ("PDN-ENTITY-SENSOR-EXT-MIB", "pdnEntitySensorExtThresholdNtfyGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pdnEntitySensorExtMIBCompliance = pdnEntitySensorExtMIBCompliance.setStatus('current') if mibBuilder.loadTexts: pdnEntitySensorExtMIBCompliance.setDescription('The compliance statement for pdnEntitySensorExt entities which implement the pdnEntitySensorExtMIB.') pdnEntitySensorExtObjGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 3, 2, 1)) pdnEntitySensorExtAfnGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 3, 2, 2)) pdnEntitySensorExtNtfyGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 3, 2, 3)) pdnEntitySensorExtThresholdGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 3, 2, 1, 1)).setObjects(("PDN-ENTITY-SENSOR-EXT-MIB", "pdnEntPhySensorExtNotificationEnable"), ("PDN-ENTITY-SENSOR-EXT-MIB", "pdnEntPhySensorExtUpperThreshold"), ("PDN-ENTITY-SENSOR-EXT-MIB", "pdnEntPhySensorExtLowerThreshold"), ("PDN-ENTITY-SENSOR-EXT-MIB", "pdnEntPhySensorExtThresholdState")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pdnEntitySensorExtThresholdGroup = pdnEntitySensorExtThresholdGroup.setStatus('current') if mibBuilder.loadTexts: pdnEntitySensorExtThresholdGroup.setDescription('A collection of objects for setting and reporting thresholds.') pdnEntitySensorExtThresholdNtfyGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 3, 2, 3, 1)).setObjects(("PDN-ENTITY-SENSOR-EXT-MIB", "pdnEntPhySensorExtThresholdExceededSet"), ("PDN-ENTITY-SENSOR-EXT-MIB", "pdnEntPhySensorExtThresholdExceededCleared")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pdnEntitySensorExtThresholdNtfyGroup = pdnEntitySensorExtThresholdNtfyGroup.setStatus('current') if mibBuilder.loadTexts: pdnEntitySensorExtThresholdNtfyGroup.setDescription('Notifications relative to thresholds going out of or in to specification.') mibBuilder.exportSymbols("PDN-ENTITY-SENSOR-EXT-MIB", pdnEntitySensorExtObjects=pdnEntitySensorExtObjects, pdnEntitySensorExtConformance=pdnEntitySensorExtConformance, pdnEntitySensorExtGroups=pdnEntitySensorExtGroups, pdnEntitySensorExtNotifications=pdnEntitySensorExtNotifications, pdnEntitySensorExtObjGroups=pdnEntitySensorExtObjGroups, PYSNMP_MODULE_ID=pdnEntitySensorExtMIB, pdnEntitySensorExtMIB=pdnEntitySensorExtMIB, pdnEntPhySensorExtThresholdState=pdnEntPhySensorExtThresholdState, pdnEntPhySensorExtUpperThreshold=pdnEntPhySensorExtUpperThreshold, pdnEntitySensorExtThresholdNtfyGroup=pdnEntitySensorExtThresholdNtfyGroup, pdnEntPhySensorExtThresholdExceededCleared=pdnEntPhySensorExtThresholdExceededCleared, pdnEntitySensorExtNtfyGroups=pdnEntitySensorExtNtfyGroups, pdnEntitySensorExtAFNs=pdnEntitySensorExtAFNs, pdnEntPhySensorExtEntry=pdnEntPhySensorExtEntry, pdnEntPhySensorExtThresholdExceededSet=pdnEntPhySensorExtThresholdExceededSet, pdnEntitySensorExtAfnGroups=pdnEntitySensorExtAfnGroups, pdnEntitySensorExtThresholdGroup=pdnEntitySensorExtThresholdGroup, pdnEntPhySensorExtNotificationEnable=pdnEntPhySensorExtNotificationEnable, pdnEntPhySensorExtTable=pdnEntPhySensorExtTable, pdnEntitySensorExtMIBCompliance=pdnEntitySensorExtMIBCompliance, pdnEntPhySensorExtLowerThreshold=pdnEntPhySensorExtLowerThreshold, pdnEntitySensorExtCompliances=pdnEntitySensorExtCompliances)
(integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (single_value_constraint, value_size_constraint, constraints_intersection, value_range_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueSizeConstraint', 'ConstraintsIntersection', 'ValueRangeConstraint', 'ConstraintsUnion') (ent_phy_sensor_entry, ent_phy_sensor_value, entity_sensor_value) = mibBuilder.importSymbols('ENTITY-SENSOR-MIB', 'entPhySensorEntry', 'entPhySensorValue', 'EntitySensorValue') (pdn_common,) = mibBuilder.importSymbols('PDN-HEADER-MIB', 'pdn-common') (module_compliance, notification_group, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup', 'ObjectGroup') (module_identity, counter32, notification_type, iso, counter64, gauge32, mib_scalar, mib_table, mib_table_row, mib_table_column, bits, ip_address, object_identity, time_ticks, mib_identifier, integer32, unsigned32) = mibBuilder.importSymbols('SNMPv2-SMI', 'ModuleIdentity', 'Counter32', 'NotificationType', 'iso', 'Counter64', 'Gauge32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Bits', 'IpAddress', 'ObjectIdentity', 'TimeTicks', 'MibIdentifier', 'Integer32', 'Unsigned32') (display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention') pdn_entity_sensor_ext_mib = module_identity((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45)) pdnEntitySensorExtMIB.setRevisions(('2003-06-06 00:00', '2003-04-24 00:00', '2003-04-16 00:00')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: pdnEntitySensorExtMIB.setRevisionsDescriptions(('Removed pdnEntPhySensorExtIndex. This object was originally added to be one of the objects each notification. However, this is redundent in that each notification object has the index as part of its instance. So the object is not needed.', 'Change the conformance/compliance section to be consistent with standard MIBs.', 'Initial release.')) if mibBuilder.loadTexts: pdnEntitySensorExtMIB.setLastUpdated('200306060000Z') if mibBuilder.loadTexts: pdnEntitySensorExtMIB.setOrganization('Paradyne Networks MIB Working Group Other information about group editing the MIB') if mibBuilder.loadTexts: pdnEntitySensorExtMIB.setContactInfo('Paradyne Networks, Inc. 8545 126th Avenue North Largo, FL 33733 www.paradyne.com General Comments to: mibwg_team@paradyne.com Editors Jesus Pinto Clay Sikes') if mibBuilder.loadTexts: pdnEntitySensorExtMIB.setDescription('This MIB module is a supplement to the ENTITY-SENSOR-MIB, RFC 3433.') pdn_entity_sensor_ext_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 0)) pdn_entity_sensor_ext_objects = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 1)) pdn_entity_sensor_ext_af_ns = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 2)) pdn_entity_sensor_ext_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 3)) pdn_ent_phy_sensor_ext_table = mib_table((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 1, 1)) if mibBuilder.loadTexts: pdnEntPhySensorExtTable.setStatus('current') if mibBuilder.loadTexts: pdnEntPhySensorExtTable.setDescription('This table extends the entPhySensorTable.') pdn_ent_phy_sensor_ext_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 1, 1, 1)) entPhySensorEntry.registerAugmentions(('PDN-ENTITY-SENSOR-EXT-MIB', 'pdnEntPhySensorExtEntry')) pdnEntPhySensorExtEntry.setIndexNames(*entPhySensorEntry.getIndexNames()) if mibBuilder.loadTexts: pdnEntPhySensorExtEntry.setStatus('current') if mibBuilder.loadTexts: pdnEntPhySensorExtEntry.setDescription('An extended entry in the entPhySensorTable.') pdn_ent_phy_sensor_ext_notification_enable = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 1, 1, 1, 1), bits().clone(namedValues=named_values(('thresholdExceeded', 0)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: pdnEntPhySensorExtNotificationEnable.setStatus('current') if mibBuilder.loadTexts: pdnEntPhySensorExtNotificationEnable.setDescription('Provides that ability to enable and disable notifications relative to objects in this table. When this bit is set, pdnEntPhySensorExtThesholdExceededSet and pdnEntPhySensorExtThesholdExceededCleared notifications should be generated. When this bit is reset, pdnEntPhySensorExtThesholdExceededSet, and pdnEntPhySensorExtThesholdExceededCleared notifications should be not be generated.') pdn_ent_phy_sensor_ext_upper_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 1, 1, 1, 2), entity_sensor_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: pdnEntPhySensorExtUpperThreshold.setStatus('current') if mibBuilder.loadTexts: pdnEntPhySensorExtUpperThreshold.setDescription("This object sets the upper limit of a sensor's threshold. When the value of entPhySensorValue becomes greater than the value of this object, an 'Upper Threshold Exceeded' state is entered.") pdn_ent_phy_sensor_ext_lower_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 1, 1, 1, 3), entity_sensor_value()).setMaxAccess('readwrite') if mibBuilder.loadTexts: pdnEntPhySensorExtLowerThreshold.setStatus('current') if mibBuilder.loadTexts: pdnEntPhySensorExtLowerThreshold.setDescription("This object sets the lower limit of a sensor's threshold. When the value of entPhySensorValue becomes less than the value of this object, a 'Lower Threshold Exceeded' state is entered.") pdn_ent_phy_sensor_ext_threshold_state = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('noThresholdsExceeded', 1), ('upperThresholdExceeded', 2), ('lowerThresholdExceeded', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: pdnEntPhySensorExtThresholdState.setStatus('current') if mibBuilder.loadTexts: pdnEntPhySensorExtThresholdState.setDescription('This object returns the threshold state of the sensor.') pdn_ent_phy_sensor_ext_threshold_exceeded_set = notification_type((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 0, 1)).setObjects(('ENTITY-SENSOR-MIB', 'entPhySensorValue'), ('PDN-ENTITY-SENSOR-EXT-MIB', 'pdnEntPhySensorExtThresholdState')) if mibBuilder.loadTexts: pdnEntPhySensorExtThresholdExceededSet.setStatus('current') if mibBuilder.loadTexts: pdnEntPhySensorExtThresholdExceededSet.setDescription('This trap/notification signifies that a sensor value has exceeded its threshold limit. i.e. its entPhySensorValue is greater than its pdnEntPhySensorExtUpperThreshold or less than its pdnEntPhySensorExtLowerThreshold.') pdn_ent_phy_sensor_ext_threshold_exceeded_cleared = notification_type((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 0, 100)).setObjects(('ENTITY-SENSOR-MIB', 'entPhySensorValue'), ('PDN-ENTITY-SENSOR-EXT-MIB', 'pdnEntPhySensorExtThresholdState')) if mibBuilder.loadTexts: pdnEntPhySensorExtThresholdExceededCleared.setStatus('current') if mibBuilder.loadTexts: pdnEntPhySensorExtThresholdExceededCleared.setDescription('This trap/notification signifies that a sensor value that had exceeded its threshold limit, is now operating with in its threshold limits. i.e. its entPhySensorValue is less than or equal to its pdnEntPhySensorExtUpperThreshold and greater than or equal to its pdnEntPhySensorExtLowerThreshold.') pdn_entity_sensor_ext_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 3, 1)) pdn_entity_sensor_ext_groups = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 3, 2)) pdn_entity_sensor_ext_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 3, 1, 1)).setObjects(('PDN-ENTITY-SENSOR-EXT-MIB', 'pdnEntitySensorExtThresholdGroup'), ('PDN-ENTITY-SENSOR-EXT-MIB', 'pdnEntitySensorExtThresholdNtfyGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pdn_entity_sensor_ext_mib_compliance = pdnEntitySensorExtMIBCompliance.setStatus('current') if mibBuilder.loadTexts: pdnEntitySensorExtMIBCompliance.setDescription('The compliance statement for pdnEntitySensorExt entities which implement the pdnEntitySensorExtMIB.') pdn_entity_sensor_ext_obj_groups = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 3, 2, 1)) pdn_entity_sensor_ext_afn_groups = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 3, 2, 2)) pdn_entity_sensor_ext_ntfy_groups = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 3, 2, 3)) pdn_entity_sensor_ext_threshold_group = object_group((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 3, 2, 1, 1)).setObjects(('PDN-ENTITY-SENSOR-EXT-MIB', 'pdnEntPhySensorExtNotificationEnable'), ('PDN-ENTITY-SENSOR-EXT-MIB', 'pdnEntPhySensorExtUpperThreshold'), ('PDN-ENTITY-SENSOR-EXT-MIB', 'pdnEntPhySensorExtLowerThreshold'), ('PDN-ENTITY-SENSOR-EXT-MIB', 'pdnEntPhySensorExtThresholdState')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pdn_entity_sensor_ext_threshold_group = pdnEntitySensorExtThresholdGroup.setStatus('current') if mibBuilder.loadTexts: pdnEntitySensorExtThresholdGroup.setDescription('A collection of objects for setting and reporting thresholds.') pdn_entity_sensor_ext_threshold_ntfy_group = notification_group((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 45, 3, 2, 3, 1)).setObjects(('PDN-ENTITY-SENSOR-EXT-MIB', 'pdnEntPhySensorExtThresholdExceededSet'), ('PDN-ENTITY-SENSOR-EXT-MIB', 'pdnEntPhySensorExtThresholdExceededCleared')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pdn_entity_sensor_ext_threshold_ntfy_group = pdnEntitySensorExtThresholdNtfyGroup.setStatus('current') if mibBuilder.loadTexts: pdnEntitySensorExtThresholdNtfyGroup.setDescription('Notifications relative to thresholds going out of or in to specification.') mibBuilder.exportSymbols('PDN-ENTITY-SENSOR-EXT-MIB', pdnEntitySensorExtObjects=pdnEntitySensorExtObjects, pdnEntitySensorExtConformance=pdnEntitySensorExtConformance, pdnEntitySensorExtGroups=pdnEntitySensorExtGroups, pdnEntitySensorExtNotifications=pdnEntitySensorExtNotifications, pdnEntitySensorExtObjGroups=pdnEntitySensorExtObjGroups, PYSNMP_MODULE_ID=pdnEntitySensorExtMIB, pdnEntitySensorExtMIB=pdnEntitySensorExtMIB, pdnEntPhySensorExtThresholdState=pdnEntPhySensorExtThresholdState, pdnEntPhySensorExtUpperThreshold=pdnEntPhySensorExtUpperThreshold, pdnEntitySensorExtThresholdNtfyGroup=pdnEntitySensorExtThresholdNtfyGroup, pdnEntPhySensorExtThresholdExceededCleared=pdnEntPhySensorExtThresholdExceededCleared, pdnEntitySensorExtNtfyGroups=pdnEntitySensorExtNtfyGroups, pdnEntitySensorExtAFNs=pdnEntitySensorExtAFNs, pdnEntPhySensorExtEntry=pdnEntPhySensorExtEntry, pdnEntPhySensorExtThresholdExceededSet=pdnEntPhySensorExtThresholdExceededSet, pdnEntitySensorExtAfnGroups=pdnEntitySensorExtAfnGroups, pdnEntitySensorExtThresholdGroup=pdnEntitySensorExtThresholdGroup, pdnEntPhySensorExtNotificationEnable=pdnEntPhySensorExtNotificationEnable, pdnEntPhySensorExtTable=pdnEntPhySensorExtTable, pdnEntitySensorExtMIBCompliance=pdnEntitySensorExtMIBCompliance, pdnEntPhySensorExtLowerThreshold=pdnEntPhySensorExtLowerThreshold, pdnEntitySensorExtCompliances=pdnEntitySensorExtCompliances)
def event( ip, table_name ): return { "Records": [ { "eventID": "6d0d4899c7a77eaad208b2b0ff951846", "eventName": "MODIFY", "eventVersion": "1.1", "eventSource": "aws:dynamodb", "awsRegion": "us-west-2", "dynamodb": { "ApproximateCreationDateTime": 1608053091, "Keys": { "SK": { "S": "#VISITOR" }, "PK": { "S": f"VISITOR#{ ip }" } }, "NewImage": { "Type": { "S": "visitor" }, "NumberSessions": { "N": "6" }, "SK": { "S": "#VISITOR" }, "PK": { "S": f"VISITOR#{ ip }" } }, "SequenceNumber": "40085300000000003642247411", "SizeBytes": 91, "StreamViewType": "NEW_IMAGE" }, "eventSourceARN": "arn:aws:dynamodb:us-west-2:681647709217:table/" + \ f"{ table_name }/stream/2020-12-07T03:47:26.281" }, { "eventID": "f16dc2d0a70b839b910a1318f09c6925", "eventName": "INSERT", "eventVersion": "1.1", "eventSource": "aws:dynamodb", "awsRegion": "us-west-2", "dynamodb": { "ApproximateCreationDateTime": 1608053091, "Keys": { "SK": { "S": "VISIT#2020-12-16T17:23:30.877Z" }, "PK": { "S": f"VISITOR#{ ip }" } }, "NewImage": { "App": { "S": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) " + \ "AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 " + \ "Safari/605.1.15" }, "OS": { "S": "10.15.6" }, "Device": { "S": "mac" }, "DateVisited": { "S": "2020-12-16T17:23:30.877Z" }, "DeviceType": { "S": "desktop" }, "Webkit": { "S": "605.1.15" }, "Type": { "S": "browser" }, "Version": { "S": "14.0.2" }, "SK": { "S": "VISIT#2020-12-16T17:23:30.877Z" }, "Height": { "N": "1366" }, "PK": { "S": f"VISITOR#{ ip }" }, "DateAdded": { "S": "2020-12-16T17:24:46.688Z" }, "Width": { "N": "1024" }, "Browser": { "S": "safari" } }, "SequenceNumber": "40085400000000003642247443", "SizeBytes": 401, "StreamViewType": "NEW_IMAGE" }, "eventSourceARN": "arn:aws:dynamodb:us-west-2:681647709217:table/" + \ f"{ table_name }/stream/2020-12-07T03:47:26.281" }, { "eventID": "00e86f87d57568e99f5f40cbb4d9dc6b", "eventName": "INSERT", "eventVersion": "1.1", "eventSource": "aws:dynamodb", "awsRegion": "us-west-2", "dynamodb": { "ApproximateCreationDateTime": 1608053091, "Keys": { "SK": { "S": "SESSION#2020-12-16T17:23:30.877Z" }, "PK": { "S": f"VISITOR#{ ip }" } }, "NewImage": { "Type": { "S": "session" }, "GSI2SK": { "S": "#SESSION" }, "SK": { "S": "SESSION#2020-12-16T17:23:30.877Z" }, "TotalTime": { "N": "7.454" }, "GSI2PK": { "S": f"SESSION#{ ip }#2020-12-16T17:23:30.877Z" }, "PK": { "S": f"VISITOR#{ ip }" }, "AverageTime": { "N": "2.484666666666667" } }, "SequenceNumber": "40085500000000003642247444", "SizeBytes": 222, "StreamViewType": "NEW_IMAGE" }, "eventSourceARN": "arn:aws:dynamodb:us-west-2:681647709217:table/" + \ f"{ table_name }/stream/2020-12-07T03:47:26.281" }, { "eventID": "808a901c4ef33d8b0f97ba69cc61d500", "eventName": "INSERT", "eventVersion": "1.1", "eventSource": "aws:dynamodb", "awsRegion": "us-west-2", "dynamodb": { "ApproximateCreationDateTime": 1608053091, "Keys": { "SK": { "S": "VISIT#2020-12-16T17:23:30.877Z#/" }, "PK": { "S": f"VISITOR#{ ip }" } }, "NewImage": { "User": { "N": "0" }, "Title": { "S": "Tyler Norlund" }, "GSI2PK": { "S": f"SESSION#{ ip }#2020-12-16T17:23:30.877Z" }, "Slug": { "S": "/" }, "PreviousSlug": { "NULL": True }, "Type": { "S": "visit" }, "GSI1PK": { "S": "PAGE#/" }, "GSI2SK": { "S": "VISIT#2020-12-16T17:23:30.877Z" }, "GSI1SK": { "S": "VISIT#2020-12-16T17:23:30.877Z" }, "SK": { "S": "VISIT#2020-12-16T17:23:30.877Z#/" }, "TimeOnPage": { "N": "2.2680000000000002" }, "NextTitle": { "S": "Website" }, "PK": { "S": f"VISITOR#{ ip }" }, "PreviousTitle": { "NULL": True }, "NextSlug": { "S": "/projects/web" } }, "SequenceNumber": "40085600000000003642247445", "SizeBytes": 368, "StreamViewType": "NEW_IMAGE" }, "eventSourceARN": "arn:aws:dynamodb:us-west-2:681647709217:table/" + \ f"{ table_name }/stream/2020-12-07T03:47:26.281" }, { "eventID": "9371f29ab879c6d339caf668c7480e62", "eventName": "INSERT", "eventVersion": "1.1", "eventSource": "aws:dynamodb", "awsRegion": "us-west-2", "dynamodb": { "ApproximateCreationDateTime": 1608053091, "Keys": { "SK": { "S": "VISIT#2020-12-16T17:23:33.145Z#/projects/web" }, "PK": { "S": f"VISITOR#{ ip }" } }, "NewImage": { "User": { "N": "0" }, "Title": { "S": "Website" }, "GSI2PK": { "S": f"SESSION#{ ip }#2020-12-16T17:23:30.877Z" }, "Slug": { "S": "/projects/web" }, "PreviousSlug": { "S": "/" }, "Type": { "S": "visit" }, "GSI1PK": { "S": "PAGE#/projects/web" }, "GSI2SK": { "S": "VISIT#2020-12-16T17:23:33.145Z" }, "GSI1SK": { "S": "VISIT#2020-12-16T17:23:33.145Z" }, "SK": { "S": "VISIT#2020-12-16T17:23:33.145Z#/projects/web" }, "TimeOnPage": { "N": "3.5540000000000003" }, "NextTitle": { "S": "Website" }, "PK": { "S": f"VISITOR#{ ip }" }, "PreviousTitle": { "S": "Tyler Norlund" }, "NextSlug": { "S": "/projects/web" } }, "SequenceNumber": "40085700000000003642247446", "SizeBytes": 422, "StreamViewType": "NEW_IMAGE" }, "eventSourceARN": "arn:aws:dynamodb:us-west-2:681647709217:table/" + \ f"{ table_name }/stream/2020-12-07T03:47:26.281" }, { "eventID": "5df611a92e8d912aee4f7d5ae7914db5", "eventName": "INSERT", "eventVersion": "1.1", "eventSource": "aws:dynamodb", "awsRegion": "us-west-2", "dynamodb": { "ApproximateCreationDateTime": 1608053091, "Keys": { "SK": { "S": "VISIT#2020-12-16T17:23:38.331Z#/projects/web/analytics" }, "PK": { "S": f"VISITOR#{ ip }" } }, "NewImage": { "User": { "N": "0" }, "Title": { "S": "Analytics" }, "GSI2PK": { "S": f"SESSION#{ ip }#2020-12-16T17:23:30.877Z" }, "Slug": { "S": "/projects/web/analytics" }, "PreviousSlug": { "S": "/projects/web" }, "Type": { "S": "visit" }, "GSI1PK": { "S": "PAGE#/projects/web/analytics" }, "GSI2SK": { "S": "VISIT#2020-12-16T17:23:38.331Z" }, "GSI1SK": { "S": "VISIT#2020-12-16T17:23:38.331Z" }, "SK": { "S": "VISIT#2020-12-16T17:23:38.331Z#/projects/web/analytics" }, "TimeOnPage": { "NULL": True }, "NextTitle": { "NULL": True }, "PK": { "S": f"VISITOR#{ ip }" }, "PreviousTitle": { "S": "Website" }, "NextSlug": { "NULL": True } }, "SequenceNumber": "40085800000000003642247447", "SizeBytes": 443, "StreamViewType": "NEW_IMAGE" }, "eventSourceARN": "arn:aws:dynamodb:us-west-2:681647709217:table/" + \ f"{ table_name }/stream/2020-12-07T03:47:26.281" }, { "eventID": "acb0f8b453d27aa1b8185a3bd9e49040", "eventName": "INSERT", "eventVersion": "1.1", "eventSource": "aws:dynamodb", "awsRegion": "us-west-2", "dynamodb": { "ApproximateCreationDateTime": 1608053091, "Keys": { "SK": { "S": "VISIT#2020-12-16T17:23:36.699Z#/projects/web" }, "PK": { "S": f"VISITOR#{ ip }" } }, "NewImage": { "User": { "N": "0" }, "Title": { "S": "Website" }, "GSI2PK": { "S": f"SESSION#{ ip }#2020-12-16T17:23:30.877Z" }, "Slug": { "S": "/projects/web" }, "PreviousSlug": { "S": "/projects/web" }, "Type": { "S": "visit" }, "GSI1PK": { "S": "PAGE#/projects/web" }, "GSI2SK": { "S": "VISIT#2020-12-16T17:23:36.699Z" }, "GSI1SK": { "S": "VISIT#2020-12-16T17:23:36.699Z" }, "SK": { "S": "VISIT#2020-12-16T17:23:36.699Z#/projects/web" }, "TimeOnPage": { "N": "1.6320000000000001" }, "NextTitle": { "S": "Analytics" }, "PK": { "S": f"VISITOR#{ ip }" }, "PreviousTitle": { "S": "Website" }, "NextSlug": { "S": "/projects/web/analytics" } }, "SequenceNumber": "40085900000000003642247448", "SizeBytes": 440, "StreamViewType": "NEW_IMAGE" }, "eventSourceARN": "arn:aws:dynamodb:us-west-2:681647709217:table/" + \ f"{ table_name }/stream/2020-12-07T03:47:26.281" } ] }
def event(ip, table_name): return {'Records': [{'eventID': '6d0d4899c7a77eaad208b2b0ff951846', 'eventName': 'MODIFY', 'eventVersion': '1.1', 'eventSource': 'aws:dynamodb', 'awsRegion': 'us-west-2', 'dynamodb': {'ApproximateCreationDateTime': 1608053091, 'Keys': {'SK': {'S': '#VISITOR'}, 'PK': {'S': f'VISITOR#{ip}'}}, 'NewImage': {'Type': {'S': 'visitor'}, 'NumberSessions': {'N': '6'}, 'SK': {'S': '#VISITOR'}, 'PK': {'S': f'VISITOR#{ip}'}}, 'SequenceNumber': '40085300000000003642247411', 'SizeBytes': 91, 'StreamViewType': 'NEW_IMAGE'}, 'eventSourceARN': 'arn:aws:dynamodb:us-west-2:681647709217:table/' + f'{table_name}/stream/2020-12-07T03:47:26.281'}, {'eventID': 'f16dc2d0a70b839b910a1318f09c6925', 'eventName': 'INSERT', 'eventVersion': '1.1', 'eventSource': 'aws:dynamodb', 'awsRegion': 'us-west-2', 'dynamodb': {'ApproximateCreationDateTime': 1608053091, 'Keys': {'SK': {'S': 'VISIT#2020-12-16T17:23:30.877Z'}, 'PK': {'S': f'VISITOR#{ip}'}}, 'NewImage': {'App': {'S': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) ' + 'AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 ' + 'Safari/605.1.15'}, 'OS': {'S': '10.15.6'}, 'Device': {'S': 'mac'}, 'DateVisited': {'S': '2020-12-16T17:23:30.877Z'}, 'DeviceType': {'S': 'desktop'}, 'Webkit': {'S': '605.1.15'}, 'Type': {'S': 'browser'}, 'Version': {'S': '14.0.2'}, 'SK': {'S': 'VISIT#2020-12-16T17:23:30.877Z'}, 'Height': {'N': '1366'}, 'PK': {'S': f'VISITOR#{ip}'}, 'DateAdded': {'S': '2020-12-16T17:24:46.688Z'}, 'Width': {'N': '1024'}, 'Browser': {'S': 'safari'}}, 'SequenceNumber': '40085400000000003642247443', 'SizeBytes': 401, 'StreamViewType': 'NEW_IMAGE'}, 'eventSourceARN': 'arn:aws:dynamodb:us-west-2:681647709217:table/' + f'{table_name}/stream/2020-12-07T03:47:26.281'}, {'eventID': '00e86f87d57568e99f5f40cbb4d9dc6b', 'eventName': 'INSERT', 'eventVersion': '1.1', 'eventSource': 'aws:dynamodb', 'awsRegion': 'us-west-2', 'dynamodb': {'ApproximateCreationDateTime': 1608053091, 'Keys': {'SK': {'S': 'SESSION#2020-12-16T17:23:30.877Z'}, 'PK': {'S': f'VISITOR#{ip}'}}, 'NewImage': {'Type': {'S': 'session'}, 'GSI2SK': {'S': '#SESSION'}, 'SK': {'S': 'SESSION#2020-12-16T17:23:30.877Z'}, 'TotalTime': {'N': '7.454'}, 'GSI2PK': {'S': f'SESSION#{ip}#2020-12-16T17:23:30.877Z'}, 'PK': {'S': f'VISITOR#{ip}'}, 'AverageTime': {'N': '2.484666666666667'}}, 'SequenceNumber': '40085500000000003642247444', 'SizeBytes': 222, 'StreamViewType': 'NEW_IMAGE'}, 'eventSourceARN': 'arn:aws:dynamodb:us-west-2:681647709217:table/' + f'{table_name}/stream/2020-12-07T03:47:26.281'}, {'eventID': '808a901c4ef33d8b0f97ba69cc61d500', 'eventName': 'INSERT', 'eventVersion': '1.1', 'eventSource': 'aws:dynamodb', 'awsRegion': 'us-west-2', 'dynamodb': {'ApproximateCreationDateTime': 1608053091, 'Keys': {'SK': {'S': 'VISIT#2020-12-16T17:23:30.877Z#/'}, 'PK': {'S': f'VISITOR#{ip}'}}, 'NewImage': {'User': {'N': '0'}, 'Title': {'S': 'Tyler Norlund'}, 'GSI2PK': {'S': f'SESSION#{ip}#2020-12-16T17:23:30.877Z'}, 'Slug': {'S': '/'}, 'PreviousSlug': {'NULL': True}, 'Type': {'S': 'visit'}, 'GSI1PK': {'S': 'PAGE#/'}, 'GSI2SK': {'S': 'VISIT#2020-12-16T17:23:30.877Z'}, 'GSI1SK': {'S': 'VISIT#2020-12-16T17:23:30.877Z'}, 'SK': {'S': 'VISIT#2020-12-16T17:23:30.877Z#/'}, 'TimeOnPage': {'N': '2.2680000000000002'}, 'NextTitle': {'S': 'Website'}, 'PK': {'S': f'VISITOR#{ip}'}, 'PreviousTitle': {'NULL': True}, 'NextSlug': {'S': '/projects/web'}}, 'SequenceNumber': '40085600000000003642247445', 'SizeBytes': 368, 'StreamViewType': 'NEW_IMAGE'}, 'eventSourceARN': 'arn:aws:dynamodb:us-west-2:681647709217:table/' + f'{table_name}/stream/2020-12-07T03:47:26.281'}, {'eventID': '9371f29ab879c6d339caf668c7480e62', 'eventName': 'INSERT', 'eventVersion': '1.1', 'eventSource': 'aws:dynamodb', 'awsRegion': 'us-west-2', 'dynamodb': {'ApproximateCreationDateTime': 1608053091, 'Keys': {'SK': {'S': 'VISIT#2020-12-16T17:23:33.145Z#/projects/web'}, 'PK': {'S': f'VISITOR#{ip}'}}, 'NewImage': {'User': {'N': '0'}, 'Title': {'S': 'Website'}, 'GSI2PK': {'S': f'SESSION#{ip}#2020-12-16T17:23:30.877Z'}, 'Slug': {'S': '/projects/web'}, 'PreviousSlug': {'S': '/'}, 'Type': {'S': 'visit'}, 'GSI1PK': {'S': 'PAGE#/projects/web'}, 'GSI2SK': {'S': 'VISIT#2020-12-16T17:23:33.145Z'}, 'GSI1SK': {'S': 'VISIT#2020-12-16T17:23:33.145Z'}, 'SK': {'S': 'VISIT#2020-12-16T17:23:33.145Z#/projects/web'}, 'TimeOnPage': {'N': '3.5540000000000003'}, 'NextTitle': {'S': 'Website'}, 'PK': {'S': f'VISITOR#{ip}'}, 'PreviousTitle': {'S': 'Tyler Norlund'}, 'NextSlug': {'S': '/projects/web'}}, 'SequenceNumber': '40085700000000003642247446', 'SizeBytes': 422, 'StreamViewType': 'NEW_IMAGE'}, 'eventSourceARN': 'arn:aws:dynamodb:us-west-2:681647709217:table/' + f'{table_name}/stream/2020-12-07T03:47:26.281'}, {'eventID': '5df611a92e8d912aee4f7d5ae7914db5', 'eventName': 'INSERT', 'eventVersion': '1.1', 'eventSource': 'aws:dynamodb', 'awsRegion': 'us-west-2', 'dynamodb': {'ApproximateCreationDateTime': 1608053091, 'Keys': {'SK': {'S': 'VISIT#2020-12-16T17:23:38.331Z#/projects/web/analytics'}, 'PK': {'S': f'VISITOR#{ip}'}}, 'NewImage': {'User': {'N': '0'}, 'Title': {'S': 'Analytics'}, 'GSI2PK': {'S': f'SESSION#{ip}#2020-12-16T17:23:30.877Z'}, 'Slug': {'S': '/projects/web/analytics'}, 'PreviousSlug': {'S': '/projects/web'}, 'Type': {'S': 'visit'}, 'GSI1PK': {'S': 'PAGE#/projects/web/analytics'}, 'GSI2SK': {'S': 'VISIT#2020-12-16T17:23:38.331Z'}, 'GSI1SK': {'S': 'VISIT#2020-12-16T17:23:38.331Z'}, 'SK': {'S': 'VISIT#2020-12-16T17:23:38.331Z#/projects/web/analytics'}, 'TimeOnPage': {'NULL': True}, 'NextTitle': {'NULL': True}, 'PK': {'S': f'VISITOR#{ip}'}, 'PreviousTitle': {'S': 'Website'}, 'NextSlug': {'NULL': True}}, 'SequenceNumber': '40085800000000003642247447', 'SizeBytes': 443, 'StreamViewType': 'NEW_IMAGE'}, 'eventSourceARN': 'arn:aws:dynamodb:us-west-2:681647709217:table/' + f'{table_name}/stream/2020-12-07T03:47:26.281'}, {'eventID': 'acb0f8b453d27aa1b8185a3bd9e49040', 'eventName': 'INSERT', 'eventVersion': '1.1', 'eventSource': 'aws:dynamodb', 'awsRegion': 'us-west-2', 'dynamodb': {'ApproximateCreationDateTime': 1608053091, 'Keys': {'SK': {'S': 'VISIT#2020-12-16T17:23:36.699Z#/projects/web'}, 'PK': {'S': f'VISITOR#{ip}'}}, 'NewImage': {'User': {'N': '0'}, 'Title': {'S': 'Website'}, 'GSI2PK': {'S': f'SESSION#{ip}#2020-12-16T17:23:30.877Z'}, 'Slug': {'S': '/projects/web'}, 'PreviousSlug': {'S': '/projects/web'}, 'Type': {'S': 'visit'}, 'GSI1PK': {'S': 'PAGE#/projects/web'}, 'GSI2SK': {'S': 'VISIT#2020-12-16T17:23:36.699Z'}, 'GSI1SK': {'S': 'VISIT#2020-12-16T17:23:36.699Z'}, 'SK': {'S': 'VISIT#2020-12-16T17:23:36.699Z#/projects/web'}, 'TimeOnPage': {'N': '1.6320000000000001'}, 'NextTitle': {'S': 'Analytics'}, 'PK': {'S': f'VISITOR#{ip}'}, 'PreviousTitle': {'S': 'Website'}, 'NextSlug': {'S': '/projects/web/analytics'}}, 'SequenceNumber': '40085900000000003642247448', 'SizeBytes': 440, 'StreamViewType': 'NEW_IMAGE'}, 'eventSourceARN': 'arn:aws:dynamodb:us-west-2:681647709217:table/' + f'{table_name}/stream/2020-12-07T03:47:26.281'}]}
class BibleProc: def __init__(self): pass def consume(self,verses): ret = "" for i in verses: out = "" for v in i: add = str(v[3]) if (v[0] == 'Proverbs'): add = add.replace("\n\n","\n") add += "\n" out += add ret += out+"\n\n\n" return ret[:-3]
class Bibleproc: def __init__(self): pass def consume(self, verses): ret = '' for i in verses: out = '' for v in i: add = str(v[3]) if v[0] == 'Proverbs': add = add.replace('\n\n', '\n') add += '\n' out += add ret += out + '\n\n\n' return ret[:-3]
rupees=[3000, 600000, 324990909, 90990900, 30000, 5600000, 690909090, 31010101, 532010, 510, 4100] l=len(rupees) i=0 Crorepati=0 Lakhpati=0 Dilwale=0 while i<l: if rupees[i]>=10000000: Crorepati+=1 elif rupees[i]>100000: Lakhpati+=1 else: Dilwale+=1 i+=1 print(Crorepati,"croepati hai") print(Lakhpati,"Lakhpati hai") print(Dilwale,"Dilwale hai")
rupees = [3000, 600000, 324990909, 90990900, 30000, 5600000, 690909090, 31010101, 532010, 510, 4100] l = len(rupees) i = 0 crorepati = 0 lakhpati = 0 dilwale = 0 while i < l: if rupees[i] >= 10000000: crorepati += 1 elif rupees[i] > 100000: lakhpati += 1 else: dilwale += 1 i += 1 print(Crorepati, 'croepati hai') print(Lakhpati, 'Lakhpati hai') print(Dilwale, 'Dilwale hai')
DOMAIN = "ds_air" CONF_GW = "gw" DEFAULT_HOST = "192.168.1.103" DEFAULT_PORT = 8008 DEFAULT_GW = "DTA117C611" GW_LIST = ["DTA117C611", "DTA117B611"]
domain = 'ds_air' conf_gw = 'gw' default_host = '192.168.1.103' default_port = 8008 default_gw = 'DTA117C611' gw_list = ['DTA117C611', 'DTA117B611']
"Core exceptions raised by the LedisDB client" class LedisError(Exception): pass class ServerError(LedisError): pass class ConnectionError(ServerError): pass class BusyLoadingError(ConnectionError): pass class TimeoutError(LedisError): pass class InvalidResponse(ServerError): pass class ResponseError(LedisError): pass class DataError(LedisError): pass class ExecAbortError(ResponseError): pass class TxNotBeginError(LedisError): pass
"""Core exceptions raised by the LedisDB client""" class Lediserror(Exception): pass class Servererror(LedisError): pass class Connectionerror(ServerError): pass class Busyloadingerror(ConnectionError): pass class Timeouterror(LedisError): pass class Invalidresponse(ServerError): pass class Responseerror(LedisError): pass class Dataerror(LedisError): pass class Execaborterror(ResponseError): pass class Txnotbeginerror(LedisError): pass
def distance(strand_a, strand_b): if len(strand_a) != len(strand_b): raise ValueError("strands must be of equal length") return sum([1 for (a,b) in zip(strand_a, strand_b) if a != b])
def distance(strand_a, strand_b): if len(strand_a) != len(strand_b): raise value_error('strands must be of equal length') return sum([1 for (a, b) in zip(strand_a, strand_b) if a != b])
if __name__ == '__main__': students = [] for _ in range(int(input())): name = input() score = float(input()) students.append([name, score]) students = sorted(students, key = lambda x: x[1]) #print(students) #second_lowest_score = students[1][1] second_lowest_score = sorted(list(set([x[1] for x in students])))[1] desired_students = [] for stu in students: if stu[1] == second_lowest_score: desired_students.append(stu[0]) print("\n".join(sorted(desired_students)))
if __name__ == '__main__': students = [] for _ in range(int(input())): name = input() score = float(input()) students.append([name, score]) students = sorted(students, key=lambda x: x[1]) second_lowest_score = sorted(list(set([x[1] for x in students])))[1] desired_students = [] for stu in students: if stu[1] == second_lowest_score: desired_students.append(stu[0]) print('\n'.join(sorted(desired_students)))
def main(j, args, params, tags, tasklet): page = args.page modifier = j.portal.tools.html.portalhtmlfactory.getPageModifierGridDataTables(page) namespace = args.getTag('namespace') category = args.getTag('category') url = args.getTag('url') fieldnames = args.getTag('fieldnames', '').split(',') fieldids = args.getTag('fieldids', '').split(',') if url: page = modifier.addTableFromURL(url, fieldnames) else: page = modifier.addTableForModel(namespace, category, fieldnames, fieldids) params.result = page return params def match(j, args, params, tags, tasklet): return True
def main(j, args, params, tags, tasklet): page = args.page modifier = j.portal.tools.html.portalhtmlfactory.getPageModifierGridDataTables(page) namespace = args.getTag('namespace') category = args.getTag('category') url = args.getTag('url') fieldnames = args.getTag('fieldnames', '').split(',') fieldids = args.getTag('fieldids', '').split(',') if url: page = modifier.addTableFromURL(url, fieldnames) else: page = modifier.addTableForModel(namespace, category, fieldnames, fieldids) params.result = page return params def match(j, args, params, tags, tasklet): return True
def check_prime(number): # Check individual integers for prime if number == 1: return False if number == 2 or number == 3: return True if number % 2 == 0 or number % 3 == 0: return False # For numbers larger than equal to 5, check for prime i = 5 while i*i <= number: if number % i == 0 or number % (i+2) == 0: return False i += 6 return True if __name__ == "__main__": # Read integer input from stdin T = int(input()) for _ in range(T): # Read input integer from stdin n = int(input()) # Check for prime if check_prime(n) == True: print("Prime") else: print("Not prime")
def check_prime(number): if number == 1: return False if number == 2 or number == 3: return True if number % 2 == 0 or number % 3 == 0: return False i = 5 while i * i <= number: if number % i == 0 or number % (i + 2) == 0: return False i += 6 return True if __name__ == '__main__': t = int(input()) for _ in range(T): n = int(input()) if check_prime(n) == True: print('Prime') else: print('Not prime')
class Column: def __init__(self, name='', type=None, equivalences=None): self._name = name if not type: type = [] self._type = type if not equivalences: equivalences = [] self._equivalences = equivalences self.primary = False self.foreign = False @property def name(self): return self._name @property def type(self): return self._type def add_type(self, type): self.type.append(type) @property def equivalences(self): return self._equivalences def add_equivalence(self, equivalence): self.equivalences.append(equivalence) def is_equivalent(self, word): if word in self.equivalences: return True else: return False def is_primary(self): return self.primary def set_as_primary(self): self.primary = True def is_foreign(self): return self.foreign def set_as_foreign(self, references): self.foreign = references
class Column: def __init__(self, name='', type=None, equivalences=None): self._name = name if not type: type = [] self._type = type if not equivalences: equivalences = [] self._equivalences = equivalences self.primary = False self.foreign = False @property def name(self): return self._name @property def type(self): return self._type def add_type(self, type): self.type.append(type) @property def equivalences(self): return self._equivalences def add_equivalence(self, equivalence): self.equivalences.append(equivalence) def is_equivalent(self, word): if word in self.equivalences: return True else: return False def is_primary(self): return self.primary def set_as_primary(self): self.primary = True def is_foreign(self): return self.foreign def set_as_foreign(self, references): self.foreign = references
# Copyright (c) 2019-present, Facebook, Inc. # All rights reserved. # # This source code is licensed under the license found in the # LICENSE file in the root directory of this source tree. # def f_gold ( arr , n ) : arr = sorted ( arr ) diff = 10 ** 20 for i in range ( n - 1 ) : if arr [ i + 1 ] - arr [ i ] < diff : diff = arr [ i + 1 ] - arr [ i ] return diff #TOFILL if __name__ == '__main__': param = [ ([3, 25, 44, 46, 54, 60, 81],3,), ([82, 68, -98, -66, -36, -42, 98, -38, 58, -6, -28, 70, -24, 18, 16, 10, 92, 44, 28, -96, -72, 24, 28, -80, -4, 38, 88, 76],22,), ([1, 1, 1],2,), ([87, 25, 80, 45, 44, 20, 48, 47, 51, 54, 68, 47, 89, 95, 15, 29, 5, 45, 2, 64, 53, 96, 94, 22, 23, 43, 61, 75, 74, 50],15,), ([-74, -48, -42, -26, -16, -12, 0, 4, 8, 18, 46, 46, 62, 70, 74, 88, 92, 96, 98],18,), ([0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0],36,), ([27, 42, 59, 80],2,), ([-96, -94, 10, -36, 18, -40],4,), ([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1],12,), ([96],0,) ] n_success = 0 for i, parameters_set in enumerate(param): if f_filled(*parameters_set) == f_gold(*parameters_set): n_success+=1 print("#Results: %i, %i" % (n_success, len(param)))
def f_gold(arr, n): arr = sorted(arr) diff = 10 ** 20 for i in range(n - 1): if arr[i + 1] - arr[i] < diff: diff = arr[i + 1] - arr[i] return diff if __name__ == '__main__': param = [([3, 25, 44, 46, 54, 60, 81], 3), ([82, 68, -98, -66, -36, -42, 98, -38, 58, -6, -28, 70, -24, 18, 16, 10, 92, 44, 28, -96, -72, 24, 28, -80, -4, 38, 88, 76], 22), ([1, 1, 1], 2), ([87, 25, 80, 45, 44, 20, 48, 47, 51, 54, 68, 47, 89, 95, 15, 29, 5, 45, 2, 64, 53, 96, 94, 22, 23, 43, 61, 75, 74, 50], 15), ([-74, -48, -42, -26, -16, -12, 0, 4, 8, 18, 46, 46, 62, 70, 74, 88, 92, 96, 98], 18), ([0, 1, 1, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0], 36), ([27, 42, 59, 80], 2), ([-96, -94, 10, -36, 18, -40], 4), ([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1], 12), ([96], 0)] n_success = 0 for (i, parameters_set) in enumerate(param): if f_filled(*parameters_set) == f_gold(*parameters_set): n_success += 1 print('#Results: %i, %i' % (n_success, len(param)))
#!/usr/bin/env python3 with open("input.txt", "r") as f: num = [] for elem in f.read().split(","): num.append(int(elem)) for _ in range(0, 80): new_num = [] for elem in num: if elem == 0: new_num.append(8) new_num.append(6) else: new_num.append(elem - 1) num = new_num print(len(num))
with open('input.txt', 'r') as f: num = [] for elem in f.read().split(','): num.append(int(elem)) for _ in range(0, 80): new_num = [] for elem in num: if elem == 0: new_num.append(8) new_num.append(6) else: new_num.append(elem - 1) num = new_num print(len(num))
class Other: def __init__(self, name2): self.name2 = name2 def get_name2(self): return self.name2 @staticmethod def decode(data): f_name2 = data["name2"] if not isinstance(f_name2, str): raise Exception("not a string") return Other(f_name2) def encode(self): data = dict() if self.name2 is None: raise Exception("name2: is a required field") data["name2"] = self.name2 return data def __repr__(self): return "<Other name2:{!r}>".format(self.name2)
class Other: def __init__(self, name2): self.name2 = name2 def get_name2(self): return self.name2 @staticmethod def decode(data): f_name2 = data['name2'] if not isinstance(f_name2, str): raise exception('not a string') return other(f_name2) def encode(self): data = dict() if self.name2 is None: raise exception('name2: is a required field') data['name2'] = self.name2 return data def __repr__(self): return '<Other name2:{!r}>'.format(self.name2)
data = [ { 'id': 1, 'name': 'One cool plane', 'wings': 5, }, { 'id': 2, 'name': 'One very cool plane', 'wings': 8, }, { 'id': 3, 'name': 'Boring plane', 'wings': 2, }, ]
data = [{'id': 1, 'name': 'One cool plane', 'wings': 5}, {'id': 2, 'name': 'One very cool plane', 'wings': 8}, {'id': 3, 'name': 'Boring plane', 'wings': 2}]
class Source: ''' Source class to define source objects ''' def __init__(self,id,name,description,url,category,language,country): self.id = id self.name = name self.description = description self.url = url self.category = category self.language = language self.country = country class Article: ''' Class that instantiates objects of the news article objects of the news sources ''' def __init__(self,id,name,author,title,description,url,urlToImage,publishedAt): self.id = id self.name = name self.author = author self.title = title self.description = description self.url = url self.urlToImage = urlToImage self.publishedAt = publishedAt class Category: ''' Class that instantiates objects of the news categories objects of the news sources ''' def __init__(self,author,description,time,url,image,title): self.author = author self.description = description self.time = time self.url = url self.image = image self.title = title
class Source: """ Source class to define source objects """ def __init__(self, id, name, description, url, category, language, country): self.id = id self.name = name self.description = description self.url = url self.category = category self.language = language self.country = country class Article: """ Class that instantiates objects of the news article objects of the news sources """ def __init__(self, id, name, author, title, description, url, urlToImage, publishedAt): self.id = id self.name = name self.author = author self.title = title self.description = description self.url = url self.urlToImage = urlToImage self.publishedAt = publishedAt class Category: """ Class that instantiates objects of the news categories objects of the news sources """ def __init__(self, author, description, time, url, image, title): self.author = author self.description = description self.time = time self.url = url self.image = image self.title = title
class Description: def __init__(self): self.drupal_fieldnames = {'abstract': 'field_description'} self.mods_xpaths = {'abstract': 'mods/abstract_ms'} self.dc_designators = {'abstract': 'dc.abstract'} self.abstract = '' self.description_fieldname = '' def set_description(self, abstract): if isinstance(abstract, str) and abstract != '': self.abstract = abstract def get_description(self): return self.abstract def get_description_fieldname(self): return self.drupal_fieldnames['abstract']
class Description: def __init__(self): self.drupal_fieldnames = {'abstract': 'field_description'} self.mods_xpaths = {'abstract': 'mods/abstract_ms'} self.dc_designators = {'abstract': 'dc.abstract'} self.abstract = '' self.description_fieldname = '' def set_description(self, abstract): if isinstance(abstract, str) and abstract != '': self.abstract = abstract def get_description(self): return self.abstract def get_description_fieldname(self): return self.drupal_fieldnames['abstract']
class Solver: def __init__(self): self.memo = {} def minimum_squares(self, target_sum): def helper(n): if n in self.memo: return self.memo[n] if n == 0: return 0 minimum = n for i in range(1, n + 1): if i ** 2 > n: break self.memo[n] = min(1 + helper(n - i ** 2), minimum) return self.memo[n] r = helper(target_sum) return r if __name__ == '__main__': print(Solver().minimum_squares(60))
class Solver: def __init__(self): self.memo = {} def minimum_squares(self, target_sum): def helper(n): if n in self.memo: return self.memo[n] if n == 0: return 0 minimum = n for i in range(1, n + 1): if i ** 2 > n: break self.memo[n] = min(1 + helper(n - i ** 2), minimum) return self.memo[n] r = helper(target_sum) return r if __name__ == '__main__': print(solver().minimum_squares(60))
__all__ = [ "classes", "cleaners", "parser", "writer", ]
__all__ = ['classes', 'cleaners', 'parser', 'writer']
# # PySNMP MIB module Nortel-MsCarrier-MscPassport-CasTestMIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/Nortel-MsCarrier-MscPassport-CasTestMIB # Produced by pysmi-0.3.4 at Mon Apr 29 20:20:09 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") Counter32, Gauge32, StorageType, Unsigned32, RowStatus, Integer32, TimeInterval, DisplayString, RowPointer = mibBuilder.importSymbols("Nortel-MsCarrier-MscPassport-StandardTextualConventionsMIB", "Counter32", "Gauge32", "StorageType", "Unsigned32", "RowStatus", "Integer32", "TimeInterval", "DisplayString", "RowPointer") AsciiStringIndex, IntegerSequence, AsciiString, PassportCounter64, ExtendedAsciiString, Gauge64, Unsigned64, Hex, EnterpriseDateAndTime, NonReplicated, FixedPoint4, FixedPoint3, HexString, FixedPoint2, Link, DashedHexString, DigitString, FixedPoint1, WildcardedDigitString = mibBuilder.importSymbols("Nortel-MsCarrier-MscPassport-TextualConventionsMIB", "AsciiStringIndex", "IntegerSequence", "AsciiString", "PassportCounter64", "ExtendedAsciiString", "Gauge64", "Unsigned64", "Hex", "EnterpriseDateAndTime", "NonReplicated", "FixedPoint4", "FixedPoint3", "HexString", "FixedPoint2", "Link", "DashedHexString", "DigitString", "FixedPoint1", "WildcardedDigitString") mscComponents, mscPassportMIBs = mibBuilder.importSymbols("Nortel-MsCarrier-MscPassport-UsefulDefinitionsMIB", "mscComponents", "mscPassportMIBs") NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance") Counter32, iso, MibScalar, MibTable, MibTableRow, MibTableColumn, Gauge32, Unsigned32, ObjectIdentity, MibIdentifier, Integer32, IpAddress, ModuleIdentity, Counter64, Bits, NotificationType, TimeTicks = mibBuilder.importSymbols("SNMPv2-SMI", "Counter32", "iso", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Gauge32", "Unsigned32", "ObjectIdentity", "MibIdentifier", "Integer32", "IpAddress", "ModuleIdentity", "Counter64", "Bits", "NotificationType", "TimeTicks") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") casTestMIB = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103)) mscExample = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000)) mscExampleRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1), ) if mibBuilder.loadTexts: mscExampleRowStatusTable.setStatus('mandatory') mscExampleRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex")) if mibBuilder.loadTexts: mscExampleRowStatusEntry.setStatus('mandatory') mscExampleRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleRowStatus.setStatus('mandatory') mscExampleComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleComponentName.setStatus('mandatory') mscExampleStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleStorageType.setStatus('mandatory') mscExampleIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: mscExampleIndex.setStatus('mandatory') mscExampleOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 100), ) if mibBuilder.loadTexts: mscExampleOperationalTable.setStatus('mandatory') mscExampleOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 100, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex")) if mibBuilder.loadTexts: mscExampleOperationalEntry.setStatus('mandatory') mscExampleOperMyComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 100, 1, 1), RowPointer()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleOperMyComponentName.setStatus('mandatory') mscExampleProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 101), ) if mibBuilder.loadTexts: mscExampleProvisionalTable.setStatus('mandatory') mscExampleProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 101, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex")) if mibBuilder.loadTexts: mscExampleProvisionalEntry.setStatus('mandatory') mscExampleProvMyComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 101, 1, 1), RowPointer()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleProvMyComponentName.setStatus('mandatory') mscExampleOperDecimalSubCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002), ) if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedTable.setStatus('mandatory') mscExampleOperDecimalSubCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleOperDecimalSubCreatedValue")) if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedEntry.setStatus('mandatory') mscExampleOperDecimalSubCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002, 1, 1), RowPointer()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedValue.setStatus('mandatory') mscExampleOperDecimalSubCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedRowStatus.setStatus('mandatory') mscExampleOperFixedPtSubcomponentsCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003), ) if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedTable.setStatus('mandatory') mscExampleOperFixedPtSubcomponentsCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleOperFixedPtSubcomponentsCreatedValue")) if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedEntry.setStatus('mandatory') mscExampleOperFixedPtSubcomponentsCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003, 1, 1), RowPointer()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedValue.setStatus('mandatory') mscExampleOperFixedPtSubcomponentsCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedRowStatus.setStatus('mandatory') mscExampleOperStringSubCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004), ) if mibBuilder.loadTexts: mscExampleOperStringSubCreatedTable.setStatus('mandatory') mscExampleOperStringSubCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleOperStringSubCreatedValue")) if mibBuilder.loadTexts: mscExampleOperStringSubCreatedEntry.setStatus('mandatory') mscExampleOperStringSubCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004, 1, 1), RowPointer()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleOperStringSubCreatedValue.setStatus('mandatory') mscExampleOperStringSubCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleOperStringSubCreatedRowStatus.setStatus('mandatory') mscExampleOperEnumSubCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005), ) if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedTable.setStatus('mandatory') mscExampleOperEnumSubCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleOperEnumSubCreatedValue")) if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedEntry.setStatus('mandatory') mscExampleOperEnumSubCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005, 1, 1), RowPointer()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedValue.setStatus('mandatory') mscExampleOperEnumSubCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedRowStatus.setStatus('mandatory') mscExampleOperSignedSubCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006), ) if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedTable.setStatus('mandatory') mscExampleOperSignedSubCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleOperSignedSubCreatedValue")) if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedEntry.setStatus('mandatory') mscExampleOperSignedSubCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006, 1, 1), RowPointer()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedValue.setStatus('mandatory') mscExampleOperSignedSubCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedRowStatus.setStatus('mandatory') mscExampleProvDecimalSubCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007), ) if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedTable.setStatus('mandatory') mscExampleProvDecimalSubCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleProvDecimalSubCreatedValue")) if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedEntry.setStatus('mandatory') mscExampleProvDecimalSubCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007, 1, 1), Link()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedValue.setStatus('mandatory') mscExampleProvDecimalSubCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedRowStatus.setStatus('mandatory') mscExampleProvFixedPtSubCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008), ) if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedTable.setStatus('mandatory') mscExampleProvFixedPtSubCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleProvFixedPtSubCreatedValue")) if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedEntry.setStatus('mandatory') mscExampleProvFixedPtSubCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008, 1, 1), Link()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedValue.setStatus('mandatory') mscExampleProvFixedPtSubCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedRowStatus.setStatus('mandatory') mscExampleProvSignedSubCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009), ) if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedTable.setStatus('mandatory') mscExampleProvSignedSubCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleProvSignedSubCreatedValue")) if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedEntry.setStatus('mandatory') mscExampleProvSignedSubCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009, 1, 1), Link()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedValue.setStatus('mandatory') mscExampleProvSignedSubCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedRowStatus.setStatus('mandatory') mscExampleProvStringSubCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010), ) if mibBuilder.loadTexts: mscExampleProvStringSubCreatedTable.setStatus('mandatory') mscExampleProvStringSubCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleProvStringSubCreatedValue")) if mibBuilder.loadTexts: mscExampleProvStringSubCreatedEntry.setStatus('mandatory') mscExampleProvStringSubCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010, 1, 1), Link()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleProvStringSubCreatedValue.setStatus('mandatory') mscExampleProvStringSubCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleProvStringSubCreatedRowStatus.setStatus('mandatory') mscExampleProvEnumSubCreatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011), ) if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedTable.setStatus('mandatory') mscExampleProvEnumSubCreatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleProvEnumSubCreatedValue")) if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedEntry.setStatus('mandatory') mscExampleProvEnumSubCreatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011, 1, 1), Link()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedValue.setStatus('mandatory') mscExampleProvEnumSubCreatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedRowStatus.setStatus('mandatory') mscExampleDecimal = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2)) mscExampleDecimalRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1), ) if mibBuilder.loadTexts: mscExampleDecimalRowStatusTable.setStatus('mandatory') mscExampleDecimalRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex")) if mibBuilder.loadTexts: mscExampleDecimalRowStatusEntry.setStatus('mandatory') mscExampleDecimalRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalRowStatus.setStatus('mandatory') mscExampleDecimalComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleDecimalComponentName.setStatus('mandatory') mscExampleDecimalStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleDecimalStorageType.setStatus('mandatory') mscExampleDecimalIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1023))) if mibBuilder.loadTexts: mscExampleDecimalIndex.setStatus('mandatory') mscExampleDecimalOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10), ) if mibBuilder.loadTexts: mscExampleDecimalOperationalTable.setStatus('mandatory') mscExampleDecimalOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex")) if mibBuilder.loadTexts: mscExampleDecimalOperationalEntry.setStatus('mandatory') mscExampleDecimalOperStructInteger = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalOperStructInteger.setStatus('mandatory') mscExampleDecimalOperStructIntSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalOperStructIntSet.setStatus('mandatory') mscExampleDecimalOperFreeInteger = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 3), Unsigned32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 10), ValueRangeConstraint(100, 200), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalOperFreeInteger.setStatus('mandatory') mscExampleDecimalOperFreeIntSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalOperFreeIntSet.setStatus('mandatory') mscExampleDecimalOperFreeCounter32 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleDecimalOperFreeCounter32.setStatus('mandatory') mscExampleDecimalOperFreeGauge32 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 6), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalOperFreeGauge32.setStatus('mandatory') mscExampleDecimalOperFreeTimeInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 7), TimeInterval().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalOperFreeTimeInterval.setStatus('mandatory') mscExampleDecimalProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11), ) if mibBuilder.loadTexts: mscExampleDecimalProvisionalTable.setStatus('mandatory') mscExampleDecimalProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex")) if mibBuilder.loadTexts: mscExampleDecimalProvisionalEntry.setStatus('mandatory') mscExampleDecimalProvDecimalSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 1), Link()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalProvDecimalSub.setStatus('mandatory') mscExampleDecimalProvStructInteger = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 2), Unsigned32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 252), ValueRangeConstraint(253, 253), ValueRangeConstraint(254, 254), ValueRangeConstraint(255, 255), )).clone(253)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalProvStructInteger.setStatus('mandatory') mscExampleDecimalProvStructIntSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2).clone(hexValue="aaaa")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalProvStructIntSet.setStatus('mandatory') mscExampleDecimalProvFreeInteger = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 4), Unsigned32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 10), ValueRangeConstraint(100, 200), )).clone(101)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalProvFreeInteger.setStatus('mandatory') mscExampleDecimalProvFreeInteger1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 5), Unsigned32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 10), ValueRangeConstraint(100, 200), )).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalProvFreeInteger1.setStatus('mandatory') mscExampleDecimalProvFreeInteger2 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalProvFreeInteger2.setStatus('mandatory') mscExampleDecimalProvFreeIntSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2).clone(hexValue="5555")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalProvFreeIntSet.setStatus('mandatory') mscExampleDecimalProvFreeIntSet1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4).clone(hexValue="80000001")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalProvFreeIntSet1.setStatus('mandatory') mscExampleDecimalOsIntVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012), ) if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorTable.setStatus('mandatory') mscExampleDecimalOsIntVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalOsIntVectorIndex")) if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorEntry.setStatus('mandatory') mscExampleDecimalOsIntVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorIndex.setStatus('mandatory') mscExampleDecimalOsIntVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorValue.setStatus('mandatory') mscExampleDecimalOsIntArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013), ) if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayTable.setStatus('mandatory') mscExampleDecimalOsIntArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalOsIntArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalOsIntArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayEntry.setStatus('mandatory') mscExampleDecimalOsIntArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayRowIndex.setStatus('mandatory') mscExampleDecimalOsIntArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayColumnIndex.setStatus('mandatory') mscExampleDecimalOsIntArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayValue.setStatus('mandatory') mscExampleDecimalOfIntVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014), ) if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorTable.setStatus('mandatory') mscExampleDecimalOfIntVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalOfIntVectorIndex")) if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorEntry.setStatus('mandatory') mscExampleDecimalOfIntVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorIndex.setStatus('mandatory') mscExampleDecimalOfIntVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorValue.setStatus('mandatory') mscExampleDecimalOfIntArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015), ) if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayTable.setStatus('mandatory') mscExampleDecimalOfIntArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalOfIntArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalOfIntArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayEntry.setStatus('mandatory') mscExampleDecimalOfIntArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayRowIndex.setStatus('mandatory') mscExampleDecimalOfIntArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayColumnIndex.setStatus('mandatory') mscExampleDecimalOfIntArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayValue.setStatus('mandatory') mscExampleDecimalOfIntReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016), ) if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedTable.setStatus('mandatory') mscExampleDecimalOfIntReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalOfIntReplicatedIndex")) if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedEntry.setStatus('mandatory') mscExampleDecimalOfIntReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedIndex.setStatus('mandatory') mscExampleDecimalOfIntReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedValue.setStatus('mandatory') mscExampleDecimalOfIntReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedRowStatus.setStatus('mandatory') mscExampleDecimalOfIntListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017), ) if mibBuilder.loadTexts: mscExampleDecimalOfIntListTable.setStatus('mandatory') mscExampleDecimalOfIntListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalOfIntListValue")) if mibBuilder.loadTexts: mscExampleDecimalOfIntListEntry.setStatus('mandatory') mscExampleDecimalOfIntListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 10), ValueRangeConstraint(1000, 2000), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalOfIntListValue.setStatus('mandatory') mscExampleDecimalOfIntListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleDecimalOfIntListRowStatus.setStatus('mandatory') mscExampleDecimalPsIntVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018), ) if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorTable.setStatus('mandatory') mscExampleDecimalPsIntVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPsIntVectorIndex")) if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorEntry.setStatus('mandatory') mscExampleDecimalPsIntVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorIndex.setStatus('mandatory') mscExampleDecimalPsIntVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorValue.setStatus('mandatory') mscExampleDecimalPsIntArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019), ) if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayTable.setStatus('mandatory') mscExampleDecimalPsIntArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPsIntArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPsIntArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayEntry.setStatus('mandatory') mscExampleDecimalPsIntArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayRowIndex.setStatus('mandatory') mscExampleDecimalPsIntArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayColumnIndex.setStatus('mandatory') mscExampleDecimalPsIntArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayValue.setStatus('mandatory') mscExampleDecimalPfIntVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020), ) if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorTable.setStatus('mandatory') mscExampleDecimalPfIntVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntVectorIndex")) if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorEntry.setStatus('mandatory') mscExampleDecimalPfIntVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorIndex.setStatus('mandatory') mscExampleDecimalPfIntVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorValue.setStatus('mandatory') mscExampleDecimalPfIntVector1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021), ) if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Table.setStatus('mandatory') mscExampleDecimalPfIntVector1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntVector1Index")) if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Entry.setStatus('mandatory') mscExampleDecimalPfIntVector1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 15))) if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Index.setStatus('mandatory') mscExampleDecimalPfIntVector1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021, 1, 2), Unsigned32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 50), ValueRangeConstraint(100, 150), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Value.setStatus('mandatory') mscExampleDecimalPfIntArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022), ) if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayTable.setStatus('mandatory') mscExampleDecimalPfIntArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayEntry.setStatus('mandatory') mscExampleDecimalPfIntArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayRowIndex.setStatus('mandatory') mscExampleDecimalPfIntArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayColumnIndex.setStatus('mandatory') mscExampleDecimalPfIntArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayValue.setStatus('mandatory') mscExampleDecimalPfIntArray1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023), ) if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1Table.setStatus('mandatory') mscExampleDecimalPfIntArray1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntArray1RowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntArray1ColumnIndex")) if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1Entry.setStatus('mandatory') mscExampleDecimalPfIntArray1RowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1RowIndex.setStatus('mandatory') mscExampleDecimalPfIntArray1ColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1ColumnIndex.setStatus('mandatory') mscExampleDecimalPfIntArray1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1, 3), Unsigned32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 10), ValueRangeConstraint(20, 200), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1Value.setStatus('mandatory') mscExampleDecimalPfIntReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024), ) if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedTable.setStatus('mandatory') mscExampleDecimalPfIntReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntReplicatedIndex")) if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedEntry.setStatus('mandatory') mscExampleDecimalPfIntReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedIndex.setStatus('mandatory') mscExampleDecimalPfIntReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedValue.setStatus('mandatory') mscExampleDecimalPfIntReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedRowStatus.setStatus('mandatory') mscExampleDecimalPfIntReplicated1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025), ) if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Table.setStatus('mandatory') mscExampleDecimalPfIntReplicated1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntReplicated1Index")) if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Entry.setStatus('mandatory') mscExampleDecimalPfIntReplicated1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 9), ValueRangeConstraint(11, 19), ))) if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Index.setStatus('mandatory') mscExampleDecimalPfIntReplicated1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1, 2), Unsigned32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 3), ValueRangeConstraint(30, 300), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Value.setStatus('mandatory') mscExampleDecimalPfIntReplicated1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1RowStatus.setStatus('mandatory') mscExampleDecimalPfIntListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026), ) if mibBuilder.loadTexts: mscExampleDecimalPfIntListTable.setStatus('mandatory') mscExampleDecimalPfIntListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntListValue")) if mibBuilder.loadTexts: mscExampleDecimalPfIntListEntry.setStatus('mandatory') mscExampleDecimalPfIntListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1000))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalPfIntListValue.setStatus('mandatory') mscExampleDecimalPfIntListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleDecimalPfIntListRowStatus.setStatus('mandatory') mscExampleDecimalPfIntList1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027), ) if mibBuilder.loadTexts: mscExampleDecimalPfIntList1Table.setStatus('mandatory') mscExampleDecimalPfIntList1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalPfIntList1Value")) if mibBuilder.loadTexts: mscExampleDecimalPfIntList1Entry.setStatus('mandatory') mscExampleDecimalPfIntList1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 10), ValueRangeConstraint(15, 50), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalPfIntList1Value.setStatus('mandatory') mscExampleDecimalPfIntList1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleDecimalPfIntList1RowStatus.setStatus('mandatory') mscExampleHex = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3)) mscExampleHexRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1), ) if mibBuilder.loadTexts: mscExampleHexRowStatusTable.setStatus('mandatory') mscExampleHexRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex")) if mibBuilder.loadTexts: mscExampleHexRowStatusEntry.setStatus('mandatory') mscExampleHexRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexRowStatus.setStatus('mandatory') mscExampleHexComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleHexComponentName.setStatus('mandatory') mscExampleHexStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleHexStorageType.setStatus('mandatory') mscExampleHexIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))) if mibBuilder.loadTexts: mscExampleHexIndex.setStatus('mandatory') mscExampleHexOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10), ) if mibBuilder.loadTexts: mscExampleHexOperationalTable.setStatus('mandatory') mscExampleHexOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex")) if mibBuilder.loadTexts: mscExampleHexOperationalEntry.setStatus('mandatory') mscExampleHexOperStructHex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10, 1, 1), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexOperStructHex.setStatus('mandatory') mscExampleHexOperFreeHex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10, 1, 2), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexOperFreeHex.setStatus('mandatory') mscExampleHexProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11), ) if mibBuilder.loadTexts: mscExampleHexProvisionalTable.setStatus('mandatory') mscExampleHexProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex")) if mibBuilder.loadTexts: mscExampleHexProvisionalEntry.setStatus('mandatory') mscExampleHexProvEnumSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 1), Link()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexProvEnumSub.setStatus('mandatory') mscExampleHexProvStructHex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 2), Hex().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 256), ValueRangeConstraint(512, 512), ValueRangeConstraint(513, 513), ValueRangeConstraint(514, 514), )).clone(512)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexProvStructHex.setStatus('mandatory') mscExampleHexProvFreeHex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 3), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 256)).clone(18)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexProvFreeHex.setStatus('mandatory') mscExampleHexProvFreeHex1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 4), Hex().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 16), ValueRangeConstraint(256, 4096), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexProvFreeHex1.setStatus('mandatory') mscExampleHexOsHexVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040), ) if mibBuilder.loadTexts: mscExampleHexOsHexVectorTable.setStatus('mandatory') mscExampleHexOsHexVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexOsHexVectorIndex")) if mibBuilder.loadTexts: mscExampleHexOsHexVectorEntry.setStatus('mandatory') mscExampleHexOsHexVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexOsHexVectorIndex.setStatus('mandatory') mscExampleHexOsHexVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040, 1, 2), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexOsHexVectorValue.setStatus('mandatory') mscExampleHexOsHexArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041), ) if mibBuilder.loadTexts: mscExampleHexOsHexArrayTable.setStatus('mandatory') mscExampleHexOsHexArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexOsHexArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexOsHexArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleHexOsHexArrayEntry.setStatus('mandatory') mscExampleHexOsHexArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleHexOsHexArrayRowIndex.setStatus('mandatory') mscExampleHexOsHexArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexOsHexArrayColumnIndex.setStatus('mandatory') mscExampleHexOsHexArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1, 3), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexOsHexArrayValue.setStatus('mandatory') mscExampleHexOfHexVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042), ) if mibBuilder.loadTexts: mscExampleHexOfHexVectorTable.setStatus('mandatory') mscExampleHexOfHexVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexOfHexVectorIndex")) if mibBuilder.loadTexts: mscExampleHexOfHexVectorEntry.setStatus('mandatory') mscExampleHexOfHexVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexOfHexVectorIndex.setStatus('mandatory') mscExampleHexOfHexVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042, 1, 2), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexOfHexVectorValue.setStatus('mandatory') mscExampleHexOfHexArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043), ) if mibBuilder.loadTexts: mscExampleHexOfHexArrayTable.setStatus('mandatory') mscExampleHexOfHexArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexOfHexArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexOfHexArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleHexOfHexArrayEntry.setStatus('mandatory') mscExampleHexOfHexArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleHexOfHexArrayRowIndex.setStatus('mandatory') mscExampleHexOfHexArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexOfHexArrayColumnIndex.setStatus('mandatory') mscExampleHexOfHexArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1, 3), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexOfHexArrayValue.setStatus('mandatory') mscExampleHexOfHexReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044), ) if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedTable.setStatus('mandatory') mscExampleHexOfHexReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexOfHexReplicatedIndex")) if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedEntry.setStatus('mandatory') mscExampleHexOfHexReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedIndex.setStatus('mandatory') mscExampleHexOfHexReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1, 2), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedValue.setStatus('mandatory') mscExampleHexOfHexReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedRowStatus.setStatus('mandatory') mscExampleHexOfHexListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045), ) if mibBuilder.loadTexts: mscExampleHexOfHexListTable.setStatus('mandatory') mscExampleHexOfHexListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexOfHexListValue")) if mibBuilder.loadTexts: mscExampleHexOfHexListEntry.setStatus('mandatory') mscExampleHexOfHexListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4096))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexOfHexListValue.setStatus('mandatory') mscExampleHexOfHexListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleHexOfHexListRowStatus.setStatus('mandatory') mscExampleHexProvStructHexVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046), ) if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorTable.setStatus('mandatory') mscExampleHexProvStructHexVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvStructHexVectorIndex")) if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorEntry.setStatus('mandatory') mscExampleHexProvStructHexVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorIndex.setStatus('mandatory') mscExampleHexProvStructHexVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046, 1, 2), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorValue.setStatus('mandatory') mscExampleHexProvStructHexArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047), ) if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayTable.setStatus('mandatory') mscExampleHexProvStructHexArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvStructHexArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvStructHexArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayEntry.setStatus('mandatory') mscExampleHexProvStructHexArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayRowIndex.setStatus('mandatory') mscExampleHexProvStructHexArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayColumnIndex.setStatus('mandatory') mscExampleHexProvStructHexArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1, 3), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayValue.setStatus('mandatory') mscExampleHexProvFreeHexVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048), ) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorTable.setStatus('mandatory') mscExampleHexProvFreeHexVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexVectorIndex")) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorEntry.setStatus('mandatory') mscExampleHexProvFreeHexVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorIndex.setStatus('mandatory') mscExampleHexProvFreeHexVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048, 1, 2), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorValue.setStatus('mandatory') mscExampleHexProvFreeHexVector1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049), ) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Table.setStatus('mandatory') mscExampleHexProvFreeHexVector1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexVector1Index")) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Entry.setStatus('mandatory') mscExampleHexProvFreeHexVector1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Index.setStatus('mandatory') mscExampleHexProvFreeHexVector1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049, 1, 2), Hex().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 16), ValueRangeConstraint(256, 4096), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Value.setStatus('mandatory') mscExampleHexProvFreeHexVector2Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050), ) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Table.setStatus('mandatory') mscExampleHexProvFreeHexVector2Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexVector2Index")) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Entry.setStatus('mandatory') mscExampleHexProvFreeHexVector2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 5))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Index.setStatus('mandatory') mscExampleHexProvFreeHexVector2Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050, 1, 2), Hex().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 16), ValueRangeConstraint(256, 4096), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Value.setStatus('mandatory') mscExampleHexProvFreeHexArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051), ) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayTable.setStatus('mandatory') mscExampleHexProvFreeHexArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayEntry.setStatus('mandatory') mscExampleHexProvFreeHexArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayRowIndex.setStatus('mandatory') mscExampleHexProvFreeHexArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayColumnIndex.setStatus('mandatory') mscExampleHexProvFreeHexArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1, 3), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayValue.setStatus('mandatory') mscExampleHexProvFreeHexArray1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052), ) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1Table.setStatus('mandatory') mscExampleHexProvFreeHexArray1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexArray1RowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexArray1ColumnIndex")) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1Entry.setStatus('mandatory') mscExampleHexProvFreeHexArray1RowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 1), ValueRangeConstraint(3, 4), ))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1RowIndex.setStatus('mandatory') mscExampleHexProvFreeHexArray1ColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1ColumnIndex.setStatus('mandatory') mscExampleHexProvFreeHexArray1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1, 3), Hex().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 16), ValueRangeConstraint(80, 256), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1Value.setStatus('mandatory') mscExampleHexProvFreeHexArray2Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053), ) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2Table.setStatus('mandatory') mscExampleHexProvFreeHexArray2Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexArray2RowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexArray2ColumnIndex")) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2Entry.setStatus('mandatory') mscExampleHexProvFreeHexArray2RowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2RowIndex.setStatus('mandatory') mscExampleHexProvFreeHexArray2ColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2ColumnIndex.setStatus('mandatory') mscExampleHexProvFreeHexArray2Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1, 3), Hex().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 16), ValueRangeConstraint(80, 256), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2Value.setStatus('mandatory') mscExampleHexProvFreeHexReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054), ) if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedTable.setStatus('mandatory') mscExampleHexProvFreeHexReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexReplicatedIndex")) if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedEntry.setStatus('mandatory') mscExampleHexProvFreeHexReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedIndex.setStatus('mandatory') mscExampleHexProvFreeHexReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1, 2), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedValue.setStatus('mandatory') mscExampleHexProvFreeHexReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedRowStatus.setStatus('mandatory') mscExampleHexProvFreeHexReplicated1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055), ) if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Table.setStatus('mandatory') mscExampleHexProvFreeHexReplicated1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexReplicated1Index")) if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Entry.setStatus('mandatory') mscExampleHexProvFreeHexReplicated1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 3), ValueRangeConstraint(5, 9), ))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Index.setStatus('mandatory') mscExampleHexProvFreeHexReplicated1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1, 2), Hex().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 32), ValueRangeConstraint(80, 256), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Value.setStatus('mandatory') mscExampleHexProvFreeHexReplicated1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1RowStatus.setStatus('mandatory') mscExampleHexProvFreeHexListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056), ) if mibBuilder.loadTexts: mscExampleHexProvFreeHexListTable.setStatus('mandatory') mscExampleHexProvFreeHexListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexListValue")) if mibBuilder.loadTexts: mscExampleHexProvFreeHexListEntry.setStatus('mandatory') mscExampleHexProvFreeHexListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4096))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexProvFreeHexListValue.setStatus('mandatory') mscExampleHexProvFreeHexListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleHexProvFreeHexListRowStatus.setStatus('mandatory') mscExampleHexProvFreeHexList1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057), ) if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1Table.setStatus('mandatory') mscExampleHexProvFreeHexList1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexProvFreeHexList1Value")) if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1Entry.setStatus('mandatory') mscExampleHexProvFreeHexList1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4096))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1Value.setStatus('mandatory') mscExampleHexProvFreeHexList1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1RowStatus.setStatus('mandatory') mscExampleIpAddress = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4)) mscExampleIpAddressRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1), ) if mibBuilder.loadTexts: mscExampleIpAddressRowStatusTable.setStatus('mandatory') mscExampleIpAddressRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex")) if mibBuilder.loadTexts: mscExampleIpAddressRowStatusEntry.setStatus('mandatory') mscExampleIpAddressRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressRowStatus.setStatus('mandatory') mscExampleIpAddressComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleIpAddressComponentName.setStatus('mandatory') mscExampleIpAddressStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleIpAddressStorageType.setStatus('mandatory') mscExampleIpAddressIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 10), IpAddress()) if mibBuilder.loadTexts: mscExampleIpAddressIndex.setStatus('mandatory') mscExampleIpAddressOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10), ) if mibBuilder.loadTexts: mscExampleIpAddressOperationalTable.setStatus('mandatory') mscExampleIpAddressOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex")) if mibBuilder.loadTexts: mscExampleIpAddressOperationalEntry.setStatus('mandatory') mscExampleIpAddressOperStructIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10, 1, 1), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddress.setStatus('mandatory') mscExampleIpAddressOperFreeIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10, 1, 2), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddress.setStatus('mandatory') mscExampleIpAddressProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11), ) if mibBuilder.loadTexts: mscExampleIpAddressProvisionalTable.setStatus('mandatory') mscExampleIpAddressProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex")) if mibBuilder.loadTexts: mscExampleIpAddressProvisionalEntry.setStatus('mandatory') mscExampleIpAddressProvEnumSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 1), Link()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressProvEnumSub.setStatus('mandatory') mscExampleIpAddressProvStructIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 2), IpAddress().clone(hexValue="7f000100")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddress.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 3), IpAddress().clone(hexValue="7f7f7f7f")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddress.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddress1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 4), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddress1.setStatus('mandatory') mscExampleIpAddressOperStructIpAddressVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058), ) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorTable.setStatus('mandatory') mscExampleIpAddressOperStructIpAddressVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressOperStructIpAddressVectorIndex")) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorEntry.setStatus('mandatory') mscExampleIpAddressOperStructIpAddressVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorIndex.setStatus('mandatory') mscExampleIpAddressOperStructIpAddressVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058, 1, 2), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorValue.setStatus('mandatory') mscExampleIpAddressOperStructIpAddressArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059), ) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayTable.setStatus('mandatory') mscExampleIpAddressOperStructIpAddressArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressOperStructIpAddressArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressOperStructIpAddressArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayEntry.setStatus('mandatory') mscExampleIpAddressOperStructIpAddressArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayRowIndex.setStatus('mandatory') mscExampleIpAddressOperStructIpAddressArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayColumnIndex.setStatus('mandatory') mscExampleIpAddressOperStructIpAddressArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1, 3), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayValue.setStatus('mandatory') mscExampleIpAddressOperFreeIpAddressVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060), ) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorTable.setStatus('mandatory') mscExampleIpAddressOperFreeIpAddressVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressOperFreeIpAddressVectorIndex")) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorEntry.setStatus('mandatory') mscExampleIpAddressOperFreeIpAddressVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorIndex.setStatus('mandatory') mscExampleIpAddressOperFreeIpAddressVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060, 1, 2), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorValue.setStatus('mandatory') mscExampleIpAddressOperFreeIpAddressArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061), ) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayTable.setStatus('mandatory') mscExampleIpAddressOperFreeIpAddressArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressOperFreeIpAddressArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressOperFreeIpAddressArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayEntry.setStatus('mandatory') mscExampleIpAddressOperFreeIpAddressArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayRowIndex.setStatus('mandatory') mscExampleIpAddressOperFreeIpAddressArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayColumnIndex.setStatus('mandatory') mscExampleIpAddressOperFreeIpAddressArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1, 3), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayValue.setStatus('mandatory') mscExampleIpAddressOperFreeIpAddressReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062), ) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedTable.setStatus('mandatory') mscExampleIpAddressOperFreeIpAddressReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressOperFreeIpAddressReplicatedIndex")) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedEntry.setStatus('mandatory') mscExampleIpAddressOperFreeIpAddressReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1, 1), IpAddress()) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedIndex.setStatus('mandatory') mscExampleIpAddressOperFreeIpAddressReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1, 2), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedValue.setStatus('mandatory') mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus.setStatus('mandatory') mscExampleIpAddressOperFreeIpAddressListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063), ) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListTable.setStatus('mandatory') mscExampleIpAddressOperFreeIpAddressListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressOperFreeIpAddressListValue")) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListEntry.setStatus('mandatory') mscExampleIpAddressOperFreeIpAddressListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063, 1, 1), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListValue.setStatus('mandatory') mscExampleIpAddressOperFreeIpAddressListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListRowStatus.setStatus('mandatory') mscExampleIpAddressProvStructIpAddressVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064), ) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorTable.setStatus('mandatory') mscExampleIpAddressProvStructIpAddressVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvStructIpAddressVectorIndex")) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorEntry.setStatus('mandatory') mscExampleIpAddressProvStructIpAddressVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorIndex.setStatus('mandatory') mscExampleIpAddressProvStructIpAddressVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064, 1, 2), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorValue.setStatus('mandatory') mscExampleIpAddressProvStructIpAddressArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065), ) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayTable.setStatus('mandatory') mscExampleIpAddressProvStructIpAddressArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvStructIpAddressArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvStructIpAddressArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayEntry.setStatus('mandatory') mscExampleIpAddressProvStructIpAddressArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayRowIndex.setStatus('mandatory') mscExampleIpAddressProvStructIpAddressArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayColumnIndex.setStatus('mandatory') mscExampleIpAddressProvStructIpAddressArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1, 3), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayValue.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066), ) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorTable.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvFreeIpAddressVectorIndex")) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorEntry.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorIndex.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066, 1, 2), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorValue.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressVector1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067), ) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Table.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressVector1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvFreeIpAddressVector1Index")) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Entry.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressVector1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Index.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressVector1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067, 1, 2), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Value.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068), ) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayTable.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvFreeIpAddressArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvFreeIpAddressArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayEntry.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayRowIndex.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayColumnIndex.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1, 3), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayValue.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressArray1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069), ) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1Table.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressArray1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvFreeIpAddressArray1RowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex")) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1Entry.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressArray1RowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1RowIndex.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressArray1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1, 3), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1Value.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070), ) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedTable.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvFreeIpAddressReplicatedIndex")) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedEntry.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1, 1), IpAddress()) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedIndex.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1, 2), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedValue.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071), ) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListTable.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvFreeIpAddressListValue")) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListEntry.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071, 1, 1), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListValue.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListRowStatus.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressList1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072), ) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1Table.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressList1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddressProvFreeIpAddressList1Value")) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1Entry.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressList1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072, 1, 1), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1Value.setStatus('mandatory') mscExampleIpAddressProvFreeIpAddressList1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1RowStatus.setStatus('mandatory') mscExampleString = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5)) mscExampleStringRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1), ) if mibBuilder.loadTexts: mscExampleStringRowStatusTable.setStatus('mandatory') mscExampleStringRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex")) if mibBuilder.loadTexts: mscExampleStringRowStatusEntry.setStatus('mandatory') mscExampleStringRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringRowStatus.setStatus('mandatory') mscExampleStringComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleStringComponentName.setStatus('mandatory') mscExampleStringStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleStringStorageType.setStatus('mandatory') mscExampleStringIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 10), AsciiStringIndex().subtype(subtypeSpec=ValueSizeConstraint(1, 10))) if mibBuilder.loadTexts: mscExampleStringIndex.setStatus('mandatory') mscExampleStringOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10), ) if mibBuilder.loadTexts: mscExampleStringOperationalTable.setStatus('mandatory') mscExampleStringOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex")) if mibBuilder.loadTexts: mscExampleStringOperationalEntry.setStatus('mandatory') mscExampleStringOperStructAsciiOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 1), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringOperStructAsciiOnly.setStatus('mandatory') mscExampleStringOperStructHexOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 2), HexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringOperStructHexOnly.setStatus('mandatory') mscExampleStringOperFreeAsciiOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 3), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringOperFreeAsciiOnly.setStatus('mandatory') mscExampleStringOperFreeHexOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 4), HexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringOperFreeHexOnly.setStatus('mandatory') mscExampleStringProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11), ) if mibBuilder.loadTexts: mscExampleStringProvisionalTable.setStatus('mandatory') mscExampleStringProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex")) if mibBuilder.loadTexts: mscExampleStringProvisionalEntry.setStatus('mandatory') mscExampleStringProvStringSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 1), Link()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringProvStringSub.setStatus('mandatory') mscExampleStringProvStructAsciiOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 2), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(2, 4)).clone(hexValue="596f2e")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringProvStructAsciiOnly.setStatus('mandatory') mscExampleStringProvStructHexOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 3), HexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringProvStructHexOnly.setStatus('mandatory') mscExampleStringProvFreeAsciiOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 4), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 59)).clone(hexValue="46726565205374616e64696e6720537472696e6720212121")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringProvFreeAsciiOnly.setStatus('mandatory') mscExampleStringProvFreeAsciiOnly1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 5), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringProvFreeAsciiOnly1.setStatus('mandatory') mscExampleStringProvFreeHexOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 6), HexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)).clone(hexValue="0102030405060708090A")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringProvFreeHexOnly.setStatus('mandatory') mscExampleStringProvFreeHexOnly1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 7), HexString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringProvFreeHexOnly1.setStatus('mandatory') mscExampleStringOperStructStrVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073), ) if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorTable.setStatus('mandatory') mscExampleStringOperStructStrVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringOperStructStrVectorIndex")) if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorEntry.setStatus('mandatory') mscExampleStringOperStructStrVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorIndex.setStatus('mandatory') mscExampleStringOperStructStrVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073, 1, 2), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorValue.setStatus('mandatory') mscExampleStringOperStructStrArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074), ) if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayTable.setStatus('mandatory') mscExampleStringOperStructStrArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringOperStructStrArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringOperStructStrArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayEntry.setStatus('mandatory') mscExampleStringOperStructStrArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayRowIndex.setStatus('mandatory') mscExampleStringOperStructStrArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayColumnIndex.setStatus('mandatory') mscExampleStringOperStructStrArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1, 3), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayValue.setStatus('mandatory') mscExampleStringOperFreeStrVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075), ) if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorTable.setStatus('mandatory') mscExampleStringOperFreeStrVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringOperFreeStrVectorIndex")) if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorEntry.setStatus('mandatory') mscExampleStringOperFreeStrVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorIndex.setStatus('mandatory') mscExampleStringOperFreeStrVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075, 1, 2), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorValue.setStatus('mandatory') mscExampleStringOperFreeStrArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076), ) if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayTable.setStatus('mandatory') mscExampleStringOperFreeStrArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringOperFreeStrArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringOperFreeStrArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayEntry.setStatus('mandatory') mscExampleStringOperFreeStrArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayRowIndex.setStatus('mandatory') mscExampleStringOperFreeStrArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayColumnIndex.setStatus('mandatory') mscExampleStringOperFreeStrArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1, 3), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayValue.setStatus('mandatory') mscExampleStringOperFreeStrReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077), ) if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedTable.setStatus('mandatory') mscExampleStringOperFreeStrReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringOperFreeStrReplicatedIndex")) if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedEntry.setStatus('mandatory') mscExampleStringOperFreeStrReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1, 1), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))) if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedIndex.setStatus('mandatory') mscExampleStringOperFreeStrReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1, 2), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedValue.setStatus('mandatory') mscExampleStringOperFreeStrReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedRowStatus.setStatus('mandatory') mscExampleStringOperFreeStrListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078), ) if mibBuilder.loadTexts: mscExampleStringOperFreeStrListTable.setStatus('mandatory') mscExampleStringOperFreeStrListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringOperFreeStrListValue")) if mibBuilder.loadTexts: mscExampleStringOperFreeStrListEntry.setStatus('mandatory') mscExampleStringOperFreeStrListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078, 1, 1), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringOperFreeStrListValue.setStatus('mandatory') mscExampleStringOperFreeStrListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleStringOperFreeStrListRowStatus.setStatus('mandatory') mscExampleStringProvStructStrVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079), ) if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorTable.setStatus('mandatory') mscExampleStringProvStructStrVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvStructStrVectorIndex")) if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorEntry.setStatus('mandatory') mscExampleStringProvStructStrVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorIndex.setStatus('mandatory') mscExampleStringProvStructStrVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079, 1, 2), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorValue.setStatus('mandatory') mscExampleStringProvStructStrArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080), ) if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayTable.setStatus('mandatory') mscExampleStringProvStructStrArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvStructStrArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvStructStrArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayEntry.setStatus('mandatory') mscExampleStringProvStructStrArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayRowIndex.setStatus('mandatory') mscExampleStringProvStructStrArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayColumnIndex.setStatus('mandatory') mscExampleStringProvStructStrArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1, 3), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayValue.setStatus('mandatory') mscExampleStringProvFreeStrVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081), ) if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorTable.setStatus('mandatory') mscExampleStringProvFreeStrVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvFreeStrVectorIndex")) if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorEntry.setStatus('mandatory') mscExampleStringProvFreeStrVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorIndex.setStatus('mandatory') mscExampleStringProvFreeStrVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081, 1, 2), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorValue.setStatus('mandatory') mscExampleStringProvFreeStrVector1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082), ) if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Table.setStatus('mandatory') mscExampleStringProvFreeStrVector1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvFreeStrVector1Index")) if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Entry.setStatus('mandatory') mscExampleStringProvFreeStrVector1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 5))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Index.setStatus('mandatory') mscExampleStringProvFreeStrVector1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082, 1, 2), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Value.setStatus('mandatory') mscExampleStringProvFreeStrArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083), ) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayTable.setStatus('mandatory') mscExampleStringProvFreeStrArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvFreeStrArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvFreeStrArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayEntry.setStatus('mandatory') mscExampleStringProvFreeStrArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayRowIndex.setStatus('mandatory') mscExampleStringProvFreeStrArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayColumnIndex.setStatus('mandatory') mscExampleStringProvFreeStrArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1, 3), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayValue.setStatus('mandatory') mscExampleStringProvFreeStrArray1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084), ) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1Table.setStatus('mandatory') mscExampleStringProvFreeStrArray1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvFreeStrArray1RowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvFreeStrArray1ColumnIndex")) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1Entry.setStatus('mandatory') mscExampleStringProvFreeStrArray1RowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1RowIndex.setStatus('mandatory') mscExampleStringProvFreeStrArray1ColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1ColumnIndex.setStatus('mandatory') mscExampleStringProvFreeStrArray1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1, 3), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1Value.setStatus('mandatory') mscExampleStringProvFreeStrReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085), ) if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedTable.setStatus('mandatory') mscExampleStringProvFreeStrReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvFreeStrReplicatedIndex")) if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedEntry.setStatus('mandatory') mscExampleStringProvFreeStrReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1, 1), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedIndex.setStatus('mandatory') mscExampleStringProvFreeStrReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1, 2), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedValue.setStatus('mandatory') mscExampleStringProvFreeStrReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedRowStatus.setStatus('mandatory') mscExampleStringProvFreeStrListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086), ) if mibBuilder.loadTexts: mscExampleStringProvFreeStrListTable.setStatus('mandatory') mscExampleStringProvFreeStrListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvFreeStrListValue")) if mibBuilder.loadTexts: mscExampleStringProvFreeStrListEntry.setStatus('mandatory') mscExampleStringProvFreeStrListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086, 1, 1), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringProvFreeStrListValue.setStatus('mandatory') mscExampleStringProvFreeStrListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleStringProvFreeStrListRowStatus.setStatus('mandatory') mscExampleStringProvFreeStrList1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087), ) if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1Table.setStatus('mandatory') mscExampleStringProvFreeStrList1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleStringProvFreeStrList1Value")) if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1Entry.setStatus('mandatory') mscExampleStringProvFreeStrList1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087, 1, 1), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1Value.setStatus('mandatory') mscExampleStringProvFreeStrList1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1RowStatus.setStatus('mandatory') mscExampleFixedPt = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6)) mscExampleFixedPtRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1), ) if mibBuilder.loadTexts: mscExampleFixedPtRowStatusTable.setStatus('mandatory') mscExampleFixedPtRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex")) if mibBuilder.loadTexts: mscExampleFixedPtRowStatusEntry.setStatus('mandatory') mscExampleFixedPtRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtRowStatus.setStatus('mandatory') mscExampleFixedPtComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleFixedPtComponentName.setStatus('mandatory') mscExampleFixedPtStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleFixedPtStorageType.setStatus('mandatory') mscExampleFixedPtIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: mscExampleFixedPtIndex.setStatus('mandatory') mscExampleFixedPtOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10), ) if mibBuilder.loadTexts: mscExampleFixedPtOperationalTable.setStatus('mandatory') mscExampleFixedPtOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex")) if mibBuilder.loadTexts: mscExampleFixedPtOperationalEntry.setStatus('mandatory') mscExampleFixedPtOperStructFixedPt = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1, 1), FixedPoint4().subtype(subtypeSpec=ValueRangeConstraint(100, 2553300))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPt.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPt = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1, 2), FixedPoint2().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 1099), ValueRangeConstraint(10001, 20000), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPt.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPtSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtSet.setStatus('mandatory') mscExampleFixedPtProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11), ) if mibBuilder.loadTexts: mscExampleFixedPtProvisionalTable.setStatus('mandatory') mscExampleFixedPtProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex")) if mibBuilder.loadTexts: mscExampleFixedPtProvisionalEntry.setStatus('mandatory') mscExampleFixedPtProvFixedPtSubcomponent = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 1), Link()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtProvFixedPtSubcomponent.setStatus('mandatory') mscExampleFixedPtProvStructFixedPt = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 2), FixedPoint3().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 252000), ValueRangeConstraint(253000, 253000), ValueRangeConstraint(254000, 254000), ValueRangeConstraint(255000, 255000), )).clone(253000)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPt.setStatus('mandatory') mscExampleFixedPtProvStructFixedPtSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1).clone(hexValue="c8")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtSet.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPt = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 4), FixedPoint2().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 1099), ValueRangeConstraint(10001, 20099), )).clone(10101)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPt.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPtSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4).clone(hexValue="05500002")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtSet.setStatus('mandatory') mscExampleFixedPtOperStructFixedPtVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028), ) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorTable.setStatus('mandatory') mscExampleFixedPtOperStructFixedPtVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtOperStructFixedPtVectorIndex")) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorEntry.setStatus('mandatory') mscExampleFixedPtOperStructFixedPtVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorIndex.setStatus('mandatory') mscExampleFixedPtOperStructFixedPtVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028, 1, 2), FixedPoint3().subtype(subtypeSpec=ValueRangeConstraint(0, 100100))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorValue.setStatus('mandatory') mscExampleFixedPtOperStructFixedPtArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029), ) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayTable.setStatus('mandatory') mscExampleFixedPtOperStructFixedPtArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtOperStructFixedPtArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtOperStructFixedPtArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayEntry.setStatus('mandatory') mscExampleFixedPtOperStructFixedPtArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayRowIndex.setStatus('mandatory') mscExampleFixedPtOperStructFixedPtArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayColumnIndex.setStatus('mandatory') mscExampleFixedPtOperStructFixedPtArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1, 3), FixedPoint3().subtype(subtypeSpec=ValueRangeConstraint(80, 255880))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayValue.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPtVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030), ) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorTable.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPtVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtOperFreeFixedPtVectorIndex")) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorEntry.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPtVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorIndex.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPtVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030, 1, 2), FixedPoint2().subtype(subtypeSpec=ValueRangeConstraint(0, 10000))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorValue.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPtArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031), ) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayTable.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPtArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtOperFreeFixedPtArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtOperFreeFixedPtArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayEntry.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPtArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayRowIndex.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPtArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayColumnIndex.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPtArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1, 3), FixedPoint3().subtype(subtypeSpec=ValueRangeConstraint(255, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayValue.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPtReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032), ) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedTable.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPtReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtOperFreeFixedPtReplicatedIndex")) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedEntry.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPtReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedIndex.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPtReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1, 2), FixedPoint1().subtype(subtypeSpec=ValueRangeConstraint(0, 655350))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedValue.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPtListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033), ) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListTable.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPtListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtOperFreeFixedPtListValue")) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListEntry.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPtListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 100), ValueRangeConstraint(10000, 20000), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListValue.setStatus('mandatory') mscExampleFixedPtOperFreeFixedPtListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListRowStatus.setStatus('mandatory') mscExampleFixedPtProvStructFixedPtVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034), ) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorTable.setStatus('mandatory') mscExampleFixedPtProvStructFixedPtVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtProvStructFixedPtVectorIndex")) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorEntry.setStatus('mandatory') mscExampleFixedPtProvStructFixedPtVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorIndex.setStatus('mandatory') mscExampleFixedPtProvStructFixedPtVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034, 1, 2), FixedPoint3().subtype(subtypeSpec=ValueRangeConstraint(0, 100100))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorValue.setStatus('mandatory') mscExampleFixedPtProvStructFixedPtArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035), ) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayTable.setStatus('mandatory') mscExampleFixedPtProvStructFixedPtArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtProvStructFixedPtArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtProvStructFixedPtArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayEntry.setStatus('mandatory') mscExampleFixedPtProvStructFixedPtArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayRowIndex.setStatus('mandatory') mscExampleFixedPtProvStructFixedPtArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayColumnIndex.setStatus('mandatory') mscExampleFixedPtProvStructFixedPtArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1, 3), FixedPoint1().subtype(subtypeSpec=ValueRangeConstraint(255, 300))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayValue.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPtVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036), ) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorTable.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPtVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtProvFreeFixedPtVectorIndex")) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorEntry.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPtVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorIndex.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPtVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036, 1, 2), FixedPoint1().subtype(subtypeSpec=ValueRangeConstraint(0, 1000))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorValue.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPtArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037), ) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayTable.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPtArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtProvFreeFixedPtArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtProvFreeFixedPtArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayEntry.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPtArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayRowIndex.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPtArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayColumnIndex.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPtArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1, 3), FixedPoint2().subtype(subtypeSpec=ValueRangeConstraint(0, 25555))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayValue.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPtReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038), ) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedTable.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPtReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtProvFreeFixedPtReplicatedIndex")) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedEntry.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPtReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedIndex.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPtReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1, 2), FixedPoint2().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedValue.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPtListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039), ) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListTable.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPtListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFixedPtProvFreeFixedPtListValue")) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListEntry.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPtListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(100, 100000))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListValue.setStatus('mandatory') mscExampleFixedPtProvFreeFixedPtListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListRowStatus.setStatus('mandatory') mscExampleDashed = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7)) mscExampleDashedRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1), ) if mibBuilder.loadTexts: mscExampleDashedRowStatusTable.setStatus('mandatory') mscExampleDashedRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex")) if mibBuilder.loadTexts: mscExampleDashedRowStatusEntry.setStatus('mandatory') mscExampleDashedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDashedRowStatus.setStatus('mandatory') mscExampleDashedComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleDashedComponentName.setStatus('mandatory') mscExampleDashedStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleDashedStorageType.setStatus('mandatory') mscExampleDashedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 10), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))) if mibBuilder.loadTexts: mscExampleDashedIndex.setStatus('mandatory') mscExampleDashedOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10), ) if mibBuilder.loadTexts: mscExampleDashedOperationalTable.setStatus('mandatory') mscExampleDashedOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex")) if mibBuilder.loadTexts: mscExampleDashedOperationalEntry.setStatus('mandatory') mscExampleDashedOperStructDashed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10, 1, 1), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDashedOperStructDashed.setStatus('mandatory') mscExampleDashedOperFreeDashed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)).clone(hexValue="123456")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDashedOperFreeDashed.setStatus('mandatory') mscExampleDashedProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11), ) if mibBuilder.loadTexts: mscExampleDashedProvisionalTable.setStatus('mandatory') mscExampleDashedProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex")) if mibBuilder.loadTexts: mscExampleDashedProvisionalEntry.setStatus('mandatory') mscExampleDashedProvStructDashed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11, 1, 1), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDashedProvStructDashed.setStatus('mandatory') mscExampleDashedProvFreeDashed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)).clone(hexValue="123456")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDashedProvFreeDashed.setStatus('mandatory') mscExampleDashedOsDashedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088), ) if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayTable.setStatus('mandatory') mscExampleDashedOsDashedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedOsDashedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedOsDashedArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayEntry.setStatus('mandatory') mscExampleDashedOsDashedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayRowIndex.setStatus('mandatory') mscExampleDashedOsDashedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayColumnIndex.setStatus('mandatory') mscExampleDashedOsDashedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1, 3), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayValue.setStatus('mandatory') mscExampleDashedOsDashedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089), ) if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorTable.setStatus('mandatory') mscExampleDashedOsDashedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedOsDashedVectorIndex")) if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorEntry.setStatus('mandatory') mscExampleDashedOsDashedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorIndex.setStatus('mandatory') mscExampleDashedOsDashedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorValue.setStatus('mandatory') mscExampleDashedOfDashedListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090), ) if mibBuilder.loadTexts: mscExampleDashedOfDashedListTable.setStatus('mandatory') mscExampleDashedOfDashedListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedOfDashedListValue")) if mibBuilder.loadTexts: mscExampleDashedOfDashedListEntry.setStatus('mandatory') mscExampleDashedOfDashedListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090, 1, 1), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDashedOfDashedListValue.setStatus('mandatory') mscExampleDashedOfDashedListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleDashedOfDashedListRowStatus.setStatus('mandatory') mscExampleDashedOfDashedReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091), ) if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedTable.setStatus('mandatory') mscExampleDashedOfDashedReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedOfDashedReplicatedIndex")) if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedEntry.setStatus('mandatory') mscExampleDashedOfDashedReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1, 1), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))) if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedIndex.setStatus('mandatory') mscExampleDashedOfDashedReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedValue.setStatus('mandatory') mscExampleDashedOfDashedReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedRowStatus.setStatus('mandatory') mscExampleDashedOfDashedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092), ) if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayTable.setStatus('mandatory') mscExampleDashedOfDashedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedOfDashedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedOfDashedArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayEntry.setStatus('mandatory') mscExampleDashedOfDashedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayRowIndex.setStatus('mandatory') mscExampleDashedOfDashedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayColumnIndex.setStatus('mandatory') mscExampleDashedOfDashedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1, 3), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayValue.setStatus('mandatory') mscExampleDashedOfDashedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093), ) if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorTable.setStatus('mandatory') mscExampleDashedOfDashedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedOfDashedVectorIndex")) if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorEntry.setStatus('mandatory') mscExampleDashedOfDashedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorIndex.setStatus('mandatory') mscExampleDashedOfDashedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorValue.setStatus('mandatory') mscExampleDashedProvStructDashedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094), ) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayTable.setStatus('mandatory') mscExampleDashedProvStructDashedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedProvStructDashedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedProvStructDashedArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayEntry.setStatus('mandatory') mscExampleDashedProvStructDashedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayRowIndex.setStatus('mandatory') mscExampleDashedProvStructDashedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayColumnIndex.setStatus('mandatory') mscExampleDashedProvStructDashedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1, 3), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayValue.setStatus('mandatory') mscExampleDashedProvStructDashedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095), ) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorTable.setStatus('mandatory') mscExampleDashedProvStructDashedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedProvStructDashedVectorIndex")) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorEntry.setStatus('mandatory') mscExampleDashedProvStructDashedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorIndex.setStatus('mandatory') mscExampleDashedProvStructDashedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorValue.setStatus('mandatory') mscExampleDashedProvFreeDashedListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096), ) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListTable.setStatus('mandatory') mscExampleDashedProvFreeDashedListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedProvFreeDashedListValue")) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListEntry.setStatus('mandatory') mscExampleDashedProvFreeDashedListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096, 1, 1), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListValue.setStatus('mandatory') mscExampleDashedProvFreeDashedListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListRowStatus.setStatus('mandatory') mscExampleDashedProvFreeDashedReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097), ) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedTable.setStatus('mandatory') mscExampleDashedProvFreeDashedReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedProvFreeDashedReplicatedIndex")) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedEntry.setStatus('mandatory') mscExampleDashedProvFreeDashedReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1, 1), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedIndex.setStatus('mandatory') mscExampleDashedProvFreeDashedReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedValue.setStatus('mandatory') mscExampleDashedProvFreeDashedReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedRowStatus.setStatus('mandatory') mscExampleDashedProvFreeDashedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098), ) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayTable.setStatus('mandatory') mscExampleDashedProvFreeDashedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedProvFreeDashedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedProvFreeDashedArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayEntry.setStatus('mandatory') mscExampleDashedProvFreeDashedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayRowIndex.setStatus('mandatory') mscExampleDashedProvFreeDashedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayColumnIndex.setStatus('mandatory') mscExampleDashedProvFreeDashedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1, 3), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayValue.setStatus('mandatory') mscExampleDashedProvFreeDashedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099), ) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorTable.setStatus('mandatory') mscExampleDashedProvFreeDashedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedProvFreeDashedVectorIndex")) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorEntry.setStatus('mandatory') mscExampleDashedProvFreeDashedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorIndex.setStatus('mandatory') mscExampleDashedProvFreeDashedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorValue.setStatus('mandatory') mscExampleExtended = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8)) mscExampleExtendedRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1), ) if mibBuilder.loadTexts: mscExampleExtendedRowStatusTable.setStatus('mandatory') mscExampleExtendedRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex")) if mibBuilder.loadTexts: mscExampleExtendedRowStatusEntry.setStatus('mandatory') mscExampleExtendedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleExtendedRowStatus.setStatus('mandatory') mscExampleExtendedComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleExtendedComponentName.setStatus('mandatory') mscExampleExtendedStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleExtendedStorageType.setStatus('mandatory') mscExampleExtendedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: mscExampleExtendedIndex.setStatus('mandatory') mscExampleExtendedOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10), ) if mibBuilder.loadTexts: mscExampleExtendedOperationalTable.setStatus('mandatory') mscExampleExtendedOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex")) if mibBuilder.loadTexts: mscExampleExtendedOperationalEntry.setStatus('mandatory') mscExampleExtendedOperStructExtended = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10, 1, 1), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleExtendedOperStructExtended.setStatus('mandatory') mscExampleExtendedOperFreeExtended = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10, 1, 2), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)).clone(hexValue="68656c6c6f5c6162")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtended.setStatus('mandatory') mscExampleExtendedProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11), ) if mibBuilder.loadTexts: mscExampleExtendedProvisionalTable.setStatus('mandatory') mscExampleExtendedProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex")) if mibBuilder.loadTexts: mscExampleExtendedProvisionalEntry.setStatus('mandatory') mscExampleExtendedProvEnumSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1, 1), Link()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleExtendedProvEnumSub.setStatus('mandatory') mscExampleExtendedProvStructExtended = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1, 2), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleExtendedProvStructExtended.setStatus('mandatory') mscExampleExtendedProvFreeExtended = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1, 3), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 10)).clone(hexValue="48656c6c6f5c61626364")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtended.setStatus('mandatory') mscExampleExtendedOperStructExtendedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100), ) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayTable.setStatus('mandatory') mscExampleExtendedOperStructExtendedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedOperStructExtendedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedOperStructExtendedArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayEntry.setStatus('mandatory') mscExampleExtendedOperStructExtendedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayRowIndex.setStatus('mandatory') mscExampleExtendedOperStructExtendedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayColumnIndex.setStatus('mandatory') mscExampleExtendedOperStructExtendedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1, 3), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayValue.setStatus('mandatory') mscExampleExtendedOperStructExtendedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101), ) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorTable.setStatus('mandatory') mscExampleExtendedOperStructExtendedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedOperStructExtendedVectorIndex")) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorEntry.setStatus('mandatory') mscExampleExtendedOperStructExtendedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorIndex.setStatus('mandatory') mscExampleExtendedOperStructExtendedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101, 1, 2), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorValue.setStatus('mandatory') mscExampleExtendedOperFreeExtendedListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102), ) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListTable.setStatus('mandatory') mscExampleExtendedOperFreeExtendedListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedOperFreeExtendedListValue")) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListEntry.setStatus('mandatory') mscExampleExtendedOperFreeExtendedListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102, 1, 1), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListValue.setStatus('mandatory') mscExampleExtendedOperFreeExtendedListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListRowStatus.setStatus('mandatory') mscExampleExtendedOperFreeExtendedReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103), ) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedTable.setStatus('mandatory') mscExampleExtendedOperFreeExtendedReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedOperFreeExtendedReplicatedIndex")) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedEntry.setStatus('mandatory') mscExampleExtendedOperFreeExtendedReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1, 1), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedIndex.setStatus('mandatory') mscExampleExtendedOperFreeExtendedReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1, 2), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedValue.setStatus('mandatory') mscExampleExtendedOperFreeExtendedReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedRowStatus.setStatus('mandatory') mscExampleExtendedOperFreeExtendedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104), ) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayTable.setStatus('mandatory') mscExampleExtendedOperFreeExtendedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedOperFreeExtendedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedOperFreeExtendedArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayEntry.setStatus('mandatory') mscExampleExtendedOperFreeExtendedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayRowIndex.setStatus('mandatory') mscExampleExtendedOperFreeExtendedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayColumnIndex.setStatus('mandatory') mscExampleExtendedOperFreeExtendedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1, 3), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayValue.setStatus('mandatory') mscExampleExtendedOperFreeExtendedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105), ) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorTable.setStatus('mandatory') mscExampleExtendedOperFreeExtendedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedOperFreeExtendedVectorIndex")) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorEntry.setStatus('mandatory') mscExampleExtendedOperFreeExtendedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorIndex.setStatus('mandatory') mscExampleExtendedOperFreeExtendedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105, 1, 2), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorValue.setStatus('mandatory') mscExampleExtendedProvStructExtendedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106), ) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayTable.setStatus('mandatory') mscExampleExtendedProvStructExtendedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedProvStructExtendedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedProvStructExtendedArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayEntry.setStatus('mandatory') mscExampleExtendedProvStructExtendedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayRowIndex.setStatus('mandatory') mscExampleExtendedProvStructExtendedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayColumnIndex.setStatus('mandatory') mscExampleExtendedProvStructExtendedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1, 3), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayValue.setStatus('mandatory') mscExampleExtendedProvStructExtendedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107), ) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorTable.setStatus('mandatory') mscExampleExtendedProvStructExtendedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedProvStructExtendedVectorIndex")) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorEntry.setStatus('mandatory') mscExampleExtendedProvStructExtendedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorIndex.setStatus('mandatory') mscExampleExtendedProvStructExtendedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107, 1, 2), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorValue.setStatus('mandatory') mscExampleExtendedProvFreeExtendedListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108), ) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListTable.setStatus('mandatory') mscExampleExtendedProvFreeExtendedListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedProvFreeExtendedListValue")) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListEntry.setStatus('mandatory') mscExampleExtendedProvFreeExtendedListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108, 1, 1), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListValue.setStatus('mandatory') mscExampleExtendedProvFreeExtendedListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListRowStatus.setStatus('mandatory') mscExampleExtendedProvFreeExtendedReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109), ) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedTable.setStatus('mandatory') mscExampleExtendedProvFreeExtendedReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedProvFreeExtendedReplicatedIndex")) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedEntry.setStatus('mandatory') mscExampleExtendedProvFreeExtendedReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1, 1), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 5))) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedIndex.setStatus('mandatory') mscExampleExtendedProvFreeExtendedReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1, 2), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedValue.setStatus('mandatory') mscExampleExtendedProvFreeExtendedReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedRowStatus.setStatus('mandatory') mscExampleExtendedProvFreeExtendedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110), ) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayTable.setStatus('mandatory') mscExampleExtendedProvFreeExtendedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedProvFreeExtendedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedProvFreeExtendedArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayEntry.setStatus('mandatory') mscExampleExtendedProvFreeExtendedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayRowIndex.setStatus('mandatory') mscExampleExtendedProvFreeExtendedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayColumnIndex.setStatus('mandatory') mscExampleExtendedProvFreeExtendedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1, 3), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayValue.setStatus('mandatory') mscExampleExtendedProvFreeExtendedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111), ) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorTable.setStatus('mandatory') mscExampleExtendedProvFreeExtendedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleExtendedProvFreeExtendedVectorIndex")) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorEntry.setStatus('mandatory') mscExampleExtendedProvFreeExtendedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorIndex.setStatus('mandatory') mscExampleExtendedProvFreeExtendedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111, 1, 2), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorValue.setStatus('mandatory') mscExampleBcd = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9)) mscExampleBcdRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1), ) if mibBuilder.loadTexts: mscExampleBcdRowStatusTable.setStatus('mandatory') mscExampleBcdRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex")) if mibBuilder.loadTexts: mscExampleBcdRowStatusEntry.setStatus('mandatory') mscExampleBcdRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdRowStatus.setStatus('mandatory') mscExampleBcdComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleBcdComponentName.setStatus('mandatory') mscExampleBcdStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleBcdStorageType.setStatus('mandatory') mscExampleBcdIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 10), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))) if mibBuilder.loadTexts: mscExampleBcdIndex.setStatus('mandatory') mscExampleBcdOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10), ) if mibBuilder.loadTexts: mscExampleBcdOperationalTable.setStatus('mandatory') mscExampleBcdOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex")) if mibBuilder.loadTexts: mscExampleBcdOperationalEntry.setStatus('mandatory') mscExampleBcdOperStructBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10, 1, 1), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdOperStructBcd.setStatus('mandatory') mscExampleBcdOperFreeBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdOperFreeBcd.setStatus('mandatory') mscExampleBcdProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11), ) if mibBuilder.loadTexts: mscExampleBcdProvisionalTable.setStatus('mandatory') mscExampleBcdProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex")) if mibBuilder.loadTexts: mscExampleBcdProvisionalEntry.setStatus('mandatory') mscExampleBcdProvEnumSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 1), Link()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdProvEnumSub.setStatus('mandatory') mscExampleBcdProvStructBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16)).clone(hexValue="30313233343536373839")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdProvStructBcd.setStatus('mandatory') mscExampleBcdProvFreeBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 3), DigitString().subtype(subtypeSpec=ValueSizeConstraint(4, 16)).clone(hexValue="31323334353637383930")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdProvFreeBcd.setStatus('mandatory') mscExampleBcdProvFreeBcd1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 4), DigitString().subtype(subtypeSpec=ValueSizeConstraint(4, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdProvFreeBcd1.setStatus('mandatory') mscExampleBcdOperStructBcdVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120), ) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorTable.setStatus('mandatory') mscExampleBcdOperStructBcdVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdOperStructBcdVectorIndex")) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorEntry.setStatus('mandatory') mscExampleBcdOperStructBcdVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorIndex.setStatus('mandatory') mscExampleBcdOperStructBcdVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorValue.setStatus('mandatory') mscExampleBcdOperStructBcdArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121), ) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayTable.setStatus('mandatory') mscExampleBcdOperStructBcdArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdOperStructBcdArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdOperStructBcdArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayEntry.setStatus('mandatory') mscExampleBcdOperStructBcdArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayRowIndex.setStatus('mandatory') mscExampleBcdOperStructBcdArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayColumnIndex.setStatus('mandatory') mscExampleBcdOperStructBcdArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1, 3), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayValue.setStatus('mandatory') mscExampleBcdOperFreeBcdVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122), ) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorTable.setStatus('mandatory') mscExampleBcdOperFreeBcdVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdOperFreeBcdVectorIndex")) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorEntry.setStatus('mandatory') mscExampleBcdOperFreeBcdVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorIndex.setStatus('mandatory') mscExampleBcdOperFreeBcdVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorValue.setStatus('mandatory') mscExampleBcdOperFreeBcdArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123), ) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayTable.setStatus('mandatory') mscExampleBcdOperFreeBcdArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdOperFreeBcdArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdOperFreeBcdArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayEntry.setStatus('mandatory') mscExampleBcdOperFreeBcdArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayRowIndex.setStatus('mandatory') mscExampleBcdOperFreeBcdArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayColumnIndex.setStatus('mandatory') mscExampleBcdOperFreeBcdArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1, 3), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayValue.setStatus('mandatory') mscExampleBcdOperFreeBcdReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124), ) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedTable.setStatus('mandatory') mscExampleBcdOperFreeBcdReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdOperFreeBcdReplicatedIndex")) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedEntry.setStatus('mandatory') mscExampleBcdOperFreeBcdReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1, 1), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedIndex.setStatus('mandatory') mscExampleBcdOperFreeBcdReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedValue.setStatus('mandatory') mscExampleBcdOperFreeBcdReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedRowStatus.setStatus('mandatory') mscExampleBcdOperFreeBcdListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125), ) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListTable.setStatus('mandatory') mscExampleBcdOperFreeBcdListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdOperFreeBcdListValue")) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListEntry.setStatus('mandatory') mscExampleBcdOperFreeBcdListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125, 1, 1), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListValue.setStatus('mandatory') mscExampleBcdOperFreeBcdListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListRowStatus.setStatus('mandatory') mscExampleBcdProvStructBcdVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126), ) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorTable.setStatus('mandatory') mscExampleBcdProvStructBcdVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvStructBcdVectorIndex")) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorEntry.setStatus('mandatory') mscExampleBcdProvStructBcdVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorIndex.setStatus('mandatory') mscExampleBcdProvStructBcdVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorValue.setStatus('mandatory') mscExampleBcdProvStructBcdArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127), ) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayTable.setStatus('mandatory') mscExampleBcdProvStructBcdArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvStructBcdArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvStructBcdArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayEntry.setStatus('mandatory') mscExampleBcdProvStructBcdArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayRowIndex.setStatus('mandatory') mscExampleBcdProvStructBcdArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayColumnIndex.setStatus('mandatory') mscExampleBcdProvStructBcdArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1, 3), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayValue.setStatus('mandatory') mscExampleBcdProvFreeBcdVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128), ) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorTable.setStatus('mandatory') mscExampleBcdProvFreeBcdVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdVectorIndex")) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorEntry.setStatus('mandatory') mscExampleBcdProvFreeBcdVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorIndex.setStatus('mandatory') mscExampleBcdProvFreeBcdVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorValue.setStatus('mandatory') mscExampleBcdProvFreeBcdVector1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129), ) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Table.setStatus('mandatory') mscExampleBcdProvFreeBcdVector1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdVector1Index")) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Entry.setStatus('mandatory') mscExampleBcdProvFreeBcdVector1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Index.setStatus('mandatory') mscExampleBcdProvFreeBcdVector1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Value.setStatus('mandatory') mscExampleBcdProvFreeBcdArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130), ) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayTable.setStatus('mandatory') mscExampleBcdProvFreeBcdArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayEntry.setStatus('mandatory') mscExampleBcdProvFreeBcdArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayRowIndex.setStatus('mandatory') mscExampleBcdProvFreeBcdArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayColumnIndex.setStatus('mandatory') mscExampleBcdProvFreeBcdArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1, 3), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayValue.setStatus('mandatory') mscExampleBcdProvFreeBcdArray1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131), ) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1Table.setStatus('mandatory') mscExampleBcdProvFreeBcdArray1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdArray1RowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdArray1ColumnIndex")) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1Entry.setStatus('mandatory') mscExampleBcdProvFreeBcdArray1RowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1RowIndex.setStatus('mandatory') mscExampleBcdProvFreeBcdArray1ColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1ColumnIndex.setStatus('mandatory') mscExampleBcdProvFreeBcdArray1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1, 3), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1Value.setStatus('mandatory') mscExampleBcdProvFreeBcdReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132), ) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedTable.setStatus('mandatory') mscExampleBcdProvFreeBcdReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdReplicatedIndex")) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedEntry.setStatus('mandatory') mscExampleBcdProvFreeBcdReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1, 1), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedIndex.setStatus('mandatory') mscExampleBcdProvFreeBcdReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedValue.setStatus('mandatory') mscExampleBcdProvFreeBcdReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedRowStatus.setStatus('mandatory') mscExampleBcdProvFreeBcdReplicated1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133), ) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Table.setStatus('mandatory') mscExampleBcdProvFreeBcdReplicated1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdReplicated1Index")) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Entry.setStatus('mandatory') mscExampleBcdProvFreeBcdReplicated1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1, 1), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 7))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Index.setStatus('mandatory') mscExampleBcdProvFreeBcdReplicated1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Value.setStatus('mandatory') mscExampleBcdProvFreeBcdReplicated1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1RowStatus.setStatus('mandatory') mscExampleBcdProvFreeBcdListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134), ) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListTable.setStatus('mandatory') mscExampleBcdProvFreeBcdListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdListValue")) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListEntry.setStatus('mandatory') mscExampleBcdProvFreeBcdListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134, 1, 1), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListValue.setStatus('mandatory') mscExampleBcdProvFreeBcdListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListRowStatus.setStatus('mandatory') mscExampleBcdProvFreeBcdList1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135), ) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1Table.setStatus('mandatory') mscExampleBcdProvFreeBcdList1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdProvFreeBcdList1Value")) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1Entry.setStatus('mandatory') mscExampleBcdProvFreeBcdList1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135, 1, 1), DigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1Value.setStatus('mandatory') mscExampleBcdProvFreeBcdList1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1RowStatus.setStatus('mandatory') mscExampleWildBcd = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10)) mscExampleWildBcdRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1), ) if mibBuilder.loadTexts: mscExampleWildBcdRowStatusTable.setStatus('mandatory') mscExampleWildBcdRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex")) if mibBuilder.loadTexts: mscExampleWildBcdRowStatusEntry.setStatus('mandatory') mscExampleWildBcdRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleWildBcdRowStatus.setStatus('mandatory') mscExampleWildBcdComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleWildBcdComponentName.setStatus('mandatory') mscExampleWildBcdStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleWildBcdStorageType.setStatus('mandatory') mscExampleWildBcdIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 10), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))) if mibBuilder.loadTexts: mscExampleWildBcdIndex.setStatus('mandatory') mscExampleWildBcdOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10), ) if mibBuilder.loadTexts: mscExampleWildBcdOperationalTable.setStatus('mandatory') mscExampleWildBcdOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex")) if mibBuilder.loadTexts: mscExampleWildBcdOperationalEntry.setStatus('mandatory') mscExampleWildBcdOperStructWildBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10, 1, 1), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcd.setStatus('mandatory') mscExampleWildBcdOperFreeWildBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10, 1, 2), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcd.setStatus('mandatory') mscExampleWildBcdProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11), ) if mibBuilder.loadTexts: mscExampleWildBcdProvisionalTable.setStatus('mandatory') mscExampleWildBcdProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex")) if mibBuilder.loadTexts: mscExampleWildBcdProvisionalEntry.setStatus('mandatory') mscExampleWildBcdProvStructWildBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11, 1, 1), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16)).clone(hexValue="30313233343536373839")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcd.setStatus('mandatory') mscExampleWildBcdProvFreeWildBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11, 1, 2), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(4, 16)).clone(hexValue="31323334353637383930")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcd.setStatus('mandatory') mscExampleWildBcdOperStructWildBcdVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136), ) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorTable.setStatus('mandatory') mscExampleWildBcdOperStructWildBcdVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdOperStructWildBcdVectorIndex")) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorEntry.setStatus('mandatory') mscExampleWildBcdOperStructWildBcdVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorIndex.setStatus('mandatory') mscExampleWildBcdOperStructWildBcdVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136, 1, 2), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorValue.setStatus('mandatory') mscExampleWildBcdOperStructWildBcdArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137), ) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayTable.setStatus('mandatory') mscExampleWildBcdOperStructWildBcdArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdOperStructWildBcdArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdOperStructWildBcdArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayEntry.setStatus('mandatory') mscExampleWildBcdOperStructWildBcdArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayRowIndex.setStatus('mandatory') mscExampleWildBcdOperStructWildBcdArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayColumnIndex.setStatus('mandatory') mscExampleWildBcdOperStructWildBcdArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1, 3), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayValue.setStatus('mandatory') mscExampleWildBcdOperFreeWildBcdVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138), ) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorTable.setStatus('mandatory') mscExampleWildBcdOperFreeWildBcdVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdOperFreeWildBcdVectorIndex")) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorEntry.setStatus('mandatory') mscExampleWildBcdOperFreeWildBcdVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorIndex.setStatus('mandatory') mscExampleWildBcdOperFreeWildBcdVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138, 1, 2), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorValue.setStatus('mandatory') mscExampleWildBcdOperFreeWildBcdArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139), ) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayTable.setStatus('mandatory') mscExampleWildBcdOperFreeWildBcdArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdOperFreeWildBcdArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdOperFreeWildBcdArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayEntry.setStatus('mandatory') mscExampleWildBcdOperFreeWildBcdArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayRowIndex.setStatus('mandatory') mscExampleWildBcdOperFreeWildBcdArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayColumnIndex.setStatus('mandatory') mscExampleWildBcdOperFreeWildBcdArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1, 3), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayValue.setStatus('mandatory') mscExampleWildBcdOperFreeWildBcdReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140), ) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedTable.setStatus('mandatory') mscExampleWildBcdOperFreeWildBcdReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdOperFreeWildBcdReplicatedIndex")) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedEntry.setStatus('mandatory') mscExampleWildBcdOperFreeWildBcdReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1, 1), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedIndex.setStatus('mandatory') mscExampleWildBcdOperFreeWildBcdReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1, 2), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedValue.setStatus('mandatory') mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus.setStatus('mandatory') mscExampleWildBcdOperFreeWildBcdListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141), ) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListTable.setStatus('mandatory') mscExampleWildBcdOperFreeWildBcdListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdOperFreeWildBcdListValue")) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListEntry.setStatus('mandatory') mscExampleWildBcdOperFreeWildBcdListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141, 1, 1), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListValue.setStatus('mandatory') mscExampleWildBcdOperFreeWildBcdListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListRowStatus.setStatus('mandatory') mscExampleWildBcdProvStructWildBcdVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142), ) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorTable.setStatus('mandatory') mscExampleWildBcdProvStructWildBcdVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdProvStructWildBcdVectorIndex")) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorEntry.setStatus('mandatory') mscExampleWildBcdProvStructWildBcdVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorIndex.setStatus('mandatory') mscExampleWildBcdProvStructWildBcdVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142, 1, 2), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorValue.setStatus('mandatory') mscExampleWildBcdProvStructWildBcdArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143), ) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayTable.setStatus('mandatory') mscExampleWildBcdProvStructWildBcdArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdProvStructWildBcdArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdProvStructWildBcdArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayEntry.setStatus('mandatory') mscExampleWildBcdProvStructWildBcdArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayRowIndex.setStatus('mandatory') mscExampleWildBcdProvStructWildBcdArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayColumnIndex.setStatus('mandatory') mscExampleWildBcdProvStructWildBcdArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1, 3), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayValue.setStatus('mandatory') mscExampleWildBcdProvFreeWildBcdVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144), ) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorTable.setStatus('mandatory') mscExampleWildBcdProvFreeWildBcdVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdProvFreeWildBcdVectorIndex")) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorEntry.setStatus('mandatory') mscExampleWildBcdProvFreeWildBcdVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorIndex.setStatus('mandatory') mscExampleWildBcdProvFreeWildBcdVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144, 1, 2), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorValue.setStatus('mandatory') mscExampleWildBcdProvFreeWildBcdArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145), ) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayTable.setStatus('mandatory') mscExampleWildBcdProvFreeWildBcdArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdProvFreeWildBcdArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdProvFreeWildBcdArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayEntry.setStatus('mandatory') mscExampleWildBcdProvFreeWildBcdArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayRowIndex.setStatus('mandatory') mscExampleWildBcdProvFreeWildBcdArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayColumnIndex.setStatus('mandatory') mscExampleWildBcdProvFreeWildBcdArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1, 3), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayValue.setStatus('mandatory') mscExampleWildBcdProvFreeWildBcdReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146), ) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedTable.setStatus('mandatory') mscExampleWildBcdProvFreeWildBcdReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdProvFreeWildBcdReplicatedIndex")) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedEntry.setStatus('mandatory') mscExampleWildBcdProvFreeWildBcdReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1, 1), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 5))) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedIndex.setStatus('mandatory') mscExampleWildBcdProvFreeWildBcdReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1, 2), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedValue.setStatus('mandatory') mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus.setStatus('mandatory') mscExampleWildBcdProvFreeWildBcdListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147), ) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListTable.setStatus('mandatory') mscExampleWildBcdProvFreeWildBcdListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleWildBcdProvFreeWildBcdListValue")) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListEntry.setStatus('mandatory') mscExampleWildBcdProvFreeWildBcdListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147, 1, 1), WildcardedDigitString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListValue.setStatus('mandatory') mscExampleWildBcdProvFreeWildBcdListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListRowStatus.setStatus('mandatory') mscExampleEnum = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11)) mscExampleEnumRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1), ) if mibBuilder.loadTexts: mscExampleEnumRowStatusTable.setStatus('mandatory') mscExampleEnumRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex")) if mibBuilder.loadTexts: mscExampleEnumRowStatusEntry.setStatus('mandatory') mscExampleEnumRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumRowStatus.setStatus('mandatory') mscExampleEnumComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleEnumComponentName.setStatus('mandatory') mscExampleEnumStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleEnumStorageType.setStatus('mandatory') mscExampleEnumIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("first", 1), ("second", 2), ("third", 3)))) if mibBuilder.loadTexts: mscExampleEnumIndex.setStatus('mandatory') mscExampleEnumOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10), ) if mibBuilder.loadTexts: mscExampleEnumOperationalTable.setStatus('mandatory') mscExampleEnumOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex")) if mibBuilder.loadTexts: mscExampleEnumOperationalEntry.setStatus('mandatory') mscExampleEnumOperStructEnum = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumOperStructEnum.setStatus('mandatory') mscExampleEnumOperStructEnumSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumOperStructEnumSet.setStatus('mandatory') mscExampleEnumOperFreeEnum = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumOperFreeEnum.setStatus('mandatory') mscExampleEnumOperFreeEnumSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumSet.setStatus('mandatory') mscExampleEnumProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11), ) if mibBuilder.loadTexts: mscExampleEnumProvisionalTable.setStatus('mandatory') mscExampleEnumProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex")) if mibBuilder.loadTexts: mscExampleEnumProvisionalEntry.setStatus('mandatory') mscExampleEnumProvEnumSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 1), Link()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumProvEnumSub.setStatus('mandatory') mscExampleEnumProvStructEnum = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4))).clone('friday')).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumProvStructEnum.setStatus('mandatory') mscExampleEnumProvStructEnumSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1).clone(hexValue="aa")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumProvStructEnumSet.setStatus('mandatory') mscExampleEnumProvFreeEnum = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5))).clone('may')).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumProvFreeEnum.setStatus('mandatory') mscExampleEnumProvFreeEnum1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 11, 12, 13, 14))).clone(namedValues=NamedValues(("apple", 1), ("orange", 2), ("banana", 3), ("pear", 11), ("grapes", 12), ("pineapple", 13), ("watermelon", 14)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumProvFreeEnum1.setStatus('mandatory') mscExampleEnumProvFreeEnumSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2).clone(hexValue="0070")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumSet.setStatus('mandatory') mscExampleEnumProvFreeEnumSet1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumSet1.setStatus('mandatory') mscExampleEnumOperStructEnumVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162), ) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorTable.setStatus('mandatory') mscExampleEnumOperStructEnumVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumOperStructEnumVectorIndex")) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorEntry.setStatus('mandatory') mscExampleEnumOperStructEnumVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6)))) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorIndex.setStatus('mandatory') mscExampleEnumOperStructEnumVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorValue.setStatus('mandatory') mscExampleEnumOperStructEnumArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163), ) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayTable.setStatus('mandatory') mscExampleEnumOperStructEnumArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumOperStructEnumArrayMonthIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumOperStructEnumArrayDayIndex")) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayEntry.setStatus('mandatory') mscExampleEnumOperStructEnumArrayMonthIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayMonthIndex.setStatus('mandatory') mscExampleEnumOperStructEnumArrayDayIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("mondayaaaa", 0), ("tuesdayaaaa", 1), ("wednesdayaaaa", 2), ("thursdayaaaa", 3), ("fridayaaaa", 4), ("saturdayaaaa", 5), ("sundayaaaa", 6)))) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayDayIndex.setStatus('mandatory') mscExampleEnumOperStructEnumArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayValue.setStatus('mandatory') mscExampleEnumOperFreeEnumVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164), ) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorTable.setStatus('mandatory') mscExampleEnumOperFreeEnumVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumOperFreeEnumVectorIndex")) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorEntry.setStatus('mandatory') mscExampleEnumOperFreeEnumVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6)))) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorIndex.setStatus('mandatory') mscExampleEnumOperFreeEnumVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorValue.setStatus('mandatory') mscExampleEnumOperFreeEnumArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165), ) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayTable.setStatus('mandatory') mscExampleEnumOperFreeEnumArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumOperFreeEnumArrayMonthIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumOperFreeEnumArrayDayIndex")) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayEntry.setStatus('mandatory') mscExampleEnumOperFreeEnumArrayMonthIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayMonthIndex.setStatus('mandatory') mscExampleEnumOperFreeEnumArrayDayIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6)))) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayDayIndex.setStatus('mandatory') mscExampleEnumOperFreeEnumArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayValue.setStatus('mandatory') mscExampleEnumOperFreeEnumReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166), ) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedTable.setStatus('mandatory') mscExampleEnumOperFreeEnumReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumOperFreeEnumReplicatedIndex")) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedEntry.setStatus('mandatory') mscExampleEnumOperFreeEnumReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6)))) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedIndex.setStatus('mandatory') mscExampleEnumOperFreeEnumReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedValue.setStatus('mandatory') mscExampleEnumOperFreeEnumReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedRowStatus.setStatus('mandatory') mscExampleEnumOperFreeEnumListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167), ) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListTable.setStatus('mandatory') mscExampleEnumOperFreeEnumListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumOperFreeEnumListValue")) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListEntry.setStatus('mandatory') mscExampleEnumOperFreeEnumListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListValue.setStatus('mandatory') mscExampleEnumOperFreeEnumListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListRowStatus.setStatus('mandatory') mscExampleEnumProvStructEnumVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168), ) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorTable.setStatus('mandatory') mscExampleEnumProvStructEnumVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvStructEnumVectorIndex")) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorEntry.setStatus('mandatory') mscExampleEnumProvStructEnumVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6)))) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorIndex.setStatus('mandatory') mscExampleEnumProvStructEnumVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorValue.setStatus('mandatory') mscExampleEnumProvStructEnumArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169), ) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayTable.setStatus('mandatory') mscExampleEnumProvStructEnumArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvStructEnumArrayMonthIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvStructEnumArrayDayIndex")) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayEntry.setStatus('mandatory') mscExampleEnumProvStructEnumArrayMonthIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayMonthIndex.setStatus('mandatory') mscExampleEnumProvStructEnumArrayDayIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6)))) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayDayIndex.setStatus('mandatory') mscExampleEnumProvStructEnumArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayValue.setStatus('mandatory') mscExampleEnumProvFreeEnumVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170), ) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorTable.setStatus('mandatory') mscExampleEnumProvFreeEnumVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvFreeEnumVectorIndex")) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorEntry.setStatus('mandatory') mscExampleEnumProvFreeEnumVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorIndex.setStatus('mandatory') mscExampleEnumProvFreeEnumVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorValue.setStatus('mandatory') mscExampleEnumProvFreeEnumVector1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171), ) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Table.setStatus('mandatory') mscExampleEnumProvFreeEnumVector1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvFreeEnumVector1Index")) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Entry.setStatus('mandatory') mscExampleEnumProvFreeEnumVector1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Index.setStatus('mandatory') mscExampleEnumProvFreeEnumVector1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Value.setStatus('mandatory') mscExampleEnumProvFreeEnumArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172), ) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayTable.setStatus('mandatory') mscExampleEnumProvFreeEnumArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvFreeEnumArrayMonthIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvFreeEnumArrayDayIndex")) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayEntry.setStatus('mandatory') mscExampleEnumProvFreeEnumArrayMonthIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayMonthIndex.setStatus('mandatory') mscExampleEnumProvFreeEnumArrayDayIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayDayIndex.setStatus('mandatory') mscExampleEnumProvFreeEnumArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayValue.setStatus('mandatory') mscExampleEnumProvFreeEnumArray1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173), ) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1Table.setStatus('mandatory') mscExampleEnumProvFreeEnumArray1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvFreeEnumArray1MonthIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvFreeEnumArray1DayIndex")) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1Entry.setStatus('mandatory') mscExampleEnumProvFreeEnumArray1MonthIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1MonthIndex.setStatus('mandatory') mscExampleEnumProvFreeEnumArray1DayIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1DayIndex.setStatus('mandatory') mscExampleEnumProvFreeEnumArray1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 11, 12, 13, 14))).clone(namedValues=NamedValues(("apple", 1), ("orange", 2), ("banana", 3), ("pear", 11), ("grapes", 12), ("pineapple", 13), ("watermelon", 14)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1Value.setStatus('mandatory') mscExampleEnumProvFreeEnumReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174), ) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedTable.setStatus('mandatory') mscExampleEnumProvFreeEnumReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvFreeEnumReplicatedIndex")) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedEntry.setStatus('mandatory') mscExampleEnumProvFreeEnumReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saturday", 5), ("sunday", 6)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedIndex.setStatus('mandatory') mscExampleEnumProvFreeEnumReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedValue.setStatus('mandatory') mscExampleEnumProvFreeEnumReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedRowStatus.setStatus('mandatory') mscExampleEnumProvFreeEnumListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175), ) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListTable.setStatus('mandatory') mscExampleEnumProvFreeEnumListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvFreeEnumListValue")) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListEntry.setStatus('mandatory') mscExampleEnumProvFreeEnumListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListValue.setStatus('mandatory') mscExampleEnumProvFreeEnumListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListRowStatus.setStatus('mandatory') mscExampleEnumProvFreeEnumList1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176), ) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1Table.setStatus('mandatory') mscExampleEnumProvFreeEnumList1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumProvFreeEnumList1Value")) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1Entry.setStatus('mandatory') mscExampleEnumProvFreeEnumList1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1Value.setStatus('mandatory') mscExampleEnumProvFreeEnumList1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1RowStatus.setStatus('mandatory') mscExampleObjectId = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12)) mscExampleObjectIdRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1), ) if mibBuilder.loadTexts: mscExampleObjectIdRowStatusTable.setStatus('mandatory') mscExampleObjectIdRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdIndex")) if mibBuilder.loadTexts: mscExampleObjectIdRowStatusEntry.setStatus('mandatory') mscExampleObjectIdRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleObjectIdRowStatus.setStatus('mandatory') mscExampleObjectIdComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleObjectIdComponentName.setStatus('mandatory') mscExampleObjectIdStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleObjectIdStorageType.setStatus('mandatory') mscExampleObjectIdIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 10), ObjectIdentifier()) if mibBuilder.loadTexts: mscExampleObjectIdIndex.setStatus('mandatory') mscExampleObjectIdOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 10), ) if mibBuilder.loadTexts: mscExampleObjectIdOperationalTable.setStatus('mandatory') mscExampleObjectIdOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdIndex")) if mibBuilder.loadTexts: mscExampleObjectIdOperationalEntry.setStatus('mandatory') mscExampleObjectIdOperFreeObjId = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 10, 1, 1), ObjectIdentifier()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjId.setStatus('mandatory') mscExampleObjectIdProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11), ) if mibBuilder.loadTexts: mscExampleObjectIdProvisionalTable.setStatus('mandatory') mscExampleObjectIdProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdIndex")) if mibBuilder.loadTexts: mscExampleObjectIdProvisionalEntry.setStatus('mandatory') mscExampleObjectIdProvEnumSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11, 1, 1), Link()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleObjectIdProvEnumSub.setStatus('mandatory') mscExampleObjectIdProvFreeObjId = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11, 1, 2), ObjectIdentifier()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjId.setStatus('mandatory') mscExampleObjectIdOperFreeObjIdReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116), ) if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedTable.setStatus('mandatory') mscExampleObjectIdOperFreeObjIdReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdOperFreeObjIdReplicatedIndex")) if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedEntry.setStatus('mandatory') mscExampleObjectIdOperFreeObjIdReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1, 1), ObjectIdentifier()) if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedIndex.setStatus('mandatory') mscExampleObjectIdOperFreeObjIdReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1, 2), ObjectIdentifier()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedValue.setStatus('mandatory') mscExampleObjectIdOperFreeObjIdReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedRowStatus.setStatus('mandatory') mscExampleObjectIdOperFreeObjIdListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117), ) if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListTable.setStatus('mandatory') mscExampleObjectIdOperFreeObjIdListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdOperFreeObjIdListValue")) if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListEntry.setStatus('mandatory') mscExampleObjectIdOperFreeObjIdListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117, 1, 1), IntegerSequence()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListValue.setStatus('mandatory') mscExampleObjectIdOperFreeObjIdListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListRowStatus.setStatus('mandatory') mscExampleObjectIdProvFreeObjIdReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118), ) if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedTable.setStatus('mandatory') mscExampleObjectIdProvFreeObjIdReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdProvFreeObjIdReplicatedIndex")) if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedEntry.setStatus('mandatory') mscExampleObjectIdProvFreeObjIdReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1, 1), ObjectIdentifier()) if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedIndex.setStatus('mandatory') mscExampleObjectIdProvFreeObjIdReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1, 2), ObjectIdentifier()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedValue.setStatus('mandatory') mscExampleObjectIdProvFreeObjIdReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedRowStatus.setStatus('mandatory') mscExampleObjectIdProvFreeObjIdListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119), ) if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListTable.setStatus('mandatory') mscExampleObjectIdProvFreeObjIdListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjectIdProvFreeObjIdListValue")) if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListEntry.setStatus('mandatory') mscExampleObjectIdProvFreeObjIdListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119, 1, 1), IntegerSequence()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListValue.setStatus('mandatory') mscExampleObjectIdProvFreeObjIdListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListRowStatus.setStatus('mandatory') mscExampleSequence = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13)) mscExampleSequenceRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1), ) if mibBuilder.loadTexts: mscExampleSequenceRowStatusTable.setStatus('mandatory') mscExampleSequenceRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndex")) if mibBuilder.loadTexts: mscExampleSequenceRowStatusEntry.setStatus('mandatory') mscExampleSequenceRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSequenceRowStatus.setStatus('mandatory') mscExampleSequenceComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleSequenceComponentName.setStatus('mandatory') mscExampleSequenceStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleSequenceStorageType.setStatus('mandatory') mscExampleSequenceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 10), ObjectIdentifier()) if mibBuilder.loadTexts: mscExampleSequenceIndex.setStatus('mandatory') mscExampleSequenceOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10), ) if mibBuilder.loadTexts: mscExampleSequenceOperationalTable.setStatus('mandatory') mscExampleSequenceOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndex")) if mibBuilder.loadTexts: mscExampleSequenceOperationalEntry.setStatus('mandatory') mscExampleSequenceOperStructSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10, 1, 1), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(7, 9))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSequenceOperStructSequence.setStatus('mandatory') mscExampleSequenceOperFreeSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10, 1, 2), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(7, 9))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequence.setStatus('mandatory') mscExampleSequenceProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11), ) if mibBuilder.loadTexts: mscExampleSequenceProvisionalTable.setStatus('mandatory') mscExampleSequenceProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndex")) if mibBuilder.loadTexts: mscExampleSequenceProvisionalEntry.setStatus('mandatory') mscExampleSequenceProvStructSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11, 1, 1), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(7, 9))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSequenceProvStructSequence.setStatus('mandatory') mscExampleSequenceProvFreeSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11, 1, 2), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequence.setStatus('mandatory') mscExampleSequenceOperFreeSequenceReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112), ) if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedTable.setStatus('mandatory') mscExampleSequenceOperFreeSequenceReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceOperFreeSequenceReplicatedIndex")) if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedEntry.setStatus('mandatory') mscExampleSequenceOperFreeSequenceReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1, 1), ObjectIdentifier()) if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedIndex.setStatus('mandatory') mscExampleSequenceOperFreeSequenceReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1, 2), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(7, 9))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedValue.setStatus('mandatory') mscExampleSequenceOperFreeSequenceReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedRowStatus.setStatus('mandatory') mscExampleSequenceOperFreeSequenceListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113), ) if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListTable.setStatus('mandatory') mscExampleSequenceOperFreeSequenceListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceOperFreeSequenceListValue")) if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListEntry.setStatus('mandatory') mscExampleSequenceOperFreeSequenceListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113, 1, 1), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(7, 9))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListValue.setStatus('mandatory') mscExampleSequenceOperFreeSequenceListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListRowStatus.setStatus('mandatory') mscExampleSequenceProvFreeSequenceReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114), ) if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedTable.setStatus('mandatory') mscExampleSequenceProvFreeSequenceReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceProvFreeSequenceReplicatedIndex")) if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedEntry.setStatus('mandatory') mscExampleSequenceProvFreeSequenceReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1, 1), ObjectIdentifier()) if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedIndex.setStatus('mandatory') mscExampleSequenceProvFreeSequenceReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1, 2), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(7, 7)).setFixedLength(7)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedValue.setStatus('mandatory') mscExampleSequenceProvFreeSequenceReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedRowStatus.setStatus('mandatory') mscExampleSequenceProvFreeSequenceListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115), ) if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListTable.setStatus('mandatory') mscExampleSequenceProvFreeSequenceListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceProvFreeSequenceListValue")) if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListEntry.setStatus('mandatory') mscExampleSequenceProvFreeSequenceListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115, 1, 1), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(7, 9))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListValue.setStatus('mandatory') mscExampleSequenceProvFreeSequenceListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListRowStatus.setStatus('mandatory') mscExampleSigned = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14)) mscExampleSignedRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1), ) if mibBuilder.loadTexts: mscExampleSignedRowStatusTable.setStatus('mandatory') mscExampleSignedRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex")) if mibBuilder.loadTexts: mscExampleSignedRowStatusEntry.setStatus('mandatory') mscExampleSignedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedRowStatus.setStatus('mandatory') mscExampleSignedComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleSignedComponentName.setStatus('mandatory') mscExampleSignedStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleSignedStorageType.setStatus('mandatory') mscExampleSignedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: mscExampleSignedIndex.setStatus('mandatory') mscExampleSignedOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10), ) if mibBuilder.loadTexts: mscExampleSignedOperationalTable.setStatus('mandatory') mscExampleSignedOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex")) if mibBuilder.loadTexts: mscExampleSignedOperationalEntry.setStatus('mandatory') mscExampleSignedOperStructSigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-16, 16))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedOperStructSigned.setStatus('mandatory') mscExampleSignedOperFreeSigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-16, 16))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedOperFreeSigned.setStatus('mandatory') mscExampleSignedProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11), ) if mibBuilder.loadTexts: mscExampleSignedProvisionalTable.setStatus('mandatory') mscExampleSignedProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex")) if mibBuilder.loadTexts: mscExampleSignedProvisionalEntry.setStatus('mandatory') mscExampleSignedProvSignedSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 1), Link()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedProvSignedSub.setStatus('mandatory') mscExampleSignedProvStructSigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(-17, -17), ValueRangeConstraint(-16, 16), ValueRangeConstraint(17, 17), ValueRangeConstraint(18, 18), )).clone(-17)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedProvStructSigned.setStatus('mandatory') mscExampleSignedProvFreeSigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-4, 8)).clone(-2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedProvFreeSigned.setStatus('mandatory') mscExampleSignedProvFreeSigned1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-4, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedProvFreeSigned1.setStatus('mandatory') mscExampleSignedOperStructSignedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148), ) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorTable.setStatus('mandatory') mscExampleSignedOperStructSignedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedOperStructSignedVectorIndex")) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorEntry.setStatus('mandatory') mscExampleSignedOperStructSignedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorIndex.setStatus('mandatory') mscExampleSignedOperStructSignedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-5, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorValue.setStatus('mandatory') mscExampleSignedOperStructSignedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149), ) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayTable.setStatus('mandatory') mscExampleSignedOperStructSignedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedOperStructSignedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedOperStructSignedArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayEntry.setStatus('mandatory') mscExampleSignedOperStructSignedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayRowIndex.setStatus('mandatory') mscExampleSignedOperStructSignedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayColumnIndex.setStatus('mandatory') mscExampleSignedOperStructSignedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-5, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayValue.setStatus('mandatory') mscExampleSignedOperFreeSignedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150), ) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorTable.setStatus('mandatory') mscExampleSignedOperFreeSignedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedOperFreeSignedVectorIndex")) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorEntry.setStatus('mandatory') mscExampleSignedOperFreeSignedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorIndex.setStatus('mandatory') mscExampleSignedOperFreeSignedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-5, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorValue.setStatus('mandatory') mscExampleSignedOperFreeSignedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151), ) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayTable.setStatus('mandatory') mscExampleSignedOperFreeSignedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedOperFreeSignedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedOperFreeSignedArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayEntry.setStatus('mandatory') mscExampleSignedOperFreeSignedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayRowIndex.setStatus('mandatory') mscExampleSignedOperFreeSignedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayColumnIndex.setStatus('mandatory') mscExampleSignedOperFreeSignedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-5, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayValue.setStatus('mandatory') mscExampleSignedOperFreeSignedReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152), ) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedTable.setStatus('mandatory') mscExampleSignedOperFreeSignedReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedOperFreeSignedReplicatedIndex")) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedEntry.setStatus('mandatory') mscExampleSignedOperFreeSignedReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-5, 5))) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedIndex.setStatus('mandatory') mscExampleSignedOperFreeSignedReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-16, 16))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedValue.setStatus('mandatory') mscExampleSignedOperFreeSignedReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedRowStatus.setStatus('mandatory') mscExampleSignedOperFreeSignedListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153), ) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListTable.setStatus('mandatory') mscExampleSignedOperFreeSignedListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedOperFreeSignedListValue")) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListEntry.setStatus('mandatory') mscExampleSignedOperFreeSignedListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-16, 16))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListValue.setStatus('mandatory') mscExampleSignedOperFreeSignedListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListRowStatus.setStatus('mandatory') mscExampleSignedProvStructSignedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154), ) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorTable.setStatus('mandatory') mscExampleSignedProvStructSignedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvStructSignedVectorIndex")) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorEntry.setStatus('mandatory') mscExampleSignedProvStructSignedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorIndex.setStatus('mandatory') mscExampleSignedProvStructSignedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-5, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorValue.setStatus('mandatory') mscExampleSignedProvStructSignedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155), ) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayTable.setStatus('mandatory') mscExampleSignedProvStructSignedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvStructSignedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvStructSignedArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayEntry.setStatus('mandatory') mscExampleSignedProvStructSignedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayRowIndex.setStatus('mandatory') mscExampleSignedProvStructSignedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayColumnIndex.setStatus('mandatory') mscExampleSignedProvStructSignedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-5, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayValue.setStatus('mandatory') mscExampleSignedProvFreeSignedVectorTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156), ) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorTable.setStatus('mandatory') mscExampleSignedProvFreeSignedVectorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvFreeSignedVectorIndex")) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorEntry.setStatus('mandatory') mscExampleSignedProvFreeSignedVectorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorIndex.setStatus('mandatory') mscExampleSignedProvFreeSignedVectorValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-5, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorValue.setStatus('mandatory') mscExampleSignedProvFreeSignedVector1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157), ) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Table.setStatus('mandatory') mscExampleSignedProvFreeSignedVector1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvFreeSignedVector1Index")) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Entry.setStatus('mandatory') mscExampleSignedProvFreeSignedVector1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Index.setStatus('mandatory') mscExampleSignedProvFreeSignedVector1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-5, 5))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Value.setStatus('mandatory') mscExampleSignedProvFreeSignedArrayTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158), ) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayTable.setStatus('mandatory') mscExampleSignedProvFreeSignedArrayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvFreeSignedArrayRowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvFreeSignedArrayColumnIndex")) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayEntry.setStatus('mandatory') mscExampleSignedProvFreeSignedArrayRowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayRowIndex.setStatus('mandatory') mscExampleSignedProvFreeSignedArrayColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayColumnIndex.setStatus('mandatory') mscExampleSignedProvFreeSignedArrayValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1000, 4000))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayValue.setStatus('mandatory') mscExampleSignedProvFreeSignedArray1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159), ) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1Table.setStatus('mandatory') mscExampleSignedProvFreeSignedArray1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvFreeSignedArray1RowIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvFreeSignedArray1ColumnIndex")) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1Entry.setStatus('mandatory') mscExampleSignedProvFreeSignedArray1RowIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1RowIndex.setStatus('mandatory') mscExampleSignedProvFreeSignedArray1ColumnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1ColumnIndex.setStatus('mandatory') mscExampleSignedProvFreeSignedArray1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1000, 4000))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1Value.setStatus('mandatory') mscExampleSignedProvFreeSignedReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160), ) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedTable.setStatus('mandatory') mscExampleSignedProvFreeSignedReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvFreeSignedReplicatedIndex")) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedEntry.setStatus('mandatory') mscExampleSignedProvFreeSignedReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 5))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedIndex.setStatus('mandatory') mscExampleSignedProvFreeSignedReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 13))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedValue.setStatus('mandatory') mscExampleSignedProvFreeSignedReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedRowStatus.setStatus('mandatory') mscExampleSignedProvFreeSignedListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161), ) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListTable.setStatus('mandatory') mscExampleSignedProvFreeSignedListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSignedProvFreeSignedListValue")) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListEntry.setStatus('mandatory') mscExampleSignedProvFreeSignedListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-3000, 160))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListValue.setStatus('mandatory') mscExampleSignedProvFreeSignedListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListRowStatus.setStatus('mandatory') mscExampleMiscellaneous = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15)) mscExampleMiscellaneousRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1), ) if mibBuilder.loadTexts: mscExampleMiscellaneousRowStatusTable.setStatus('mandatory') mscExampleMiscellaneousRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex")) if mibBuilder.loadTexts: mscExampleMiscellaneousRowStatusEntry.setStatus('mandatory') mscExampleMiscellaneousRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousRowStatus.setStatus('mandatory') mscExampleMiscellaneousComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleMiscellaneousComponentName.setStatus('mandatory') mscExampleMiscellaneousStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleMiscellaneousStorageType.setStatus('mandatory') mscExampleMiscellaneousIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: mscExampleMiscellaneousIndex.setStatus('mandatory') mscExampleMiscellaneousOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10), ) if mibBuilder.loadTexts: mscExampleMiscellaneousOperationalTable.setStatus('mandatory') mscExampleMiscellaneousOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex")) if mibBuilder.loadTexts: mscExampleMiscellaneousOperationalEntry.setStatus('mandatory') mscExampleMiscellaneousOperStructLong = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 1), Unsigned64().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousOperStructLong.setStatus('mandatory') mscExampleMiscellaneousOperFreeLong = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 2), Unsigned64().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLong.setStatus('mandatory') mscExampleMiscellaneousOperFreeTime = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 3), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(19, 19), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTime.setStatus('mandatory') mscExampleMiscellaneousOperFreeTimeDateOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 4), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(10, 10), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeDateOnly.setStatus('mandatory') mscExampleMiscellaneousOperFreeTimeTimeOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 5), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(5, 5), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeTimeOnly.setStatus('mandatory') mscExampleMiscellaneousOperFreeTimeDateTimeMinute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 6), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(16, 16), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeDateTimeMinute.setStatus('mandatory') mscExampleMiscellaneousOperFreeCounter64 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 7), PassportCounter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeCounter64.setStatus('mandatory') mscExampleMiscellaneousOperFreeGauge64 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 8), Gauge64().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeGauge64.setStatus('mandatory') mscExampleMiscellaneousOperStructCounter64 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 9), PassportCounter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleMiscellaneousOperStructCounter64.setStatus('mandatory') mscExampleMiscellaneousProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11), ) if mibBuilder.loadTexts: mscExampleMiscellaneousProvisionalTable.setStatus('mandatory') mscExampleMiscellaneousProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex")) if mibBuilder.loadTexts: mscExampleMiscellaneousProvisionalEntry.setStatus('mandatory') mscExampleMiscellaneousProvEnumSub = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 1), Link()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousProvEnumSub.setStatus('mandatory') mscExampleMiscellaneousProvStructLong = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 2), Unsigned64().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousProvStructLong.setStatus('mandatory') mscExampleMiscellaneousProvFreeLong = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 3), Unsigned64().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLong.setStatus('mandatory') mscExampleMiscellaneousProvFreeTime = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 4), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(19, 19), )).clone(hexValue="313939322d31302d31352031303a33393a3030")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTime.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeDateOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 5), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(10, 10), )).clone(hexValue="313939322d31302d3135")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateOnly.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeTimeOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 6), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(5, 5), )).clone(hexValue="31303a3339")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeTimeOnly.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeDateTimeMinute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 7), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(16, 16), )).clone(hexValue="313939322d31302d31352031303a3330")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateTimeMinute.setStatus('mandatory') mscExampleMiscellaneousProvFreeTime1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 8), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(19, 19), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTime1.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeDateOnly1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 9), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(10, 10), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateOnly1.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeTimeOnly1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 10), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(8, 8), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeTimeOnly1.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeDateTimeMinute1 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 11), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(16, 16), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateTimeMinute1.setStatus('mandatory') mscExampleMiscellaneousOperFreeLongReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177), ) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedTable.setStatus('mandatory') mscExampleMiscellaneousOperFreeLongReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousOperFreeLongReplicatedIndex")) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedEntry.setStatus('mandatory') mscExampleMiscellaneousOperFreeLongReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1, 1), Unsigned64()) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedIndex.setStatus('mandatory') mscExampleMiscellaneousOperFreeLongReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1, 2), Unsigned64().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedValue.setStatus('mandatory') mscExampleMiscellaneousOperFreeLongReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedRowStatus.setStatus('mandatory') mscExampleMiscellaneousOperFreeLongListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178), ) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListTable.setStatus('mandatory') mscExampleMiscellaneousOperFreeLongListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousOperFreeLongListValue")) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListEntry.setStatus('mandatory') mscExampleMiscellaneousOperFreeLongListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178, 1, 1), Unsigned64().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListValue.setStatus('mandatory') mscExampleMiscellaneousOperFreeLongListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListRowStatus.setStatus('mandatory') mscExampleMiscellaneousOperFreeTimeListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179), ) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListTable.setStatus('mandatory') mscExampleMiscellaneousOperFreeTimeListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousOperFreeTimeListValue")) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListEntry.setStatus('mandatory') mscExampleMiscellaneousOperFreeTimeListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179, 1, 1), EnterpriseDateAndTime().subtype(subtypeSpec=ValueSizeConstraint(16, 16)).setFixedLength(16)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListValue.setStatus('mandatory') mscExampleMiscellaneousOperFreeTimeListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListRowStatus.setStatus('mandatory') mscExampleMiscellaneousProvFreeLongReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180), ) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedTable.setStatus('mandatory') mscExampleMiscellaneousProvFreeLongReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousProvFreeLongReplicatedIndex")) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedEntry.setStatus('mandatory') mscExampleMiscellaneousProvFreeLongReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1, 1), Unsigned64()) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedIndex.setStatus('mandatory') mscExampleMiscellaneousProvFreeLongReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1, 2), Unsigned64().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedValue.setStatus('mandatory') mscExampleMiscellaneousProvFreeLongReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedRowStatus.setStatus('mandatory') mscExampleMiscellaneousProvFreeLongListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181), ) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListTable.setStatus('mandatory') mscExampleMiscellaneousProvFreeLongListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousProvFreeLongListValue")) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListEntry.setStatus('mandatory') mscExampleMiscellaneousProvFreeLongListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181, 1, 1), Unsigned64().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListValue.setStatus('mandatory') mscExampleMiscellaneousProvFreeLongListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListRowStatus.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeReplicatedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182), ) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedTable.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeReplicatedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousProvFreeTimeReplicatedIndex")) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedEntry.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeReplicatedIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1, 1), EnterpriseDateAndTime().subtype(subtypeSpec=ValueSizeConstraint(10, 10)).setFixedLength(10)) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedIndex.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeReplicatedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1, 2), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(8, 8), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedValue.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeListTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183), ) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListTable.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousProvFreeTimeListValue")) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListEntry.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeListValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183, 1, 1), EnterpriseDateAndTime().subtype(subtypeSpec=ValueSizeConstraint(19, 19)).setFixedLength(19)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListValue.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeListRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListRowStatus.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeList1Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184), ) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1Table.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeList1Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousProvFreeTimeList1Value")) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1Entry.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeList1Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184, 1, 1), EnterpriseDateAndTime().subtype(subtypeSpec=ValueSizeConstraint(10, 10)).setFixedLength(10)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1Value.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeList1RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1RowStatus.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeList2Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185), ) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2Table.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeList2Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousProvFreeTimeList2Value")) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2Entry.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeList2Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185, 1, 1), EnterpriseDateAndTime().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2Value.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeList2RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2RowStatus.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeList3Table = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186), ) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3Table.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeList3Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleMiscellaneousProvFreeTimeList3Value")) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3Entry.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeList3Value = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186, 1, 1), EnterpriseDateAndTime().subtype(subtypeSpec=ValueSizeConstraint(16, 16)).setFixedLength(16)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3Value.setStatus('mandatory') mscExampleMiscellaneousProvFreeTimeList3RowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3RowStatus.setStatus('mandatory') mscExampleOneIndex = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16)) mscExampleOneIndexRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1), ) if mibBuilder.loadTexts: mscExampleOneIndexRowStatusTable.setStatus('mandatory') mscExampleOneIndexRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleOneIndexOneIndex")) if mibBuilder.loadTexts: mscExampleOneIndexRowStatusEntry.setStatus('mandatory') mscExampleOneIndexRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleOneIndexRowStatus.setStatus('mandatory') mscExampleOneIndexComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleOneIndexComponentName.setStatus('mandatory') mscExampleOneIndexStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleOneIndexStorageType.setStatus('mandatory') mscExampleOneIndexOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleOneIndexOneIndex.setStatus('mandatory') mscExampleOneIndexProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 10), ) if mibBuilder.loadTexts: mscExampleOneIndexProvisionedTable.setStatus('mandatory') mscExampleOneIndexProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleOneIndexOneIndex")) if mibBuilder.loadTexts: mscExampleOneIndexProvisionedEntry.setStatus('mandatory') mscExampleOneIndexProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleOneIndexProvAttribute.setStatus('mandatory') mscExampleTwoIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17)) mscExampleTwoIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1), ) if mibBuilder.loadTexts: mscExampleTwoIndicesRowStatusTable.setStatus('mandatory') mscExampleTwoIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleTwoIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleTwoIndicesTwoIndex")) if mibBuilder.loadTexts: mscExampleTwoIndicesRowStatusEntry.setStatus('mandatory') mscExampleTwoIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleTwoIndicesRowStatus.setStatus('mandatory') mscExampleTwoIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleTwoIndicesComponentName.setStatus('mandatory') mscExampleTwoIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleTwoIndicesStorageType.setStatus('mandatory') mscExampleTwoIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleTwoIndicesOneIndex.setStatus('mandatory') mscExampleTwoIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleTwoIndicesTwoIndex.setStatus('mandatory') mscExampleTwoIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 10), ) if mibBuilder.loadTexts: mscExampleTwoIndicesProvisionedTable.setStatus('mandatory') mscExampleTwoIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleTwoIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleTwoIndicesTwoIndex")) if mibBuilder.loadTexts: mscExampleTwoIndicesProvisionedEntry.setStatus('mandatory') mscExampleTwoIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleTwoIndicesProvAttribute.setStatus('mandatory') mscExampleThreeIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18)) mscExampleThreeIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1), ) if mibBuilder.loadTexts: mscExampleThreeIndicesRowStatusTable.setStatus('mandatory') mscExampleThreeIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleThreeIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleThreeIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleThreeIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleThreeIndicesRowStatusEntry.setStatus('mandatory') mscExampleThreeIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleThreeIndicesRowStatus.setStatus('mandatory') mscExampleThreeIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleThreeIndicesComponentName.setStatus('mandatory') mscExampleThreeIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleThreeIndicesStorageType.setStatus('mandatory') mscExampleThreeIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleThreeIndicesOneIndex.setStatus('mandatory') mscExampleThreeIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleThreeIndicesTwoIndex.setStatus('mandatory') mscExampleThreeIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleThreeIndicesThreeIndex.setStatus('mandatory') mscExampleThreeIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 10), ) if mibBuilder.loadTexts: mscExampleThreeIndicesProvisionedTable.setStatus('mandatory') mscExampleThreeIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleThreeIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleThreeIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleThreeIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleThreeIndicesProvisionedEntry.setStatus('mandatory') mscExampleThreeIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleThreeIndicesProvAttribute.setStatus('mandatory') mscExampleFourIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19)) mscExampleFourIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1), ) if mibBuilder.loadTexts: mscExampleFourIndicesRowStatusTable.setStatus('mandatory') mscExampleFourIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFourIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFourIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFourIndicesThreeIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFourIndicesFourIndex")) if mibBuilder.loadTexts: mscExampleFourIndicesRowStatusEntry.setStatus('mandatory') mscExampleFourIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFourIndicesRowStatus.setStatus('mandatory') mscExampleFourIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleFourIndicesComponentName.setStatus('mandatory') mscExampleFourIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleFourIndicesStorageType.setStatus('mandatory') mscExampleFourIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleFourIndicesOneIndex.setStatus('mandatory') mscExampleFourIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleFourIndicesTwoIndex.setStatus('mandatory') mscExampleFourIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleFourIndicesThreeIndex.setStatus('mandatory') mscExampleFourIndicesFourIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleFourIndicesFourIndex.setStatus('mandatory') mscExampleFourIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 10), ) if mibBuilder.loadTexts: mscExampleFourIndicesProvisionedTable.setStatus('mandatory') mscExampleFourIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFourIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFourIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFourIndicesThreeIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleFourIndicesFourIndex")) if mibBuilder.loadTexts: mscExampleFourIndicesProvisionedEntry.setStatus('mandatory') mscExampleFourIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleFourIndicesProvAttribute.setStatus('mandatory') mscExampleDecimalIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20)) mscExampleDecimalIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1), ) if mibBuilder.loadTexts: mscExampleDecimalIndicesRowStatusTable.setStatus('mandatory') mscExampleDecimalIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleDecimalIndicesRowStatusEntry.setStatus('mandatory') mscExampleDecimalIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalIndicesRowStatus.setStatus('mandatory') mscExampleDecimalIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleDecimalIndicesComponentName.setStatus('mandatory') mscExampleDecimalIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleDecimalIndicesStorageType.setStatus('mandatory') mscExampleDecimalIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 10), ValueRangeConstraint(100, 100), ))) if mibBuilder.loadTexts: mscExampleDecimalIndicesOneIndex.setStatus('mandatory') mscExampleDecimalIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 10), ValueRangeConstraint(100, 100), ))) if mibBuilder.loadTexts: mscExampleDecimalIndicesTwoIndex.setStatus('mandatory') mscExampleDecimalIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 10), ValueRangeConstraint(100, 100), ))) if mibBuilder.loadTexts: mscExampleDecimalIndicesThreeIndex.setStatus('mandatory') mscExampleDecimalIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 10), ) if mibBuilder.loadTexts: mscExampleDecimalIndicesProvisionedTable.setStatus('mandatory') mscExampleDecimalIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDecimalIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleDecimalIndicesProvisionedEntry.setStatus('mandatory') mscExampleDecimalIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDecimalIndicesProvAttribute.setStatus('mandatory') mscExampleHexIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21)) mscExampleHexIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1), ) if mibBuilder.loadTexts: mscExampleHexIndicesRowStatusTable.setStatus('mandatory') mscExampleHexIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleHexIndicesRowStatusEntry.setStatus('mandatory') mscExampleHexIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexIndicesRowStatus.setStatus('mandatory') mscExampleHexIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleHexIndicesComponentName.setStatus('mandatory') mscExampleHexIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleHexIndicesStorageType.setStatus('mandatory') mscExampleHexIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 16), ValueRangeConstraint(256, 256), ))) if mibBuilder.loadTexts: mscExampleHexIndicesOneIndex.setStatus('mandatory') mscExampleHexIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 16), ValueRangeConstraint(256, 256), ))) if mibBuilder.loadTexts: mscExampleHexIndicesTwoIndex.setStatus('mandatory') mscExampleHexIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 16), ValueRangeConstraint(256, 256), ))) if mibBuilder.loadTexts: mscExampleHexIndicesThreeIndex.setStatus('mandatory') mscExampleHexIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 10), ) if mibBuilder.loadTexts: mscExampleHexIndicesProvisionedTable.setStatus('mandatory') mscExampleHexIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleHexIndicesProvisionedEntry.setStatus('mandatory') mscExampleHexIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexIndicesProvAttribute.setStatus('mandatory') mscExampleIpAddrIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22)) mscExampleIpAddrIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1), ) if mibBuilder.loadTexts: mscExampleIpAddrIndicesRowStatusTable.setStatus('mandatory') mscExampleIpAddrIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddrIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddrIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddrIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleIpAddrIndicesRowStatusEntry.setStatus('mandatory') mscExampleIpAddrIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddrIndicesRowStatus.setStatus('mandatory') mscExampleIpAddrIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleIpAddrIndicesComponentName.setStatus('mandatory') mscExampleIpAddrIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleIpAddrIndicesStorageType.setStatus('mandatory') mscExampleIpAddrIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 10), IpAddress()) if mibBuilder.loadTexts: mscExampleIpAddrIndicesOneIndex.setStatus('mandatory') mscExampleIpAddrIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 11), IpAddress()) if mibBuilder.loadTexts: mscExampleIpAddrIndicesTwoIndex.setStatus('mandatory') mscExampleIpAddrIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 12), IpAddress()) if mibBuilder.loadTexts: mscExampleIpAddrIndicesThreeIndex.setStatus('mandatory') mscExampleIpAddrIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 10), ) if mibBuilder.loadTexts: mscExampleIpAddrIndicesProvisionedTable.setStatus('mandatory') mscExampleIpAddrIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddrIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddrIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIpAddrIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleIpAddrIndicesProvisionedEntry.setStatus('mandatory') mscExampleIpAddrIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleIpAddrIndicesProvAttribute.setStatus('mandatory') mscExampleAsciiIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23)) mscExampleAsciiIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1), ) if mibBuilder.loadTexts: mscExampleAsciiIndicesRowStatusTable.setStatus('mandatory') mscExampleAsciiIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleAsciiIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleAsciiIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleAsciiIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleAsciiIndicesRowStatusEntry.setStatus('mandatory') mscExampleAsciiIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleAsciiIndicesRowStatus.setStatus('mandatory') mscExampleAsciiIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleAsciiIndicesComponentName.setStatus('mandatory') mscExampleAsciiIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleAsciiIndicesStorageType.setStatus('mandatory') mscExampleAsciiIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 10), AsciiStringIndex().subtype(subtypeSpec=ValueSizeConstraint(1, 10))) if mibBuilder.loadTexts: mscExampleAsciiIndicesOneIndex.setStatus('mandatory') mscExampleAsciiIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 11), AsciiStringIndex().subtype(subtypeSpec=ValueSizeConstraint(1, 10))) if mibBuilder.loadTexts: mscExampleAsciiIndicesTwoIndex.setStatus('mandatory') mscExampleAsciiIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 12), AsciiStringIndex().subtype(subtypeSpec=ValueSizeConstraint(1, 10))) if mibBuilder.loadTexts: mscExampleAsciiIndicesThreeIndex.setStatus('mandatory') mscExampleAsciiIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 10), ) if mibBuilder.loadTexts: mscExampleAsciiIndicesProvisionedTable.setStatus('mandatory') mscExampleAsciiIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleAsciiIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleAsciiIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleAsciiIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleAsciiIndicesProvisionedEntry.setStatus('mandatory') mscExampleAsciiIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleAsciiIndicesProvAttribute.setStatus('mandatory') mscExampleHexStrIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24)) mscExampleHexStrIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1), ) if mibBuilder.loadTexts: mscExampleHexStrIndicesRowStatusTable.setStatus('mandatory') mscExampleHexStrIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexStrIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexStrIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexStrIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleHexStrIndicesRowStatusEntry.setStatus('mandatory') mscExampleHexStrIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexStrIndicesRowStatus.setStatus('mandatory') mscExampleHexStrIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleHexStrIndicesComponentName.setStatus('mandatory') mscExampleHexStrIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleHexStrIndicesStorageType.setStatus('mandatory') mscExampleHexStrIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 10), HexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))) if mibBuilder.loadTexts: mscExampleHexStrIndicesOneIndex.setStatus('mandatory') mscExampleHexStrIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 11), HexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))) if mibBuilder.loadTexts: mscExampleHexStrIndicesTwoIndex.setStatus('mandatory') mscExampleHexStrIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 12), HexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))) if mibBuilder.loadTexts: mscExampleHexStrIndicesThreeIndex.setStatus('mandatory') mscExampleHexStrIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 10), ) if mibBuilder.loadTexts: mscExampleHexStrIndicesProvisionedTable.setStatus('mandatory') mscExampleHexStrIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexStrIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexStrIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleHexStrIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleHexStrIndicesProvisionedEntry.setStatus('mandatory') mscExampleHexStrIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleHexStrIndicesProvAttribute.setStatus('mandatory') mscExampleBcdIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25)) mscExampleBcdIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1), ) if mibBuilder.loadTexts: mscExampleBcdIndicesRowStatusTable.setStatus('mandatory') mscExampleBcdIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleBcdIndicesRowStatusEntry.setStatus('mandatory') mscExampleBcdIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdIndicesRowStatus.setStatus('mandatory') mscExampleBcdIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleBcdIndicesComponentName.setStatus('mandatory') mscExampleBcdIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleBcdIndicesStorageType.setStatus('mandatory') mscExampleBcdIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 10), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))) if mibBuilder.loadTexts: mscExampleBcdIndicesOneIndex.setStatus('mandatory') mscExampleBcdIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 11), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))) if mibBuilder.loadTexts: mscExampleBcdIndicesTwoIndex.setStatus('mandatory') mscExampleBcdIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 12), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))) if mibBuilder.loadTexts: mscExampleBcdIndicesThreeIndex.setStatus('mandatory') mscExampleBcdIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 10), ) if mibBuilder.loadTexts: mscExampleBcdIndicesProvisionedTable.setStatus('mandatory') mscExampleBcdIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleBcdIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleBcdIndicesProvisionedEntry.setStatus('mandatory') mscExampleBcdIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleBcdIndicesProvAttribute.setStatus('mandatory') mscExampleEnumIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26)) mscExampleEnumIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1), ) if mibBuilder.loadTexts: mscExampleEnumIndicesRowStatusTable.setStatus('mandatory') mscExampleEnumIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleEnumIndicesRowStatusEntry.setStatus('mandatory') mscExampleEnumIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumIndicesRowStatus.setStatus('mandatory') mscExampleEnumIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleEnumIndicesComponentName.setStatus('mandatory') mscExampleEnumIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleEnumIndicesStorageType.setStatus('mandatory') mscExampleEnumIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("first", 1), ("second", 2), ("third", 3)))) if mibBuilder.loadTexts: mscExampleEnumIndicesOneIndex.setStatus('mandatory') mscExampleEnumIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("first", 1), ("second", 2), ("third", 3)))) if mibBuilder.loadTexts: mscExampleEnumIndicesTwoIndex.setStatus('mandatory') mscExampleEnumIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("first", 1), ("second", 2), ("third", 3)))) if mibBuilder.loadTexts: mscExampleEnumIndicesThreeIndex.setStatus('mandatory') mscExampleEnumIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 10), ) if mibBuilder.loadTexts: mscExampleEnumIndicesProvisionedTable.setStatus('mandatory') mscExampleEnumIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleEnumIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleEnumIndicesProvisionedEntry.setStatus('mandatory') mscExampleEnumIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleEnumIndicesProvAttribute.setStatus('mandatory') mscExampleSequenceIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27)) mscExampleSequenceIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1), ) if mibBuilder.loadTexts: mscExampleSequenceIndicesRowStatusTable.setStatus('mandatory') mscExampleSequenceIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleSequenceIndicesRowStatusEntry.setStatus('mandatory') mscExampleSequenceIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSequenceIndicesRowStatus.setStatus('mandatory') mscExampleSequenceIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleSequenceIndicesComponentName.setStatus('mandatory') mscExampleSequenceIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleSequenceIndicesStorageType.setStatus('mandatory') mscExampleSequenceIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 10), ObjectIdentifier()) if mibBuilder.loadTexts: mscExampleSequenceIndicesOneIndex.setStatus('mandatory') mscExampleSequenceIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 11), ObjectIdentifier()) if mibBuilder.loadTexts: mscExampleSequenceIndicesTwoIndex.setStatus('mandatory') mscExampleSequenceIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 12), ObjectIdentifier()) if mibBuilder.loadTexts: mscExampleSequenceIndicesThreeIndex.setStatus('mandatory') mscExampleSequenceIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 10), ) if mibBuilder.loadTexts: mscExampleSequenceIndicesProvisionedTable.setStatus('mandatory') mscExampleSequenceIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleSequenceIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleSequenceIndicesProvisionedEntry.setStatus('mandatory') mscExampleSequenceIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleSequenceIndicesProvAttribute.setStatus('mandatory') mscExampleObjIdIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28)) mscExampleObjIdIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1), ) if mibBuilder.loadTexts: mscExampleObjIdIndicesRowStatusTable.setStatus('mandatory') mscExampleObjIdIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjIdIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjIdIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjIdIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleObjIdIndicesRowStatusEntry.setStatus('mandatory') mscExampleObjIdIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleObjIdIndicesRowStatus.setStatus('mandatory') mscExampleObjIdIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleObjIdIndicesComponentName.setStatus('mandatory') mscExampleObjIdIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleObjIdIndicesStorageType.setStatus('mandatory') mscExampleObjIdIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 10), ObjectIdentifier()) if mibBuilder.loadTexts: mscExampleObjIdIndicesOneIndex.setStatus('mandatory') mscExampleObjIdIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 11), ObjectIdentifier()) if mibBuilder.loadTexts: mscExampleObjIdIndicesTwoIndex.setStatus('mandatory') mscExampleObjIdIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 12), ObjectIdentifier()) if mibBuilder.loadTexts: mscExampleObjIdIndicesThreeIndex.setStatus('mandatory') mscExampleObjIdIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 10), ) if mibBuilder.loadTexts: mscExampleObjIdIndicesProvisionedTable.setStatus('mandatory') mscExampleObjIdIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjIdIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjIdIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleObjIdIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleObjIdIndicesProvisionedEntry.setStatus('mandatory') mscExampleObjIdIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleObjIdIndicesProvAttribute.setStatus('mandatory') mscExampleDashedIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30)) mscExampleDashedIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1), ) if mibBuilder.loadTexts: mscExampleDashedIndicesRowStatusTable.setStatus('mandatory') mscExampleDashedIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleDashedIndicesRowStatusEntry.setStatus('mandatory') mscExampleDashedIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDashedIndicesRowStatus.setStatus('mandatory') mscExampleDashedIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleDashedIndicesComponentName.setStatus('mandatory') mscExampleDashedIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleDashedIndicesStorageType.setStatus('mandatory') mscExampleDashedIndicesOneIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 10), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))) if mibBuilder.loadTexts: mscExampleDashedIndicesOneIndex.setStatus('mandatory') mscExampleDashedIndicesTwoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 11), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))) if mibBuilder.loadTexts: mscExampleDashedIndicesTwoIndex.setStatus('mandatory') mscExampleDashedIndicesThreeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 12), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(1, 10))) if mibBuilder.loadTexts: mscExampleDashedIndicesThreeIndex.setStatus('mandatory') mscExampleDashedIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 10), ) if mibBuilder.loadTexts: mscExampleDashedIndicesProvisionedTable.setStatus('mandatory') mscExampleDashedIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndicesOneIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndicesTwoIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleDashedIndicesThreeIndex")) if mibBuilder.loadTexts: mscExampleDashedIndicesProvisionedEntry.setStatus('mandatory') mscExampleDashedIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleDashedIndicesProvAttribute.setStatus('mandatory') mscExampleRequiredIndices = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31)) mscExampleRequiredIndicesRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1), ) if mibBuilder.loadTexts: mscExampleRequiredIndicesRowStatusTable.setStatus('mandatory') mscExampleRequiredIndicesRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleRequiredIndicesDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleRequiredIndicesEnumerationIndex")) if mibBuilder.loadTexts: mscExampleRequiredIndicesRowStatusEntry.setStatus('mandatory') mscExampleRequiredIndicesRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleRequiredIndicesRowStatus.setStatus('mandatory') mscExampleRequiredIndicesComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleRequiredIndicesComponentName.setStatus('mandatory') mscExampleRequiredIndicesStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleRequiredIndicesStorageType.setStatus('mandatory') mscExampleRequiredIndicesDecimalIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleRequiredIndicesDecimalIndex.setStatus('mandatory') mscExampleRequiredIndicesEnumerationIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("first", 1), ("second", 2), ("third", 3)))) if mibBuilder.loadTexts: mscExampleRequiredIndicesEnumerationIndex.setStatus('mandatory') mscExampleRequiredIndicesProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 10), ) if mibBuilder.loadTexts: mscExampleRequiredIndicesProvisionedTable.setStatus('mandatory') mscExampleRequiredIndicesProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleRequiredIndicesDecimalIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleRequiredIndicesEnumerationIndex")) if mibBuilder.loadTexts: mscExampleRequiredIndicesProvisionedEntry.setStatus('mandatory') mscExampleRequiredIndicesProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleRequiredIndicesProvAttribute.setStatus('mandatory') mscExampleNsap = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32)) mscExampleNsapRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1), ) if mibBuilder.loadTexts: mscExampleNsapRowStatusTable.setStatus('mandatory') mscExampleNsapRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleNsapIndex")) if mibBuilder.loadTexts: mscExampleNsapRowStatusEntry.setStatus('mandatory') mscExampleNsapRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleNsapRowStatus.setStatus('mandatory') mscExampleNsapComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleNsapComponentName.setStatus('mandatory') mscExampleNsapStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscExampleNsapStorageType.setStatus('mandatory') mscExampleNsapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 10), AsciiStringIndex().subtype(subtypeSpec=ValueSizeConstraint(0, 44))) if mibBuilder.loadTexts: mscExampleNsapIndex.setStatus('mandatory') mscExampleNsapAtmAddrTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 102), ) if mibBuilder.loadTexts: mscExampleNsapAtmAddrTable.setStatus('mandatory') mscExampleNsapAtmAddrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 102, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleNsapIndex")) if mibBuilder.loadTexts: mscExampleNsapAtmAddrEntry.setStatus('mandatory') mscExampleNsapNsapNativeAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 102, 1, 1246), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 44))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleNsapNsapNativeAddress.setStatus('mandatory') mscExampleNsapNativeTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247), ) if mibBuilder.loadTexts: mscExampleNsapNativeTable.setStatus('mandatory') mscExampleNsapNativeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleNsapIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscExampleNsapNativeIndex")) if mibBuilder.loadTexts: mscExampleNsapNativeEntry.setStatus('mandatory') mscExampleNsapNativeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9))) if mibBuilder.loadTexts: mscExampleNsapNativeIndex.setStatus('mandatory') mscExampleNsapNativeValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247, 1, 2), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 44))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscExampleNsapNativeValue.setStatus('mandatory') mscFri = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001)) mscFriRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1), ) if mibBuilder.loadTexts: mscFriRowStatusTable.setStatus('mandatory') mscFriRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex")) if mibBuilder.loadTexts: mscFriRowStatusEntry.setStatus('mandatory') mscFriRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriRowStatus.setStatus('mandatory') mscFriComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriComponentName.setStatus('mandatory') mscFriStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriStorageType.setStatus('mandatory') mscFriIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 99))) if mibBuilder.loadTexts: mscFriIndex.setStatus('mandatory') mscFriOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100), ) if mibBuilder.loadTexts: mscFriOperationalTable.setStatus('mandatory') mscFriOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex")) if mibBuilder.loadTexts: mscFriOperationalEntry.setStatus('mandatory') mscFriOperationalFreeSimpleAscii = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 1), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(10, 100))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalFreeSimpleAscii.setStatus('mandatory') mscFriOperationalFreeSimpleDashed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(10, 100))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalFreeSimpleDashed.setStatus('mandatory') mscFriOperationalFreeSimpleExtended = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 3), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(10, 100))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalFreeSimpleExtended.setStatus('mandatory') mscFriOperationalFreeSimpleBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 4), DigitString().subtype(subtypeSpec=ValueSizeConstraint(2, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalFreeSimpleBcd.setStatus('mandatory') mscFriOperationalFreeSimpleSigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-2, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalFreeSimpleSigned.setStatus('mandatory') mscFriOperationalFreeSimpleFixed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 6), FixedPoint1().subtype(subtypeSpec=ValueRangeConstraint(55, 66))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalFreeSimpleFixed.setStatus('mandatory') mscFriOperationalFreeSimpleSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 7), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(5, 11))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalFreeSimpleSequence.setStatus('mandatory') mscFriOperationalFreeSimpleObjId = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 8), IntegerSequence()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalFreeSimpleObjId.setStatus('mandatory') mscFriOperationalFreeSimpleComponent = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 9), RowPointer()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalFreeSimpleComponent.setStatus('mandatory') mscFriOperationalFreeSimpleHex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 10), HexString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalFreeSimpleHex.setStatus('mandatory') mscFriOperationalStructSetEnumeration = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 11), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2).clone(hexValue="9100")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalStructSetEnumeration.setStatus('mandatory') mscFriOperationalStructSetUnsigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 12), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1).clone(hexValue="54")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalStructSetUnsigned.setStatus('mandatory') mscFriOperationalStructSimpleAscii = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 13), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(10, 100)).clone(hexValue="61313063686172737472696e67")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalStructSimpleAscii.setStatus('mandatory') mscFriOperationalStructSimpleDashed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 14), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(10, 100))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalStructSimpleDashed.setStatus('mandatory') mscFriOperationalStructSimpleExtended = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 15), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(10, 100))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalStructSimpleExtended.setStatus('mandatory') mscFriOperationalStructSimpleBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 16), DigitString().subtype(subtypeSpec=ValueSizeConstraint(2, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalStructSimpleBcd.setStatus('mandatory') mscFriOperationalStructSimpleSigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-2, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalStructSimpleSigned.setStatus('mandatory') mscFriOperationalStructSimpleFixed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 18), FixedPoint1().subtype(subtypeSpec=ValueRangeConstraint(23, 29))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalStructSimpleFixed.setStatus('mandatory') mscFriOperationalStructSimpleSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 19), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(3, 6))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalStructSimpleSequence.setStatus('mandatory') mscFriOperationalStructSimpleEnum = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("monday", 0), ("tuesday", 1), ("wednesday", 2), ("thursday", 3), ("friday", 4), ("saterday", 5), ("sunday", 6))).clone('monday')).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalStructSimpleEnum.setStatus('mandatory') mscFriOperationalStructSimpleHex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 21), HexString().subtype(subtypeSpec=ValueSizeConstraint(10, 100))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalStructSimpleHex.setStatus('mandatory') mscFriOperationalStructSimpleUnsigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 22), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 31)).clone(3)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOperationalStructSimpleUnsigned.setStatus('mandatory') mscFriProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101), ) if mibBuilder.loadTexts: mscFriProvisionalTable.setStatus('mandatory') mscFriProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex")) if mibBuilder.loadTexts: mscFriProvisionalEntry.setStatus('mandatory') mscFriProvisionalStructSetEnumeration = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1).clone(hexValue="a8")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalStructSetEnumeration.setStatus('mandatory') mscFriProvisionalStructSetUnsigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2).clone(hexValue="aaa8")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalStructSetUnsigned.setStatus('mandatory') mscFriProvisionalStructSimpleAscii = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 3), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(10, 100)).clone(hexValue="61737472696e676f663131")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalStructSimpleAscii.setStatus('mandatory') mscFriProvisionalStructSimpleDashed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 4), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(10, 100)).clone(hexValue="01234556789abCDef0ee")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalStructSimpleDashed.setStatus('mandatory') mscFriProvisionalStructSimpleExtended = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 5), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(10, 100)).clone(hexValue="61006211632264336544")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalStructSimpleExtended.setStatus('mandatory') mscFriProvisionalStructSimpleBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 6), DigitString().subtype(subtypeSpec=ValueSizeConstraint(2, 10)).clone(hexValue="31323334")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalStructSimpleBcd.setStatus('mandatory') mscFriProvisionalStructSimpleSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 7), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(1, 2))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalStructSimpleSequence.setStatus('mandatory') mscFriProvisionalStructSimpleEnum = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11))).clone('february')).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalStructSimpleEnum.setStatus('mandatory') mscFriProvisionalStructSimpleHex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 9), HexString().subtype(subtypeSpec=ValueSizeConstraint(10, 100)).clone(hexValue="3039303930393039303930393039303930393039303930393039")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalStructSimpleHex.setStatus('mandatory') mscFriProvisionalStructSimpleUnsigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 10), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(10)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalStructSimpleUnsigned.setStatus('mandatory') mscFriProvisionalStructSimpleSigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-255, 255)).clone(-5)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalStructSimpleSigned.setStatus('mandatory') mscFriProvisionalStructSimpleFixed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 12), FixedPoint2().subtype(subtypeSpec=ValueRangeConstraint(254, 355)).clone(350)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalStructSimpleFixed.setStatus('mandatory') mscFriProvisionalFreeSimpleAscii = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 13), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(10, 100)).clone(hexValue="61737472696e676f663131")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleAscii.setStatus('mandatory') mscFriProvisionalFreeSimpleDashed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 14), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(10, 100)).clone(hexValue="00112233445566778899aabbccddeeff")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleDashed.setStatus('mandatory') mscFriProvisionalFreeSimpleExtended = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 15), ExtendedAsciiString().subtype(subtypeSpec=ValueSizeConstraint(10, 100)).clone(hexValue="61626300006465665555676869")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleExtended.setStatus('mandatory') mscFriProvisionalFreeSimpleBcd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 16), DigitString().subtype(subtypeSpec=ValueSizeConstraint(2, 10)).clone(hexValue="31323334")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleBcd.setStatus('mandatory') mscFriProvisionalFreeSimpleSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 17), IntegerSequence().subtype(subtypeSpec=ValueSizeConstraint(8, 11))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleSequence.setStatus('mandatory') mscFriProvisionalFreeSimpleSigned = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-2147483648, 2147483647)).clone(-11)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleSigned.setStatus('mandatory') mscFriProvisionalFreeSimpleFixed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 19), FixedPoint2().subtype(subtypeSpec=ValueRangeConstraint(22, 233)).clone(122)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleFixed.setStatus('mandatory') mscFriProvisionalFreeSimpleObjId = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 20), IntegerSequence()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleObjId.setStatus('mandatory') mscFriProvisionalFreeSimpleComponent = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 21), RowPointer()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleComponent.setStatus('mandatory') mscFriProvisionalFreeSimpleHex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 22), HexString().subtype(subtypeSpec=ValueSizeConstraint(10, 100)).clone(hexValue="00112233445566778899aaBBcCDdeeFF313233")).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleHex.setStatus('mandatory') mscFriEscapeCheckAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 23), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(4)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriEscapeCheckAttribute.setStatus('mandatory') mscFriEscapeDefaultsComponent = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 24), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriEscapeDefaultsComponent.setStatus('mandatory') mscFriEscapeDefaultsGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 25), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriEscapeDefaultsGroup.setStatus('mandatory') mscFriEscapeSet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 26), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(4, 8)).clone(hexValue="70617373776f7264")).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscFriEscapeSet.setStatus('mandatory') mscFriEscapeCopyComponent = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 27), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriEscapeCopyComponent.setStatus('mandatory') mscFriEscapeCopyGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 28), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriEscapeCopyGroup.setStatus('mandatory') mscFriEscapeCopyAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 29), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriEscapeCopyAttribute.setStatus('mandatory') mscFriStateTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102), ) if mibBuilder.loadTexts: mscFriStateTable.setStatus('mandatory') mscFriStateEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex")) if mibBuilder.loadTexts: mscFriStateEntry.setStatus('mandatory') mscFriAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("locked", 0), ("unlocked", 1), ("shuttingDown", 2))).clone('unlocked')).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriAdminState.setStatus('mandatory') mscFriOperationalState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriOperationalState.setStatus('mandatory') mscFriUsageState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("idle", 0), ("active", 1), ("busy", 2))).clone('idle')).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriUsageState.setStatus('mandatory') mscFriAvailabilityStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriAvailabilityStatus.setStatus('mandatory') mscFriProceduralStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriProceduralStatus.setStatus('mandatory') mscFriControlStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriControlStatus.setStatus('mandatory') mscFriAlarmStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriAlarmStatus.setStatus('mandatory') mscFriStandbyStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 15))).clone(namedValues=NamedValues(("hotStandby", 0), ("coldStandby", 1), ("providingService", 2), ("notSet", 15))).clone('notSet')).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriStandbyStatus.setStatus('mandatory') mscFriUnknownStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("false", 0), ("true", 1))).clone('false')).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriUnknownStatus.setStatus('mandatory') mscFriPfListAsciiTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187), ) if mibBuilder.loadTexts: mscFriPfListAsciiTable.setStatus('mandatory') mscFriPfListAsciiEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriPfListAsciiValue")) if mibBuilder.loadTexts: mscFriPfListAsciiEntry.setStatus('mandatory') mscFriPfListAsciiValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187, 1, 1), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 100))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriPfListAsciiValue.setStatus('mandatory') mscFriPfListAsciiRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscFriPfListAsciiRowStatus.setStatus('mandatory') mscFriPfListUnsignedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188), ) if mibBuilder.loadTexts: mscFriPfListUnsignedTable.setStatus('mandatory') mscFriPfListUnsignedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriPfListUnsignedValue")) if mibBuilder.loadTexts: mscFriPfListUnsignedEntry.setStatus('mandatory') mscFriPfListUnsignedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriPfListUnsignedValue.setStatus('mandatory') mscFriPfListUnsignedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscFriPfListUnsignedRowStatus.setStatus('mandatory') mscFriPfListFixedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189), ) if mibBuilder.loadTexts: mscFriPfListFixedTable.setStatus('mandatory') mscFriPfListFixedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriPfListFixedValue")) if mibBuilder.loadTexts: mscFriPfListFixedEntry.setStatus('mandatory') mscFriPfListFixedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2559))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriPfListFixedValue.setStatus('mandatory') mscFriPfListFixedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscFriPfListFixedRowStatus.setStatus('mandatory') mscFriPfListSignedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190), ) if mibBuilder.loadTexts: mscFriPfListSignedTable.setStatus('mandatory') mscFriPfListSignedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriPfListSignedValue")) if mibBuilder.loadTexts: mscFriPfListSignedEntry.setStatus('mandatory') mscFriPfListSignedValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-200, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriPfListSignedValue.setStatus('mandatory') mscFriPfListSignedRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscFriPfListSignedRowStatus.setStatus('mandatory') mscFriOfListComponentTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191), ) if mibBuilder.loadTexts: mscFriOfListComponentTable.setStatus('mandatory') mscFriOfListComponentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriOfListComponentValue")) if mibBuilder.loadTexts: mscFriOfListComponentEntry.setStatus('mandatory') mscFriOfListComponentValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191, 1, 1), RowPointer()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOfListComponentValue.setStatus('mandatory') mscFriOfListComponentRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscFriOfListComponentRowStatus.setStatus('mandatory') mscFriOfListEnumerationTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192), ) if mibBuilder.loadTexts: mscFriOfListEnumerationTable.setStatus('mandatory') mscFriOfListEnumerationEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriOfListEnumerationValue")) if mibBuilder.loadTexts: mscFriOfListEnumerationEntry.setStatus('mandatory') mscFriOfListEnumerationValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("january", 0), ("february", 1), ("march", 2), ("april", 3), ("may", 4), ("june", 5), ("july", 6), ("august", 7), ("september", 8), ("october", 9), ("november", 10), ("december", 11)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriOfListEnumerationValue.setStatus('mandatory') mscFriOfListEnumerationRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192, 1, 2), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: mscFriOfListEnumerationRowStatus.setStatus('mandatory') mscFriDna = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4)) mscFriDnaRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1), ) if mibBuilder.loadTexts: mscFriDnaRowStatusTable.setStatus('mandatory') mscFriDnaRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDnaIndex")) if mibBuilder.loadTexts: mscFriDnaRowStatusEntry.setStatus('mandatory') mscFriDnaRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriDnaRowStatus.setStatus('mandatory') mscFriDnaComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriDnaComponentName.setStatus('mandatory') mscFriDnaStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriDnaStorageType.setStatus('mandatory') mscFriDnaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 15))) if mibBuilder.loadTexts: mscFriDnaIndex.setStatus('mandatory') mscFriDnaOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 10), ) if mibBuilder.loadTexts: mscFriDnaOperationalTable.setStatus('mandatory') mscFriDnaOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDnaIndex")) if mibBuilder.loadTexts: mscFriDnaOperationalEntry.setStatus('mandatory') mscFriDnaAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriDnaAttribute.setStatus('mandatory') mscFriDnaProvisionalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11), ) if mibBuilder.loadTexts: mscFriDnaProvisionalTable.setStatus('mandatory') mscFriDnaProvisionalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDnaIndex")) if mibBuilder.loadTexts: mscFriDnaProvisionalEntry.setStatus('mandatory') mscFriDnaTypeOfAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("networkDepend", 0), ("international", 1), ("national", 2))).clone('international')).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriDnaTypeOfAddress.setStatus('mandatory') mscFriDnaNumberPlanIndicator = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("x121", 0), ("e164", 1))).clone('x121')).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriDnaNumberPlanIndicator.setStatus('mandatory') mscFriDnaDataNetworkAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1, 3), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 15))).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriDnaDataNetworkAddress.setStatus('mandatory') mscFriDynamic = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7)) mscFriDynamicRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1), ) if mibBuilder.loadTexts: mscFriDynamicRowStatusTable.setStatus('mandatory') mscFriDynamicRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynamicIndex")) if mibBuilder.loadTexts: mscFriDynamicRowStatusEntry.setStatus('mandatory') mscFriDynamicRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 1), RowStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriDynamicRowStatus.setStatus('mandatory') mscFriDynamicComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriDynamicComponentName.setStatus('mandatory') mscFriDynamicStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriDynamicStorageType.setStatus('mandatory') mscFriDynamicIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1023))) if mibBuilder.loadTexts: mscFriDynamicIndex.setStatus('mandatory') mscFriDynamicOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 10), ) if mibBuilder.loadTexts: mscFriDynamicOperationalTable.setStatus('mandatory') mscFriDynamicOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynamicIndex")) if mibBuilder.loadTexts: mscFriDynamicOperationalEntry.setStatus('mandatory') mscFriDynamicAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriDynamicAttribute.setStatus('mandatory') mscFriDynOp = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8)) mscFriDynOpRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1), ) if mibBuilder.loadTexts: mscFriDynOpRowStatusTable.setStatus('mandatory') mscFriDynOpRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex")) if mibBuilder.loadTexts: mscFriDynOpRowStatusEntry.setStatus('mandatory') mscFriDynOpRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriDynOpRowStatus.setStatus('mandatory') mscFriDynOpComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriDynOpComponentName.setStatus('mandatory') mscFriDynOpStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriDynOpStorageType.setStatus('mandatory') mscFriDynOpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1023))) if mibBuilder.loadTexts: mscFriDynOpIndex.setStatus('mandatory') mscFriDynOpOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 10), ) if mibBuilder.loadTexts: mscFriDynOpOperationalTable.setStatus('mandatory') mscFriDynOpOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex")) if mibBuilder.loadTexts: mscFriDynOpOperationalEntry.setStatus('mandatory') mscFriDynOpAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriDynOpAttribute.setStatus('mandatory') mscFriDynOpInitial = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2)) mscFriDynOpInitialRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1), ) if mibBuilder.loadTexts: mscFriDynOpInitialRowStatusTable.setStatus('mandatory') mscFriDynOpInitialRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpInitialIndex")) if mibBuilder.loadTexts: mscFriDynOpInitialRowStatusEntry.setStatus('mandatory') mscFriDynOpInitialRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 1), RowStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriDynOpInitialRowStatus.setStatus('mandatory') mscFriDynOpInitialComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriDynOpInitialComponentName.setStatus('mandatory') mscFriDynOpInitialStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriDynOpInitialStorageType.setStatus('mandatory') mscFriDynOpInitialIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: mscFriDynOpInitialIndex.setStatus('mandatory') mscFriDynOpInitialOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 10), ) if mibBuilder.loadTexts: mscFriDynOpInitialOperationalTable.setStatus('mandatory') mscFriDynOpInitialOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpInitialIndex")) if mibBuilder.loadTexts: mscFriDynOpInitialOperationalEntry.setStatus('mandatory') mscFriDynOpInitialAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriDynOpInitialAttribute.setStatus('mandatory') mscFriDynOpInitialProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 11), ) if mibBuilder.loadTexts: mscFriDynOpInitialProvisionedTable.setStatus('mandatory') mscFriDynOpInitialProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpInitialIndex")) if mibBuilder.loadTexts: mscFriDynOpInitialProvisionedEntry.setStatus('mandatory') mscFriDynOpInitialProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 11, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriDynOpInitialProvAttribute.setStatus('mandatory') mscFriDynOpOptional = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3)) mscFriDynOpOptionalRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1), ) if mibBuilder.loadTexts: mscFriDynOpOptionalRowStatusTable.setStatus('mandatory') mscFriDynOpOptionalRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpOptionalIndex")) if mibBuilder.loadTexts: mscFriDynOpOptionalRowStatusEntry.setStatus('mandatory') mscFriDynOpOptionalRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriDynOpOptionalRowStatus.setStatus('mandatory') mscFriDynOpOptionalComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriDynOpOptionalComponentName.setStatus('mandatory') mscFriDynOpOptionalStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriDynOpOptionalStorageType.setStatus('mandatory') mscFriDynOpOptionalIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: mscFriDynOpOptionalIndex.setStatus('mandatory') mscFriDynOpOptionalOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 10), ) if mibBuilder.loadTexts: mscFriDynOpOptionalOperationalTable.setStatus('mandatory') mscFriDynOpOptionalOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpOptionalIndex")) if mibBuilder.loadTexts: mscFriDynOpOptionalOperationalEntry.setStatus('mandatory') mscFriDynOpOptionalAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriDynOpOptionalAttribute.setStatus('mandatory') mscFriDynOpOptionalProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 11), ) if mibBuilder.loadTexts: mscFriDynOpOptionalProvisionedTable.setStatus('mandatory') mscFriDynOpOptionalProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 11, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpOptionalIndex")) if mibBuilder.loadTexts: mscFriDynOpOptionalProvisionedEntry.setStatus('mandatory') mscFriDynOpOptionalProvAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 11, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriDynOpOptionalProvAttribute.setStatus('mandatory') mscFriDynOpDynamic = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4)) mscFriDynOpDynamicRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1), ) if mibBuilder.loadTexts: mscFriDynOpDynamicRowStatusTable.setStatus('mandatory') mscFriDynOpDynamicRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpDynamicIndex")) if mibBuilder.loadTexts: mscFriDynOpDynamicRowStatusEntry.setStatus('mandatory') mscFriDynOpDynamicRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 1), RowStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriDynOpDynamicRowStatus.setStatus('mandatory') mscFriDynOpDynamicComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriDynOpDynamicComponentName.setStatus('mandatory') mscFriDynOpDynamicStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriDynOpDynamicStorageType.setStatus('mandatory') mscFriDynOpDynamicIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: mscFriDynOpDynamicIndex.setStatus('mandatory') mscFriDynOpDynamicOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 10), ) if mibBuilder.loadTexts: mscFriDynOpDynamicOperationalTable.setStatus('mandatory') mscFriDynOpDynamicOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpDynamicIndex")) if mibBuilder.loadTexts: mscFriDynOpDynamicOperationalEntry.setStatus('mandatory') mscFriDynOpDynamicAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriDynOpDynamicAttribute.setStatus('mandatory') mscFriDynOpDynOpJr = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5)) mscFriDynOpDynOpJrRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1), ) if mibBuilder.loadTexts: mscFriDynOpDynOpJrRowStatusTable.setStatus('mandatory') mscFriDynOpDynOpJrRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpDynOpJrIndex")) if mibBuilder.loadTexts: mscFriDynOpDynOpJrRowStatusEntry.setStatus('mandatory') mscFriDynOpDynOpJrRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriDynOpDynOpJrRowStatus.setStatus('mandatory') mscFriDynOpDynOpJrComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriDynOpDynOpJrComponentName.setStatus('mandatory') mscFriDynOpDynOpJrStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriDynOpDynOpJrStorageType.setStatus('mandatory') mscFriDynOpDynOpJrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: mscFriDynOpDynOpJrIndex.setStatus('mandatory') mscFriDynOpDynOpJrOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 10), ) if mibBuilder.loadTexts: mscFriDynOpDynOpJrOperationalTable.setStatus('mandatory') mscFriDynOpDynOpJrOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriDynOpDynOpJrIndex")) if mibBuilder.loadTexts: mscFriDynOpDynOpJrOperationalEntry.setStatus('mandatory') mscFriDynOpDynOpJrAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriDynOpDynOpJrAttribute.setStatus('mandatory') mscFriEvent = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9)) mscFriEventRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1), ) if mibBuilder.loadTexts: mscFriEventRowStatusTable.setStatus('mandatory') mscFriEventRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriEventIndex")) if mibBuilder.loadTexts: mscFriEventRowStatusEntry.setStatus('mandatory') mscFriEventRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 1), RowStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriEventRowStatus.setStatus('mandatory') mscFriEventComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriEventComponentName.setStatus('mandatory') mscFriEventStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriEventStorageType.setStatus('mandatory') mscFriEventIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: mscFriEventIndex.setStatus('mandatory') mscFriRegistered = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18)) mscFriRegisteredRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1), ) if mibBuilder.loadTexts: mscFriRegisteredRowStatusTable.setStatus('mandatory') mscFriRegisteredRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriRegisteredIndex")) if mibBuilder.loadTexts: mscFriRegisteredRowStatusEntry.setStatus('mandatory') mscFriRegisteredRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 1), RowStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriRegisteredRowStatus.setStatus('mandatory') mscFriRegisteredComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriRegisteredComponentName.setStatus('mandatory') mscFriRegisteredStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscFriRegisteredStorageType.setStatus('mandatory') mscFriRegisteredIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 15))) if mibBuilder.loadTexts: mscFriRegisteredIndex.setStatus('mandatory') mscFriRegisteredDataTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 10), ) if mibBuilder.loadTexts: mscFriRegisteredDataTable.setStatus('mandatory') mscFriRegisteredDataEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriIndex"), (0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscFriRegisteredIndex")) if mibBuilder.loadTexts: mscFriRegisteredDataEntry.setStatus('mandatory') mscFriRegisteredAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscFriRegisteredAttribute.setStatus('mandatory') mscRegistered = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004)) mscRegisteredRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1), ) if mibBuilder.loadTexts: mscRegisteredRowStatusTable.setStatus('mandatory') mscRegisteredRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscRegisteredIndex")) if mibBuilder.loadTexts: mscRegisteredRowStatusEntry.setStatus('mandatory') mscRegisteredRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 1), RowStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscRegisteredRowStatus.setStatus('mandatory') mscRegisteredComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscRegisteredComponentName.setStatus('mandatory') mscRegisteredStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: mscRegisteredStorageType.setStatus('mandatory') mscRegisteredIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 15))) if mibBuilder.loadTexts: mscRegisteredIndex.setStatus('mandatory') mscRegisteredDataTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 10), ) if mibBuilder.loadTexts: mscRegisteredDataTable.setStatus('mandatory') mscRegisteredDataEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-CasTestMIB", "mscRegisteredIndex")) if mibBuilder.loadTexts: mscRegisteredDataEntry.setStatus('mandatory') mscRegisteredAttribute = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: mscRegisteredAttribute.setStatus('mandatory') casTestGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1)) casTestGroupCA = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1, 1)) casTestGroupCA02 = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1, 1, 3)) casTestGroupCA02A = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1, 1, 3, 2)) casTestCapabilities = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3)) casTestCapabilitiesCA = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3, 1)) casTestCapabilitiesCA02 = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3, 1, 3)) casTestCapabilitiesCA02A = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3, 1, 3, 2)) mibBuilder.exportSymbols("Nortel-MsCarrier-MscPassport-CasTestMIB", mscExampleDashedOfDashedListRowStatus=mscExampleDashedOfDashedListRowStatus, mscFriDynOpOptionalRowStatusTable=mscFriDynOpOptionalRowStatusTable, mscExampleHexStrIndicesRowStatus=mscExampleHexStrIndicesRowStatus, mscExampleIpAddressOperFreeIpAddressArrayValue=mscExampleIpAddressOperFreeIpAddressArrayValue, mscExampleHexStrIndicesRowStatusEntry=mscExampleHexStrIndicesRowStatusEntry, mscExampleWildBcdOperFreeWildBcdListTable=mscExampleWildBcdOperFreeWildBcdListTable, mscExampleEnumOperFreeEnumArrayValue=mscExampleEnumOperFreeEnumArrayValue, mscExampleDashedProvFreeDashedReplicatedTable=mscExampleDashedProvFreeDashedReplicatedTable, mscExampleWildBcdRowStatusTable=mscExampleWildBcdRowStatusTable, mscExampleMiscellaneousProvFreeLongReplicatedIndex=mscExampleMiscellaneousProvFreeLongReplicatedIndex, mscExampleDashedProvFreeDashedVectorIndex=mscExampleDashedProvFreeDashedVectorIndex, mscExampleWildBcdRowStatus=mscExampleWildBcdRowStatus, mscExampleMiscellaneousProvFreeTimeReplicatedValue=mscExampleMiscellaneousProvFreeTimeReplicatedValue, mscExampleNsapNativeEntry=mscExampleNsapNativeEntry, mscExampleHexProvFreeHexVectorEntry=mscExampleHexProvFreeHexVectorEntry, mscFriDnaIndex=mscFriDnaIndex, mscExampleEnumProvFreeEnumListValue=mscExampleEnumProvFreeEnumListValue, mscExampleIpAddrIndicesProvisionedEntry=mscExampleIpAddrIndicesProvisionedEntry, mscExampleStringOperFreeHexOnly=mscExampleStringOperFreeHexOnly, mscExampleIpAddressProvFreeIpAddressVectorEntry=mscExampleIpAddressProvFreeIpAddressVectorEntry, mscExampleHexProvFreeHex1=mscExampleHexProvFreeHex1, mscExampleFixedPtProvFreeFixedPtListRowStatus=mscExampleFixedPtProvFreeFixedPtListRowStatus, mscExampleFourIndicesProvisionedEntry=mscExampleFourIndicesProvisionedEntry, mscExampleHexStrIndicesProvAttribute=mscExampleHexStrIndicesProvAttribute, mscExampleSequenceOperFreeSequenceReplicatedRowStatus=mscExampleSequenceOperFreeSequenceReplicatedRowStatus, mscExampleIpAddressOperFreeIpAddressReplicatedValue=mscExampleIpAddressOperFreeIpAddressReplicatedValue, mscExampleHexProvFreeHexArrayColumnIndex=mscExampleHexProvFreeHexArrayColumnIndex, mscExampleIpAddressOperFreeIpAddressVectorValue=mscExampleIpAddressOperFreeIpAddressVectorValue, mscFriPfListUnsignedTable=mscFriPfListUnsignedTable, mscExampleFixedPtProvStructFixedPtArrayColumnIndex=mscExampleFixedPtProvStructFixedPtArrayColumnIndex, mscExampleHexProvFreeHexListValue=mscExampleHexProvFreeHexListValue, mscExampleStringProvFreeStrArrayEntry=mscExampleStringProvFreeStrArrayEntry, mscExampleExtendedProvStructExtended=mscExampleExtendedProvStructExtended, mscExampleDecimalPsIntArrayColumnIndex=mscExampleDecimalPsIntArrayColumnIndex, mscExampleStringProvFreeAsciiOnly=mscExampleStringProvFreeAsciiOnly, mscExampleWildBcdOperationalTable=mscExampleWildBcdOperationalTable, mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex=mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex, mscFriDnaNumberPlanIndicator=mscFriDnaNumberPlanIndicator, mscExampleWildBcdOperFreeWildBcdVectorEntry=mscExampleWildBcdOperFreeWildBcdVectorEntry, mscExampleBcdOperFreeBcdVectorValue=mscExampleBcdOperFreeBcdVectorValue, mscExampleDecimalPfIntArrayValue=mscExampleDecimalPfIntArrayValue, mscFriOfListComponentTable=mscFriOfListComponentTable, mscExampleDashedRowStatusTable=mscExampleDashedRowStatusTable, mscExampleDecimalOperFreeCounter32=mscExampleDecimalOperFreeCounter32, mscExampleSignedProvStructSignedArrayRowIndex=mscExampleSignedProvStructSignedArrayRowIndex, mscExampleSignedProvFreeSignedVector1Table=mscExampleSignedProvFreeSignedVector1Table, mscExampleFixedPtProvFreeFixedPtVectorEntry=mscExampleFixedPtProvFreeFixedPtVectorEntry, mscExampleRequiredIndicesRowStatus=mscExampleRequiredIndicesRowStatus, mscExampleMiscellaneousProvFreeTimeList2Table=mscExampleMiscellaneousProvFreeTimeList2Table, mscExampleSignedProvStructSignedVectorValue=mscExampleSignedProvStructSignedVectorValue, mscExampleBcdProvFreeBcdArrayColumnIndex=mscExampleBcdProvFreeBcdArrayColumnIndex, mscExampleMiscellaneousOperFreeGauge64=mscExampleMiscellaneousOperFreeGauge64, mscFriRowStatusTable=mscFriRowStatusTable, mscExampleExtendedOperFreeExtendedListRowStatus=mscExampleExtendedOperFreeExtendedListRowStatus, mscExampleStringProvisionalEntry=mscExampleStringProvisionalEntry, mscExampleDashedProvFreeDashedListValue=mscExampleDashedProvFreeDashedListValue, mscExampleSignedProvFreeSignedArray1Table=mscExampleSignedProvFreeSignedArray1Table, mscExampleWildBcdOperStructWildBcd=mscExampleWildBcdOperStructWildBcd, mscExampleBcdProvFreeBcdArray1RowIndex=mscExampleBcdProvFreeBcdArray1RowIndex, mscExampleEnumOperationalTable=mscExampleEnumOperationalTable, mscExampleWildBcdOperStructWildBcdArrayColumnIndex=mscExampleWildBcdOperStructWildBcdArrayColumnIndex, mscExampleHexProvFreeHexVector1Table=mscExampleHexProvFreeHexVector1Table, mscExampleNsapNativeTable=mscExampleNsapNativeTable, mscExampleStringOperationalEntry=mscExampleStringOperationalEntry, casTestCapabilities=casTestCapabilities, mscExampleSignedProvFreeSignedArray1RowIndex=mscExampleSignedProvFreeSignedArray1RowIndex, mscExampleHexProvEnumSub=mscExampleHexProvEnumSub, mscExampleHexProvFreeHexReplicated1Table=mscExampleHexProvFreeHexReplicated1Table, mscExampleStringOperFreeStrVectorIndex=mscExampleStringOperFreeStrVectorIndex, mscExampleExtended=mscExampleExtended, mscExampleDecimalRowStatusTable=mscExampleDecimalRowStatusTable, mscExampleHexProvFreeHexVector1Value=mscExampleHexProvFreeHexVector1Value, mscExampleTwoIndicesTwoIndex=mscExampleTwoIndicesTwoIndex, mscExampleDecimalPfIntVectorEntry=mscExampleDecimalPfIntVectorEntry, mscExampleSequenceIndicesProvisionedTable=mscExampleSequenceIndicesProvisionedTable, mscExampleFixedPtOperStructFixedPtArrayEntry=mscExampleFixedPtOperStructFixedPtArrayEntry, mscExampleEnumProvFreeEnumReplicatedEntry=mscExampleEnumProvFreeEnumReplicatedEntry, mscExampleFixedPtProvFreeFixedPtArrayEntry=mscExampleFixedPtProvFreeFixedPtArrayEntry, mscExampleIpAddressRowStatusTable=mscExampleIpAddressRowStatusTable, mscExampleObjIdIndicesProvisionedEntry=mscExampleObjIdIndicesProvisionedEntry, mscExampleObjectIdComponentName=mscExampleObjectIdComponentName, mscExampleNsapAtmAddrTable=mscExampleNsapAtmAddrTable, mscExampleHexIndicesOneIndex=mscExampleHexIndicesOneIndex, mscExampleEnumProvisionalEntry=mscExampleEnumProvisionalEntry, mscExampleMiscellaneousOperStructLong=mscExampleMiscellaneousOperStructLong, mscExampleFourIndicesOneIndex=mscExampleFourIndicesOneIndex, mscExampleBcdIndicesComponentName=mscExampleBcdIndicesComponentName, mscExampleSignedOperStructSigned=mscExampleSignedOperStructSigned, mscExampleDecimalProvStructIntSet=mscExampleDecimalProvStructIntSet, mscExampleHexProvFreeHexReplicatedIndex=mscExampleHexProvFreeHexReplicatedIndex, mscFriDynOpOptionalProvisionedEntry=mscFriDynOpOptionalProvisionedEntry, mscExampleSequence=mscExampleSequence, mscExampleEnumRowStatus=mscExampleEnumRowStatus, mscExampleHexProvFreeHexVector1Index=mscExampleHexProvFreeHexVector1Index, mscFriDynOpInitialRowStatusTable=mscFriDynOpInitialRowStatusTable, mscExampleObjIdIndicesProvisionedTable=mscExampleObjIdIndicesProvisionedTable, mscExampleThreeIndicesProvisionedTable=mscExampleThreeIndicesProvisionedTable, mscExampleWildBcdProvisionalTable=mscExampleWildBcdProvisionalTable, mscExampleDecimalOfIntArrayTable=mscExampleDecimalOfIntArrayTable, mscExampleHexIndicesThreeIndex=mscExampleHexIndicesThreeIndex, mscExampleHexStrIndicesStorageType=mscExampleHexStrIndicesStorageType, mscExampleWildBcdProvFreeWildBcd=mscExampleWildBcdProvFreeWildBcd, mscExampleDecimalPsIntVectorIndex=mscExampleDecimalPsIntVectorIndex, mscExampleDecimalProvDecimalSub=mscExampleDecimalProvDecimalSub, mscExampleIpAddressProvFreeIpAddressListValue=mscExampleIpAddressProvFreeIpAddressListValue, mscExampleSignedProvStructSignedArrayEntry=mscExampleSignedProvStructSignedArrayEntry, mscExampleSignedProvFreeSignedListTable=mscExampleSignedProvFreeSignedListTable, mscExampleStringOperStructHexOnly=mscExampleStringOperStructHexOnly, mscExampleBcdOperFreeBcdReplicatedTable=mscExampleBcdOperFreeBcdReplicatedTable, mscExampleIpAddressOperStructIpAddressVectorIndex=mscExampleIpAddressOperStructIpAddressVectorIndex, casTestCapabilitiesCA=casTestCapabilitiesCA, mscExampleWildBcdOperFreeWildBcdVectorValue=mscExampleWildBcdOperFreeWildBcdVectorValue, mscExampleStringOperFreeStrArrayValue=mscExampleStringOperFreeStrArrayValue, mscExampleExtendedRowStatusTable=mscExampleExtendedRowStatusTable, mscExampleBcdProvFreeBcd=mscExampleBcdProvFreeBcd, mscFriProvisionalStructSetUnsigned=mscFriProvisionalStructSetUnsigned, mscFriDynOpRowStatusEntry=mscFriDynOpRowStatusEntry, mscExampleMiscellaneousProvFreeTimeListValue=mscExampleMiscellaneousProvFreeTimeListValue, mscExampleBcdProvEnumSub=mscExampleBcdProvEnumSub, mscFriDnaStorageType=mscFriDnaStorageType, mscFriPfListUnsignedValue=mscFriPfListUnsignedValue, mscExampleStringProvFreeHexOnly1=mscExampleStringProvFreeHexOnly1, mscFriDnaProvisionalTable=mscFriDnaProvisionalTable, mscExampleDashedProvStructDashedVectorEntry=mscExampleDashedProvStructDashedVectorEntry, mscExampleAsciiIndicesProvisionedEntry=mscExampleAsciiIndicesProvisionedEntry, mscExampleExtendedOperFreeExtendedReplicatedIndex=mscExampleExtendedOperFreeExtendedReplicatedIndex, mscExampleMiscellaneousOperFreeLongReplicatedEntry=mscExampleMiscellaneousOperFreeLongReplicatedEntry, mscExampleWildBcdOperFreeWildBcdArrayEntry=mscExampleWildBcdOperFreeWildBcdArrayEntry, mscExampleObjIdIndicesTwoIndex=mscExampleObjIdIndicesTwoIndex, mscExampleDashedOfDashedReplicatedTable=mscExampleDashedOfDashedReplicatedTable, mscFriProvisionalStructSimpleSigned=mscFriProvisionalStructSimpleSigned, mscExampleMiscellaneousProvEnumSub=mscExampleMiscellaneousProvEnumSub, mscExampleExtendedProvFreeExtendedArrayColumnIndex=mscExampleExtendedProvFreeExtendedArrayColumnIndex, mscExampleWildBcdProvFreeWildBcdVectorValue=mscExampleWildBcdProvFreeWildBcdVectorValue, mscExampleProvEnumSubCreatedTable=mscExampleProvEnumSubCreatedTable, mscExampleSignedProvFreeSignedArrayRowIndex=mscExampleSignedProvFreeSignedArrayRowIndex, mscExampleExtendedOperationalEntry=mscExampleExtendedOperationalEntry, mscExampleDashedProvFreeDashedReplicatedRowStatus=mscExampleDashedProvFreeDashedReplicatedRowStatus, mscExampleDashedOfDashedReplicatedEntry=mscExampleDashedOfDashedReplicatedEntry, mscExampleDashedIndicesTwoIndex=mscExampleDashedIndicesTwoIndex, mscExampleExtendedOperStructExtendedVectorIndex=mscExampleExtendedOperStructExtendedVectorIndex, mscExampleDecimalPfIntArray1Table=mscExampleDecimalPfIntArray1Table, mscExampleHexProvFreeHexArray2RowIndex=mscExampleHexProvFreeHexArray2RowIndex, mscExampleMiscellaneousProvStructLong=mscExampleMiscellaneousProvStructLong, mscExampleBcdOperFreeBcdListValue=mscExampleBcdOperFreeBcdListValue, mscExampleSequenceOperFreeSequenceReplicatedTable=mscExampleSequenceOperFreeSequenceReplicatedTable, mscExampleWildBcdProvStructWildBcdVectorIndex=mscExampleWildBcdProvStructWildBcdVectorIndex, mscExampleFixedPtProvStructFixedPtSet=mscExampleFixedPtProvStructFixedPtSet, mscExampleEnumOperFreeEnumArrayEntry=mscExampleEnumOperFreeEnumArrayEntry, mscExampleDashedProvFreeDashedArrayValue=mscExampleDashedProvFreeDashedArrayValue, mscExampleProvMyComponentName=mscExampleProvMyComponentName, mscExampleBcdProvStructBcdArrayColumnIndex=mscExampleBcdProvStructBcdArrayColumnIndex, mscExampleBcdProvFreeBcdReplicatedTable=mscExampleBcdProvFreeBcdReplicatedTable, mscExampleStringOperFreeStrListEntry=mscExampleStringOperFreeStrListEntry, mscExampleIpAddrIndicesRowStatusTable=mscExampleIpAddrIndicesRowStatusTable, mscExampleExtendedOperFreeExtendedVectorEntry=mscExampleExtendedOperFreeExtendedVectorEntry, mscExampleEnumRowStatusTable=mscExampleEnumRowStatusTable, mscFriDynOpDynamicOperationalEntry=mscFriDynOpDynamicOperationalEntry, mscExampleHexStrIndicesProvisionedTable=mscExampleHexStrIndicesProvisionedTable, mscExampleIpAddressProvFreeIpAddressList1Value=mscExampleIpAddressProvFreeIpAddressList1Value, mscExampleFixedPtOperStructFixedPtArrayTable=mscExampleFixedPtOperStructFixedPtArrayTable, mscExampleSignedProvFreeSignedArrayEntry=mscExampleSignedProvFreeSignedArrayEntry, mscExampleDashedOfDashedArrayColumnIndex=mscExampleDashedOfDashedArrayColumnIndex, mscExampleHexProvFreeHexArrayEntry=mscExampleHexProvFreeHexArrayEntry, mscExampleEnumOperFreeEnum=mscExampleEnumOperFreeEnum, mscExampleOperDecimalSubCreatedTable=mscExampleOperDecimalSubCreatedTable, mscFriPfListUnsignedEntry=mscFriPfListUnsignedEntry, mscExampleOneIndexProvisionedTable=mscExampleOneIndexProvisionedTable, mscExampleStringStorageType=mscExampleStringStorageType, mscFriDynOpDynamic=mscFriDynOpDynamic, mscExampleDashedRowStatusEntry=mscExampleDashedRowStatusEntry, mscExampleFixedPtProvStructFixedPtVectorEntry=mscExampleFixedPtProvStructFixedPtVectorEntry, mscExampleIpAddressProvStructIpAddressVectorEntry=mscExampleIpAddressProvStructIpAddressVectorEntry, mscFriProvisionalStructSimpleAscii=mscFriProvisionalStructSimpleAscii, mscFriDynOpDynOpJrRowStatusTable=mscFriDynOpDynOpJrRowStatusTable, mscExampleHexIndicesRowStatus=mscExampleHexIndicesRowStatus, mscExampleBcdProvFreeBcdArrayEntry=mscExampleBcdProvFreeBcdArrayEntry, mscExampleStringOperStructStrVectorValue=mscExampleStringOperStructStrVectorValue, mscExampleDecimalPfIntArrayEntry=mscExampleDecimalPfIntArrayEntry, mscExampleFixedPtOperFreeFixedPtArrayColumnIndex=mscExampleFixedPtOperFreeFixedPtArrayColumnIndex, mscExampleWildBcdOperFreeWildBcdArrayRowIndex=mscExampleWildBcdOperFreeWildBcdArrayRowIndex, mscExampleIpAddressProvFreeIpAddressReplicatedIndex=mscExampleIpAddressProvFreeIpAddressReplicatedIndex, mscFriDynOpDynOpJrAttribute=mscFriDynOpDynOpJrAttribute, mscExampleFourIndicesStorageType=mscExampleFourIndicesStorageType, mscFriRegisteredComponentName=mscFriRegisteredComponentName, mscExampleWildBcdOperStructWildBcdArrayEntry=mscExampleWildBcdOperStructWildBcdArrayEntry, mscFriDynOpInitialRowStatusEntry=mscFriDynOpInitialRowStatusEntry, mscExampleStringOperFreeStrReplicatedIndex=mscExampleStringOperFreeStrReplicatedIndex, mscFriOfListComponentEntry=mscFriOfListComponentEntry, mscExampleWildBcdStorageType=mscExampleWildBcdStorageType, mscExampleEnumProvStructEnumArrayEntry=mscExampleEnumProvStructEnumArrayEntry, mscExampleOneIndexComponentName=mscExampleOneIndexComponentName, mscExampleWildBcdProvStructWildBcdVectorValue=mscExampleWildBcdProvStructWildBcdVectorValue, mscExampleSequenceProvFreeSequenceReplicatedEntry=mscExampleSequenceProvFreeSequenceReplicatedEntry, mscExampleBcdProvFreeBcdList1Table=mscExampleBcdProvFreeBcdList1Table, mscExampleWildBcdOperStructWildBcdVectorTable=mscExampleWildBcdOperStructWildBcdVectorTable, mscFriPfListAsciiValue=mscFriPfListAsciiValue, mscExampleExtendedOperFreeExtendedReplicatedEntry=mscExampleExtendedOperFreeExtendedReplicatedEntry, mscFriUnknownStatus=mscFriUnknownStatus, mscExampleDecimalPfIntList1RowStatus=mscExampleDecimalPfIntList1RowStatus, mscFriDynOpInitialRowStatus=mscFriDynOpInitialRowStatus, mscExampleMiscellaneousOperFreeTimeTimeOnly=mscExampleMiscellaneousOperFreeTimeTimeOnly, mscFriEscapeCopyGroup=mscFriEscapeCopyGroup, mscExampleFixedPtOperationalTable=mscExampleFixedPtOperationalTable, mscExampleHexProvFreeHexListTable=mscExampleHexProvFreeHexListTable, mscExampleExtendedProvFreeExtendedArrayTable=mscExampleExtendedProvFreeExtendedArrayTable, mscExampleStringProvFreeStrListTable=mscExampleStringProvFreeStrListTable, mscExampleWildBcdOperFreeWildBcdListRowStatus=mscExampleWildBcdOperFreeWildBcdListRowStatus, mscExampleMiscellaneousProvFreeLongReplicatedEntry=mscExampleMiscellaneousProvFreeLongReplicatedEntry, mscFriDnaOperationalEntry=mscFriDnaOperationalEntry, mscExampleDecimalPfIntVectorTable=mscExampleDecimalPfIntVectorTable, mscExampleHexProvFreeHexArray2Table=mscExampleHexProvFreeHexArray2Table, mscExampleEnumProvFreeEnumArray1Table=mscExampleEnumProvFreeEnumArray1Table, mscExampleBcdProvFreeBcdReplicated1Entry=mscExampleBcdProvFreeBcdReplicated1Entry, mscExampleSequenceRowStatusEntry=mscExampleSequenceRowStatusEntry, mscExampleEnumProvisionalTable=mscExampleEnumProvisionalTable, mscExampleSignedOperFreeSignedVectorValue=mscExampleSignedOperFreeSignedVectorValue, mscExampleIpAddressProvFreeIpAddress=mscExampleIpAddressProvFreeIpAddress, mscExampleDecimalOfIntReplicatedEntry=mscExampleDecimalOfIntReplicatedEntry, mscExampleDashedIndicesComponentName=mscExampleDashedIndicesComponentName, mscExampleExtendedOperFreeExtendedReplicatedTable=mscExampleExtendedOperFreeExtendedReplicatedTable, mscExampleHexProvFreeHexVector2Index=mscExampleHexProvFreeHexVector2Index, mscExampleProvisionalTable=mscExampleProvisionalTable, mscExampleFourIndices=mscExampleFourIndices, mscRegistered=mscRegistered, mscExampleIpAddressProvFreeIpAddress1=mscExampleIpAddressProvFreeIpAddress1, mscExampleIpAddressOperStructIpAddressArrayColumnIndex=mscExampleIpAddressOperStructIpAddressArrayColumnIndex, mscExampleNsapNativeValue=mscExampleNsapNativeValue, mscExampleDashedOfDashedVectorTable=mscExampleDashedOfDashedVectorTable, mscExampleStringRowStatusEntry=mscExampleStringRowStatusEntry, mscExampleHexProvFreeHexVectorTable=mscExampleHexProvFreeHexVectorTable, mscExampleExtendedOperStructExtendedArrayEntry=mscExampleExtendedOperStructExtendedArrayEntry, mscExampleDecimalPfIntVector1Entry=mscExampleDecimalPfIntVector1Entry, mscExampleEnumProvStructEnumArrayValue=mscExampleEnumProvStructEnumArrayValue, mscExampleStringComponentName=mscExampleStringComponentName, mscExampleHexProvFreeHexArray1RowIndex=mscExampleHexProvFreeHexArray1RowIndex, mscExampleStringOperStructStrArrayValue=mscExampleStringOperStructStrArrayValue, mscFriOperationalFreeSimpleExtended=mscFriOperationalFreeSimpleExtended, mscExampleIpAddressProvFreeIpAddressArray1Entry=mscExampleIpAddressProvFreeIpAddressArray1Entry, mscExampleStringProvFreeStrVectorIndex=mscExampleStringProvFreeStrVectorIndex, mscExampleDecimalStorageType=mscExampleDecimalStorageType, mscExampleHexProvFreeHexArray1Table=mscExampleHexProvFreeHexArray1Table, mscExampleHexProvStructHexArrayRowIndex=mscExampleHexProvStructHexArrayRowIndex, mscFriDynOpOptionalProvAttribute=mscFriDynOpOptionalProvAttribute, mscExampleSignedOperFreeSigned=mscExampleSignedOperFreeSigned, mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus=mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus, mscExampleDecimalProvFreeInteger=mscExampleDecimalProvFreeInteger, mscExampleHexProvFreeHexVector2Table=mscExampleHexProvFreeHexVector2Table, mscExampleBcdOperFreeBcdVectorTable=mscExampleBcdOperFreeBcdVectorTable, mscExampleEnumOperStructEnumArrayEntry=mscExampleEnumOperStructEnumArrayEntry, mscExampleDashedOfDashedListTable=mscExampleDashedOfDashedListTable, mscExampleHexOfHexArrayValue=mscExampleHexOfHexArrayValue, mscFriOfListEnumerationValue=mscFriOfListEnumerationValue, mscExampleOneIndexRowStatusEntry=mscExampleOneIndexRowStatusEntry) mibBuilder.exportSymbols("Nortel-MsCarrier-MscPassport-CasTestMIB", mscExampleProvFixedPtSubCreatedEntry=mscExampleProvFixedPtSubCreatedEntry, mscExampleHexProvStructHexArrayValue=mscExampleHexProvStructHexArrayValue, mscExampleSequenceIndicesProvisionedEntry=mscExampleSequenceIndicesProvisionedEntry, mscFriDynOpInitialOperationalEntry=mscFriDynOpInitialOperationalEntry, mscExampleDecimalOfIntVectorTable=mscExampleDecimalOfIntVectorTable, mscExampleEnumProvFreeEnumListTable=mscExampleEnumProvFreeEnumListTable, mscExampleStringIndex=mscExampleStringIndex, mscExampleDecimalPfIntReplicated1RowStatus=mscExampleDecimalPfIntReplicated1RowStatus, mscExampleDashedIndicesStorageType=mscExampleDashedIndicesStorageType, mscExampleIpAddressOperStructIpAddress=mscExampleIpAddressOperStructIpAddress, casTestGroupCA02=casTestGroupCA02, mscExampleAsciiIndicesRowStatusEntry=mscExampleAsciiIndicesRowStatusEntry, mscExampleDecimalOfIntReplicatedValue=mscExampleDecimalOfIntReplicatedValue, mscExampleEnumProvFreeEnumArray1Value=mscExampleEnumProvFreeEnumArray1Value, mscExampleExtendedRowStatus=mscExampleExtendedRowStatus, mscExampleSignedOperStructSignedArrayColumnIndex=mscExampleSignedOperStructSignedArrayColumnIndex, mscExampleRequiredIndicesStorageType=mscExampleRequiredIndicesStorageType, mscExampleHexOfHexVectorIndex=mscExampleHexOfHexVectorIndex, mscExampleDecimalOfIntArrayRowIndex=mscExampleDecimalOfIntArrayRowIndex, mscExampleMiscellaneousProvFreeTime=mscExampleMiscellaneousProvFreeTime, mscExampleEnumOperFreeEnumVectorEntry=mscExampleEnumOperFreeEnumVectorEntry, mscExampleSignedProvStructSignedVectorIndex=mscExampleSignedProvStructSignedVectorIndex, mscFriDynOpInitialIndex=mscFriDynOpInitialIndex, mscExampleExtendedProvFreeExtendedReplicatedTable=mscExampleExtendedProvFreeExtendedReplicatedTable, mscExampleHexProvFreeHexReplicatedEntry=mscExampleHexProvFreeHexReplicatedEntry, mscFriDynOpOptionalProvisionedTable=mscFriDynOpOptionalProvisionedTable, mscExampleDashedProvStructDashedArrayValue=mscExampleDashedProvStructDashedArrayValue, mscExampleExtendedOperFreeExtendedArrayValue=mscExampleExtendedOperFreeExtendedArrayValue, mscExampleHexStrIndicesOneIndex=mscExampleHexStrIndicesOneIndex, mscFriProvisionalFreeSimpleDashed=mscFriProvisionalFreeSimpleDashed, mscExampleObjIdIndicesRowStatusTable=mscExampleObjIdIndicesRowStatusTable, mscFriDynOpDynOpJrComponentName=mscFriDynOpDynOpJrComponentName, mscExampleProvEnumSubCreatedValue=mscExampleProvEnumSubCreatedValue, mscExampleOperFixedPtSubcomponentsCreatedValue=mscExampleOperFixedPtSubcomponentsCreatedValue, mscExampleDecimalOfIntReplicatedRowStatus=mscExampleDecimalOfIntReplicatedRowStatus, mscExampleStringOperStructStrArrayColumnIndex=mscExampleStringOperStructStrArrayColumnIndex, mscExampleOneIndexRowStatusTable=mscExampleOneIndexRowStatusTable, mscExampleEnumIndex=mscExampleEnumIndex, mscExampleThreeIndicesRowStatus=mscExampleThreeIndicesRowStatus, mscExampleOperEnumSubCreatedEntry=mscExampleOperEnumSubCreatedEntry, mscExampleTwoIndicesRowStatusTable=mscExampleTwoIndicesRowStatusTable, mscExampleObjectIdOperationalEntry=mscExampleObjectIdOperationalEntry, mscFriProvisionalFreeSimpleAscii=mscFriProvisionalFreeSimpleAscii, mscExampleSequenceOperFreeSequenceListRowStatus=mscExampleSequenceOperFreeSequenceListRowStatus, mscExampleDecimalOsIntArrayTable=mscExampleDecimalOsIntArrayTable, mscExampleStringProvStructHexOnly=mscExampleStringProvStructHexOnly, mscExampleStringOperStructStrVectorEntry=mscExampleStringOperStructStrVectorEntry, mscExampleIpAddrIndicesProvisionedTable=mscExampleIpAddrIndicesProvisionedTable, mscExampleStringOperFreeStrListTable=mscExampleStringOperFreeStrListTable, mscExampleStringOperStructStrArrayRowIndex=mscExampleStringOperStructStrArrayRowIndex, mscExampleAsciiIndicesStorageType=mscExampleAsciiIndicesStorageType, mscExampleDashedProvFreeDashedReplicatedEntry=mscExampleDashedProvFreeDashedReplicatedEntry, mscExampleExtendedOperFreeExtendedArrayTable=mscExampleExtendedOperFreeExtendedArrayTable, mscFriIndex=mscFriIndex, mscExampleTwoIndicesProvisionedEntry=mscExampleTwoIndicesProvisionedEntry, mscExampleEnumOperStructEnumVectorIndex=mscExampleEnumOperStructEnumVectorIndex, mscExampleDecimalOfIntArrayValue=mscExampleDecimalOfIntArrayValue, mscExampleHexProvisionalEntry=mscExampleHexProvisionalEntry, mscExampleDashedProvFreeDashedVectorTable=mscExampleDashedProvFreeDashedVectorTable, mscExampleRequiredIndicesProvisionedTable=mscExampleRequiredIndicesProvisionedTable, mscExampleFixedPtProvFreeFixedPtArrayValue=mscExampleFixedPtProvFreeFixedPtArrayValue, mscExampleDecimalOfIntReplicatedTable=mscExampleDecimalOfIntReplicatedTable, mscFriPfListUnsignedRowStatus=mscFriPfListUnsignedRowStatus, mscExampleHexProvFreeHexVector2Entry=mscExampleHexProvFreeHexVector2Entry, mscExampleMiscellaneousProvFreeTimeListEntry=mscExampleMiscellaneousProvFreeTimeListEntry, mscExampleBcdProvFreeBcdVector1Index=mscExampleBcdProvFreeBcdVector1Index, mscFriDynOpDynOpJrOperationalEntry=mscFriDynOpDynOpJrOperationalEntry, mscExampleStringProvStructStrArrayRowIndex=mscExampleStringProvStructStrArrayRowIndex, mscExampleSignedOperationalEntry=mscExampleSignedOperationalEntry, mscExampleBcdProvFreeBcdListEntry=mscExampleBcdProvFreeBcdListEntry, mscFriDnaTypeOfAddress=mscFriDnaTypeOfAddress, mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus=mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus, mscExampleRequiredIndicesRowStatusTable=mscExampleRequiredIndicesRowStatusTable, mscExampleStringProvFreeStrReplicatedValue=mscExampleStringProvFreeStrReplicatedValue, mscExampleIpAddressProvStructIpAddressVectorValue=mscExampleIpAddressProvStructIpAddressVectorValue, mscFriStorageType=mscFriStorageType, mscExampleHexIndicesProvAttribute=mscExampleHexIndicesProvAttribute, mscFriOperationalStructSimpleEnum=mscFriOperationalStructSimpleEnum, mscExampleDecimalProvisionalTable=mscExampleDecimalProvisionalTable, mscExampleHexProvFreeHexReplicatedRowStatus=mscExampleHexProvFreeHexReplicatedRowStatus, mscFriDynamicAttribute=mscFriDynamicAttribute, mscExampleSignedOperStructSignedArrayEntry=mscExampleSignedOperStructSignedArrayEntry, mscFriUsageState=mscFriUsageState, mscExampleSequenceProvFreeSequenceReplicatedTable=mscExampleSequenceProvFreeSequenceReplicatedTable, mscFriStateEntry=mscFriStateEntry, mscExampleBcdIndicesStorageType=mscExampleBcdIndicesStorageType, mscExampleDecimalPfIntList1Table=mscExampleDecimalPfIntList1Table, mscExampleDecimalIndicesProvisionedEntry=mscExampleDecimalIndicesProvisionedEntry, mscExampleTwoIndicesOneIndex=mscExampleTwoIndicesOneIndex, mscExampleObjectIdOperFreeObjIdReplicatedRowStatus=mscExampleObjectIdOperFreeObjIdReplicatedRowStatus, mscExampleStringProvStructStrVectorValue=mscExampleStringProvStructStrVectorValue, mscExampleMiscellaneousOperFreeLongListRowStatus=mscExampleMiscellaneousOperFreeLongListRowStatus, mscExampleExtendedOperFreeExtendedArrayRowIndex=mscExampleExtendedOperFreeExtendedArrayRowIndex, mscExampleBcdIndicesRowStatus=mscExampleBcdIndicesRowStatus, mscExampleThreeIndicesTwoIndex=mscExampleThreeIndicesTwoIndex, mscExampleDecimalPfIntArrayColumnIndex=mscExampleDecimalPfIntArrayColumnIndex, mscExampleDashedProvFreeDashedArrayColumnIndex=mscExampleDashedProvFreeDashedArrayColumnIndex, mscExampleObjectIdOperationalTable=mscExampleObjectIdOperationalTable, mscExampleExtendedOperStructExtendedArrayColumnIndex=mscExampleExtendedOperStructExtendedArrayColumnIndex, mscExampleSequenceProvisionalEntry=mscExampleSequenceProvisionalEntry, mscExampleExtendedOperFreeExtendedArrayEntry=mscExampleExtendedOperFreeExtendedArrayEntry, mscExampleNsapAtmAddrEntry=mscExampleNsapAtmAddrEntry, mscExampleHexProvStructHexVectorTable=mscExampleHexProvStructHexVectorTable, mscExampleFixedPtRowStatus=mscExampleFixedPtRowStatus, mscExampleObjectIdOperFreeObjId=mscExampleObjectIdOperFreeObjId, mscExampleFixedPtProvStructFixedPtArrayEntry=mscExampleFixedPtProvStructFixedPtArrayEntry, mscExampleMiscellaneousProvFreeTimeList2RowStatus=mscExampleMiscellaneousProvFreeTimeList2RowStatus, mscExampleMiscellaneousOperFreeLong=mscExampleMiscellaneousOperFreeLong, mscFriEventRowStatus=mscFriEventRowStatus, mscExampleStringProvFreeStrReplicatedRowStatus=mscExampleStringProvFreeStrReplicatedRowStatus, mscExampleIpAddrIndicesProvAttribute=mscExampleIpAddrIndicesProvAttribute, mscExampleIpAddressProvFreeIpAddressArrayTable=mscExampleIpAddressProvFreeIpAddressArrayTable, mscExampleExtendedRowStatusEntry=mscExampleExtendedRowStatusEntry, mscExampleDashedProvFreeDashed=mscExampleDashedProvFreeDashed, mscExampleIpAddrIndicesOneIndex=mscExampleIpAddrIndicesOneIndex, mscExampleObjIdIndicesRowStatusEntry=mscExampleObjIdIndicesRowStatusEntry, mscExampleExtendedOperFreeExtendedListValue=mscExampleExtendedOperFreeExtendedListValue, mscExampleWildBcdOperFreeWildBcd=mscExampleWildBcdOperFreeWildBcd, mscExampleBcdOperStructBcdArrayColumnIndex=mscExampleBcdOperStructBcdArrayColumnIndex, mscExampleFixedPtProvFreeFixedPtListValue=mscExampleFixedPtProvFreeFixedPtListValue, mscExampleSignedProvStructSignedArrayColumnIndex=mscExampleSignedProvStructSignedArrayColumnIndex, mscExampleBcdIndicesProvisionedTable=mscExampleBcdIndicesProvisionedTable, mscExampleIpAddressOperFreeIpAddressReplicatedTable=mscExampleIpAddressOperFreeIpAddressReplicatedTable, mscExampleRowStatus=mscExampleRowStatus, mscExampleDecimal=mscExampleDecimal, mscExampleBcdProvFreeBcdVectorValue=mscExampleBcdProvFreeBcdVectorValue, mscExampleBcdProvFreeBcdList1Entry=mscExampleBcdProvFreeBcdList1Entry, mscExampleHexStrIndices=mscExampleHexStrIndices, mscExampleMiscellaneousProvFreeTimeList1Value=mscExampleMiscellaneousProvFreeTimeList1Value, mscExampleDecimalPsIntVectorValue=mscExampleDecimalPsIntVectorValue, mscFriDynOpOperationalEntry=mscFriDynOpOperationalEntry, mscExampleExtendedProvStructExtendedArrayValue=mscExampleExtendedProvStructExtendedArrayValue, mscExampleOneIndexProvisionedEntry=mscExampleOneIndexProvisionedEntry, mscExampleIpAddressProvFreeIpAddressReplicatedTable=mscExampleIpAddressProvFreeIpAddressReplicatedTable, mscExampleObjectIdRowStatusTable=mscExampleObjectIdRowStatusTable, mscExampleDashedOfDashedReplicatedIndex=mscExampleDashedOfDashedReplicatedIndex, mscExampleObjIdIndicesOneIndex=mscExampleObjIdIndicesOneIndex, mscFriEventIndex=mscFriEventIndex, mscExampleWildBcdProvFreeWildBcdReplicatedEntry=mscExampleWildBcdProvFreeWildBcdReplicatedEntry, mscFriEventStorageType=mscFriEventStorageType, mscExampleDashedProvStructDashedArrayTable=mscExampleDashedProvStructDashedArrayTable, mscExampleFourIndicesProvAttribute=mscExampleFourIndicesProvAttribute, mscFriDynOpRowStatusTable=mscFriDynOpRowStatusTable, mscExampleBcdIndicesTwoIndex=mscExampleBcdIndicesTwoIndex, mscExampleObjectIdProvFreeObjIdReplicatedIndex=mscExampleObjectIdProvFreeObjIdReplicatedIndex, mscExampleStringProvFreeStrArrayValue=mscExampleStringProvFreeStrArrayValue, mscExampleIpAddressOperFreeIpAddressVectorEntry=mscExampleIpAddressOperFreeIpAddressVectorEntry, mscExampleStringProvStructStrArrayColumnIndex=mscExampleStringProvStructStrArrayColumnIndex, mscExampleProvEnumSubCreatedRowStatus=mscExampleProvEnumSubCreatedRowStatus, mscExampleStringOperFreeStrReplicatedTable=mscExampleStringOperFreeStrReplicatedTable, mscExampleProvFixedPtSubCreatedRowStatus=mscExampleProvFixedPtSubCreatedRowStatus, mscExampleNsapRowStatusTable=mscExampleNsapRowStatusTable, mscExampleBcdComponentName=mscExampleBcdComponentName, mscFriRowStatusEntry=mscFriRowStatusEntry, mscExampleBcdOperFreeBcdReplicatedIndex=mscExampleBcdOperFreeBcdReplicatedIndex, mscExampleHexProvFreeHexArray2Entry=mscExampleHexProvFreeHexArray2Entry, mscExampleFixedPtProvStructFixedPtVectorTable=mscExampleFixedPtProvStructFixedPtVectorTable, mscExampleSequenceProvStructSequence=mscExampleSequenceProvStructSequence, mscExampleSignedProvStructSignedVectorEntry=mscExampleSignedProvStructSignedVectorEntry, mscExampleFixedPtProvFreeFixedPtReplicatedTable=mscExampleFixedPtProvFreeFixedPtReplicatedTable, mscExampleHexComponentName=mscExampleHexComponentName, mscExampleEnumProvFreeEnumArrayEntry=mscExampleEnumProvFreeEnumArrayEntry, mscExampleIpAddressProvFreeIpAddressReplicatedValue=mscExampleIpAddressProvFreeIpAddressReplicatedValue, mscFriDynOpOptionalOperationalTable=mscFriDynOpOptionalOperationalTable, mscExampleBcdProvStructBcdVectorIndex=mscExampleBcdProvStructBcdVectorIndex, mscFriDynOpDynamicRowStatusTable=mscFriDynOpDynamicRowStatusTable, mscExampleHexProvisionalTable=mscExampleHexProvisionalTable, mscFriEscapeSet=mscFriEscapeSet, mscExampleStringProvFreeStrArray1Table=mscExampleStringProvFreeStrArray1Table, mscExampleEnumProvFreeEnumVectorTable=mscExampleEnumProvFreeEnumVectorTable, mscFriDynOpOptionalRowStatusEntry=mscFriDynOpOptionalRowStatusEntry, mscExampleBcdOperFreeBcdListEntry=mscExampleBcdOperFreeBcdListEntry, mscExampleDecimalPfIntList1Entry=mscExampleDecimalPfIntList1Entry, mscExampleBcdIndicesProvisionedEntry=mscExampleBcdIndicesProvisionedEntry, mscExampleObjectIdOperFreeObjIdListRowStatus=mscExampleObjectIdOperFreeObjIdListRowStatus, mscFriEscapeCopyComponent=mscFriEscapeCopyComponent, mscExampleMiscellaneousProvFreeTimeList3Entry=mscExampleMiscellaneousProvFreeTimeList3Entry, mscExampleHexProvFreeHexListRowStatus=mscExampleHexProvFreeHexListRowStatus, mscExampleDashedOfDashedReplicatedRowStatus=mscExampleDashedOfDashedReplicatedRowStatus, mscFriOperationalFreeSimpleObjId=mscFriOperationalFreeSimpleObjId, mscExampleRequiredIndicesDecimalIndex=mscExampleRequiredIndicesDecimalIndex, mscExampleBcdOperFreeBcdArrayColumnIndex=mscExampleBcdOperFreeBcdArrayColumnIndex, mscExampleHexOsHexVectorTable=mscExampleHexOsHexVectorTable, mscExampleObjectIdProvFreeObjIdReplicatedValue=mscExampleObjectIdProvFreeObjIdReplicatedValue, mscExampleExtendedOperStructExtended=mscExampleExtendedOperStructExtended, mscExampleSequenceOperFreeSequenceReplicatedEntry=mscExampleSequenceOperFreeSequenceReplicatedEntry, mscExampleSignedOperStructSignedArrayRowIndex=mscExampleSignedOperStructSignedArrayRowIndex, mscExampleTwoIndicesRowStatusEntry=mscExampleTwoIndicesRowStatusEntry, mscExampleMiscellaneousProvFreeLongListRowStatus=mscExampleMiscellaneousProvFreeLongListRowStatus, mscExampleDashedOsDashedArrayEntry=mscExampleDashedOsDashedArrayEntry, mscExampleFixedPtProvFreeFixedPtListEntry=mscExampleFixedPtProvFreeFixedPtListEntry, mscExampleEnumProvFreeEnumListRowStatus=mscExampleEnumProvFreeEnumListRowStatus, mscExampleBcdProvFreeBcdReplicatedRowStatus=mscExampleBcdProvFreeBcdReplicatedRowStatus, mscExampleEnumProvFreeEnumReplicatedValue=mscExampleEnumProvFreeEnumReplicatedValue, mscExampleHexStrIndicesThreeIndex=mscExampleHexStrIndicesThreeIndex, mscExampleStringProvStructStrVectorTable=mscExampleStringProvStructStrVectorTable, mscExampleExtendedOperationalTable=mscExampleExtendedOperationalTable, mscExampleFixedPtOperStructFixedPtArrayRowIndex=mscExampleFixedPtOperStructFixedPtArrayRowIndex, mscExampleEnumProvFreeEnumReplicatedTable=mscExampleEnumProvFreeEnumReplicatedTable, mscFriDynOpInitialStorageType=mscFriDynOpInitialStorageType, mscExampleIpAddressRowStatusEntry=mscExampleIpAddressRowStatusEntry, mscExampleFixedPtOperFreeFixedPtVectorValue=mscExampleFixedPtOperFreeFixedPtVectorValue, mscExampleExtendedOperStructExtendedArrayValue=mscExampleExtendedOperStructExtendedArrayValue, mscExampleHexProvFreeHexReplicated1Entry=mscExampleHexProvFreeHexReplicated1Entry, mscExampleFixedPtOperFreeFixedPtSet=mscExampleFixedPtOperFreeFixedPtSet, mscExampleIpAddressOperFreeIpAddressListTable=mscExampleIpAddressOperFreeIpAddressListTable, mscExampleEnumProvStructEnumVectorEntry=mscExampleEnumProvStructEnumVectorEntry, mscExampleIpAddressOperFreeIpAddressVectorIndex=mscExampleIpAddressOperFreeIpAddressVectorIndex, mscExampleWildBcdProvFreeWildBcdArrayTable=mscExampleWildBcdProvFreeWildBcdArrayTable, mscExampleDashedComponentName=mscExampleDashedComponentName, mscExampleDashedProvisionalTable=mscExampleDashedProvisionalTable, mscExampleEnumProvFreeEnumSet=mscExampleEnumProvFreeEnumSet, mscExampleWildBcdOperStructWildBcdArrayValue=mscExampleWildBcdOperStructWildBcdArrayValue, mscExampleFourIndicesRowStatusTable=mscExampleFourIndicesRowStatusTable, mscExampleHexProvFreeHexReplicated1Index=mscExampleHexProvFreeHexReplicated1Index, mscExampleIpAddressOperFreeIpAddressListRowStatus=mscExampleIpAddressOperFreeIpAddressListRowStatus, mscExampleMiscellaneousOperFreeTimeDateTimeMinute=mscExampleMiscellaneousOperFreeTimeDateTimeMinute, mscExampleDashedIndicesProvAttribute=mscExampleDashedIndicesProvAttribute, mscExampleDashedOfDashedArrayRowIndex=mscExampleDashedOfDashedArrayRowIndex, mscExampleHexProvFreeHexReplicatedTable=mscExampleHexProvFreeHexReplicatedTable, mscFriAvailabilityStatus=mscFriAvailabilityStatus, mscExampleFixedPtRowStatusEntry=mscExampleFixedPtRowStatusEntry, mscExampleStringProvFreeStrArray1Value=mscExampleStringProvFreeStrArray1Value, mscExampleBcdProvStructBcdArrayEntry=mscExampleBcdProvStructBcdArrayEntry, mscFriDynOpOptional=mscFriDynOpOptional, mscExampleDecimalOsIntArrayRowIndex=mscExampleDecimalOsIntArrayRowIndex, mscExampleDecimalPfIntArray1ColumnIndex=mscExampleDecimalPfIntArray1ColumnIndex, mscExampleOperSignedSubCreatedRowStatus=mscExampleOperSignedSubCreatedRowStatus, mscExampleDecimalOfIntListRowStatus=mscExampleDecimalOfIntListRowStatus, mscExampleHexOsHexVectorEntry=mscExampleHexOsHexVectorEntry, mscFriOperationalFreeSimpleFixed=mscFriOperationalFreeSimpleFixed, mscExampleStringProvFreeAsciiOnly1=mscExampleStringProvFreeAsciiOnly1, mscExampleObjectIdProvisionalEntry=mscExampleObjectIdProvisionalEntry, mscRegisteredRowStatusEntry=mscRegisteredRowStatusEntry, mscExampleOperSignedSubCreatedEntry=mscExampleOperSignedSubCreatedEntry, mscExampleDecimalIndicesProvisionedTable=mscExampleDecimalIndicesProvisionedTable, mscExampleRequiredIndicesProvisionedEntry=mscExampleRequiredIndicesProvisionedEntry, mscFriComponentName=mscFriComponentName, mscFriDynOpDynOpJrStorageType=mscFriDynOpDynOpJrStorageType, mscExampleObjectIdRowStatusEntry=mscExampleObjectIdRowStatusEntry, mscExampleEnumOperFreeEnumVectorValue=mscExampleEnumOperFreeEnumVectorValue, mscExampleDecimalPfIntReplicated1Value=mscExampleDecimalPfIntReplicated1Value, mscExampleBcdOperFreeBcdReplicatedRowStatus=mscExampleBcdOperFreeBcdReplicatedRowStatus, mscFriDynOpDynamicStorageType=mscFriDynOpDynamicStorageType, mscExampleObjectIdProvEnumSub=mscExampleObjectIdProvEnumSub, mscFriDna=mscFriDna, mscExampleIpAddressOperFreeIpAddressReplicatedEntry=mscExampleIpAddressOperFreeIpAddressReplicatedEntry, mscExampleSequenceProvFreeSequenceListValue=mscExampleSequenceProvFreeSequenceListValue, mscFriRegisteredIndex=mscFriRegisteredIndex, mscExampleIpAddressProvEnumSub=mscExampleIpAddressProvEnumSub, mscExampleDashedOsDashedVectorIndex=mscExampleDashedOsDashedVectorIndex, mscExampleThreeIndicesThreeIndex=mscExampleThreeIndicesThreeIndex, mscExampleDecimalIndicesThreeIndex=mscExampleDecimalIndicesThreeIndex, mscExampleDashedProvStructDashedVectorTable=mscExampleDashedProvStructDashedVectorTable) mibBuilder.exportSymbols("Nortel-MsCarrier-MscPassport-CasTestMIB", mscExampleExtendedProvFreeExtendedArrayValue=mscExampleExtendedProvFreeExtendedArrayValue, mscExampleStorageType=mscExampleStorageType, mscFriDynOpDynOpJr=mscFriDynOpDynOpJr, mscExampleDashedOsDashedArrayRowIndex=mscExampleDashedOsDashedArrayRowIndex, mscFriPfListFixedRowStatus=mscFriPfListFixedRowStatus, mscExampleSequenceOperFreeSequenceListTable=mscExampleSequenceOperFreeSequenceListTable, mscExampleEnumIndicesProvisionedTable=mscExampleEnumIndicesProvisionedTable, mscExampleIpAddressProvFreeIpAddressVectorValue=mscExampleIpAddressProvFreeIpAddressVectorValue, mscFriDynamicComponentName=mscFriDynamicComponentName, mscExampleBcdOperFreeBcdArrayEntry=mscExampleBcdOperFreeBcdArrayEntry, mscExampleFixedPtOperStructFixedPtVectorValue=mscExampleFixedPtOperStructFixedPtVectorValue, mscExampleBcdProvFreeBcdListTable=mscExampleBcdProvFreeBcdListTable, mscExampleStringOperFreeStrArrayRowIndex=mscExampleStringOperFreeStrArrayRowIndex, mscExampleFixedPtProvStructFixedPtArrayRowIndex=mscExampleFixedPtProvStructFixedPtArrayRowIndex, mscExampleOperFixedPtSubcomponentsCreatedEntry=mscExampleOperFixedPtSubcomponentsCreatedEntry, mscExampleDashedStorageType=mscExampleDashedStorageType, mscExampleBcdOperStructBcdArrayValue=mscExampleBcdOperStructBcdArrayValue, mscExampleDecimalPfIntVectorValue=mscExampleDecimalPfIntVectorValue, mscExampleTwoIndicesProvAttribute=mscExampleTwoIndicesProvAttribute, mscExampleDashedOfDashedArrayEntry=mscExampleDashedOfDashedArrayEntry, mscExampleSignedRowStatusEntry=mscExampleSignedRowStatusEntry, mscExampleOperStringSubCreatedTable=mscExampleOperStringSubCreatedTable, mscExampleIpAddressOperFreeIpAddressReplicatedIndex=mscExampleIpAddressOperFreeIpAddressReplicatedIndex, mscExampleProvisionalEntry=mscExampleProvisionalEntry, mscExampleStringOperFreeStrArrayColumnIndex=mscExampleStringOperFreeStrArrayColumnIndex, mscExampleBcdProvFreeBcdReplicated1Index=mscExampleBcdProvFreeBcdReplicated1Index, mscExampleBcdProvFreeBcdListValue=mscExampleBcdProvFreeBcdListValue, mscExampleEnumOperStructEnumVectorTable=mscExampleEnumOperStructEnumVectorTable, mscExampleIpAddressProvFreeIpAddressArray1Value=mscExampleIpAddressProvFreeIpAddressArray1Value, mscExampleBcdProvFreeBcdArrayTable=mscExampleBcdProvFreeBcdArrayTable, mscExampleHexProvFreeHexArrayValue=mscExampleHexProvFreeHexArrayValue, mscExampleDashedProvFreeDashedListTable=mscExampleDashedProvFreeDashedListTable, mscExampleOneIndexStorageType=mscExampleOneIndexStorageType, mscExampleHexRowStatus=mscExampleHexRowStatus, mscExampleFixedPt=mscExampleFixedPt, mscExampleBcdProvFreeBcdArrayValue=mscExampleBcdProvFreeBcdArrayValue, mscExampleMiscellaneousProvFreeTimeDateOnly1=mscExampleMiscellaneousProvFreeTimeDateOnly1, mscExampleHexOperationalTable=mscExampleHexOperationalTable, mscExampleMiscellaneousProvisionalTable=mscExampleMiscellaneousProvisionalTable, mscExampleExtendedOperStructExtendedArrayRowIndex=mscExampleExtendedOperStructExtendedArrayRowIndex, mscExampleHexOfHexReplicatedRowStatus=mscExampleHexOfHexReplicatedRowStatus, mscFriEventRowStatusTable=mscFriEventRowStatusTable, mscExampleMiscellaneousProvFreeTimeDateTimeMinute1=mscExampleMiscellaneousProvFreeTimeDateTimeMinute1, mscRegisteredDataEntry=mscRegisteredDataEntry, mscExampleWildBcdProvFreeWildBcdVectorIndex=mscExampleWildBcdProvFreeWildBcdVectorIndex, mscFriDynOpOptionalOperationalEntry=mscFriDynOpOptionalOperationalEntry, mscExampleExtendedProvFreeExtendedReplicatedEntry=mscExampleExtendedProvFreeExtendedReplicatedEntry, mscExampleBcdProvFreeBcdArrayRowIndex=mscExampleBcdProvFreeBcdArrayRowIndex, mscExampleWildBcdOperFreeWildBcdReplicatedIndex=mscExampleWildBcdOperFreeWildBcdReplicatedIndex, mscFriDynOpStorageType=mscFriDynOpStorageType, mscExampleBcdOperFreeBcdReplicatedValue=mscExampleBcdOperFreeBcdReplicatedValue, mscExampleHexRowStatusTable=mscExampleHexRowStatusTable, mscExampleAsciiIndicesProvAttribute=mscExampleAsciiIndicesProvAttribute, mscExampleEnumProvFreeEnumArrayTable=mscExampleEnumProvFreeEnumArrayTable, mscExampleFixedPtOperFreeFixedPtVectorTable=mscExampleFixedPtOperFreeFixedPtVectorTable, mscExampleAsciiIndicesThreeIndex=mscExampleAsciiIndicesThreeIndex, mscExampleDashedProvFreeDashedReplicatedValue=mscExampleDashedProvFreeDashedReplicatedValue, mscExampleEnumProvStructEnumVectorIndex=mscExampleEnumProvStructEnumVectorIndex, mscExampleExtendedOperFreeExtendedVectorIndex=mscExampleExtendedOperFreeExtendedVectorIndex, mscExampleObjIdIndicesProvAttribute=mscExampleObjIdIndicesProvAttribute, mscFriProvisionalFreeSimpleSigned=mscFriProvisionalFreeSimpleSigned, mscFriDnaDataNetworkAddress=mscFriDnaDataNetworkAddress, mscFriStandbyStatus=mscFriStandbyStatus, mscFriDynOpOptionalStorageType=mscFriDynOpOptionalStorageType, mscExampleHexProvFreeHexList1Table=mscExampleHexProvFreeHexList1Table, mscExampleEnumOperStructEnum=mscExampleEnumOperStructEnum, mscFriOperationalEntry=mscFriOperationalEntry, mscExampleStringOperFreeStrArrayTable=mscExampleStringOperFreeStrArrayTable, mscExampleEnumIndicesComponentName=mscExampleEnumIndicesComponentName, mscExampleIpAddressProvStructIpAddressArrayValue=mscExampleIpAddressProvStructIpAddressArrayValue, mscExampleHexProvFreeHexArrayRowIndex=mscExampleHexProvFreeHexArrayRowIndex, mscExampleMiscellaneousOperFreeTime=mscExampleMiscellaneousOperFreeTime, mscExampleExtendedProvStructExtendedVectorEntry=mscExampleExtendedProvStructExtendedVectorEntry, mscExampleBcdOperFreeBcd=mscExampleBcdOperFreeBcd, mscFriOfListEnumerationTable=mscFriOfListEnumerationTable, mscExampleEnumProvStructEnumArrayDayIndex=mscExampleEnumProvStructEnumArrayDayIndex, mscExampleDecimalOfIntListTable=mscExampleDecimalOfIntListTable, mscExampleSignedOperFreeSignedReplicatedTable=mscExampleSignedOperFreeSignedReplicatedTable, mscFriDynOpInitialProvisionedTable=mscFriDynOpInitialProvisionedTable, mscExampleIpAddressRowStatus=mscExampleIpAddressRowStatus, mscExampleExtendedProvFreeExtendedListValue=mscExampleExtendedProvFreeExtendedListValue, mscExampleOperDecimalSubCreatedEntry=mscExampleOperDecimalSubCreatedEntry, mscExampleWildBcdOperFreeWildBcdReplicatedEntry=mscExampleWildBcdOperFreeWildBcdReplicatedEntry, mscFriDynOpComponentName=mscFriDynOpComponentName, mscExampleSignedOperationalTable=mscExampleSignedOperationalTable, mscExampleDashedProvFreeDashedListEntry=mscExampleDashedProvFreeDashedListEntry, mscExampleDecimalPsIntVectorEntry=mscExampleDecimalPsIntVectorEntry, mscExampleSequenceIndicesOneIndex=mscExampleSequenceIndicesOneIndex, mscExampleWildBcdProvStructWildBcdArrayRowIndex=mscExampleWildBcdProvStructWildBcdArrayRowIndex, mscExampleIpAddressProvFreeIpAddressListRowStatus=mscExampleIpAddressProvFreeIpAddressListRowStatus, mscExampleBcdOperFreeBcdListTable=mscExampleBcdOperFreeBcdListTable, mscExampleBcdOperStructBcdArrayRowIndex=mscExampleBcdOperStructBcdArrayRowIndex, mscFriProvisionalTable=mscFriProvisionalTable, mscExampleHexProvFreeHexArray1Value=mscExampleHexProvFreeHexArray1Value, mscFriDnaComponentName=mscFriDnaComponentName, mscExampleEnumProvFreeEnumArrayMonthIndex=mscExampleEnumProvFreeEnumArrayMonthIndex, mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus=mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus, mscFriDynOpDynamicRowStatus=mscFriDynOpDynamicRowStatus, mscFriProvisionalFreeSimpleExtended=mscFriProvisionalFreeSimpleExtended, mscExampleEnumProvFreeEnumVectorEntry=mscExampleEnumProvFreeEnumVectorEntry, mscExampleExtendedProvisionalTable=mscExampleExtendedProvisionalTable, mscFriPfListFixedTable=mscFriPfListFixedTable, mscExampleMiscellaneousOperStructCounter64=mscExampleMiscellaneousOperStructCounter64, mscExampleString=mscExampleString, mscExampleDecimalOperationalEntry=mscExampleDecimalOperationalEntry, mscExampleExtendedProvFreeExtendedReplicatedRowStatus=mscExampleExtendedProvFreeExtendedReplicatedRowStatus, mscRegisteredComponentName=mscRegisteredComponentName, mscExampleOperStringSubCreatedRowStatus=mscExampleOperStringSubCreatedRowStatus, mscFri=mscFri, mscExampleMiscellaneousOperFreeLongReplicatedIndex=mscExampleMiscellaneousOperFreeLongReplicatedIndex, mscFriOperationalFreeSimpleBcd=mscFriOperationalFreeSimpleBcd, mscExampleSignedProvFreeSignedVectorIndex=mscExampleSignedProvFreeSignedVectorIndex, mscExampleMiscellaneousOperFreeTimeListValue=mscExampleMiscellaneousOperFreeTimeListValue, mscExampleDashedOperationalTable=mscExampleDashedOperationalTable, mscExampleIpAddressOperStructIpAddressVectorValue=mscExampleIpAddressOperStructIpAddressVectorValue, mscExampleDashedIndicesProvisionedTable=mscExampleDashedIndicesProvisionedTable, mscExampleExtendedProvFreeExtendedArrayRowIndex=mscExampleExtendedProvFreeExtendedArrayRowIndex, mscExampleWildBcdOperStructWildBcdVectorIndex=mscExampleWildBcdOperStructWildBcdVectorIndex, mscFriRegisteredRowStatusTable=mscFriRegisteredRowStatusTable, mscExampleWildBcdIndex=mscExampleWildBcdIndex, mscExampleObjectIdOperFreeObjIdReplicatedValue=mscExampleObjectIdOperFreeObjIdReplicatedValue, mscExampleStringRowStatusTable=mscExampleStringRowStatusTable, mscExampleHexOsHexArrayEntry=mscExampleHexOsHexArrayEntry, mscExampleEnumProvEnumSub=mscExampleEnumProvEnumSub, mscExampleFixedPtProvStructFixedPtArrayValue=mscExampleFixedPtProvStructFixedPtArrayValue, mscExampleHexOfHexArrayColumnIndex=mscExampleHexOfHexArrayColumnIndex, mscExampleBcdOperStructBcdVectorEntry=mscExampleBcdOperStructBcdVectorEntry, mscExampleWildBcdOperFreeWildBcdArrayTable=mscExampleWildBcdOperFreeWildBcdArrayTable, mscExampleDashedProvStructDashedVectorIndex=mscExampleDashedProvStructDashedVectorIndex, mscExampleBcdIndicesProvAttribute=mscExampleBcdIndicesProvAttribute, mscExampleSequenceOperationalEntry=mscExampleSequenceOperationalEntry, mscExampleIpAddressOperStructIpAddressArrayEntry=mscExampleIpAddressOperStructIpAddressArrayEntry, mscExampleMiscellaneousProvFreeTime1=mscExampleMiscellaneousProvFreeTime1, mscFriRegisteredStorageType=mscFriRegisteredStorageType, mscExampleDecimalOfIntVectorIndex=mscExampleDecimalOfIntVectorIndex, mscExampleHexOsHexVectorValue=mscExampleHexOsHexVectorValue, mscExampleStringProvFreeStrArrayColumnIndex=mscExampleStringProvFreeStrArrayColumnIndex, mscFriAlarmStatus=mscFriAlarmStatus, mscExampleStringProvFreeStrList1Entry=mscExampleStringProvFreeStrList1Entry, mscExampleEnumOperStructEnumSet=mscExampleEnumOperStructEnumSet, mscExampleSignedProvFreeSignedArray1Value=mscExampleSignedProvFreeSignedArray1Value, mscExampleStringProvFreeStrListEntry=mscExampleStringProvFreeStrListEntry, mscExampleAsciiIndicesOneIndex=mscExampleAsciiIndicesOneIndex, mscFriOperationalFreeSimpleSigned=mscFriOperationalFreeSimpleSigned, mscExampleBcdOperFreeBcdArrayValue=mscExampleBcdOperFreeBcdArrayValue, mscExampleEnumProvStructEnumArrayMonthIndex=mscExampleEnumProvStructEnumArrayMonthIndex, mscExampleDecimalPfIntReplicated1Index=mscExampleDecimalPfIntReplicated1Index, mscExampleExtendedProvStructExtendedVectorTable=mscExampleExtendedProvStructExtendedVectorTable, mscExampleBcdProvFreeBcdArray1Value=mscExampleBcdProvFreeBcdArray1Value, mscFriProvisionalStructSimpleExtended=mscFriProvisionalStructSimpleExtended, mscExampleBcdProvStructBcdVectorEntry=mscExampleBcdProvStructBcdVectorEntry, mscFriProvisionalStructSimpleFixed=mscFriProvisionalStructSimpleFixed, mscExampleIpAddressProvFreeIpAddressVector1Table=mscExampleIpAddressProvFreeIpAddressVector1Table, mscExampleBcdProvStructBcdVectorValue=mscExampleBcdProvStructBcdVectorValue, mscExampleDecimalPfIntVector1Index=mscExampleDecimalPfIntVector1Index, mscExampleWildBcdProvStructWildBcdVectorEntry=mscExampleWildBcdProvStructWildBcdVectorEntry, mscFriDynOpDynamicOperationalTable=mscFriDynOpDynamicOperationalTable, mscExampleBcdProvFreeBcdArray1Table=mscExampleBcdProvFreeBcdArray1Table, mscExampleRowStatusTable=mscExampleRowStatusTable, mscExampleHexProvFreeHexArrayTable=mscExampleHexProvFreeHexArrayTable, mscExampleDecimalOsIntVectorEntry=mscExampleDecimalOsIntVectorEntry, mscExampleSequenceIndicesStorageType=mscExampleSequenceIndicesStorageType, mscExampleWildBcdProvStructWildBcdVectorTable=mscExampleWildBcdProvStructWildBcdVectorTable, mscExampleNsapNsapNativeAddress=mscExampleNsapNsapNativeAddress, mscExampleBcdProvFreeBcdList1Value=mscExampleBcdProvFreeBcdList1Value, mscExampleDecimalPsIntArrayValue=mscExampleDecimalPsIntArrayValue, mscExampleStringOperStructAsciiOnly=mscExampleStringOperStructAsciiOnly, mscExampleMiscellaneousIndex=mscExampleMiscellaneousIndex, mscExampleHexProvStructHexVectorEntry=mscExampleHexProvStructHexVectorEntry, mscExampleOperMyComponentName=mscExampleOperMyComponentName, mscFriProvisionalEntry=mscFriProvisionalEntry, mscExampleHexOperStructHex=mscExampleHexOperStructHex, mscFriDynOpAttribute=mscFriDynOpAttribute, mscFriRegisteredDataEntry=mscFriRegisteredDataEntry, mscFriDynOpInitialProvAttribute=mscFriDynOpInitialProvAttribute, mscExampleWildBcdOperFreeWildBcdReplicatedValue=mscExampleWildBcdOperFreeWildBcdReplicatedValue, mscExampleSignedProvFreeSigned=mscExampleSignedProvFreeSigned, mscExampleIpAddressOperFreeIpAddressListValue=mscExampleIpAddressOperFreeIpAddressListValue, mscExampleSequenceIndices=mscExampleSequenceIndices, mscExampleBcdOperationalTable=mscExampleBcdOperationalTable, mscFriOfListEnumerationRowStatus=mscFriOfListEnumerationRowStatus, mscExampleFixedPtOperFreeFixedPtReplicatedValue=mscExampleFixedPtOperFreeFixedPtReplicatedValue, mscExampleExtendedComponentName=mscExampleExtendedComponentName, mscExampleDecimalPfIntArray1RowIndex=mscExampleDecimalPfIntArray1RowIndex, mscExampleDashedOsDashedArrayValue=mscExampleDashedOsDashedArrayValue, mscExampleWildBcdProvFreeWildBcdVectorTable=mscExampleWildBcdProvFreeWildBcdVectorTable, mscExampleEnumProvFreeEnumArray1MonthIndex=mscExampleEnumProvFreeEnumArray1MonthIndex, mscFriDynOpDynOpJrRowStatus=mscFriDynOpDynOpJrRowStatus, mscExampleOneIndexOneIndex=mscExampleOneIndexOneIndex, mscExampleFixedPtProvFreeFixedPtReplicatedValue=mscExampleFixedPtProvFreeFixedPtReplicatedValue, mscExampleMiscellaneousRowStatusEntry=mscExampleMiscellaneousRowStatusEntry, mscExampleDashedOperationalEntry=mscExampleDashedOperationalEntry, mscExampleMiscellaneousOperFreeLongReplicatedTable=mscExampleMiscellaneousOperFreeLongReplicatedTable, casTestGroupCA02A=casTestGroupCA02A, mscExampleSequenceProvFreeSequenceListRowStatus=mscExampleSequenceProvFreeSequenceListRowStatus, mscExampleBcdProvFreeBcdReplicated1Table=mscExampleBcdProvFreeBcdReplicated1Table, mscExampleIpAddressProvStructIpAddressVectorTable=mscExampleIpAddressProvStructIpAddressVectorTable, mscExampleStringRowStatus=mscExampleStringRowStatus, mscExampleFixedPtOperStructFixedPtVectorIndex=mscExampleFixedPtOperStructFixedPtVectorIndex, mscExampleSignedOperStructSignedVectorValue=mscExampleSignedOperStructSignedVectorValue, mscExampleProvStringSubCreatedEntry=mscExampleProvStringSubCreatedEntry, mscExampleIpAddrIndicesComponentName=mscExampleIpAddrIndicesComponentName, mscExampleFourIndicesTwoIndex=mscExampleFourIndicesTwoIndex, mscExampleExtendedOperStructExtendedVectorEntry=mscExampleExtendedOperStructExtendedVectorEntry, mscExampleWildBcdProvFreeWildBcdArrayEntry=mscExampleWildBcdProvFreeWildBcdArrayEntry, mscExampleHexIndicesRowStatusTable=mscExampleHexIndicesRowStatusTable, mscExampleSignedOperStructSignedArrayValue=mscExampleSignedOperStructSignedArrayValue, mscExampleDecimalIndicesOneIndex=mscExampleDecimalIndicesOneIndex, mscRegisteredDataTable=mscRegisteredDataTable, mscExampleEnumProvFreeEnumList1RowStatus=mscExampleEnumProvFreeEnumList1RowStatus, mscExampleIpAddressProvStructIpAddress=mscExampleIpAddressProvStructIpAddress, mscExampleDecimalOperStructInteger=mscExampleDecimalOperStructInteger, mscExampleSignedOperFreeSignedListTable=mscExampleSignedOperFreeSignedListTable, mscExampleWildBcdProvFreeWildBcdArrayColumnIndex=mscExampleWildBcdProvFreeWildBcdArrayColumnIndex, mscExampleDashedIndicesOneIndex=mscExampleDashedIndicesOneIndex, mscExampleProvStringSubCreatedRowStatus=mscExampleProvStringSubCreatedRowStatus, mscExampleFixedPtProvFixedPtSubcomponent=mscExampleFixedPtProvFixedPtSubcomponent, mscExampleFixedPtProvFreeFixedPtVectorIndex=mscExampleFixedPtProvFreeFixedPtVectorIndex, mscExampleDashedIndices=mscExampleDashedIndices, mscExampleExtendedOperFreeExtendedReplicatedRowStatus=mscExampleExtendedOperFreeExtendedReplicatedRowStatus, mscExampleExtendedProvFreeExtendedListTable=mscExampleExtendedProvFreeExtendedListTable, mscExampleStringProvFreeStrArrayTable=mscExampleStringProvFreeStrArrayTable, mscExampleFixedPtOperationalEntry=mscExampleFixedPtOperationalEntry, mscExampleBcdProvStructBcd=mscExampleBcdProvStructBcd, mscExampleDecimalPfIntVector1Value=mscExampleDecimalPfIntVector1Value, mscExampleIpAddressProvFreeIpAddressListTable=mscExampleIpAddressProvFreeIpAddressListTable, mscExampleDashedProvStructDashed=mscExampleDashedProvStructDashed, mscExampleBcdProvStructBcdArrayRowIndex=mscExampleBcdProvStructBcdArrayRowIndex, mscExampleWildBcdProvFreeWildBcdReplicatedTable=mscExampleWildBcdProvFreeWildBcdReplicatedTable, mscExampleFixedPtIndex=mscExampleFixedPtIndex, mscExampleEnumRowStatusEntry=mscExampleEnumRowStatusEntry, mscExampleBcdProvFreeBcdVector1Table=mscExampleBcdProvFreeBcdVector1Table, mscExampleObjectIdOperFreeObjIdReplicatedIndex=mscExampleObjectIdOperFreeObjIdReplicatedIndex, mscExampleStringProvFreeStrVector1Entry=mscExampleStringProvFreeStrVector1Entry, mscExampleRequiredIndicesEnumerationIndex=mscExampleRequiredIndicesEnumerationIndex, mscExampleOperFixedPtSubcomponentsCreatedTable=mscExampleOperFixedPtSubcomponentsCreatedTable, mscExampleHexOfHexVectorValue=mscExampleHexOfHexVectorValue, mscExampleSignedOperStructSignedVectorEntry=mscExampleSignedOperStructSignedVectorEntry, mscFriProvisionalFreeSimpleHex=mscFriProvisionalFreeSimpleHex, mscExampleHexProvFreeHexVector1Entry=mscExampleHexProvFreeHexVector1Entry, mscExampleDecimalComponentName=mscExampleDecimalComponentName, mscFriDynOpDynamicAttribute=mscFriDynOpDynamicAttribute, mscFriAdminState=mscFriAdminState, mscFriEventRowStatusEntry=mscFriEventRowStatusEntry, mscRegisteredRowStatus=mscRegisteredRowStatus, mscExampleIpAddressIndex=mscExampleIpAddressIndex, mscExampleDashedOfDashedReplicatedValue=mscExampleDashedOfDashedReplicatedValue, mscExampleDashedOfDashedVectorValue=mscExampleDashedOfDashedVectorValue, mscExampleExtendedProvFreeExtendedVectorIndex=mscExampleExtendedProvFreeExtendedVectorIndex, mscExampleSequenceIndicesTwoIndex=mscExampleSequenceIndicesTwoIndex, mscExampleBcdRowStatusTable=mscExampleBcdRowStatusTable, mscExampleIpAddressProvFreeIpAddressReplicatedEntry=mscExampleIpAddressProvFreeIpAddressReplicatedEntry, mscExampleBcd=mscExampleBcd, mscExampleBcdOperFreeBcdVectorEntry=mscExampleBcdOperFreeBcdVectorEntry) mibBuilder.exportSymbols("Nortel-MsCarrier-MscPassport-CasTestMIB", mscExampleDecimalOfIntReplicatedIndex=mscExampleDecimalOfIntReplicatedIndex, mscExampleProvSignedSubCreatedRowStatus=mscExampleProvSignedSubCreatedRowStatus, mscExampleWildBcdOperStructWildBcdVectorEntry=mscExampleWildBcdOperStructWildBcdVectorEntry, mscExampleMiscellaneousOperFreeTimeDateOnly=mscExampleMiscellaneousOperFreeTimeDateOnly, mscExampleBcdProvFreeBcd1=mscExampleBcdProvFreeBcd1, mscExampleDashedProvFreeDashedArrayEntry=mscExampleDashedProvFreeDashedArrayEntry, mscExampleHex=mscExampleHex, mscExampleEnumProvStructEnumSet=mscExampleEnumProvStructEnumSet, mscExampleMiscellaneousStorageType=mscExampleMiscellaneousStorageType, casTestMIB=casTestMIB, mscExampleSignedOperFreeSignedArrayColumnIndex=mscExampleSignedOperFreeSignedArrayColumnIndex, mscExampleStringOperStructStrArrayTable=mscExampleStringOperStructStrArrayTable, mscExampleDashedProvFreeDashedVectorEntry=mscExampleDashedProvFreeDashedVectorEntry, mscExampleStringProvFreeStrListRowStatus=mscExampleStringProvFreeStrListRowStatus, mscExampleDashedProvFreeDashedArrayTable=mscExampleDashedProvFreeDashedArrayTable, mscExampleThreeIndicesRowStatusEntry=mscExampleThreeIndicesRowStatusEntry, mscExampleBcdStorageType=mscExampleBcdStorageType, mscExampleDashedIndicesRowStatusTable=mscExampleDashedIndicesRowStatusTable, mscExampleSignedOperFreeSignedReplicatedEntry=mscExampleSignedOperFreeSignedReplicatedEntry, mscExampleFixedPtOperFreeFixedPtListTable=mscExampleFixedPtOperFreeFixedPtListTable, mscExampleHexProvFreeHexListEntry=mscExampleHexProvFreeHexListEntry, mscFriDynOpOptionalRowStatus=mscFriDynOpOptionalRowStatus, mscExampleObjectIdProvFreeObjIdListValue=mscExampleObjectIdProvFreeObjIdListValue, mscExampleSignedProvFreeSignedArray1Entry=mscExampleSignedProvFreeSignedArray1Entry, mscExampleWildBcdOperationalEntry=mscExampleWildBcdOperationalEntry, mscExampleObjectIdProvFreeObjIdListRowStatus=mscExampleObjectIdProvFreeObjIdListRowStatus, mscExampleIpAddrIndicesRowStatus=mscExampleIpAddrIndicesRowStatus, mscExampleMiscellaneousProvFreeTimeReplicatedIndex=mscExampleMiscellaneousProvFreeTimeReplicatedIndex, mscExampleStringProvFreeStrReplicatedEntry=mscExampleStringProvFreeStrReplicatedEntry, mscFriOperationalStructSimpleExtended=mscFriOperationalStructSimpleExtended, mscFriProvisionalStructSimpleEnum=mscFriProvisionalStructSimpleEnum, mscExampleEnumProvFreeEnumList1Table=mscExampleEnumProvFreeEnumList1Table, mscExampleStringProvFreeStrReplicatedTable=mscExampleStringProvFreeStrReplicatedTable, mscExampleHexOfHexListValue=mscExampleHexOfHexListValue, mscExampleStringProvFreeStrReplicatedIndex=mscExampleStringProvFreeStrReplicatedIndex, mscFriOperationalStructSimpleFixed=mscFriOperationalStructSimpleFixed, mscExampleEnumProvFreeEnum=mscExampleEnumProvFreeEnum, mscExampleExtendedProvFreeExtended=mscExampleExtendedProvFreeExtended, mscExampleStringProvFreeStrVectorEntry=mscExampleStringProvFreeStrVectorEntry, mscExampleWildBcdProvFreeWildBcdVectorEntry=mscExampleWildBcdProvFreeWildBcdVectorEntry, mscExampleStringProvStructStrVectorEntry=mscExampleStringProvStructStrVectorEntry, mscExampleIpAddressOperStructIpAddressVectorEntry=mscExampleIpAddressOperStructIpAddressVectorEntry, mscExampleMiscellaneousOperFreeLongReplicatedRowStatus=mscExampleMiscellaneousOperFreeLongReplicatedRowStatus, mscFriDynOp=mscFriDynOp, mscExampleSignedOperFreeSignedListEntry=mscExampleSignedOperFreeSignedListEntry, mscFriDynOpDynamicRowStatusEntry=mscFriDynOpDynamicRowStatusEntry, mscExampleTwoIndicesRowStatus=mscExampleTwoIndicesRowStatus, mscExampleIpAddrIndices=mscExampleIpAddrIndices, mscExampleDashedIndicesRowStatus=mscExampleDashedIndicesRowStatus, mscExampleStringProvFreeStrArray1Entry=mscExampleStringProvFreeStrArray1Entry, mscExampleSequenceProvFreeSequenceReplicatedRowStatus=mscExampleSequenceProvFreeSequenceReplicatedRowStatus, casTestGroupCA=casTestGroupCA, mscExampleDecimalOfIntVectorValue=mscExampleDecimalOfIntVectorValue, mscExampleBcdIndicesRowStatusEntry=mscExampleBcdIndicesRowStatusEntry, mscExampleBcdProvFreeBcdVectorEntry=mscExampleBcdProvFreeBcdVectorEntry, mscExampleSignedComponentName=mscExampleSignedComponentName, mscExampleOneIndex=mscExampleOneIndex, mscExampleExtendedOperFreeExtendedArrayColumnIndex=mscExampleExtendedOperFreeExtendedArrayColumnIndex, mscExampleNsapNativeIndex=mscExampleNsapNativeIndex, mscExampleDashedOfDashedListEntry=mscExampleDashedOfDashedListEntry, casTestCapabilitiesCA02=casTestCapabilitiesCA02, mscExampleSequenceProvisionalTable=mscExampleSequenceProvisionalTable, mscExampleHexProvFreeHexVectorIndex=mscExampleHexProvFreeHexVectorIndex, mscExampleBcdOperStructBcdVectorIndex=mscExampleBcdOperStructBcdVectorIndex, mscExampleSequenceIndicesProvAttribute=mscExampleSequenceIndicesProvAttribute, mscExampleSequenceOperStructSequence=mscExampleSequenceOperStructSequence, mscExampleStringProvStructStrVectorIndex=mscExampleStringProvStructStrVectorIndex, mscExampleSignedProvisionalEntry=mscExampleSignedProvisionalEntry, mscExampleBcdOperStructBcdVectorTable=mscExampleBcdOperStructBcdVectorTable, mscExampleEnumOperFreeEnumVectorTable=mscExampleEnumOperFreeEnumVectorTable, mscExampleFixedPtOperFreeFixedPt=mscExampleFixedPtOperFreeFixedPt, mscExampleObjectIdStorageType=mscExampleObjectIdStorageType, mscExampleAsciiIndicesComponentName=mscExampleAsciiIndicesComponentName, mscExampleDecimalProvStructInteger=mscExampleDecimalProvStructInteger, mscExampleDecimalIndicesTwoIndex=mscExampleDecimalIndicesTwoIndex, mscExampleSequenceComponentName=mscExampleSequenceComponentName, mscRegisteredRowStatusTable=mscRegisteredRowStatusTable, mscExampleHexOsHexArrayValue=mscExampleHexOsHexArrayValue, mscExampleDashedOfDashedVectorIndex=mscExampleDashedOfDashedVectorIndex, mscExampleEnumOperFreeEnumArrayTable=mscExampleEnumOperFreeEnumArrayTable, mscExampleEnumProvFreeEnumReplicatedIndex=mscExampleEnumProvFreeEnumReplicatedIndex, mscFriOperationalStructSimpleBcd=mscFriOperationalStructSimpleBcd, mscExampleDashedRowStatus=mscExampleDashedRowStatus, mscExampleStringOperFreeStrVectorEntry=mscExampleStringOperFreeStrVectorEntry, mscExampleStringProvStringSub=mscExampleStringProvStringSub, mscExampleSequenceProvFreeSequenceReplicatedIndex=mscExampleSequenceProvFreeSequenceReplicatedIndex, mscExampleDashed=mscExampleDashed, mscExampleEnumProvStructEnumVectorTable=mscExampleEnumProvStructEnumVectorTable, mscFriEscapeCheckAttribute=mscFriEscapeCheckAttribute, mscExampleEnumOperFreeEnumReplicatedRowStatus=mscExampleEnumOperFreeEnumReplicatedRowStatus, mscExampleDecimalOperStructIntSet=mscExampleDecimalOperStructIntSet, mscExampleMiscellaneousOperationalEntry=mscExampleMiscellaneousOperationalEntry, mscExampleEnumOperFreeEnumListEntry=mscExampleEnumOperFreeEnumListEntry, mscFriOperationalStructSimpleUnsigned=mscFriOperationalStructSimpleUnsigned, mscExampleFixedPtProvFreeFixedPtListTable=mscExampleFixedPtProvFreeFixedPtListTable, mscExampleStringProvFreeStrVector1Value=mscExampleStringProvFreeStrVector1Value, mscFriEscapeDefaultsComponent=mscFriEscapeDefaultsComponent, mscExampleWildBcdProvFreeWildBcdReplicatedIndex=mscExampleWildBcdProvFreeWildBcdReplicatedIndex, mscExampleNsapStorageType=mscExampleNsapStorageType, mscExampleDecimalPfIntReplicated1Table=mscExampleDecimalPfIntReplicated1Table, mscExampleBcdIndices=mscExampleBcdIndices, mscExampleDecimalPfIntList1Value=mscExampleDecimalPfIntList1Value, mscExampleDecimalPsIntArrayRowIndex=mscExampleDecimalPsIntArrayRowIndex, mscExampleFixedPtProvFreeFixedPtSet=mscExampleFixedPtProvFreeFixedPtSet, mscExampleHexOfHexVectorEntry=mscExampleHexOfHexVectorEntry, mscFriPfListSignedTable=mscFriPfListSignedTable, mscExampleSignedOperFreeSignedReplicatedValue=mscExampleSignedOperFreeSignedReplicatedValue, mscExampleMiscellaneousRowStatusTable=mscExampleMiscellaneousRowStatusTable, mscExampleIpAddressProvFreeIpAddressList1Entry=mscExampleIpAddressProvFreeIpAddressList1Entry, mscExampleProvDecimalSubCreatedRowStatus=mscExampleProvDecimalSubCreatedRowStatus, mscExampleDecimalOsIntArrayValue=mscExampleDecimalOsIntArrayValue, mscExampleIpAddressProvFreeIpAddressVector1Entry=mscExampleIpAddressProvFreeIpAddressVector1Entry, mscFriPfListFixedEntry=mscFriPfListFixedEntry, mscExampleDecimalOfIntListValue=mscExampleDecimalOfIntListValue, mscExampleDecimalOperFreeGauge32=mscExampleDecimalOperFreeGauge32, mscExampleSignedProvFreeSignedArrayColumnIndex=mscExampleSignedProvFreeSignedArrayColumnIndex, mscExampleHexIndicesRowStatusEntry=mscExampleHexIndicesRowStatusEntry, mscExampleDecimalPfIntReplicatedRowStatus=mscExampleDecimalPfIntReplicatedRowStatus, mscExampleBcdOperStructBcd=mscExampleBcdOperStructBcd, mscExampleHexStrIndicesRowStatusTable=mscExampleHexStrIndicesRowStatusTable, mscFriRegisteredAttribute=mscFriRegisteredAttribute, mscFriControlStatus=mscFriControlStatus, mscFriDnaRowStatusEntry=mscFriDnaRowStatusEntry, mscExampleMiscellaneousProvFreeLongListTable=mscExampleMiscellaneousProvFreeLongListTable, mscExampleBcdOperFreeBcdArrayTable=mscExampleBcdOperFreeBcdArrayTable, mscExampleExtendedIndex=mscExampleExtendedIndex, mscExampleDecimalOsIntArrayEntry=mscExampleDecimalOsIntArrayEntry, mscExampleFourIndicesRowStatusEntry=mscExampleFourIndicesRowStatusEntry, mscFriPfListAsciiTable=mscFriPfListAsciiTable, mscExampleHexOsHexArrayColumnIndex=mscExampleHexOsHexArrayColumnIndex, mscExampleHexProvFreeHexVectorValue=mscExampleHexProvFreeHexVectorValue, mscExampleDashedIndicesThreeIndex=mscExampleDashedIndicesThreeIndex, mscExampleOperationalTable=mscExampleOperationalTable, mscExampleSequenceProvFreeSequenceListEntry=mscExampleSequenceProvFreeSequenceListEntry, mscFriEscapeCopyAttribute=mscFriEscapeCopyAttribute, mscExampleFourIndicesComponentName=mscExampleFourIndicesComponentName, mscExampleExtendedProvFreeExtendedReplicatedIndex=mscExampleExtendedProvFreeExtendedReplicatedIndex, mscFriOperationalFreeSimpleComponent=mscFriOperationalFreeSimpleComponent, mscExampleEnumIndicesThreeIndex=mscExampleEnumIndicesThreeIndex, mscFriDynamic=mscFriDynamic, mscFriProvisionalStructSimpleBcd=mscFriProvisionalStructSimpleBcd, mscExampleExtendedProvFreeExtendedReplicatedValue=mscExampleExtendedProvFreeExtendedReplicatedValue, mscExampleObjectIdProvFreeObjIdListTable=mscExampleObjectIdProvFreeObjIdListTable, mscExampleWildBcdProvStructWildBcdArrayTable=mscExampleWildBcdProvStructWildBcdArrayTable, mscExampleEnumIndicesTwoIndex=mscExampleEnumIndicesTwoIndex, mscExampleStringOperFreeStrListValue=mscExampleStringOperFreeStrListValue, mscExampleOperDecimalSubCreatedRowStatus=mscExampleOperDecimalSubCreatedRowStatus, mscExampleSequenceIndicesRowStatus=mscExampleSequenceIndicesRowStatus, mscExampleDecimalPsIntArrayTable=mscExampleDecimalPsIntArrayTable, mscExampleFixedPtRowStatusTable=mscExampleFixedPtRowStatusTable, mscExampleHexProvStructHexArrayColumnIndex=mscExampleHexProvStructHexArrayColumnIndex, mscExampleStringOperFreeStrReplicatedValue=mscExampleStringOperFreeStrReplicatedValue, mscExampleBcdIndex=mscExampleBcdIndex, mscExampleEnumOperFreeEnumSet=mscExampleEnumOperFreeEnumSet, mscExampleWildBcdComponentName=mscExampleWildBcdComponentName, mscExampleWildBcd=mscExampleWildBcd, mscExampleBcdProvFreeBcdVector1Entry=mscExampleBcdProvFreeBcdVector1Entry, mscExampleBcdProvStructBcdArrayTable=mscExampleBcdProvStructBcdArrayTable, mscExampleBcdOperStructBcdVectorValue=mscExampleBcdOperStructBcdVectorValue, mscExampleStringProvFreeStrList1Value=mscExampleStringProvFreeStrList1Value, mscExampleExtendedProvStructExtendedArrayRowIndex=mscExampleExtendedProvStructExtendedArrayRowIndex, mscFriDynOpInitialProvisionedEntry=mscFriDynOpInitialProvisionedEntry, mscExampleIpAddressStorageType=mscExampleIpAddressStorageType, mscExampleSignedStorageType=mscExampleSignedStorageType, mscExampleHexProvStructHexVectorIndex=mscExampleHexProvStructHexVectorIndex, mscExampleStringProvFreeStrVector1Index=mscExampleStringProvFreeStrVector1Index, mscExampleEnumOperStructEnumArrayMonthIndex=mscExampleEnumOperStructEnumArrayMonthIndex, mscFriOperationalFreeSimpleAscii=mscFriOperationalFreeSimpleAscii, mscExampleExtendedOperFreeExtendedListEntry=mscExampleExtendedOperFreeExtendedListEntry, mscExampleEnumProvFreeEnumVectorIndex=mscExampleEnumProvFreeEnumVectorIndex, mscExampleMiscellaneousProvFreeLongReplicatedTable=mscExampleMiscellaneousProvFreeLongReplicatedTable, mscExampleSignedProvFreeSignedVectorTable=mscExampleSignedProvFreeSignedVectorTable, mscExampleOperEnumSubCreatedTable=mscExampleOperEnumSubCreatedTable, mscExampleSequenceStorageType=mscExampleSequenceStorageType, mscExampleSignedOperFreeSignedVectorEntry=mscExampleSignedOperFreeSignedVectorEntry, mscExampleNsap=mscExampleNsap, mscExampleFixedPtOperFreeFixedPtVectorIndex=mscExampleFixedPtOperFreeFixedPtVectorIndex, mscExampleEnumOperStructEnumArrayTable=mscExampleEnumOperStructEnumArrayTable, mscExampleHexProvFreeHexArray1Entry=mscExampleHexProvFreeHexArray1Entry, mscFriDynOpDynOpJrIndex=mscFriDynOpDynOpJrIndex, mscExampleBcdIndicesOneIndex=mscExampleBcdIndicesOneIndex, mscExampleDecimalOperationalTable=mscExampleDecimalOperationalTable, mscExampleFixedPtProvFreeFixedPtArrayColumnIndex=mscExampleFixedPtProvFreeFixedPtArrayColumnIndex, mscExampleEnum=mscExampleEnum, mscExampleDashedProvFreeDashedListRowStatus=mscExampleDashedProvFreeDashedListRowStatus, mscFriEvent=mscFriEvent, mscExampleDecimalProvFreeInteger2=mscExampleDecimalProvFreeInteger2, mscExampleDecimalOfIntArrayEntry=mscExampleDecimalOfIntArrayEntry, mscExampleSignedOperFreeSignedVectorIndex=mscExampleSignedOperFreeSignedVectorIndex, mscExampleHexStrIndicesProvisionedEntry=mscExampleHexStrIndicesProvisionedEntry, mscExampleDecimalIndices=mscExampleDecimalIndices, mscExampleEnumIndices=mscExampleEnumIndices, mscExampleEnumOperFreeEnumListValue=mscExampleEnumOperFreeEnumListValue, mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus=mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus, mscExampleIpAddressProvFreeIpAddressArrayValue=mscExampleIpAddressProvFreeIpAddressArrayValue, mscExampleEnumOperFreeEnumArrayDayIndex=mscExampleEnumOperFreeEnumArrayDayIndex, mscExampleSignedProvFreeSignedVector1Value=mscExampleSignedProvFreeSignedVector1Value, mscExampleWildBcdProvFreeWildBcdListRowStatus=mscExampleWildBcdProvFreeWildBcdListRowStatus, mscExampleIpAddressOperStructIpAddressVectorTable=mscExampleIpAddressOperStructIpAddressVectorTable, casTestCapabilitiesCA02A=casTestCapabilitiesCA02A, mscExampleDecimalOperFreeInteger=mscExampleDecimalOperFreeInteger, mscExampleExtendedProvFreeExtendedVectorEntry=mscExampleExtendedProvFreeExtendedVectorEntry, mscExampleHexOsHexVectorIndex=mscExampleHexOsHexVectorIndex, mscFriProvisionalFreeSimpleComponent=mscFriProvisionalFreeSimpleComponent, mscExampleStringProvStructStrArrayValue=mscExampleStringProvStructStrArrayValue, mscExampleBcdProvisionalEntry=mscExampleBcdProvisionalEntry, mscExampleExtendedStorageType=mscExampleExtendedStorageType, mscExampleHexOperFreeHex=mscExampleHexOperFreeHex, mscExampleEnumOperFreeEnumReplicatedTable=mscExampleEnumOperFreeEnumReplicatedTable, mscExampleSequenceRowStatusTable=mscExampleSequenceRowStatusTable, mscExampleFixedPtProvFreeFixedPtArrayTable=mscExampleFixedPtProvFreeFixedPtArrayTable, mscExampleIpAddressProvFreeIpAddressArray1Table=mscExampleIpAddressProvFreeIpAddressArray1Table, mscExampleEnumProvFreeEnumList1Value=mscExampleEnumProvFreeEnumList1Value, mscExampleObjectIdIndex=mscExampleObjectIdIndex, mscExampleHexProvStructHex=mscExampleHexProvStructHex, mscExampleThreeIndicesOneIndex=mscExampleThreeIndicesOneIndex, mscExampleSignedRowStatus=mscExampleSignedRowStatus, mscExampleThreeIndicesProvAttribute=mscExampleThreeIndicesProvAttribute, mscExampleFixedPtProvStructFixedPtVectorIndex=mscExampleFixedPtProvStructFixedPtVectorIndex, mscExampleDashedProvisionalEntry=mscExampleDashedProvisionalEntry, mscFriOperationalStructSimpleHex=mscFriOperationalStructSimpleHex, mscExampleOperFixedPtSubcomponentsCreatedRowStatus=mscExampleOperFixedPtSubcomponentsCreatedRowStatus, mscExampleStringProvFreeStrVector1Table=mscExampleStringProvFreeStrVector1Table, mscFriOperationalStructSimpleAscii=mscFriOperationalStructSimpleAscii, mscExampleProvDecimalSubCreatedValue=mscExampleProvDecimalSubCreatedValue, mscExampleDecimalIndicesProvAttribute=mscExampleDecimalIndicesProvAttribute, mscExampleFixedPtOperStructFixedPtVectorEntry=mscExampleFixedPtOperStructFixedPtVectorEntry, mscExampleStringProvFreeStrArray1ColumnIndex=mscExampleStringProvFreeStrArray1ColumnIndex, mscFriProvisionalStructSimpleSequence=mscFriProvisionalStructSimpleSequence, mscExampleEnumIndicesProvAttribute=mscExampleEnumIndicesProvAttribute, mscExampleIpAddressProvStructIpAddressArrayColumnIndex=mscExampleIpAddressProvStructIpAddressArrayColumnIndex, mscExampleEnumProvFreeEnumArrayValue=mscExampleEnumProvFreeEnumArrayValue, mscFriDynamicOperationalEntry=mscFriDynamicOperationalEntry, mscExampleEnumIndicesRowStatusEntry=mscExampleEnumIndicesRowStatusEntry, mscExampleHexStorageType=mscExampleHexStorageType, mscExampleEnumIndicesOneIndex=mscExampleEnumIndicesOneIndex, mscExampleProvDecimalSubCreatedTable=mscExampleProvDecimalSubCreatedTable, mscExampleEnumProvFreeEnumVectorValue=mscExampleEnumProvFreeEnumVectorValue, mscExampleDecimalPfIntArray1Value=mscExampleDecimalPfIntArray1Value, mscFriRegistered=mscFriRegistered, mscExampleHexRowStatusEntry=mscExampleHexRowStatusEntry, mscExampleIpAddressProvisionalTable=mscExampleIpAddressProvisionalTable, mscExampleStringProvFreeStrListValue=mscExampleStringProvFreeStrListValue, mscExampleIpAddressOperStructIpAddressArrayRowIndex=mscExampleIpAddressOperStructIpAddressArrayRowIndex, mscExampleExtendedProvStructExtendedArrayTable=mscExampleExtendedProvStructExtendedArrayTable, mscExampleFixedPtProvStructFixedPt=mscExampleFixedPtProvStructFixedPt, mscExampleEnumOperationalEntry=mscExampleEnumOperationalEntry, mscExampleWildBcdProvStructWildBcd=mscExampleWildBcdProvStructWildBcd, mscExampleStringOperFreeStrReplicatedRowStatus=mscExampleStringOperFreeStrReplicatedRowStatus, mscFriPfListAsciiEntry=mscFriPfListAsciiEntry, mscExampleBcdOperFreeBcdListRowStatus=mscExampleBcdOperFreeBcdListRowStatus, mscFriDynOpOperationalTable=mscFriDynOpOperationalTable, mscExampleObjectIdProvFreeObjIdReplicatedEntry=mscExampleObjectIdProvFreeObjIdReplicatedEntry, mscExampleFixedPtProvFreeFixedPtVectorValue=mscExampleFixedPtProvFreeFixedPtVectorValue) mibBuilder.exportSymbols("Nortel-MsCarrier-MscPassport-CasTestMIB", mscFriProceduralStatus=mscFriProceduralStatus, mscFriProvisionalFreeSimpleBcd=mscFriProvisionalFreeSimpleBcd, mscExampleSignedOperFreeSignedArrayTable=mscExampleSignedOperFreeSignedArrayTable, mscExampleDecimalIndicesRowStatusTable=mscExampleDecimalIndicesRowStatusTable, mscExampleSignedOperFreeSignedListRowStatus=mscExampleSignedOperFreeSignedListRowStatus, mscFriOperationalStructSetEnumeration=mscFriOperationalStructSetEnumeration, mscExampleSignedOperFreeSignedArrayValue=mscExampleSignedOperFreeSignedArrayValue, mscExampleWildBcdProvFreeWildBcdListTable=mscExampleWildBcdProvFreeWildBcdListTable, casTestGroup=casTestGroup, mscExampleSignedOperStructSignedVectorIndex=mscExampleSignedOperStructSignedVectorIndex, mscExampleBcdProvFreeBcdReplicated1Value=mscExampleBcdProvFreeBcdReplicated1Value, mscExampleDecimalOsIntVectorIndex=mscExampleDecimalOsIntVectorIndex, mscExampleHexOfHexVectorTable=mscExampleHexOfHexVectorTable, mscFriOperationalStructSimpleDashed=mscFriOperationalStructSimpleDashed, mscFriDnaRowStatusTable=mscFriDnaRowStatusTable, mscExampleIpAddressOperStructIpAddressArrayValue=mscExampleIpAddressOperStructIpAddressArrayValue, mscFriOperationalFreeSimpleDashed=mscFriOperationalFreeSimpleDashed, mscExampleSignedProvFreeSignedVectorEntry=mscExampleSignedProvFreeSignedVectorEntry, mscExampleOneIndexProvAttribute=mscExampleOneIndexProvAttribute, mscExampleSequenceOperationalTable=mscExampleSequenceOperationalTable, mscFriEscapeDefaultsGroup=mscFriEscapeDefaultsGroup, mscExampleBcdProvFreeBcdVectorTable=mscExampleBcdProvFreeBcdVectorTable, mscExampleSignedProvFreeSigned1=mscExampleSignedProvFreeSigned1, mscExampleDecimalPfIntReplicatedValue=mscExampleDecimalPfIntReplicatedValue, mscExampleBcdProvFreeBcdReplicatedEntry=mscExampleBcdProvFreeBcdReplicatedEntry, mscExampleIpAddressOperFreeIpAddressArrayEntry=mscExampleIpAddressOperFreeIpAddressArrayEntry, mscFriPfListFixedValue=mscFriPfListFixedValue, mscExampleNsapRowStatusEntry=mscExampleNsapRowStatusEntry, mscExampleIpAddressProvFreeIpAddressArrayColumnIndex=mscExampleIpAddressProvFreeIpAddressArrayColumnIndex, mscExampleDashedIndicesRowStatusEntry=mscExampleDashedIndicesRowStatusEntry, mscExampleWildBcdProvFreeWildBcdListEntry=mscExampleWildBcdProvFreeWildBcdListEntry, mscExampleSignedProvStructSigned=mscExampleSignedProvStructSigned, mscExampleDecimalPfIntListTable=mscExampleDecimalPfIntListTable, mscExampleIpAddressOperFreeIpAddressArrayTable=mscExampleIpAddressOperFreeIpAddressArrayTable, mscExampleHexStrIndicesTwoIndex=mscExampleHexStrIndicesTwoIndex, mscExampleExtendedProvFreeExtendedListRowStatus=mscExampleExtendedProvFreeExtendedListRowStatus, mscExampleBcdProvFreeBcdReplicatedIndex=mscExampleBcdProvFreeBcdReplicatedIndex, mscExampleBcdOperFreeBcdArrayRowIndex=mscExampleBcdOperFreeBcdArrayRowIndex, mscExampleOperSignedSubCreatedValue=mscExampleOperSignedSubCreatedValue, mscExampleExtendedProvisionalEntry=mscExampleExtendedProvisionalEntry, mscExampleIpAddressOperFreeIpAddressListEntry=mscExampleIpAddressOperFreeIpAddressListEntry, mscExampleIpAddrIndicesTwoIndex=mscExampleIpAddrIndicesTwoIndex, mscExampleEnumComponentName=mscExampleEnumComponentName, mscFriProvisionalStructSimpleHex=mscFriProvisionalStructSimpleHex, mscExampleWildBcdOperStructWildBcdArrayTable=mscExampleWildBcdOperStructWildBcdArrayTable, mscExampleExtendedOperFreeExtended=mscExampleExtendedOperFreeExtended, mscExampleBcdProvStructBcdArrayValue=mscExampleBcdProvStructBcdArrayValue, mscFriEventComponentName=mscFriEventComponentName, mscExampleHexIndicesStorageType=mscExampleHexIndicesStorageType, mscExampleSignedOperStructSignedArrayTable=mscExampleSignedOperStructSignedArrayTable, mscFriOperationalFreeSimpleSequence=mscFriOperationalFreeSimpleSequence, mscFriProvisionalStructSimpleDashed=mscFriProvisionalStructSimpleDashed, mscExampleExtendedProvFreeExtendedVectorTable=mscExampleExtendedProvFreeExtendedVectorTable, mscFriProvisionalFreeSimpleSequence=mscFriProvisionalFreeSimpleSequence, mscExampleSignedProvFreeSignedArray1ColumnIndex=mscExampleSignedProvFreeSignedArray1ColumnIndex, mscExampleDecimalPfIntVector1Table=mscExampleDecimalPfIntVector1Table, mscExampleMiscellaneousProvFreeTimeList2Entry=mscExampleMiscellaneousProvFreeTimeList2Entry, mscExampleSignedProvFreeSignedReplicatedValue=mscExampleSignedProvFreeSignedReplicatedValue, mscExampleIpAddressOperFreeIpAddressArrayRowIndex=mscExampleIpAddressOperFreeIpAddressArrayRowIndex, mscExampleMiscellaneousProvFreeTimeList2Value=mscExampleMiscellaneousProvFreeTimeList2Value, mscExampleDecimalPfIntReplicated1Entry=mscExampleDecimalPfIntReplicated1Entry, mscFriProvisionalFreeSimpleFixed=mscFriProvisionalFreeSimpleFixed, mscExampleDecimalRowStatusEntry=mscExampleDecimalRowStatusEntry, mscExampleHexOfHexReplicatedIndex=mscExampleHexOfHexReplicatedIndex, mscExampleDashedIndex=mscExampleDashedIndex, mscFriDynamicRowStatusEntry=mscFriDynamicRowStatusEntry, mscExampleFixedPtOperFreeFixedPtArrayTable=mscExampleFixedPtOperFreeFixedPtArrayTable, mscExampleOperEnumSubCreatedValue=mscExampleOperEnumSubCreatedValue, mscRegisteredAttribute=mscRegisteredAttribute, mscExampleSignedProvFreeSignedReplicatedRowStatus=mscExampleSignedProvFreeSignedReplicatedRowStatus, mscExampleHexProvStructHexVectorValue=mscExampleHexProvStructHexVectorValue, mscExampleHexProvFreeHexList1Value=mscExampleHexProvFreeHexList1Value, mscFriOperationalTable=mscFriOperationalTable, mscExampleSignedProvStructSignedArrayValue=mscExampleSignedProvStructSignedArrayValue, mscExampleFixedPtOperFreeFixedPtArrayEntry=mscExampleFixedPtOperFreeFixedPtArrayEntry, mscExampleBcdProvisionalTable=mscExampleBcdProvisionalTable, mscExampleDashedProvStructDashedArrayEntry=mscExampleDashedProvStructDashedArrayEntry, mscExampleDecimalProvFreeIntSet=mscExampleDecimalProvFreeIntSet, mscExampleMiscellaneous=mscExampleMiscellaneous, mscExampleDecimalOperFreeIntSet=mscExampleDecimalOperFreeIntSet, mscExampleMiscellaneousOperFreeLongListTable=mscExampleMiscellaneousOperFreeLongListTable, mscExampleThreeIndicesStorageType=mscExampleThreeIndicesStorageType, mscExampleHexProvFreeHexArray2ColumnIndex=mscExampleHexProvFreeHexArray2ColumnIndex, mscExampleSequenceOperFreeSequenceReplicatedIndex=mscExampleSequenceOperFreeSequenceReplicatedIndex, mscExampleObjIdIndicesStorageType=mscExampleObjIdIndicesStorageType, mscExampleBcdProvFreeBcdReplicated1RowStatus=mscExampleBcdProvFreeBcdReplicated1RowStatus, mscExampleEnumOperFreeEnumReplicatedEntry=mscExampleEnumOperFreeEnumReplicatedEntry, mscExampleSignedOperFreeSignedArrayEntry=mscExampleSignedOperFreeSignedArrayEntry, mscExampleIpAddressProvFreeIpAddressArrayRowIndex=mscExampleIpAddressProvFreeIpAddressArrayRowIndex, mscExampleBcdProvFreeBcdVectorIndex=mscExampleBcdProvFreeBcdVectorIndex, mscExampleMiscellaneousProvFreeTimeListRowStatus=mscExampleMiscellaneousProvFreeTimeListRowStatus, mscExampleExtendedOperFreeExtendedVectorTable=mscExampleExtendedOperFreeExtendedVectorTable, mscExampleEnumOperStructEnumVectorEntry=mscExampleEnumOperStructEnumVectorEntry, mscExampleRequiredIndicesProvAttribute=mscExampleRequiredIndicesProvAttribute, mscExampleDecimalRowStatus=mscExampleDecimalRowStatus, mscExampleBcdOperFreeBcdVectorIndex=mscExampleBcdOperFreeBcdVectorIndex, mscExampleDashedOperFreeDashed=mscExampleDashedOperFreeDashed, mscExampleSignedOperFreeSignedReplicatedRowStatus=mscExampleSignedOperFreeSignedReplicatedRowStatus, mscExampleDecimalOfIntListEntry=mscExampleDecimalOfIntListEntry, mscExampleHexOsHexArrayTable=mscExampleHexOsHexArrayTable, mscExampleExtendedProvStructExtendedArrayEntry=mscExampleExtendedProvStructExtendedArrayEntry, mscExampleStringOperFreeStrReplicatedEntry=mscExampleStringOperFreeStrReplicatedEntry, mscExampleSignedProvFreeSignedReplicatedIndex=mscExampleSignedProvFreeSignedReplicatedIndex, mscExampleEnumProvFreeEnumVector1Index=mscExampleEnumProvFreeEnumVector1Index, mscFriDynOpRowStatus=mscFriDynOpRowStatus, mscExampleOperationalEntry=mscExampleOperationalEntry, mscExampleSigned=mscExampleSigned, mscExampleHexIndicesComponentName=mscExampleHexIndicesComponentName, mscExampleMiscellaneousProvFreeTimeDateOnly=mscExampleMiscellaneousProvFreeTimeDateOnly, mscExampleIpAddressProvFreeIpAddressArrayEntry=mscExampleIpAddressProvFreeIpAddressArrayEntry, mscExampleSignedProvFreeSignedArrayValue=mscExampleSignedProvFreeSignedArrayValue, mscExampleSignedProvFreeSignedReplicatedEntry=mscExampleSignedProvFreeSignedReplicatedEntry, mscExampleWildBcdProvisionalEntry=mscExampleWildBcdProvisionalEntry, mscExampleIpAddressProvFreeIpAddressList1RowStatus=mscExampleIpAddressProvFreeIpAddressList1RowStatus, mscExampleMiscellaneousOperFreeLongListValue=mscExampleMiscellaneousOperFreeLongListValue, mscExampleDecimalIndex=mscExampleDecimalIndex, mscExampleStringProvFreeStrVectorTable=mscExampleStringProvFreeStrVectorTable, mscExampleEnumProvFreeEnumSet1=mscExampleEnumProvFreeEnumSet1, mscExampleBcdOperStructBcdArrayEntry=mscExampleBcdOperStructBcdArrayEntry, mscExampleDecimalPfIntVectorIndex=mscExampleDecimalPfIntVectorIndex, mscExampleFixedPtOperFreeFixedPtListEntry=mscExampleFixedPtOperFreeFixedPtListEntry, mscExampleFixedPtOperFreeFixedPtReplicatedTable=mscExampleFixedPtOperFreeFixedPtReplicatedTable, mscExampleEnumOperFreeEnumVectorIndex=mscExampleEnumOperFreeEnumVectorIndex, mscExampleFourIndicesThreeIndex=mscExampleFourIndicesThreeIndex, mscExampleHexProvFreeHexList1Entry=mscExampleHexProvFreeHexList1Entry, mscExampleDecimalPsIntArrayEntry=mscExampleDecimalPsIntArrayEntry, mscExampleTwoIndicesComponentName=mscExampleTwoIndicesComponentName, mscExampleEnumIndicesRowStatus=mscExampleEnumIndicesRowStatus, mscExampleFixedPtStorageType=mscExampleFixedPtStorageType, mscExampleIpAddressOperationalTable=mscExampleIpAddressOperationalTable, mscFriPfListSignedRowStatus=mscFriPfListSignedRowStatus, mscExampleBcdProvFreeBcdList1RowStatus=mscExampleBcdProvFreeBcdList1RowStatus, mscExampleMiscellaneousProvisionalEntry=mscExampleMiscellaneousProvisionalEntry, mscExampleFixedPtOperFreeFixedPtArrayRowIndex=mscExampleFixedPtOperFreeFixedPtArrayRowIndex, mscExampleHexOperationalEntry=mscExampleHexOperationalEntry, mscExampleIpAddressProvFreeIpAddressVector1Index=mscExampleIpAddressProvFreeIpAddressVector1Index, mscFriProvisionalFreeSimpleObjId=mscFriProvisionalFreeSimpleObjId, mscExampleStringOperStructStrVectorIndex=mscExampleStringOperStructStrVectorIndex, mscExampleStringProvStructStrArrayTable=mscExampleStringProvStructStrArrayTable, mscExampleOneIndexRowStatus=mscExampleOneIndexRowStatus, mscExampleWildBcdProvFreeWildBcdArrayValue=mscExampleWildBcdProvFreeWildBcdArrayValue, mscExampleEnumProvFreeEnum1=mscExampleEnumProvFreeEnum1, mscExampleSignedOperFreeSignedListValue=mscExampleSignedOperFreeSignedListValue, mscExampleSignedOperFreeSignedReplicatedIndex=mscExampleSignedOperFreeSignedReplicatedIndex, mscExampleObjectIdProvisionalTable=mscExampleObjectIdProvisionalTable, mscExampleDashedOsDashedVectorTable=mscExampleDashedOsDashedVectorTable, mscExampleMiscellaneousProvFreeTimeTimeOnly1=mscExampleMiscellaneousProvFreeTimeTimeOnly1, mscFriDynOpOptionalIndex=mscFriDynOpOptionalIndex, mscExampleWildBcdOperStructWildBcdVectorValue=mscExampleWildBcdOperStructWildBcdVectorValue, mscExampleSignedProvFreeSignedVector1Entry=mscExampleSignedProvFreeSignedVector1Entry, mscExampleObjIdIndicesRowStatus=mscExampleObjIdIndicesRowStatus, mscFriDynOpDynamicComponentName=mscFriDynOpDynamicComponentName, mscExampleIpAddressOperFreeIpAddressVectorTable=mscExampleIpAddressOperFreeIpAddressVectorTable, mscRegisteredStorageType=mscRegisteredStorageType, mscExampleHexProvFreeHexVector2Value=mscExampleHexProvFreeHexVector2Value, mscExampleSignedOperFreeSignedArrayRowIndex=mscExampleSignedOperFreeSignedArrayRowIndex, mscExampleBcdProvFreeBcdReplicatedValue=mscExampleBcdProvFreeBcdReplicatedValue, mscExampleExtendedOperStructExtendedVectorValue=mscExampleExtendedOperStructExtendedVectorValue, mscExampleStringProvFreeStrArrayRowIndex=mscExampleStringProvFreeStrArrayRowIndex, mscFriRegisteredDataTable=mscFriRegisteredDataTable, mscExampleDashedProvStructDashedVectorValue=mscExampleDashedProvStructDashedVectorValue, mscFriDnaRowStatus=mscFriDnaRowStatus, mscExampleFixedPtProvStructFixedPtVectorValue=mscExampleFixedPtProvStructFixedPtVectorValue, mscExampleStringOperFreeStrArrayEntry=mscExampleStringOperFreeStrArrayEntry, mscExampleWildBcdOperFreeWildBcdListEntry=mscExampleWildBcdOperFreeWildBcdListEntry, mscExampleBcdOperFreeBcdReplicatedEntry=mscExampleBcdOperFreeBcdReplicatedEntry, mscExampleHexProvFreeHexReplicated1RowStatus=mscExampleHexProvFreeHexReplicated1RowStatus, mscExampleStringOperationalTable=mscExampleStringOperationalTable, mscExampleStringOperFreeAsciiOnly=mscExampleStringOperFreeAsciiOnly, mscExampleSequenceOperFreeSequenceListEntry=mscExampleSequenceOperFreeSequenceListEntry, mscExampleEnumOperFreeEnumArrayMonthIndex=mscExampleEnumOperFreeEnumArrayMonthIndex, mscExampleDecimalPfIntArrayRowIndex=mscExampleDecimalPfIntArrayRowIndex, mscExampleMiscellaneousRowStatus=mscExampleMiscellaneousRowStatus, mscExampleExtendedProvFreeExtendedVectorValue=mscExampleExtendedProvFreeExtendedVectorValue, mscExampleObjectIdRowStatus=mscExampleObjectIdRowStatus, mscExampleSequenceProvFreeSequenceListTable=mscExampleSequenceProvFreeSequenceListTable, mscExampleWildBcdOperFreeWildBcdListValue=mscExampleWildBcdOperFreeWildBcdListValue, mscExampleExtendedProvEnumSub=mscExampleExtendedProvEnumSub, mscExampleEnumProvFreeEnumVector1Entry=mscExampleEnumProvFreeEnumVector1Entry, mscExampleIpAddressOperStructIpAddressArrayTable=mscExampleIpAddressOperStructIpAddressArrayTable, mscExampleWildBcdProvStructWildBcdArrayEntry=mscExampleWildBcdProvStructWildBcdArrayEntry, mscExampleFixedPtOperStructFixedPtArrayColumnIndex=mscExampleFixedPtOperStructFixedPtArrayColumnIndex, mscExampleAsciiIndicesRowStatusTable=mscExampleAsciiIndicesRowStatusTable, mscFriDynamicRowStatusTable=mscFriDynamicRowStatusTable, mscExampleEnumProvFreeEnumReplicatedRowStatus=mscExampleEnumProvFreeEnumReplicatedRowStatus, mscExampleProvFixedPtSubCreatedTable=mscExampleProvFixedPtSubCreatedTable, mscExampleFixedPtOperFreeFixedPtListValue=mscExampleFixedPtOperFreeFixedPtListValue, mscExampleBcdIndicesRowStatusTable=mscExampleBcdIndicesRowStatusTable, mscExampleFixedPtOperFreeFixedPtReplicatedIndex=mscExampleFixedPtOperFreeFixedPtReplicatedIndex, mscExampleExtendedOperFreeExtendedVectorValue=mscExampleExtendedOperFreeExtendedVectorValue, mscExampleEnumProvFreeEnumArrayDayIndex=mscExampleEnumProvFreeEnumArrayDayIndex, mscExampleDashedIndicesProvisionedEntry=mscExampleDashedIndicesProvisionedEntry, mscExampleSequenceRowStatus=mscExampleSequenceRowStatus, mscExampleProvEnumSubCreatedEntry=mscExampleProvEnumSubCreatedEntry, mscExampleBcdRowStatusEntry=mscExampleBcdRowStatusEntry, mscExampleFixedPtOperStructFixedPtVectorTable=mscExampleFixedPtOperStructFixedPtVectorTable, mscExampleDecimalIndicesRowStatusEntry=mscExampleDecimalIndicesRowStatusEntry, mscExampleBcdRowStatus=mscExampleBcdRowStatus, mscFriOperationalFreeSimpleHex=mscFriOperationalFreeSimpleHex, mscExampleWildBcdProvFreeWildBcdReplicatedValue=mscExampleWildBcdProvFreeWildBcdReplicatedValue, mscExampleObjectIdProvFreeObjIdReplicatedTable=mscExampleObjectIdProvFreeObjIdReplicatedTable, mscFriDynamicOperationalTable=mscFriDynamicOperationalTable, mscExampleMiscellaneousProvFreeLongReplicatedRowStatus=mscExampleMiscellaneousProvFreeLongReplicatedRowStatus, mscExampleExtendedOperStructExtendedVectorTable=mscExampleExtendedOperStructExtendedVectorTable, mscExampleFixedPtProvFreeFixedPt=mscExampleFixedPtProvFreeFixedPt, mscExampleHexOfHexReplicatedValue=mscExampleHexOfHexReplicatedValue, mscExampleWildBcdRowStatusEntry=mscExampleWildBcdRowStatusEntry, mscExampleWildBcdOperFreeWildBcdArrayValue=mscExampleWildBcdOperFreeWildBcdArrayValue, mscExampleExtendedProvFreeExtendedArrayEntry=mscExampleExtendedProvFreeExtendedArrayEntry, mscExampleThreeIndicesComponentName=mscExampleThreeIndicesComponentName, mscFriProvisionalStructSimpleUnsigned=mscFriProvisionalStructSimpleUnsigned, mscFriDynamicRowStatus=mscFriDynamicRowStatus, mscExampleMiscellaneousOperFreeTimeListRowStatus=mscExampleMiscellaneousOperFreeTimeListRowStatus, mscExampleMiscellaneousProvFreeTimeDateTimeMinute=mscExampleMiscellaneousProvFreeTimeDateTimeMinute, mscFriRegisteredRowStatus=mscFriRegisteredRowStatus, mscFriStateTable=mscFriStateTable, mscExampleEnumOperFreeEnumReplicatedValue=mscExampleEnumOperFreeEnumReplicatedValue, mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus=mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus, mscExampleEnumProvFreeEnumList1Entry=mscExampleEnumProvFreeEnumList1Entry, mscExampleSignedRowStatusTable=mscExampleSignedRowStatusTable, mscFriDynOpInitial=mscFriDynOpInitial, mscExampleIpAddressProvFreeIpAddressArray1RowIndex=mscExampleIpAddressProvFreeIpAddressArray1RowIndex, mscExampleDashedOsDashedArrayTable=mscExampleDashedOsDashedArrayTable, mscExampleObjectIdOperFreeObjIdReplicatedEntry=mscExampleObjectIdOperFreeObjIdReplicatedEntry, mscExampleDecimalPfIntListEntry=mscExampleDecimalPfIntListEntry, mscExampleHexIndicesProvisionedTable=mscExampleHexIndicesProvisionedTable, mscExampleDecimalOsIntArrayColumnIndex=mscExampleDecimalOsIntArrayColumnIndex, mscExampleHexProvFreeHex=mscExampleHexProvFreeHex, mscExampleFixedPtProvFreeFixedPtArrayRowIndex=mscExampleFixedPtProvFreeFixedPtArrayRowIndex, mscExampleRowStatusEntry=mscExampleRowStatusEntry, mscExampleMiscellaneousProvFreeTimeReplicatedTable=mscExampleMiscellaneousProvFreeTimeReplicatedTable, mscExampleHexOfHexArrayEntry=mscExampleHexOfHexArrayEntry, mscExampleObjectId=mscExampleObjectId, mscExampleExtendedOperFreeExtendedListTable=mscExampleExtendedOperFreeExtendedListTable, mscExampleMiscellaneousProvFreeTimeReplicatedEntry=mscExampleMiscellaneousProvFreeTimeReplicatedEntry, mscExampleSignedProvFreeSignedReplicatedTable=mscExampleSignedProvFreeSignedReplicatedTable, mscExampleSequenceProvFreeSequence=mscExampleSequenceProvFreeSequence, mscExampleIpAddressOperFreeIpAddressArrayColumnIndex=mscExampleIpAddressOperFreeIpAddressArrayColumnIndex, mscExampleSignedProvFreeSignedListEntry=mscExampleSignedProvFreeSignedListEntry, mscExampleSignedProvSignedSub=mscExampleSignedProvSignedSub, mscExampleSignedOperFreeSignedVectorTable=mscExampleSignedOperFreeSignedVectorTable, mscExampleRequiredIndicesComponentName=mscExampleRequiredIndicesComponentName, mscFriDynOpOptionalComponentName=mscFriDynOpOptionalComponentName, mscExampleDecimalProvFreeIntSet1=mscExampleDecimalProvFreeIntSet1, mscExampleObjIdIndicesComponentName=mscExampleObjIdIndicesComponentName, mscExampleSignedProvFreeSignedVector1Index=mscExampleSignedProvFreeSignedVector1Index, mscFriDynOpDynamicIndex=mscFriDynOpDynamicIndex, mscExampleDecimalPsIntVectorTable=mscExampleDecimalPsIntVectorTable, mscExampleFixedPtProvFreeFixedPtVectorTable=mscExampleFixedPtProvFreeFixedPtVectorTable, mscExampleThreeIndices=mscExampleThreeIndices, mscExampleEnumProvFreeEnumVector1Table=mscExampleEnumProvFreeEnumVector1Table, mscExampleIpAddrIndicesThreeIndex=mscExampleIpAddrIndicesThreeIndex, mscFriDynOpInitialComponentName=mscFriDynOpInitialComponentName, mscExampleBcdProvFreeBcdListRowStatus=mscExampleBcdProvFreeBcdListRowStatus) mibBuilder.exportSymbols("Nortel-MsCarrier-MscPassport-CasTestMIB", mscExampleDecimalProvisionalEntry=mscExampleDecimalProvisionalEntry, mscExampleDashedOfDashedArrayValue=mscExampleDashedOfDashedArrayValue, mscExampleStringProvFreeStrList1RowStatus=mscExampleStringProvFreeStrList1RowStatus, mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus=mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus, mscExampleFixedPtOperFreeFixedPtArrayValue=mscExampleFixedPtOperFreeFixedPtArrayValue, mscExampleSequenceIndicesThreeIndex=mscExampleSequenceIndicesThreeIndex, mscExampleMiscellaneousProvFreeTimeList1Table=mscExampleMiscellaneousProvFreeTimeList1Table, mscExampleWildBcdProvFreeWildBcdListValue=mscExampleWildBcdProvFreeWildBcdListValue, mscExampleThreeIndicesRowStatusTable=mscExampleThreeIndicesRowStatusTable, mscExampleExtendedOperStructExtendedArrayTable=mscExampleExtendedOperStructExtendedArrayTable, mscExampleEnumProvFreeEnumArray1Entry=mscExampleEnumProvFreeEnumArray1Entry, mscExampleExtendedProvStructExtendedArrayColumnIndex=mscExampleExtendedProvStructExtendedArrayColumnIndex, mscExampleSequenceIndicesRowStatusTable=mscExampleSequenceIndicesRowStatusTable, mscExampleSequenceOperFreeSequenceListValue=mscExampleSequenceOperFreeSequenceListValue, mscExampleDashedOfDashedVectorEntry=mscExampleDashedOfDashedVectorEntry, mscExampleBcdOperStructBcdArrayTable=mscExampleBcdOperStructBcdArrayTable, mscFriRegisteredRowStatusEntry=mscFriRegisteredRowStatusEntry, mscExampleDecimalOsIntVectorValue=mscExampleDecimalOsIntVectorValue, mscExampleFixedPtProvFreeFixedPtReplicatedIndex=mscExampleFixedPtProvFreeFixedPtReplicatedIndex, mscExampleFixedPtComponentName=mscExampleFixedPtComponentName, mscExampleSequenceIndex=mscExampleSequenceIndex, mscExampleDecimalIndicesStorageType=mscExampleDecimalIndicesStorageType, mscExampleExtendedProvStructExtendedVectorIndex=mscExampleExtendedProvStructExtendedVectorIndex, mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus=mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus, mscExampleSignedProvStructSignedVectorTable=mscExampleSignedProvStructSignedVectorTable, mscExampleMiscellaneousProvFreeTimeList1RowStatus=mscExampleMiscellaneousProvFreeTimeList1RowStatus, mscExampleDashedOperStructDashed=mscExampleDashedOperStructDashed, mscFriOperationalState=mscFriOperationalState, mscExampleStringOperStructStrVectorTable=mscExampleStringOperStructStrVectorTable, mscExampleExtendedOperFreeExtendedReplicatedValue=mscExampleExtendedOperFreeExtendedReplicatedValue, mscExampleSignedProvStructSignedArrayTable=mscExampleSignedProvStructSignedArrayTable, mscFriOfListComponentValue=mscFriOfListComponentValue, mscExampleSignedProvFreeSignedListValue=mscExampleSignedProvFreeSignedListValue, mscExampleEnumOperFreeEnumListRowStatus=mscExampleEnumOperFreeEnumListRowStatus, mscFriDynOpInitialOperationalTable=mscFriDynOpInitialOperationalTable, mscExampleObjectIdProvFreeObjIdReplicatedRowStatus=mscExampleObjectIdProvFreeObjIdReplicatedRowStatus, mscExampleEnumIndicesStorageType=mscExampleEnumIndicesStorageType, mscExampleHexOfHexListTable=mscExampleHexOfHexListTable, mscExampleFixedPtProvisionalEntry=mscExampleFixedPtProvisionalEntry, mscRegisteredIndex=mscRegisteredIndex, mscExampleSignedProvFreeSignedVectorValue=mscExampleSignedProvFreeSignedVectorValue, mscExampleDashedProvFreeDashedReplicatedIndex=mscExampleDashedProvFreeDashedReplicatedIndex, mscExampleWildBcdOperStructWildBcdArrayRowIndex=mscExampleWildBcdOperStructWildBcdArrayRowIndex, mscExampleDashedProvFreeDashedVectorValue=mscExampleDashedProvFreeDashedVectorValue, mscExampleBcdProvFreeBcdArray1ColumnIndex=mscExampleBcdProvFreeBcdArray1ColumnIndex, mscExampleEnumProvStructEnumVectorValue=mscExampleEnumProvStructEnumVectorValue, mscExampleMiscellaneousOperFreeTimeListEntry=mscExampleMiscellaneousOperFreeTimeListEntry, mscExampleSignedIndex=mscExampleSignedIndex, mscExampleIpAddressProvFreeIpAddressVector1Value=mscExampleIpAddressProvFreeIpAddressVector1Value, mscFriDynOpDynOpJrOperationalTable=mscFriDynOpDynOpJrOperationalTable, mscExampleMiscellaneousProvFreeLongReplicatedValue=mscExampleMiscellaneousProvFreeLongReplicatedValue, mscExampleEnumProvFreeEnumListEntry=mscExampleEnumProvFreeEnumListEntry, mscExampleHexOfHexListEntry=mscExampleHexOfHexListEntry, mscExampleWildBcdOperFreeWildBcdArrayColumnIndex=mscExampleWildBcdOperFreeWildBcdArrayColumnIndex, mscExampleWildBcdOperFreeWildBcdVectorTable=mscExampleWildBcdOperFreeWildBcdVectorTable, mscExampleThreeIndicesProvisionedEntry=mscExampleThreeIndicesProvisionedEntry, mscExampleProvStringSubCreatedTable=mscExampleProvStringSubCreatedTable, mscExampleEnumStorageType=mscExampleEnumStorageType, mscExampleFourIndicesProvisionedTable=mscExampleFourIndicesProvisionedTable, mscExampleObjectIdProvFreeObjId=mscExampleObjectIdProvFreeObjId, mscExampleRequiredIndices=mscExampleRequiredIndices, mscExampleMiscellaneousOperFreeCounter64=mscExampleMiscellaneousOperFreeCounter64, mscFriPfListSignedValue=mscFriPfListSignedValue, mscExampleFixedPtProvStructFixedPtArrayTable=mscExampleFixedPtProvStructFixedPtArrayTable, mscFriRowStatus=mscFriRowStatus, mscExampleBcdProvFreeBcdVector1Value=mscExampleBcdProvFreeBcdVector1Value, mscExampleStringOperFreeStrVectorTable=mscExampleStringOperFreeStrVectorTable, mscExampleIpAddressProvisionalEntry=mscExampleIpAddressProvisionalEntry, mscExampleProvDecimalSubCreatedEntry=mscExampleProvDecimalSubCreatedEntry, mscExampleEnumOperStructEnumArrayDayIndex=mscExampleEnumOperStructEnumArrayDayIndex, mscExampleIpAddrIndicesStorageType=mscExampleIpAddrIndicesStorageType, mscFriDynOpDynOpJrRowStatusEntry=mscFriDynOpDynOpJrRowStatusEntry, mscExampleIpAddressProvStructIpAddressVectorIndex=mscExampleIpAddressProvStructIpAddressVectorIndex, mscExampleEnumOperFreeEnumReplicatedIndex=mscExampleEnumOperFreeEnumReplicatedIndex, mscExampleWildBcdProvStructWildBcdArrayValue=mscExampleWildBcdProvStructWildBcdArrayValue, mscExampleHexProvFreeHexReplicatedValue=mscExampleHexProvFreeHexReplicatedValue, mscExampleHexProvFreeHexList1RowStatus=mscExampleHexProvFreeHexList1RowStatus, mscExampleWildBcdProvStructWildBcdArrayColumnIndex=mscExampleWildBcdProvStructWildBcdArrayColumnIndex, mscExampleNsapIndex=mscExampleNsapIndex, mscExampleMiscellaneousProvFreeTimeTimeOnly=mscExampleMiscellaneousProvFreeTimeTimeOnly, mscFriDnaProvisionalEntry=mscFriDnaProvisionalEntry, mscExampleOperEnumSubCreatedRowStatus=mscExampleOperEnumSubCreatedRowStatus, mscExampleWildBcdOperFreeWildBcdVectorIndex=mscExampleWildBcdOperFreeWildBcdVectorIndex, mscExampleIpAddressOperFreeIpAddress=mscExampleIpAddressOperFreeIpAddress, mscExampleTwoIndicesStorageType=mscExampleTwoIndicesStorageType, mscExampleDecimalOfIntVectorEntry=mscExampleDecimalOfIntVectorEntry, mscExampleDecimalOperFreeTimeInterval=mscExampleDecimalOperFreeTimeInterval, mscExampleMiscellaneousComponentName=mscExampleMiscellaneousComponentName, mscExampleHexProvFreeHexArray1ColumnIndex=mscExampleHexProvFreeHexArray1ColumnIndex, mscExampleEnumProvStructEnumArrayTable=mscExampleEnumProvStructEnumArrayTable, mscExampleExtendedProvStructExtendedVectorValue=mscExampleExtendedProvStructExtendedVectorValue, mscExampleIpAddressProvStructIpAddressArrayEntry=mscExampleIpAddressProvStructIpAddressArrayEntry, mscExampleProvStringSubCreatedValue=mscExampleProvStringSubCreatedValue, mscExampleAsciiIndicesRowStatus=mscExampleAsciiIndicesRowStatus, mscExampleIpAddressProvFreeIpAddressList1Table=mscExampleIpAddressProvFreeIpAddressList1Table, mscExampleDecimalOfIntArrayColumnIndex=mscExampleDecimalOfIntArrayColumnIndex, mscExampleIpAddressProvFreeIpAddressVectorIndex=mscExampleIpAddressProvFreeIpAddressVectorIndex, mscExampleDashedOfDashedListValue=mscExampleDashedOfDashedListValue, mscExampleWildBcdProvFreeWildBcdArrayRowIndex=mscExampleWildBcdProvFreeWildBcdArrayRowIndex, mscExampleBcdOperationalEntry=mscExampleBcdOperationalEntry, mscExampleEnumProvStructEnum=mscExampleEnumProvStructEnum, mscExampleDecimalPfIntArray1Entry=mscExampleDecimalPfIntArray1Entry, mscFriDynamicIndex=mscFriDynamicIndex, mscExampleDashedOfDashedArrayTable=mscExampleDashedOfDashedArrayTable, mscFriDynamicStorageType=mscFriDynamicStorageType, mscExampleIpAddressProvFreeIpAddressListEntry=mscExampleIpAddressProvFreeIpAddressListEntry, mscExampleMiscellaneousProvFreeTimeList3RowStatus=mscExampleMiscellaneousProvFreeTimeList3RowStatus, mscExampleDecimalIndicesComponentName=mscExampleDecimalIndicesComponentName, mscExampleOperStringSubCreatedEntry=mscExampleOperStringSubCreatedEntry, mscExampleMiscellaneousProvFreeTimeList3Value=mscExampleMiscellaneousProvFreeTimeList3Value, mscExampleMiscellaneousOperFreeTimeListTable=mscExampleMiscellaneousOperFreeTimeListTable, mscExampleMiscellaneousOperFreeLongListEntry=mscExampleMiscellaneousOperFreeLongListEntry, mscExampleEnumProvFreeEnumArray1DayIndex=mscExampleEnumProvFreeEnumArray1DayIndex, mscExampleIpAddrIndicesRowStatusEntry=mscExampleIpAddrIndicesRowStatusEntry, mscExampleIpAddressOperationalEntry=mscExampleIpAddressOperationalEntry, mscExampleHexIndices=mscExampleHexIndices, mscExampleEnumOperStructEnumVectorValue=mscExampleEnumOperStructEnumVectorValue, mscExampleTwoIndices=mscExampleTwoIndices, mscFriDynOpIndex=mscFriDynOpIndex, mscFriOperationalStructSimpleSigned=mscFriOperationalStructSimpleSigned, mscExampleTwoIndicesProvisionedTable=mscExampleTwoIndicesProvisionedTable, mscExampleIpAddress=mscExampleIpAddress, mscExampleStringProvFreeStrArray1RowIndex=mscExampleStringProvFreeStrArray1RowIndex, mscExampleDashedOsDashedVectorValue=mscExampleDashedOsDashedVectorValue, mscExampleDashedOsDashedVectorEntry=mscExampleDashedOsDashedVectorEntry, mscExampleDashedProvFreeDashedArrayRowIndex=mscExampleDashedProvFreeDashedArrayRowIndex, mscExampleHexProvFreeHexReplicated1Value=mscExampleHexProvFreeHexReplicated1Value, mscExampleEnumIndicesRowStatusTable=mscExampleEnumIndicesRowStatusTable, mscExampleDecimalPfIntListValue=mscExampleDecimalPfIntListValue, mscExampleEnumOperStructEnumArrayValue=mscExampleEnumOperStructEnumArrayValue, mscExampleSequenceOperFreeSequenceReplicatedValue=mscExampleSequenceOperFreeSequenceReplicatedValue, mscExampleIndex=mscExampleIndex, mscExampleMiscellaneousProvFreeTimeList1Entry=mscExampleMiscellaneousProvFreeTimeList1Entry, mscExampleDecimalPfIntReplicatedIndex=mscExampleDecimalPfIntReplicatedIndex, mscExampleDecimalPfIntReplicatedTable=mscExampleDecimalPfIntReplicatedTable, mscExampleDecimalPfIntArrayTable=mscExampleDecimalPfIntArrayTable, mscExampleFixedPtProvisionalTable=mscExampleFixedPtProvisionalTable, mscExampleDashedOsDashedArrayColumnIndex=mscExampleDashedOsDashedArrayColumnIndex, mscExampleProvSignedSubCreatedEntry=mscExampleProvSignedSubCreatedEntry, mscExampleAsciiIndicesProvisionedTable=mscExampleAsciiIndicesProvisionedTable, mscExampleComponentName=mscExampleComponentName, mscFriDynOpOptionalAttribute=mscFriDynOpOptionalAttribute, mscExampleSequenceIndicesRowStatusEntry=mscExampleSequenceIndicesRowStatusEntry, mscExampleStringProvStructAsciiOnly=mscExampleStringProvStructAsciiOnly, mscExampleDecimalOsIntVectorTable=mscExampleDecimalOsIntVectorTable, mscExampleBcdProvStructBcdVectorTable=mscExampleBcdProvStructBcdVectorTable, mscExampleObjIdIndicesThreeIndex=mscExampleObjIdIndicesThreeIndex, mscExampleProvSignedSubCreatedValue=mscExampleProvSignedSubCreatedValue, mscExampleMiscellaneousProvFreeTimeListTable=mscExampleMiscellaneousProvFreeTimeListTable, mscExampleWildBcdOperFreeWildBcdReplicatedTable=mscExampleWildBcdOperFreeWildBcdReplicatedTable, mscExampleHexIndicesTwoIndex=mscExampleHexIndicesTwoIndex, mscExampleHexIndicesProvisionedEntry=mscExampleHexIndicesProvisionedEntry, mscExampleDecimalPfIntListRowStatus=mscExampleDecimalPfIntListRowStatus, mscExampleFixedPtOperFreeFixedPtListRowStatus=mscExampleFixedPtOperFreeFixedPtListRowStatus, mscExampleMiscellaneousProvFreeLong=mscExampleMiscellaneousProvFreeLong, mscExampleFixedPtProvFreeFixedPtReplicatedEntry=mscExampleFixedPtProvFreeFixedPtReplicatedEntry, mscExampleMiscellaneousProvFreeTimeList3Table=mscExampleMiscellaneousProvFreeTimeList3Table, mscFriDnaAttribute=mscFriDnaAttribute, mscExampleMiscellaneousOperFreeLongReplicatedValue=mscExampleMiscellaneousOperFreeLongReplicatedValue, mscExampleObjectIdOperFreeObjIdReplicatedTable=mscExampleObjectIdOperFreeObjIdReplicatedTable, mscExampleMiscellaneousOperationalTable=mscExampleMiscellaneousOperationalTable, mscExampleHexOfHexArrayRowIndex=mscExampleHexOfHexArrayRowIndex, mscExampleExtendedProvFreeExtendedListEntry=mscExampleExtendedProvFreeExtendedListEntry, mscExampleObjectIdProvFreeObjIdListEntry=mscExampleObjectIdProvFreeObjIdListEntry, mscExampleSignedProvisionalTable=mscExampleSignedProvisionalTable, mscExampleOperStringSubCreatedValue=mscExampleOperStringSubCreatedValue, mscExampleIpAddressProvStructIpAddressArrayRowIndex=mscExampleIpAddressProvStructIpAddressArrayRowIndex, mscExampleHexStrIndicesComponentName=mscExampleHexStrIndicesComponentName, mscFriProvisionalStructSetEnumeration=mscFriProvisionalStructSetEnumeration, mscExampleFourIndicesFourIndex=mscExampleFourIndicesFourIndex, mscExampleHexOsHexArrayRowIndex=mscExampleHexOsHexArrayRowIndex, mscExampleFixedPtOperFreeFixedPtReplicatedEntry=mscExampleFixedPtOperFreeFixedPtReplicatedEntry, mscFriOfListComponentRowStatus=mscFriOfListComponentRowStatus, mscFriOperationalStructSetUnsigned=mscFriOperationalStructSetUnsigned, mscExampleIpAddressProvStructIpAddressArrayTable=mscExampleIpAddressProvStructIpAddressArrayTable, mscFriOperationalStructSimpleSequence=mscFriOperationalStructSimpleSequence, mscExampleObjectIdOperFreeObjIdListEntry=mscExampleObjectIdOperFreeObjIdListEntry, mscExampleMiscellaneousProvFreeLongListValue=mscExampleMiscellaneousProvFreeLongListValue, mscExampleNsapComponentName=mscExampleNsapComponentName, mscExampleStringProvisionalTable=mscExampleStringProvisionalTable, mscExampleProvFixedPtSubCreatedValue=mscExampleProvFixedPtSubCreatedValue, mscExampleHexOfHexArrayTable=mscExampleHexOfHexArrayTable, mscExampleHexOfHexReplicatedEntry=mscExampleHexOfHexReplicatedEntry, mscExampleOperDecimalSubCreatedValue=mscExampleOperDecimalSubCreatedValue, mscExampleIpAddressComponentName=mscExampleIpAddressComponentName, mscExampleDashedProvStructDashedArrayColumnIndex=mscExampleDashedProvStructDashedArrayColumnIndex, mscExampleSequenceOperFreeSequence=mscExampleSequenceOperFreeSequence, mscExampleStringOperFreeStrListRowStatus=mscExampleStringOperFreeStrListRowStatus, mscExampleStringProvFreeStrList1Table=mscExampleStringProvFreeStrList1Table, mscFriOfListEnumerationEntry=mscFriOfListEnumerationEntry, mscExampleFixedPtOperFreeFixedPtVectorEntry=mscExampleFixedPtOperFreeFixedPtVectorEntry, mscExampleObjectIdOperFreeObjIdListTable=mscExampleObjectIdOperFreeObjIdListTable, mscExampleDecimalProvFreeInteger1=mscExampleDecimalProvFreeInteger1, mscExampleProvSignedSubCreatedTable=mscExampleProvSignedSubCreatedTable, mscExampleStringProvFreeHexOnly=mscExampleStringProvFreeHexOnly, mscExampleFixedPtOperStructFixedPtArrayValue=mscExampleFixedPtOperStructFixedPtArrayValue, mscExampleStringProvFreeStrVectorValue=mscExampleStringProvFreeStrVectorValue, mscExampleOperSignedSubCreatedTable=mscExampleOperSignedSubCreatedTable, mscExampleDecimalPfIntReplicatedEntry=mscExampleDecimalPfIntReplicatedEntry, mscExampleHexOfHexReplicatedTable=mscExampleHexOfHexReplicatedTable, mscExampleMiscellaneousProvFreeLongListEntry=mscExampleMiscellaneousProvFreeLongListEntry, mscExampleSignedOperStructSignedVectorTable=mscExampleSignedOperStructSignedVectorTable, mscExampleSequenceIndicesComponentName=mscExampleSequenceIndicesComponentName, mscExampleRequiredIndicesRowStatusEntry=mscExampleRequiredIndicesRowStatusEntry, mscExampleFixedPtOperStructFixedPt=mscExampleFixedPtOperStructFixedPt, mscExampleStringProvStructStrArrayEntry=mscExampleStringProvStructStrArrayEntry, mscFriDnaOperationalTable=mscFriDnaOperationalTable, mscExampleEnumIndicesProvisionedEntry=mscExampleEnumIndicesProvisionedEntry, mscExampleHexOfHexListRowStatus=mscExampleHexOfHexListRowStatus, mscExampleBcdIndicesThreeIndex=mscExampleBcdIndicesThreeIndex, mscFriPfListSignedEntry=mscFriPfListSignedEntry, mscExampleHexProvStructHexArrayTable=mscExampleHexProvStructHexArrayTable, mscExampleObjIdIndices=mscExampleObjIdIndices, mscExampleDashedProvStructDashedArrayRowIndex=mscExampleDashedProvStructDashedArrayRowIndex, mscExampleSequenceProvFreeSequenceReplicatedValue=mscExampleSequenceProvFreeSequenceReplicatedValue, mscExampleSignedProvFreeSignedListRowStatus=mscExampleSignedProvFreeSignedListRowStatus, mscExampleObjectIdOperFreeObjIdListValue=mscExampleObjectIdOperFreeObjIdListValue, mscExampleAsciiIndices=mscExampleAsciiIndices, mscExampleNsapRowStatus=mscExampleNsapRowStatus, mscExampleEnumOperFreeEnumListTable=mscExampleEnumOperFreeEnumListTable, mscExampleAsciiIndicesTwoIndex=mscExampleAsciiIndicesTwoIndex, mscExample=mscExample, mscExampleHexIndex=mscExampleHexIndex, mscFriDynOpInitialAttribute=mscFriDynOpInitialAttribute, mscExampleFourIndicesRowStatus=mscExampleFourIndicesRowStatus, mscFriPfListAsciiRowStatus=mscFriPfListAsciiRowStatus, mscExampleHexProvFreeHexArray2Value=mscExampleHexProvFreeHexArray2Value, mscExampleDecimalIndicesRowStatus=mscExampleDecimalIndicesRowStatus, mscExampleHexProvStructHexArrayEntry=mscExampleHexProvStructHexArrayEntry, mscExampleSignedProvFreeSignedArrayTable=mscExampleSignedProvFreeSignedArrayTable, mscExampleStringOperStructStrArrayEntry=mscExampleStringOperStructStrArrayEntry, mscExampleIpAddressProvFreeIpAddressVectorTable=mscExampleIpAddressProvFreeIpAddressVectorTable, mscExampleBcdProvFreeBcdArray1Entry=mscExampleBcdProvFreeBcdArray1Entry, mscExampleStringOperFreeStrVectorValue=mscExampleStringOperFreeStrVectorValue, mscExampleEnumProvFreeEnumVector1Value=mscExampleEnumProvFreeEnumVector1Value)
(object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (single_value_constraint, constraints_intersection, constraints_union, value_range_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsIntersection', 'ConstraintsUnion', 'ValueRangeConstraint', 'ValueSizeConstraint') (counter32, gauge32, storage_type, unsigned32, row_status, integer32, time_interval, display_string, row_pointer) = mibBuilder.importSymbols('Nortel-MsCarrier-MscPassport-StandardTextualConventionsMIB', 'Counter32', 'Gauge32', 'StorageType', 'Unsigned32', 'RowStatus', 'Integer32', 'TimeInterval', 'DisplayString', 'RowPointer') (ascii_string_index, integer_sequence, ascii_string, passport_counter64, extended_ascii_string, gauge64, unsigned64, hex, enterprise_date_and_time, non_replicated, fixed_point4, fixed_point3, hex_string, fixed_point2, link, dashed_hex_string, digit_string, fixed_point1, wildcarded_digit_string) = mibBuilder.importSymbols('Nortel-MsCarrier-MscPassport-TextualConventionsMIB', 'AsciiStringIndex', 'IntegerSequence', 'AsciiString', 'PassportCounter64', 'ExtendedAsciiString', 'Gauge64', 'Unsigned64', 'Hex', 'EnterpriseDateAndTime', 'NonReplicated', 'FixedPoint4', 'FixedPoint3', 'HexString', 'FixedPoint2', 'Link', 'DashedHexString', 'DigitString', 'FixedPoint1', 'WildcardedDigitString') (msc_components, msc_passport_mi_bs) = mibBuilder.importSymbols('Nortel-MsCarrier-MscPassport-UsefulDefinitionsMIB', 'mscComponents', 'mscPassportMIBs') (notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance') (counter32, iso, mib_scalar, mib_table, mib_table_row, mib_table_column, gauge32, unsigned32, object_identity, mib_identifier, integer32, ip_address, module_identity, counter64, bits, notification_type, time_ticks) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter32', 'iso', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Gauge32', 'Unsigned32', 'ObjectIdentity', 'MibIdentifier', 'Integer32', 'IpAddress', 'ModuleIdentity', 'Counter64', 'Bits', 'NotificationType', 'TimeTicks') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') cas_test_mib = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103)) msc_example = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000)) msc_example_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1)) if mibBuilder.loadTexts: mscExampleRowStatusTable.setStatus('mandatory') msc_example_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex')) if mibBuilder.loadTexts: mscExampleRowStatusEntry.setStatus('mandatory') msc_example_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleRowStatus.setStatus('mandatory') msc_example_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleComponentName.setStatus('mandatory') msc_example_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleStorageType.setStatus('mandatory') msc_example_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscExampleIndex.setStatus('mandatory') msc_example_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 100)) if mibBuilder.loadTexts: mscExampleOperationalTable.setStatus('mandatory') msc_example_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 100, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex')) if mibBuilder.loadTexts: mscExampleOperationalEntry.setStatus('mandatory') msc_example_oper_my_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 100, 1, 1), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleOperMyComponentName.setStatus('mandatory') msc_example_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 101)) if mibBuilder.loadTexts: mscExampleProvisionalTable.setStatus('mandatory') msc_example_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 101, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex')) if mibBuilder.loadTexts: mscExampleProvisionalEntry.setStatus('mandatory') msc_example_prov_my_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 101, 1, 1), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleProvMyComponentName.setStatus('mandatory') msc_example_oper_decimal_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002)) if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedTable.setStatus('mandatory') msc_example_oper_decimal_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOperDecimalSubCreatedValue')) if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedEntry.setStatus('mandatory') msc_example_oper_decimal_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002, 1, 1), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedValue.setStatus('mandatory') msc_example_oper_decimal_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1002, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleOperDecimalSubCreatedRowStatus.setStatus('mandatory') msc_example_oper_fixed_pt_subcomponents_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003)) if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedTable.setStatus('mandatory') msc_example_oper_fixed_pt_subcomponents_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOperFixedPtSubcomponentsCreatedValue')) if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedEntry.setStatus('mandatory') msc_example_oper_fixed_pt_subcomponents_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003, 1, 1), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedValue.setStatus('mandatory') msc_example_oper_fixed_pt_subcomponents_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1003, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleOperFixedPtSubcomponentsCreatedRowStatus.setStatus('mandatory') msc_example_oper_string_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004)) if mibBuilder.loadTexts: mscExampleOperStringSubCreatedTable.setStatus('mandatory') msc_example_oper_string_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOperStringSubCreatedValue')) if mibBuilder.loadTexts: mscExampleOperStringSubCreatedEntry.setStatus('mandatory') msc_example_oper_string_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004, 1, 1), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleOperStringSubCreatedValue.setStatus('mandatory') msc_example_oper_string_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1004, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleOperStringSubCreatedRowStatus.setStatus('mandatory') msc_example_oper_enum_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005)) if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedTable.setStatus('mandatory') msc_example_oper_enum_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOperEnumSubCreatedValue')) if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedEntry.setStatus('mandatory') msc_example_oper_enum_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005, 1, 1), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedValue.setStatus('mandatory') msc_example_oper_enum_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1005, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleOperEnumSubCreatedRowStatus.setStatus('mandatory') msc_example_oper_signed_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006)) if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedTable.setStatus('mandatory') msc_example_oper_signed_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOperSignedSubCreatedValue')) if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedEntry.setStatus('mandatory') msc_example_oper_signed_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006, 1, 1), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedValue.setStatus('mandatory') msc_example_oper_signed_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1006, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleOperSignedSubCreatedRowStatus.setStatus('mandatory') msc_example_prov_decimal_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007)) if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedTable.setStatus('mandatory') msc_example_prov_decimal_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleProvDecimalSubCreatedValue')) if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedEntry.setStatus('mandatory') msc_example_prov_decimal_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedValue.setStatus('mandatory') msc_example_prov_decimal_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1007, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleProvDecimalSubCreatedRowStatus.setStatus('mandatory') msc_example_prov_fixed_pt_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008)) if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedTable.setStatus('mandatory') msc_example_prov_fixed_pt_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleProvFixedPtSubCreatedValue')) if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedEntry.setStatus('mandatory') msc_example_prov_fixed_pt_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedValue.setStatus('mandatory') msc_example_prov_fixed_pt_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1008, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleProvFixedPtSubCreatedRowStatus.setStatus('mandatory') msc_example_prov_signed_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009)) if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedTable.setStatus('mandatory') msc_example_prov_signed_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleProvSignedSubCreatedValue')) if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedEntry.setStatus('mandatory') msc_example_prov_signed_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedValue.setStatus('mandatory') msc_example_prov_signed_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1009, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleProvSignedSubCreatedRowStatus.setStatus('mandatory') msc_example_prov_string_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010)) if mibBuilder.loadTexts: mscExampleProvStringSubCreatedTable.setStatus('mandatory') msc_example_prov_string_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleProvStringSubCreatedValue')) if mibBuilder.loadTexts: mscExampleProvStringSubCreatedEntry.setStatus('mandatory') msc_example_prov_string_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleProvStringSubCreatedValue.setStatus('mandatory') msc_example_prov_string_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1010, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleProvStringSubCreatedRowStatus.setStatus('mandatory') msc_example_prov_enum_sub_created_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011)) if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedTable.setStatus('mandatory') msc_example_prov_enum_sub_created_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleProvEnumSubCreatedValue')) if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedEntry.setStatus('mandatory') msc_example_prov_enum_sub_created_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedValue.setStatus('mandatory') msc_example_prov_enum_sub_created_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 1011, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleProvEnumSubCreatedRowStatus.setStatus('mandatory') msc_example_decimal = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2)) msc_example_decimal_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1)) if mibBuilder.loadTexts: mscExampleDecimalRowStatusTable.setStatus('mandatory') msc_example_decimal_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex')) if mibBuilder.loadTexts: mscExampleDecimalRowStatusEntry.setStatus('mandatory') msc_example_decimal_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalRowStatus.setStatus('mandatory') msc_example_decimal_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleDecimalComponentName.setStatus('mandatory') msc_example_decimal_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleDecimalStorageType.setStatus('mandatory') msc_example_decimal_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 1023))) if mibBuilder.loadTexts: mscExampleDecimalIndex.setStatus('mandatory') msc_example_decimal_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10)) if mibBuilder.loadTexts: mscExampleDecimalOperationalTable.setStatus('mandatory') msc_example_decimal_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex')) if mibBuilder.loadTexts: mscExampleDecimalOperationalEntry.setStatus('mandatory') msc_example_decimal_oper_struct_integer = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOperStructInteger.setStatus('mandatory') msc_example_decimal_oper_struct_int_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOperStructIntSet.setStatus('mandatory') msc_example_decimal_oper_free_integer = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 3), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 10), value_range_constraint(100, 200)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOperFreeInteger.setStatus('mandatory') msc_example_decimal_oper_free_int_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOperFreeIntSet.setStatus('mandatory') msc_example_decimal_oper_free_counter32 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleDecimalOperFreeCounter32.setStatus('mandatory') msc_example_decimal_oper_free_gauge32 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 6), gauge32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOperFreeGauge32.setStatus('mandatory') msc_example_decimal_oper_free_time_interval = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 10, 1, 7), time_interval().subtype(subtypeSpec=value_range_constraint(0, 2147483647))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOperFreeTimeInterval.setStatus('mandatory') msc_example_decimal_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11)) if mibBuilder.loadTexts: mscExampleDecimalProvisionalTable.setStatus('mandatory') msc_example_decimal_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex')) if mibBuilder.loadTexts: mscExampleDecimalProvisionalEntry.setStatus('mandatory') msc_example_decimal_prov_decimal_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalProvDecimalSub.setStatus('mandatory') msc_example_decimal_prov_struct_integer = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 2), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 252), value_range_constraint(253, 253), value_range_constraint(254, 254), value_range_constraint(255, 255))).clone(253)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalProvStructInteger.setStatus('mandatory') msc_example_decimal_prov_struct_int_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2).clone(hexValue='aaaa')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalProvStructIntSet.setStatus('mandatory') msc_example_decimal_prov_free_integer = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 4), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 10), value_range_constraint(100, 200))).clone(101)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalProvFreeInteger.setStatus('mandatory') msc_example_decimal_prov_free_integer1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 5), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 10), value_range_constraint(100, 200))).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalProvFreeInteger1.setStatus('mandatory') msc_example_decimal_prov_free_integer2 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalProvFreeInteger2.setStatus('mandatory') msc_example_decimal_prov_free_int_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2).clone(hexValue='5555')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalProvFreeIntSet.setStatus('mandatory') msc_example_decimal_prov_free_int_set1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 11, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4).clone(hexValue='80000001')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalProvFreeIntSet1.setStatus('mandatory') msc_example_decimal_os_int_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012)) if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorTable.setStatus('mandatory') msc_example_decimal_os_int_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOsIntVectorIndex')) if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorEntry.setStatus('mandatory') msc_example_decimal_os_int_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorIndex.setStatus('mandatory') msc_example_decimal_os_int_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1012, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOsIntVectorValue.setStatus('mandatory') msc_example_decimal_os_int_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013)) if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayTable.setStatus('mandatory') msc_example_decimal_os_int_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOsIntArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOsIntArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayEntry.setStatus('mandatory') msc_example_decimal_os_int_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayRowIndex.setStatus('mandatory') msc_example_decimal_os_int_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayColumnIndex.setStatus('mandatory') msc_example_decimal_os_int_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1013, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOsIntArrayValue.setStatus('mandatory') msc_example_decimal_of_int_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014)) if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorTable.setStatus('mandatory') msc_example_decimal_of_int_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOfIntVectorIndex')) if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorEntry.setStatus('mandatory') msc_example_decimal_of_int_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorIndex.setStatus('mandatory') msc_example_decimal_of_int_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1014, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOfIntVectorValue.setStatus('mandatory') msc_example_decimal_of_int_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015)) if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayTable.setStatus('mandatory') msc_example_decimal_of_int_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOfIntArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOfIntArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayEntry.setStatus('mandatory') msc_example_decimal_of_int_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayRowIndex.setStatus('mandatory') msc_example_decimal_of_int_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayColumnIndex.setStatus('mandatory') msc_example_decimal_of_int_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1015, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOfIntArrayValue.setStatus('mandatory') msc_example_decimal_of_int_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016)) if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedTable.setStatus('mandatory') msc_example_decimal_of_int_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOfIntReplicatedIndex')) if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedEntry.setStatus('mandatory') msc_example_decimal_of_int_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedIndex.setStatus('mandatory') msc_example_decimal_of_int_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedValue.setStatus('mandatory') msc_example_decimal_of_int_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1016, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDecimalOfIntReplicatedRowStatus.setStatus('mandatory') msc_example_decimal_of_int_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017)) if mibBuilder.loadTexts: mscExampleDecimalOfIntListTable.setStatus('mandatory') msc_example_decimal_of_int_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalOfIntListValue')) if mibBuilder.loadTexts: mscExampleDecimalOfIntListEntry.setStatus('mandatory') msc_example_decimal_of_int_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 10), value_range_constraint(1000, 2000)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalOfIntListValue.setStatus('mandatory') msc_example_decimal_of_int_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1017, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDecimalOfIntListRowStatus.setStatus('mandatory') msc_example_decimal_ps_int_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018)) if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorTable.setStatus('mandatory') msc_example_decimal_ps_int_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPsIntVectorIndex')) if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorEntry.setStatus('mandatory') msc_example_decimal_ps_int_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorIndex.setStatus('mandatory') msc_example_decimal_ps_int_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1018, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPsIntVectorValue.setStatus('mandatory') msc_example_decimal_ps_int_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019)) if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayTable.setStatus('mandatory') msc_example_decimal_ps_int_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPsIntArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPsIntArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayEntry.setStatus('mandatory') msc_example_decimal_ps_int_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayRowIndex.setStatus('mandatory') msc_example_decimal_ps_int_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayColumnIndex.setStatus('mandatory') msc_example_decimal_ps_int_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1019, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPsIntArrayValue.setStatus('mandatory') msc_example_decimal_pf_int_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020)) if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorTable.setStatus('mandatory') msc_example_decimal_pf_int_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntVectorIndex')) if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorEntry.setStatus('mandatory') msc_example_decimal_pf_int_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorIndex.setStatus('mandatory') msc_example_decimal_pf_int_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1020, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPfIntVectorValue.setStatus('mandatory') msc_example_decimal_pf_int_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021)) if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Table.setStatus('mandatory') msc_example_decimal_pf_int_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntVector1Index')) if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Entry.setStatus('mandatory') msc_example_decimal_pf_int_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 15))) if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Index.setStatus('mandatory') msc_example_decimal_pf_int_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1021, 1, 2), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 50), value_range_constraint(100, 150)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPfIntVector1Value.setStatus('mandatory') msc_example_decimal_pf_int_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022)) if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayTable.setStatus('mandatory') msc_example_decimal_pf_int_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayEntry.setStatus('mandatory') msc_example_decimal_pf_int_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayRowIndex.setStatus('mandatory') msc_example_decimal_pf_int_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayColumnIndex.setStatus('mandatory') msc_example_decimal_pf_int_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1022, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPfIntArrayValue.setStatus('mandatory') msc_example_decimal_pf_int_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023)) if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1Table.setStatus('mandatory') msc_example_decimal_pf_int_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntArray1RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntArray1ColumnIndex')) if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1Entry.setStatus('mandatory') msc_example_decimal_pf_int_array1_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1RowIndex.setStatus('mandatory') msc_example_decimal_pf_int_array1_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1ColumnIndex.setStatus('mandatory') msc_example_decimal_pf_int_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1023, 1, 3), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 10), value_range_constraint(20, 200)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPfIntArray1Value.setStatus('mandatory') msc_example_decimal_pf_int_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024)) if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedTable.setStatus('mandatory') msc_example_decimal_pf_int_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntReplicatedIndex')) if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedEntry.setStatus('mandatory') msc_example_decimal_pf_int_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedIndex.setStatus('mandatory') msc_example_decimal_pf_int_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedValue.setStatus('mandatory') msc_example_decimal_pf_int_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1024, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicatedRowStatus.setStatus('mandatory') msc_example_decimal_pf_int_replicated1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025)) if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Table.setStatus('mandatory') msc_example_decimal_pf_int_replicated1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntReplicated1Index')) if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Entry.setStatus('mandatory') msc_example_decimal_pf_int_replicated1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 9), value_range_constraint(11, 19)))) if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Index.setStatus('mandatory') msc_example_decimal_pf_int_replicated1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1, 2), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 3), value_range_constraint(30, 300)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1Value.setStatus('mandatory') msc_example_decimal_pf_int_replicated1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1025, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDecimalPfIntReplicated1RowStatus.setStatus('mandatory') msc_example_decimal_pf_int_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026)) if mibBuilder.loadTexts: mscExampleDecimalPfIntListTable.setStatus('mandatory') msc_example_decimal_pf_int_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntListValue')) if mibBuilder.loadTexts: mscExampleDecimalPfIntListEntry.setStatus('mandatory') msc_example_decimal_pf_int_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPfIntListValue.setStatus('mandatory') msc_example_decimal_pf_int_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1026, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDecimalPfIntListRowStatus.setStatus('mandatory') msc_example_decimal_pf_int_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027)) if mibBuilder.loadTexts: mscExampleDecimalPfIntList1Table.setStatus('mandatory') msc_example_decimal_pf_int_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalPfIntList1Value')) if mibBuilder.loadTexts: mscExampleDecimalPfIntList1Entry.setStatus('mandatory') msc_example_decimal_pf_int_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 10), value_range_constraint(15, 50)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalPfIntList1Value.setStatus('mandatory') msc_example_decimal_pf_int_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 2, 1027, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDecimalPfIntList1RowStatus.setStatus('mandatory') msc_example_hex = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3)) msc_example_hex_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1)) if mibBuilder.loadTexts: mscExampleHexRowStatusTable.setStatus('mandatory') msc_example_hex_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex')) if mibBuilder.loadTexts: mscExampleHexRowStatusEntry.setStatus('mandatory') msc_example_hex_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexRowStatus.setStatus('mandatory') msc_example_hex_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleHexComponentName.setStatus('mandatory') msc_example_hex_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleHexStorageType.setStatus('mandatory') msc_example_hex_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))) if mibBuilder.loadTexts: mscExampleHexIndex.setStatus('mandatory') msc_example_hex_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10)) if mibBuilder.loadTexts: mscExampleHexOperationalTable.setStatus('mandatory') msc_example_hex_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex')) if mibBuilder.loadTexts: mscExampleHexOperationalEntry.setStatus('mandatory') msc_example_hex_oper_struct_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10, 1, 1), hex().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexOperStructHex.setStatus('mandatory') msc_example_hex_oper_free_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 10, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexOperFreeHex.setStatus('mandatory') msc_example_hex_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11)) if mibBuilder.loadTexts: mscExampleHexProvisionalTable.setStatus('mandatory') msc_example_hex_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex')) if mibBuilder.loadTexts: mscExampleHexProvisionalEntry.setStatus('mandatory') msc_example_hex_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvEnumSub.setStatus('mandatory') msc_example_hex_prov_struct_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 2), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 256), value_range_constraint(512, 512), value_range_constraint(513, 513), value_range_constraint(514, 514))).clone(512)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvStructHex.setStatus('mandatory') msc_example_hex_prov_free_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 3), hex().subtype(subtypeSpec=value_range_constraint(0, 256)).clone(18)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHex.setStatus('mandatory') msc_example_hex_prov_free_hex1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 11, 1, 4), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 16), value_range_constraint(256, 4096)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHex1.setStatus('mandatory') msc_example_hex_os_hex_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040)) if mibBuilder.loadTexts: mscExampleHexOsHexVectorTable.setStatus('mandatory') msc_example_hex_os_hex_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOsHexVectorIndex')) if mibBuilder.loadTexts: mscExampleHexOsHexVectorEntry.setStatus('mandatory') msc_example_hex_os_hex_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexOsHexVectorIndex.setStatus('mandatory') msc_example_hex_os_hex_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1040, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexOsHexVectorValue.setStatus('mandatory') msc_example_hex_os_hex_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041)) if mibBuilder.loadTexts: mscExampleHexOsHexArrayTable.setStatus('mandatory') msc_example_hex_os_hex_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOsHexArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOsHexArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleHexOsHexArrayEntry.setStatus('mandatory') msc_example_hex_os_hex_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleHexOsHexArrayRowIndex.setStatus('mandatory') msc_example_hex_os_hex_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexOsHexArrayColumnIndex.setStatus('mandatory') msc_example_hex_os_hex_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1041, 1, 3), hex().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexOsHexArrayValue.setStatus('mandatory') msc_example_hex_of_hex_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042)) if mibBuilder.loadTexts: mscExampleHexOfHexVectorTable.setStatus('mandatory') msc_example_hex_of_hex_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOfHexVectorIndex')) if mibBuilder.loadTexts: mscExampleHexOfHexVectorEntry.setStatus('mandatory') msc_example_hex_of_hex_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexOfHexVectorIndex.setStatus('mandatory') msc_example_hex_of_hex_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1042, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexOfHexVectorValue.setStatus('mandatory') msc_example_hex_of_hex_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043)) if mibBuilder.loadTexts: mscExampleHexOfHexArrayTable.setStatus('mandatory') msc_example_hex_of_hex_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOfHexArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOfHexArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleHexOfHexArrayEntry.setStatus('mandatory') msc_example_hex_of_hex_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleHexOfHexArrayRowIndex.setStatus('mandatory') msc_example_hex_of_hex_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexOfHexArrayColumnIndex.setStatus('mandatory') msc_example_hex_of_hex_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1043, 1, 3), hex().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexOfHexArrayValue.setStatus('mandatory') msc_example_hex_of_hex_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044)) if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedTable.setStatus('mandatory') msc_example_hex_of_hex_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOfHexReplicatedIndex')) if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedEntry.setStatus('mandatory') msc_example_hex_of_hex_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedIndex.setStatus('mandatory') msc_example_hex_of_hex_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedValue.setStatus('mandatory') msc_example_hex_of_hex_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1044, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleHexOfHexReplicatedRowStatus.setStatus('mandatory') msc_example_hex_of_hex_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045)) if mibBuilder.loadTexts: mscExampleHexOfHexListTable.setStatus('mandatory') msc_example_hex_of_hex_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexOfHexListValue')) if mibBuilder.loadTexts: mscExampleHexOfHexListEntry.setStatus('mandatory') msc_example_hex_of_hex_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4096))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexOfHexListValue.setStatus('mandatory') msc_example_hex_of_hex_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1045, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleHexOfHexListRowStatus.setStatus('mandatory') msc_example_hex_prov_struct_hex_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046)) if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorTable.setStatus('mandatory') msc_example_hex_prov_struct_hex_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvStructHexVectorIndex')) if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorEntry.setStatus('mandatory') msc_example_hex_prov_struct_hex_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorIndex.setStatus('mandatory') msc_example_hex_prov_struct_hex_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1046, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvStructHexVectorValue.setStatus('mandatory') msc_example_hex_prov_struct_hex_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047)) if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayTable.setStatus('mandatory') msc_example_hex_prov_struct_hex_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvStructHexArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvStructHexArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayEntry.setStatus('mandatory') msc_example_hex_prov_struct_hex_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayRowIndex.setStatus('mandatory') msc_example_hex_prov_struct_hex_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayColumnIndex.setStatus('mandatory') msc_example_hex_prov_struct_hex_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1047, 1, 3), hex().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvStructHexArrayValue.setStatus('mandatory') msc_example_hex_prov_free_hex_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorTable.setStatus('mandatory') msc_example_hex_prov_free_hex_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexVectorIndex')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorEntry.setStatus('mandatory') msc_example_hex_prov_free_hex_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorIndex.setStatus('mandatory') msc_example_hex_prov_free_hex_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1048, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexVectorValue.setStatus('mandatory') msc_example_hex_prov_free_hex_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Table.setStatus('mandatory') msc_example_hex_prov_free_hex_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexVector1Index')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Entry.setStatus('mandatory') msc_example_hex_prov_free_hex_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Index.setStatus('mandatory') msc_example_hex_prov_free_hex_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1049, 1, 2), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 16), value_range_constraint(256, 4096)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector1Value.setStatus('mandatory') msc_example_hex_prov_free_hex_vector2_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Table.setStatus('mandatory') msc_example_hex_prov_free_hex_vector2_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexVector2Index')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Entry.setStatus('mandatory') msc_example_hex_prov_free_hex_vector2_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 5))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Index.setStatus('mandatory') msc_example_hex_prov_free_hex_vector2_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1050, 1, 2), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 16), value_range_constraint(256, 4096)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexVector2Value.setStatus('mandatory') msc_example_hex_prov_free_hex_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayTable.setStatus('mandatory') msc_example_hex_prov_free_hex_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayEntry.setStatus('mandatory') msc_example_hex_prov_free_hex_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayRowIndex.setStatus('mandatory') msc_example_hex_prov_free_hex_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayColumnIndex.setStatus('mandatory') msc_example_hex_prov_free_hex_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1051, 1, 3), hex().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArrayValue.setStatus('mandatory') msc_example_hex_prov_free_hex_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1Table.setStatus('mandatory') msc_example_hex_prov_free_hex_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexArray1RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexArray1ColumnIndex')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1Entry.setStatus('mandatory') msc_example_hex_prov_free_hex_array1_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 1), value_range_constraint(3, 4)))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1RowIndex.setStatus('mandatory') msc_example_hex_prov_free_hex_array1_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1ColumnIndex.setStatus('mandatory') msc_example_hex_prov_free_hex_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1052, 1, 3), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 16), value_range_constraint(80, 256)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray1Value.setStatus('mandatory') msc_example_hex_prov_free_hex_array2_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2Table.setStatus('mandatory') msc_example_hex_prov_free_hex_array2_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexArray2RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexArray2ColumnIndex')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2Entry.setStatus('mandatory') msc_example_hex_prov_free_hex_array2_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2RowIndex.setStatus('mandatory') msc_example_hex_prov_free_hex_array2_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2ColumnIndex.setStatus('mandatory') msc_example_hex_prov_free_hex_array2_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1053, 1, 3), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 16), value_range_constraint(80, 256)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexArray2Value.setStatus('mandatory') msc_example_hex_prov_free_hex_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedTable.setStatus('mandatory') msc_example_hex_prov_free_hex_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexReplicatedIndex')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedEntry.setStatus('mandatory') msc_example_hex_prov_free_hex_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedIndex.setStatus('mandatory') msc_example_hex_prov_free_hex_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1, 2), hex().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedValue.setStatus('mandatory') msc_example_hex_prov_free_hex_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1054, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicatedRowStatus.setStatus('mandatory') msc_example_hex_prov_free_hex_replicated1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Table.setStatus('mandatory') msc_example_hex_prov_free_hex_replicated1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexReplicated1Index')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Entry.setStatus('mandatory') msc_example_hex_prov_free_hex_replicated1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 3), value_range_constraint(5, 9)))) if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Index.setStatus('mandatory') msc_example_hex_prov_free_hex_replicated1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1, 2), hex().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 32), value_range_constraint(80, 256)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1Value.setStatus('mandatory') msc_example_hex_prov_free_hex_replicated1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1055, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleHexProvFreeHexReplicated1RowStatus.setStatus('mandatory') msc_example_hex_prov_free_hex_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexListTable.setStatus('mandatory') msc_example_hex_prov_free_hex_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexListValue')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexListEntry.setStatus('mandatory') msc_example_hex_prov_free_hex_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4096))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexListValue.setStatus('mandatory') msc_example_hex_prov_free_hex_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1056, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleHexProvFreeHexListRowStatus.setStatus('mandatory') msc_example_hex_prov_free_hex_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057)) if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1Table.setStatus('mandatory') msc_example_hex_prov_free_hex_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexProvFreeHexList1Value')) if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1Entry.setStatus('mandatory') msc_example_hex_prov_free_hex_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4096))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1Value.setStatus('mandatory') msc_example_hex_prov_free_hex_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 3, 1057, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleHexProvFreeHexList1RowStatus.setStatus('mandatory') msc_example_ip_address = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4)) msc_example_ip_address_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1)) if mibBuilder.loadTexts: mscExampleIpAddressRowStatusTable.setStatus('mandatory') msc_example_ip_address_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex')) if mibBuilder.loadTexts: mscExampleIpAddressRowStatusEntry.setStatus('mandatory') msc_example_ip_address_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressRowStatus.setStatus('mandatory') msc_example_ip_address_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleIpAddressComponentName.setStatus('mandatory') msc_example_ip_address_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleIpAddressStorageType.setStatus('mandatory') msc_example_ip_address_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1, 1, 10), ip_address()) if mibBuilder.loadTexts: mscExampleIpAddressIndex.setStatus('mandatory') msc_example_ip_address_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10)) if mibBuilder.loadTexts: mscExampleIpAddressOperationalTable.setStatus('mandatory') msc_example_ip_address_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex')) if mibBuilder.loadTexts: mscExampleIpAddressOperationalEntry.setStatus('mandatory') msc_example_ip_address_oper_struct_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10, 1, 1), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddress.setStatus('mandatory') msc_example_ip_address_oper_free_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 10, 1, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddress.setStatus('mandatory') msc_example_ip_address_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11)) if mibBuilder.loadTexts: mscExampleIpAddressProvisionalTable.setStatus('mandatory') msc_example_ip_address_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex')) if mibBuilder.loadTexts: mscExampleIpAddressProvisionalEntry.setStatus('mandatory') msc_example_ip_address_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvEnumSub.setStatus('mandatory') msc_example_ip_address_prov_struct_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 2), ip_address().clone(hexValue='7f000100')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddress.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 3), ip_address().clone(hexValue='7f7f7f7f')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddress.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 11, 1, 4), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddress1.setStatus('mandatory') msc_example_ip_address_oper_struct_ip_address_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058)) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorTable.setStatus('mandatory') msc_example_ip_address_oper_struct_ip_address_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperStructIpAddressVectorIndex')) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorEntry.setStatus('mandatory') msc_example_ip_address_oper_struct_ip_address_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorIndex.setStatus('mandatory') msc_example_ip_address_oper_struct_ip_address_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1058, 1, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressVectorValue.setStatus('mandatory') msc_example_ip_address_oper_struct_ip_address_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059)) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayTable.setStatus('mandatory') msc_example_ip_address_oper_struct_ip_address_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperStructIpAddressArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperStructIpAddressArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayEntry.setStatus('mandatory') msc_example_ip_address_oper_struct_ip_address_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayRowIndex.setStatus('mandatory') msc_example_ip_address_oper_struct_ip_address_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayColumnIndex.setStatus('mandatory') msc_example_ip_address_oper_struct_ip_address_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1059, 1, 3), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressOperStructIpAddressArrayValue.setStatus('mandatory') msc_example_ip_address_oper_free_ip_address_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060)) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorTable.setStatus('mandatory') msc_example_ip_address_oper_free_ip_address_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperFreeIpAddressVectorIndex')) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorEntry.setStatus('mandatory') msc_example_ip_address_oper_free_ip_address_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorIndex.setStatus('mandatory') msc_example_ip_address_oper_free_ip_address_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1060, 1, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressVectorValue.setStatus('mandatory') msc_example_ip_address_oper_free_ip_address_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061)) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayTable.setStatus('mandatory') msc_example_ip_address_oper_free_ip_address_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperFreeIpAddressArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperFreeIpAddressArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayEntry.setStatus('mandatory') msc_example_ip_address_oper_free_ip_address_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayRowIndex.setStatus('mandatory') msc_example_ip_address_oper_free_ip_address_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayColumnIndex.setStatus('mandatory') msc_example_ip_address_oper_free_ip_address_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1061, 1, 3), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressArrayValue.setStatus('mandatory') msc_example_ip_address_oper_free_ip_address_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062)) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedTable.setStatus('mandatory') msc_example_ip_address_oper_free_ip_address_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperFreeIpAddressReplicatedIndex')) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedEntry.setStatus('mandatory') msc_example_ip_address_oper_free_ip_address_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1, 1), ip_address()) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedIndex.setStatus('mandatory') msc_example_ip_address_oper_free_ip_address_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedValue.setStatus('mandatory') msc_example_ip_address_oper_free_ip_address_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1062, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus.setStatus('mandatory') msc_example_ip_address_oper_free_ip_address_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063)) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListTable.setStatus('mandatory') msc_example_ip_address_oper_free_ip_address_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressOperFreeIpAddressListValue')) if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListEntry.setStatus('mandatory') msc_example_ip_address_oper_free_ip_address_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063, 1, 1), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListValue.setStatus('mandatory') msc_example_ip_address_oper_free_ip_address_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1063, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleIpAddressOperFreeIpAddressListRowStatus.setStatus('mandatory') msc_example_ip_address_prov_struct_ip_address_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064)) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorTable.setStatus('mandatory') msc_example_ip_address_prov_struct_ip_address_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvStructIpAddressVectorIndex')) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorEntry.setStatus('mandatory') msc_example_ip_address_prov_struct_ip_address_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorIndex.setStatus('mandatory') msc_example_ip_address_prov_struct_ip_address_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1064, 1, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressVectorValue.setStatus('mandatory') msc_example_ip_address_prov_struct_ip_address_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065)) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayTable.setStatus('mandatory') msc_example_ip_address_prov_struct_ip_address_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvStructIpAddressArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvStructIpAddressArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayEntry.setStatus('mandatory') msc_example_ip_address_prov_struct_ip_address_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayRowIndex.setStatus('mandatory') msc_example_ip_address_prov_struct_ip_address_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayColumnIndex.setStatus('mandatory') msc_example_ip_address_prov_struct_ip_address_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1065, 1, 3), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvStructIpAddressArrayValue.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066)) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorTable.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressVectorIndex')) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorEntry.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorIndex.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1066, 1, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVectorValue.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067)) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Table.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressVector1Index')) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Entry.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Index.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1067, 1, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressVector1Value.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068)) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayTable.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayEntry.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayRowIndex.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayColumnIndex.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1068, 1, 3), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArrayValue.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069)) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1Table.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressArray1RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex')) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1Entry.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_array1_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1RowIndex.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_array1_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1069, 1, 3), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressArray1Value.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070)) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedTable.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressReplicatedIndex')) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedEntry.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1, 1), ip_address()) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedIndex.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedValue.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1070, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071)) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListTable.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressListValue')) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListEntry.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071, 1, 1), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListValue.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1071, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressListRowStatus.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072)) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1Table.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddressProvFreeIpAddressList1Value')) if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1Entry.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072, 1, 1), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1Value.setStatus('mandatory') msc_example_ip_address_prov_free_ip_address_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 4, 1072, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleIpAddressProvFreeIpAddressList1RowStatus.setStatus('mandatory') msc_example_string = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5)) msc_example_string_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1)) if mibBuilder.loadTexts: mscExampleStringRowStatusTable.setStatus('mandatory') msc_example_string_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex')) if mibBuilder.loadTexts: mscExampleStringRowStatusEntry.setStatus('mandatory') msc_example_string_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringRowStatus.setStatus('mandatory') msc_example_string_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleStringComponentName.setStatus('mandatory') msc_example_string_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleStringStorageType.setStatus('mandatory') msc_example_string_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1, 1, 10), ascii_string_index().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleStringIndex.setStatus('mandatory') msc_example_string_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10)) if mibBuilder.loadTexts: mscExampleStringOperationalTable.setStatus('mandatory') msc_example_string_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex')) if mibBuilder.loadTexts: mscExampleStringOperationalEntry.setStatus('mandatory') msc_example_string_oper_struct_ascii_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperStructAsciiOnly.setStatus('mandatory') msc_example_string_oper_struct_hex_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 2), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperStructHexOnly.setStatus('mandatory') msc_example_string_oper_free_ascii_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperFreeAsciiOnly.setStatus('mandatory') msc_example_string_oper_free_hex_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 10, 1, 4), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperFreeHexOnly.setStatus('mandatory') msc_example_string_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11)) if mibBuilder.loadTexts: mscExampleStringProvisionalTable.setStatus('mandatory') msc_example_string_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex')) if mibBuilder.loadTexts: mscExampleStringProvisionalEntry.setStatus('mandatory') msc_example_string_prov_string_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvStringSub.setStatus('mandatory') msc_example_string_prov_struct_ascii_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(2, 4)).clone(hexValue='596f2e')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvStructAsciiOnly.setStatus('mandatory') msc_example_string_prov_struct_hex_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 3), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvStructHexOnly.setStatus('mandatory') msc_example_string_prov_free_ascii_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 4), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 59)).clone(hexValue='46726565205374616e64696e6720537472696e6720212121')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeAsciiOnly.setStatus('mandatory') msc_example_string_prov_free_ascii_only1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 5), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeAsciiOnly1.setStatus('mandatory') msc_example_string_prov_free_hex_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 6), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10)).clone(hexValue='0102030405060708090A')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeHexOnly.setStatus('mandatory') msc_example_string_prov_free_hex_only1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 11, 1, 7), hex_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeHexOnly1.setStatus('mandatory') msc_example_string_oper_struct_str_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073)) if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorTable.setStatus('mandatory') msc_example_string_oper_struct_str_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperStructStrVectorIndex')) if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorEntry.setStatus('mandatory') msc_example_string_oper_struct_str_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorIndex.setStatus('mandatory') msc_example_string_oper_struct_str_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1073, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperStructStrVectorValue.setStatus('mandatory') msc_example_string_oper_struct_str_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074)) if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayTable.setStatus('mandatory') msc_example_string_oper_struct_str_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperStructStrArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperStructStrArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayEntry.setStatus('mandatory') msc_example_string_oper_struct_str_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayRowIndex.setStatus('mandatory') msc_example_string_oper_struct_str_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayColumnIndex.setStatus('mandatory') msc_example_string_oper_struct_str_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1074, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperStructStrArrayValue.setStatus('mandatory') msc_example_string_oper_free_str_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075)) if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorTable.setStatus('mandatory') msc_example_string_oper_free_str_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperFreeStrVectorIndex')) if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorEntry.setStatus('mandatory') msc_example_string_oper_free_str_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorIndex.setStatus('mandatory') msc_example_string_oper_free_str_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1075, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperFreeStrVectorValue.setStatus('mandatory') msc_example_string_oper_free_str_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076)) if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayTable.setStatus('mandatory') msc_example_string_oper_free_str_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperFreeStrArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperFreeStrArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayEntry.setStatus('mandatory') msc_example_string_oper_free_str_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayRowIndex.setStatus('mandatory') msc_example_string_oper_free_str_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayColumnIndex.setStatus('mandatory') msc_example_string_oper_free_str_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1076, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperFreeStrArrayValue.setStatus('mandatory') msc_example_string_oper_free_str_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077)) if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedTable.setStatus('mandatory') msc_example_string_oper_free_str_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperFreeStrReplicatedIndex')) if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedEntry.setStatus('mandatory') msc_example_string_oper_free_str_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))) if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedIndex.setStatus('mandatory') msc_example_string_oper_free_str_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedValue.setStatus('mandatory') msc_example_string_oper_free_str_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1077, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleStringOperFreeStrReplicatedRowStatus.setStatus('mandatory') msc_example_string_oper_free_str_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078)) if mibBuilder.loadTexts: mscExampleStringOperFreeStrListTable.setStatus('mandatory') msc_example_string_oper_free_str_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringOperFreeStrListValue')) if mibBuilder.loadTexts: mscExampleStringOperFreeStrListEntry.setStatus('mandatory') msc_example_string_oper_free_str_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringOperFreeStrListValue.setStatus('mandatory') msc_example_string_oper_free_str_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1078, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleStringOperFreeStrListRowStatus.setStatus('mandatory') msc_example_string_prov_struct_str_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079)) if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorTable.setStatus('mandatory') msc_example_string_prov_struct_str_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvStructStrVectorIndex')) if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorEntry.setStatus('mandatory') msc_example_string_prov_struct_str_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorIndex.setStatus('mandatory') msc_example_string_prov_struct_str_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1079, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvStructStrVectorValue.setStatus('mandatory') msc_example_string_prov_struct_str_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080)) if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayTable.setStatus('mandatory') msc_example_string_prov_struct_str_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvStructStrArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvStructStrArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayEntry.setStatus('mandatory') msc_example_string_prov_struct_str_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayRowIndex.setStatus('mandatory') msc_example_string_prov_struct_str_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayColumnIndex.setStatus('mandatory') msc_example_string_prov_struct_str_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1080, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvStructStrArrayValue.setStatus('mandatory') msc_example_string_prov_free_str_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081)) if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorTable.setStatus('mandatory') msc_example_string_prov_free_str_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrVectorIndex')) if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorEntry.setStatus('mandatory') msc_example_string_prov_free_str_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorIndex.setStatus('mandatory') msc_example_string_prov_free_str_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1081, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeStrVectorValue.setStatus('mandatory') msc_example_string_prov_free_str_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082)) if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Table.setStatus('mandatory') msc_example_string_prov_free_str_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrVector1Index')) if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Entry.setStatus('mandatory') msc_example_string_prov_free_str_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 5))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Index.setStatus('mandatory') msc_example_string_prov_free_str_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1082, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeStrVector1Value.setStatus('mandatory') msc_example_string_prov_free_str_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083)) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayTable.setStatus('mandatory') msc_example_string_prov_free_str_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayEntry.setStatus('mandatory') msc_example_string_prov_free_str_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayRowIndex.setStatus('mandatory') msc_example_string_prov_free_str_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayColumnIndex.setStatus('mandatory') msc_example_string_prov_free_str_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1083, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeStrArrayValue.setStatus('mandatory') msc_example_string_prov_free_str_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084)) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1Table.setStatus('mandatory') msc_example_string_prov_free_str_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrArray1RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrArray1ColumnIndex')) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1Entry.setStatus('mandatory') msc_example_string_prov_free_str_array1_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1RowIndex.setStatus('mandatory') msc_example_string_prov_free_str_array1_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1ColumnIndex.setStatus('mandatory') msc_example_string_prov_free_str_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1084, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeStrArray1Value.setStatus('mandatory') msc_example_string_prov_free_str_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085)) if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedTable.setStatus('mandatory') msc_example_string_prov_free_str_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrReplicatedIndex')) if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedEntry.setStatus('mandatory') msc_example_string_prov_free_str_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))) if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedIndex.setStatus('mandatory') msc_example_string_prov_free_str_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedValue.setStatus('mandatory') msc_example_string_prov_free_str_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1085, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleStringProvFreeStrReplicatedRowStatus.setStatus('mandatory') msc_example_string_prov_free_str_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086)) if mibBuilder.loadTexts: mscExampleStringProvFreeStrListTable.setStatus('mandatory') msc_example_string_prov_free_str_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrListValue')) if mibBuilder.loadTexts: mscExampleStringProvFreeStrListEntry.setStatus('mandatory') msc_example_string_prov_free_str_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeStrListValue.setStatus('mandatory') msc_example_string_prov_free_str_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1086, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleStringProvFreeStrListRowStatus.setStatus('mandatory') msc_example_string_prov_free_str_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087)) if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1Table.setStatus('mandatory') msc_example_string_prov_free_str_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleStringProvFreeStrList1Value')) if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1Entry.setStatus('mandatory') msc_example_string_prov_free_str_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1Value.setStatus('mandatory') msc_example_string_prov_free_str_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 5, 1087, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleStringProvFreeStrList1RowStatus.setStatus('mandatory') msc_example_fixed_pt = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6)) msc_example_fixed_pt_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1)) if mibBuilder.loadTexts: mscExampleFixedPtRowStatusTable.setStatus('mandatory') msc_example_fixed_pt_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex')) if mibBuilder.loadTexts: mscExampleFixedPtRowStatusEntry.setStatus('mandatory') msc_example_fixed_pt_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtRowStatus.setStatus('mandatory') msc_example_fixed_pt_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleFixedPtComponentName.setStatus('mandatory') msc_example_fixed_pt_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleFixedPtStorageType.setStatus('mandatory') msc_example_fixed_pt_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscExampleFixedPtIndex.setStatus('mandatory') msc_example_fixed_pt_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10)) if mibBuilder.loadTexts: mscExampleFixedPtOperationalTable.setStatus('mandatory') msc_example_fixed_pt_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex')) if mibBuilder.loadTexts: mscExampleFixedPtOperationalEntry.setStatus('mandatory') msc_example_fixed_pt_oper_struct_fixed_pt = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1, 1), fixed_point4().subtype(subtypeSpec=value_range_constraint(100, 2553300))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPt.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1, 2), fixed_point2().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 1099), value_range_constraint(10001, 20000)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPt.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 10, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtSet.setStatus('mandatory') msc_example_fixed_pt_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11)) if mibBuilder.loadTexts: mscExampleFixedPtProvisionalTable.setStatus('mandatory') msc_example_fixed_pt_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex')) if mibBuilder.loadTexts: mscExampleFixedPtProvisionalEntry.setStatus('mandatory') msc_example_fixed_pt_prov_fixed_pt_subcomponent = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvFixedPtSubcomponent.setStatus('mandatory') msc_example_fixed_pt_prov_struct_fixed_pt = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 2), fixed_point3().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 252000), value_range_constraint(253000, 253000), value_range_constraint(254000, 254000), value_range_constraint(255000, 255000))).clone(253000)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPt.setStatus('mandatory') msc_example_fixed_pt_prov_struct_fixed_pt_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1).clone(hexValue='c8')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtSet.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 4), fixed_point2().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 1099), value_range_constraint(10001, 20099))).clone(10101)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPt.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 11, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4).clone(hexValue='05500002')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtSet.setStatus('mandatory') msc_example_fixed_pt_oper_struct_fixed_pt_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028)) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorTable.setStatus('mandatory') msc_example_fixed_pt_oper_struct_fixed_pt_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperStructFixedPtVectorIndex')) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorEntry.setStatus('mandatory') msc_example_fixed_pt_oper_struct_fixed_pt_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorIndex.setStatus('mandatory') msc_example_fixed_pt_oper_struct_fixed_pt_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1028, 1, 2), fixed_point3().subtype(subtypeSpec=value_range_constraint(0, 100100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtVectorValue.setStatus('mandatory') msc_example_fixed_pt_oper_struct_fixed_pt_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029)) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayTable.setStatus('mandatory') msc_example_fixed_pt_oper_struct_fixed_pt_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperStructFixedPtArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperStructFixedPtArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayEntry.setStatus('mandatory') msc_example_fixed_pt_oper_struct_fixed_pt_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayRowIndex.setStatus('mandatory') msc_example_fixed_pt_oper_struct_fixed_pt_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayColumnIndex.setStatus('mandatory') msc_example_fixed_pt_oper_struct_fixed_pt_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1029, 1, 3), fixed_point3().subtype(subtypeSpec=value_range_constraint(80, 255880))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtOperStructFixedPtArrayValue.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030)) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorTable.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperFreeFixedPtVectorIndex')) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorEntry.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorIndex.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1030, 1, 2), fixed_point2().subtype(subtypeSpec=value_range_constraint(0, 10000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtVectorValue.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031)) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayTable.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperFreeFixedPtArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperFreeFixedPtArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayEntry.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayRowIndex.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayColumnIndex.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1031, 1, 3), fixed_point3().subtype(subtypeSpec=value_range_constraint(255, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtArrayValue.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032)) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedTable.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperFreeFixedPtReplicatedIndex')) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedEntry.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedIndex.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1, 2), fixed_point1().subtype(subtypeSpec=value_range_constraint(0, 655350))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedValue.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1032, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033)) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListTable.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtOperFreeFixedPtListValue')) if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListEntry.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 100), value_range_constraint(10000, 20000)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListValue.setStatus('mandatory') msc_example_fixed_pt_oper_free_fixed_pt_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1033, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleFixedPtOperFreeFixedPtListRowStatus.setStatus('mandatory') msc_example_fixed_pt_prov_struct_fixed_pt_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034)) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorTable.setStatus('mandatory') msc_example_fixed_pt_prov_struct_fixed_pt_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvStructFixedPtVectorIndex')) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorEntry.setStatus('mandatory') msc_example_fixed_pt_prov_struct_fixed_pt_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorIndex.setStatus('mandatory') msc_example_fixed_pt_prov_struct_fixed_pt_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1034, 1, 2), fixed_point3().subtype(subtypeSpec=value_range_constraint(0, 100100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtVectorValue.setStatus('mandatory') msc_example_fixed_pt_prov_struct_fixed_pt_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035)) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayTable.setStatus('mandatory') msc_example_fixed_pt_prov_struct_fixed_pt_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvStructFixedPtArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvStructFixedPtArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayEntry.setStatus('mandatory') msc_example_fixed_pt_prov_struct_fixed_pt_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayRowIndex.setStatus('mandatory') msc_example_fixed_pt_prov_struct_fixed_pt_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayColumnIndex.setStatus('mandatory') msc_example_fixed_pt_prov_struct_fixed_pt_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1035, 1, 3), fixed_point1().subtype(subtypeSpec=value_range_constraint(255, 300))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvStructFixedPtArrayValue.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036)) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorTable.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvFreeFixedPtVectorIndex')) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorEntry.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorIndex.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1036, 1, 2), fixed_point1().subtype(subtypeSpec=value_range_constraint(0, 1000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtVectorValue.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037)) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayTable.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvFreeFixedPtArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvFreeFixedPtArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayEntry.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayRowIndex.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayColumnIndex.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1037, 1, 3), fixed_point2().subtype(subtypeSpec=value_range_constraint(0, 25555))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtArrayValue.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038)) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedTable.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvFreeFixedPtReplicatedIndex')) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedEntry.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedIndex.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1, 2), fixed_point2().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedValue.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1038, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039)) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListTable.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFixedPtProvFreeFixedPtListValue')) if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListEntry.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(100, 100000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListValue.setStatus('mandatory') msc_example_fixed_pt_prov_free_fixed_pt_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 6, 1039, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleFixedPtProvFreeFixedPtListRowStatus.setStatus('mandatory') msc_example_dashed = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7)) msc_example_dashed_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1)) if mibBuilder.loadTexts: mscExampleDashedRowStatusTable.setStatus('mandatory') msc_example_dashed_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex')) if mibBuilder.loadTexts: mscExampleDashedRowStatusEntry.setStatus('mandatory') msc_example_dashed_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedRowStatus.setStatus('mandatory') msc_example_dashed_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleDashedComponentName.setStatus('mandatory') msc_example_dashed_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleDashedStorageType.setStatus('mandatory') msc_example_dashed_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1, 1, 10), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleDashedIndex.setStatus('mandatory') msc_example_dashed_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10)) if mibBuilder.loadTexts: mscExampleDashedOperationalTable.setStatus('mandatory') msc_example_dashed_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex')) if mibBuilder.loadTexts: mscExampleDashedOperationalEntry.setStatus('mandatory') msc_example_dashed_oper_struct_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedOperStructDashed.setStatus('mandatory') msc_example_dashed_oper_free_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 10, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10)).clone(hexValue='123456')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedOperFreeDashed.setStatus('mandatory') msc_example_dashed_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11)) if mibBuilder.loadTexts: mscExampleDashedProvisionalTable.setStatus('mandatory') msc_example_dashed_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex')) if mibBuilder.loadTexts: mscExampleDashedProvisionalEntry.setStatus('mandatory') msc_example_dashed_prov_struct_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedProvStructDashed.setStatus('mandatory') msc_example_dashed_prov_free_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 11, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10)).clone(hexValue='123456')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashed.setStatus('mandatory') msc_example_dashed_os_dashed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088)) if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayTable.setStatus('mandatory') msc_example_dashed_os_dashed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOsDashedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOsDashedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayEntry.setStatus('mandatory') msc_example_dashed_os_dashed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayRowIndex.setStatus('mandatory') msc_example_dashed_os_dashed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayColumnIndex.setStatus('mandatory') msc_example_dashed_os_dashed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1088, 1, 3), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedOsDashedArrayValue.setStatus('mandatory') msc_example_dashed_os_dashed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089)) if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorTable.setStatus('mandatory') msc_example_dashed_os_dashed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOsDashedVectorIndex')) if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorEntry.setStatus('mandatory') msc_example_dashed_os_dashed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorIndex.setStatus('mandatory') msc_example_dashed_os_dashed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1089, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedOsDashedVectorValue.setStatus('mandatory') msc_example_dashed_of_dashed_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090)) if mibBuilder.loadTexts: mscExampleDashedOfDashedListTable.setStatus('mandatory') msc_example_dashed_of_dashed_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOfDashedListValue')) if mibBuilder.loadTexts: mscExampleDashedOfDashedListEntry.setStatus('mandatory') msc_example_dashed_of_dashed_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedOfDashedListValue.setStatus('mandatory') msc_example_dashed_of_dashed_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1090, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDashedOfDashedListRowStatus.setStatus('mandatory') msc_example_dashed_of_dashed_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091)) if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedTable.setStatus('mandatory') msc_example_dashed_of_dashed_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOfDashedReplicatedIndex')) if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedEntry.setStatus('mandatory') msc_example_dashed_of_dashed_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))) if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedIndex.setStatus('mandatory') msc_example_dashed_of_dashed_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedValue.setStatus('mandatory') msc_example_dashed_of_dashed_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1091, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDashedOfDashedReplicatedRowStatus.setStatus('mandatory') msc_example_dashed_of_dashed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092)) if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayTable.setStatus('mandatory') msc_example_dashed_of_dashed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOfDashedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOfDashedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayEntry.setStatus('mandatory') msc_example_dashed_of_dashed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayRowIndex.setStatus('mandatory') msc_example_dashed_of_dashed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayColumnIndex.setStatus('mandatory') msc_example_dashed_of_dashed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1092, 1, 3), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedOfDashedArrayValue.setStatus('mandatory') msc_example_dashed_of_dashed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093)) if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorTable.setStatus('mandatory') msc_example_dashed_of_dashed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedOfDashedVectorIndex')) if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorEntry.setStatus('mandatory') msc_example_dashed_of_dashed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorIndex.setStatus('mandatory') msc_example_dashed_of_dashed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1093, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedOfDashedVectorValue.setStatus('mandatory') msc_example_dashed_prov_struct_dashed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094)) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayTable.setStatus('mandatory') msc_example_dashed_prov_struct_dashed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvStructDashedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvStructDashedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayEntry.setStatus('mandatory') msc_example_dashed_prov_struct_dashed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayRowIndex.setStatus('mandatory') msc_example_dashed_prov_struct_dashed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayColumnIndex.setStatus('mandatory') msc_example_dashed_prov_struct_dashed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1094, 1, 3), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedProvStructDashedArrayValue.setStatus('mandatory') msc_example_dashed_prov_struct_dashed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095)) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorTable.setStatus('mandatory') msc_example_dashed_prov_struct_dashed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvStructDashedVectorIndex')) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorEntry.setStatus('mandatory') msc_example_dashed_prov_struct_dashed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorIndex.setStatus('mandatory') msc_example_dashed_prov_struct_dashed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1095, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedProvStructDashedVectorValue.setStatus('mandatory') msc_example_dashed_prov_free_dashed_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096)) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListTable.setStatus('mandatory') msc_example_dashed_prov_free_dashed_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvFreeDashedListValue')) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListEntry.setStatus('mandatory') msc_example_dashed_prov_free_dashed_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListValue.setStatus('mandatory') msc_example_dashed_prov_free_dashed_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1096, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedListRowStatus.setStatus('mandatory') msc_example_dashed_prov_free_dashed_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097)) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedTable.setStatus('mandatory') msc_example_dashed_prov_free_dashed_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvFreeDashedReplicatedIndex')) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedEntry.setStatus('mandatory') msc_example_dashed_prov_free_dashed_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 5))) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedIndex.setStatus('mandatory') msc_example_dashed_prov_free_dashed_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedValue.setStatus('mandatory') msc_example_dashed_prov_free_dashed_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1097, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedReplicatedRowStatus.setStatus('mandatory') msc_example_dashed_prov_free_dashed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098)) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayTable.setStatus('mandatory') msc_example_dashed_prov_free_dashed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvFreeDashedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvFreeDashedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayEntry.setStatus('mandatory') msc_example_dashed_prov_free_dashed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayRowIndex.setStatus('mandatory') msc_example_dashed_prov_free_dashed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayColumnIndex.setStatus('mandatory') msc_example_dashed_prov_free_dashed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1098, 1, 3), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedArrayValue.setStatus('mandatory') msc_example_dashed_prov_free_dashed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099)) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorTable.setStatus('mandatory') msc_example_dashed_prov_free_dashed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedProvFreeDashedVectorIndex')) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorEntry.setStatus('mandatory') msc_example_dashed_prov_free_dashed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorIndex.setStatus('mandatory') msc_example_dashed_prov_free_dashed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 7, 1099, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedProvFreeDashedVectorValue.setStatus('mandatory') msc_example_extended = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8)) msc_example_extended_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1)) if mibBuilder.loadTexts: mscExampleExtendedRowStatusTable.setStatus('mandatory') msc_example_extended_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex')) if mibBuilder.loadTexts: mscExampleExtendedRowStatusEntry.setStatus('mandatory') msc_example_extended_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedRowStatus.setStatus('mandatory') msc_example_extended_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleExtendedComponentName.setStatus('mandatory') msc_example_extended_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleExtendedStorageType.setStatus('mandatory') msc_example_extended_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscExampleExtendedIndex.setStatus('mandatory') msc_example_extended_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10)) if mibBuilder.loadTexts: mscExampleExtendedOperationalTable.setStatus('mandatory') msc_example_extended_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex')) if mibBuilder.loadTexts: mscExampleExtendedOperationalEntry.setStatus('mandatory') msc_example_extended_oper_struct_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10, 1, 1), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedOperStructExtended.setStatus('mandatory') msc_example_extended_oper_free_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 10, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 10)).clone(hexValue='68656c6c6f5c6162')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtended.setStatus('mandatory') msc_example_extended_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11)) if mibBuilder.loadTexts: mscExampleExtendedProvisionalTable.setStatus('mandatory') msc_example_extended_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex')) if mibBuilder.loadTexts: mscExampleExtendedProvisionalEntry.setStatus('mandatory') msc_example_extended_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedProvEnumSub.setStatus('mandatory') msc_example_extended_prov_struct_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedProvStructExtended.setStatus('mandatory') msc_example_extended_prov_free_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 11, 1, 3), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 10)).clone(hexValue='48656c6c6f5c61626364')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtended.setStatus('mandatory') msc_example_extended_oper_struct_extended_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100)) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayTable.setStatus('mandatory') msc_example_extended_oper_struct_extended_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperStructExtendedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperStructExtendedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayEntry.setStatus('mandatory') msc_example_extended_oper_struct_extended_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayRowIndex.setStatus('mandatory') msc_example_extended_oper_struct_extended_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayColumnIndex.setStatus('mandatory') msc_example_extended_oper_struct_extended_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1100, 1, 3), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedArrayValue.setStatus('mandatory') msc_example_extended_oper_struct_extended_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101)) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorTable.setStatus('mandatory') msc_example_extended_oper_struct_extended_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperStructExtendedVectorIndex')) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorEntry.setStatus('mandatory') msc_example_extended_oper_struct_extended_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorIndex.setStatus('mandatory') msc_example_extended_oper_struct_extended_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1101, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedOperStructExtendedVectorValue.setStatus('mandatory') msc_example_extended_oper_free_extended_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102)) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListTable.setStatus('mandatory') msc_example_extended_oper_free_extended_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperFreeExtendedListValue')) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListEntry.setStatus('mandatory') msc_example_extended_oper_free_extended_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102, 1, 1), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListValue.setStatus('mandatory') msc_example_extended_oper_free_extended_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1102, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedListRowStatus.setStatus('mandatory') msc_example_extended_oper_free_extended_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103)) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedTable.setStatus('mandatory') msc_example_extended_oper_free_extended_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperFreeExtendedReplicatedIndex')) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedEntry.setStatus('mandatory') msc_example_extended_oper_free_extended_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1, 1), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedIndex.setStatus('mandatory') msc_example_extended_oper_free_extended_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedValue.setStatus('mandatory') msc_example_extended_oper_free_extended_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1103, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedReplicatedRowStatus.setStatus('mandatory') msc_example_extended_oper_free_extended_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104)) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayTable.setStatus('mandatory') msc_example_extended_oper_free_extended_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperFreeExtendedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperFreeExtendedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayEntry.setStatus('mandatory') msc_example_extended_oper_free_extended_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayRowIndex.setStatus('mandatory') msc_example_extended_oper_free_extended_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayColumnIndex.setStatus('mandatory') msc_example_extended_oper_free_extended_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1104, 1, 3), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedArrayValue.setStatus('mandatory') msc_example_extended_oper_free_extended_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105)) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorTable.setStatus('mandatory') msc_example_extended_oper_free_extended_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedOperFreeExtendedVectorIndex')) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorEntry.setStatus('mandatory') msc_example_extended_oper_free_extended_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorIndex.setStatus('mandatory') msc_example_extended_oper_free_extended_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1105, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedOperFreeExtendedVectorValue.setStatus('mandatory') msc_example_extended_prov_struct_extended_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106)) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayTable.setStatus('mandatory') msc_example_extended_prov_struct_extended_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvStructExtendedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvStructExtendedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayEntry.setStatus('mandatory') msc_example_extended_prov_struct_extended_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayRowIndex.setStatus('mandatory') msc_example_extended_prov_struct_extended_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayColumnIndex.setStatus('mandatory') msc_example_extended_prov_struct_extended_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1106, 1, 3), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedArrayValue.setStatus('mandatory') msc_example_extended_prov_struct_extended_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107)) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorTable.setStatus('mandatory') msc_example_extended_prov_struct_extended_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvStructExtendedVectorIndex')) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorEntry.setStatus('mandatory') msc_example_extended_prov_struct_extended_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorIndex.setStatus('mandatory') msc_example_extended_prov_struct_extended_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1107, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedProvStructExtendedVectorValue.setStatus('mandatory') msc_example_extended_prov_free_extended_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108)) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListTable.setStatus('mandatory') msc_example_extended_prov_free_extended_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvFreeExtendedListValue')) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListEntry.setStatus('mandatory') msc_example_extended_prov_free_extended_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108, 1, 1), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListValue.setStatus('mandatory') msc_example_extended_prov_free_extended_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1108, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedListRowStatus.setStatus('mandatory') msc_example_extended_prov_free_extended_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109)) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedTable.setStatus('mandatory') msc_example_extended_prov_free_extended_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvFreeExtendedReplicatedIndex')) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedEntry.setStatus('mandatory') msc_example_extended_prov_free_extended_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1, 1), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 5))) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedIndex.setStatus('mandatory') msc_example_extended_prov_free_extended_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedValue.setStatus('mandatory') msc_example_extended_prov_free_extended_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1109, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedReplicatedRowStatus.setStatus('mandatory') msc_example_extended_prov_free_extended_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110)) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayTable.setStatus('mandatory') msc_example_extended_prov_free_extended_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvFreeExtendedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvFreeExtendedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayEntry.setStatus('mandatory') msc_example_extended_prov_free_extended_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayRowIndex.setStatus('mandatory') msc_example_extended_prov_free_extended_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayColumnIndex.setStatus('mandatory') msc_example_extended_prov_free_extended_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1110, 1, 3), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedArrayValue.setStatus('mandatory') msc_example_extended_prov_free_extended_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111)) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorTable.setStatus('mandatory') msc_example_extended_prov_free_extended_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleExtendedProvFreeExtendedVectorIndex')) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorEntry.setStatus('mandatory') msc_example_extended_prov_free_extended_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorIndex.setStatus('mandatory') msc_example_extended_prov_free_extended_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 8, 1111, 1, 2), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleExtendedProvFreeExtendedVectorValue.setStatus('mandatory') msc_example_bcd = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9)) msc_example_bcd_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1)) if mibBuilder.loadTexts: mscExampleBcdRowStatusTable.setStatus('mandatory') msc_example_bcd_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex')) if mibBuilder.loadTexts: mscExampleBcdRowStatusEntry.setStatus('mandatory') msc_example_bcd_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdRowStatus.setStatus('mandatory') msc_example_bcd_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleBcdComponentName.setStatus('mandatory') msc_example_bcd_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleBcdStorageType.setStatus('mandatory') msc_example_bcd_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1, 1, 10), digit_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleBcdIndex.setStatus('mandatory') msc_example_bcd_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10)) if mibBuilder.loadTexts: mscExampleBcdOperationalTable.setStatus('mandatory') msc_example_bcd_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex')) if mibBuilder.loadTexts: mscExampleBcdOperationalEntry.setStatus('mandatory') msc_example_bcd_oper_struct_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdOperStructBcd.setStatus('mandatory') msc_example_bcd_oper_free_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 10, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcd.setStatus('mandatory') msc_example_bcd_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11)) if mibBuilder.loadTexts: mscExampleBcdProvisionalTable.setStatus('mandatory') msc_example_bcd_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex')) if mibBuilder.loadTexts: mscExampleBcdProvisionalEntry.setStatus('mandatory') msc_example_bcd_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvEnumSub.setStatus('mandatory') msc_example_bcd_prov_struct_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16)).clone(hexValue='30313233343536373839')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvStructBcd.setStatus('mandatory') msc_example_bcd_prov_free_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(4, 16)).clone(hexValue='31323334353637383930')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcd.setStatus('mandatory') msc_example_bcd_prov_free_bcd1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 11, 1, 4), digit_string().subtype(subtypeSpec=value_size_constraint(4, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcd1.setStatus('mandatory') msc_example_bcd_oper_struct_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120)) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorTable.setStatus('mandatory') msc_example_bcd_oper_struct_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperStructBcdVectorIndex')) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorEntry.setStatus('mandatory') msc_example_bcd_oper_struct_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorIndex.setStatus('mandatory') msc_example_bcd_oper_struct_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1120, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdOperStructBcdVectorValue.setStatus('mandatory') msc_example_bcd_oper_struct_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121)) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayTable.setStatus('mandatory') msc_example_bcd_oper_struct_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperStructBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperStructBcdArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayEntry.setStatus('mandatory') msc_example_bcd_oper_struct_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayRowIndex.setStatus('mandatory') msc_example_bcd_oper_struct_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayColumnIndex.setStatus('mandatory') msc_example_bcd_oper_struct_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1121, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdOperStructBcdArrayValue.setStatus('mandatory') msc_example_bcd_oper_free_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122)) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorTable.setStatus('mandatory') msc_example_bcd_oper_free_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperFreeBcdVectorIndex')) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorEntry.setStatus('mandatory') msc_example_bcd_oper_free_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorIndex.setStatus('mandatory') msc_example_bcd_oper_free_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1122, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdVectorValue.setStatus('mandatory') msc_example_bcd_oper_free_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123)) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayTable.setStatus('mandatory') msc_example_bcd_oper_free_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperFreeBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperFreeBcdArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayEntry.setStatus('mandatory') msc_example_bcd_oper_free_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayRowIndex.setStatus('mandatory') msc_example_bcd_oper_free_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayColumnIndex.setStatus('mandatory') msc_example_bcd_oper_free_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1123, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdArrayValue.setStatus('mandatory') msc_example_bcd_oper_free_bcd_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124)) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedTable.setStatus('mandatory') msc_example_bcd_oper_free_bcd_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperFreeBcdReplicatedIndex')) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedEntry.setStatus('mandatory') msc_example_bcd_oper_free_bcd_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedIndex.setStatus('mandatory') msc_example_bcd_oper_free_bcd_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedValue.setStatus('mandatory') msc_example_bcd_oper_free_bcd_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1124, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdReplicatedRowStatus.setStatus('mandatory') msc_example_bcd_oper_free_bcd_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125)) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListTable.setStatus('mandatory') msc_example_bcd_oper_free_bcd_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdOperFreeBcdListValue')) if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListEntry.setStatus('mandatory') msc_example_bcd_oper_free_bcd_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListValue.setStatus('mandatory') msc_example_bcd_oper_free_bcd_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1125, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleBcdOperFreeBcdListRowStatus.setStatus('mandatory') msc_example_bcd_prov_struct_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126)) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorTable.setStatus('mandatory') msc_example_bcd_prov_struct_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvStructBcdVectorIndex')) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorEntry.setStatus('mandatory') msc_example_bcd_prov_struct_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorIndex.setStatus('mandatory') msc_example_bcd_prov_struct_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1126, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvStructBcdVectorValue.setStatus('mandatory') msc_example_bcd_prov_struct_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127)) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayTable.setStatus('mandatory') msc_example_bcd_prov_struct_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvStructBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvStructBcdArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayEntry.setStatus('mandatory') msc_example_bcd_prov_struct_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayRowIndex.setStatus('mandatory') msc_example_bcd_prov_struct_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayColumnIndex.setStatus('mandatory') msc_example_bcd_prov_struct_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1127, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvStructBcdArrayValue.setStatus('mandatory') msc_example_bcd_prov_free_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128)) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorTable.setStatus('mandatory') msc_example_bcd_prov_free_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdVectorIndex')) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorEntry.setStatus('mandatory') msc_example_bcd_prov_free_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorIndex.setStatus('mandatory') msc_example_bcd_prov_free_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1128, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVectorValue.setStatus('mandatory') msc_example_bcd_prov_free_bcd_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129)) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Table.setStatus('mandatory') msc_example_bcd_prov_free_bcd_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdVector1Index')) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Entry.setStatus('mandatory') msc_example_bcd_prov_free_bcd_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Index.setStatus('mandatory') msc_example_bcd_prov_free_bcd_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1129, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdVector1Value.setStatus('mandatory') msc_example_bcd_prov_free_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130)) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayTable.setStatus('mandatory') msc_example_bcd_prov_free_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayEntry.setStatus('mandatory') msc_example_bcd_prov_free_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayRowIndex.setStatus('mandatory') msc_example_bcd_prov_free_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayColumnIndex.setStatus('mandatory') msc_example_bcd_prov_free_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1130, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArrayValue.setStatus('mandatory') msc_example_bcd_prov_free_bcd_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131)) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1Table.setStatus('mandatory') msc_example_bcd_prov_free_bcd_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdArray1RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdArray1ColumnIndex')) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1Entry.setStatus('mandatory') msc_example_bcd_prov_free_bcd_array1_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1RowIndex.setStatus('mandatory') msc_example_bcd_prov_free_bcd_array1_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1ColumnIndex.setStatus('mandatory') msc_example_bcd_prov_free_bcd_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1131, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdArray1Value.setStatus('mandatory') msc_example_bcd_prov_free_bcd_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132)) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedTable.setStatus('mandatory') msc_example_bcd_prov_free_bcd_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdReplicatedIndex')) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedEntry.setStatus('mandatory') msc_example_bcd_prov_free_bcd_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedIndex.setStatus('mandatory') msc_example_bcd_prov_free_bcd_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedValue.setStatus('mandatory') msc_example_bcd_prov_free_bcd_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1132, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicatedRowStatus.setStatus('mandatory') msc_example_bcd_prov_free_bcd_replicated1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133)) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Table.setStatus('mandatory') msc_example_bcd_prov_free_bcd_replicated1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdReplicated1Index')) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Entry.setStatus('mandatory') msc_example_bcd_prov_free_bcd_replicated1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(1, 7))) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Index.setStatus('mandatory') msc_example_bcd_prov_free_bcd_replicated1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1Value.setStatus('mandatory') msc_example_bcd_prov_free_bcd_replicated1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1133, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdReplicated1RowStatus.setStatus('mandatory') msc_example_bcd_prov_free_bcd_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134)) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListTable.setStatus('mandatory') msc_example_bcd_prov_free_bcd_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdListValue')) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListEntry.setStatus('mandatory') msc_example_bcd_prov_free_bcd_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListValue.setStatus('mandatory') msc_example_bcd_prov_free_bcd_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1134, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdListRowStatus.setStatus('mandatory') msc_example_bcd_prov_free_bcd_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135)) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1Table.setStatus('mandatory') msc_example_bcd_prov_free_bcd_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdProvFreeBcdList1Value')) if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1Entry.setStatus('mandatory') msc_example_bcd_prov_free_bcd_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135, 1, 1), digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1Value.setStatus('mandatory') msc_example_bcd_prov_free_bcd_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 9, 1135, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleBcdProvFreeBcdList1RowStatus.setStatus('mandatory') msc_example_wild_bcd = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10)) msc_example_wild_bcd_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1)) if mibBuilder.loadTexts: mscExampleWildBcdRowStatusTable.setStatus('mandatory') msc_example_wild_bcd_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex')) if mibBuilder.loadTexts: mscExampleWildBcdRowStatusEntry.setStatus('mandatory') msc_example_wild_bcd_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdRowStatus.setStatus('mandatory') msc_example_wild_bcd_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleWildBcdComponentName.setStatus('mandatory') msc_example_wild_bcd_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleWildBcdStorageType.setStatus('mandatory') msc_example_wild_bcd_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1, 1, 10), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleWildBcdIndex.setStatus('mandatory') msc_example_wild_bcd_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10)) if mibBuilder.loadTexts: mscExampleWildBcdOperationalTable.setStatus('mandatory') msc_example_wild_bcd_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex')) if mibBuilder.loadTexts: mscExampleWildBcdOperationalEntry.setStatus('mandatory') msc_example_wild_bcd_oper_struct_wild_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10, 1, 1), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcd.setStatus('mandatory') msc_example_wild_bcd_oper_free_wild_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 10, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcd.setStatus('mandatory') msc_example_wild_bcd_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11)) if mibBuilder.loadTexts: mscExampleWildBcdProvisionalTable.setStatus('mandatory') msc_example_wild_bcd_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex')) if mibBuilder.loadTexts: mscExampleWildBcdProvisionalEntry.setStatus('mandatory') msc_example_wild_bcd_prov_struct_wild_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11, 1, 1), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16)).clone(hexValue='30313233343536373839')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcd.setStatus('mandatory') msc_example_wild_bcd_prov_free_wild_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 11, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(4, 16)).clone(hexValue='31323334353637383930')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcd.setStatus('mandatory') msc_example_wild_bcd_oper_struct_wild_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136)) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorTable.setStatus('mandatory') msc_example_wild_bcd_oper_struct_wild_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperStructWildBcdVectorIndex')) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorEntry.setStatus('mandatory') msc_example_wild_bcd_oper_struct_wild_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorIndex.setStatus('mandatory') msc_example_wild_bcd_oper_struct_wild_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1136, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdVectorValue.setStatus('mandatory') msc_example_wild_bcd_oper_struct_wild_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137)) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayTable.setStatus('mandatory') msc_example_wild_bcd_oper_struct_wild_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperStructWildBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperStructWildBcdArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayEntry.setStatus('mandatory') msc_example_wild_bcd_oper_struct_wild_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayRowIndex.setStatus('mandatory') msc_example_wild_bcd_oper_struct_wild_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayColumnIndex.setStatus('mandatory') msc_example_wild_bcd_oper_struct_wild_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1137, 1, 3), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdOperStructWildBcdArrayValue.setStatus('mandatory') msc_example_wild_bcd_oper_free_wild_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138)) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorTable.setStatus('mandatory') msc_example_wild_bcd_oper_free_wild_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperFreeWildBcdVectorIndex')) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorEntry.setStatus('mandatory') msc_example_wild_bcd_oper_free_wild_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorIndex.setStatus('mandatory') msc_example_wild_bcd_oper_free_wild_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1138, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdVectorValue.setStatus('mandatory') msc_example_wild_bcd_oper_free_wild_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139)) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayTable.setStatus('mandatory') msc_example_wild_bcd_oper_free_wild_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperFreeWildBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperFreeWildBcdArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayEntry.setStatus('mandatory') msc_example_wild_bcd_oper_free_wild_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayRowIndex.setStatus('mandatory') msc_example_wild_bcd_oper_free_wild_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayColumnIndex.setStatus('mandatory') msc_example_wild_bcd_oper_free_wild_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1139, 1, 3), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdArrayValue.setStatus('mandatory') msc_example_wild_bcd_oper_free_wild_bcd_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140)) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedTable.setStatus('mandatory') msc_example_wild_bcd_oper_free_wild_bcd_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperFreeWildBcdReplicatedIndex')) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedEntry.setStatus('mandatory') msc_example_wild_bcd_oper_free_wild_bcd_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1, 1), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedIndex.setStatus('mandatory') msc_example_wild_bcd_oper_free_wild_bcd_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedValue.setStatus('mandatory') msc_example_wild_bcd_oper_free_wild_bcd_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1140, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus.setStatus('mandatory') msc_example_wild_bcd_oper_free_wild_bcd_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141)) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListTable.setStatus('mandatory') msc_example_wild_bcd_oper_free_wild_bcd_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdOperFreeWildBcdListValue')) if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListEntry.setStatus('mandatory') msc_example_wild_bcd_oper_free_wild_bcd_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141, 1, 1), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListValue.setStatus('mandatory') msc_example_wild_bcd_oper_free_wild_bcd_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1141, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleWildBcdOperFreeWildBcdListRowStatus.setStatus('mandatory') msc_example_wild_bcd_prov_struct_wild_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142)) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorTable.setStatus('mandatory') msc_example_wild_bcd_prov_struct_wild_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvStructWildBcdVectorIndex')) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorEntry.setStatus('mandatory') msc_example_wild_bcd_prov_struct_wild_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorIndex.setStatus('mandatory') msc_example_wild_bcd_prov_struct_wild_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1142, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdVectorValue.setStatus('mandatory') msc_example_wild_bcd_prov_struct_wild_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143)) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayTable.setStatus('mandatory') msc_example_wild_bcd_prov_struct_wild_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvStructWildBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvStructWildBcdArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayEntry.setStatus('mandatory') msc_example_wild_bcd_prov_struct_wild_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayRowIndex.setStatus('mandatory') msc_example_wild_bcd_prov_struct_wild_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayColumnIndex.setStatus('mandatory') msc_example_wild_bcd_prov_struct_wild_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1143, 1, 3), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdProvStructWildBcdArrayValue.setStatus('mandatory') msc_example_wild_bcd_prov_free_wild_bcd_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144)) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorTable.setStatus('mandatory') msc_example_wild_bcd_prov_free_wild_bcd_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvFreeWildBcdVectorIndex')) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorEntry.setStatus('mandatory') msc_example_wild_bcd_prov_free_wild_bcd_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorIndex.setStatus('mandatory') msc_example_wild_bcd_prov_free_wild_bcd_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1144, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdVectorValue.setStatus('mandatory') msc_example_wild_bcd_prov_free_wild_bcd_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145)) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayTable.setStatus('mandatory') msc_example_wild_bcd_prov_free_wild_bcd_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvFreeWildBcdArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvFreeWildBcdArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayEntry.setStatus('mandatory') msc_example_wild_bcd_prov_free_wild_bcd_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayRowIndex.setStatus('mandatory') msc_example_wild_bcd_prov_free_wild_bcd_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayColumnIndex.setStatus('mandatory') msc_example_wild_bcd_prov_free_wild_bcd_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1145, 1, 3), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdArrayValue.setStatus('mandatory') msc_example_wild_bcd_prov_free_wild_bcd_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146)) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedTable.setStatus('mandatory') msc_example_wild_bcd_prov_free_wild_bcd_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvFreeWildBcdReplicatedIndex')) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedEntry.setStatus('mandatory') msc_example_wild_bcd_prov_free_wild_bcd_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1, 1), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 5))) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedIndex.setStatus('mandatory') msc_example_wild_bcd_prov_free_wild_bcd_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1, 2), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedValue.setStatus('mandatory') msc_example_wild_bcd_prov_free_wild_bcd_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1146, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus.setStatus('mandatory') msc_example_wild_bcd_prov_free_wild_bcd_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147)) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListTable.setStatus('mandatory') msc_example_wild_bcd_prov_free_wild_bcd_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleWildBcdProvFreeWildBcdListValue')) if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListEntry.setStatus('mandatory') msc_example_wild_bcd_prov_free_wild_bcd_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147, 1, 1), wildcarded_digit_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListValue.setStatus('mandatory') msc_example_wild_bcd_prov_free_wild_bcd_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 10, 1147, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleWildBcdProvFreeWildBcdListRowStatus.setStatus('mandatory') msc_example_enum = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11)) msc_example_enum_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1)) if mibBuilder.loadTexts: mscExampleEnumRowStatusTable.setStatus('mandatory') msc_example_enum_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex')) if mibBuilder.loadTexts: mscExampleEnumRowStatusEntry.setStatus('mandatory') msc_example_enum_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumRowStatus.setStatus('mandatory') msc_example_enum_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleEnumComponentName.setStatus('mandatory') msc_example_enum_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleEnumStorageType.setStatus('mandatory') msc_example_enum_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('first', 1), ('second', 2), ('third', 3)))) if mibBuilder.loadTexts: mscExampleEnumIndex.setStatus('mandatory') msc_example_enum_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10)) if mibBuilder.loadTexts: mscExampleEnumOperationalTable.setStatus('mandatory') msc_example_enum_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex')) if mibBuilder.loadTexts: mscExampleEnumOperationalEntry.setStatus('mandatory') msc_example_enum_oper_struct_enum = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperStructEnum.setStatus('mandatory') msc_example_enum_oper_struct_enum_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperStructEnumSet.setStatus('mandatory') msc_example_enum_oper_free_enum = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnum.setStatus('mandatory') msc_example_enum_oper_free_enum_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 10, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumSet.setStatus('mandatory') msc_example_enum_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11)) if mibBuilder.loadTexts: mscExampleEnumProvisionalTable.setStatus('mandatory') msc_example_enum_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex')) if mibBuilder.loadTexts: mscExampleEnumProvisionalEntry.setStatus('mandatory') msc_example_enum_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvEnumSub.setStatus('mandatory') msc_example_enum_prov_struct_enum = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4))).clone('friday')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvStructEnum.setStatus('mandatory') msc_example_enum_prov_struct_enum_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1).clone(hexValue='aa')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvStructEnumSet.setStatus('mandatory') msc_example_enum_prov_free_enum = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5))).clone('may')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnum.setStatus('mandatory') msc_example_enum_prov_free_enum1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 11, 12, 13, 14))).clone(namedValues=named_values(('apple', 1), ('orange', 2), ('banana', 3), ('pear', 11), ('grapes', 12), ('pineapple', 13), ('watermelon', 14)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnum1.setStatus('mandatory') msc_example_enum_prov_free_enum_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2).clone(hexValue='0070')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumSet.setStatus('mandatory') msc_example_enum_prov_free_enum_set1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 11, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumSet1.setStatus('mandatory') msc_example_enum_oper_struct_enum_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162)) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorTable.setStatus('mandatory') msc_example_enum_oper_struct_enum_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperStructEnumVectorIndex')) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorEntry.setStatus('mandatory') msc_example_enum_oper_struct_enum_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorIndex.setStatus('mandatory') msc_example_enum_oper_struct_enum_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1162, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperStructEnumVectorValue.setStatus('mandatory') msc_example_enum_oper_struct_enum_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163)) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayTable.setStatus('mandatory') msc_example_enum_oper_struct_enum_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperStructEnumArrayMonthIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperStructEnumArrayDayIndex')) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayEntry.setStatus('mandatory') msc_example_enum_oper_struct_enum_array_month_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayMonthIndex.setStatus('mandatory') msc_example_enum_oper_struct_enum_array_day_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('mondayaaaa', 0), ('tuesdayaaaa', 1), ('wednesdayaaaa', 2), ('thursdayaaaa', 3), ('fridayaaaa', 4), ('saturdayaaaa', 5), ('sundayaaaa', 6)))) if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayDayIndex.setStatus('mandatory') msc_example_enum_oper_struct_enum_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1163, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperStructEnumArrayValue.setStatus('mandatory') msc_example_enum_oper_free_enum_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164)) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorTable.setStatus('mandatory') msc_example_enum_oper_free_enum_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperFreeEnumVectorIndex')) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorEntry.setStatus('mandatory') msc_example_enum_oper_free_enum_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorIndex.setStatus('mandatory') msc_example_enum_oper_free_enum_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1164, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumVectorValue.setStatus('mandatory') msc_example_enum_oper_free_enum_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165)) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayTable.setStatus('mandatory') msc_example_enum_oper_free_enum_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperFreeEnumArrayMonthIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperFreeEnumArrayDayIndex')) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayEntry.setStatus('mandatory') msc_example_enum_oper_free_enum_array_month_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayMonthIndex.setStatus('mandatory') msc_example_enum_oper_free_enum_array_day_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayDayIndex.setStatus('mandatory') msc_example_enum_oper_free_enum_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1165, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumArrayValue.setStatus('mandatory') msc_example_enum_oper_free_enum_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166)) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedTable.setStatus('mandatory') msc_example_enum_oper_free_enum_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperFreeEnumReplicatedIndex')) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedEntry.setStatus('mandatory') msc_example_enum_oper_free_enum_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedIndex.setStatus('mandatory') msc_example_enum_oper_free_enum_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedValue.setStatus('mandatory') msc_example_enum_oper_free_enum_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1166, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumReplicatedRowStatus.setStatus('mandatory') msc_example_enum_oper_free_enum_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167)) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListTable.setStatus('mandatory') msc_example_enum_oper_free_enum_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumOperFreeEnumListValue')) if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListEntry.setStatus('mandatory') msc_example_enum_oper_free_enum_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListValue.setStatus('mandatory') msc_example_enum_oper_free_enum_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1167, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleEnumOperFreeEnumListRowStatus.setStatus('mandatory') msc_example_enum_prov_struct_enum_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168)) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorTable.setStatus('mandatory') msc_example_enum_prov_struct_enum_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvStructEnumVectorIndex')) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorEntry.setStatus('mandatory') msc_example_enum_prov_struct_enum_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorIndex.setStatus('mandatory') msc_example_enum_prov_struct_enum_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1168, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvStructEnumVectorValue.setStatus('mandatory') msc_example_enum_prov_struct_enum_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169)) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayTable.setStatus('mandatory') msc_example_enum_prov_struct_enum_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvStructEnumArrayMonthIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvStructEnumArrayDayIndex')) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayEntry.setStatus('mandatory') msc_example_enum_prov_struct_enum_array_month_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayMonthIndex.setStatus('mandatory') msc_example_enum_prov_struct_enum_array_day_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayDayIndex.setStatus('mandatory') msc_example_enum_prov_struct_enum_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1169, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvStructEnumArrayValue.setStatus('mandatory') msc_example_enum_prov_free_enum_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170)) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorTable.setStatus('mandatory') msc_example_enum_prov_free_enum_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumVectorIndex')) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorEntry.setStatus('mandatory') msc_example_enum_prov_free_enum_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorIndex.setStatus('mandatory') msc_example_enum_prov_free_enum_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1170, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVectorValue.setStatus('mandatory') msc_example_enum_prov_free_enum_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171)) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Table.setStatus('mandatory') msc_example_enum_prov_free_enum_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumVector1Index')) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Entry.setStatus('mandatory') msc_example_enum_prov_free_enum_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Index.setStatus('mandatory') msc_example_enum_prov_free_enum_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1171, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumVector1Value.setStatus('mandatory') msc_example_enum_prov_free_enum_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172)) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayTable.setStatus('mandatory') msc_example_enum_prov_free_enum_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumArrayMonthIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumArrayDayIndex')) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayEntry.setStatus('mandatory') msc_example_enum_prov_free_enum_array_month_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayMonthIndex.setStatus('mandatory') msc_example_enum_prov_free_enum_array_day_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayDayIndex.setStatus('mandatory') msc_example_enum_prov_free_enum_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1172, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArrayValue.setStatus('mandatory') msc_example_enum_prov_free_enum_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173)) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1Table.setStatus('mandatory') msc_example_enum_prov_free_enum_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumArray1MonthIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumArray1DayIndex')) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1Entry.setStatus('mandatory') msc_example_enum_prov_free_enum_array1_month_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1MonthIndex.setStatus('mandatory') msc_example_enum_prov_free_enum_array1_day_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1DayIndex.setStatus('mandatory') msc_example_enum_prov_free_enum_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1173, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 11, 12, 13, 14))).clone(namedValues=named_values(('apple', 1), ('orange', 2), ('banana', 3), ('pear', 11), ('grapes', 12), ('pineapple', 13), ('watermelon', 14)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumArray1Value.setStatus('mandatory') msc_example_enum_prov_free_enum_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174)) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedTable.setStatus('mandatory') msc_example_enum_prov_free_enum_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumReplicatedIndex')) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedEntry.setStatus('mandatory') msc_example_enum_prov_free_enum_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saturday', 5), ('sunday', 6)))) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedIndex.setStatus('mandatory') msc_example_enum_prov_free_enum_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedValue.setStatus('mandatory') msc_example_enum_prov_free_enum_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1174, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumReplicatedRowStatus.setStatus('mandatory') msc_example_enum_prov_free_enum_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175)) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListTable.setStatus('mandatory') msc_example_enum_prov_free_enum_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumListValue')) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListEntry.setStatus('mandatory') msc_example_enum_prov_free_enum_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListValue.setStatus('mandatory') msc_example_enum_prov_free_enum_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1175, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumListRowStatus.setStatus('mandatory') msc_example_enum_prov_free_enum_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176)) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1Table.setStatus('mandatory') msc_example_enum_prov_free_enum_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumProvFreeEnumList1Value')) if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1Entry.setStatus('mandatory') msc_example_enum_prov_free_enum_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1Value.setStatus('mandatory') msc_example_enum_prov_free_enum_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 11, 1176, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleEnumProvFreeEnumList1RowStatus.setStatus('mandatory') msc_example_object_id = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12)) msc_example_object_id_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1)) if mibBuilder.loadTexts: mscExampleObjectIdRowStatusTable.setStatus('mandatory') msc_example_object_id_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex')) if mibBuilder.loadTexts: mscExampleObjectIdRowStatusEntry.setStatus('mandatory') msc_example_object_id_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjectIdRowStatus.setStatus('mandatory') msc_example_object_id_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleObjectIdComponentName.setStatus('mandatory') msc_example_object_id_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleObjectIdStorageType.setStatus('mandatory') msc_example_object_id_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1, 1, 10), object_identifier()) if mibBuilder.loadTexts: mscExampleObjectIdIndex.setStatus('mandatory') msc_example_object_id_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 10)) if mibBuilder.loadTexts: mscExampleObjectIdOperationalTable.setStatus('mandatory') msc_example_object_id_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex')) if mibBuilder.loadTexts: mscExampleObjectIdOperationalEntry.setStatus('mandatory') msc_example_object_id_oper_free_obj_id = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 10, 1, 1), object_identifier()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjId.setStatus('mandatory') msc_example_object_id_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11)) if mibBuilder.loadTexts: mscExampleObjectIdProvisionalTable.setStatus('mandatory') msc_example_object_id_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex')) if mibBuilder.loadTexts: mscExampleObjectIdProvisionalEntry.setStatus('mandatory') msc_example_object_id_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjectIdProvEnumSub.setStatus('mandatory') msc_example_object_id_prov_free_obj_id = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 11, 1, 2), object_identifier()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjId.setStatus('mandatory') msc_example_object_id_oper_free_obj_id_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116)) if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedTable.setStatus('mandatory') msc_example_object_id_oper_free_obj_id_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdOperFreeObjIdReplicatedIndex')) if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedEntry.setStatus('mandatory') msc_example_object_id_oper_free_obj_id_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1, 1), object_identifier()) if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedIndex.setStatus('mandatory') msc_example_object_id_oper_free_obj_id_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1, 2), object_identifier()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedValue.setStatus('mandatory') msc_example_object_id_oper_free_obj_id_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1116, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdReplicatedRowStatus.setStatus('mandatory') msc_example_object_id_oper_free_obj_id_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117)) if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListTable.setStatus('mandatory') msc_example_object_id_oper_free_obj_id_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdOperFreeObjIdListValue')) if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListEntry.setStatus('mandatory') msc_example_object_id_oper_free_obj_id_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117, 1, 1), integer_sequence()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListValue.setStatus('mandatory') msc_example_object_id_oper_free_obj_id_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1117, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleObjectIdOperFreeObjIdListRowStatus.setStatus('mandatory') msc_example_object_id_prov_free_obj_id_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118)) if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedTable.setStatus('mandatory') msc_example_object_id_prov_free_obj_id_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdProvFreeObjIdReplicatedIndex')) if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedEntry.setStatus('mandatory') msc_example_object_id_prov_free_obj_id_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1, 1), object_identifier()) if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedIndex.setStatus('mandatory') msc_example_object_id_prov_free_obj_id_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1, 2), object_identifier()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedValue.setStatus('mandatory') msc_example_object_id_prov_free_obj_id_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1118, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdReplicatedRowStatus.setStatus('mandatory') msc_example_object_id_prov_free_obj_id_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119)) if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListTable.setStatus('mandatory') msc_example_object_id_prov_free_obj_id_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjectIdProvFreeObjIdListValue')) if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListEntry.setStatus('mandatory') msc_example_object_id_prov_free_obj_id_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119, 1, 1), integer_sequence()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListValue.setStatus('mandatory') msc_example_object_id_prov_free_obj_id_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 12, 1119, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleObjectIdProvFreeObjIdListRowStatus.setStatus('mandatory') msc_example_sequence = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13)) msc_example_sequence_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1)) if mibBuilder.loadTexts: mscExampleSequenceRowStatusTable.setStatus('mandatory') msc_example_sequence_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex')) if mibBuilder.loadTexts: mscExampleSequenceRowStatusEntry.setStatus('mandatory') msc_example_sequence_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceRowStatus.setStatus('mandatory') msc_example_sequence_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleSequenceComponentName.setStatus('mandatory') msc_example_sequence_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleSequenceStorageType.setStatus('mandatory') msc_example_sequence_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1, 1, 10), object_identifier()) if mibBuilder.loadTexts: mscExampleSequenceIndex.setStatus('mandatory') msc_example_sequence_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10)) if mibBuilder.loadTexts: mscExampleSequenceOperationalTable.setStatus('mandatory') msc_example_sequence_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex')) if mibBuilder.loadTexts: mscExampleSequenceOperationalEntry.setStatus('mandatory') msc_example_sequence_oper_struct_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10, 1, 1), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 9))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceOperStructSequence.setStatus('mandatory') msc_example_sequence_oper_free_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 10, 1, 2), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 9))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequence.setStatus('mandatory') msc_example_sequence_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11)) if mibBuilder.loadTexts: mscExampleSequenceProvisionalTable.setStatus('mandatory') msc_example_sequence_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex')) if mibBuilder.loadTexts: mscExampleSequenceProvisionalEntry.setStatus('mandatory') msc_example_sequence_prov_struct_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11, 1, 1), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 9))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceProvStructSequence.setStatus('mandatory') msc_example_sequence_prov_free_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 11, 1, 2), integer_sequence().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequence.setStatus('mandatory') msc_example_sequence_oper_free_sequence_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112)) if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedTable.setStatus('mandatory') msc_example_sequence_oper_free_sequence_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceOperFreeSequenceReplicatedIndex')) if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedEntry.setStatus('mandatory') msc_example_sequence_oper_free_sequence_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1, 1), object_identifier()) if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedIndex.setStatus('mandatory') msc_example_sequence_oper_free_sequence_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1, 2), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 9))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedValue.setStatus('mandatory') msc_example_sequence_oper_free_sequence_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1112, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceReplicatedRowStatus.setStatus('mandatory') msc_example_sequence_oper_free_sequence_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113)) if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListTable.setStatus('mandatory') msc_example_sequence_oper_free_sequence_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceOperFreeSequenceListValue')) if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListEntry.setStatus('mandatory') msc_example_sequence_oper_free_sequence_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113, 1, 1), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 9))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListValue.setStatus('mandatory') msc_example_sequence_oper_free_sequence_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1113, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleSequenceOperFreeSequenceListRowStatus.setStatus('mandatory') msc_example_sequence_prov_free_sequence_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114)) if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedTable.setStatus('mandatory') msc_example_sequence_prov_free_sequence_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceProvFreeSequenceReplicatedIndex')) if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedEntry.setStatus('mandatory') msc_example_sequence_prov_free_sequence_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1, 1), object_identifier()) if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedIndex.setStatus('mandatory') msc_example_sequence_prov_free_sequence_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1, 2), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 7)).setFixedLength(7)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedValue.setStatus('mandatory') msc_example_sequence_prov_free_sequence_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1114, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceReplicatedRowStatus.setStatus('mandatory') msc_example_sequence_prov_free_sequence_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115)) if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListTable.setStatus('mandatory') msc_example_sequence_prov_free_sequence_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceProvFreeSequenceListValue')) if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListEntry.setStatus('mandatory') msc_example_sequence_prov_free_sequence_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115, 1, 1), integer_sequence().subtype(subtypeSpec=value_size_constraint(7, 9))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListValue.setStatus('mandatory') msc_example_sequence_prov_free_sequence_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 13, 1115, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleSequenceProvFreeSequenceListRowStatus.setStatus('mandatory') msc_example_signed = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14)) msc_example_signed_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1)) if mibBuilder.loadTexts: mscExampleSignedRowStatusTable.setStatus('mandatory') msc_example_signed_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex')) if mibBuilder.loadTexts: mscExampleSignedRowStatusEntry.setStatus('mandatory') msc_example_signed_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedRowStatus.setStatus('mandatory') msc_example_signed_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleSignedComponentName.setStatus('mandatory') msc_example_signed_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleSignedStorageType.setStatus('mandatory') msc_example_signed_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscExampleSignedIndex.setStatus('mandatory') msc_example_signed_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10)) if mibBuilder.loadTexts: mscExampleSignedOperationalTable.setStatus('mandatory') msc_example_signed_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex')) if mibBuilder.loadTexts: mscExampleSignedOperationalEntry.setStatus('mandatory') msc_example_signed_oper_struct_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(-16, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedOperStructSigned.setStatus('mandatory') msc_example_signed_oper_free_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 10, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-16, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedOperFreeSigned.setStatus('mandatory') msc_example_signed_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11)) if mibBuilder.loadTexts: mscExampleSignedProvisionalTable.setStatus('mandatory') msc_example_signed_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex')) if mibBuilder.loadTexts: mscExampleSignedProvisionalEntry.setStatus('mandatory') msc_example_signed_prov_signed_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvSignedSub.setStatus('mandatory') msc_example_signed_prov_struct_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 2), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(-17, -17), value_range_constraint(-16, 16), value_range_constraint(17, 17), value_range_constraint(18, 18))).clone(-17)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvStructSigned.setStatus('mandatory') msc_example_signed_prov_free_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-4, 8)).clone(-2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvFreeSigned.setStatus('mandatory') msc_example_signed_prov_free_signed1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 11, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(-4, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvFreeSigned1.setStatus('mandatory') msc_example_signed_oper_struct_signed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148)) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorTable.setStatus('mandatory') msc_example_signed_oper_struct_signed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperStructSignedVectorIndex')) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorEntry.setStatus('mandatory') msc_example_signed_oper_struct_signed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorIndex.setStatus('mandatory') msc_example_signed_oper_struct_signed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1148, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedOperStructSignedVectorValue.setStatus('mandatory') msc_example_signed_oper_struct_signed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149)) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayTable.setStatus('mandatory') msc_example_signed_oper_struct_signed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperStructSignedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperStructSignedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayEntry.setStatus('mandatory') msc_example_signed_oper_struct_signed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayRowIndex.setStatus('mandatory') msc_example_signed_oper_struct_signed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayColumnIndex.setStatus('mandatory') msc_example_signed_oper_struct_signed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1149, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedOperStructSignedArrayValue.setStatus('mandatory') msc_example_signed_oper_free_signed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150)) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorTable.setStatus('mandatory') msc_example_signed_oper_free_signed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperFreeSignedVectorIndex')) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorEntry.setStatus('mandatory') msc_example_signed_oper_free_signed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorIndex.setStatus('mandatory') msc_example_signed_oper_free_signed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1150, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedVectorValue.setStatus('mandatory') msc_example_signed_oper_free_signed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151)) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayTable.setStatus('mandatory') msc_example_signed_oper_free_signed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperFreeSignedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperFreeSignedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayEntry.setStatus('mandatory') msc_example_signed_oper_free_signed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayRowIndex.setStatus('mandatory') msc_example_signed_oper_free_signed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayColumnIndex.setStatus('mandatory') msc_example_signed_oper_free_signed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1151, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedArrayValue.setStatus('mandatory') msc_example_signed_oper_free_signed_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152)) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedTable.setStatus('mandatory') msc_example_signed_oper_free_signed_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperFreeSignedReplicatedIndex')) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedEntry.setStatus('mandatory') msc_example_signed_oper_free_signed_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedIndex.setStatus('mandatory') msc_example_signed_oper_free_signed_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-16, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedValue.setStatus('mandatory') msc_example_signed_oper_free_signed_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1152, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedReplicatedRowStatus.setStatus('mandatory') msc_example_signed_oper_free_signed_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153)) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListTable.setStatus('mandatory') msc_example_signed_oper_free_signed_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedOperFreeSignedListValue')) if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListEntry.setStatus('mandatory') msc_example_signed_oper_free_signed_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(-16, 16))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListValue.setStatus('mandatory') msc_example_signed_oper_free_signed_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1153, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleSignedOperFreeSignedListRowStatus.setStatus('mandatory') msc_example_signed_prov_struct_signed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154)) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorTable.setStatus('mandatory') msc_example_signed_prov_struct_signed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvStructSignedVectorIndex')) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorEntry.setStatus('mandatory') msc_example_signed_prov_struct_signed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorIndex.setStatus('mandatory') msc_example_signed_prov_struct_signed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1154, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvStructSignedVectorValue.setStatus('mandatory') msc_example_signed_prov_struct_signed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155)) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayTable.setStatus('mandatory') msc_example_signed_prov_struct_signed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvStructSignedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvStructSignedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayEntry.setStatus('mandatory') msc_example_signed_prov_struct_signed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayRowIndex.setStatus('mandatory') msc_example_signed_prov_struct_signed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayColumnIndex.setStatus('mandatory') msc_example_signed_prov_struct_signed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1155, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvStructSignedArrayValue.setStatus('mandatory') msc_example_signed_prov_free_signed_vector_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156)) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorTable.setStatus('mandatory') msc_example_signed_prov_free_signed_vector_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedVectorIndex')) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorEntry.setStatus('mandatory') msc_example_signed_prov_free_signed_vector_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorIndex.setStatus('mandatory') msc_example_signed_prov_free_signed_vector_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1156, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVectorValue.setStatus('mandatory') msc_example_signed_prov_free_signed_vector1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157)) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Table.setStatus('mandatory') msc_example_signed_prov_free_signed_vector1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedVector1Index')) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Entry.setStatus('mandatory') msc_example_signed_prov_free_signed_vector1_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Index.setStatus('mandatory') msc_example_signed_prov_free_signed_vector1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1157, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-5, 5))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedVector1Value.setStatus('mandatory') msc_example_signed_prov_free_signed_array_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158)) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayTable.setStatus('mandatory') msc_example_signed_prov_free_signed_array_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedArrayRowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedArrayColumnIndex')) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayEntry.setStatus('mandatory') msc_example_signed_prov_free_signed_array_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayRowIndex.setStatus('mandatory') msc_example_signed_prov_free_signed_array_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayColumnIndex.setStatus('mandatory') msc_example_signed_prov_free_signed_array_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1158, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-1000, 4000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArrayValue.setStatus('mandatory') msc_example_signed_prov_free_signed_array1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159)) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1Table.setStatus('mandatory') msc_example_signed_prov_free_signed_array1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedArray1RowIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedArray1ColumnIndex')) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1Entry.setStatus('mandatory') msc_example_signed_prov_free_signed_array1_row_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1RowIndex.setStatus('mandatory') msc_example_signed_prov_free_signed_array1_column_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 3))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1ColumnIndex.setStatus('mandatory') msc_example_signed_prov_free_signed_array1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1159, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-1000, 4000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedArray1Value.setStatus('mandatory') msc_example_signed_prov_free_signed_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160)) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedTable.setStatus('mandatory') msc_example_signed_prov_free_signed_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedReplicatedIndex')) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedEntry.setStatus('mandatory') msc_example_signed_prov_free_signed_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 5))) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedIndex.setStatus('mandatory') msc_example_signed_prov_free_signed_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(-1, 13))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedValue.setStatus('mandatory') msc_example_signed_prov_free_signed_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1160, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedReplicatedRowStatus.setStatus('mandatory') msc_example_signed_prov_free_signed_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161)) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListTable.setStatus('mandatory') msc_example_signed_prov_free_signed_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSignedProvFreeSignedListValue')) if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListEntry.setStatus('mandatory') msc_example_signed_prov_free_signed_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(-3000, 160))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListValue.setStatus('mandatory') msc_example_signed_prov_free_signed_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 14, 1161, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleSignedProvFreeSignedListRowStatus.setStatus('mandatory') msc_example_miscellaneous = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15)) msc_example_miscellaneous_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1)) if mibBuilder.loadTexts: mscExampleMiscellaneousRowStatusTable.setStatus('mandatory') msc_example_miscellaneous_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex')) if mibBuilder.loadTexts: mscExampleMiscellaneousRowStatusEntry.setStatus('mandatory') msc_example_miscellaneous_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousRowStatus.setStatus('mandatory') msc_example_miscellaneous_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleMiscellaneousComponentName.setStatus('mandatory') msc_example_miscellaneous_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleMiscellaneousStorageType.setStatus('mandatory') msc_example_miscellaneous_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscExampleMiscellaneousIndex.setStatus('mandatory') msc_example_miscellaneous_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10)) if mibBuilder.loadTexts: mscExampleMiscellaneousOperationalTable.setStatus('mandatory') msc_example_miscellaneous_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex')) if mibBuilder.loadTexts: mscExampleMiscellaneousOperationalEntry.setStatus('mandatory') msc_example_miscellaneous_oper_struct_long = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 1), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperStructLong.setStatus('mandatory') msc_example_miscellaneous_oper_free_long = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 2), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLong.setStatus('mandatory') msc_example_miscellaneous_oper_free_time = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 3), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(19, 19)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTime.setStatus('mandatory') msc_example_miscellaneous_oper_free_time_date_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 4), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(10, 10)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeDateOnly.setStatus('mandatory') msc_example_miscellaneous_oper_free_time_time_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 5), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(5, 5)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeTimeOnly.setStatus('mandatory') msc_example_miscellaneous_oper_free_time_date_time_minute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 6), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(16, 16)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeDateTimeMinute.setStatus('mandatory') msc_example_miscellaneous_oper_free_counter64 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 7), passport_counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeCounter64.setStatus('mandatory') msc_example_miscellaneous_oper_free_gauge64 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 8), gauge64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeGauge64.setStatus('mandatory') msc_example_miscellaneous_oper_struct_counter64 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 10, 1, 9), passport_counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleMiscellaneousOperStructCounter64.setStatus('mandatory') msc_example_miscellaneous_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11)) if mibBuilder.loadTexts: mscExampleMiscellaneousProvisionalTable.setStatus('mandatory') msc_example_miscellaneous_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex')) if mibBuilder.loadTexts: mscExampleMiscellaneousProvisionalEntry.setStatus('mandatory') msc_example_miscellaneous_prov_enum_sub = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvEnumSub.setStatus('mandatory') msc_example_miscellaneous_prov_struct_long = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 2), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvStructLong.setStatus('mandatory') msc_example_miscellaneous_prov_free_long = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 3), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLong.setStatus('mandatory') msc_example_miscellaneous_prov_free_time = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 4), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(19, 19))).clone(hexValue='313939322d31302d31352031303a33393a3030')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTime.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_date_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 5), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(10, 10))).clone(hexValue='313939322d31302d3135')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateOnly.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_time_only = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 6), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(5, 5))).clone(hexValue='31303a3339')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeTimeOnly.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_date_time_minute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 7), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(16, 16))).clone(hexValue='313939322d31302d31352031303a3330')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateTimeMinute.setStatus('mandatory') msc_example_miscellaneous_prov_free_time1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 8), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(19, 19)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTime1.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_date_only1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 9), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(10, 10)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateOnly1.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_time_only1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 10), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(8, 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeTimeOnly1.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_date_time_minute1 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 11, 1, 11), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(16, 16)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeDateTimeMinute1.setStatus('mandatory') msc_example_miscellaneous_oper_free_long_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177)) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedTable.setStatus('mandatory') msc_example_miscellaneous_oper_free_long_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousOperFreeLongReplicatedIndex')) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedEntry.setStatus('mandatory') msc_example_miscellaneous_oper_free_long_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1, 1), unsigned64()) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedIndex.setStatus('mandatory') msc_example_miscellaneous_oper_free_long_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1, 2), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedValue.setStatus('mandatory') msc_example_miscellaneous_oper_free_long_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1177, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongReplicatedRowStatus.setStatus('mandatory') msc_example_miscellaneous_oper_free_long_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178)) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListTable.setStatus('mandatory') msc_example_miscellaneous_oper_free_long_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousOperFreeLongListValue')) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListEntry.setStatus('mandatory') msc_example_miscellaneous_oper_free_long_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178, 1, 1), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListValue.setStatus('mandatory') msc_example_miscellaneous_oper_free_long_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1178, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeLongListRowStatus.setStatus('mandatory') msc_example_miscellaneous_oper_free_time_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179)) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListTable.setStatus('mandatory') msc_example_miscellaneous_oper_free_time_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousOperFreeTimeListValue')) if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListEntry.setStatus('mandatory') msc_example_miscellaneous_oper_free_time_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179, 1, 1), enterprise_date_and_time().subtype(subtypeSpec=value_size_constraint(16, 16)).setFixedLength(16)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListValue.setStatus('mandatory') msc_example_miscellaneous_oper_free_time_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1179, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousOperFreeTimeListRowStatus.setStatus('mandatory') msc_example_miscellaneous_prov_free_long_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180)) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedTable.setStatus('mandatory') msc_example_miscellaneous_prov_free_long_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeLongReplicatedIndex')) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedEntry.setStatus('mandatory') msc_example_miscellaneous_prov_free_long_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1, 1), unsigned64()) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedIndex.setStatus('mandatory') msc_example_miscellaneous_prov_free_long_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1, 2), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedValue.setStatus('mandatory') msc_example_miscellaneous_prov_free_long_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1180, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongReplicatedRowStatus.setStatus('mandatory') msc_example_miscellaneous_prov_free_long_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181)) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListTable.setStatus('mandatory') msc_example_miscellaneous_prov_free_long_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeLongListValue')) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListEntry.setStatus('mandatory') msc_example_miscellaneous_prov_free_long_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181, 1, 1), unsigned64().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListValue.setStatus('mandatory') msc_example_miscellaneous_prov_free_long_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1181, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeLongListRowStatus.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_replicated_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182)) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedTable.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_replicated_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeTimeReplicatedIndex')) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedEntry.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_replicated_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1, 1), enterprise_date_and_time().subtype(subtypeSpec=value_size_constraint(10, 10)).setFixedLength(10)) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedIndex.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_replicated_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1, 2), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(8, 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedValue.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_replicated_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1182, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_list_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183)) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListTable.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeTimeListValue')) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListEntry.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_list_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183, 1, 1), enterprise_date_and_time().subtype(subtypeSpec=value_size_constraint(19, 19)).setFixedLength(19)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListValue.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_list_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1183, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeListRowStatus.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_list1_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184)) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1Table.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_list1_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeTimeList1Value')) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1Entry.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_list1_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184, 1, 1), enterprise_date_and_time().subtype(subtypeSpec=value_size_constraint(10, 10)).setFixedLength(10)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1Value.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_list1_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1184, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList1RowStatus.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_list2_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185)) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2Table.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_list2_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeTimeList2Value')) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2Entry.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_list2_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185, 1, 1), enterprise_date_and_time().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2Value.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_list2_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1185, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList2RowStatus.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_list3_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186)) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3Table.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_list3_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleMiscellaneousProvFreeTimeList3Value')) if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3Entry.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_list3_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186, 1, 1), enterprise_date_and_time().subtype(subtypeSpec=value_size_constraint(16, 16)).setFixedLength(16)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3Value.setStatus('mandatory') msc_example_miscellaneous_prov_free_time_list3_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 15, 1186, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscExampleMiscellaneousProvFreeTimeList3RowStatus.setStatus('mandatory') msc_example_one_index = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16)) msc_example_one_index_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1)) if mibBuilder.loadTexts: mscExampleOneIndexRowStatusTable.setStatus('mandatory') msc_example_one_index_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOneIndexOneIndex')) if mibBuilder.loadTexts: mscExampleOneIndexRowStatusEntry.setStatus('mandatory') msc_example_one_index_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleOneIndexRowStatus.setStatus('mandatory') msc_example_one_index_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleOneIndexComponentName.setStatus('mandatory') msc_example_one_index_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleOneIndexStorageType.setStatus('mandatory') msc_example_one_index_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleOneIndexOneIndex.setStatus('mandatory') msc_example_one_index_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 10)) if mibBuilder.loadTexts: mscExampleOneIndexProvisionedTable.setStatus('mandatory') msc_example_one_index_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleOneIndexOneIndex')) if mibBuilder.loadTexts: mscExampleOneIndexProvisionedEntry.setStatus('mandatory') msc_example_one_index_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 16, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleOneIndexProvAttribute.setStatus('mandatory') msc_example_two_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17)) msc_example_two_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1)) if mibBuilder.loadTexts: mscExampleTwoIndicesRowStatusTable.setStatus('mandatory') msc_example_two_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleTwoIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleTwoIndicesTwoIndex')) if mibBuilder.loadTexts: mscExampleTwoIndicesRowStatusEntry.setStatus('mandatory') msc_example_two_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleTwoIndicesRowStatus.setStatus('mandatory') msc_example_two_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleTwoIndicesComponentName.setStatus('mandatory') msc_example_two_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleTwoIndicesStorageType.setStatus('mandatory') msc_example_two_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleTwoIndicesOneIndex.setStatus('mandatory') msc_example_two_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleTwoIndicesTwoIndex.setStatus('mandatory') msc_example_two_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 10)) if mibBuilder.loadTexts: mscExampleTwoIndicesProvisionedTable.setStatus('mandatory') msc_example_two_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleTwoIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleTwoIndicesTwoIndex')) if mibBuilder.loadTexts: mscExampleTwoIndicesProvisionedEntry.setStatus('mandatory') msc_example_two_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 17, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleTwoIndicesProvAttribute.setStatus('mandatory') msc_example_three_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18)) msc_example_three_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1)) if mibBuilder.loadTexts: mscExampleThreeIndicesRowStatusTable.setStatus('mandatory') msc_example_three_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleThreeIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleThreeIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleThreeIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleThreeIndicesRowStatusEntry.setStatus('mandatory') msc_example_three_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleThreeIndicesRowStatus.setStatus('mandatory') msc_example_three_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleThreeIndicesComponentName.setStatus('mandatory') msc_example_three_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleThreeIndicesStorageType.setStatus('mandatory') msc_example_three_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleThreeIndicesOneIndex.setStatus('mandatory') msc_example_three_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleThreeIndicesTwoIndex.setStatus('mandatory') msc_example_three_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 1, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleThreeIndicesThreeIndex.setStatus('mandatory') msc_example_three_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 10)) if mibBuilder.loadTexts: mscExampleThreeIndicesProvisionedTable.setStatus('mandatory') msc_example_three_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleThreeIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleThreeIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleThreeIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleThreeIndicesProvisionedEntry.setStatus('mandatory') msc_example_three_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 18, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleThreeIndicesProvAttribute.setStatus('mandatory') msc_example_four_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19)) msc_example_four_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1)) if mibBuilder.loadTexts: mscExampleFourIndicesRowStatusTable.setStatus('mandatory') msc_example_four_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesThreeIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesFourIndex')) if mibBuilder.loadTexts: mscExampleFourIndicesRowStatusEntry.setStatus('mandatory') msc_example_four_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFourIndicesRowStatus.setStatus('mandatory') msc_example_four_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleFourIndicesComponentName.setStatus('mandatory') msc_example_four_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleFourIndicesStorageType.setStatus('mandatory') msc_example_four_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleFourIndicesOneIndex.setStatus('mandatory') msc_example_four_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleFourIndicesTwoIndex.setStatus('mandatory') msc_example_four_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleFourIndicesThreeIndex.setStatus('mandatory') msc_example_four_indices_four_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 1, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleFourIndicesFourIndex.setStatus('mandatory') msc_example_four_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 10)) if mibBuilder.loadTexts: mscExampleFourIndicesProvisionedTable.setStatus('mandatory') msc_example_four_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesThreeIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleFourIndicesFourIndex')) if mibBuilder.loadTexts: mscExampleFourIndicesProvisionedEntry.setStatus('mandatory') msc_example_four_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 19, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleFourIndicesProvAttribute.setStatus('mandatory') msc_example_decimal_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20)) msc_example_decimal_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1)) if mibBuilder.loadTexts: mscExampleDecimalIndicesRowStatusTable.setStatus('mandatory') msc_example_decimal_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleDecimalIndicesRowStatusEntry.setStatus('mandatory') msc_example_decimal_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalIndicesRowStatus.setStatus('mandatory') msc_example_decimal_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleDecimalIndicesComponentName.setStatus('mandatory') msc_example_decimal_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleDecimalIndicesStorageType.setStatus('mandatory') msc_example_decimal_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 10), value_range_constraint(100, 100)))) if mibBuilder.loadTexts: mscExampleDecimalIndicesOneIndex.setStatus('mandatory') msc_example_decimal_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 10), value_range_constraint(100, 100)))) if mibBuilder.loadTexts: mscExampleDecimalIndicesTwoIndex.setStatus('mandatory') msc_example_decimal_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 10), value_range_constraint(100, 100)))) if mibBuilder.loadTexts: mscExampleDecimalIndicesThreeIndex.setStatus('mandatory') msc_example_decimal_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 10)) if mibBuilder.loadTexts: mscExampleDecimalIndicesProvisionedTable.setStatus('mandatory') msc_example_decimal_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDecimalIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleDecimalIndicesProvisionedEntry.setStatus('mandatory') msc_example_decimal_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 20, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDecimalIndicesProvAttribute.setStatus('mandatory') msc_example_hex_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21)) msc_example_hex_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1)) if mibBuilder.loadTexts: mscExampleHexIndicesRowStatusTable.setStatus('mandatory') msc_example_hex_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleHexIndicesRowStatusEntry.setStatus('mandatory') msc_example_hex_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexIndicesRowStatus.setStatus('mandatory') msc_example_hex_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleHexIndicesComponentName.setStatus('mandatory') msc_example_hex_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleHexIndicesStorageType.setStatus('mandatory') msc_example_hex_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 16), value_range_constraint(256, 256)))) if mibBuilder.loadTexts: mscExampleHexIndicesOneIndex.setStatus('mandatory') msc_example_hex_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 16), value_range_constraint(256, 256)))) if mibBuilder.loadTexts: mscExampleHexIndicesTwoIndex.setStatus('mandatory') msc_example_hex_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 16), value_range_constraint(256, 256)))) if mibBuilder.loadTexts: mscExampleHexIndicesThreeIndex.setStatus('mandatory') msc_example_hex_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 10)) if mibBuilder.loadTexts: mscExampleHexIndicesProvisionedTable.setStatus('mandatory') msc_example_hex_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleHexIndicesProvisionedEntry.setStatus('mandatory') msc_example_hex_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 21, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexIndicesProvAttribute.setStatus('mandatory') msc_example_ip_addr_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22)) msc_example_ip_addr_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1)) if mibBuilder.loadTexts: mscExampleIpAddrIndicesRowStatusTable.setStatus('mandatory') msc_example_ip_addr_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddrIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddrIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddrIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleIpAddrIndicesRowStatusEntry.setStatus('mandatory') msc_example_ip_addr_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddrIndicesRowStatus.setStatus('mandatory') msc_example_ip_addr_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleIpAddrIndicesComponentName.setStatus('mandatory') msc_example_ip_addr_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleIpAddrIndicesStorageType.setStatus('mandatory') msc_example_ip_addr_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 10), ip_address()) if mibBuilder.loadTexts: mscExampleIpAddrIndicesOneIndex.setStatus('mandatory') msc_example_ip_addr_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 11), ip_address()) if mibBuilder.loadTexts: mscExampleIpAddrIndicesTwoIndex.setStatus('mandatory') msc_example_ip_addr_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 1, 1, 12), ip_address()) if mibBuilder.loadTexts: mscExampleIpAddrIndicesThreeIndex.setStatus('mandatory') msc_example_ip_addr_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 10)) if mibBuilder.loadTexts: mscExampleIpAddrIndicesProvisionedTable.setStatus('mandatory') msc_example_ip_addr_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddrIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddrIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIpAddrIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleIpAddrIndicesProvisionedEntry.setStatus('mandatory') msc_example_ip_addr_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 22, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleIpAddrIndicesProvAttribute.setStatus('mandatory') msc_example_ascii_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23)) msc_example_ascii_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1)) if mibBuilder.loadTexts: mscExampleAsciiIndicesRowStatusTable.setStatus('mandatory') msc_example_ascii_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleAsciiIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleAsciiIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleAsciiIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleAsciiIndicesRowStatusEntry.setStatus('mandatory') msc_example_ascii_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleAsciiIndicesRowStatus.setStatus('mandatory') msc_example_ascii_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleAsciiIndicesComponentName.setStatus('mandatory') msc_example_ascii_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleAsciiIndicesStorageType.setStatus('mandatory') msc_example_ascii_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 10), ascii_string_index().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleAsciiIndicesOneIndex.setStatus('mandatory') msc_example_ascii_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 11), ascii_string_index().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleAsciiIndicesTwoIndex.setStatus('mandatory') msc_example_ascii_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 1, 1, 12), ascii_string_index().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleAsciiIndicesThreeIndex.setStatus('mandatory') msc_example_ascii_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 10)) if mibBuilder.loadTexts: mscExampleAsciiIndicesProvisionedTable.setStatus('mandatory') msc_example_ascii_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleAsciiIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleAsciiIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleAsciiIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleAsciiIndicesProvisionedEntry.setStatus('mandatory') msc_example_ascii_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 23, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleAsciiIndicesProvAttribute.setStatus('mandatory') msc_example_hex_str_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24)) msc_example_hex_str_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1)) if mibBuilder.loadTexts: mscExampleHexStrIndicesRowStatusTable.setStatus('mandatory') msc_example_hex_str_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexStrIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexStrIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexStrIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleHexStrIndicesRowStatusEntry.setStatus('mandatory') msc_example_hex_str_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexStrIndicesRowStatus.setStatus('mandatory') msc_example_hex_str_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleHexStrIndicesComponentName.setStatus('mandatory') msc_example_hex_str_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleHexStrIndicesStorageType.setStatus('mandatory') msc_example_hex_str_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 10), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleHexStrIndicesOneIndex.setStatus('mandatory') msc_example_hex_str_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 11), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleHexStrIndicesTwoIndex.setStatus('mandatory') msc_example_hex_str_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 1, 1, 12), hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleHexStrIndicesThreeIndex.setStatus('mandatory') msc_example_hex_str_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 10)) if mibBuilder.loadTexts: mscExampleHexStrIndicesProvisionedTable.setStatus('mandatory') msc_example_hex_str_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexStrIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexStrIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleHexStrIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleHexStrIndicesProvisionedEntry.setStatus('mandatory') msc_example_hex_str_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 24, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleHexStrIndicesProvAttribute.setStatus('mandatory') msc_example_bcd_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25)) msc_example_bcd_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1)) if mibBuilder.loadTexts: mscExampleBcdIndicesRowStatusTable.setStatus('mandatory') msc_example_bcd_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleBcdIndicesRowStatusEntry.setStatus('mandatory') msc_example_bcd_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdIndicesRowStatus.setStatus('mandatory') msc_example_bcd_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleBcdIndicesComponentName.setStatus('mandatory') msc_example_bcd_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleBcdIndicesStorageType.setStatus('mandatory') msc_example_bcd_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 10), digit_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleBcdIndicesOneIndex.setStatus('mandatory') msc_example_bcd_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 11), digit_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleBcdIndicesTwoIndex.setStatus('mandatory') msc_example_bcd_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 1, 1, 12), digit_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleBcdIndicesThreeIndex.setStatus('mandatory') msc_example_bcd_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 10)) if mibBuilder.loadTexts: mscExampleBcdIndicesProvisionedTable.setStatus('mandatory') msc_example_bcd_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleBcdIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleBcdIndicesProvisionedEntry.setStatus('mandatory') msc_example_bcd_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 25, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleBcdIndicesProvAttribute.setStatus('mandatory') msc_example_enum_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26)) msc_example_enum_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1)) if mibBuilder.loadTexts: mscExampleEnumIndicesRowStatusTable.setStatus('mandatory') msc_example_enum_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleEnumIndicesRowStatusEntry.setStatus('mandatory') msc_example_enum_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumIndicesRowStatus.setStatus('mandatory') msc_example_enum_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleEnumIndicesComponentName.setStatus('mandatory') msc_example_enum_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleEnumIndicesStorageType.setStatus('mandatory') msc_example_enum_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('first', 1), ('second', 2), ('third', 3)))) if mibBuilder.loadTexts: mscExampleEnumIndicesOneIndex.setStatus('mandatory') msc_example_enum_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('first', 1), ('second', 2), ('third', 3)))) if mibBuilder.loadTexts: mscExampleEnumIndicesTwoIndex.setStatus('mandatory') msc_example_enum_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('first', 1), ('second', 2), ('third', 3)))) if mibBuilder.loadTexts: mscExampleEnumIndicesThreeIndex.setStatus('mandatory') msc_example_enum_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 10)) if mibBuilder.loadTexts: mscExampleEnumIndicesProvisionedTable.setStatus('mandatory') msc_example_enum_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleEnumIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleEnumIndicesProvisionedEntry.setStatus('mandatory') msc_example_enum_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 26, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleEnumIndicesProvAttribute.setStatus('mandatory') msc_example_sequence_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27)) msc_example_sequence_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1)) if mibBuilder.loadTexts: mscExampleSequenceIndicesRowStatusTable.setStatus('mandatory') msc_example_sequence_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleSequenceIndicesRowStatusEntry.setStatus('mandatory') msc_example_sequence_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceIndicesRowStatus.setStatus('mandatory') msc_example_sequence_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleSequenceIndicesComponentName.setStatus('mandatory') msc_example_sequence_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleSequenceIndicesStorageType.setStatus('mandatory') msc_example_sequence_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 10), object_identifier()) if mibBuilder.loadTexts: mscExampleSequenceIndicesOneIndex.setStatus('mandatory') msc_example_sequence_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 11), object_identifier()) if mibBuilder.loadTexts: mscExampleSequenceIndicesTwoIndex.setStatus('mandatory') msc_example_sequence_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 1, 1, 12), object_identifier()) if mibBuilder.loadTexts: mscExampleSequenceIndicesThreeIndex.setStatus('mandatory') msc_example_sequence_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 10)) if mibBuilder.loadTexts: mscExampleSequenceIndicesProvisionedTable.setStatus('mandatory') msc_example_sequence_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleSequenceIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleSequenceIndicesProvisionedEntry.setStatus('mandatory') msc_example_sequence_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 27, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleSequenceIndicesProvAttribute.setStatus('mandatory') msc_example_obj_id_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28)) msc_example_obj_id_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1)) if mibBuilder.loadTexts: mscExampleObjIdIndicesRowStatusTable.setStatus('mandatory') msc_example_obj_id_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjIdIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjIdIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjIdIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleObjIdIndicesRowStatusEntry.setStatus('mandatory') msc_example_obj_id_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjIdIndicesRowStatus.setStatus('mandatory') msc_example_obj_id_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleObjIdIndicesComponentName.setStatus('mandatory') msc_example_obj_id_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleObjIdIndicesStorageType.setStatus('mandatory') msc_example_obj_id_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 10), object_identifier()) if mibBuilder.loadTexts: mscExampleObjIdIndicesOneIndex.setStatus('mandatory') msc_example_obj_id_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 11), object_identifier()) if mibBuilder.loadTexts: mscExampleObjIdIndicesTwoIndex.setStatus('mandatory') msc_example_obj_id_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 1, 1, 12), object_identifier()) if mibBuilder.loadTexts: mscExampleObjIdIndicesThreeIndex.setStatus('mandatory') msc_example_obj_id_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 10)) if mibBuilder.loadTexts: mscExampleObjIdIndicesProvisionedTable.setStatus('mandatory') msc_example_obj_id_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjIdIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjIdIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleObjIdIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleObjIdIndicesProvisionedEntry.setStatus('mandatory') msc_example_obj_id_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 28, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleObjIdIndicesProvAttribute.setStatus('mandatory') msc_example_dashed_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30)) msc_example_dashed_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1)) if mibBuilder.loadTexts: mscExampleDashedIndicesRowStatusTable.setStatus('mandatory') msc_example_dashed_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleDashedIndicesRowStatusEntry.setStatus('mandatory') msc_example_dashed_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedIndicesRowStatus.setStatus('mandatory') msc_example_dashed_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleDashedIndicesComponentName.setStatus('mandatory') msc_example_dashed_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleDashedIndicesStorageType.setStatus('mandatory') msc_example_dashed_indices_one_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 10), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleDashedIndicesOneIndex.setStatus('mandatory') msc_example_dashed_indices_two_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 11), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleDashedIndicesTwoIndex.setStatus('mandatory') msc_example_dashed_indices_three_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 1, 1, 12), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(1, 10))) if mibBuilder.loadTexts: mscExampleDashedIndicesThreeIndex.setStatus('mandatory') msc_example_dashed_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 10)) if mibBuilder.loadTexts: mscExampleDashedIndicesProvisionedTable.setStatus('mandatory') msc_example_dashed_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndicesOneIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndicesTwoIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleDashedIndicesThreeIndex')) if mibBuilder.loadTexts: mscExampleDashedIndicesProvisionedEntry.setStatus('mandatory') msc_example_dashed_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 30, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleDashedIndicesProvAttribute.setStatus('mandatory') msc_example_required_indices = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31)) msc_example_required_indices_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1)) if mibBuilder.loadTexts: mscExampleRequiredIndicesRowStatusTable.setStatus('mandatory') msc_example_required_indices_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleRequiredIndicesDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleRequiredIndicesEnumerationIndex')) if mibBuilder.loadTexts: mscExampleRequiredIndicesRowStatusEntry.setStatus('mandatory') msc_example_required_indices_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleRequiredIndicesRowStatus.setStatus('mandatory') msc_example_required_indices_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleRequiredIndicesComponentName.setStatus('mandatory') msc_example_required_indices_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleRequiredIndicesStorageType.setStatus('mandatory') msc_example_required_indices_decimal_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))) if mibBuilder.loadTexts: mscExampleRequiredIndicesDecimalIndex.setStatus('mandatory') msc_example_required_indices_enumeration_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('first', 1), ('second', 2), ('third', 3)))) if mibBuilder.loadTexts: mscExampleRequiredIndicesEnumerationIndex.setStatus('mandatory') msc_example_required_indices_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 10)) if mibBuilder.loadTexts: mscExampleRequiredIndicesProvisionedTable.setStatus('mandatory') msc_example_required_indices_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleRequiredIndicesDecimalIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleRequiredIndicesEnumerationIndex')) if mibBuilder.loadTexts: mscExampleRequiredIndicesProvisionedEntry.setStatus('mandatory') msc_example_required_indices_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 31, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleRequiredIndicesProvAttribute.setStatus('mandatory') msc_example_nsap = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32)) msc_example_nsap_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1)) if mibBuilder.loadTexts: mscExampleNsapRowStatusTable.setStatus('mandatory') msc_example_nsap_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleNsapIndex')) if mibBuilder.loadTexts: mscExampleNsapRowStatusEntry.setStatus('mandatory') msc_example_nsap_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleNsapRowStatus.setStatus('mandatory') msc_example_nsap_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleNsapComponentName.setStatus('mandatory') msc_example_nsap_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscExampleNsapStorageType.setStatus('mandatory') msc_example_nsap_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1, 1, 10), ascii_string_index().subtype(subtypeSpec=value_size_constraint(0, 44))) if mibBuilder.loadTexts: mscExampleNsapIndex.setStatus('mandatory') msc_example_nsap_atm_addr_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 102)) if mibBuilder.loadTexts: mscExampleNsapAtmAddrTable.setStatus('mandatory') msc_example_nsap_atm_addr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 102, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleNsapIndex')) if mibBuilder.loadTexts: mscExampleNsapAtmAddrEntry.setStatus('mandatory') msc_example_nsap_nsap_native_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 102, 1, 1246), ascii_string().subtype(subtypeSpec=value_size_constraint(1, 44))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleNsapNsapNativeAddress.setStatus('mandatory') msc_example_nsap_native_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247)) if mibBuilder.loadTexts: mscExampleNsapNativeTable.setStatus('mandatory') msc_example_nsap_native_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleNsapIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscExampleNsapNativeIndex')) if mibBuilder.loadTexts: mscExampleNsapNativeEntry.setStatus('mandatory') msc_example_nsap_native_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 9))) if mibBuilder.loadTexts: mscExampleNsapNativeIndex.setStatus('mandatory') msc_example_nsap_native_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5000, 32, 1247, 1, 2), ascii_string().subtype(subtypeSpec=value_size_constraint(1, 44))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscExampleNsapNativeValue.setStatus('mandatory') msc_fri = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001)) msc_fri_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1)) if mibBuilder.loadTexts: mscFriRowStatusTable.setStatus('mandatory') msc_fri_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex')) if mibBuilder.loadTexts: mscFriRowStatusEntry.setStatus('mandatory') msc_fri_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriRowStatus.setStatus('mandatory') msc_fri_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriComponentName.setStatus('mandatory') msc_fri_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriStorageType.setStatus('mandatory') msc_fri_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 99))) if mibBuilder.loadTexts: mscFriIndex.setStatus('mandatory') msc_fri_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100)) if mibBuilder.loadTexts: mscFriOperationalTable.setStatus('mandatory') msc_fri_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex')) if mibBuilder.loadTexts: mscFriOperationalEntry.setStatus('mandatory') msc_fri_operational_free_simple_ascii = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleAscii.setStatus('mandatory') msc_fri_operational_free_simple_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(10, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleDashed.setStatus('mandatory') msc_fri_operational_free_simple_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 3), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleExtended.setStatus('mandatory') msc_fri_operational_free_simple_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 4), digit_string().subtype(subtypeSpec=value_size_constraint(2, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleBcd.setStatus('mandatory') msc_fri_operational_free_simple_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(-2, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleSigned.setStatus('mandatory') msc_fri_operational_free_simple_fixed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 6), fixed_point1().subtype(subtypeSpec=value_range_constraint(55, 66))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleFixed.setStatus('mandatory') msc_fri_operational_free_simple_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 7), integer_sequence().subtype(subtypeSpec=value_size_constraint(5, 11))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleSequence.setStatus('mandatory') msc_fri_operational_free_simple_obj_id = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 8), integer_sequence()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleObjId.setStatus('mandatory') msc_fri_operational_free_simple_component = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 9), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleComponent.setStatus('mandatory') msc_fri_operational_free_simple_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 10), hex_string().subtype(subtypeSpec=value_size_constraint(20, 20)).setFixedLength(20)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalFreeSimpleHex.setStatus('mandatory') msc_fri_operational_struct_set_enumeration = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 11), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2).clone(hexValue='9100')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSetEnumeration.setStatus('mandatory') msc_fri_operational_struct_set_unsigned = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 12), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1).clone(hexValue='54')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSetUnsigned.setStatus('mandatory') msc_fri_operational_struct_simple_ascii = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 13), ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='61313063686172737472696e67')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleAscii.setStatus('mandatory') msc_fri_operational_struct_simple_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 14), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(10, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleDashed.setStatus('mandatory') msc_fri_operational_struct_simple_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 15), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleExtended.setStatus('mandatory') msc_fri_operational_struct_simple_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 16), digit_string().subtype(subtypeSpec=value_size_constraint(2, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleBcd.setStatus('mandatory') msc_fri_operational_struct_simple_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(-2, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleSigned.setStatus('mandatory') msc_fri_operational_struct_simple_fixed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 18), fixed_point1().subtype(subtypeSpec=value_range_constraint(23, 29))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleFixed.setStatus('mandatory') msc_fri_operational_struct_simple_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 19), integer_sequence().subtype(subtypeSpec=value_size_constraint(3, 6))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleSequence.setStatus('mandatory') msc_fri_operational_struct_simple_enum = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('monday', 0), ('tuesday', 1), ('wednesday', 2), ('thursday', 3), ('friday', 4), ('saterday', 5), ('sunday', 6))).clone('monday')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleEnum.setStatus('mandatory') msc_fri_operational_struct_simple_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 21), hex_string().subtype(subtypeSpec=value_size_constraint(10, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleHex.setStatus('mandatory') msc_fri_operational_struct_simple_unsigned = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 100, 1, 22), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 31)).clone(3)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOperationalStructSimpleUnsigned.setStatus('mandatory') msc_fri_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101)) if mibBuilder.loadTexts: mscFriProvisionalTable.setStatus('mandatory') msc_fri_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex')) if mibBuilder.loadTexts: mscFriProvisionalEntry.setStatus('mandatory') msc_fri_provisional_struct_set_enumeration = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1).clone(hexValue='a8')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSetEnumeration.setStatus('mandatory') msc_fri_provisional_struct_set_unsigned = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2).clone(hexValue='aaa8')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSetUnsigned.setStatus('mandatory') msc_fri_provisional_struct_simple_ascii = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 3), ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='61737472696e676f663131')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleAscii.setStatus('mandatory') msc_fri_provisional_struct_simple_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 4), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='01234556789abCDef0ee')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleDashed.setStatus('mandatory') msc_fri_provisional_struct_simple_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 5), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='61006211632264336544')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleExtended.setStatus('mandatory') msc_fri_provisional_struct_simple_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 6), digit_string().subtype(subtypeSpec=value_size_constraint(2, 10)).clone(hexValue='31323334')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleBcd.setStatus('mandatory') msc_fri_provisional_struct_simple_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 7), integer_sequence().subtype(subtypeSpec=value_size_constraint(1, 2))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleSequence.setStatus('mandatory') msc_fri_provisional_struct_simple_enum = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11))).clone('february')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleEnum.setStatus('mandatory') msc_fri_provisional_struct_simple_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 9), hex_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='3039303930393039303930393039303930393039303930393039')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleHex.setStatus('mandatory') msc_fri_provisional_struct_simple_unsigned = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 10), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(10)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleUnsigned.setStatus('mandatory') msc_fri_provisional_struct_simple_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(-255, 255)).clone(-5)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleSigned.setStatus('mandatory') msc_fri_provisional_struct_simple_fixed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 12), fixed_point2().subtype(subtypeSpec=value_range_constraint(254, 355)).clone(350)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalStructSimpleFixed.setStatus('mandatory') msc_fri_provisional_free_simple_ascii = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 13), ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='61737472696e676f663131')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleAscii.setStatus('mandatory') msc_fri_provisional_free_simple_dashed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 14), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='00112233445566778899aabbccddeeff')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleDashed.setStatus('mandatory') msc_fri_provisional_free_simple_extended = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 15), extended_ascii_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='61626300006465665555676869')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleExtended.setStatus('mandatory') msc_fri_provisional_free_simple_bcd = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 16), digit_string().subtype(subtypeSpec=value_size_constraint(2, 10)).clone(hexValue='31323334')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleBcd.setStatus('mandatory') msc_fri_provisional_free_simple_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 17), integer_sequence().subtype(subtypeSpec=value_size_constraint(8, 11))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleSequence.setStatus('mandatory') msc_fri_provisional_free_simple_signed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(-2147483648, 2147483647)).clone(-11)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleSigned.setStatus('mandatory') msc_fri_provisional_free_simple_fixed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 19), fixed_point2().subtype(subtypeSpec=value_range_constraint(22, 233)).clone(122)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleFixed.setStatus('mandatory') msc_fri_provisional_free_simple_obj_id = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 20), integer_sequence()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleObjId.setStatus('mandatory') msc_fri_provisional_free_simple_component = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 21), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleComponent.setStatus('mandatory') msc_fri_provisional_free_simple_hex = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 22), hex_string().subtype(subtypeSpec=value_size_constraint(10, 100)).clone(hexValue='00112233445566778899aaBBcCDdeeFF313233')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriProvisionalFreeSimpleHex.setStatus('mandatory') msc_fri_escape_check_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 23), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(4)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriEscapeCheckAttribute.setStatus('mandatory') msc_fri_escape_defaults_component = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 24), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriEscapeDefaultsComponent.setStatus('mandatory') msc_fri_escape_defaults_group = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 25), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriEscapeDefaultsGroup.setStatus('mandatory') msc_fri_escape_set = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 26), ascii_string().subtype(subtypeSpec=value_size_constraint(4, 8)).clone(hexValue='70617373776f7264')).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscFriEscapeSet.setStatus('mandatory') msc_fri_escape_copy_component = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 27), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriEscapeCopyComponent.setStatus('mandatory') msc_fri_escape_copy_group = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 28), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriEscapeCopyGroup.setStatus('mandatory') msc_fri_escape_copy_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 101, 1, 29), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriEscapeCopyAttribute.setStatus('mandatory') msc_fri_state_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102)) if mibBuilder.loadTexts: mscFriStateTable.setStatus('mandatory') msc_fri_state_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex')) if mibBuilder.loadTexts: mscFriStateEntry.setStatus('mandatory') msc_fri_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('locked', 0), ('unlocked', 1), ('shuttingDown', 2))).clone('unlocked')).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriAdminState.setStatus('mandatory') msc_fri_operational_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriOperationalState.setStatus('mandatory') msc_fri_usage_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('idle', 0), ('active', 1), ('busy', 2))).clone('idle')).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriUsageState.setStatus('mandatory') msc_fri_availability_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriAvailabilityStatus.setStatus('mandatory') msc_fri_procedural_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriProceduralStatus.setStatus('mandatory') msc_fri_control_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriControlStatus.setStatus('mandatory') msc_fri_alarm_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriAlarmStatus.setStatus('mandatory') msc_fri_standby_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 15))).clone(namedValues=named_values(('hotStandby', 0), ('coldStandby', 1), ('providingService', 2), ('notSet', 15))).clone('notSet')).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriStandbyStatus.setStatus('mandatory') msc_fri_unknown_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 102, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('false', 0), ('true', 1))).clone('false')).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriUnknownStatus.setStatus('mandatory') msc_fri_pf_list_ascii_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187)) if mibBuilder.loadTexts: mscFriPfListAsciiTable.setStatus('mandatory') msc_fri_pf_list_ascii_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriPfListAsciiValue')) if mibBuilder.loadTexts: mscFriPfListAsciiEntry.setStatus('mandatory') msc_fri_pf_list_ascii_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriPfListAsciiValue.setStatus('mandatory') msc_fri_pf_list_ascii_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1187, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscFriPfListAsciiRowStatus.setStatus('mandatory') msc_fri_pf_list_unsigned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188)) if mibBuilder.loadTexts: mscFriPfListUnsignedTable.setStatus('mandatory') msc_fri_pf_list_unsigned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriPfListUnsignedValue')) if mibBuilder.loadTexts: mscFriPfListUnsignedEntry.setStatus('mandatory') msc_fri_pf_list_unsigned_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriPfListUnsignedValue.setStatus('mandatory') msc_fri_pf_list_unsigned_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1188, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscFriPfListUnsignedRowStatus.setStatus('mandatory') msc_fri_pf_list_fixed_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189)) if mibBuilder.loadTexts: mscFriPfListFixedTable.setStatus('mandatory') msc_fri_pf_list_fixed_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriPfListFixedValue')) if mibBuilder.loadTexts: mscFriPfListFixedEntry.setStatus('mandatory') msc_fri_pf_list_fixed_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2559))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriPfListFixedValue.setStatus('mandatory') msc_fri_pf_list_fixed_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1189, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscFriPfListFixedRowStatus.setStatus('mandatory') msc_fri_pf_list_signed_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190)) if mibBuilder.loadTexts: mscFriPfListSignedTable.setStatus('mandatory') msc_fri_pf_list_signed_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriPfListSignedValue')) if mibBuilder.loadTexts: mscFriPfListSignedEntry.setStatus('mandatory') msc_fri_pf_list_signed_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(-200, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriPfListSignedValue.setStatus('mandatory') msc_fri_pf_list_signed_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1190, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscFriPfListSignedRowStatus.setStatus('mandatory') msc_fri_of_list_component_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191)) if mibBuilder.loadTexts: mscFriOfListComponentTable.setStatus('mandatory') msc_fri_of_list_component_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriOfListComponentValue')) if mibBuilder.loadTexts: mscFriOfListComponentEntry.setStatus('mandatory') msc_fri_of_list_component_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191, 1, 1), row_pointer()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOfListComponentValue.setStatus('mandatory') msc_fri_of_list_component_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1191, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscFriOfListComponentRowStatus.setStatus('mandatory') msc_fri_of_list_enumeration_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192)) if mibBuilder.loadTexts: mscFriOfListEnumerationTable.setStatus('mandatory') msc_fri_of_list_enumeration_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriOfListEnumerationValue')) if mibBuilder.loadTexts: mscFriOfListEnumerationEntry.setStatus('mandatory') msc_fri_of_list_enumeration_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('january', 0), ('february', 1), ('march', 2), ('april', 3), ('may', 4), ('june', 5), ('july', 6), ('august', 7), ('september', 8), ('october', 9), ('november', 10), ('december', 11)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriOfListEnumerationValue.setStatus('mandatory') msc_fri_of_list_enumeration_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 1192, 1, 2), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: mscFriOfListEnumerationRowStatus.setStatus('mandatory') msc_fri_dna = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4)) msc_fri_dna_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1)) if mibBuilder.loadTexts: mscFriDnaRowStatusTable.setStatus('mandatory') msc_fri_dna_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDnaIndex')) if mibBuilder.loadTexts: mscFriDnaRowStatusEntry.setStatus('mandatory') msc_fri_dna_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDnaRowStatus.setStatus('mandatory') msc_fri_dna_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDnaComponentName.setStatus('mandatory') msc_fri_dna_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDnaStorageType.setStatus('mandatory') msc_fri_dna_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 15))) if mibBuilder.loadTexts: mscFriDnaIndex.setStatus('mandatory') msc_fri_dna_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 10)) if mibBuilder.loadTexts: mscFriDnaOperationalTable.setStatus('mandatory') msc_fri_dna_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDnaIndex')) if mibBuilder.loadTexts: mscFriDnaOperationalEntry.setStatus('mandatory') msc_fri_dna_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDnaAttribute.setStatus('mandatory') msc_fri_dna_provisional_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11)) if mibBuilder.loadTexts: mscFriDnaProvisionalTable.setStatus('mandatory') msc_fri_dna_provisional_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDnaIndex')) if mibBuilder.loadTexts: mscFriDnaProvisionalEntry.setStatus('mandatory') msc_fri_dna_type_of_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('networkDepend', 0), ('international', 1), ('national', 2))).clone('international')).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDnaTypeOfAddress.setStatus('mandatory') msc_fri_dna_number_plan_indicator = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('x121', 0), ('e164', 1))).clone('x121')).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDnaNumberPlanIndicator.setStatus('mandatory') msc_fri_dna_data_network_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 4, 11, 1, 3), digit_string().subtype(subtypeSpec=value_size_constraint(1, 15))).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDnaDataNetworkAddress.setStatus('mandatory') msc_fri_dynamic = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7)) msc_fri_dynamic_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1)) if mibBuilder.loadTexts: mscFriDynamicRowStatusTable.setStatus('mandatory') msc_fri_dynamic_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynamicIndex')) if mibBuilder.loadTexts: mscFriDynamicRowStatusEntry.setStatus('mandatory') msc_fri_dynamic_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 1), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynamicRowStatus.setStatus('mandatory') msc_fri_dynamic_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynamicComponentName.setStatus('mandatory') msc_fri_dynamic_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynamicStorageType.setStatus('mandatory') msc_fri_dynamic_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 1023))) if mibBuilder.loadTexts: mscFriDynamicIndex.setStatus('mandatory') msc_fri_dynamic_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 10)) if mibBuilder.loadTexts: mscFriDynamicOperationalTable.setStatus('mandatory') msc_fri_dynamic_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynamicIndex')) if mibBuilder.loadTexts: mscFriDynamicOperationalEntry.setStatus('mandatory') msc_fri_dynamic_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 7, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynamicAttribute.setStatus('mandatory') msc_fri_dyn_op = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8)) msc_fri_dyn_op_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1)) if mibBuilder.loadTexts: mscFriDynOpRowStatusTable.setStatus('mandatory') msc_fri_dyn_op_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex')) if mibBuilder.loadTexts: mscFriDynOpRowStatusEntry.setStatus('mandatory') msc_fri_dyn_op_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpRowStatus.setStatus('mandatory') msc_fri_dyn_op_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpComponentName.setStatus('mandatory') msc_fri_dyn_op_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpStorageType.setStatus('mandatory') msc_fri_dyn_op_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 1023))) if mibBuilder.loadTexts: mscFriDynOpIndex.setStatus('mandatory') msc_fri_dyn_op_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 10)) if mibBuilder.loadTexts: mscFriDynOpOperationalTable.setStatus('mandatory') msc_fri_dyn_op_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex')) if mibBuilder.loadTexts: mscFriDynOpOperationalEntry.setStatus('mandatory') msc_fri_dyn_op_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpAttribute.setStatus('mandatory') msc_fri_dyn_op_initial = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2)) msc_fri_dyn_op_initial_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1)) if mibBuilder.loadTexts: mscFriDynOpInitialRowStatusTable.setStatus('mandatory') msc_fri_dyn_op_initial_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpInitialIndex')) if mibBuilder.loadTexts: mscFriDynOpInitialRowStatusEntry.setStatus('mandatory') msc_fri_dyn_op_initial_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 1), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpInitialRowStatus.setStatus('mandatory') msc_fri_dyn_op_initial_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpInitialComponentName.setStatus('mandatory') msc_fri_dyn_op_initial_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpInitialStorageType.setStatus('mandatory') msc_fri_dyn_op_initial_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscFriDynOpInitialIndex.setStatus('mandatory') msc_fri_dyn_op_initial_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 10)) if mibBuilder.loadTexts: mscFriDynOpInitialOperationalTable.setStatus('mandatory') msc_fri_dyn_op_initial_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpInitialIndex')) if mibBuilder.loadTexts: mscFriDynOpInitialOperationalEntry.setStatus('mandatory') msc_fri_dyn_op_initial_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpInitialAttribute.setStatus('mandatory') msc_fri_dyn_op_initial_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 11)) if mibBuilder.loadTexts: mscFriDynOpInitialProvisionedTable.setStatus('mandatory') msc_fri_dyn_op_initial_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpInitialIndex')) if mibBuilder.loadTexts: mscFriDynOpInitialProvisionedEntry.setStatus('mandatory') msc_fri_dyn_op_initial_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 2, 11, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpInitialProvAttribute.setStatus('mandatory') msc_fri_dyn_op_optional = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3)) msc_fri_dyn_op_optional_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1)) if mibBuilder.loadTexts: mscFriDynOpOptionalRowStatusTable.setStatus('mandatory') msc_fri_dyn_op_optional_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpOptionalIndex')) if mibBuilder.loadTexts: mscFriDynOpOptionalRowStatusEntry.setStatus('mandatory') msc_fri_dyn_op_optional_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpOptionalRowStatus.setStatus('mandatory') msc_fri_dyn_op_optional_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpOptionalComponentName.setStatus('mandatory') msc_fri_dyn_op_optional_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpOptionalStorageType.setStatus('mandatory') msc_fri_dyn_op_optional_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscFriDynOpOptionalIndex.setStatus('mandatory') msc_fri_dyn_op_optional_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 10)) if mibBuilder.loadTexts: mscFriDynOpOptionalOperationalTable.setStatus('mandatory') msc_fri_dyn_op_optional_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpOptionalIndex')) if mibBuilder.loadTexts: mscFriDynOpOptionalOperationalEntry.setStatus('mandatory') msc_fri_dyn_op_optional_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpOptionalAttribute.setStatus('mandatory') msc_fri_dyn_op_optional_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 11)) if mibBuilder.loadTexts: mscFriDynOpOptionalProvisionedTable.setStatus('mandatory') msc_fri_dyn_op_optional_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 11, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpOptionalIndex')) if mibBuilder.loadTexts: mscFriDynOpOptionalProvisionedEntry.setStatus('mandatory') msc_fri_dyn_op_optional_prov_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 3, 11, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpOptionalProvAttribute.setStatus('mandatory') msc_fri_dyn_op_dynamic = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4)) msc_fri_dyn_op_dynamic_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1)) if mibBuilder.loadTexts: mscFriDynOpDynamicRowStatusTable.setStatus('mandatory') msc_fri_dyn_op_dynamic_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpDynamicIndex')) if mibBuilder.loadTexts: mscFriDynOpDynamicRowStatusEntry.setStatus('mandatory') msc_fri_dyn_op_dynamic_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 1), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpDynamicRowStatus.setStatus('mandatory') msc_fri_dyn_op_dynamic_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpDynamicComponentName.setStatus('mandatory') msc_fri_dyn_op_dynamic_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpDynamicStorageType.setStatus('mandatory') msc_fri_dyn_op_dynamic_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscFriDynOpDynamicIndex.setStatus('mandatory') msc_fri_dyn_op_dynamic_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 10)) if mibBuilder.loadTexts: mscFriDynOpDynamicOperationalTable.setStatus('mandatory') msc_fri_dyn_op_dynamic_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpDynamicIndex')) if mibBuilder.loadTexts: mscFriDynOpDynamicOperationalEntry.setStatus('mandatory') msc_fri_dyn_op_dynamic_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 4, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpDynamicAttribute.setStatus('mandatory') msc_fri_dyn_op_dyn_op_jr = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5)) msc_fri_dyn_op_dyn_op_jr_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1)) if mibBuilder.loadTexts: mscFriDynOpDynOpJrRowStatusTable.setStatus('mandatory') msc_fri_dyn_op_dyn_op_jr_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpDynOpJrIndex')) if mibBuilder.loadTexts: mscFriDynOpDynOpJrRowStatusEntry.setStatus('mandatory') msc_fri_dyn_op_dyn_op_jr_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpDynOpJrRowStatus.setStatus('mandatory') msc_fri_dyn_op_dyn_op_jr_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpDynOpJrComponentName.setStatus('mandatory') msc_fri_dyn_op_dyn_op_jr_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriDynOpDynOpJrStorageType.setStatus('mandatory') msc_fri_dyn_op_dyn_op_jr_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscFriDynOpDynOpJrIndex.setStatus('mandatory') msc_fri_dyn_op_dyn_op_jr_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 10)) if mibBuilder.loadTexts: mscFriDynOpDynOpJrOperationalTable.setStatus('mandatory') msc_fri_dyn_op_dyn_op_jr_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriDynOpDynOpJrIndex')) if mibBuilder.loadTexts: mscFriDynOpDynOpJrOperationalEntry.setStatus('mandatory') msc_fri_dyn_op_dyn_op_jr_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 8, 5, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriDynOpDynOpJrAttribute.setStatus('mandatory') msc_fri_event = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9)) msc_fri_event_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1)) if mibBuilder.loadTexts: mscFriEventRowStatusTable.setStatus('mandatory') msc_fri_event_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriEventIndex')) if mibBuilder.loadTexts: mscFriEventRowStatusEntry.setStatus('mandatory') msc_fri_event_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 1), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriEventRowStatus.setStatus('mandatory') msc_fri_event_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriEventComponentName.setStatus('mandatory') msc_fri_event_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriEventStorageType.setStatus('mandatory') msc_fri_event_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 9, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: mscFriEventIndex.setStatus('mandatory') msc_fri_registered = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18)) msc_fri_registered_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1)) if mibBuilder.loadTexts: mscFriRegisteredRowStatusTable.setStatus('mandatory') msc_fri_registered_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriRegisteredIndex')) if mibBuilder.loadTexts: mscFriRegisteredRowStatusEntry.setStatus('mandatory') msc_fri_registered_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 1), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriRegisteredRowStatus.setStatus('mandatory') msc_fri_registered_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriRegisteredComponentName.setStatus('mandatory') msc_fri_registered_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscFriRegisteredStorageType.setStatus('mandatory') msc_fri_registered_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 15))) if mibBuilder.loadTexts: mscFriRegisteredIndex.setStatus('mandatory') msc_fri_registered_data_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 10)) if mibBuilder.loadTexts: mscFriRegisteredDataTable.setStatus('mandatory') msc_fri_registered_data_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriIndex'), (0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscFriRegisteredIndex')) if mibBuilder.loadTexts: mscFriRegisteredDataEntry.setStatus('mandatory') msc_fri_registered_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5001, 18, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscFriRegisteredAttribute.setStatus('mandatory') msc_registered = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004)) msc_registered_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1)) if mibBuilder.loadTexts: mscRegisteredRowStatusTable.setStatus('mandatory') msc_registered_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscRegisteredIndex')) if mibBuilder.loadTexts: mscRegisteredRowStatusEntry.setStatus('mandatory') msc_registered_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 1), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscRegisteredRowStatus.setStatus('mandatory') msc_registered_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscRegisteredComponentName.setStatus('mandatory') msc_registered_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: mscRegisteredStorageType.setStatus('mandatory') msc_registered_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 15))) if mibBuilder.loadTexts: mscRegisteredIndex.setStatus('mandatory') msc_registered_data_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 10)) if mibBuilder.loadTexts: mscRegisteredDataTable.setStatus('mandatory') msc_registered_data_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-CasTestMIB', 'mscRegisteredIndex')) if mibBuilder.loadTexts: mscRegisteredDataEntry.setStatus('mandatory') msc_registered_attribute = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 5004, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: mscRegisteredAttribute.setStatus('mandatory') cas_test_group = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1)) cas_test_group_ca = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1, 1)) cas_test_group_ca02 = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1, 1, 3)) cas_test_group_ca02_a = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 1, 1, 3, 2)) cas_test_capabilities = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3)) cas_test_capabilities_ca = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3, 1)) cas_test_capabilities_ca02 = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3, 1, 3)) cas_test_capabilities_ca02_a = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 103, 3, 1, 3, 2)) mibBuilder.exportSymbols('Nortel-MsCarrier-MscPassport-CasTestMIB', mscExampleDashedOfDashedListRowStatus=mscExampleDashedOfDashedListRowStatus, mscFriDynOpOptionalRowStatusTable=mscFriDynOpOptionalRowStatusTable, mscExampleHexStrIndicesRowStatus=mscExampleHexStrIndicesRowStatus, mscExampleIpAddressOperFreeIpAddressArrayValue=mscExampleIpAddressOperFreeIpAddressArrayValue, mscExampleHexStrIndicesRowStatusEntry=mscExampleHexStrIndicesRowStatusEntry, mscExampleWildBcdOperFreeWildBcdListTable=mscExampleWildBcdOperFreeWildBcdListTable, mscExampleEnumOperFreeEnumArrayValue=mscExampleEnumOperFreeEnumArrayValue, mscExampleDashedProvFreeDashedReplicatedTable=mscExampleDashedProvFreeDashedReplicatedTable, mscExampleWildBcdRowStatusTable=mscExampleWildBcdRowStatusTable, mscExampleMiscellaneousProvFreeLongReplicatedIndex=mscExampleMiscellaneousProvFreeLongReplicatedIndex, mscExampleDashedProvFreeDashedVectorIndex=mscExampleDashedProvFreeDashedVectorIndex, mscExampleWildBcdRowStatus=mscExampleWildBcdRowStatus, mscExampleMiscellaneousProvFreeTimeReplicatedValue=mscExampleMiscellaneousProvFreeTimeReplicatedValue, mscExampleNsapNativeEntry=mscExampleNsapNativeEntry, mscExampleHexProvFreeHexVectorEntry=mscExampleHexProvFreeHexVectorEntry, mscFriDnaIndex=mscFriDnaIndex, mscExampleEnumProvFreeEnumListValue=mscExampleEnumProvFreeEnumListValue, mscExampleIpAddrIndicesProvisionedEntry=mscExampleIpAddrIndicesProvisionedEntry, mscExampleStringOperFreeHexOnly=mscExampleStringOperFreeHexOnly, mscExampleIpAddressProvFreeIpAddressVectorEntry=mscExampleIpAddressProvFreeIpAddressVectorEntry, mscExampleHexProvFreeHex1=mscExampleHexProvFreeHex1, mscExampleFixedPtProvFreeFixedPtListRowStatus=mscExampleFixedPtProvFreeFixedPtListRowStatus, mscExampleFourIndicesProvisionedEntry=mscExampleFourIndicesProvisionedEntry, mscExampleHexStrIndicesProvAttribute=mscExampleHexStrIndicesProvAttribute, mscExampleSequenceOperFreeSequenceReplicatedRowStatus=mscExampleSequenceOperFreeSequenceReplicatedRowStatus, mscExampleIpAddressOperFreeIpAddressReplicatedValue=mscExampleIpAddressOperFreeIpAddressReplicatedValue, mscExampleHexProvFreeHexArrayColumnIndex=mscExampleHexProvFreeHexArrayColumnIndex, mscExampleIpAddressOperFreeIpAddressVectorValue=mscExampleIpAddressOperFreeIpAddressVectorValue, mscFriPfListUnsignedTable=mscFriPfListUnsignedTable, mscExampleFixedPtProvStructFixedPtArrayColumnIndex=mscExampleFixedPtProvStructFixedPtArrayColumnIndex, mscExampleHexProvFreeHexListValue=mscExampleHexProvFreeHexListValue, mscExampleStringProvFreeStrArrayEntry=mscExampleStringProvFreeStrArrayEntry, mscExampleExtendedProvStructExtended=mscExampleExtendedProvStructExtended, mscExampleDecimalPsIntArrayColumnIndex=mscExampleDecimalPsIntArrayColumnIndex, mscExampleStringProvFreeAsciiOnly=mscExampleStringProvFreeAsciiOnly, mscExampleWildBcdOperationalTable=mscExampleWildBcdOperationalTable, mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex=mscExampleIpAddressProvFreeIpAddressArray1ColumnIndex, mscFriDnaNumberPlanIndicator=mscFriDnaNumberPlanIndicator, mscExampleWildBcdOperFreeWildBcdVectorEntry=mscExampleWildBcdOperFreeWildBcdVectorEntry, mscExampleBcdOperFreeBcdVectorValue=mscExampleBcdOperFreeBcdVectorValue, mscExampleDecimalPfIntArrayValue=mscExampleDecimalPfIntArrayValue, mscFriOfListComponentTable=mscFriOfListComponentTable, mscExampleDashedRowStatusTable=mscExampleDashedRowStatusTable, mscExampleDecimalOperFreeCounter32=mscExampleDecimalOperFreeCounter32, mscExampleSignedProvStructSignedArrayRowIndex=mscExampleSignedProvStructSignedArrayRowIndex, mscExampleSignedProvFreeSignedVector1Table=mscExampleSignedProvFreeSignedVector1Table, mscExampleFixedPtProvFreeFixedPtVectorEntry=mscExampleFixedPtProvFreeFixedPtVectorEntry, mscExampleRequiredIndicesRowStatus=mscExampleRequiredIndicesRowStatus, mscExampleMiscellaneousProvFreeTimeList2Table=mscExampleMiscellaneousProvFreeTimeList2Table, mscExampleSignedProvStructSignedVectorValue=mscExampleSignedProvStructSignedVectorValue, mscExampleBcdProvFreeBcdArrayColumnIndex=mscExampleBcdProvFreeBcdArrayColumnIndex, mscExampleMiscellaneousOperFreeGauge64=mscExampleMiscellaneousOperFreeGauge64, mscFriRowStatusTable=mscFriRowStatusTable, mscExampleExtendedOperFreeExtendedListRowStatus=mscExampleExtendedOperFreeExtendedListRowStatus, mscExampleStringProvisionalEntry=mscExampleStringProvisionalEntry, mscExampleDashedProvFreeDashedListValue=mscExampleDashedProvFreeDashedListValue, mscExampleSignedProvFreeSignedArray1Table=mscExampleSignedProvFreeSignedArray1Table, mscExampleWildBcdOperStructWildBcd=mscExampleWildBcdOperStructWildBcd, mscExampleBcdProvFreeBcdArray1RowIndex=mscExampleBcdProvFreeBcdArray1RowIndex, mscExampleEnumOperationalTable=mscExampleEnumOperationalTable, mscExampleWildBcdOperStructWildBcdArrayColumnIndex=mscExampleWildBcdOperStructWildBcdArrayColumnIndex, mscExampleHexProvFreeHexVector1Table=mscExampleHexProvFreeHexVector1Table, mscExampleNsapNativeTable=mscExampleNsapNativeTable, mscExampleStringOperationalEntry=mscExampleStringOperationalEntry, casTestCapabilities=casTestCapabilities, mscExampleSignedProvFreeSignedArray1RowIndex=mscExampleSignedProvFreeSignedArray1RowIndex, mscExampleHexProvEnumSub=mscExampleHexProvEnumSub, mscExampleHexProvFreeHexReplicated1Table=mscExampleHexProvFreeHexReplicated1Table, mscExampleStringOperFreeStrVectorIndex=mscExampleStringOperFreeStrVectorIndex, mscExampleExtended=mscExampleExtended, mscExampleDecimalRowStatusTable=mscExampleDecimalRowStatusTable, mscExampleHexProvFreeHexVector1Value=mscExampleHexProvFreeHexVector1Value, mscExampleTwoIndicesTwoIndex=mscExampleTwoIndicesTwoIndex, mscExampleDecimalPfIntVectorEntry=mscExampleDecimalPfIntVectorEntry, mscExampleSequenceIndicesProvisionedTable=mscExampleSequenceIndicesProvisionedTable, mscExampleFixedPtOperStructFixedPtArrayEntry=mscExampleFixedPtOperStructFixedPtArrayEntry, mscExampleEnumProvFreeEnumReplicatedEntry=mscExampleEnumProvFreeEnumReplicatedEntry, mscExampleFixedPtProvFreeFixedPtArrayEntry=mscExampleFixedPtProvFreeFixedPtArrayEntry, mscExampleIpAddressRowStatusTable=mscExampleIpAddressRowStatusTable, mscExampleObjIdIndicesProvisionedEntry=mscExampleObjIdIndicesProvisionedEntry, mscExampleObjectIdComponentName=mscExampleObjectIdComponentName, mscExampleNsapAtmAddrTable=mscExampleNsapAtmAddrTable, mscExampleHexIndicesOneIndex=mscExampleHexIndicesOneIndex, mscExampleEnumProvisionalEntry=mscExampleEnumProvisionalEntry, mscExampleMiscellaneousOperStructLong=mscExampleMiscellaneousOperStructLong, mscExampleFourIndicesOneIndex=mscExampleFourIndicesOneIndex, mscExampleBcdIndicesComponentName=mscExampleBcdIndicesComponentName, mscExampleSignedOperStructSigned=mscExampleSignedOperStructSigned, mscExampleDecimalProvStructIntSet=mscExampleDecimalProvStructIntSet, mscExampleHexProvFreeHexReplicatedIndex=mscExampleHexProvFreeHexReplicatedIndex, mscFriDynOpOptionalProvisionedEntry=mscFriDynOpOptionalProvisionedEntry, mscExampleSequence=mscExampleSequence, mscExampleEnumRowStatus=mscExampleEnumRowStatus, mscExampleHexProvFreeHexVector1Index=mscExampleHexProvFreeHexVector1Index, mscFriDynOpInitialRowStatusTable=mscFriDynOpInitialRowStatusTable, mscExampleObjIdIndicesProvisionedTable=mscExampleObjIdIndicesProvisionedTable, mscExampleThreeIndicesProvisionedTable=mscExampleThreeIndicesProvisionedTable, mscExampleWildBcdProvisionalTable=mscExampleWildBcdProvisionalTable, mscExampleDecimalOfIntArrayTable=mscExampleDecimalOfIntArrayTable, mscExampleHexIndicesThreeIndex=mscExampleHexIndicesThreeIndex, mscExampleHexStrIndicesStorageType=mscExampleHexStrIndicesStorageType, mscExampleWildBcdProvFreeWildBcd=mscExampleWildBcdProvFreeWildBcd, mscExampleDecimalPsIntVectorIndex=mscExampleDecimalPsIntVectorIndex, mscExampleDecimalProvDecimalSub=mscExampleDecimalProvDecimalSub, mscExampleIpAddressProvFreeIpAddressListValue=mscExampleIpAddressProvFreeIpAddressListValue, mscExampleSignedProvStructSignedArrayEntry=mscExampleSignedProvStructSignedArrayEntry, mscExampleSignedProvFreeSignedListTable=mscExampleSignedProvFreeSignedListTable, mscExampleStringOperStructHexOnly=mscExampleStringOperStructHexOnly, mscExampleBcdOperFreeBcdReplicatedTable=mscExampleBcdOperFreeBcdReplicatedTable, mscExampleIpAddressOperStructIpAddressVectorIndex=mscExampleIpAddressOperStructIpAddressVectorIndex, casTestCapabilitiesCA=casTestCapabilitiesCA, mscExampleWildBcdOperFreeWildBcdVectorValue=mscExampleWildBcdOperFreeWildBcdVectorValue, mscExampleStringOperFreeStrArrayValue=mscExampleStringOperFreeStrArrayValue, mscExampleExtendedRowStatusTable=mscExampleExtendedRowStatusTable, mscExampleBcdProvFreeBcd=mscExampleBcdProvFreeBcd, mscFriProvisionalStructSetUnsigned=mscFriProvisionalStructSetUnsigned, mscFriDynOpRowStatusEntry=mscFriDynOpRowStatusEntry, mscExampleMiscellaneousProvFreeTimeListValue=mscExampleMiscellaneousProvFreeTimeListValue, mscExampleBcdProvEnumSub=mscExampleBcdProvEnumSub, mscFriDnaStorageType=mscFriDnaStorageType, mscFriPfListUnsignedValue=mscFriPfListUnsignedValue, mscExampleStringProvFreeHexOnly1=mscExampleStringProvFreeHexOnly1, mscFriDnaProvisionalTable=mscFriDnaProvisionalTable, mscExampleDashedProvStructDashedVectorEntry=mscExampleDashedProvStructDashedVectorEntry, mscExampleAsciiIndicesProvisionedEntry=mscExampleAsciiIndicesProvisionedEntry, mscExampleExtendedOperFreeExtendedReplicatedIndex=mscExampleExtendedOperFreeExtendedReplicatedIndex, mscExampleMiscellaneousOperFreeLongReplicatedEntry=mscExampleMiscellaneousOperFreeLongReplicatedEntry, mscExampleWildBcdOperFreeWildBcdArrayEntry=mscExampleWildBcdOperFreeWildBcdArrayEntry, mscExampleObjIdIndicesTwoIndex=mscExampleObjIdIndicesTwoIndex, mscExampleDashedOfDashedReplicatedTable=mscExampleDashedOfDashedReplicatedTable, mscFriProvisionalStructSimpleSigned=mscFriProvisionalStructSimpleSigned, mscExampleMiscellaneousProvEnumSub=mscExampleMiscellaneousProvEnumSub, mscExampleExtendedProvFreeExtendedArrayColumnIndex=mscExampleExtendedProvFreeExtendedArrayColumnIndex, mscExampleWildBcdProvFreeWildBcdVectorValue=mscExampleWildBcdProvFreeWildBcdVectorValue, mscExampleProvEnumSubCreatedTable=mscExampleProvEnumSubCreatedTable, mscExampleSignedProvFreeSignedArrayRowIndex=mscExampleSignedProvFreeSignedArrayRowIndex, mscExampleExtendedOperationalEntry=mscExampleExtendedOperationalEntry, mscExampleDashedProvFreeDashedReplicatedRowStatus=mscExampleDashedProvFreeDashedReplicatedRowStatus, mscExampleDashedOfDashedReplicatedEntry=mscExampleDashedOfDashedReplicatedEntry, mscExampleDashedIndicesTwoIndex=mscExampleDashedIndicesTwoIndex, mscExampleExtendedOperStructExtendedVectorIndex=mscExampleExtendedOperStructExtendedVectorIndex, mscExampleDecimalPfIntArray1Table=mscExampleDecimalPfIntArray1Table, mscExampleHexProvFreeHexArray2RowIndex=mscExampleHexProvFreeHexArray2RowIndex, mscExampleMiscellaneousProvStructLong=mscExampleMiscellaneousProvStructLong, mscExampleBcdOperFreeBcdListValue=mscExampleBcdOperFreeBcdListValue, mscExampleSequenceOperFreeSequenceReplicatedTable=mscExampleSequenceOperFreeSequenceReplicatedTable, mscExampleWildBcdProvStructWildBcdVectorIndex=mscExampleWildBcdProvStructWildBcdVectorIndex, mscExampleFixedPtProvStructFixedPtSet=mscExampleFixedPtProvStructFixedPtSet, mscExampleEnumOperFreeEnumArrayEntry=mscExampleEnumOperFreeEnumArrayEntry, mscExampleDashedProvFreeDashedArrayValue=mscExampleDashedProvFreeDashedArrayValue, mscExampleProvMyComponentName=mscExampleProvMyComponentName, mscExampleBcdProvStructBcdArrayColumnIndex=mscExampleBcdProvStructBcdArrayColumnIndex, mscExampleBcdProvFreeBcdReplicatedTable=mscExampleBcdProvFreeBcdReplicatedTable, mscExampleStringOperFreeStrListEntry=mscExampleStringOperFreeStrListEntry, mscExampleIpAddrIndicesRowStatusTable=mscExampleIpAddrIndicesRowStatusTable, mscExampleExtendedOperFreeExtendedVectorEntry=mscExampleExtendedOperFreeExtendedVectorEntry, mscExampleEnumRowStatusTable=mscExampleEnumRowStatusTable, mscFriDynOpDynamicOperationalEntry=mscFriDynOpDynamicOperationalEntry, mscExampleHexStrIndicesProvisionedTable=mscExampleHexStrIndicesProvisionedTable, mscExampleIpAddressProvFreeIpAddressList1Value=mscExampleIpAddressProvFreeIpAddressList1Value, mscExampleFixedPtOperStructFixedPtArrayTable=mscExampleFixedPtOperStructFixedPtArrayTable, mscExampleSignedProvFreeSignedArrayEntry=mscExampleSignedProvFreeSignedArrayEntry, mscExampleDashedOfDashedArrayColumnIndex=mscExampleDashedOfDashedArrayColumnIndex, mscExampleHexProvFreeHexArrayEntry=mscExampleHexProvFreeHexArrayEntry, mscExampleEnumOperFreeEnum=mscExampleEnumOperFreeEnum, mscExampleOperDecimalSubCreatedTable=mscExampleOperDecimalSubCreatedTable, mscFriPfListUnsignedEntry=mscFriPfListUnsignedEntry, mscExampleOneIndexProvisionedTable=mscExampleOneIndexProvisionedTable, mscExampleStringStorageType=mscExampleStringStorageType, mscFriDynOpDynamic=mscFriDynOpDynamic, mscExampleDashedRowStatusEntry=mscExampleDashedRowStatusEntry, mscExampleFixedPtProvStructFixedPtVectorEntry=mscExampleFixedPtProvStructFixedPtVectorEntry, mscExampleIpAddressProvStructIpAddressVectorEntry=mscExampleIpAddressProvStructIpAddressVectorEntry, mscFriProvisionalStructSimpleAscii=mscFriProvisionalStructSimpleAscii, mscFriDynOpDynOpJrRowStatusTable=mscFriDynOpDynOpJrRowStatusTable, mscExampleHexIndicesRowStatus=mscExampleHexIndicesRowStatus, mscExampleBcdProvFreeBcdArrayEntry=mscExampleBcdProvFreeBcdArrayEntry, mscExampleStringOperStructStrVectorValue=mscExampleStringOperStructStrVectorValue, mscExampleDecimalPfIntArrayEntry=mscExampleDecimalPfIntArrayEntry, mscExampleFixedPtOperFreeFixedPtArrayColumnIndex=mscExampleFixedPtOperFreeFixedPtArrayColumnIndex, mscExampleWildBcdOperFreeWildBcdArrayRowIndex=mscExampleWildBcdOperFreeWildBcdArrayRowIndex, mscExampleIpAddressProvFreeIpAddressReplicatedIndex=mscExampleIpAddressProvFreeIpAddressReplicatedIndex, mscFriDynOpDynOpJrAttribute=mscFriDynOpDynOpJrAttribute, mscExampleFourIndicesStorageType=mscExampleFourIndicesStorageType, mscFriRegisteredComponentName=mscFriRegisteredComponentName, mscExampleWildBcdOperStructWildBcdArrayEntry=mscExampleWildBcdOperStructWildBcdArrayEntry, mscFriDynOpInitialRowStatusEntry=mscFriDynOpInitialRowStatusEntry, mscExampleStringOperFreeStrReplicatedIndex=mscExampleStringOperFreeStrReplicatedIndex, mscFriOfListComponentEntry=mscFriOfListComponentEntry, mscExampleWildBcdStorageType=mscExampleWildBcdStorageType, mscExampleEnumProvStructEnumArrayEntry=mscExampleEnumProvStructEnumArrayEntry, mscExampleOneIndexComponentName=mscExampleOneIndexComponentName, mscExampleWildBcdProvStructWildBcdVectorValue=mscExampleWildBcdProvStructWildBcdVectorValue, mscExampleSequenceProvFreeSequenceReplicatedEntry=mscExampleSequenceProvFreeSequenceReplicatedEntry, mscExampleBcdProvFreeBcdList1Table=mscExampleBcdProvFreeBcdList1Table, mscExampleWildBcdOperStructWildBcdVectorTable=mscExampleWildBcdOperStructWildBcdVectorTable, mscFriPfListAsciiValue=mscFriPfListAsciiValue, mscExampleExtendedOperFreeExtendedReplicatedEntry=mscExampleExtendedOperFreeExtendedReplicatedEntry, mscFriUnknownStatus=mscFriUnknownStatus, mscExampleDecimalPfIntList1RowStatus=mscExampleDecimalPfIntList1RowStatus, mscFriDynOpInitialRowStatus=mscFriDynOpInitialRowStatus, mscExampleMiscellaneousOperFreeTimeTimeOnly=mscExampleMiscellaneousOperFreeTimeTimeOnly, mscFriEscapeCopyGroup=mscFriEscapeCopyGroup, mscExampleFixedPtOperationalTable=mscExampleFixedPtOperationalTable, mscExampleHexProvFreeHexListTable=mscExampleHexProvFreeHexListTable, mscExampleExtendedProvFreeExtendedArrayTable=mscExampleExtendedProvFreeExtendedArrayTable, mscExampleStringProvFreeStrListTable=mscExampleStringProvFreeStrListTable, mscExampleWildBcdOperFreeWildBcdListRowStatus=mscExampleWildBcdOperFreeWildBcdListRowStatus, mscExampleMiscellaneousProvFreeLongReplicatedEntry=mscExampleMiscellaneousProvFreeLongReplicatedEntry, mscFriDnaOperationalEntry=mscFriDnaOperationalEntry, mscExampleDecimalPfIntVectorTable=mscExampleDecimalPfIntVectorTable, mscExampleHexProvFreeHexArray2Table=mscExampleHexProvFreeHexArray2Table, mscExampleEnumProvFreeEnumArray1Table=mscExampleEnumProvFreeEnumArray1Table, mscExampleBcdProvFreeBcdReplicated1Entry=mscExampleBcdProvFreeBcdReplicated1Entry, mscExampleSequenceRowStatusEntry=mscExampleSequenceRowStatusEntry, mscExampleEnumProvisionalTable=mscExampleEnumProvisionalTable, mscExampleSignedOperFreeSignedVectorValue=mscExampleSignedOperFreeSignedVectorValue, mscExampleIpAddressProvFreeIpAddress=mscExampleIpAddressProvFreeIpAddress, mscExampleDecimalOfIntReplicatedEntry=mscExampleDecimalOfIntReplicatedEntry, mscExampleDashedIndicesComponentName=mscExampleDashedIndicesComponentName, mscExampleExtendedOperFreeExtendedReplicatedTable=mscExampleExtendedOperFreeExtendedReplicatedTable, mscExampleHexProvFreeHexVector2Index=mscExampleHexProvFreeHexVector2Index, mscExampleProvisionalTable=mscExampleProvisionalTable, mscExampleFourIndices=mscExampleFourIndices, mscRegistered=mscRegistered, mscExampleIpAddressProvFreeIpAddress1=mscExampleIpAddressProvFreeIpAddress1, mscExampleIpAddressOperStructIpAddressArrayColumnIndex=mscExampleIpAddressOperStructIpAddressArrayColumnIndex, mscExampleNsapNativeValue=mscExampleNsapNativeValue, mscExampleDashedOfDashedVectorTable=mscExampleDashedOfDashedVectorTable, mscExampleStringRowStatusEntry=mscExampleStringRowStatusEntry, mscExampleHexProvFreeHexVectorTable=mscExampleHexProvFreeHexVectorTable, mscExampleExtendedOperStructExtendedArrayEntry=mscExampleExtendedOperStructExtendedArrayEntry, mscExampleDecimalPfIntVector1Entry=mscExampleDecimalPfIntVector1Entry, mscExampleEnumProvStructEnumArrayValue=mscExampleEnumProvStructEnumArrayValue, mscExampleStringComponentName=mscExampleStringComponentName, mscExampleHexProvFreeHexArray1RowIndex=mscExampleHexProvFreeHexArray1RowIndex, mscExampleStringOperStructStrArrayValue=mscExampleStringOperStructStrArrayValue, mscFriOperationalFreeSimpleExtended=mscFriOperationalFreeSimpleExtended, mscExampleIpAddressProvFreeIpAddressArray1Entry=mscExampleIpAddressProvFreeIpAddressArray1Entry, mscExampleStringProvFreeStrVectorIndex=mscExampleStringProvFreeStrVectorIndex, mscExampleDecimalStorageType=mscExampleDecimalStorageType, mscExampleHexProvFreeHexArray1Table=mscExampleHexProvFreeHexArray1Table, mscExampleHexProvStructHexArrayRowIndex=mscExampleHexProvStructHexArrayRowIndex, mscFriDynOpOptionalProvAttribute=mscFriDynOpOptionalProvAttribute, mscExampleSignedOperFreeSigned=mscExampleSignedOperFreeSigned, mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus=mscExampleWildBcdOperFreeWildBcdReplicatedRowStatus, mscExampleDecimalProvFreeInteger=mscExampleDecimalProvFreeInteger, mscExampleHexProvFreeHexVector2Table=mscExampleHexProvFreeHexVector2Table, mscExampleBcdOperFreeBcdVectorTable=mscExampleBcdOperFreeBcdVectorTable, mscExampleEnumOperStructEnumArrayEntry=mscExampleEnumOperStructEnumArrayEntry, mscExampleDashedOfDashedListTable=mscExampleDashedOfDashedListTable, mscExampleHexOfHexArrayValue=mscExampleHexOfHexArrayValue, mscFriOfListEnumerationValue=mscFriOfListEnumerationValue, mscExampleOneIndexRowStatusEntry=mscExampleOneIndexRowStatusEntry) mibBuilder.exportSymbols('Nortel-MsCarrier-MscPassport-CasTestMIB', mscExampleProvFixedPtSubCreatedEntry=mscExampleProvFixedPtSubCreatedEntry, mscExampleHexProvStructHexArrayValue=mscExampleHexProvStructHexArrayValue, mscExampleSequenceIndicesProvisionedEntry=mscExampleSequenceIndicesProvisionedEntry, mscFriDynOpInitialOperationalEntry=mscFriDynOpInitialOperationalEntry, mscExampleDecimalOfIntVectorTable=mscExampleDecimalOfIntVectorTable, mscExampleEnumProvFreeEnumListTable=mscExampleEnumProvFreeEnumListTable, mscExampleStringIndex=mscExampleStringIndex, mscExampleDecimalPfIntReplicated1RowStatus=mscExampleDecimalPfIntReplicated1RowStatus, mscExampleDashedIndicesStorageType=mscExampleDashedIndicesStorageType, mscExampleIpAddressOperStructIpAddress=mscExampleIpAddressOperStructIpAddress, casTestGroupCA02=casTestGroupCA02, mscExampleAsciiIndicesRowStatusEntry=mscExampleAsciiIndicesRowStatusEntry, mscExampleDecimalOfIntReplicatedValue=mscExampleDecimalOfIntReplicatedValue, mscExampleEnumProvFreeEnumArray1Value=mscExampleEnumProvFreeEnumArray1Value, mscExampleExtendedRowStatus=mscExampleExtendedRowStatus, mscExampleSignedOperStructSignedArrayColumnIndex=mscExampleSignedOperStructSignedArrayColumnIndex, mscExampleRequiredIndicesStorageType=mscExampleRequiredIndicesStorageType, mscExampleHexOfHexVectorIndex=mscExampleHexOfHexVectorIndex, mscExampleDecimalOfIntArrayRowIndex=mscExampleDecimalOfIntArrayRowIndex, mscExampleMiscellaneousProvFreeTime=mscExampleMiscellaneousProvFreeTime, mscExampleEnumOperFreeEnumVectorEntry=mscExampleEnumOperFreeEnumVectorEntry, mscExampleSignedProvStructSignedVectorIndex=mscExampleSignedProvStructSignedVectorIndex, mscFriDynOpInitialIndex=mscFriDynOpInitialIndex, mscExampleExtendedProvFreeExtendedReplicatedTable=mscExampleExtendedProvFreeExtendedReplicatedTable, mscExampleHexProvFreeHexReplicatedEntry=mscExampleHexProvFreeHexReplicatedEntry, mscFriDynOpOptionalProvisionedTable=mscFriDynOpOptionalProvisionedTable, mscExampleDashedProvStructDashedArrayValue=mscExampleDashedProvStructDashedArrayValue, mscExampleExtendedOperFreeExtendedArrayValue=mscExampleExtendedOperFreeExtendedArrayValue, mscExampleHexStrIndicesOneIndex=mscExampleHexStrIndicesOneIndex, mscFriProvisionalFreeSimpleDashed=mscFriProvisionalFreeSimpleDashed, mscExampleObjIdIndicesRowStatusTable=mscExampleObjIdIndicesRowStatusTable, mscFriDynOpDynOpJrComponentName=mscFriDynOpDynOpJrComponentName, mscExampleProvEnumSubCreatedValue=mscExampleProvEnumSubCreatedValue, mscExampleOperFixedPtSubcomponentsCreatedValue=mscExampleOperFixedPtSubcomponentsCreatedValue, mscExampleDecimalOfIntReplicatedRowStatus=mscExampleDecimalOfIntReplicatedRowStatus, mscExampleStringOperStructStrArrayColumnIndex=mscExampleStringOperStructStrArrayColumnIndex, mscExampleOneIndexRowStatusTable=mscExampleOneIndexRowStatusTable, mscExampleEnumIndex=mscExampleEnumIndex, mscExampleThreeIndicesRowStatus=mscExampleThreeIndicesRowStatus, mscExampleOperEnumSubCreatedEntry=mscExampleOperEnumSubCreatedEntry, mscExampleTwoIndicesRowStatusTable=mscExampleTwoIndicesRowStatusTable, mscExampleObjectIdOperationalEntry=mscExampleObjectIdOperationalEntry, mscFriProvisionalFreeSimpleAscii=mscFriProvisionalFreeSimpleAscii, mscExampleSequenceOperFreeSequenceListRowStatus=mscExampleSequenceOperFreeSequenceListRowStatus, mscExampleDecimalOsIntArrayTable=mscExampleDecimalOsIntArrayTable, mscExampleStringProvStructHexOnly=mscExampleStringProvStructHexOnly, mscExampleStringOperStructStrVectorEntry=mscExampleStringOperStructStrVectorEntry, mscExampleIpAddrIndicesProvisionedTable=mscExampleIpAddrIndicesProvisionedTable, mscExampleStringOperFreeStrListTable=mscExampleStringOperFreeStrListTable, mscExampleStringOperStructStrArrayRowIndex=mscExampleStringOperStructStrArrayRowIndex, mscExampleAsciiIndicesStorageType=mscExampleAsciiIndicesStorageType, mscExampleDashedProvFreeDashedReplicatedEntry=mscExampleDashedProvFreeDashedReplicatedEntry, mscExampleExtendedOperFreeExtendedArrayTable=mscExampleExtendedOperFreeExtendedArrayTable, mscFriIndex=mscFriIndex, mscExampleTwoIndicesProvisionedEntry=mscExampleTwoIndicesProvisionedEntry, mscExampleEnumOperStructEnumVectorIndex=mscExampleEnumOperStructEnumVectorIndex, mscExampleDecimalOfIntArrayValue=mscExampleDecimalOfIntArrayValue, mscExampleHexProvisionalEntry=mscExampleHexProvisionalEntry, mscExampleDashedProvFreeDashedVectorTable=mscExampleDashedProvFreeDashedVectorTable, mscExampleRequiredIndicesProvisionedTable=mscExampleRequiredIndicesProvisionedTable, mscExampleFixedPtProvFreeFixedPtArrayValue=mscExampleFixedPtProvFreeFixedPtArrayValue, mscExampleDecimalOfIntReplicatedTable=mscExampleDecimalOfIntReplicatedTable, mscFriPfListUnsignedRowStatus=mscFriPfListUnsignedRowStatus, mscExampleHexProvFreeHexVector2Entry=mscExampleHexProvFreeHexVector2Entry, mscExampleMiscellaneousProvFreeTimeListEntry=mscExampleMiscellaneousProvFreeTimeListEntry, mscExampleBcdProvFreeBcdVector1Index=mscExampleBcdProvFreeBcdVector1Index, mscFriDynOpDynOpJrOperationalEntry=mscFriDynOpDynOpJrOperationalEntry, mscExampleStringProvStructStrArrayRowIndex=mscExampleStringProvStructStrArrayRowIndex, mscExampleSignedOperationalEntry=mscExampleSignedOperationalEntry, mscExampleBcdProvFreeBcdListEntry=mscExampleBcdProvFreeBcdListEntry, mscFriDnaTypeOfAddress=mscFriDnaTypeOfAddress, mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus=mscExampleWildBcdProvFreeWildBcdReplicatedRowStatus, mscExampleRequiredIndicesRowStatusTable=mscExampleRequiredIndicesRowStatusTable, mscExampleStringProvFreeStrReplicatedValue=mscExampleStringProvFreeStrReplicatedValue, mscExampleIpAddressProvStructIpAddressVectorValue=mscExampleIpAddressProvStructIpAddressVectorValue, mscFriStorageType=mscFriStorageType, mscExampleHexIndicesProvAttribute=mscExampleHexIndicesProvAttribute, mscFriOperationalStructSimpleEnum=mscFriOperationalStructSimpleEnum, mscExampleDecimalProvisionalTable=mscExampleDecimalProvisionalTable, mscExampleHexProvFreeHexReplicatedRowStatus=mscExampleHexProvFreeHexReplicatedRowStatus, mscFriDynamicAttribute=mscFriDynamicAttribute, mscExampleSignedOperStructSignedArrayEntry=mscExampleSignedOperStructSignedArrayEntry, mscFriUsageState=mscFriUsageState, mscExampleSequenceProvFreeSequenceReplicatedTable=mscExampleSequenceProvFreeSequenceReplicatedTable, mscFriStateEntry=mscFriStateEntry, mscExampleBcdIndicesStorageType=mscExampleBcdIndicesStorageType, mscExampleDecimalPfIntList1Table=mscExampleDecimalPfIntList1Table, mscExampleDecimalIndicesProvisionedEntry=mscExampleDecimalIndicesProvisionedEntry, mscExampleTwoIndicesOneIndex=mscExampleTwoIndicesOneIndex, mscExampleObjectIdOperFreeObjIdReplicatedRowStatus=mscExampleObjectIdOperFreeObjIdReplicatedRowStatus, mscExampleStringProvStructStrVectorValue=mscExampleStringProvStructStrVectorValue, mscExampleMiscellaneousOperFreeLongListRowStatus=mscExampleMiscellaneousOperFreeLongListRowStatus, mscExampleExtendedOperFreeExtendedArrayRowIndex=mscExampleExtendedOperFreeExtendedArrayRowIndex, mscExampleBcdIndicesRowStatus=mscExampleBcdIndicesRowStatus, mscExampleThreeIndicesTwoIndex=mscExampleThreeIndicesTwoIndex, mscExampleDecimalPfIntArrayColumnIndex=mscExampleDecimalPfIntArrayColumnIndex, mscExampleDashedProvFreeDashedArrayColumnIndex=mscExampleDashedProvFreeDashedArrayColumnIndex, mscExampleObjectIdOperationalTable=mscExampleObjectIdOperationalTable, mscExampleExtendedOperStructExtendedArrayColumnIndex=mscExampleExtendedOperStructExtendedArrayColumnIndex, mscExampleSequenceProvisionalEntry=mscExampleSequenceProvisionalEntry, mscExampleExtendedOperFreeExtendedArrayEntry=mscExampleExtendedOperFreeExtendedArrayEntry, mscExampleNsapAtmAddrEntry=mscExampleNsapAtmAddrEntry, mscExampleHexProvStructHexVectorTable=mscExampleHexProvStructHexVectorTable, mscExampleFixedPtRowStatus=mscExampleFixedPtRowStatus, mscExampleObjectIdOperFreeObjId=mscExampleObjectIdOperFreeObjId, mscExampleFixedPtProvStructFixedPtArrayEntry=mscExampleFixedPtProvStructFixedPtArrayEntry, mscExampleMiscellaneousProvFreeTimeList2RowStatus=mscExampleMiscellaneousProvFreeTimeList2RowStatus, mscExampleMiscellaneousOperFreeLong=mscExampleMiscellaneousOperFreeLong, mscFriEventRowStatus=mscFriEventRowStatus, mscExampleStringProvFreeStrReplicatedRowStatus=mscExampleStringProvFreeStrReplicatedRowStatus, mscExampleIpAddrIndicesProvAttribute=mscExampleIpAddrIndicesProvAttribute, mscExampleIpAddressProvFreeIpAddressArrayTable=mscExampleIpAddressProvFreeIpAddressArrayTable, mscExampleExtendedRowStatusEntry=mscExampleExtendedRowStatusEntry, mscExampleDashedProvFreeDashed=mscExampleDashedProvFreeDashed, mscExampleIpAddrIndicesOneIndex=mscExampleIpAddrIndicesOneIndex, mscExampleObjIdIndicesRowStatusEntry=mscExampleObjIdIndicesRowStatusEntry, mscExampleExtendedOperFreeExtendedListValue=mscExampleExtendedOperFreeExtendedListValue, mscExampleWildBcdOperFreeWildBcd=mscExampleWildBcdOperFreeWildBcd, mscExampleBcdOperStructBcdArrayColumnIndex=mscExampleBcdOperStructBcdArrayColumnIndex, mscExampleFixedPtProvFreeFixedPtListValue=mscExampleFixedPtProvFreeFixedPtListValue, mscExampleSignedProvStructSignedArrayColumnIndex=mscExampleSignedProvStructSignedArrayColumnIndex, mscExampleBcdIndicesProvisionedTable=mscExampleBcdIndicesProvisionedTable, mscExampleIpAddressOperFreeIpAddressReplicatedTable=mscExampleIpAddressOperFreeIpAddressReplicatedTable, mscExampleRowStatus=mscExampleRowStatus, mscExampleDecimal=mscExampleDecimal, mscExampleBcdProvFreeBcdVectorValue=mscExampleBcdProvFreeBcdVectorValue, mscExampleBcdProvFreeBcdList1Entry=mscExampleBcdProvFreeBcdList1Entry, mscExampleHexStrIndices=mscExampleHexStrIndices, mscExampleMiscellaneousProvFreeTimeList1Value=mscExampleMiscellaneousProvFreeTimeList1Value, mscExampleDecimalPsIntVectorValue=mscExampleDecimalPsIntVectorValue, mscFriDynOpOperationalEntry=mscFriDynOpOperationalEntry, mscExampleExtendedProvStructExtendedArrayValue=mscExampleExtendedProvStructExtendedArrayValue, mscExampleOneIndexProvisionedEntry=mscExampleOneIndexProvisionedEntry, mscExampleIpAddressProvFreeIpAddressReplicatedTable=mscExampleIpAddressProvFreeIpAddressReplicatedTable, mscExampleObjectIdRowStatusTable=mscExampleObjectIdRowStatusTable, mscExampleDashedOfDashedReplicatedIndex=mscExampleDashedOfDashedReplicatedIndex, mscExampleObjIdIndicesOneIndex=mscExampleObjIdIndicesOneIndex, mscFriEventIndex=mscFriEventIndex, mscExampleWildBcdProvFreeWildBcdReplicatedEntry=mscExampleWildBcdProvFreeWildBcdReplicatedEntry, mscFriEventStorageType=mscFriEventStorageType, mscExampleDashedProvStructDashedArrayTable=mscExampleDashedProvStructDashedArrayTable, mscExampleFourIndicesProvAttribute=mscExampleFourIndicesProvAttribute, mscFriDynOpRowStatusTable=mscFriDynOpRowStatusTable, mscExampleBcdIndicesTwoIndex=mscExampleBcdIndicesTwoIndex, mscExampleObjectIdProvFreeObjIdReplicatedIndex=mscExampleObjectIdProvFreeObjIdReplicatedIndex, mscExampleStringProvFreeStrArrayValue=mscExampleStringProvFreeStrArrayValue, mscExampleIpAddressOperFreeIpAddressVectorEntry=mscExampleIpAddressOperFreeIpAddressVectorEntry, mscExampleStringProvStructStrArrayColumnIndex=mscExampleStringProvStructStrArrayColumnIndex, mscExampleProvEnumSubCreatedRowStatus=mscExampleProvEnumSubCreatedRowStatus, mscExampleStringOperFreeStrReplicatedTable=mscExampleStringOperFreeStrReplicatedTable, mscExampleProvFixedPtSubCreatedRowStatus=mscExampleProvFixedPtSubCreatedRowStatus, mscExampleNsapRowStatusTable=mscExampleNsapRowStatusTable, mscExampleBcdComponentName=mscExampleBcdComponentName, mscFriRowStatusEntry=mscFriRowStatusEntry, mscExampleBcdOperFreeBcdReplicatedIndex=mscExampleBcdOperFreeBcdReplicatedIndex, mscExampleHexProvFreeHexArray2Entry=mscExampleHexProvFreeHexArray2Entry, mscExampleFixedPtProvStructFixedPtVectorTable=mscExampleFixedPtProvStructFixedPtVectorTable, mscExampleSequenceProvStructSequence=mscExampleSequenceProvStructSequence, mscExampleSignedProvStructSignedVectorEntry=mscExampleSignedProvStructSignedVectorEntry, mscExampleFixedPtProvFreeFixedPtReplicatedTable=mscExampleFixedPtProvFreeFixedPtReplicatedTable, mscExampleHexComponentName=mscExampleHexComponentName, mscExampleEnumProvFreeEnumArrayEntry=mscExampleEnumProvFreeEnumArrayEntry, mscExampleIpAddressProvFreeIpAddressReplicatedValue=mscExampleIpAddressProvFreeIpAddressReplicatedValue, mscFriDynOpOptionalOperationalTable=mscFriDynOpOptionalOperationalTable, mscExampleBcdProvStructBcdVectorIndex=mscExampleBcdProvStructBcdVectorIndex, mscFriDynOpDynamicRowStatusTable=mscFriDynOpDynamicRowStatusTable, mscExampleHexProvisionalTable=mscExampleHexProvisionalTable, mscFriEscapeSet=mscFriEscapeSet, mscExampleStringProvFreeStrArray1Table=mscExampleStringProvFreeStrArray1Table, mscExampleEnumProvFreeEnumVectorTable=mscExampleEnumProvFreeEnumVectorTable, mscFriDynOpOptionalRowStatusEntry=mscFriDynOpOptionalRowStatusEntry, mscExampleBcdOperFreeBcdListEntry=mscExampleBcdOperFreeBcdListEntry, mscExampleDecimalPfIntList1Entry=mscExampleDecimalPfIntList1Entry, mscExampleBcdIndicesProvisionedEntry=mscExampleBcdIndicesProvisionedEntry, mscExampleObjectIdOperFreeObjIdListRowStatus=mscExampleObjectIdOperFreeObjIdListRowStatus, mscFriEscapeCopyComponent=mscFriEscapeCopyComponent, mscExampleMiscellaneousProvFreeTimeList3Entry=mscExampleMiscellaneousProvFreeTimeList3Entry, mscExampleHexProvFreeHexListRowStatus=mscExampleHexProvFreeHexListRowStatus, mscExampleDashedOfDashedReplicatedRowStatus=mscExampleDashedOfDashedReplicatedRowStatus, mscFriOperationalFreeSimpleObjId=mscFriOperationalFreeSimpleObjId, mscExampleRequiredIndicesDecimalIndex=mscExampleRequiredIndicesDecimalIndex, mscExampleBcdOperFreeBcdArrayColumnIndex=mscExampleBcdOperFreeBcdArrayColumnIndex, mscExampleHexOsHexVectorTable=mscExampleHexOsHexVectorTable, mscExampleObjectIdProvFreeObjIdReplicatedValue=mscExampleObjectIdProvFreeObjIdReplicatedValue, mscExampleExtendedOperStructExtended=mscExampleExtendedOperStructExtended, mscExampleSequenceOperFreeSequenceReplicatedEntry=mscExampleSequenceOperFreeSequenceReplicatedEntry, mscExampleSignedOperStructSignedArrayRowIndex=mscExampleSignedOperStructSignedArrayRowIndex, mscExampleTwoIndicesRowStatusEntry=mscExampleTwoIndicesRowStatusEntry, mscExampleMiscellaneousProvFreeLongListRowStatus=mscExampleMiscellaneousProvFreeLongListRowStatus, mscExampleDashedOsDashedArrayEntry=mscExampleDashedOsDashedArrayEntry, mscExampleFixedPtProvFreeFixedPtListEntry=mscExampleFixedPtProvFreeFixedPtListEntry, mscExampleEnumProvFreeEnumListRowStatus=mscExampleEnumProvFreeEnumListRowStatus, mscExampleBcdProvFreeBcdReplicatedRowStatus=mscExampleBcdProvFreeBcdReplicatedRowStatus, mscExampleEnumProvFreeEnumReplicatedValue=mscExampleEnumProvFreeEnumReplicatedValue, mscExampleHexStrIndicesThreeIndex=mscExampleHexStrIndicesThreeIndex, mscExampleStringProvStructStrVectorTable=mscExampleStringProvStructStrVectorTable, mscExampleExtendedOperationalTable=mscExampleExtendedOperationalTable, mscExampleFixedPtOperStructFixedPtArrayRowIndex=mscExampleFixedPtOperStructFixedPtArrayRowIndex, mscExampleEnumProvFreeEnumReplicatedTable=mscExampleEnumProvFreeEnumReplicatedTable, mscFriDynOpInitialStorageType=mscFriDynOpInitialStorageType, mscExampleIpAddressRowStatusEntry=mscExampleIpAddressRowStatusEntry, mscExampleFixedPtOperFreeFixedPtVectorValue=mscExampleFixedPtOperFreeFixedPtVectorValue, mscExampleExtendedOperStructExtendedArrayValue=mscExampleExtendedOperStructExtendedArrayValue, mscExampleHexProvFreeHexReplicated1Entry=mscExampleHexProvFreeHexReplicated1Entry, mscExampleFixedPtOperFreeFixedPtSet=mscExampleFixedPtOperFreeFixedPtSet, mscExampleIpAddressOperFreeIpAddressListTable=mscExampleIpAddressOperFreeIpAddressListTable, mscExampleEnumProvStructEnumVectorEntry=mscExampleEnumProvStructEnumVectorEntry, mscExampleIpAddressOperFreeIpAddressVectorIndex=mscExampleIpAddressOperFreeIpAddressVectorIndex, mscExampleWildBcdProvFreeWildBcdArrayTable=mscExampleWildBcdProvFreeWildBcdArrayTable, mscExampleDashedComponentName=mscExampleDashedComponentName, mscExampleDashedProvisionalTable=mscExampleDashedProvisionalTable, mscExampleEnumProvFreeEnumSet=mscExampleEnumProvFreeEnumSet, mscExampleWildBcdOperStructWildBcdArrayValue=mscExampleWildBcdOperStructWildBcdArrayValue, mscExampleFourIndicesRowStatusTable=mscExampleFourIndicesRowStatusTable, mscExampleHexProvFreeHexReplicated1Index=mscExampleHexProvFreeHexReplicated1Index, mscExampleIpAddressOperFreeIpAddressListRowStatus=mscExampleIpAddressOperFreeIpAddressListRowStatus, mscExampleMiscellaneousOperFreeTimeDateTimeMinute=mscExampleMiscellaneousOperFreeTimeDateTimeMinute, mscExampleDashedIndicesProvAttribute=mscExampleDashedIndicesProvAttribute, mscExampleDashedOfDashedArrayRowIndex=mscExampleDashedOfDashedArrayRowIndex, mscExampleHexProvFreeHexReplicatedTable=mscExampleHexProvFreeHexReplicatedTable, mscFriAvailabilityStatus=mscFriAvailabilityStatus, mscExampleFixedPtRowStatusEntry=mscExampleFixedPtRowStatusEntry, mscExampleStringProvFreeStrArray1Value=mscExampleStringProvFreeStrArray1Value, mscExampleBcdProvStructBcdArrayEntry=mscExampleBcdProvStructBcdArrayEntry, mscFriDynOpOptional=mscFriDynOpOptional, mscExampleDecimalOsIntArrayRowIndex=mscExampleDecimalOsIntArrayRowIndex, mscExampleDecimalPfIntArray1ColumnIndex=mscExampleDecimalPfIntArray1ColumnIndex, mscExampleOperSignedSubCreatedRowStatus=mscExampleOperSignedSubCreatedRowStatus, mscExampleDecimalOfIntListRowStatus=mscExampleDecimalOfIntListRowStatus, mscExampleHexOsHexVectorEntry=mscExampleHexOsHexVectorEntry, mscFriOperationalFreeSimpleFixed=mscFriOperationalFreeSimpleFixed, mscExampleStringProvFreeAsciiOnly1=mscExampleStringProvFreeAsciiOnly1, mscExampleObjectIdProvisionalEntry=mscExampleObjectIdProvisionalEntry, mscRegisteredRowStatusEntry=mscRegisteredRowStatusEntry, mscExampleOperSignedSubCreatedEntry=mscExampleOperSignedSubCreatedEntry, mscExampleDecimalIndicesProvisionedTable=mscExampleDecimalIndicesProvisionedTable, mscExampleRequiredIndicesProvisionedEntry=mscExampleRequiredIndicesProvisionedEntry, mscFriComponentName=mscFriComponentName, mscFriDynOpDynOpJrStorageType=mscFriDynOpDynOpJrStorageType, mscExampleObjectIdRowStatusEntry=mscExampleObjectIdRowStatusEntry, mscExampleEnumOperFreeEnumVectorValue=mscExampleEnumOperFreeEnumVectorValue, mscExampleDecimalPfIntReplicated1Value=mscExampleDecimalPfIntReplicated1Value, mscExampleBcdOperFreeBcdReplicatedRowStatus=mscExampleBcdOperFreeBcdReplicatedRowStatus, mscFriDynOpDynamicStorageType=mscFriDynOpDynamicStorageType, mscExampleObjectIdProvEnumSub=mscExampleObjectIdProvEnumSub, mscFriDna=mscFriDna, mscExampleIpAddressOperFreeIpAddressReplicatedEntry=mscExampleIpAddressOperFreeIpAddressReplicatedEntry, mscExampleSequenceProvFreeSequenceListValue=mscExampleSequenceProvFreeSequenceListValue, mscFriRegisteredIndex=mscFriRegisteredIndex, mscExampleIpAddressProvEnumSub=mscExampleIpAddressProvEnumSub, mscExampleDashedOsDashedVectorIndex=mscExampleDashedOsDashedVectorIndex, mscExampleThreeIndicesThreeIndex=mscExampleThreeIndicesThreeIndex, mscExampleDecimalIndicesThreeIndex=mscExampleDecimalIndicesThreeIndex, mscExampleDashedProvStructDashedVectorTable=mscExampleDashedProvStructDashedVectorTable) mibBuilder.exportSymbols('Nortel-MsCarrier-MscPassport-CasTestMIB', mscExampleExtendedProvFreeExtendedArrayValue=mscExampleExtendedProvFreeExtendedArrayValue, mscExampleStorageType=mscExampleStorageType, mscFriDynOpDynOpJr=mscFriDynOpDynOpJr, mscExampleDashedOsDashedArrayRowIndex=mscExampleDashedOsDashedArrayRowIndex, mscFriPfListFixedRowStatus=mscFriPfListFixedRowStatus, mscExampleSequenceOperFreeSequenceListTable=mscExampleSequenceOperFreeSequenceListTable, mscExampleEnumIndicesProvisionedTable=mscExampleEnumIndicesProvisionedTable, mscExampleIpAddressProvFreeIpAddressVectorValue=mscExampleIpAddressProvFreeIpAddressVectorValue, mscFriDynamicComponentName=mscFriDynamicComponentName, mscExampleBcdOperFreeBcdArrayEntry=mscExampleBcdOperFreeBcdArrayEntry, mscExampleFixedPtOperStructFixedPtVectorValue=mscExampleFixedPtOperStructFixedPtVectorValue, mscExampleBcdProvFreeBcdListTable=mscExampleBcdProvFreeBcdListTable, mscExampleStringOperFreeStrArrayRowIndex=mscExampleStringOperFreeStrArrayRowIndex, mscExampleFixedPtProvStructFixedPtArrayRowIndex=mscExampleFixedPtProvStructFixedPtArrayRowIndex, mscExampleOperFixedPtSubcomponentsCreatedEntry=mscExampleOperFixedPtSubcomponentsCreatedEntry, mscExampleDashedStorageType=mscExampleDashedStorageType, mscExampleBcdOperStructBcdArrayValue=mscExampleBcdOperStructBcdArrayValue, mscExampleDecimalPfIntVectorValue=mscExampleDecimalPfIntVectorValue, mscExampleTwoIndicesProvAttribute=mscExampleTwoIndicesProvAttribute, mscExampleDashedOfDashedArrayEntry=mscExampleDashedOfDashedArrayEntry, mscExampleSignedRowStatusEntry=mscExampleSignedRowStatusEntry, mscExampleOperStringSubCreatedTable=mscExampleOperStringSubCreatedTable, mscExampleIpAddressOperFreeIpAddressReplicatedIndex=mscExampleIpAddressOperFreeIpAddressReplicatedIndex, mscExampleProvisionalEntry=mscExampleProvisionalEntry, mscExampleStringOperFreeStrArrayColumnIndex=mscExampleStringOperFreeStrArrayColumnIndex, mscExampleBcdProvFreeBcdReplicated1Index=mscExampleBcdProvFreeBcdReplicated1Index, mscExampleBcdProvFreeBcdListValue=mscExampleBcdProvFreeBcdListValue, mscExampleEnumOperStructEnumVectorTable=mscExampleEnumOperStructEnumVectorTable, mscExampleIpAddressProvFreeIpAddressArray1Value=mscExampleIpAddressProvFreeIpAddressArray1Value, mscExampleBcdProvFreeBcdArrayTable=mscExampleBcdProvFreeBcdArrayTable, mscExampleHexProvFreeHexArrayValue=mscExampleHexProvFreeHexArrayValue, mscExampleDashedProvFreeDashedListTable=mscExampleDashedProvFreeDashedListTable, mscExampleOneIndexStorageType=mscExampleOneIndexStorageType, mscExampleHexRowStatus=mscExampleHexRowStatus, mscExampleFixedPt=mscExampleFixedPt, mscExampleBcdProvFreeBcdArrayValue=mscExampleBcdProvFreeBcdArrayValue, mscExampleMiscellaneousProvFreeTimeDateOnly1=mscExampleMiscellaneousProvFreeTimeDateOnly1, mscExampleHexOperationalTable=mscExampleHexOperationalTable, mscExampleMiscellaneousProvisionalTable=mscExampleMiscellaneousProvisionalTable, mscExampleExtendedOperStructExtendedArrayRowIndex=mscExampleExtendedOperStructExtendedArrayRowIndex, mscExampleHexOfHexReplicatedRowStatus=mscExampleHexOfHexReplicatedRowStatus, mscFriEventRowStatusTable=mscFriEventRowStatusTable, mscExampleMiscellaneousProvFreeTimeDateTimeMinute1=mscExampleMiscellaneousProvFreeTimeDateTimeMinute1, mscRegisteredDataEntry=mscRegisteredDataEntry, mscExampleWildBcdProvFreeWildBcdVectorIndex=mscExampleWildBcdProvFreeWildBcdVectorIndex, mscFriDynOpOptionalOperationalEntry=mscFriDynOpOptionalOperationalEntry, mscExampleExtendedProvFreeExtendedReplicatedEntry=mscExampleExtendedProvFreeExtendedReplicatedEntry, mscExampleBcdProvFreeBcdArrayRowIndex=mscExampleBcdProvFreeBcdArrayRowIndex, mscExampleWildBcdOperFreeWildBcdReplicatedIndex=mscExampleWildBcdOperFreeWildBcdReplicatedIndex, mscFriDynOpStorageType=mscFriDynOpStorageType, mscExampleBcdOperFreeBcdReplicatedValue=mscExampleBcdOperFreeBcdReplicatedValue, mscExampleHexRowStatusTable=mscExampleHexRowStatusTable, mscExampleAsciiIndicesProvAttribute=mscExampleAsciiIndicesProvAttribute, mscExampleEnumProvFreeEnumArrayTable=mscExampleEnumProvFreeEnumArrayTable, mscExampleFixedPtOperFreeFixedPtVectorTable=mscExampleFixedPtOperFreeFixedPtVectorTable, mscExampleAsciiIndicesThreeIndex=mscExampleAsciiIndicesThreeIndex, mscExampleDashedProvFreeDashedReplicatedValue=mscExampleDashedProvFreeDashedReplicatedValue, mscExampleEnumProvStructEnumVectorIndex=mscExampleEnumProvStructEnumVectorIndex, mscExampleExtendedOperFreeExtendedVectorIndex=mscExampleExtendedOperFreeExtendedVectorIndex, mscExampleObjIdIndicesProvAttribute=mscExampleObjIdIndicesProvAttribute, mscFriProvisionalFreeSimpleSigned=mscFriProvisionalFreeSimpleSigned, mscFriDnaDataNetworkAddress=mscFriDnaDataNetworkAddress, mscFriStandbyStatus=mscFriStandbyStatus, mscFriDynOpOptionalStorageType=mscFriDynOpOptionalStorageType, mscExampleHexProvFreeHexList1Table=mscExampleHexProvFreeHexList1Table, mscExampleEnumOperStructEnum=mscExampleEnumOperStructEnum, mscFriOperationalEntry=mscFriOperationalEntry, mscExampleStringOperFreeStrArrayTable=mscExampleStringOperFreeStrArrayTable, mscExampleEnumIndicesComponentName=mscExampleEnumIndicesComponentName, mscExampleIpAddressProvStructIpAddressArrayValue=mscExampleIpAddressProvStructIpAddressArrayValue, mscExampleHexProvFreeHexArrayRowIndex=mscExampleHexProvFreeHexArrayRowIndex, mscExampleMiscellaneousOperFreeTime=mscExampleMiscellaneousOperFreeTime, mscExampleExtendedProvStructExtendedVectorEntry=mscExampleExtendedProvStructExtendedVectorEntry, mscExampleBcdOperFreeBcd=mscExampleBcdOperFreeBcd, mscFriOfListEnumerationTable=mscFriOfListEnumerationTable, mscExampleEnumProvStructEnumArrayDayIndex=mscExampleEnumProvStructEnumArrayDayIndex, mscExampleDecimalOfIntListTable=mscExampleDecimalOfIntListTable, mscExampleSignedOperFreeSignedReplicatedTable=mscExampleSignedOperFreeSignedReplicatedTable, mscFriDynOpInitialProvisionedTable=mscFriDynOpInitialProvisionedTable, mscExampleIpAddressRowStatus=mscExampleIpAddressRowStatus, mscExampleExtendedProvFreeExtendedListValue=mscExampleExtendedProvFreeExtendedListValue, mscExampleOperDecimalSubCreatedEntry=mscExampleOperDecimalSubCreatedEntry, mscExampleWildBcdOperFreeWildBcdReplicatedEntry=mscExampleWildBcdOperFreeWildBcdReplicatedEntry, mscFriDynOpComponentName=mscFriDynOpComponentName, mscExampleSignedOperationalTable=mscExampleSignedOperationalTable, mscExampleDashedProvFreeDashedListEntry=mscExampleDashedProvFreeDashedListEntry, mscExampleDecimalPsIntVectorEntry=mscExampleDecimalPsIntVectorEntry, mscExampleSequenceIndicesOneIndex=mscExampleSequenceIndicesOneIndex, mscExampleWildBcdProvStructWildBcdArrayRowIndex=mscExampleWildBcdProvStructWildBcdArrayRowIndex, mscExampleIpAddressProvFreeIpAddressListRowStatus=mscExampleIpAddressProvFreeIpAddressListRowStatus, mscExampleBcdOperFreeBcdListTable=mscExampleBcdOperFreeBcdListTable, mscExampleBcdOperStructBcdArrayRowIndex=mscExampleBcdOperStructBcdArrayRowIndex, mscFriProvisionalTable=mscFriProvisionalTable, mscExampleHexProvFreeHexArray1Value=mscExampleHexProvFreeHexArray1Value, mscFriDnaComponentName=mscFriDnaComponentName, mscExampleEnumProvFreeEnumArrayMonthIndex=mscExampleEnumProvFreeEnumArrayMonthIndex, mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus=mscExampleIpAddressProvFreeIpAddressReplicatedRowStatus, mscFriDynOpDynamicRowStatus=mscFriDynOpDynamicRowStatus, mscFriProvisionalFreeSimpleExtended=mscFriProvisionalFreeSimpleExtended, mscExampleEnumProvFreeEnumVectorEntry=mscExampleEnumProvFreeEnumVectorEntry, mscExampleExtendedProvisionalTable=mscExampleExtendedProvisionalTable, mscFriPfListFixedTable=mscFriPfListFixedTable, mscExampleMiscellaneousOperStructCounter64=mscExampleMiscellaneousOperStructCounter64, mscExampleString=mscExampleString, mscExampleDecimalOperationalEntry=mscExampleDecimalOperationalEntry, mscExampleExtendedProvFreeExtendedReplicatedRowStatus=mscExampleExtendedProvFreeExtendedReplicatedRowStatus, mscRegisteredComponentName=mscRegisteredComponentName, mscExampleOperStringSubCreatedRowStatus=mscExampleOperStringSubCreatedRowStatus, mscFri=mscFri, mscExampleMiscellaneousOperFreeLongReplicatedIndex=mscExampleMiscellaneousOperFreeLongReplicatedIndex, mscFriOperationalFreeSimpleBcd=mscFriOperationalFreeSimpleBcd, mscExampleSignedProvFreeSignedVectorIndex=mscExampleSignedProvFreeSignedVectorIndex, mscExampleMiscellaneousOperFreeTimeListValue=mscExampleMiscellaneousOperFreeTimeListValue, mscExampleDashedOperationalTable=mscExampleDashedOperationalTable, mscExampleIpAddressOperStructIpAddressVectorValue=mscExampleIpAddressOperStructIpAddressVectorValue, mscExampleDashedIndicesProvisionedTable=mscExampleDashedIndicesProvisionedTable, mscExampleExtendedProvFreeExtendedArrayRowIndex=mscExampleExtendedProvFreeExtendedArrayRowIndex, mscExampleWildBcdOperStructWildBcdVectorIndex=mscExampleWildBcdOperStructWildBcdVectorIndex, mscFriRegisteredRowStatusTable=mscFriRegisteredRowStatusTable, mscExampleWildBcdIndex=mscExampleWildBcdIndex, mscExampleObjectIdOperFreeObjIdReplicatedValue=mscExampleObjectIdOperFreeObjIdReplicatedValue, mscExampleStringRowStatusTable=mscExampleStringRowStatusTable, mscExampleHexOsHexArrayEntry=mscExampleHexOsHexArrayEntry, mscExampleEnumProvEnumSub=mscExampleEnumProvEnumSub, mscExampleFixedPtProvStructFixedPtArrayValue=mscExampleFixedPtProvStructFixedPtArrayValue, mscExampleHexOfHexArrayColumnIndex=mscExampleHexOfHexArrayColumnIndex, mscExampleBcdOperStructBcdVectorEntry=mscExampleBcdOperStructBcdVectorEntry, mscExampleWildBcdOperFreeWildBcdArrayTable=mscExampleWildBcdOperFreeWildBcdArrayTable, mscExampleDashedProvStructDashedVectorIndex=mscExampleDashedProvStructDashedVectorIndex, mscExampleBcdIndicesProvAttribute=mscExampleBcdIndicesProvAttribute, mscExampleSequenceOperationalEntry=mscExampleSequenceOperationalEntry, mscExampleIpAddressOperStructIpAddressArrayEntry=mscExampleIpAddressOperStructIpAddressArrayEntry, mscExampleMiscellaneousProvFreeTime1=mscExampleMiscellaneousProvFreeTime1, mscFriRegisteredStorageType=mscFriRegisteredStorageType, mscExampleDecimalOfIntVectorIndex=mscExampleDecimalOfIntVectorIndex, mscExampleHexOsHexVectorValue=mscExampleHexOsHexVectorValue, mscExampleStringProvFreeStrArrayColumnIndex=mscExampleStringProvFreeStrArrayColumnIndex, mscFriAlarmStatus=mscFriAlarmStatus, mscExampleStringProvFreeStrList1Entry=mscExampleStringProvFreeStrList1Entry, mscExampleEnumOperStructEnumSet=mscExampleEnumOperStructEnumSet, mscExampleSignedProvFreeSignedArray1Value=mscExampleSignedProvFreeSignedArray1Value, mscExampleStringProvFreeStrListEntry=mscExampleStringProvFreeStrListEntry, mscExampleAsciiIndicesOneIndex=mscExampleAsciiIndicesOneIndex, mscFriOperationalFreeSimpleSigned=mscFriOperationalFreeSimpleSigned, mscExampleBcdOperFreeBcdArrayValue=mscExampleBcdOperFreeBcdArrayValue, mscExampleEnumProvStructEnumArrayMonthIndex=mscExampleEnumProvStructEnumArrayMonthIndex, mscExampleDecimalPfIntReplicated1Index=mscExampleDecimalPfIntReplicated1Index, mscExampleExtendedProvStructExtendedVectorTable=mscExampleExtendedProvStructExtendedVectorTable, mscExampleBcdProvFreeBcdArray1Value=mscExampleBcdProvFreeBcdArray1Value, mscFriProvisionalStructSimpleExtended=mscFriProvisionalStructSimpleExtended, mscExampleBcdProvStructBcdVectorEntry=mscExampleBcdProvStructBcdVectorEntry, mscFriProvisionalStructSimpleFixed=mscFriProvisionalStructSimpleFixed, mscExampleIpAddressProvFreeIpAddressVector1Table=mscExampleIpAddressProvFreeIpAddressVector1Table, mscExampleBcdProvStructBcdVectorValue=mscExampleBcdProvStructBcdVectorValue, mscExampleDecimalPfIntVector1Index=mscExampleDecimalPfIntVector1Index, mscExampleWildBcdProvStructWildBcdVectorEntry=mscExampleWildBcdProvStructWildBcdVectorEntry, mscFriDynOpDynamicOperationalTable=mscFriDynOpDynamicOperationalTable, mscExampleBcdProvFreeBcdArray1Table=mscExampleBcdProvFreeBcdArray1Table, mscExampleRowStatusTable=mscExampleRowStatusTable, mscExampleHexProvFreeHexArrayTable=mscExampleHexProvFreeHexArrayTable, mscExampleDecimalOsIntVectorEntry=mscExampleDecimalOsIntVectorEntry, mscExampleSequenceIndicesStorageType=mscExampleSequenceIndicesStorageType, mscExampleWildBcdProvStructWildBcdVectorTable=mscExampleWildBcdProvStructWildBcdVectorTable, mscExampleNsapNsapNativeAddress=mscExampleNsapNsapNativeAddress, mscExampleBcdProvFreeBcdList1Value=mscExampleBcdProvFreeBcdList1Value, mscExampleDecimalPsIntArrayValue=mscExampleDecimalPsIntArrayValue, mscExampleStringOperStructAsciiOnly=mscExampleStringOperStructAsciiOnly, mscExampleMiscellaneousIndex=mscExampleMiscellaneousIndex, mscExampleHexProvStructHexVectorEntry=mscExampleHexProvStructHexVectorEntry, mscExampleOperMyComponentName=mscExampleOperMyComponentName, mscFriProvisionalEntry=mscFriProvisionalEntry, mscExampleHexOperStructHex=mscExampleHexOperStructHex, mscFriDynOpAttribute=mscFriDynOpAttribute, mscFriRegisteredDataEntry=mscFriRegisteredDataEntry, mscFriDynOpInitialProvAttribute=mscFriDynOpInitialProvAttribute, mscExampleWildBcdOperFreeWildBcdReplicatedValue=mscExampleWildBcdOperFreeWildBcdReplicatedValue, mscExampleSignedProvFreeSigned=mscExampleSignedProvFreeSigned, mscExampleIpAddressOperFreeIpAddressListValue=mscExampleIpAddressOperFreeIpAddressListValue, mscExampleSequenceIndices=mscExampleSequenceIndices, mscExampleBcdOperationalTable=mscExampleBcdOperationalTable, mscFriOfListEnumerationRowStatus=mscFriOfListEnumerationRowStatus, mscExampleFixedPtOperFreeFixedPtReplicatedValue=mscExampleFixedPtOperFreeFixedPtReplicatedValue, mscExampleExtendedComponentName=mscExampleExtendedComponentName, mscExampleDecimalPfIntArray1RowIndex=mscExampleDecimalPfIntArray1RowIndex, mscExampleDashedOsDashedArrayValue=mscExampleDashedOsDashedArrayValue, mscExampleWildBcdProvFreeWildBcdVectorTable=mscExampleWildBcdProvFreeWildBcdVectorTable, mscExampleEnumProvFreeEnumArray1MonthIndex=mscExampleEnumProvFreeEnumArray1MonthIndex, mscFriDynOpDynOpJrRowStatus=mscFriDynOpDynOpJrRowStatus, mscExampleOneIndexOneIndex=mscExampleOneIndexOneIndex, mscExampleFixedPtProvFreeFixedPtReplicatedValue=mscExampleFixedPtProvFreeFixedPtReplicatedValue, mscExampleMiscellaneousRowStatusEntry=mscExampleMiscellaneousRowStatusEntry, mscExampleDashedOperationalEntry=mscExampleDashedOperationalEntry, mscExampleMiscellaneousOperFreeLongReplicatedTable=mscExampleMiscellaneousOperFreeLongReplicatedTable, casTestGroupCA02A=casTestGroupCA02A, mscExampleSequenceProvFreeSequenceListRowStatus=mscExampleSequenceProvFreeSequenceListRowStatus, mscExampleBcdProvFreeBcdReplicated1Table=mscExampleBcdProvFreeBcdReplicated1Table, mscExampleIpAddressProvStructIpAddressVectorTable=mscExampleIpAddressProvStructIpAddressVectorTable, mscExampleStringRowStatus=mscExampleStringRowStatus, mscExampleFixedPtOperStructFixedPtVectorIndex=mscExampleFixedPtOperStructFixedPtVectorIndex, mscExampleSignedOperStructSignedVectorValue=mscExampleSignedOperStructSignedVectorValue, mscExampleProvStringSubCreatedEntry=mscExampleProvStringSubCreatedEntry, mscExampleIpAddrIndicesComponentName=mscExampleIpAddrIndicesComponentName, mscExampleFourIndicesTwoIndex=mscExampleFourIndicesTwoIndex, mscExampleExtendedOperStructExtendedVectorEntry=mscExampleExtendedOperStructExtendedVectorEntry, mscExampleWildBcdProvFreeWildBcdArrayEntry=mscExampleWildBcdProvFreeWildBcdArrayEntry, mscExampleHexIndicesRowStatusTable=mscExampleHexIndicesRowStatusTable, mscExampleSignedOperStructSignedArrayValue=mscExampleSignedOperStructSignedArrayValue, mscExampleDecimalIndicesOneIndex=mscExampleDecimalIndicesOneIndex, mscRegisteredDataTable=mscRegisteredDataTable, mscExampleEnumProvFreeEnumList1RowStatus=mscExampleEnumProvFreeEnumList1RowStatus, mscExampleIpAddressProvStructIpAddress=mscExampleIpAddressProvStructIpAddress, mscExampleDecimalOperStructInteger=mscExampleDecimalOperStructInteger, mscExampleSignedOperFreeSignedListTable=mscExampleSignedOperFreeSignedListTable, mscExampleWildBcdProvFreeWildBcdArrayColumnIndex=mscExampleWildBcdProvFreeWildBcdArrayColumnIndex, mscExampleDashedIndicesOneIndex=mscExampleDashedIndicesOneIndex, mscExampleProvStringSubCreatedRowStatus=mscExampleProvStringSubCreatedRowStatus, mscExampleFixedPtProvFixedPtSubcomponent=mscExampleFixedPtProvFixedPtSubcomponent, mscExampleFixedPtProvFreeFixedPtVectorIndex=mscExampleFixedPtProvFreeFixedPtVectorIndex, mscExampleDashedIndices=mscExampleDashedIndices, mscExampleExtendedOperFreeExtendedReplicatedRowStatus=mscExampleExtendedOperFreeExtendedReplicatedRowStatus, mscExampleExtendedProvFreeExtendedListTable=mscExampleExtendedProvFreeExtendedListTable, mscExampleStringProvFreeStrArrayTable=mscExampleStringProvFreeStrArrayTable, mscExampleFixedPtOperationalEntry=mscExampleFixedPtOperationalEntry, mscExampleBcdProvStructBcd=mscExampleBcdProvStructBcd, mscExampleDecimalPfIntVector1Value=mscExampleDecimalPfIntVector1Value, mscExampleIpAddressProvFreeIpAddressListTable=mscExampleIpAddressProvFreeIpAddressListTable, mscExampleDashedProvStructDashed=mscExampleDashedProvStructDashed, mscExampleBcdProvStructBcdArrayRowIndex=mscExampleBcdProvStructBcdArrayRowIndex, mscExampleWildBcdProvFreeWildBcdReplicatedTable=mscExampleWildBcdProvFreeWildBcdReplicatedTable, mscExampleFixedPtIndex=mscExampleFixedPtIndex, mscExampleEnumRowStatusEntry=mscExampleEnumRowStatusEntry, mscExampleBcdProvFreeBcdVector1Table=mscExampleBcdProvFreeBcdVector1Table, mscExampleObjectIdOperFreeObjIdReplicatedIndex=mscExampleObjectIdOperFreeObjIdReplicatedIndex, mscExampleStringProvFreeStrVector1Entry=mscExampleStringProvFreeStrVector1Entry, mscExampleRequiredIndicesEnumerationIndex=mscExampleRequiredIndicesEnumerationIndex, mscExampleOperFixedPtSubcomponentsCreatedTable=mscExampleOperFixedPtSubcomponentsCreatedTable, mscExampleHexOfHexVectorValue=mscExampleHexOfHexVectorValue, mscExampleSignedOperStructSignedVectorEntry=mscExampleSignedOperStructSignedVectorEntry, mscFriProvisionalFreeSimpleHex=mscFriProvisionalFreeSimpleHex, mscExampleHexProvFreeHexVector1Entry=mscExampleHexProvFreeHexVector1Entry, mscExampleDecimalComponentName=mscExampleDecimalComponentName, mscFriDynOpDynamicAttribute=mscFriDynOpDynamicAttribute, mscFriAdminState=mscFriAdminState, mscFriEventRowStatusEntry=mscFriEventRowStatusEntry, mscRegisteredRowStatus=mscRegisteredRowStatus, mscExampleIpAddressIndex=mscExampleIpAddressIndex, mscExampleDashedOfDashedReplicatedValue=mscExampleDashedOfDashedReplicatedValue, mscExampleDashedOfDashedVectorValue=mscExampleDashedOfDashedVectorValue, mscExampleExtendedProvFreeExtendedVectorIndex=mscExampleExtendedProvFreeExtendedVectorIndex, mscExampleSequenceIndicesTwoIndex=mscExampleSequenceIndicesTwoIndex, mscExampleBcdRowStatusTable=mscExampleBcdRowStatusTable, mscExampleIpAddressProvFreeIpAddressReplicatedEntry=mscExampleIpAddressProvFreeIpAddressReplicatedEntry, mscExampleBcd=mscExampleBcd, mscExampleBcdOperFreeBcdVectorEntry=mscExampleBcdOperFreeBcdVectorEntry) mibBuilder.exportSymbols('Nortel-MsCarrier-MscPassport-CasTestMIB', mscExampleDecimalOfIntReplicatedIndex=mscExampleDecimalOfIntReplicatedIndex, mscExampleProvSignedSubCreatedRowStatus=mscExampleProvSignedSubCreatedRowStatus, mscExampleWildBcdOperStructWildBcdVectorEntry=mscExampleWildBcdOperStructWildBcdVectorEntry, mscExampleMiscellaneousOperFreeTimeDateOnly=mscExampleMiscellaneousOperFreeTimeDateOnly, mscExampleBcdProvFreeBcd1=mscExampleBcdProvFreeBcd1, mscExampleDashedProvFreeDashedArrayEntry=mscExampleDashedProvFreeDashedArrayEntry, mscExampleHex=mscExampleHex, mscExampleEnumProvStructEnumSet=mscExampleEnumProvStructEnumSet, mscExampleMiscellaneousStorageType=mscExampleMiscellaneousStorageType, casTestMIB=casTestMIB, mscExampleSignedOperFreeSignedArrayColumnIndex=mscExampleSignedOperFreeSignedArrayColumnIndex, mscExampleStringOperStructStrArrayTable=mscExampleStringOperStructStrArrayTable, mscExampleDashedProvFreeDashedVectorEntry=mscExampleDashedProvFreeDashedVectorEntry, mscExampleStringProvFreeStrListRowStatus=mscExampleStringProvFreeStrListRowStatus, mscExampleDashedProvFreeDashedArrayTable=mscExampleDashedProvFreeDashedArrayTable, mscExampleThreeIndicesRowStatusEntry=mscExampleThreeIndicesRowStatusEntry, mscExampleBcdStorageType=mscExampleBcdStorageType, mscExampleDashedIndicesRowStatusTable=mscExampleDashedIndicesRowStatusTable, mscExampleSignedOperFreeSignedReplicatedEntry=mscExampleSignedOperFreeSignedReplicatedEntry, mscExampleFixedPtOperFreeFixedPtListTable=mscExampleFixedPtOperFreeFixedPtListTable, mscExampleHexProvFreeHexListEntry=mscExampleHexProvFreeHexListEntry, mscFriDynOpOptionalRowStatus=mscFriDynOpOptionalRowStatus, mscExampleObjectIdProvFreeObjIdListValue=mscExampleObjectIdProvFreeObjIdListValue, mscExampleSignedProvFreeSignedArray1Entry=mscExampleSignedProvFreeSignedArray1Entry, mscExampleWildBcdOperationalEntry=mscExampleWildBcdOperationalEntry, mscExampleObjectIdProvFreeObjIdListRowStatus=mscExampleObjectIdProvFreeObjIdListRowStatus, mscExampleIpAddrIndicesRowStatus=mscExampleIpAddrIndicesRowStatus, mscExampleMiscellaneousProvFreeTimeReplicatedIndex=mscExampleMiscellaneousProvFreeTimeReplicatedIndex, mscExampleStringProvFreeStrReplicatedEntry=mscExampleStringProvFreeStrReplicatedEntry, mscFriOperationalStructSimpleExtended=mscFriOperationalStructSimpleExtended, mscFriProvisionalStructSimpleEnum=mscFriProvisionalStructSimpleEnum, mscExampleEnumProvFreeEnumList1Table=mscExampleEnumProvFreeEnumList1Table, mscExampleStringProvFreeStrReplicatedTable=mscExampleStringProvFreeStrReplicatedTable, mscExampleHexOfHexListValue=mscExampleHexOfHexListValue, mscExampleStringProvFreeStrReplicatedIndex=mscExampleStringProvFreeStrReplicatedIndex, mscFriOperationalStructSimpleFixed=mscFriOperationalStructSimpleFixed, mscExampleEnumProvFreeEnum=mscExampleEnumProvFreeEnum, mscExampleExtendedProvFreeExtended=mscExampleExtendedProvFreeExtended, mscExampleStringProvFreeStrVectorEntry=mscExampleStringProvFreeStrVectorEntry, mscExampleWildBcdProvFreeWildBcdVectorEntry=mscExampleWildBcdProvFreeWildBcdVectorEntry, mscExampleStringProvStructStrVectorEntry=mscExampleStringProvStructStrVectorEntry, mscExampleIpAddressOperStructIpAddressVectorEntry=mscExampleIpAddressOperStructIpAddressVectorEntry, mscExampleMiscellaneousOperFreeLongReplicatedRowStatus=mscExampleMiscellaneousOperFreeLongReplicatedRowStatus, mscFriDynOp=mscFriDynOp, mscExampleSignedOperFreeSignedListEntry=mscExampleSignedOperFreeSignedListEntry, mscFriDynOpDynamicRowStatusEntry=mscFriDynOpDynamicRowStatusEntry, mscExampleTwoIndicesRowStatus=mscExampleTwoIndicesRowStatus, mscExampleIpAddrIndices=mscExampleIpAddrIndices, mscExampleDashedIndicesRowStatus=mscExampleDashedIndicesRowStatus, mscExampleStringProvFreeStrArray1Entry=mscExampleStringProvFreeStrArray1Entry, mscExampleSequenceProvFreeSequenceReplicatedRowStatus=mscExampleSequenceProvFreeSequenceReplicatedRowStatus, casTestGroupCA=casTestGroupCA, mscExampleDecimalOfIntVectorValue=mscExampleDecimalOfIntVectorValue, mscExampleBcdIndicesRowStatusEntry=mscExampleBcdIndicesRowStatusEntry, mscExampleBcdProvFreeBcdVectorEntry=mscExampleBcdProvFreeBcdVectorEntry, mscExampleSignedComponentName=mscExampleSignedComponentName, mscExampleOneIndex=mscExampleOneIndex, mscExampleExtendedOperFreeExtendedArrayColumnIndex=mscExampleExtendedOperFreeExtendedArrayColumnIndex, mscExampleNsapNativeIndex=mscExampleNsapNativeIndex, mscExampleDashedOfDashedListEntry=mscExampleDashedOfDashedListEntry, casTestCapabilitiesCA02=casTestCapabilitiesCA02, mscExampleSequenceProvisionalTable=mscExampleSequenceProvisionalTable, mscExampleHexProvFreeHexVectorIndex=mscExampleHexProvFreeHexVectorIndex, mscExampleBcdOperStructBcdVectorIndex=mscExampleBcdOperStructBcdVectorIndex, mscExampleSequenceIndicesProvAttribute=mscExampleSequenceIndicesProvAttribute, mscExampleSequenceOperStructSequence=mscExampleSequenceOperStructSequence, mscExampleStringProvStructStrVectorIndex=mscExampleStringProvStructStrVectorIndex, mscExampleSignedProvisionalEntry=mscExampleSignedProvisionalEntry, mscExampleBcdOperStructBcdVectorTable=mscExampleBcdOperStructBcdVectorTable, mscExampleEnumOperFreeEnumVectorTable=mscExampleEnumOperFreeEnumVectorTable, mscExampleFixedPtOperFreeFixedPt=mscExampleFixedPtOperFreeFixedPt, mscExampleObjectIdStorageType=mscExampleObjectIdStorageType, mscExampleAsciiIndicesComponentName=mscExampleAsciiIndicesComponentName, mscExampleDecimalProvStructInteger=mscExampleDecimalProvStructInteger, mscExampleDecimalIndicesTwoIndex=mscExampleDecimalIndicesTwoIndex, mscExampleSequenceComponentName=mscExampleSequenceComponentName, mscRegisteredRowStatusTable=mscRegisteredRowStatusTable, mscExampleHexOsHexArrayValue=mscExampleHexOsHexArrayValue, mscExampleDashedOfDashedVectorIndex=mscExampleDashedOfDashedVectorIndex, mscExampleEnumOperFreeEnumArrayTable=mscExampleEnumOperFreeEnumArrayTable, mscExampleEnumProvFreeEnumReplicatedIndex=mscExampleEnumProvFreeEnumReplicatedIndex, mscFriOperationalStructSimpleBcd=mscFriOperationalStructSimpleBcd, mscExampleDashedRowStatus=mscExampleDashedRowStatus, mscExampleStringOperFreeStrVectorEntry=mscExampleStringOperFreeStrVectorEntry, mscExampleStringProvStringSub=mscExampleStringProvStringSub, mscExampleSequenceProvFreeSequenceReplicatedIndex=mscExampleSequenceProvFreeSequenceReplicatedIndex, mscExampleDashed=mscExampleDashed, mscExampleEnumProvStructEnumVectorTable=mscExampleEnumProvStructEnumVectorTable, mscFriEscapeCheckAttribute=mscFriEscapeCheckAttribute, mscExampleEnumOperFreeEnumReplicatedRowStatus=mscExampleEnumOperFreeEnumReplicatedRowStatus, mscExampleDecimalOperStructIntSet=mscExampleDecimalOperStructIntSet, mscExampleMiscellaneousOperationalEntry=mscExampleMiscellaneousOperationalEntry, mscExampleEnumOperFreeEnumListEntry=mscExampleEnumOperFreeEnumListEntry, mscFriOperationalStructSimpleUnsigned=mscFriOperationalStructSimpleUnsigned, mscExampleFixedPtProvFreeFixedPtListTable=mscExampleFixedPtProvFreeFixedPtListTable, mscExampleStringProvFreeStrVector1Value=mscExampleStringProvFreeStrVector1Value, mscFriEscapeDefaultsComponent=mscFriEscapeDefaultsComponent, mscExampleWildBcdProvFreeWildBcdReplicatedIndex=mscExampleWildBcdProvFreeWildBcdReplicatedIndex, mscExampleNsapStorageType=mscExampleNsapStorageType, mscExampleDecimalPfIntReplicated1Table=mscExampleDecimalPfIntReplicated1Table, mscExampleBcdIndices=mscExampleBcdIndices, mscExampleDecimalPfIntList1Value=mscExampleDecimalPfIntList1Value, mscExampleDecimalPsIntArrayRowIndex=mscExampleDecimalPsIntArrayRowIndex, mscExampleFixedPtProvFreeFixedPtSet=mscExampleFixedPtProvFreeFixedPtSet, mscExampleHexOfHexVectorEntry=mscExampleHexOfHexVectorEntry, mscFriPfListSignedTable=mscFriPfListSignedTable, mscExampleSignedOperFreeSignedReplicatedValue=mscExampleSignedOperFreeSignedReplicatedValue, mscExampleMiscellaneousRowStatusTable=mscExampleMiscellaneousRowStatusTable, mscExampleIpAddressProvFreeIpAddressList1Entry=mscExampleIpAddressProvFreeIpAddressList1Entry, mscExampleProvDecimalSubCreatedRowStatus=mscExampleProvDecimalSubCreatedRowStatus, mscExampleDecimalOsIntArrayValue=mscExampleDecimalOsIntArrayValue, mscExampleIpAddressProvFreeIpAddressVector1Entry=mscExampleIpAddressProvFreeIpAddressVector1Entry, mscFriPfListFixedEntry=mscFriPfListFixedEntry, mscExampleDecimalOfIntListValue=mscExampleDecimalOfIntListValue, mscExampleDecimalOperFreeGauge32=mscExampleDecimalOperFreeGauge32, mscExampleSignedProvFreeSignedArrayColumnIndex=mscExampleSignedProvFreeSignedArrayColumnIndex, mscExampleHexIndicesRowStatusEntry=mscExampleHexIndicesRowStatusEntry, mscExampleDecimalPfIntReplicatedRowStatus=mscExampleDecimalPfIntReplicatedRowStatus, mscExampleBcdOperStructBcd=mscExampleBcdOperStructBcd, mscExampleHexStrIndicesRowStatusTable=mscExampleHexStrIndicesRowStatusTable, mscFriRegisteredAttribute=mscFriRegisteredAttribute, mscFriControlStatus=mscFriControlStatus, mscFriDnaRowStatusEntry=mscFriDnaRowStatusEntry, mscExampleMiscellaneousProvFreeLongListTable=mscExampleMiscellaneousProvFreeLongListTable, mscExampleBcdOperFreeBcdArrayTable=mscExampleBcdOperFreeBcdArrayTable, mscExampleExtendedIndex=mscExampleExtendedIndex, mscExampleDecimalOsIntArrayEntry=mscExampleDecimalOsIntArrayEntry, mscExampleFourIndicesRowStatusEntry=mscExampleFourIndicesRowStatusEntry, mscFriPfListAsciiTable=mscFriPfListAsciiTable, mscExampleHexOsHexArrayColumnIndex=mscExampleHexOsHexArrayColumnIndex, mscExampleHexProvFreeHexVectorValue=mscExampleHexProvFreeHexVectorValue, mscExampleDashedIndicesThreeIndex=mscExampleDashedIndicesThreeIndex, mscExampleOperationalTable=mscExampleOperationalTable, mscExampleSequenceProvFreeSequenceListEntry=mscExampleSequenceProvFreeSequenceListEntry, mscFriEscapeCopyAttribute=mscFriEscapeCopyAttribute, mscExampleFourIndicesComponentName=mscExampleFourIndicesComponentName, mscExampleExtendedProvFreeExtendedReplicatedIndex=mscExampleExtendedProvFreeExtendedReplicatedIndex, mscFriOperationalFreeSimpleComponent=mscFriOperationalFreeSimpleComponent, mscExampleEnumIndicesThreeIndex=mscExampleEnumIndicesThreeIndex, mscFriDynamic=mscFriDynamic, mscFriProvisionalStructSimpleBcd=mscFriProvisionalStructSimpleBcd, mscExampleExtendedProvFreeExtendedReplicatedValue=mscExampleExtendedProvFreeExtendedReplicatedValue, mscExampleObjectIdProvFreeObjIdListTable=mscExampleObjectIdProvFreeObjIdListTable, mscExampleWildBcdProvStructWildBcdArrayTable=mscExampleWildBcdProvStructWildBcdArrayTable, mscExampleEnumIndicesTwoIndex=mscExampleEnumIndicesTwoIndex, mscExampleStringOperFreeStrListValue=mscExampleStringOperFreeStrListValue, mscExampleOperDecimalSubCreatedRowStatus=mscExampleOperDecimalSubCreatedRowStatus, mscExampleSequenceIndicesRowStatus=mscExampleSequenceIndicesRowStatus, mscExampleDecimalPsIntArrayTable=mscExampleDecimalPsIntArrayTable, mscExampleFixedPtRowStatusTable=mscExampleFixedPtRowStatusTable, mscExampleHexProvStructHexArrayColumnIndex=mscExampleHexProvStructHexArrayColumnIndex, mscExampleStringOperFreeStrReplicatedValue=mscExampleStringOperFreeStrReplicatedValue, mscExampleBcdIndex=mscExampleBcdIndex, mscExampleEnumOperFreeEnumSet=mscExampleEnumOperFreeEnumSet, mscExampleWildBcdComponentName=mscExampleWildBcdComponentName, mscExampleWildBcd=mscExampleWildBcd, mscExampleBcdProvFreeBcdVector1Entry=mscExampleBcdProvFreeBcdVector1Entry, mscExampleBcdProvStructBcdArrayTable=mscExampleBcdProvStructBcdArrayTable, mscExampleBcdOperStructBcdVectorValue=mscExampleBcdOperStructBcdVectorValue, mscExampleStringProvFreeStrList1Value=mscExampleStringProvFreeStrList1Value, mscExampleExtendedProvStructExtendedArrayRowIndex=mscExampleExtendedProvStructExtendedArrayRowIndex, mscFriDynOpInitialProvisionedEntry=mscFriDynOpInitialProvisionedEntry, mscExampleIpAddressStorageType=mscExampleIpAddressStorageType, mscExampleSignedStorageType=mscExampleSignedStorageType, mscExampleHexProvStructHexVectorIndex=mscExampleHexProvStructHexVectorIndex, mscExampleStringProvFreeStrVector1Index=mscExampleStringProvFreeStrVector1Index, mscExampleEnumOperStructEnumArrayMonthIndex=mscExampleEnumOperStructEnumArrayMonthIndex, mscFriOperationalFreeSimpleAscii=mscFriOperationalFreeSimpleAscii, mscExampleExtendedOperFreeExtendedListEntry=mscExampleExtendedOperFreeExtendedListEntry, mscExampleEnumProvFreeEnumVectorIndex=mscExampleEnumProvFreeEnumVectorIndex, mscExampleMiscellaneousProvFreeLongReplicatedTable=mscExampleMiscellaneousProvFreeLongReplicatedTable, mscExampleSignedProvFreeSignedVectorTable=mscExampleSignedProvFreeSignedVectorTable, mscExampleOperEnumSubCreatedTable=mscExampleOperEnumSubCreatedTable, mscExampleSequenceStorageType=mscExampleSequenceStorageType, mscExampleSignedOperFreeSignedVectorEntry=mscExampleSignedOperFreeSignedVectorEntry, mscExampleNsap=mscExampleNsap, mscExampleFixedPtOperFreeFixedPtVectorIndex=mscExampleFixedPtOperFreeFixedPtVectorIndex, mscExampleEnumOperStructEnumArrayTable=mscExampleEnumOperStructEnumArrayTable, mscExampleHexProvFreeHexArray1Entry=mscExampleHexProvFreeHexArray1Entry, mscFriDynOpDynOpJrIndex=mscFriDynOpDynOpJrIndex, mscExampleBcdIndicesOneIndex=mscExampleBcdIndicesOneIndex, mscExampleDecimalOperationalTable=mscExampleDecimalOperationalTable, mscExampleFixedPtProvFreeFixedPtArrayColumnIndex=mscExampleFixedPtProvFreeFixedPtArrayColumnIndex, mscExampleEnum=mscExampleEnum, mscExampleDashedProvFreeDashedListRowStatus=mscExampleDashedProvFreeDashedListRowStatus, mscFriEvent=mscFriEvent, mscExampleDecimalProvFreeInteger2=mscExampleDecimalProvFreeInteger2, mscExampleDecimalOfIntArrayEntry=mscExampleDecimalOfIntArrayEntry, mscExampleSignedOperFreeSignedVectorIndex=mscExampleSignedOperFreeSignedVectorIndex, mscExampleHexStrIndicesProvisionedEntry=mscExampleHexStrIndicesProvisionedEntry, mscExampleDecimalIndices=mscExampleDecimalIndices, mscExampleEnumIndices=mscExampleEnumIndices, mscExampleEnumOperFreeEnumListValue=mscExampleEnumOperFreeEnumListValue, mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus=mscExampleFixedPtProvFreeFixedPtReplicatedRowStatus, mscExampleIpAddressProvFreeIpAddressArrayValue=mscExampleIpAddressProvFreeIpAddressArrayValue, mscExampleEnumOperFreeEnumArrayDayIndex=mscExampleEnumOperFreeEnumArrayDayIndex, mscExampleSignedProvFreeSignedVector1Value=mscExampleSignedProvFreeSignedVector1Value, mscExampleWildBcdProvFreeWildBcdListRowStatus=mscExampleWildBcdProvFreeWildBcdListRowStatus, mscExampleIpAddressOperStructIpAddressVectorTable=mscExampleIpAddressOperStructIpAddressVectorTable, casTestCapabilitiesCA02A=casTestCapabilitiesCA02A, mscExampleDecimalOperFreeInteger=mscExampleDecimalOperFreeInteger, mscExampleExtendedProvFreeExtendedVectorEntry=mscExampleExtendedProvFreeExtendedVectorEntry, mscExampleHexOsHexVectorIndex=mscExampleHexOsHexVectorIndex, mscFriProvisionalFreeSimpleComponent=mscFriProvisionalFreeSimpleComponent, mscExampleStringProvStructStrArrayValue=mscExampleStringProvStructStrArrayValue, mscExampleBcdProvisionalEntry=mscExampleBcdProvisionalEntry, mscExampleExtendedStorageType=mscExampleExtendedStorageType, mscExampleHexOperFreeHex=mscExampleHexOperFreeHex, mscExampleEnumOperFreeEnumReplicatedTable=mscExampleEnumOperFreeEnumReplicatedTable, mscExampleSequenceRowStatusTable=mscExampleSequenceRowStatusTable, mscExampleFixedPtProvFreeFixedPtArrayTable=mscExampleFixedPtProvFreeFixedPtArrayTable, mscExampleIpAddressProvFreeIpAddressArray1Table=mscExampleIpAddressProvFreeIpAddressArray1Table, mscExampleEnumProvFreeEnumList1Value=mscExampleEnumProvFreeEnumList1Value, mscExampleObjectIdIndex=mscExampleObjectIdIndex, mscExampleHexProvStructHex=mscExampleHexProvStructHex, mscExampleThreeIndicesOneIndex=mscExampleThreeIndicesOneIndex, mscExampleSignedRowStatus=mscExampleSignedRowStatus, mscExampleThreeIndicesProvAttribute=mscExampleThreeIndicesProvAttribute, mscExampleFixedPtProvStructFixedPtVectorIndex=mscExampleFixedPtProvStructFixedPtVectorIndex, mscExampleDashedProvisionalEntry=mscExampleDashedProvisionalEntry, mscFriOperationalStructSimpleHex=mscFriOperationalStructSimpleHex, mscExampleOperFixedPtSubcomponentsCreatedRowStatus=mscExampleOperFixedPtSubcomponentsCreatedRowStatus, mscExampleStringProvFreeStrVector1Table=mscExampleStringProvFreeStrVector1Table, mscFriOperationalStructSimpleAscii=mscFriOperationalStructSimpleAscii, mscExampleProvDecimalSubCreatedValue=mscExampleProvDecimalSubCreatedValue, mscExampleDecimalIndicesProvAttribute=mscExampleDecimalIndicesProvAttribute, mscExampleFixedPtOperStructFixedPtVectorEntry=mscExampleFixedPtOperStructFixedPtVectorEntry, mscExampleStringProvFreeStrArray1ColumnIndex=mscExampleStringProvFreeStrArray1ColumnIndex, mscFriProvisionalStructSimpleSequence=mscFriProvisionalStructSimpleSequence, mscExampleEnumIndicesProvAttribute=mscExampleEnumIndicesProvAttribute, mscExampleIpAddressProvStructIpAddressArrayColumnIndex=mscExampleIpAddressProvStructIpAddressArrayColumnIndex, mscExampleEnumProvFreeEnumArrayValue=mscExampleEnumProvFreeEnumArrayValue, mscFriDynamicOperationalEntry=mscFriDynamicOperationalEntry, mscExampleEnumIndicesRowStatusEntry=mscExampleEnumIndicesRowStatusEntry, mscExampleHexStorageType=mscExampleHexStorageType, mscExampleEnumIndicesOneIndex=mscExampleEnumIndicesOneIndex, mscExampleProvDecimalSubCreatedTable=mscExampleProvDecimalSubCreatedTable, mscExampleEnumProvFreeEnumVectorValue=mscExampleEnumProvFreeEnumVectorValue, mscExampleDecimalPfIntArray1Value=mscExampleDecimalPfIntArray1Value, mscFriRegistered=mscFriRegistered, mscExampleHexRowStatusEntry=mscExampleHexRowStatusEntry, mscExampleIpAddressProvisionalTable=mscExampleIpAddressProvisionalTable, mscExampleStringProvFreeStrListValue=mscExampleStringProvFreeStrListValue, mscExampleIpAddressOperStructIpAddressArrayRowIndex=mscExampleIpAddressOperStructIpAddressArrayRowIndex, mscExampleExtendedProvStructExtendedArrayTable=mscExampleExtendedProvStructExtendedArrayTable, mscExampleFixedPtProvStructFixedPt=mscExampleFixedPtProvStructFixedPt, mscExampleEnumOperationalEntry=mscExampleEnumOperationalEntry, mscExampleWildBcdProvStructWildBcd=mscExampleWildBcdProvStructWildBcd, mscExampleStringOperFreeStrReplicatedRowStatus=mscExampleStringOperFreeStrReplicatedRowStatus, mscFriPfListAsciiEntry=mscFriPfListAsciiEntry, mscExampleBcdOperFreeBcdListRowStatus=mscExampleBcdOperFreeBcdListRowStatus, mscFriDynOpOperationalTable=mscFriDynOpOperationalTable, mscExampleObjectIdProvFreeObjIdReplicatedEntry=mscExampleObjectIdProvFreeObjIdReplicatedEntry, mscExampleFixedPtProvFreeFixedPtVectorValue=mscExampleFixedPtProvFreeFixedPtVectorValue) mibBuilder.exportSymbols('Nortel-MsCarrier-MscPassport-CasTestMIB', mscFriProceduralStatus=mscFriProceduralStatus, mscFriProvisionalFreeSimpleBcd=mscFriProvisionalFreeSimpleBcd, mscExampleSignedOperFreeSignedArrayTable=mscExampleSignedOperFreeSignedArrayTable, mscExampleDecimalIndicesRowStatusTable=mscExampleDecimalIndicesRowStatusTable, mscExampleSignedOperFreeSignedListRowStatus=mscExampleSignedOperFreeSignedListRowStatus, mscFriOperationalStructSetEnumeration=mscFriOperationalStructSetEnumeration, mscExampleSignedOperFreeSignedArrayValue=mscExampleSignedOperFreeSignedArrayValue, mscExampleWildBcdProvFreeWildBcdListTable=mscExampleWildBcdProvFreeWildBcdListTable, casTestGroup=casTestGroup, mscExampleSignedOperStructSignedVectorIndex=mscExampleSignedOperStructSignedVectorIndex, mscExampleBcdProvFreeBcdReplicated1Value=mscExampleBcdProvFreeBcdReplicated1Value, mscExampleDecimalOsIntVectorIndex=mscExampleDecimalOsIntVectorIndex, mscExampleHexOfHexVectorTable=mscExampleHexOfHexVectorTable, mscFriOperationalStructSimpleDashed=mscFriOperationalStructSimpleDashed, mscFriDnaRowStatusTable=mscFriDnaRowStatusTable, mscExampleIpAddressOperStructIpAddressArrayValue=mscExampleIpAddressOperStructIpAddressArrayValue, mscFriOperationalFreeSimpleDashed=mscFriOperationalFreeSimpleDashed, mscExampleSignedProvFreeSignedVectorEntry=mscExampleSignedProvFreeSignedVectorEntry, mscExampleOneIndexProvAttribute=mscExampleOneIndexProvAttribute, mscExampleSequenceOperationalTable=mscExampleSequenceOperationalTable, mscFriEscapeDefaultsGroup=mscFriEscapeDefaultsGroup, mscExampleBcdProvFreeBcdVectorTable=mscExampleBcdProvFreeBcdVectorTable, mscExampleSignedProvFreeSigned1=mscExampleSignedProvFreeSigned1, mscExampleDecimalPfIntReplicatedValue=mscExampleDecimalPfIntReplicatedValue, mscExampleBcdProvFreeBcdReplicatedEntry=mscExampleBcdProvFreeBcdReplicatedEntry, mscExampleIpAddressOperFreeIpAddressArrayEntry=mscExampleIpAddressOperFreeIpAddressArrayEntry, mscFriPfListFixedValue=mscFriPfListFixedValue, mscExampleNsapRowStatusEntry=mscExampleNsapRowStatusEntry, mscExampleIpAddressProvFreeIpAddressArrayColumnIndex=mscExampleIpAddressProvFreeIpAddressArrayColumnIndex, mscExampleDashedIndicesRowStatusEntry=mscExampleDashedIndicesRowStatusEntry, mscExampleWildBcdProvFreeWildBcdListEntry=mscExampleWildBcdProvFreeWildBcdListEntry, mscExampleSignedProvStructSigned=mscExampleSignedProvStructSigned, mscExampleDecimalPfIntListTable=mscExampleDecimalPfIntListTable, mscExampleIpAddressOperFreeIpAddressArrayTable=mscExampleIpAddressOperFreeIpAddressArrayTable, mscExampleHexStrIndicesTwoIndex=mscExampleHexStrIndicesTwoIndex, mscExampleExtendedProvFreeExtendedListRowStatus=mscExampleExtendedProvFreeExtendedListRowStatus, mscExampleBcdProvFreeBcdReplicatedIndex=mscExampleBcdProvFreeBcdReplicatedIndex, mscExampleBcdOperFreeBcdArrayRowIndex=mscExampleBcdOperFreeBcdArrayRowIndex, mscExampleOperSignedSubCreatedValue=mscExampleOperSignedSubCreatedValue, mscExampleExtendedProvisionalEntry=mscExampleExtendedProvisionalEntry, mscExampleIpAddressOperFreeIpAddressListEntry=mscExampleIpAddressOperFreeIpAddressListEntry, mscExampleIpAddrIndicesTwoIndex=mscExampleIpAddrIndicesTwoIndex, mscExampleEnumComponentName=mscExampleEnumComponentName, mscFriProvisionalStructSimpleHex=mscFriProvisionalStructSimpleHex, mscExampleWildBcdOperStructWildBcdArrayTable=mscExampleWildBcdOperStructWildBcdArrayTable, mscExampleExtendedOperFreeExtended=mscExampleExtendedOperFreeExtended, mscExampleBcdProvStructBcdArrayValue=mscExampleBcdProvStructBcdArrayValue, mscFriEventComponentName=mscFriEventComponentName, mscExampleHexIndicesStorageType=mscExampleHexIndicesStorageType, mscExampleSignedOperStructSignedArrayTable=mscExampleSignedOperStructSignedArrayTable, mscFriOperationalFreeSimpleSequence=mscFriOperationalFreeSimpleSequence, mscFriProvisionalStructSimpleDashed=mscFriProvisionalStructSimpleDashed, mscExampleExtendedProvFreeExtendedVectorTable=mscExampleExtendedProvFreeExtendedVectorTable, mscFriProvisionalFreeSimpleSequence=mscFriProvisionalFreeSimpleSequence, mscExampleSignedProvFreeSignedArray1ColumnIndex=mscExampleSignedProvFreeSignedArray1ColumnIndex, mscExampleDecimalPfIntVector1Table=mscExampleDecimalPfIntVector1Table, mscExampleMiscellaneousProvFreeTimeList2Entry=mscExampleMiscellaneousProvFreeTimeList2Entry, mscExampleSignedProvFreeSignedReplicatedValue=mscExampleSignedProvFreeSignedReplicatedValue, mscExampleIpAddressOperFreeIpAddressArrayRowIndex=mscExampleIpAddressOperFreeIpAddressArrayRowIndex, mscExampleMiscellaneousProvFreeTimeList2Value=mscExampleMiscellaneousProvFreeTimeList2Value, mscExampleDecimalPfIntReplicated1Entry=mscExampleDecimalPfIntReplicated1Entry, mscFriProvisionalFreeSimpleFixed=mscFriProvisionalFreeSimpleFixed, mscExampleDecimalRowStatusEntry=mscExampleDecimalRowStatusEntry, mscExampleHexOfHexReplicatedIndex=mscExampleHexOfHexReplicatedIndex, mscExampleDashedIndex=mscExampleDashedIndex, mscFriDynamicRowStatusEntry=mscFriDynamicRowStatusEntry, mscExampleFixedPtOperFreeFixedPtArrayTable=mscExampleFixedPtOperFreeFixedPtArrayTable, mscExampleOperEnumSubCreatedValue=mscExampleOperEnumSubCreatedValue, mscRegisteredAttribute=mscRegisteredAttribute, mscExampleSignedProvFreeSignedReplicatedRowStatus=mscExampleSignedProvFreeSignedReplicatedRowStatus, mscExampleHexProvStructHexVectorValue=mscExampleHexProvStructHexVectorValue, mscExampleHexProvFreeHexList1Value=mscExampleHexProvFreeHexList1Value, mscFriOperationalTable=mscFriOperationalTable, mscExampleSignedProvStructSignedArrayValue=mscExampleSignedProvStructSignedArrayValue, mscExampleFixedPtOperFreeFixedPtArrayEntry=mscExampleFixedPtOperFreeFixedPtArrayEntry, mscExampleBcdProvisionalTable=mscExampleBcdProvisionalTable, mscExampleDashedProvStructDashedArrayEntry=mscExampleDashedProvStructDashedArrayEntry, mscExampleDecimalProvFreeIntSet=mscExampleDecimalProvFreeIntSet, mscExampleMiscellaneous=mscExampleMiscellaneous, mscExampleDecimalOperFreeIntSet=mscExampleDecimalOperFreeIntSet, mscExampleMiscellaneousOperFreeLongListTable=mscExampleMiscellaneousOperFreeLongListTable, mscExampleThreeIndicesStorageType=mscExampleThreeIndicesStorageType, mscExampleHexProvFreeHexArray2ColumnIndex=mscExampleHexProvFreeHexArray2ColumnIndex, mscExampleSequenceOperFreeSequenceReplicatedIndex=mscExampleSequenceOperFreeSequenceReplicatedIndex, mscExampleObjIdIndicesStorageType=mscExampleObjIdIndicesStorageType, mscExampleBcdProvFreeBcdReplicated1RowStatus=mscExampleBcdProvFreeBcdReplicated1RowStatus, mscExampleEnumOperFreeEnumReplicatedEntry=mscExampleEnumOperFreeEnumReplicatedEntry, mscExampleSignedOperFreeSignedArrayEntry=mscExampleSignedOperFreeSignedArrayEntry, mscExampleIpAddressProvFreeIpAddressArrayRowIndex=mscExampleIpAddressProvFreeIpAddressArrayRowIndex, mscExampleBcdProvFreeBcdVectorIndex=mscExampleBcdProvFreeBcdVectorIndex, mscExampleMiscellaneousProvFreeTimeListRowStatus=mscExampleMiscellaneousProvFreeTimeListRowStatus, mscExampleExtendedOperFreeExtendedVectorTable=mscExampleExtendedOperFreeExtendedVectorTable, mscExampleEnumOperStructEnumVectorEntry=mscExampleEnumOperStructEnumVectorEntry, mscExampleRequiredIndicesProvAttribute=mscExampleRequiredIndicesProvAttribute, mscExampleDecimalRowStatus=mscExampleDecimalRowStatus, mscExampleBcdOperFreeBcdVectorIndex=mscExampleBcdOperFreeBcdVectorIndex, mscExampleDashedOperFreeDashed=mscExampleDashedOperFreeDashed, mscExampleSignedOperFreeSignedReplicatedRowStatus=mscExampleSignedOperFreeSignedReplicatedRowStatus, mscExampleDecimalOfIntListEntry=mscExampleDecimalOfIntListEntry, mscExampleHexOsHexArrayTable=mscExampleHexOsHexArrayTable, mscExampleExtendedProvStructExtendedArrayEntry=mscExampleExtendedProvStructExtendedArrayEntry, mscExampleStringOperFreeStrReplicatedEntry=mscExampleStringOperFreeStrReplicatedEntry, mscExampleSignedProvFreeSignedReplicatedIndex=mscExampleSignedProvFreeSignedReplicatedIndex, mscExampleEnumProvFreeEnumVector1Index=mscExampleEnumProvFreeEnumVector1Index, mscFriDynOpRowStatus=mscFriDynOpRowStatus, mscExampleOperationalEntry=mscExampleOperationalEntry, mscExampleSigned=mscExampleSigned, mscExampleHexIndicesComponentName=mscExampleHexIndicesComponentName, mscExampleMiscellaneousProvFreeTimeDateOnly=mscExampleMiscellaneousProvFreeTimeDateOnly, mscExampleIpAddressProvFreeIpAddressArrayEntry=mscExampleIpAddressProvFreeIpAddressArrayEntry, mscExampleSignedProvFreeSignedArrayValue=mscExampleSignedProvFreeSignedArrayValue, mscExampleSignedProvFreeSignedReplicatedEntry=mscExampleSignedProvFreeSignedReplicatedEntry, mscExampleWildBcdProvisionalEntry=mscExampleWildBcdProvisionalEntry, mscExampleIpAddressProvFreeIpAddressList1RowStatus=mscExampleIpAddressProvFreeIpAddressList1RowStatus, mscExampleMiscellaneousOperFreeLongListValue=mscExampleMiscellaneousOperFreeLongListValue, mscExampleDecimalIndex=mscExampleDecimalIndex, mscExampleStringProvFreeStrVectorTable=mscExampleStringProvFreeStrVectorTable, mscExampleEnumProvFreeEnumSet1=mscExampleEnumProvFreeEnumSet1, mscExampleBcdOperStructBcdArrayEntry=mscExampleBcdOperStructBcdArrayEntry, mscExampleDecimalPfIntVectorIndex=mscExampleDecimalPfIntVectorIndex, mscExampleFixedPtOperFreeFixedPtListEntry=mscExampleFixedPtOperFreeFixedPtListEntry, mscExampleFixedPtOperFreeFixedPtReplicatedTable=mscExampleFixedPtOperFreeFixedPtReplicatedTable, mscExampleEnumOperFreeEnumVectorIndex=mscExampleEnumOperFreeEnumVectorIndex, mscExampleFourIndicesThreeIndex=mscExampleFourIndicesThreeIndex, mscExampleHexProvFreeHexList1Entry=mscExampleHexProvFreeHexList1Entry, mscExampleDecimalPsIntArrayEntry=mscExampleDecimalPsIntArrayEntry, mscExampleTwoIndicesComponentName=mscExampleTwoIndicesComponentName, mscExampleEnumIndicesRowStatus=mscExampleEnumIndicesRowStatus, mscExampleFixedPtStorageType=mscExampleFixedPtStorageType, mscExampleIpAddressOperationalTable=mscExampleIpAddressOperationalTable, mscFriPfListSignedRowStatus=mscFriPfListSignedRowStatus, mscExampleBcdProvFreeBcdList1RowStatus=mscExampleBcdProvFreeBcdList1RowStatus, mscExampleMiscellaneousProvisionalEntry=mscExampleMiscellaneousProvisionalEntry, mscExampleFixedPtOperFreeFixedPtArrayRowIndex=mscExampleFixedPtOperFreeFixedPtArrayRowIndex, mscExampleHexOperationalEntry=mscExampleHexOperationalEntry, mscExampleIpAddressProvFreeIpAddressVector1Index=mscExampleIpAddressProvFreeIpAddressVector1Index, mscFriProvisionalFreeSimpleObjId=mscFriProvisionalFreeSimpleObjId, mscExampleStringOperStructStrVectorIndex=mscExampleStringOperStructStrVectorIndex, mscExampleStringProvStructStrArrayTable=mscExampleStringProvStructStrArrayTable, mscExampleOneIndexRowStatus=mscExampleOneIndexRowStatus, mscExampleWildBcdProvFreeWildBcdArrayValue=mscExampleWildBcdProvFreeWildBcdArrayValue, mscExampleEnumProvFreeEnum1=mscExampleEnumProvFreeEnum1, mscExampleSignedOperFreeSignedListValue=mscExampleSignedOperFreeSignedListValue, mscExampleSignedOperFreeSignedReplicatedIndex=mscExampleSignedOperFreeSignedReplicatedIndex, mscExampleObjectIdProvisionalTable=mscExampleObjectIdProvisionalTable, mscExampleDashedOsDashedVectorTable=mscExampleDashedOsDashedVectorTable, mscExampleMiscellaneousProvFreeTimeTimeOnly1=mscExampleMiscellaneousProvFreeTimeTimeOnly1, mscFriDynOpOptionalIndex=mscFriDynOpOptionalIndex, mscExampleWildBcdOperStructWildBcdVectorValue=mscExampleWildBcdOperStructWildBcdVectorValue, mscExampleSignedProvFreeSignedVector1Entry=mscExampleSignedProvFreeSignedVector1Entry, mscExampleObjIdIndicesRowStatus=mscExampleObjIdIndicesRowStatus, mscFriDynOpDynamicComponentName=mscFriDynOpDynamicComponentName, mscExampleIpAddressOperFreeIpAddressVectorTable=mscExampleIpAddressOperFreeIpAddressVectorTable, mscRegisteredStorageType=mscRegisteredStorageType, mscExampleHexProvFreeHexVector2Value=mscExampleHexProvFreeHexVector2Value, mscExampleSignedOperFreeSignedArrayRowIndex=mscExampleSignedOperFreeSignedArrayRowIndex, mscExampleBcdProvFreeBcdReplicatedValue=mscExampleBcdProvFreeBcdReplicatedValue, mscExampleExtendedOperStructExtendedVectorValue=mscExampleExtendedOperStructExtendedVectorValue, mscExampleStringProvFreeStrArrayRowIndex=mscExampleStringProvFreeStrArrayRowIndex, mscFriRegisteredDataTable=mscFriRegisteredDataTable, mscExampleDashedProvStructDashedVectorValue=mscExampleDashedProvStructDashedVectorValue, mscFriDnaRowStatus=mscFriDnaRowStatus, mscExampleFixedPtProvStructFixedPtVectorValue=mscExampleFixedPtProvStructFixedPtVectorValue, mscExampleStringOperFreeStrArrayEntry=mscExampleStringOperFreeStrArrayEntry, mscExampleWildBcdOperFreeWildBcdListEntry=mscExampleWildBcdOperFreeWildBcdListEntry, mscExampleBcdOperFreeBcdReplicatedEntry=mscExampleBcdOperFreeBcdReplicatedEntry, mscExampleHexProvFreeHexReplicated1RowStatus=mscExampleHexProvFreeHexReplicated1RowStatus, mscExampleStringOperationalTable=mscExampleStringOperationalTable, mscExampleStringOperFreeAsciiOnly=mscExampleStringOperFreeAsciiOnly, mscExampleSequenceOperFreeSequenceListEntry=mscExampleSequenceOperFreeSequenceListEntry, mscExampleEnumOperFreeEnumArrayMonthIndex=mscExampleEnumOperFreeEnumArrayMonthIndex, mscExampleDecimalPfIntArrayRowIndex=mscExampleDecimalPfIntArrayRowIndex, mscExampleMiscellaneousRowStatus=mscExampleMiscellaneousRowStatus, mscExampleExtendedProvFreeExtendedVectorValue=mscExampleExtendedProvFreeExtendedVectorValue, mscExampleObjectIdRowStatus=mscExampleObjectIdRowStatus, mscExampleSequenceProvFreeSequenceListTable=mscExampleSequenceProvFreeSequenceListTable, mscExampleWildBcdOperFreeWildBcdListValue=mscExampleWildBcdOperFreeWildBcdListValue, mscExampleExtendedProvEnumSub=mscExampleExtendedProvEnumSub, mscExampleEnumProvFreeEnumVector1Entry=mscExampleEnumProvFreeEnumVector1Entry, mscExampleIpAddressOperStructIpAddressArrayTable=mscExampleIpAddressOperStructIpAddressArrayTable, mscExampleWildBcdProvStructWildBcdArrayEntry=mscExampleWildBcdProvStructWildBcdArrayEntry, mscExampleFixedPtOperStructFixedPtArrayColumnIndex=mscExampleFixedPtOperStructFixedPtArrayColumnIndex, mscExampleAsciiIndicesRowStatusTable=mscExampleAsciiIndicesRowStatusTable, mscFriDynamicRowStatusTable=mscFriDynamicRowStatusTable, mscExampleEnumProvFreeEnumReplicatedRowStatus=mscExampleEnumProvFreeEnumReplicatedRowStatus, mscExampleProvFixedPtSubCreatedTable=mscExampleProvFixedPtSubCreatedTable, mscExampleFixedPtOperFreeFixedPtListValue=mscExampleFixedPtOperFreeFixedPtListValue, mscExampleBcdIndicesRowStatusTable=mscExampleBcdIndicesRowStatusTable, mscExampleFixedPtOperFreeFixedPtReplicatedIndex=mscExampleFixedPtOperFreeFixedPtReplicatedIndex, mscExampleExtendedOperFreeExtendedVectorValue=mscExampleExtendedOperFreeExtendedVectorValue, mscExampleEnumProvFreeEnumArrayDayIndex=mscExampleEnumProvFreeEnumArrayDayIndex, mscExampleDashedIndicesProvisionedEntry=mscExampleDashedIndicesProvisionedEntry, mscExampleSequenceRowStatus=mscExampleSequenceRowStatus, mscExampleProvEnumSubCreatedEntry=mscExampleProvEnumSubCreatedEntry, mscExampleBcdRowStatusEntry=mscExampleBcdRowStatusEntry, mscExampleFixedPtOperStructFixedPtVectorTable=mscExampleFixedPtOperStructFixedPtVectorTable, mscExampleDecimalIndicesRowStatusEntry=mscExampleDecimalIndicesRowStatusEntry, mscExampleBcdRowStatus=mscExampleBcdRowStatus, mscFriOperationalFreeSimpleHex=mscFriOperationalFreeSimpleHex, mscExampleWildBcdProvFreeWildBcdReplicatedValue=mscExampleWildBcdProvFreeWildBcdReplicatedValue, mscExampleObjectIdProvFreeObjIdReplicatedTable=mscExampleObjectIdProvFreeObjIdReplicatedTable, mscFriDynamicOperationalTable=mscFriDynamicOperationalTable, mscExampleMiscellaneousProvFreeLongReplicatedRowStatus=mscExampleMiscellaneousProvFreeLongReplicatedRowStatus, mscExampleExtendedOperStructExtendedVectorTable=mscExampleExtendedOperStructExtendedVectorTable, mscExampleFixedPtProvFreeFixedPt=mscExampleFixedPtProvFreeFixedPt, mscExampleHexOfHexReplicatedValue=mscExampleHexOfHexReplicatedValue, mscExampleWildBcdRowStatusEntry=mscExampleWildBcdRowStatusEntry, mscExampleWildBcdOperFreeWildBcdArrayValue=mscExampleWildBcdOperFreeWildBcdArrayValue, mscExampleExtendedProvFreeExtendedArrayEntry=mscExampleExtendedProvFreeExtendedArrayEntry, mscExampleThreeIndicesComponentName=mscExampleThreeIndicesComponentName, mscFriProvisionalStructSimpleUnsigned=mscFriProvisionalStructSimpleUnsigned, mscFriDynamicRowStatus=mscFriDynamicRowStatus, mscExampleMiscellaneousOperFreeTimeListRowStatus=mscExampleMiscellaneousOperFreeTimeListRowStatus, mscExampleMiscellaneousProvFreeTimeDateTimeMinute=mscExampleMiscellaneousProvFreeTimeDateTimeMinute, mscFriRegisteredRowStatus=mscFriRegisteredRowStatus, mscFriStateTable=mscFriStateTable, mscExampleEnumOperFreeEnumReplicatedValue=mscExampleEnumOperFreeEnumReplicatedValue, mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus=mscExampleFixedPtOperFreeFixedPtReplicatedRowStatus, mscExampleEnumProvFreeEnumList1Entry=mscExampleEnumProvFreeEnumList1Entry, mscExampleSignedRowStatusTable=mscExampleSignedRowStatusTable, mscFriDynOpInitial=mscFriDynOpInitial, mscExampleIpAddressProvFreeIpAddressArray1RowIndex=mscExampleIpAddressProvFreeIpAddressArray1RowIndex, mscExampleDashedOsDashedArrayTable=mscExampleDashedOsDashedArrayTable, mscExampleObjectIdOperFreeObjIdReplicatedEntry=mscExampleObjectIdOperFreeObjIdReplicatedEntry, mscExampleDecimalPfIntListEntry=mscExampleDecimalPfIntListEntry, mscExampleHexIndicesProvisionedTable=mscExampleHexIndicesProvisionedTable, mscExampleDecimalOsIntArrayColumnIndex=mscExampleDecimalOsIntArrayColumnIndex, mscExampleHexProvFreeHex=mscExampleHexProvFreeHex, mscExampleFixedPtProvFreeFixedPtArrayRowIndex=mscExampleFixedPtProvFreeFixedPtArrayRowIndex, mscExampleRowStatusEntry=mscExampleRowStatusEntry, mscExampleMiscellaneousProvFreeTimeReplicatedTable=mscExampleMiscellaneousProvFreeTimeReplicatedTable, mscExampleHexOfHexArrayEntry=mscExampleHexOfHexArrayEntry, mscExampleObjectId=mscExampleObjectId, mscExampleExtendedOperFreeExtendedListTable=mscExampleExtendedOperFreeExtendedListTable, mscExampleMiscellaneousProvFreeTimeReplicatedEntry=mscExampleMiscellaneousProvFreeTimeReplicatedEntry, mscExampleSignedProvFreeSignedReplicatedTable=mscExampleSignedProvFreeSignedReplicatedTable, mscExampleSequenceProvFreeSequence=mscExampleSequenceProvFreeSequence, mscExampleIpAddressOperFreeIpAddressArrayColumnIndex=mscExampleIpAddressOperFreeIpAddressArrayColumnIndex, mscExampleSignedProvFreeSignedListEntry=mscExampleSignedProvFreeSignedListEntry, mscExampleSignedProvSignedSub=mscExampleSignedProvSignedSub, mscExampleSignedOperFreeSignedVectorTable=mscExampleSignedOperFreeSignedVectorTable, mscExampleRequiredIndicesComponentName=mscExampleRequiredIndicesComponentName, mscFriDynOpOptionalComponentName=mscFriDynOpOptionalComponentName, mscExampleDecimalProvFreeIntSet1=mscExampleDecimalProvFreeIntSet1, mscExampleObjIdIndicesComponentName=mscExampleObjIdIndicesComponentName, mscExampleSignedProvFreeSignedVector1Index=mscExampleSignedProvFreeSignedVector1Index, mscFriDynOpDynamicIndex=mscFriDynOpDynamicIndex, mscExampleDecimalPsIntVectorTable=mscExampleDecimalPsIntVectorTable, mscExampleFixedPtProvFreeFixedPtVectorTable=mscExampleFixedPtProvFreeFixedPtVectorTable, mscExampleThreeIndices=mscExampleThreeIndices, mscExampleEnumProvFreeEnumVector1Table=mscExampleEnumProvFreeEnumVector1Table, mscExampleIpAddrIndicesThreeIndex=mscExampleIpAddrIndicesThreeIndex, mscFriDynOpInitialComponentName=mscFriDynOpInitialComponentName, mscExampleBcdProvFreeBcdListRowStatus=mscExampleBcdProvFreeBcdListRowStatus) mibBuilder.exportSymbols('Nortel-MsCarrier-MscPassport-CasTestMIB', mscExampleDecimalProvisionalEntry=mscExampleDecimalProvisionalEntry, mscExampleDashedOfDashedArrayValue=mscExampleDashedOfDashedArrayValue, mscExampleStringProvFreeStrList1RowStatus=mscExampleStringProvFreeStrList1RowStatus, mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus=mscExampleIpAddressOperFreeIpAddressReplicatedRowStatus, mscExampleFixedPtOperFreeFixedPtArrayValue=mscExampleFixedPtOperFreeFixedPtArrayValue, mscExampleSequenceIndicesThreeIndex=mscExampleSequenceIndicesThreeIndex, mscExampleMiscellaneousProvFreeTimeList1Table=mscExampleMiscellaneousProvFreeTimeList1Table, mscExampleWildBcdProvFreeWildBcdListValue=mscExampleWildBcdProvFreeWildBcdListValue, mscExampleThreeIndicesRowStatusTable=mscExampleThreeIndicesRowStatusTable, mscExampleExtendedOperStructExtendedArrayTable=mscExampleExtendedOperStructExtendedArrayTable, mscExampleEnumProvFreeEnumArray1Entry=mscExampleEnumProvFreeEnumArray1Entry, mscExampleExtendedProvStructExtendedArrayColumnIndex=mscExampleExtendedProvStructExtendedArrayColumnIndex, mscExampleSequenceIndicesRowStatusTable=mscExampleSequenceIndicesRowStatusTable, mscExampleSequenceOperFreeSequenceListValue=mscExampleSequenceOperFreeSequenceListValue, mscExampleDashedOfDashedVectorEntry=mscExampleDashedOfDashedVectorEntry, mscExampleBcdOperStructBcdArrayTable=mscExampleBcdOperStructBcdArrayTable, mscFriRegisteredRowStatusEntry=mscFriRegisteredRowStatusEntry, mscExampleDecimalOsIntVectorValue=mscExampleDecimalOsIntVectorValue, mscExampleFixedPtProvFreeFixedPtReplicatedIndex=mscExampleFixedPtProvFreeFixedPtReplicatedIndex, mscExampleFixedPtComponentName=mscExampleFixedPtComponentName, mscExampleSequenceIndex=mscExampleSequenceIndex, mscExampleDecimalIndicesStorageType=mscExampleDecimalIndicesStorageType, mscExampleExtendedProvStructExtendedVectorIndex=mscExampleExtendedProvStructExtendedVectorIndex, mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus=mscExampleMiscellaneousProvFreeTimeReplicatedRowStatus, mscExampleSignedProvStructSignedVectorTable=mscExampleSignedProvStructSignedVectorTable, mscExampleMiscellaneousProvFreeTimeList1RowStatus=mscExampleMiscellaneousProvFreeTimeList1RowStatus, mscExampleDashedOperStructDashed=mscExampleDashedOperStructDashed, mscFriOperationalState=mscFriOperationalState, mscExampleStringOperStructStrVectorTable=mscExampleStringOperStructStrVectorTable, mscExampleExtendedOperFreeExtendedReplicatedValue=mscExampleExtendedOperFreeExtendedReplicatedValue, mscExampleSignedProvStructSignedArrayTable=mscExampleSignedProvStructSignedArrayTable, mscFriOfListComponentValue=mscFriOfListComponentValue, mscExampleSignedProvFreeSignedListValue=mscExampleSignedProvFreeSignedListValue, mscExampleEnumOperFreeEnumListRowStatus=mscExampleEnumOperFreeEnumListRowStatus, mscFriDynOpInitialOperationalTable=mscFriDynOpInitialOperationalTable, mscExampleObjectIdProvFreeObjIdReplicatedRowStatus=mscExampleObjectIdProvFreeObjIdReplicatedRowStatus, mscExampleEnumIndicesStorageType=mscExampleEnumIndicesStorageType, mscExampleHexOfHexListTable=mscExampleHexOfHexListTable, mscExampleFixedPtProvisionalEntry=mscExampleFixedPtProvisionalEntry, mscRegisteredIndex=mscRegisteredIndex, mscExampleSignedProvFreeSignedVectorValue=mscExampleSignedProvFreeSignedVectorValue, mscExampleDashedProvFreeDashedReplicatedIndex=mscExampleDashedProvFreeDashedReplicatedIndex, mscExampleWildBcdOperStructWildBcdArrayRowIndex=mscExampleWildBcdOperStructWildBcdArrayRowIndex, mscExampleDashedProvFreeDashedVectorValue=mscExampleDashedProvFreeDashedVectorValue, mscExampleBcdProvFreeBcdArray1ColumnIndex=mscExampleBcdProvFreeBcdArray1ColumnIndex, mscExampleEnumProvStructEnumVectorValue=mscExampleEnumProvStructEnumVectorValue, mscExampleMiscellaneousOperFreeTimeListEntry=mscExampleMiscellaneousOperFreeTimeListEntry, mscExampleSignedIndex=mscExampleSignedIndex, mscExampleIpAddressProvFreeIpAddressVector1Value=mscExampleIpAddressProvFreeIpAddressVector1Value, mscFriDynOpDynOpJrOperationalTable=mscFriDynOpDynOpJrOperationalTable, mscExampleMiscellaneousProvFreeLongReplicatedValue=mscExampleMiscellaneousProvFreeLongReplicatedValue, mscExampleEnumProvFreeEnumListEntry=mscExampleEnumProvFreeEnumListEntry, mscExampleHexOfHexListEntry=mscExampleHexOfHexListEntry, mscExampleWildBcdOperFreeWildBcdArrayColumnIndex=mscExampleWildBcdOperFreeWildBcdArrayColumnIndex, mscExampleWildBcdOperFreeWildBcdVectorTable=mscExampleWildBcdOperFreeWildBcdVectorTable, mscExampleThreeIndicesProvisionedEntry=mscExampleThreeIndicesProvisionedEntry, mscExampleProvStringSubCreatedTable=mscExampleProvStringSubCreatedTable, mscExampleEnumStorageType=mscExampleEnumStorageType, mscExampleFourIndicesProvisionedTable=mscExampleFourIndicesProvisionedTable, mscExampleObjectIdProvFreeObjId=mscExampleObjectIdProvFreeObjId, mscExampleRequiredIndices=mscExampleRequiredIndices, mscExampleMiscellaneousOperFreeCounter64=mscExampleMiscellaneousOperFreeCounter64, mscFriPfListSignedValue=mscFriPfListSignedValue, mscExampleFixedPtProvStructFixedPtArrayTable=mscExampleFixedPtProvStructFixedPtArrayTable, mscFriRowStatus=mscFriRowStatus, mscExampleBcdProvFreeBcdVector1Value=mscExampleBcdProvFreeBcdVector1Value, mscExampleStringOperFreeStrVectorTable=mscExampleStringOperFreeStrVectorTable, mscExampleIpAddressProvisionalEntry=mscExampleIpAddressProvisionalEntry, mscExampleProvDecimalSubCreatedEntry=mscExampleProvDecimalSubCreatedEntry, mscExampleEnumOperStructEnumArrayDayIndex=mscExampleEnumOperStructEnumArrayDayIndex, mscExampleIpAddrIndicesStorageType=mscExampleIpAddrIndicesStorageType, mscFriDynOpDynOpJrRowStatusEntry=mscFriDynOpDynOpJrRowStatusEntry, mscExampleIpAddressProvStructIpAddressVectorIndex=mscExampleIpAddressProvStructIpAddressVectorIndex, mscExampleEnumOperFreeEnumReplicatedIndex=mscExampleEnumOperFreeEnumReplicatedIndex, mscExampleWildBcdProvStructWildBcdArrayValue=mscExampleWildBcdProvStructWildBcdArrayValue, mscExampleHexProvFreeHexReplicatedValue=mscExampleHexProvFreeHexReplicatedValue, mscExampleHexProvFreeHexList1RowStatus=mscExampleHexProvFreeHexList1RowStatus, mscExampleWildBcdProvStructWildBcdArrayColumnIndex=mscExampleWildBcdProvStructWildBcdArrayColumnIndex, mscExampleNsapIndex=mscExampleNsapIndex, mscExampleMiscellaneousProvFreeTimeTimeOnly=mscExampleMiscellaneousProvFreeTimeTimeOnly, mscFriDnaProvisionalEntry=mscFriDnaProvisionalEntry, mscExampleOperEnumSubCreatedRowStatus=mscExampleOperEnumSubCreatedRowStatus, mscExampleWildBcdOperFreeWildBcdVectorIndex=mscExampleWildBcdOperFreeWildBcdVectorIndex, mscExampleIpAddressOperFreeIpAddress=mscExampleIpAddressOperFreeIpAddress, mscExampleTwoIndicesStorageType=mscExampleTwoIndicesStorageType, mscExampleDecimalOfIntVectorEntry=mscExampleDecimalOfIntVectorEntry, mscExampleDecimalOperFreeTimeInterval=mscExampleDecimalOperFreeTimeInterval, mscExampleMiscellaneousComponentName=mscExampleMiscellaneousComponentName, mscExampleHexProvFreeHexArray1ColumnIndex=mscExampleHexProvFreeHexArray1ColumnIndex, mscExampleEnumProvStructEnumArrayTable=mscExampleEnumProvStructEnumArrayTable, mscExampleExtendedProvStructExtendedVectorValue=mscExampleExtendedProvStructExtendedVectorValue, mscExampleIpAddressProvStructIpAddressArrayEntry=mscExampleIpAddressProvStructIpAddressArrayEntry, mscExampleProvStringSubCreatedValue=mscExampleProvStringSubCreatedValue, mscExampleAsciiIndicesRowStatus=mscExampleAsciiIndicesRowStatus, mscExampleIpAddressProvFreeIpAddressList1Table=mscExampleIpAddressProvFreeIpAddressList1Table, mscExampleDecimalOfIntArrayColumnIndex=mscExampleDecimalOfIntArrayColumnIndex, mscExampleIpAddressProvFreeIpAddressVectorIndex=mscExampleIpAddressProvFreeIpAddressVectorIndex, mscExampleDashedOfDashedListValue=mscExampleDashedOfDashedListValue, mscExampleWildBcdProvFreeWildBcdArrayRowIndex=mscExampleWildBcdProvFreeWildBcdArrayRowIndex, mscExampleBcdOperationalEntry=mscExampleBcdOperationalEntry, mscExampleEnumProvStructEnum=mscExampleEnumProvStructEnum, mscExampleDecimalPfIntArray1Entry=mscExampleDecimalPfIntArray1Entry, mscFriDynamicIndex=mscFriDynamicIndex, mscExampleDashedOfDashedArrayTable=mscExampleDashedOfDashedArrayTable, mscFriDynamicStorageType=mscFriDynamicStorageType, mscExampleIpAddressProvFreeIpAddressListEntry=mscExampleIpAddressProvFreeIpAddressListEntry, mscExampleMiscellaneousProvFreeTimeList3RowStatus=mscExampleMiscellaneousProvFreeTimeList3RowStatus, mscExampleDecimalIndicesComponentName=mscExampleDecimalIndicesComponentName, mscExampleOperStringSubCreatedEntry=mscExampleOperStringSubCreatedEntry, mscExampleMiscellaneousProvFreeTimeList3Value=mscExampleMiscellaneousProvFreeTimeList3Value, mscExampleMiscellaneousOperFreeTimeListTable=mscExampleMiscellaneousOperFreeTimeListTable, mscExampleMiscellaneousOperFreeLongListEntry=mscExampleMiscellaneousOperFreeLongListEntry, mscExampleEnumProvFreeEnumArray1DayIndex=mscExampleEnumProvFreeEnumArray1DayIndex, mscExampleIpAddrIndicesRowStatusEntry=mscExampleIpAddrIndicesRowStatusEntry, mscExampleIpAddressOperationalEntry=mscExampleIpAddressOperationalEntry, mscExampleHexIndices=mscExampleHexIndices, mscExampleEnumOperStructEnumVectorValue=mscExampleEnumOperStructEnumVectorValue, mscExampleTwoIndices=mscExampleTwoIndices, mscFriDynOpIndex=mscFriDynOpIndex, mscFriOperationalStructSimpleSigned=mscFriOperationalStructSimpleSigned, mscExampleTwoIndicesProvisionedTable=mscExampleTwoIndicesProvisionedTable, mscExampleIpAddress=mscExampleIpAddress, mscExampleStringProvFreeStrArray1RowIndex=mscExampleStringProvFreeStrArray1RowIndex, mscExampleDashedOsDashedVectorValue=mscExampleDashedOsDashedVectorValue, mscExampleDashedOsDashedVectorEntry=mscExampleDashedOsDashedVectorEntry, mscExampleDashedProvFreeDashedArrayRowIndex=mscExampleDashedProvFreeDashedArrayRowIndex, mscExampleHexProvFreeHexReplicated1Value=mscExampleHexProvFreeHexReplicated1Value, mscExampleEnumIndicesRowStatusTable=mscExampleEnumIndicesRowStatusTable, mscExampleDecimalPfIntListValue=mscExampleDecimalPfIntListValue, mscExampleEnumOperStructEnumArrayValue=mscExampleEnumOperStructEnumArrayValue, mscExampleSequenceOperFreeSequenceReplicatedValue=mscExampleSequenceOperFreeSequenceReplicatedValue, mscExampleIndex=mscExampleIndex, mscExampleMiscellaneousProvFreeTimeList1Entry=mscExampleMiscellaneousProvFreeTimeList1Entry, mscExampleDecimalPfIntReplicatedIndex=mscExampleDecimalPfIntReplicatedIndex, mscExampleDecimalPfIntReplicatedTable=mscExampleDecimalPfIntReplicatedTable, mscExampleDecimalPfIntArrayTable=mscExampleDecimalPfIntArrayTable, mscExampleFixedPtProvisionalTable=mscExampleFixedPtProvisionalTable, mscExampleDashedOsDashedArrayColumnIndex=mscExampleDashedOsDashedArrayColumnIndex, mscExampleProvSignedSubCreatedEntry=mscExampleProvSignedSubCreatedEntry, mscExampleAsciiIndicesProvisionedTable=mscExampleAsciiIndicesProvisionedTable, mscExampleComponentName=mscExampleComponentName, mscFriDynOpOptionalAttribute=mscFriDynOpOptionalAttribute, mscExampleSequenceIndicesRowStatusEntry=mscExampleSequenceIndicesRowStatusEntry, mscExampleStringProvStructAsciiOnly=mscExampleStringProvStructAsciiOnly, mscExampleDecimalOsIntVectorTable=mscExampleDecimalOsIntVectorTable, mscExampleBcdProvStructBcdVectorTable=mscExampleBcdProvStructBcdVectorTable, mscExampleObjIdIndicesThreeIndex=mscExampleObjIdIndicesThreeIndex, mscExampleProvSignedSubCreatedValue=mscExampleProvSignedSubCreatedValue, mscExampleMiscellaneousProvFreeTimeListTable=mscExampleMiscellaneousProvFreeTimeListTable, mscExampleWildBcdOperFreeWildBcdReplicatedTable=mscExampleWildBcdOperFreeWildBcdReplicatedTable, mscExampleHexIndicesTwoIndex=mscExampleHexIndicesTwoIndex, mscExampleHexIndicesProvisionedEntry=mscExampleHexIndicesProvisionedEntry, mscExampleDecimalPfIntListRowStatus=mscExampleDecimalPfIntListRowStatus, mscExampleFixedPtOperFreeFixedPtListRowStatus=mscExampleFixedPtOperFreeFixedPtListRowStatus, mscExampleMiscellaneousProvFreeLong=mscExampleMiscellaneousProvFreeLong, mscExampleFixedPtProvFreeFixedPtReplicatedEntry=mscExampleFixedPtProvFreeFixedPtReplicatedEntry, mscExampleMiscellaneousProvFreeTimeList3Table=mscExampleMiscellaneousProvFreeTimeList3Table, mscFriDnaAttribute=mscFriDnaAttribute, mscExampleMiscellaneousOperFreeLongReplicatedValue=mscExampleMiscellaneousOperFreeLongReplicatedValue, mscExampleObjectIdOperFreeObjIdReplicatedTable=mscExampleObjectIdOperFreeObjIdReplicatedTable, mscExampleMiscellaneousOperationalTable=mscExampleMiscellaneousOperationalTable, mscExampleHexOfHexArrayRowIndex=mscExampleHexOfHexArrayRowIndex, mscExampleExtendedProvFreeExtendedListEntry=mscExampleExtendedProvFreeExtendedListEntry, mscExampleObjectIdProvFreeObjIdListEntry=mscExampleObjectIdProvFreeObjIdListEntry, mscExampleSignedProvisionalTable=mscExampleSignedProvisionalTable, mscExampleOperStringSubCreatedValue=mscExampleOperStringSubCreatedValue, mscExampleIpAddressProvStructIpAddressArrayRowIndex=mscExampleIpAddressProvStructIpAddressArrayRowIndex, mscExampleHexStrIndicesComponentName=mscExampleHexStrIndicesComponentName, mscFriProvisionalStructSetEnumeration=mscFriProvisionalStructSetEnumeration, mscExampleFourIndicesFourIndex=mscExampleFourIndicesFourIndex, mscExampleHexOsHexArrayRowIndex=mscExampleHexOsHexArrayRowIndex, mscExampleFixedPtOperFreeFixedPtReplicatedEntry=mscExampleFixedPtOperFreeFixedPtReplicatedEntry, mscFriOfListComponentRowStatus=mscFriOfListComponentRowStatus, mscFriOperationalStructSetUnsigned=mscFriOperationalStructSetUnsigned, mscExampleIpAddressProvStructIpAddressArrayTable=mscExampleIpAddressProvStructIpAddressArrayTable, mscFriOperationalStructSimpleSequence=mscFriOperationalStructSimpleSequence, mscExampleObjectIdOperFreeObjIdListEntry=mscExampleObjectIdOperFreeObjIdListEntry, mscExampleMiscellaneousProvFreeLongListValue=mscExampleMiscellaneousProvFreeLongListValue, mscExampleNsapComponentName=mscExampleNsapComponentName, mscExampleStringProvisionalTable=mscExampleStringProvisionalTable, mscExampleProvFixedPtSubCreatedValue=mscExampleProvFixedPtSubCreatedValue, mscExampleHexOfHexArrayTable=mscExampleHexOfHexArrayTable, mscExampleHexOfHexReplicatedEntry=mscExampleHexOfHexReplicatedEntry, mscExampleOperDecimalSubCreatedValue=mscExampleOperDecimalSubCreatedValue, mscExampleIpAddressComponentName=mscExampleIpAddressComponentName, mscExampleDashedProvStructDashedArrayColumnIndex=mscExampleDashedProvStructDashedArrayColumnIndex, mscExampleSequenceOperFreeSequence=mscExampleSequenceOperFreeSequence, mscExampleStringOperFreeStrListRowStatus=mscExampleStringOperFreeStrListRowStatus, mscExampleStringProvFreeStrList1Table=mscExampleStringProvFreeStrList1Table, mscFriOfListEnumerationEntry=mscFriOfListEnumerationEntry, mscExampleFixedPtOperFreeFixedPtVectorEntry=mscExampleFixedPtOperFreeFixedPtVectorEntry, mscExampleObjectIdOperFreeObjIdListTable=mscExampleObjectIdOperFreeObjIdListTable, mscExampleDecimalProvFreeInteger1=mscExampleDecimalProvFreeInteger1, mscExampleProvSignedSubCreatedTable=mscExampleProvSignedSubCreatedTable, mscExampleStringProvFreeHexOnly=mscExampleStringProvFreeHexOnly, mscExampleFixedPtOperStructFixedPtArrayValue=mscExampleFixedPtOperStructFixedPtArrayValue, mscExampleStringProvFreeStrVectorValue=mscExampleStringProvFreeStrVectorValue, mscExampleOperSignedSubCreatedTable=mscExampleOperSignedSubCreatedTable, mscExampleDecimalPfIntReplicatedEntry=mscExampleDecimalPfIntReplicatedEntry, mscExampleHexOfHexReplicatedTable=mscExampleHexOfHexReplicatedTable, mscExampleMiscellaneousProvFreeLongListEntry=mscExampleMiscellaneousProvFreeLongListEntry, mscExampleSignedOperStructSignedVectorTable=mscExampleSignedOperStructSignedVectorTable, mscExampleSequenceIndicesComponentName=mscExampleSequenceIndicesComponentName, mscExampleRequiredIndicesRowStatusEntry=mscExampleRequiredIndicesRowStatusEntry, mscExampleFixedPtOperStructFixedPt=mscExampleFixedPtOperStructFixedPt, mscExampleStringProvStructStrArrayEntry=mscExampleStringProvStructStrArrayEntry, mscFriDnaOperationalTable=mscFriDnaOperationalTable, mscExampleEnumIndicesProvisionedEntry=mscExampleEnumIndicesProvisionedEntry, mscExampleHexOfHexListRowStatus=mscExampleHexOfHexListRowStatus, mscExampleBcdIndicesThreeIndex=mscExampleBcdIndicesThreeIndex, mscFriPfListSignedEntry=mscFriPfListSignedEntry, mscExampleHexProvStructHexArrayTable=mscExampleHexProvStructHexArrayTable, mscExampleObjIdIndices=mscExampleObjIdIndices, mscExampleDashedProvStructDashedArrayRowIndex=mscExampleDashedProvStructDashedArrayRowIndex, mscExampleSequenceProvFreeSequenceReplicatedValue=mscExampleSequenceProvFreeSequenceReplicatedValue, mscExampleSignedProvFreeSignedListRowStatus=mscExampleSignedProvFreeSignedListRowStatus, mscExampleObjectIdOperFreeObjIdListValue=mscExampleObjectIdOperFreeObjIdListValue, mscExampleAsciiIndices=mscExampleAsciiIndices, mscExampleNsapRowStatus=mscExampleNsapRowStatus, mscExampleEnumOperFreeEnumListTable=mscExampleEnumOperFreeEnumListTable, mscExampleAsciiIndicesTwoIndex=mscExampleAsciiIndicesTwoIndex, mscExample=mscExample, mscExampleHexIndex=mscExampleHexIndex, mscFriDynOpInitialAttribute=mscFriDynOpInitialAttribute, mscExampleFourIndicesRowStatus=mscExampleFourIndicesRowStatus, mscFriPfListAsciiRowStatus=mscFriPfListAsciiRowStatus, mscExampleHexProvFreeHexArray2Value=mscExampleHexProvFreeHexArray2Value, mscExampleDecimalIndicesRowStatus=mscExampleDecimalIndicesRowStatus, mscExampleHexProvStructHexArrayEntry=mscExampleHexProvStructHexArrayEntry, mscExampleSignedProvFreeSignedArrayTable=mscExampleSignedProvFreeSignedArrayTable, mscExampleStringOperStructStrArrayEntry=mscExampleStringOperStructStrArrayEntry, mscExampleIpAddressProvFreeIpAddressVectorTable=mscExampleIpAddressProvFreeIpAddressVectorTable, mscExampleBcdProvFreeBcdArray1Entry=mscExampleBcdProvFreeBcdArray1Entry, mscExampleStringOperFreeStrVectorValue=mscExampleStringOperFreeStrVectorValue, mscExampleEnumProvFreeEnumVector1Value=mscExampleEnumProvFreeEnumVector1Value)
class Student: ''' A class used to represent student achievement in an assessment ... Attributes ---------- fullname : str the student's full name preferred : str the student's preferred name results : list a list of tuples of student results (question, topic, score) Methods ------- by_question() Returns the student results by question by_topic() Returns the student results by topic by_type() Returns the student results by type ''' def __init__(self, surname, firstname, results): self.fullname = surname + ', ' + firstname if '(' in firstname: preferred = firstname.split(' ') self.preferred = preferred[1][1:-1] else: self.preferred = firstname self.questions = [t[0] for t in results] self.topics = [t[1] for t in results] self.types = [t[2] for t in results] self.totals = [t[3] for t in results] def __label_totals(self, labels): ''' creates a list of tuples (label, total) Parameters ---------- labels : list a list of labels for the tuple totals : list a list of totals for the tuple Returns ------- list a list of tuples of the form (label, total) ''' set_labels = list(set(labels)) set_labels.sort() label_totals = list(zip(labels, self.totals)) totals = [] for label in set_labels: total = sum([t[1] for t in label_totals if t[0] == label]) totals.append((label, total)) return totals def by_question(self): ''' Returns a list of the student's results by question ''' return self.__label_totals(self.questions) def by_topic(self): ''' Returns a list of the student's results by topic ''' return self.__label_totals(self.topics) def by_type(self): ''' Returns a list of the student's results by type ''' return self.__label_totals(self.types)
class Student: """ A class used to represent student achievement in an assessment ... Attributes ---------- fullname : str the student's full name preferred : str the student's preferred name results : list a list of tuples of student results (question, topic, score) Methods ------- by_question() Returns the student results by question by_topic() Returns the student results by topic by_type() Returns the student results by type """ def __init__(self, surname, firstname, results): self.fullname = surname + ', ' + firstname if '(' in firstname: preferred = firstname.split(' ') self.preferred = preferred[1][1:-1] else: self.preferred = firstname self.questions = [t[0] for t in results] self.topics = [t[1] for t in results] self.types = [t[2] for t in results] self.totals = [t[3] for t in results] def __label_totals(self, labels): """ creates a list of tuples (label, total) Parameters ---------- labels : list a list of labels for the tuple totals : list a list of totals for the tuple Returns ------- list a list of tuples of the form (label, total) """ set_labels = list(set(labels)) set_labels.sort() label_totals = list(zip(labels, self.totals)) totals = [] for label in set_labels: total = sum([t[1] for t in label_totals if t[0] == label]) totals.append((label, total)) return totals def by_question(self): """ Returns a list of the student's results by question """ return self.__label_totals(self.questions) def by_topic(self): """ Returns a list of the student's results by topic """ return self.__label_totals(self.topics) def by_type(self): """ Returns a list of the student's results by type """ return self.__label_totals(self.types)
class AECEnv(object): def __init__(self): pass def step(self, action, observe=True): raise NotImplementedError def reset(self, observe=True): raise NotImplementedError def observe(self, agent): raise NotImplementedError def last(self): agent = self.agent_selection return self.rewards[agent], self.dones[agent], self.infos[agent] def render(self, mode='human'): raise NotImplementedError def close(self): pass def agent_iter(self, max_agent_iter=2**63): return AECIterable(self, max_agent_iter) class AECIterable: def __init__(self, env, max_agent_iter): self.env = env self.max_agent_iter = max_agent_iter def __iter__(self): if getattr(self.env, "_has_updated", None) is None: return AECIterator(self.env, self.max_agent_iter) else: return AECOrderEnforcingIterator(self.env, self.max_agent_iter) class AECIterator: def __init__(self, env, max_agent_iter): self.env = env self.iters_til_term = max_agent_iter def __next__(self): if all(self.env.dones.values()) or self.iters_til_term <= 0: raise StopIteration self.iters_til_term -= 1 return self.env.agent_selection class AECOrderEnforcingIterator(AECIterator): def __next__(self): assert self.env._has_updated, "need to call step() or reset() in a loop over `agent_iter`!" agent = super().__next__() self.env._has_updated = False return agent
class Aecenv(object): def __init__(self): pass def step(self, action, observe=True): raise NotImplementedError def reset(self, observe=True): raise NotImplementedError def observe(self, agent): raise NotImplementedError def last(self): agent = self.agent_selection return (self.rewards[agent], self.dones[agent], self.infos[agent]) def render(self, mode='human'): raise NotImplementedError def close(self): pass def agent_iter(self, max_agent_iter=2 ** 63): return aec_iterable(self, max_agent_iter) class Aeciterable: def __init__(self, env, max_agent_iter): self.env = env self.max_agent_iter = max_agent_iter def __iter__(self): if getattr(self.env, '_has_updated', None) is None: return aec_iterator(self.env, self.max_agent_iter) else: return aec_order_enforcing_iterator(self.env, self.max_agent_iter) class Aeciterator: def __init__(self, env, max_agent_iter): self.env = env self.iters_til_term = max_agent_iter def __next__(self): if all(self.env.dones.values()) or self.iters_til_term <= 0: raise StopIteration self.iters_til_term -= 1 return self.env.agent_selection class Aecorderenforcingiterator(AECIterator): def __next__(self): assert self.env._has_updated, 'need to call step() or reset() in a loop over `agent_iter`!' agent = super().__next__() self.env._has_updated = False return agent
#!/usr/bin/env python NAME = 'Yunjiasu (Baidu Cloud Computing)' def is_waf(self): # There are some servers which return 'Server: Yunjiasu-nginx' if self.matchheader(('Server', r'Yunjiasu(.*)?')): return True return False
name = 'Yunjiasu (Baidu Cloud Computing)' def is_waf(self): if self.matchheader(('Server', 'Yunjiasu(.*)?')): return True return False
# -*- coding: utf-8 -*- ''' File name: code\tricolouring_a_triangular_grid\sol_189.py Author: Vaidic Joshi Date created: Oct 20, 2018 Python Version: 3.x ''' # Solution to Project Euler Problem #189 :: Tri-colouring a triangular grid # # For more information see: # https://projecteuler.net/problem=189 # Problem Statement ''' Consider the following configuration of 64 triangles: We wish to colour the interior of each triangle with one of three colours: red, green or blue, so that no two neighbouring triangles have the same colour. Such a colouring shall be called valid. Here, two triangles are said to be neighbouring if they share an edge. Note: if they only share a vertex, then they are not neighbours. For example, here is a valid colouring of the above grid: A colouring C' which is obtained from a colouring C by rotation or reflection is considered distinct from C unless the two are identical. How many distinct valid colourings are there for the above configuration? ''' # Solution # Solution Approach ''' '''
""" File name: code ricolouring_a_triangular_grid\\sol_189.py Author: Vaidic Joshi Date created: Oct 20, 2018 Python Version: 3.x """ "\nConsider the following configuration of 64 triangles:\n\n\n\nWe wish to colour the interior of each triangle with one of three colours: red, green or blue, so that no two neighbouring triangles have the same colour. Such a colouring shall be called valid. Here, two triangles are said to be neighbouring if they share an edge.\nNote: if they only share a vertex, then they are not neighbours. \n\nFor example, here is a valid colouring of the above grid:\n\n\nA colouring C' which is obtained from a colouring C by rotation or reflection is considered distinct from C unless the two are identical.\n\nHow many distinct valid colourings are there for the above configuration?\n" '\n'
# ---------------------------------------------------------------------------- # CLASSES: nightly # # Test Case: timesliders.py # # Tests: mesh - 2D, curvilinear, single domain # plots - FilledBoundary # databases - PDB # # Purpose: This test case tests out using multiple time sliders. # # Programmer: Brad Whitlock # Date: Fri Mar 19 11:45:12 PDT 2004 # # Modifications: # Brad Whitlock, Wed Mar 31 10:34:27 PDT 2004 # I changed the calls to SetActiveTimeSlider so they can accept the # unexpanded database names instead of requiring fully qualified # database names. # # Brad Whitlock, Mon Apr 19 09:20:29 PDT 2004 # I added a few more tests to make sure we get the desired list of time # sliders under more conditions. # # Brad Whitlock, Wed Feb 9 11:10:29 PDT 2005 # I added another test section to make sure that we get the right time # sliders (or lack of) after deleting plots. # # Brad Whitlock, Thu Dec 21 11:57:52 PDT 2006 # Added code to make sure that the dictionary keys in one of the tests # are always sorted. # # Mark C. Miller, Wed Jan 20 07:37:11 PST 2010 # Added ability to switch between Silo's HDF5 and PDB data. # ---------------------------------------------------------------------------- # # Look at the first few lines of the string representation of the # WindowInformation to see the list of time sliders, etc. # def TestWindowInformation(testname): # Get the window information and convert it to a string. s = str(GetWindowInformation()) # Only use the first 5 or so lines from the string. lines = s.split("\n") s = "" for i in range(5): if(i < len(lines)): s = s + lines[i] s = s + "\n" TestText(testname, s) def SetTheView(): v0 = View3DAttributes() v0.viewNormal = (-0.735926, 0.562657, 0.376604) v0.focus = (5, 0.753448, 2.5) v0.viewUp = (0.454745, 0.822858, -0.340752) v0.viewAngle = 30 v0.parallelScale = 5.6398 v0.nearPlane = -11.2796 v0.farPlane = 11.2796 v0.imagePan = (0.0589778, 0.0898255) v0.imageZoom = 1.32552 v0.perspective = 1 v0.eyeAngle = 2 SetView3D(v0) # Print the dictionary so its keys are always sorted a particular way. def PrintDict(dict): keys = list(dict.keys()) keys.sort() s = "{" i = 0 for k in keys: if type(k) == type(str("")): kstr = "'" + str(k) + "'" else: kstr = str(k) s = s + kstr + ": " + str(dict[k]) if i < len(keys)-1: s = s + ", " i = i + 1 s = s + "}" return s # The plotted databases. dbs = (data_path("pdb_test_data/dbA00.pdb"), data_path("pdb_test_data/dbB00.pdb"), data_path("pdb_test_data/dbC00.pdb")) # Create a plot from one database TestSection("Set time using different time sliders") OpenDatabase(dbs[0]) AddPlot("FilledBoundary", "material(mesh)") DrawPlots() Test("timesliders00") TestWindowInformation("timesliders01") # Create a plot from another database OpenDatabase(dbs[1]) AddPlot("FilledBoundary", "material(mesh)") DrawPlots() Test("timesliders02") TestWindowInformation("timesliders03") # Change the time state for the second time slider. # note: py3 div creates float SetTimeSliderState(int(TimeSliderGetNStates() / 2)) Test("timesliders04") TestWindowInformation("timesliders05") # Make sure that GetTimeSliders returned the right dictionary. testString = "GetTimeSliders returned:\n %s" % PrintDict(GetTimeSliders()) TestText("timesliders06", testString) # Set the time slider back to the first time slider. SetActiveTimeSlider(dbs[0]) # Set the time state for the first time slider. SetTimeSliderState(7) Test("timesliders07") TestWindowInformation("timesliders08") # Create a database correlation for the first two databases. This correlation # will be an IndexForIndex correlation since we passed 0 for the correlation # method. TestSection("Time slider behavior with a correlation") correlation1 = "A_and_B" CreateDatabaseCorrelation(correlation1, dbs[:-1], 0) SetActiveTimeSlider(correlation1) Test("timesliders09") TestWindowInformation("timesliders10") # Set the time state for the active time slider since it is now the A_and_B # database correlation. SetTimeSliderState(0) Test("timesliders11") TestWindowInformation("timesliders12") SetTimeSliderState(5) Test("timesliders13") TestWindowInformation("timesliders14") SetTimeSliderState(19) Test("timesliders15") TestWindowInformation("timesliders16") # Set the time slider to B. Only B should change. SetActiveTimeSlider(dbs[1]) SetTimeSliderState(5) Test("timesliders17") TestWindowInformation("timesliders18") # Add a new window and make sure that the time sliders are copied to it. TestSection("Make sure cloned window gets time sliders") CloneWindow() SetActiveWindow(2) DrawPlots() Test("timesliders19") TestWindowInformation("timesliders20") SetTimeSliderState(19) Test("timesliders21") TestWindowInformation("timesliders22") DeleteWindow() # Make sure switching between different databases give the right time sliders. TestSection("Make sure opening ST database clears time slider list") DeleteAllPlots() OpenDatabase(dbs[0]) SetTimeSliderState(0) TestWindowInformation("timesliders23") OpenDatabase(silo_data_path("curv2d.silo")) AddPlot("Pseudocolor", "u") DrawPlots() ResetView() Test("timesliders24") TestWindowInformation("timesliders25") # Make sure doing various replace sequences give the right time sliders. TestSection("Make sure replace sequences give right time sliders") DeleteAllPlots() OpenDatabase(dbs[0]) AddPlot("FilledBoundary", "material(mesh)") DrawPlots() Test("timesliders26") TestWindowInformation("timesliders27") ReplaceDatabase(dbs[1]) Test("timesliders28") TestWindowInformation("timesliders29") ReplaceDatabase(dbs[0]) Test("timesliders30") # There should only be 1 time slider at this point. TestWindowInformation("timesliders31") # Make sure that when we replace an MT database with an ST database, we get # the right time sliders. DeleteAllPlots() OpenDatabase(silo_data_path("wave*.silo database"), 30) AddPlot("Pseudocolor", "pressure") DrawPlots() SetTheView() Test("timesliders32") TestWindowInformation("timesliders33") # Replace with an ST database ReplaceDatabase(silo_data_path("wave0000.silo")) Test("timesliders34") TestWindowInformation("timesliders35") # Make sure that we get the right time sliders after we delete plots. TestSection("Make sure we get the right time sliders after deleting plots.") DeleteAllPlots() # Close all the sources so we get fresh time sliders. for source in GetGlobalAttributes().sources: CloseDatabase(source) OpenDatabase(silo_data_path("wave.visit")) AddPlot("Pseudocolor", "pressure") OpenDatabase(silo_data_path("curv3d.silo")) AddPlot("Pseudocolor", "p") DrawPlots() ResetView() v = GetView3D() v.viewNormal = (0.163324, 0.442866, 0.881586) v.viewUp = (-0.0889191, 0.896556, -0.433913) v.parallelScale = 16.9558 v.imagePan = (0.0834786, 0.0495278) v.imageZoom = 1.53171 SetView3D(v) Test("timesliders36") TestWindowInformation("timesliders37") SetActivePlots(0) DeleteActivePlots() Test("timesliders38") TestWindowInformation("timesliders39") DeleteActivePlots() TestWindowInformation("timesliders40") Exit()
def test_window_information(testname): s = str(get_window_information()) lines = s.split('\n') s = '' for i in range(5): if i < len(lines): s = s + lines[i] s = s + '\n' test_text(testname, s) def set_the_view(): v0 = view3_d_attributes() v0.viewNormal = (-0.735926, 0.562657, 0.376604) v0.focus = (5, 0.753448, 2.5) v0.viewUp = (0.454745, 0.822858, -0.340752) v0.viewAngle = 30 v0.parallelScale = 5.6398 v0.nearPlane = -11.2796 v0.farPlane = 11.2796 v0.imagePan = (0.0589778, 0.0898255) v0.imageZoom = 1.32552 v0.perspective = 1 v0.eyeAngle = 2 set_view3_d(v0) def print_dict(dict): keys = list(dict.keys()) keys.sort() s = '{' i = 0 for k in keys: if type(k) == type(str('')): kstr = "'" + str(k) + "'" else: kstr = str(k) s = s + kstr + ': ' + str(dict[k]) if i < len(keys) - 1: s = s + ', ' i = i + 1 s = s + '}' return s dbs = (data_path('pdb_test_data/dbA00.pdb'), data_path('pdb_test_data/dbB00.pdb'), data_path('pdb_test_data/dbC00.pdb')) test_section('Set time using different time sliders') open_database(dbs[0]) add_plot('FilledBoundary', 'material(mesh)') draw_plots() test('timesliders00') test_window_information('timesliders01') open_database(dbs[1]) add_plot('FilledBoundary', 'material(mesh)') draw_plots() test('timesliders02') test_window_information('timesliders03') set_time_slider_state(int(time_slider_get_n_states() / 2)) test('timesliders04') test_window_information('timesliders05') test_string = 'GetTimeSliders returned:\n %s' % print_dict(get_time_sliders()) test_text('timesliders06', testString) set_active_time_slider(dbs[0]) set_time_slider_state(7) test('timesliders07') test_window_information('timesliders08') test_section('Time slider behavior with a correlation') correlation1 = 'A_and_B' create_database_correlation(correlation1, dbs[:-1], 0) set_active_time_slider(correlation1) test('timesliders09') test_window_information('timesliders10') set_time_slider_state(0) test('timesliders11') test_window_information('timesliders12') set_time_slider_state(5) test('timesliders13') test_window_information('timesliders14') set_time_slider_state(19) test('timesliders15') test_window_information('timesliders16') set_active_time_slider(dbs[1]) set_time_slider_state(5) test('timesliders17') test_window_information('timesliders18') test_section('Make sure cloned window gets time sliders') clone_window() set_active_window(2) draw_plots() test('timesliders19') test_window_information('timesliders20') set_time_slider_state(19) test('timesliders21') test_window_information('timesliders22') delete_window() test_section('Make sure opening ST database clears time slider list') delete_all_plots() open_database(dbs[0]) set_time_slider_state(0) test_window_information('timesliders23') open_database(silo_data_path('curv2d.silo')) add_plot('Pseudocolor', 'u') draw_plots() reset_view() test('timesliders24') test_window_information('timesliders25') test_section('Make sure replace sequences give right time sliders') delete_all_plots() open_database(dbs[0]) add_plot('FilledBoundary', 'material(mesh)') draw_plots() test('timesliders26') test_window_information('timesliders27') replace_database(dbs[1]) test('timesliders28') test_window_information('timesliders29') replace_database(dbs[0]) test('timesliders30') test_window_information('timesliders31') delete_all_plots() open_database(silo_data_path('wave*.silo database'), 30) add_plot('Pseudocolor', 'pressure') draw_plots() set_the_view() test('timesliders32') test_window_information('timesliders33') replace_database(silo_data_path('wave0000.silo')) test('timesliders34') test_window_information('timesliders35') test_section('Make sure we get the right time sliders after deleting plots.') delete_all_plots() for source in get_global_attributes().sources: close_database(source) open_database(silo_data_path('wave.visit')) add_plot('Pseudocolor', 'pressure') open_database(silo_data_path('curv3d.silo')) add_plot('Pseudocolor', 'p') draw_plots() reset_view() v = get_view3_d() v.viewNormal = (0.163324, 0.442866, 0.881586) v.viewUp = (-0.0889191, 0.896556, -0.433913) v.parallelScale = 16.9558 v.imagePan = (0.0834786, 0.0495278) v.imageZoom = 1.53171 set_view3_d(v) test('timesliders36') test_window_information('timesliders37') set_active_plots(0) delete_active_plots() test('timesliders38') test_window_information('timesliders39') delete_active_plots() test_window_information('timesliders40') exit()
arr = [] with open("input.txt", "r") as f: for line in [l.replace("\n", "") for l in f.readlines()]: arr.append(int(line)) counter = 0 for i in range(1, len(arr)): if (arr[i] > arr[i-1]): counter += 1 print("solution:", counter)
arr = [] with open('input.txt', 'r') as f: for line in [l.replace('\n', '') for l in f.readlines()]: arr.append(int(line)) counter = 0 for i in range(1, len(arr)): if arr[i] > arr[i - 1]: counter += 1 print('solution:', counter)
N, D, H = map(int, input().split()) ans = 0 for i in range(N): Di, Hi = map(int, input().split()) m = (H - Hi) / (D - Di) b = H - m * D ans = max(ans, b) print(ans)
(n, d, h) = map(int, input().split()) ans = 0 for i in range(N): (di, hi) = map(int, input().split()) m = (H - Hi) / (D - Di) b = H - m * D ans = max(ans, b) print(ans)
''' URL: https://leetcode.com/problems/how-many-numbers-are-smaller-than-the-current-number/ Difficulty: Easy Description: How Many Numbers Are Smaller Than the Current Number Given the array nums, for each nums[i] find out how many numbers in the array are smaller than it. That is, for each nums[i] you have to count the number of valid j's such that j != i and nums[j] < nums[i]. Return the answer in an array. Example 1: Input: nums = [8,1,2,2,3] Output: [4,0,1,1,3] Explanation: For nums[0]=8 there exist four smaller numbers than it (1, 2, 2 and 3). For nums[1]=1 does not exist any smaller number than it. For nums[2]=2 there exist one smaller number than it (1). For nums[3]=2 there exist one smaller number than it (1). For nums[4]=3 there exist three smaller numbers than it (1, 2 and 2). Example 2: Input: nums = [6,5,4,8] Output: [2,1,0,3] Example 3: Input: nums = [7,7,7,7] Output: [0,0,0,0] Constraints: 2 <= nums.length <= 500 0 <= nums[i] <= 100 ''' class Solution: def smallerNumbersThanCurrent(self, nums): output = [] for i in range(len(nums)): count = 0 for n in nums[:i] + nums[i+1:]: if n < nums[i]: count += 1 output.append(count) return output
""" URL: https://leetcode.com/problems/how-many-numbers-are-smaller-than-the-current-number/ Difficulty: Easy Description: How Many Numbers Are Smaller Than the Current Number Given the array nums, for each nums[i] find out how many numbers in the array are smaller than it. That is, for each nums[i] you have to count the number of valid j's such that j != i and nums[j] < nums[i]. Return the answer in an array. Example 1: Input: nums = [8,1,2,2,3] Output: [4,0,1,1,3] Explanation: For nums[0]=8 there exist four smaller numbers than it (1, 2, 2 and 3). For nums[1]=1 does not exist any smaller number than it. For nums[2]=2 there exist one smaller number than it (1). For nums[3]=2 there exist one smaller number than it (1). For nums[4]=3 there exist three smaller numbers than it (1, 2 and 2). Example 2: Input: nums = [6,5,4,8] Output: [2,1,0,3] Example 3: Input: nums = [7,7,7,7] Output: [0,0,0,0] Constraints: 2 <= nums.length <= 500 0 <= nums[i] <= 100 """ class Solution: def smaller_numbers_than_current(self, nums): output = [] for i in range(len(nums)): count = 0 for n in nums[:i] + nums[i + 1:]: if n < nums[i]: count += 1 output.append(count) return output