content
stringlengths 7
1.05M
| fixed_cases
stringlengths 1
1.28M
|
---|---|
__name__ = "restio"
__version__ = "1.0.0b5"
__author__ = "Eduardo Machado Starling"
__email__ = "[email protected]"
| __name__ = 'restio'
__version__ = '1.0.0b5'
__author__ = 'Eduardo Machado Starling'
__email__ = '[email protected]' |
class Solution:
#Function to remove a loop in the linked list.
def removeLoop(self, head):
ptr1 = head
ptr2 = head
while ptr2!=None and ptr2.next!=None:
ptr1 = ptr1.next
ptr2 = ptr2.next.next
if ptr1 == ptr2 :
self.delete_loop(head,ptr1)
else:
return 1
def delete_loop(self,head,loop_node):
ptr1 = head
i = 1
counter = loop_node
while counter.next != loop_node:
counter = counter.next
i+=1
ptr2 = head
for j in range(i):
ptr2 = ptr2.next
while ptr1!=ptr2:
ptr1 = ptr1.next
ptr2 = ptr2.next
while(ptr2.next != ptr1):
ptr2 = ptr2.next
ptr2.next = None
# code here
# remove the loop without losing any nodes
#{
# Driver Code Starts
# driver code:
class Node:
def __init__(self,val):
self.next=None
self.data=val
class linkedList:
def __init__(self):
self.head=None
self.tail=None
def add(self,num):
if self.head is None:
self.head=Node(num)
self.tail=self.head
else:
self.tail.next=Node(num)
self.tail=self.tail.next
def isLoop(self):
if self.head is None:
return False
fast=self.head.next
slow=self.head
while slow != fast:
if fast is None or fast.next is None:
return False
fast=fast.next.next
slow=slow.next
return True
def loopHere(self,position):
if position==0:
return
walk=self.head
for _ in range(1,position):
walk=walk.next
self.tail.next=walk
def length(self):
walk=self.head
ret=0
while walk:
ret+=1
walk=walk.next
return ret
if __name__=="__main__":
t=int(input())
for _ in range(t):
n=int(input())
arr=tuple(int(x) for x in input().split())
pos=int(input())
ll = linkedList()
for i in arr:
ll.add(i)
ll.loopHere(pos)
Solution().removeLoop(ll.head)
if ll.isLoop() or ll.length()!=n:
print(0)
continue
else:
print(1)
# } Driver Code Ends
| class Solution:
def remove_loop(self, head):
ptr1 = head
ptr2 = head
while ptr2 != None and ptr2.next != None:
ptr1 = ptr1.next
ptr2 = ptr2.next.next
if ptr1 == ptr2:
self.delete_loop(head, ptr1)
else:
return 1
def delete_loop(self, head, loop_node):
ptr1 = head
i = 1
counter = loop_node
while counter.next != loop_node:
counter = counter.next
i += 1
ptr2 = head
for j in range(i):
ptr2 = ptr2.next
while ptr1 != ptr2:
ptr1 = ptr1.next
ptr2 = ptr2.next
while ptr2.next != ptr1:
ptr2 = ptr2.next
ptr2.next = None
class Node:
def __init__(self, val):
self.next = None
self.data = val
class Linkedlist:
def __init__(self):
self.head = None
self.tail = None
def add(self, num):
if self.head is None:
self.head = node(num)
self.tail = self.head
else:
self.tail.next = node(num)
self.tail = self.tail.next
def is_loop(self):
if self.head is None:
return False
fast = self.head.next
slow = self.head
while slow != fast:
if fast is None or fast.next is None:
return False
fast = fast.next.next
slow = slow.next
return True
def loop_here(self, position):
if position == 0:
return
walk = self.head
for _ in range(1, position):
walk = walk.next
self.tail.next = walk
def length(self):
walk = self.head
ret = 0
while walk:
ret += 1
walk = walk.next
return ret
if __name__ == '__main__':
t = int(input())
for _ in range(t):
n = int(input())
arr = tuple((int(x) for x in input().split()))
pos = int(input())
ll = linked_list()
for i in arr:
ll.add(i)
ll.loopHere(pos)
solution().removeLoop(ll.head)
if ll.isLoop() or ll.length() != n:
print(0)
continue
else:
print(1) |
class ConsoleGenerator:
def print_tree(self, indent=0, depth=99):
if depth > 0:
print(" " * indent, str(self))
self.descend_tree(indent, depth)
def descend_tree(self, indent=0, depth=99):
# do descent here, other classes may overload this
pass
@staticmethod
def output(py_obj):
print("#" * 80)
print("data via console class: '{}'".format(py_obj.data))
print("#" * 80)
| class Consolegenerator:
def print_tree(self, indent=0, depth=99):
if depth > 0:
print(' ' * indent, str(self))
self.descend_tree(indent, depth)
def descend_tree(self, indent=0, depth=99):
pass
@staticmethod
def output(py_obj):
print('#' * 80)
print("data via console class: '{}'".format(py_obj.data))
print('#' * 80) |
#
# PySNMP MIB module HH3C-LswINF-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HH3C-LswINF-MIB
# Produced by pysmi-0.3.4 at Wed May 1 13:26:01 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion", "ConstraintsIntersection")
hh3clswCommon, = mibBuilder.importSymbols("HH3C-OID-MIB", "hh3clswCommon")
ifEntry, ifIndex = mibBuilder.importSymbols("IF-MIB", "ifEntry", "ifIndex")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
MibScalar, MibTable, MibTableRow, MibTableColumn, Counter64, IpAddress, Counter32, ObjectIdentity, Bits, TimeTicks, ModuleIdentity, Gauge32, iso, NotificationType, Unsigned32, MibIdentifier, Integer32 = mibBuilder.importSymbols("SNMPv2-SMI", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter64", "IpAddress", "Counter32", "ObjectIdentity", "Bits", "TimeTicks", "ModuleIdentity", "Gauge32", "iso", "NotificationType", "Unsigned32", "MibIdentifier", "Integer32")
TruthValue, RowStatus, DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "TruthValue", "RowStatus", "DisplayString", "TextualConvention")
hh3cLswL2InfMib = ModuleIdentity((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5))
hh3cLswL2InfMib.setRevisions(('2001-06-29 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: hh3cLswL2InfMib.setRevisionsDescriptions(('',))
if mibBuilder.loadTexts: hh3cLswL2InfMib.setLastUpdated('200106290000Z')
if mibBuilder.loadTexts: hh3cLswL2InfMib.setOrganization('Hangzhou H3C Tech. Co., Ltd.')
if mibBuilder.loadTexts: hh3cLswL2InfMib.setContactInfo('Platform Team Hangzhou H3C Tech. Co., Ltd. Hai-Dian District Beijing P.R. China http://www.h3c.com Zip:100085 ')
if mibBuilder.loadTexts: hh3cLswL2InfMib.setDescription('')
class PortList(TextualConvention, OctetString):
description = "Each octet within this value specifies a set of eight ports, with the first octet specifying ports 1 through 8, the second octet specifying ports 9 through 16, etc. Within each octet, the most significant bit represents the lowest numbered port, and the least significant bit represents the highest numbered port. Thus, each port of the bridge is represented by a single bit within the value of this object. If that bit has a value of '1' then that port is included in the set of ports; the port is not included if its bit has a value of '0'."
status = 'current'
class VlanIndex(TextualConvention, Unsigned32):
description = 'A value used to index per-VLAN tables: values of 0 and 4095 are not permitted; if the value is between 1 and 4094 inclusive, it represents an IEEE 802.1Q VLAN-ID with global scope within a given bridged domain (see VlanId textual convention). If the value is greater than 4095 then it represents a VLAN with scope local to the particular agent, i.e. one without a global VLAN-ID assigned to it. Such VLANs are outside the scope of IEEE 802.1Q but it is convenient to be able to manage them in the same way using this MIB.'
status = 'current'
subtypeSpec = Unsigned32.subtypeSpec + ValueRangeConstraint(0, 4294967295)
class InterfaceIndex(TextualConvention, Integer32):
description = "A unique value, greater than zero, for each interface or interface sub-layer in the managed system. It is recommended that values are assigned contiguously starting from 1. The value for each interface sub-layer must remain constant at least from one re-initialization of the entity's network management system to the next re-initialization."
status = 'current'
displayHint = 'd'
class DropDirection(TextualConvention, Integer32):
description = 'Representing the direction of dropping packets, if applicable.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))
namedValues = NamedValues(("disable", 1), ("enableInbound", 2), ("enableOutbound", 3), ("enableBoth", 4))
class SpeedModeFlag(TextualConvention, Bits):
description = 'Type of Negotiable Speed mode.'
status = 'current'
namedValues = NamedValues(("s10M", 0), ("s100M", 1), ("s1000M", 2), ("s10000M", 3), ("s24000M", 4))
hh3cLswExtInterface = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1))
hh3cifXXTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1), )
if mibBuilder.loadTexts: hh3cifXXTable.setStatus('current')
if mibBuilder.loadTexts: hh3cifXXTable.setDescription('Extended H3C private interface information table.')
hh3cifXXEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1), )
ifEntry.registerAugmentions(("HH3C-LswINF-MIB", "hh3cifXXEntry"))
hh3cifXXEntry.setIndexNames(*ifEntry.getIndexNames())
if mibBuilder.loadTexts: hh3cifXXEntry.setStatus('current')
if mibBuilder.loadTexts: hh3cifXXEntry.setDescription('Entries of extended H3C private interface information table.')
hh3cifUnBoundPort = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifUnBoundPort.setStatus('current')
if mibBuilder.loadTexts: hh3cifUnBoundPort.setDescription('Whether it is the unbound port. (true indicates that the port is the main port of the aggregation or the port does not participate in the aggregation.)')
hh3cifISPhyPort = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifISPhyPort.setStatus('current')
if mibBuilder.loadTexts: hh3cifISPhyPort.setDescription('Whether it is a physical interface.')
hh3cifAggregatePort = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 3), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifAggregatePort.setStatus('current')
if mibBuilder.loadTexts: hh3cifAggregatePort.setDescription('Whether it is the aggregated port. (if the port participates in the aggregation, this value is true.)')
hh3cifMirrorPort = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 4), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifMirrorPort.setStatus('current')
if mibBuilder.loadTexts: hh3cifMirrorPort.setDescription('Whether it is a mirror port.')
hh3cifVLANType = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("vLANTrunk", 1), ("access", 2), ("hybrid", 3), ("fabric", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifVLANType.setStatus('current')
if mibBuilder.loadTexts: hh3cifVLANType.setDescription('port vlan types. hybrid (3) port can carry multiple VLANs. If fabric function is supported, fabric(4) means the port is a fabric port.')
hh3cifMcastControl = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifMcastControl.setStatus('current')
if mibBuilder.loadTexts: hh3cifMcastControl.setDescription('Broadcast storm suppression with the step length of 1, ranging from 1 to 100 percent. In some products the step is 5, ranging from 5 to 100.')
hh3cifFlowControl = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 7), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifFlowControl.setStatus('current')
if mibBuilder.loadTexts: hh3cifFlowControl.setDescription('Flow control status.')
hh3cifSrcMacControl = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 8), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifSrcMacControl.setStatus('current')
if mibBuilder.loadTexts: hh3cifSrcMacControl.setDescription('Whether to filter by source MAC address.')
hh3cifClearStat = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("clear", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifClearStat.setStatus('current')
if mibBuilder.loadTexts: hh3cifClearStat.setDescription('Clear all port statistics. Read operation not supported.')
hh3cifXXBasePortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifXXBasePortIndex.setStatus('current')
if mibBuilder.loadTexts: hh3cifXXBasePortIndex.setDescription('Index number of the port and the first port index of the device is 1.')
hh3cifXXDevPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifXXDevPortIndex.setStatus('current')
if mibBuilder.loadTexts: hh3cifXXDevPortIndex.setDescription('Device index of the port.')
hh3cifPpsMcastControl = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 12), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifPpsMcastControl.setStatus('current')
if mibBuilder.loadTexts: hh3cifPpsMcastControl.setDescription('The broadcast suppression with pps(packet per second) type. The max value is determined by the port type and product.')
hh3cifPpsBcastDisValControl = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifPpsBcastDisValControl.setStatus('current')
if mibBuilder.loadTexts: hh3cifPpsBcastDisValControl.setDescription("Control the port's pps(packet per second) broadcast suppression. When the port is enabled, its pps broadcast suppression value is the global disperse value, and when disabled, it doesn't suppress broadcast.")
hh3cifUniSuppressionStep = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifUniSuppressionStep.setStatus('current')
if mibBuilder.loadTexts: hh3cifUniSuppressionStep.setDescription('The step of unicast suppression in ratio mode.')
hh3cifPpsUniSuppressionMax = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 15), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifPpsUniSuppressionMax.setStatus('current')
if mibBuilder.loadTexts: hh3cifPpsUniSuppressionMax.setDescription('The max pps(packet per second) value of unicast suppression in pps mode.')
hh3cifMulSuppressionStep = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 16), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifMulSuppressionStep.setStatus('current')
if mibBuilder.loadTexts: hh3cifMulSuppressionStep.setDescription('The step of multicast suppression in ratio mode.')
hh3cifPpsMulSuppressionMax = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 17), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifPpsMulSuppressionMax.setStatus('current')
if mibBuilder.loadTexts: hh3cifPpsMulSuppressionMax.setDescription('The max pps(packet per second) value of multicast suppression in pps mode.')
hh3cifUniSuppression = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 18), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifUniSuppression.setStatus('current')
if mibBuilder.loadTexts: hh3cifUniSuppression.setDescription('The unicast suppression with the ranging from 1 to 100 percent in ratio mode. The step is determined by hh3cifUniSuppressionStep.')
hh3cifPpsUniSuppression = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 19), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifPpsUniSuppression.setStatus('current')
if mibBuilder.loadTexts: hh3cifPpsUniSuppression.setDescription('The unicast suppression in pps(packet per second) mode. The max value is determined by hh3cifPpsUniSuppressionMax.')
hh3cifMulSuppression = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 20), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifMulSuppression.setStatus('current')
if mibBuilder.loadTexts: hh3cifMulSuppression.setDescription('The multicast suppression with ranging from 1 to 100 percent in ratio mode. The step is determined by hh3cifMulSuppressionStep.')
hh3cifPpsMulSuppression = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 21), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifPpsMulSuppression.setStatus('current')
if mibBuilder.loadTexts: hh3cifPpsMulSuppression.setDescription('The multicast suppression in pps(packet per second) mode. The max pps value is determined by hh3cifPpsMulSuppressionMax.')
hh3cifComboActivePort = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("fiber", 1), ("copper", 2), ("na", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifComboActivePort.setStatus('obsolete')
if mibBuilder.loadTexts: hh3cifComboActivePort.setDescription('Active port on combo interface.')
hh3cifBMbpsMulSuppressionMax = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 23), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifBMbpsMulSuppressionMax.setStatus('current')
if mibBuilder.loadTexts: hh3cifBMbpsMulSuppressionMax.setDescription('The maximum value of the multicast suppression with bandwidth-based(Mbps) that a port can be configured.')
hh3cifBMbpsMulSuppression = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 24), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifBMbpsMulSuppression.setStatus('current')
if mibBuilder.loadTexts: hh3cifBMbpsMulSuppression.setDescription('With bandwidth-based multicast suppression, the bandwidth is measured in Mbps. The upper limit of the multicast suppession with bandwidth-based(Mbps) is the value of hh3cifBMbpsMulSuppressionMax in the entry. The default value of hh3cifBMbpsMulSuppression is the value of hh3cifBMbpsMulSuppressionMax.')
hh3cifBKbpsMulSuppressionMax = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 25), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifBKbpsMulSuppressionMax.setStatus('current')
if mibBuilder.loadTexts: hh3cifBKbpsMulSuppressionMax.setDescription('The maximum value of the multicast suppression with bandwidth-based(Kbps) that a port can be configured.')
hh3cifBKbpsMulSuppressionStep = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 26), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifBKbpsMulSuppressionStep.setStatus('current')
if mibBuilder.loadTexts: hh3cifBKbpsMulSuppressionStep.setDescription('The step of multicast suppression with bandwidth-based(Kbps).')
hh3cifBKbpsMulSuppression = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 27), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifBKbpsMulSuppression.setStatus('current')
if mibBuilder.loadTexts: hh3cifBKbpsMulSuppression.setDescription('With bandwidth-based multicast suppression, the bandwidth is measured in Kbps. The upper limit of the multicast suppession with bandwidth-based(Kbps) is the value of hh3cifBKbpsMulSuppressionMax in the entry. The value of hh3cifBKbpsMulSuppression must be multiple of the value of hh3cifBKbpsMulSuppressionStep. The default value of hh3cifBKbpsMulSuppression is the value of hh3cifBKbpsMulSuppressionMax.')
hh3cifUnknownPacketDropMul = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 28), DropDirection().clone('disable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifUnknownPacketDropMul.setStatus('current')
if mibBuilder.loadTexts: hh3cifUnknownPacketDropMul.setDescription("Control the port's unknown-multicast packets drop. When inbound direction is enabled on this port, the port will drop unknown-multicast packets in inbound direction. When outbound direction is enabled on this port, the port will drop unknown-multicast packets in outbound direction. When both directions are enabled on this port, the port will drop unknown-multicast packets in both inbound and outbound directions.")
hh3cifUnknownPacketDropUni = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 29), DropDirection().clone('disable')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifUnknownPacketDropUni.setStatus('current')
if mibBuilder.loadTexts: hh3cifUnknownPacketDropUni.setDescription("Control the port's unknown-unicast packets drop. When inbound direction is enabled on this port, the port will drop unknown-unicast packets in inbound direction. When outbound direction is enabled on this port, the port will drop unknown-unicast packets in outbound direction. When both directions are enabled on this port, the port will drop unknown-unicast packets in both inbound and outbound directions.")
hh3cifBMbpsUniSuppressionMax = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 30), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifBMbpsUniSuppressionMax.setStatus('current')
if mibBuilder.loadTexts: hh3cifBMbpsUniSuppressionMax.setDescription(' The maximum value of the unicast suppression with bandwidth-based (Mbps) that a port can be configured.')
hh3cifBMbpsUniSuppression = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 31), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifBMbpsUniSuppression.setStatus('current')
if mibBuilder.loadTexts: hh3cifBMbpsUniSuppression.setDescription(' With bandwidth-based Unicast suppression, the bandwidth is measured in Mbps. The upper limit of the unicast suppession with bandwidth-based(Mbps) is the value of hh3cifBMbpsUniSuppressionMax in the entry. The default value of hh3cifBMbpsUniSuppression is the value of hh3cifBMbpsUniSuppressionMax.')
hh3cifBKbpsUniSuppressionMax = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 32), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifBKbpsUniSuppressionMax.setStatus('current')
if mibBuilder.loadTexts: hh3cifBKbpsUniSuppressionMax.setDescription(' The maximum value of the unicast suppression with bandwidth-based (Kbps) that a port can be configured.')
hh3cifBKbpsUniSuppressionStep = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 33), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifBKbpsUniSuppressionStep.setStatus('current')
if mibBuilder.loadTexts: hh3cifBKbpsUniSuppressionStep.setDescription(' The step of unicast suppression with bandwidth-based(Kbps).')
hh3cifBKbpsUniSuppression = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 34), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifBKbpsUniSuppression.setStatus('current')
if mibBuilder.loadTexts: hh3cifBKbpsUniSuppression.setDescription(' With bandwidth-based unicast suppression, the bandwidth is measured in Kbps. The upper limit of the unicast suppession with bandwidth-based(Kbps) is the value of hh3cifBKbpsUniSuppressionMax in the entry. The value of hh3cifBKbpsUniSuppression must be multiple of the value of hh3cifBKbpsUniSuppressionStep. The default value of hh3cifBKbpsUniSuppression is the value of hh3cifBKbpsUniSuppressionMax.')
hh3cifOutPayloadOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 35), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifOutPayloadOctets.setStatus('current')
if mibBuilder.loadTexts: hh3cifOutPayloadOctets.setDescription(' The actual output octets of the interface.')
hh3cifInPayloadOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 36), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifInPayloadOctets.setStatus('current')
if mibBuilder.loadTexts: hh3cifInPayloadOctets.setDescription(' The actual input octets of the interface.')
hh3cifInErrorPktsRate = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 37), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifInErrorPktsRate.setStatus('current')
if mibBuilder.loadTexts: hh3cifInErrorPktsRate.setDescription(' The rate of inbound error packets on the interface.')
hh3cifInPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 38), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifInPkts.setStatus('current')
if mibBuilder.loadTexts: hh3cifInPkts.setDescription(' The number of packets received on the interface.')
hh3cifInNormalPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 39), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifInNormalPkts.setStatus('current')
if mibBuilder.loadTexts: hh3cifInNormalPkts.setDescription(' The number of normal packets received on the interface.')
hh3cifOutPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 40), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifOutPkts.setStatus('current')
if mibBuilder.loadTexts: hh3cifOutPkts.setDescription(' The number of packets sent on the interface.')
hh3cifAggregateTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 2), )
if mibBuilder.loadTexts: hh3cifAggregateTable.setStatus('current')
if mibBuilder.loadTexts: hh3cifAggregateTable.setDescription('Port aggregation information table.')
hh3cifAggregateEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 2, 1), ).setIndexNames((0, "HH3C-LswINF-MIB", "hh3cifAggregatePortIndex"))
if mibBuilder.loadTexts: hh3cifAggregateEntry.setStatus('current')
if mibBuilder.loadTexts: hh3cifAggregateEntry.setDescription('Port aggregation information table.')
hh3cifAggregatePortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 2, 1, 1), InterfaceIndex()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifAggregatePortIndex.setStatus('current')
if mibBuilder.loadTexts: hh3cifAggregatePortIndex.setDescription('Index number of the main aggregated port.')
hh3cifAggregatePortName = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 2, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifAggregatePortName.setStatus('current')
if mibBuilder.loadTexts: hh3cifAggregatePortName.setDescription('Aggregation group name.')
hh3cifAggregatePortListPorts = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 2, 1, 3), PortList()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifAggregatePortListPorts.setStatus('current')
if mibBuilder.loadTexts: hh3cifAggregatePortListPorts.setDescription('Portlist of a aggregating.')
hh3cifAggregateModel = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("ingress", 1), ("both", 2), ("round-robin", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifAggregateModel.setStatus('current')
if mibBuilder.loadTexts: hh3cifAggregateModel.setDescription('Load sharing mode for the port aggregation.')
hh3cifAggregateOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 2, 1, 5), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cifAggregateOperStatus.setStatus('current')
if mibBuilder.loadTexts: hh3cifAggregateOperStatus.setDescription('Current operation status of the row.')
hh3cifHybridPortTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 3), )
if mibBuilder.loadTexts: hh3cifHybridPortTable.setStatus('current')
if mibBuilder.loadTexts: hh3cifHybridPortTable.setDescription('Hybrid-port configuration table.')
hh3cifHybridPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 3, 1), ).setIndexNames((0, "HH3C-LswINF-MIB", "hh3cifHybridPortIndex"))
if mibBuilder.loadTexts: hh3cifHybridPortEntry.setStatus('current')
if mibBuilder.loadTexts: hh3cifHybridPortEntry.setDescription('Hybrid-port configuration table.')
hh3cifHybridPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifHybridPortIndex.setStatus('current')
if mibBuilder.loadTexts: hh3cifHybridPortIndex.setDescription('Index number of Hybrid-port.')
hh3cifHybridTaggedVlanListLow = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 3, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 256))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifHybridTaggedVlanListLow.setStatus('current')
if mibBuilder.loadTexts: hh3cifHybridTaggedVlanListLow.setDescription("Each octet within this value specifies a set of eight VLANs, with the first octet specifying VLANs 1 through 8, the second octet specifying VLANs 9 through 16, etc. Within each octet, the most significant bit represents the highest numbered VLAN, and the least significant bit represents the lowest numbered VLAN. Thus, each tagged VLAN of the hybrid port is represented by a single bit within the value of this object. If that bit has a value of '1' then that VLAN is tagged in the set of VLANs; the VLAN is not tagged if its bit has a value of '0'.")
hh3cifHybridTaggedVlanListHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 3, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 256))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifHybridTaggedVlanListHigh.setStatus('current')
if mibBuilder.loadTexts: hh3cifHybridTaggedVlanListHigh.setDescription("Each octet within this value specifies a set of eight VLANs, with the first octet specifying VLANs 2049 through 2056, the second octet specifying VLANs 2057 through 2064, etc. Within each octet, the most significant bit represents the highest numbered VLAN, and the least significant bit represents the lowest numbered VLAN. Thus, each tagged VLAN of the hybrid port is represented by a single bit within the value of this object. If that bit has a value of '1' then that VLAN is tagged in the set of VLANs; the VLAN is not tagged if its bit has a value of '0'.")
hh3cifHybridUnTaggedVlanListLow = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 3, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 256))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifHybridUnTaggedVlanListLow.setStatus('current')
if mibBuilder.loadTexts: hh3cifHybridUnTaggedVlanListLow.setDescription("Each octet within this value specifies a set of eight VLANs, with the first octet specifying VLANs 1 through 8, the second octet specifying VLANs 9 through 16, etc. Within each octet, the most significant bit represents the highest numbered VLAN, and the least significant bit represents the lowest numbered VLAN. Thus, each untagged VLAN of the hybrid port is represented by a single bit within the value of this object. If that bit has a value of '1' then that VLAN is untagged in the set of VLANs; the VLAN is not untagged if its bit has a value of '0'.")
hh3cifHybridUnTaggedVlanListHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 3, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 256))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifHybridUnTaggedVlanListHigh.setStatus('current')
if mibBuilder.loadTexts: hh3cifHybridUnTaggedVlanListHigh.setDescription("Each octet within this value specifies a set of eight VLANs, with the first octet specifying VLANs 2049 through 2056, the second octet specifying VLANs 2057 through 2064, etc. Within each octet, the most significant bit represents the highest numbered VLAN, and the least significant bit represents the lowest numbered VLAN. Thus, each untagged VLAN of the hybrid port is represented by a single bit within the value of this object. If that bit has a value of '1' then that VLAN is untagged in the set of VLANs; the VLAN is not untagged if its bit has a value of '0'.")
hh3cifComboPortTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 4), )
if mibBuilder.loadTexts: hh3cifComboPortTable.setStatus('current')
if mibBuilder.loadTexts: hh3cifComboPortTable.setDescription('Combo-port table.')
hh3cifComboPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 4, 1), ).setIndexNames((0, "HH3C-LswINF-MIB", "hh3cifComboPortIndex"))
if mibBuilder.loadTexts: hh3cifComboPortEntry.setStatus('current')
if mibBuilder.loadTexts: hh3cifComboPortEntry.setDescription('The entry of hh3cifComboPortTable.')
hh3cifComboPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 4, 1, 1), InterfaceIndex()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifComboPortIndex.setStatus('current')
if mibBuilder.loadTexts: hh3cifComboPortIndex.setDescription('The combo-port interface index. Its value is the same as the value of ifIndex in ifTable, but only includes indexes of the combo-port interfaces.')
hh3cifComboPortCurActive = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("fiber", 1), ("copper", 2), ("na", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifComboPortCurActive.setStatus('current')
if mibBuilder.loadTexts: hh3cifComboPortCurActive.setDescription("Current active interface of combo interfaces. The value 'fiber' means the interface with fiber connector of the pair of combo-port interfaces is active. The value 'copper' means the interface with copper connector of the pair is active. The value 'na' means not supported.")
hh3cLswL2InfMibObject = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1))
hh3cSlotPortMax = MibScalar((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cSlotPortMax.setStatus('current')
if mibBuilder.loadTexts: hh3cSlotPortMax.setDescription('Max ports of the slots.')
hh3cSwitchPortMax = MibScalar((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cSwitchPortMax.setStatus('current')
if mibBuilder.loadTexts: hh3cSwitchPortMax.setDescription('Max ports that this switch includes.')
hh3cifVLANTrunkStatusTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 3), )
if mibBuilder.loadTexts: hh3cifVLANTrunkStatusTable.setStatus('current')
if mibBuilder.loadTexts: hh3cifVLANTrunkStatusTable.setDescription('Gmosaic attributes on the VlanTrunk port.')
hh3cifVLANTrunkStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 3, 1), ).setIndexNames((0, "HH3C-LswINF-MIB", "hh3cifVLANTrunkIndex"))
if mibBuilder.loadTexts: hh3cifVLANTrunkStatusEntry.setStatus('current')
if mibBuilder.loadTexts: hh3cifVLANTrunkStatusEntry.setDescription('Gmosaic attributes on the VlanTrunk port.')
hh3cifVLANTrunkIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 3, 1, 1), InterfaceIndex()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifVLANTrunkIndex.setStatus('current')
if mibBuilder.loadTexts: hh3cifVLANTrunkIndex.setDescription('Index number of the VLANTrunk interface.')
hh3cifVLANTrunkGvrpRegistration = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("normal", 1), ("fixed", 2), ("forbidden", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifVLANTrunkGvrpRegistration.setStatus('current')
if mibBuilder.loadTexts: hh3cifVLANTrunkGvrpRegistration.setDescription('GMOSAIC registration information normal: This is the default configuration. Allow create, register and unregister vlans dynamiclly at this port. fixed: Aallow create and register vlan manually at this port. Prevent from unregistering vlans or registering known vlans of this port at another trunk port. forbidden: Unregister all vlans but vlan 1, forbid to create or register any other vlans at this port.')
hh3cifVLANTrunkPassListLow = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 3, 1, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifVLANTrunkPassListLow.setStatus('current')
if mibBuilder.loadTexts: hh3cifVLANTrunkPassListLow.setDescription("Each octet within this value specifies a set of eight VLANs, with the first octet specifying VLANs 1 through 8, the second octet specifying VLANs 9 through 16, etc. Within each octet, the most significant bit represents the highest numbered VLAN, and the least significant bit represents the lowest numbered VLAN. Thus, each actually passed VLAN of the trunk port is represented by a single bit within the value of this object. If that bit has a value of '1' then that VLAN is actually passed in the set of VLANs; the VLAN is not actually passed if its bit has a value of '0'.")
hh3cifVLANTrunkPassListHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 3, 1, 5), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifVLANTrunkPassListHigh.setStatus('current')
if mibBuilder.loadTexts: hh3cifVLANTrunkPassListHigh.setDescription("Each octet within this value specifies a set of eight VLANs, with the first octet specifying VLANs 2049 through 2056, the second octet specifying VLANs 2057 through 2064, etc. Within each octet, the most significant bit represents the highest numbered VLAN, and the least significant bit represents the lowest numbered VLAN. Thus, each actually passed VLAN of the trunk port is represented by a single bit within the value of this object. If that bit has a value of '1' then that VLAN is actually passed in the set of VLANs; the VLAN is not actually passed if its bit has a value of '0'.")
hh3cifVLANTrunkAllowListLow = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 3, 1, 6), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifVLANTrunkAllowListLow.setStatus('current')
if mibBuilder.loadTexts: hh3cifVLANTrunkAllowListLow.setDescription("Each octet within this value specifies a set of eight VLANs, with the first octet specifying VLANs 1 through 8, the second octet specifying VLANs 9 through 16, etc. Within each octet, the most significant bit represents the highest numbered VLAN, and the least significant bit represents the lowest numbered VLAN. Thus, each allowed VLAN of the trunk port is represented by a single bit within the value of this object. If that bit has a value of '1' then that VLAN is allowed in the set of VLANs; the VLAN is not allowed if its bit has a value of '0'.")
hh3cifVLANTrunkAllowListHigh = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 3, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifVLANTrunkAllowListHigh.setStatus('current')
if mibBuilder.loadTexts: hh3cifVLANTrunkAllowListHigh.setDescription("Each octet within this value specifies a set of eight VLANs, with the first octet specifying VLANs 2049 through 2056, the second octet specifying VLANs 2057 through 2064, etc. Within each octet, the most significant bit represents the highest numbered VLAN, and the least significant bit represents the lowest numbered VLAN. Thus, each allowed VLAN of the trunk port is represented by a single bit within the value of this object. If that bit has a value of '1' then that VLAN is allowed in the set of VLANs; the VLAN is not allowed if its bit has a value of '0'.")
hh3cethernetTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4), )
if mibBuilder.loadTexts: hh3cethernetTable.setStatus('current')
if mibBuilder.loadTexts: hh3cethernetTable.setDescription('Ethernet port attribute table.')
hh3cethernetEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1), )
ifEntry.registerAugmentions(("HH3C-LswINF-MIB", "hh3cethernetEntry"))
hh3cethernetEntry.setIndexNames(*ifEntry.getIndexNames())
if mibBuilder.loadTexts: hh3cethernetEntry.setStatus('current')
if mibBuilder.loadTexts: hh3cethernetEntry.setDescription('Entries of Ethernet port attribute table')
hh3cifEthernetDuplex = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("full", 1), ("half", 2), ("auto", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifEthernetDuplex.setStatus('current')
if mibBuilder.loadTexts: hh3cifEthernetDuplex.setDescription('Ethernet interface mode.')
hh3cifEthernetMTU = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifEthernetMTU.setStatus('current')
if mibBuilder.loadTexts: hh3cifEthernetMTU.setDescription('MTU on the Ethernet interface.')
hh3cifEthernetSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 10, 100, 1000, 10000, 24000))).clone(namedValues=NamedValues(("auto", 0), ("s10M", 10), ("s100M", 100), ("s1000M", 1000), ("s10000M", 10000), ("s24000M", 24000)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifEthernetSpeed.setStatus('current')
if mibBuilder.loadTexts: hh3cifEthernetSpeed.setDescription('Ethernet interface speed.')
hh3cifEthernetMdi = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("mdi-ii", 1), ("mdi-x", 2), ("mdi-auto", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifEthernetMdi.setStatus('current')
if mibBuilder.loadTexts: hh3cifEthernetMdi.setDescription('Type of the line connected to the port. MDI-II (straight-through cable): 1 MDI-X (crossover cable): 2 MDI-AUTO (auto-sensing): 3')
hh3cMaxMacLearn = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 2147483647))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cMaxMacLearn.setStatus('current')
if mibBuilder.loadTexts: hh3cMaxMacLearn.setDescription('The maximum number of MAC addresses that the port can learn. The value -1 means that the number of Mac addresses that the port can learn is unlimited.')
hh3cifMacAddressLearn = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifMacAddressLearn.setStatus('current')
if mibBuilder.loadTexts: hh3cifMacAddressLearn.setDescription('This object indicates if the interface is allowed to learn mac address. eanbled(1) means the interface can learn mac address, otherwise disabled(2) can be set.')
hh3cifEthernetTest = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("test", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifEthernetTest.setStatus('current')
if mibBuilder.loadTexts: hh3cifEthernetTest.setDescription('Test this interface. The actual testing will be different according to products. Read operation not supported.')
hh3cifMacAddrLearnMode = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("iVL", 1), ("sVL", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifMacAddrLearnMode.setStatus('current')
if mibBuilder.loadTexts: hh3cifMacAddrLearnMode.setDescription('Status indicates mac address learn mode of the interface. IVL(1) means independent VLAN learning. SVL means shared VLAN learning.')
hh3cifEthernetFlowInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 300))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifEthernetFlowInterval.setStatus('current')
if mibBuilder.loadTexts: hh3cifEthernetFlowInterval.setDescription('Set flow interval of the ethernet. The NMS should set value to integer which is a multiple of 5.')
hh3cifEthernetIsolate = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 13), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifEthernetIsolate.setStatus('current')
if mibBuilder.loadTexts: hh3cifEthernetIsolate.setDescription("Isolate group means that all ports in the same isolate group can not send and receive packets each other. Each octet within this value specifies a set of eight isolate groups, with the first octet specifying isolate groups 1 through 8, the second octet specifying isolate groups 9 through 16, etc. Within each octet, the leftmost bit is the first bit. the first bit represents the lowest numbered isolate group, and the last bit represents the highest numbered isolate group. one port can belong to more than one isolate group. Thus, each isolate group is represented by a single bit within the value of this object. If that bit has a value of '1', then that isolate group includes this port; the port is not included if its bit has a value of '0'. for example, the first octet is '10000100' means that the port is included in the isolate group 1 and isolate group 6.")
hh3cifVlanVPNStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifVlanVPNStatus.setStatus('current')
if mibBuilder.loadTexts: hh3cifVlanVPNStatus.setDescription('Vlan VPN enable status.')
hh3cifVlanVPNUplinkStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifVlanVPNUplinkStatus.setStatus('current')
if mibBuilder.loadTexts: hh3cifVlanVPNUplinkStatus.setDescription('Vlan VPN uplink status.')
hh3cifVlanVPNTPID = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifVlanVPNTPID.setStatus('current')
if mibBuilder.loadTexts: hh3cifVlanVPNTPID.setDescription('Port based Vlan VPN TPID(Tag Protocol Indentifier), default value is 0x8100. Please refer to hh3cVlanVPNTPIDMode to get more information.')
hh3cifIsolateGroupID = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 17), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifIsolateGroupID.setStatus('current')
if mibBuilder.loadTexts: hh3cifIsolateGroupID.setDescription('Isolate group identifier. Value zero means this interface does not belong to any isolate group.')
hh3cifisUplinkPort = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifisUplinkPort.setStatus('current')
if mibBuilder.loadTexts: hh3cifisUplinkPort.setDescription('Ethernet uplink status, default value is 2.')
hh3cifEthernetAutoSpeedMask = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 19), SpeedModeFlag()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cifEthernetAutoSpeedMask.setStatus('current')
if mibBuilder.loadTexts: hh3cifEthernetAutoSpeedMask.setDescription("This object specifies which kinds of speed mode can be negotiated. Each bit corresponds to a kind of speed mode. If the value of a bit is '1', it means the corresponding speed mode is negotiable on the port. Otherwise the negotiation for that kind of speed mode is not supported on this port. If there are several negotiable speed modes, all bits for them are '1'. For example, if the speed mode 's10M' and 's1000M' can be negotiable, the value of this object is 0xA0.")
hh3cifEthernetAutoSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 20), SpeedModeFlag()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cifEthernetAutoSpeed.setStatus('current')
if mibBuilder.loadTexts: hh3cifEthernetAutoSpeed.setDescription("This object indicates which kinds of speed mode are negotiable on this port. Only when a bit of hh3cifEthernetAutoSpeedMask is '1', the corresponding bit of this object can be set to '1', indicating the corresponding speed mode is negotiable. For example, if the value of hh3cifEthernetAutoSpeedMask is 0xA0, which indicates speed mode 's10M' and 's1000M' are negotiable, the possible value of this object should be one of the four values (0x00, 0x20, 0x80 and 0xA0). If the value of hh3cifEthernetSpeed is not 'auto', the value of this object is insignificant and should be ignored. The value length of this object should be as long as that of hh3cifEthernetAutoSpeedMask.")
hh3cIsolateGroupMax = MibScalar((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cIsolateGroupMax.setStatus('current')
if mibBuilder.loadTexts: hh3cIsolateGroupMax.setDescription('Max isolate group that this device support, the value is zero means that the device does not support isolate group.')
hh3cGlobalBroadcastMaxPps = MibScalar((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 14881000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cGlobalBroadcastMaxPps.setStatus('current')
if mibBuilder.loadTexts: hh3cGlobalBroadcastMaxPps.setDescription('The global max packets per second. When it is set, the value of BroadcastMaxPps in all ports will be changed to that setting.')
hh3cGlobalBroadcastMaxRatio = MibScalar((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cGlobalBroadcastMaxRatio.setStatus('current')
if mibBuilder.loadTexts: hh3cGlobalBroadcastMaxRatio.setDescription('The global max-ratio of broadcast from 0 to 100 percent. When it is set, the value of BroadcastMaxRatio in all ports will be changed to that setting.')
hh3cBpduTunnelStatus = MibScalar((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cBpduTunnelStatus.setStatus('current')
if mibBuilder.loadTexts: hh3cBpduTunnelStatus.setDescription('Bpdu tunnel enable status.')
hh3cVlanVPNTPIDMode = MibScalar((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("port-based", 1), ("global", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cVlanVPNTPIDMode.setStatus('current')
if mibBuilder.loadTexts: hh3cVlanVPNTPIDMode.setDescription("Vlan VPN TPID mode. The value 'port-based' means VLAN VPN TPID value would be set based on port via hh3cifVlanVPNTPID. In this situation, hh3cVlanVPNTPID is meaningless and always return 0x8100. The value 'global' means VLAN VPN TPID value should be set globally via hh3cVlanVPNTPID. In this situation, hh3cifVlanVPNTPID in hh3cethernetTable has the same value with hh3cVlanVPNTPID.")
hh3cVlanVPNTPID = MibScalar((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cVlanVPNTPID.setStatus('current')
if mibBuilder.loadTexts: hh3cVlanVPNTPID.setDescription('Global Vlan VPN TPID(Tag Protocol Indentifier), default value is 0x8100.')
hh3cPortIsolateGroupTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 11), )
if mibBuilder.loadTexts: hh3cPortIsolateGroupTable.setStatus('current')
if mibBuilder.loadTexts: hh3cPortIsolateGroupTable.setDescription('Isolate Group attribute table.')
hh3cPortIsolateGroupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 11, 1), ).setIndexNames((0, "HH3C-LswINF-MIB", "hh3cPortIsolateGroupIndex"))
if mibBuilder.loadTexts: hh3cPortIsolateGroupEntry.setStatus('current')
if mibBuilder.loadTexts: hh3cPortIsolateGroupEntry.setDescription('The entry of hh3cPortIsolateGroupTable.')
hh3cPortIsolateGroupIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 11, 1, 1), Integer32())
if mibBuilder.loadTexts: hh3cPortIsolateGroupIndex.setStatus('current')
if mibBuilder.loadTexts: hh3cPortIsolateGroupIndex.setDescription('Port isolate group identifier. The index of the hh3cPortIsolateGroupTable. The value ranges from 1 to the limit of isolate group quantity.')
hh3cPortIsolateUplinkIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 11, 1, 2), InterfaceIndex()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cPortIsolateUplinkIfIndex.setStatus('current')
if mibBuilder.loadTexts: hh3cPortIsolateUplinkIfIndex.setDescription('Index number of the uplink interface.')
hh3cPortIsolateGroupRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 11, 1, 3), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cPortIsolateGroupRowStatus.setStatus('current')
if mibBuilder.loadTexts: hh3cPortIsolateGroupRowStatus.setDescription('Current operation status of the row.')
hh3cPortIsolateGroupDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 11, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cPortIsolateGroupDescription.setStatus('current')
if mibBuilder.loadTexts: hh3cPortIsolateGroupDescription.setDescription('Port isolate group description, default value is zero-length string.')
hh3cMaxMacLearnRange = MibScalar((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cMaxMacLearnRange.setStatus('current')
if mibBuilder.loadTexts: hh3cMaxMacLearnRange.setDescription('The maximum number of MAC address that the port supports.')
mibBuilder.exportSymbols("HH3C-LswINF-MIB", hh3cMaxMacLearn=hh3cMaxMacLearn, hh3cifPpsUniSuppression=hh3cifPpsUniSuppression, hh3cifEthernetFlowInterval=hh3cifEthernetFlowInterval, hh3cifVLANType=hh3cifVLANType, hh3cGlobalBroadcastMaxRatio=hh3cGlobalBroadcastMaxRatio, hh3cifPpsMulSuppression=hh3cifPpsMulSuppression, hh3cifAggregateModel=hh3cifAggregateModel, hh3cIsolateGroupMax=hh3cIsolateGroupMax, hh3cifVLANTrunkAllowListLow=hh3cifVLANTrunkAllowListLow, hh3cifEthernetMdi=hh3cifEthernetMdi, hh3cifHybridPortIndex=hh3cifHybridPortIndex, hh3cVlanVPNTPID=hh3cVlanVPNTPID, hh3cifEthernetSpeed=hh3cifEthernetSpeed, hh3cifEthernetMTU=hh3cifEthernetMTU, hh3cifEthernetDuplex=hh3cifEthernetDuplex, hh3cLswL2InfMibObject=hh3cLswL2InfMibObject, hh3cifisUplinkPort=hh3cifisUplinkPort, hh3cifVLANTrunkPassListLow=hh3cifVLANTrunkPassListLow, hh3cBpduTunnelStatus=hh3cBpduTunnelStatus, hh3cifBMbpsUniSuppressionMax=hh3cifBMbpsUniSuppressionMax, hh3cifComboPortTable=hh3cifComboPortTable, SpeedModeFlag=SpeedModeFlag, hh3cifXXDevPortIndex=hh3cifXXDevPortIndex, hh3cifVlanVPNTPID=hh3cifVlanVPNTPID, hh3cifClearStat=hh3cifClearStat, hh3cifVLANTrunkAllowListHigh=hh3cifVLANTrunkAllowListHigh, hh3cifAggregatePort=hh3cifAggregatePort, hh3cPortIsolateGroupRowStatus=hh3cPortIsolateGroupRowStatus, hh3cPortIsolateGroupDescription=hh3cPortIsolateGroupDescription, hh3cifInNormalPkts=hh3cifInNormalPkts, hh3cifAggregatePortIndex=hh3cifAggregatePortIndex, hh3cifOutPayloadOctets=hh3cifOutPayloadOctets, hh3cifHybridUnTaggedVlanListHigh=hh3cifHybridUnTaggedVlanListHigh, hh3cifISPhyPort=hh3cifISPhyPort, hh3cifUnknownPacketDropMul=hh3cifUnknownPacketDropMul, hh3cifBKbpsUniSuppressionStep=hh3cifBKbpsUniSuppressionStep, hh3cifPpsMulSuppressionMax=hh3cifPpsMulSuppressionMax, hh3cifEthernetAutoSpeedMask=hh3cifEthernetAutoSpeedMask, hh3cifUniSuppression=hh3cifUniSuppression, hh3cifMacAddressLearn=hh3cifMacAddressLearn, hh3cPortIsolateGroupIndex=hh3cPortIsolateGroupIndex, hh3cifInPkts=hh3cifInPkts, hh3cifMcastControl=hh3cifMcastControl, hh3cifBKbpsUniSuppressionMax=hh3cifBKbpsUniSuppressionMax, hh3cifVLANTrunkStatusTable=hh3cifVLANTrunkStatusTable, hh3cLswL2InfMib=hh3cLswL2InfMib, hh3cifMulSuppressionStep=hh3cifMulSuppressionStep, DropDirection=DropDirection, hh3cifBMbpsMulSuppressionMax=hh3cifBMbpsMulSuppressionMax, hh3cifHybridTaggedVlanListHigh=hh3cifHybridTaggedVlanListHigh, hh3cifVLANTrunkStatusEntry=hh3cifVLANTrunkStatusEntry, hh3cifEthernetTest=hh3cifEthernetTest, hh3cifVLANTrunkIndex=hh3cifVLANTrunkIndex, hh3cifComboPortCurActive=hh3cifComboPortCurActive, PYSNMP_MODULE_ID=hh3cLswL2InfMib, hh3cPortIsolateGroupEntry=hh3cPortIsolateGroupEntry, hh3cifInPayloadOctets=hh3cifInPayloadOctets, hh3cifAggregatePortName=hh3cifAggregatePortName, hh3cifInErrorPktsRate=hh3cifInErrorPktsRate, hh3cifSrcMacControl=hh3cifSrcMacControl, InterfaceIndex=InterfaceIndex, hh3cifXXBasePortIndex=hh3cifXXBasePortIndex, hh3cifHybridPortTable=hh3cifHybridPortTable, hh3cSlotPortMax=hh3cSlotPortMax, hh3cifVLANTrunkGvrpRegistration=hh3cifVLANTrunkGvrpRegistration, hh3cPortIsolateUplinkIfIndex=hh3cPortIsolateUplinkIfIndex, hh3cLswExtInterface=hh3cLswExtInterface, hh3cifOutPkts=hh3cifOutPkts, hh3cifHybridTaggedVlanListLow=hh3cifHybridTaggedVlanListLow, hh3cifIsolateGroupID=hh3cifIsolateGroupID, PortList=PortList, hh3cPortIsolateGroupTable=hh3cPortIsolateGroupTable, hh3cifAggregateTable=hh3cifAggregateTable, hh3cifEthernetAutoSpeed=hh3cifEthernetAutoSpeed, hh3cifPpsUniSuppressionMax=hh3cifPpsUniSuppressionMax, hh3cifBKbpsUniSuppression=hh3cifBKbpsUniSuppression, VlanIndex=VlanIndex, hh3cifHybridUnTaggedVlanListLow=hh3cifHybridUnTaggedVlanListLow, hh3cifBKbpsMulSuppressionStep=hh3cifBKbpsMulSuppressionStep, hh3cSwitchPortMax=hh3cSwitchPortMax, hh3cifBMbpsUniSuppression=hh3cifBMbpsUniSuppression, hh3cifComboPortEntry=hh3cifComboPortEntry, hh3cifVlanVPNStatus=hh3cifVlanVPNStatus, hh3cifXXEntry=hh3cifXXEntry, hh3cifMirrorPort=hh3cifMirrorPort, hh3cifEthernetIsolate=hh3cifEthernetIsolate, hh3cifMulSuppression=hh3cifMulSuppression, hh3cGlobalBroadcastMaxPps=hh3cGlobalBroadcastMaxPps, hh3cifComboActivePort=hh3cifComboActivePort, hh3cifUniSuppressionStep=hh3cifUniSuppressionStep, hh3cifMacAddrLearnMode=hh3cifMacAddrLearnMode, hh3cifAggregateOperStatus=hh3cifAggregateOperStatus, hh3cifXXTable=hh3cifXXTable, hh3cifPpsMcastControl=hh3cifPpsMcastControl, hh3cifVlanVPNUplinkStatus=hh3cifVlanVPNUplinkStatus, hh3cifFlowControl=hh3cifFlowControl, hh3cifPpsBcastDisValControl=hh3cifPpsBcastDisValControl, hh3cMaxMacLearnRange=hh3cMaxMacLearnRange, hh3cethernetEntry=hh3cethernetEntry, hh3cifHybridPortEntry=hh3cifHybridPortEntry, hh3cethernetTable=hh3cethernetTable, hh3cifAggregateEntry=hh3cifAggregateEntry, hh3cifAggregatePortListPorts=hh3cifAggregatePortListPorts, hh3cifBKbpsMulSuppressionMax=hh3cifBKbpsMulSuppressionMax, hh3cifBMbpsMulSuppression=hh3cifBMbpsMulSuppression, hh3cVlanVPNTPIDMode=hh3cVlanVPNTPIDMode, hh3cifUnBoundPort=hh3cifUnBoundPort, hh3cifVLANTrunkPassListHigh=hh3cifVLANTrunkPassListHigh, hh3cifBKbpsMulSuppression=hh3cifBKbpsMulSuppression, hh3cifUnknownPacketDropUni=hh3cifUnknownPacketDropUni, hh3cifComboPortIndex=hh3cifComboPortIndex)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, single_value_constraint, value_range_constraint, constraints_union, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection')
(hh3clsw_common,) = mibBuilder.importSymbols('HH3C-OID-MIB', 'hh3clswCommon')
(if_entry, if_index) = mibBuilder.importSymbols('IF-MIB', 'ifEntry', 'ifIndex')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(mib_scalar, mib_table, mib_table_row, mib_table_column, counter64, ip_address, counter32, object_identity, bits, time_ticks, module_identity, gauge32, iso, notification_type, unsigned32, mib_identifier, integer32) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Counter64', 'IpAddress', 'Counter32', 'ObjectIdentity', 'Bits', 'TimeTicks', 'ModuleIdentity', 'Gauge32', 'iso', 'NotificationType', 'Unsigned32', 'MibIdentifier', 'Integer32')
(truth_value, row_status, display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'TruthValue', 'RowStatus', 'DisplayString', 'TextualConvention')
hh3c_lsw_l2_inf_mib = module_identity((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5))
hh3cLswL2InfMib.setRevisions(('2001-06-29 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
hh3cLswL2InfMib.setRevisionsDescriptions(('',))
if mibBuilder.loadTexts:
hh3cLswL2InfMib.setLastUpdated('200106290000Z')
if mibBuilder.loadTexts:
hh3cLswL2InfMib.setOrganization('Hangzhou H3C Tech. Co., Ltd.')
if mibBuilder.loadTexts:
hh3cLswL2InfMib.setContactInfo('Platform Team Hangzhou H3C Tech. Co., Ltd. Hai-Dian District Beijing P.R. China http://www.h3c.com Zip:100085 ')
if mibBuilder.loadTexts:
hh3cLswL2InfMib.setDescription('')
class Portlist(TextualConvention, OctetString):
description = "Each octet within this value specifies a set of eight ports, with the first octet specifying ports 1 through 8, the second octet specifying ports 9 through 16, etc. Within each octet, the most significant bit represents the lowest numbered port, and the least significant bit represents the highest numbered port. Thus, each port of the bridge is represented by a single bit within the value of this object. If that bit has a value of '1' then that port is included in the set of ports; the port is not included if its bit has a value of '0'."
status = 'current'
class Vlanindex(TextualConvention, Unsigned32):
description = 'A value used to index per-VLAN tables: values of 0 and 4095 are not permitted; if the value is between 1 and 4094 inclusive, it represents an IEEE 802.1Q VLAN-ID with global scope within a given bridged domain (see VlanId textual convention). If the value is greater than 4095 then it represents a VLAN with scope local to the particular agent, i.e. one without a global VLAN-ID assigned to it. Such VLANs are outside the scope of IEEE 802.1Q but it is convenient to be able to manage them in the same way using this MIB.'
status = 'current'
subtype_spec = Unsigned32.subtypeSpec + value_range_constraint(0, 4294967295)
class Interfaceindex(TextualConvention, Integer32):
description = "A unique value, greater than zero, for each interface or interface sub-layer in the managed system. It is recommended that values are assigned contiguously starting from 1. The value for each interface sub-layer must remain constant at least from one re-initialization of the entity's network management system to the next re-initialization."
status = 'current'
display_hint = 'd'
class Dropdirection(TextualConvention, Integer32):
description = 'Representing the direction of dropping packets, if applicable.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4))
named_values = named_values(('disable', 1), ('enableInbound', 2), ('enableOutbound', 3), ('enableBoth', 4))
class Speedmodeflag(TextualConvention, Bits):
description = 'Type of Negotiable Speed mode.'
status = 'current'
named_values = named_values(('s10M', 0), ('s100M', 1), ('s1000M', 2), ('s10000M', 3), ('s24000M', 4))
hh3c_lsw_ext_interface = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1))
hh3cif_xx_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1))
if mibBuilder.loadTexts:
hh3cifXXTable.setStatus('current')
if mibBuilder.loadTexts:
hh3cifXXTable.setDescription('Extended H3C private interface information table.')
hh3cif_xx_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1))
ifEntry.registerAugmentions(('HH3C-LswINF-MIB', 'hh3cifXXEntry'))
hh3cifXXEntry.setIndexNames(*ifEntry.getIndexNames())
if mibBuilder.loadTexts:
hh3cifXXEntry.setStatus('current')
if mibBuilder.loadTexts:
hh3cifXXEntry.setDescription('Entries of extended H3C private interface information table.')
hh3cif_un_bound_port = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 1), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifUnBoundPort.setStatus('current')
if mibBuilder.loadTexts:
hh3cifUnBoundPort.setDescription('Whether it is the unbound port. (true indicates that the port is the main port of the aggregation or the port does not participate in the aggregation.)')
hh3cif_is_phy_port = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 2), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifISPhyPort.setStatus('current')
if mibBuilder.loadTexts:
hh3cifISPhyPort.setDescription('Whether it is a physical interface.')
hh3cif_aggregate_port = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 3), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifAggregatePort.setStatus('current')
if mibBuilder.loadTexts:
hh3cifAggregatePort.setDescription('Whether it is the aggregated port. (if the port participates in the aggregation, this value is true.)')
hh3cif_mirror_port = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 4), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifMirrorPort.setStatus('current')
if mibBuilder.loadTexts:
hh3cifMirrorPort.setDescription('Whether it is a mirror port.')
hh3cif_vlan_type = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('vLANTrunk', 1), ('access', 2), ('hybrid', 3), ('fabric', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifVLANType.setStatus('current')
if mibBuilder.loadTexts:
hh3cifVLANType.setDescription('port vlan types. hybrid (3) port can carry multiple VLANs. If fabric function is supported, fabric(4) means the port is a fabric port.')
hh3cif_mcast_control = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifMcastControl.setStatus('current')
if mibBuilder.loadTexts:
hh3cifMcastControl.setDescription('Broadcast storm suppression with the step length of 1, ranging from 1 to 100 percent. In some products the step is 5, ranging from 5 to 100.')
hh3cif_flow_control = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 7), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifFlowControl.setStatus('current')
if mibBuilder.loadTexts:
hh3cifFlowControl.setDescription('Flow control status.')
hh3cif_src_mac_control = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 8), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifSrcMacControl.setStatus('current')
if mibBuilder.loadTexts:
hh3cifSrcMacControl.setDescription('Whether to filter by source MAC address.')
hh3cif_clear_stat = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('clear', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifClearStat.setStatus('current')
if mibBuilder.loadTexts:
hh3cifClearStat.setDescription('Clear all port statistics. Read operation not supported.')
hh3cif_xx_base_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifXXBasePortIndex.setStatus('current')
if mibBuilder.loadTexts:
hh3cifXXBasePortIndex.setDescription('Index number of the port and the first port index of the device is 1.')
hh3cif_xx_dev_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifXXDevPortIndex.setStatus('current')
if mibBuilder.loadTexts:
hh3cifXXDevPortIndex.setDescription('Device index of the port.')
hh3cif_pps_mcast_control = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 12), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifPpsMcastControl.setStatus('current')
if mibBuilder.loadTexts:
hh3cifPpsMcastControl.setDescription('The broadcast suppression with pps(packet per second) type. The max value is determined by the port type and product.')
hh3cif_pps_bcast_dis_val_control = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifPpsBcastDisValControl.setStatus('current')
if mibBuilder.loadTexts:
hh3cifPpsBcastDisValControl.setDescription("Control the port's pps(packet per second) broadcast suppression. When the port is enabled, its pps broadcast suppression value is the global disperse value, and when disabled, it doesn't suppress broadcast.")
hh3cif_uni_suppression_step = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifUniSuppressionStep.setStatus('current')
if mibBuilder.loadTexts:
hh3cifUniSuppressionStep.setDescription('The step of unicast suppression in ratio mode.')
hh3cif_pps_uni_suppression_max = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 15), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifPpsUniSuppressionMax.setStatus('current')
if mibBuilder.loadTexts:
hh3cifPpsUniSuppressionMax.setDescription('The max pps(packet per second) value of unicast suppression in pps mode.')
hh3cif_mul_suppression_step = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 16), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifMulSuppressionStep.setStatus('current')
if mibBuilder.loadTexts:
hh3cifMulSuppressionStep.setDescription('The step of multicast suppression in ratio mode.')
hh3cif_pps_mul_suppression_max = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 17), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifPpsMulSuppressionMax.setStatus('current')
if mibBuilder.loadTexts:
hh3cifPpsMulSuppressionMax.setDescription('The max pps(packet per second) value of multicast suppression in pps mode.')
hh3cif_uni_suppression = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 18), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifUniSuppression.setStatus('current')
if mibBuilder.loadTexts:
hh3cifUniSuppression.setDescription('The unicast suppression with the ranging from 1 to 100 percent in ratio mode. The step is determined by hh3cifUniSuppressionStep.')
hh3cif_pps_uni_suppression = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 19), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifPpsUniSuppression.setStatus('current')
if mibBuilder.loadTexts:
hh3cifPpsUniSuppression.setDescription('The unicast suppression in pps(packet per second) mode. The max value is determined by hh3cifPpsUniSuppressionMax.')
hh3cif_mul_suppression = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 20), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifMulSuppression.setStatus('current')
if mibBuilder.loadTexts:
hh3cifMulSuppression.setDescription('The multicast suppression with ranging from 1 to 100 percent in ratio mode. The step is determined by hh3cifMulSuppressionStep.')
hh3cif_pps_mul_suppression = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 21), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifPpsMulSuppression.setStatus('current')
if mibBuilder.loadTexts:
hh3cifPpsMulSuppression.setDescription('The multicast suppression in pps(packet per second) mode. The max pps value is determined by hh3cifPpsMulSuppressionMax.')
hh3cif_combo_active_port = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('fiber', 1), ('copper', 2), ('na', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifComboActivePort.setStatus('obsolete')
if mibBuilder.loadTexts:
hh3cifComboActivePort.setDescription('Active port on combo interface.')
hh3cif_b_mbps_mul_suppression_max = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 23), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifBMbpsMulSuppressionMax.setStatus('current')
if mibBuilder.loadTexts:
hh3cifBMbpsMulSuppressionMax.setDescription('The maximum value of the multicast suppression with bandwidth-based(Mbps) that a port can be configured.')
hh3cif_b_mbps_mul_suppression = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 24), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifBMbpsMulSuppression.setStatus('current')
if mibBuilder.loadTexts:
hh3cifBMbpsMulSuppression.setDescription('With bandwidth-based multicast suppression, the bandwidth is measured in Mbps. The upper limit of the multicast suppession with bandwidth-based(Mbps) is the value of hh3cifBMbpsMulSuppressionMax in the entry. The default value of hh3cifBMbpsMulSuppression is the value of hh3cifBMbpsMulSuppressionMax.')
hh3cif_b_kbps_mul_suppression_max = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 25), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifBKbpsMulSuppressionMax.setStatus('current')
if mibBuilder.loadTexts:
hh3cifBKbpsMulSuppressionMax.setDescription('The maximum value of the multicast suppression with bandwidth-based(Kbps) that a port can be configured.')
hh3cif_b_kbps_mul_suppression_step = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 26), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifBKbpsMulSuppressionStep.setStatus('current')
if mibBuilder.loadTexts:
hh3cifBKbpsMulSuppressionStep.setDescription('The step of multicast suppression with bandwidth-based(Kbps).')
hh3cif_b_kbps_mul_suppression = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 27), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifBKbpsMulSuppression.setStatus('current')
if mibBuilder.loadTexts:
hh3cifBKbpsMulSuppression.setDescription('With bandwidth-based multicast suppression, the bandwidth is measured in Kbps. The upper limit of the multicast suppession with bandwidth-based(Kbps) is the value of hh3cifBKbpsMulSuppressionMax in the entry. The value of hh3cifBKbpsMulSuppression must be multiple of the value of hh3cifBKbpsMulSuppressionStep. The default value of hh3cifBKbpsMulSuppression is the value of hh3cifBKbpsMulSuppressionMax.')
hh3cif_unknown_packet_drop_mul = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 28), drop_direction().clone('disable')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifUnknownPacketDropMul.setStatus('current')
if mibBuilder.loadTexts:
hh3cifUnknownPacketDropMul.setDescription("Control the port's unknown-multicast packets drop. When inbound direction is enabled on this port, the port will drop unknown-multicast packets in inbound direction. When outbound direction is enabled on this port, the port will drop unknown-multicast packets in outbound direction. When both directions are enabled on this port, the port will drop unknown-multicast packets in both inbound and outbound directions.")
hh3cif_unknown_packet_drop_uni = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 29), drop_direction().clone('disable')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifUnknownPacketDropUni.setStatus('current')
if mibBuilder.loadTexts:
hh3cifUnknownPacketDropUni.setDescription("Control the port's unknown-unicast packets drop. When inbound direction is enabled on this port, the port will drop unknown-unicast packets in inbound direction. When outbound direction is enabled on this port, the port will drop unknown-unicast packets in outbound direction. When both directions are enabled on this port, the port will drop unknown-unicast packets in both inbound and outbound directions.")
hh3cif_b_mbps_uni_suppression_max = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 30), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifBMbpsUniSuppressionMax.setStatus('current')
if mibBuilder.loadTexts:
hh3cifBMbpsUniSuppressionMax.setDescription(' The maximum value of the unicast suppression with bandwidth-based (Mbps) that a port can be configured.')
hh3cif_b_mbps_uni_suppression = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 31), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifBMbpsUniSuppression.setStatus('current')
if mibBuilder.loadTexts:
hh3cifBMbpsUniSuppression.setDescription(' With bandwidth-based Unicast suppression, the bandwidth is measured in Mbps. The upper limit of the unicast suppession with bandwidth-based(Mbps) is the value of hh3cifBMbpsUniSuppressionMax in the entry. The default value of hh3cifBMbpsUniSuppression is the value of hh3cifBMbpsUniSuppressionMax.')
hh3cif_b_kbps_uni_suppression_max = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 32), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifBKbpsUniSuppressionMax.setStatus('current')
if mibBuilder.loadTexts:
hh3cifBKbpsUniSuppressionMax.setDescription(' The maximum value of the unicast suppression with bandwidth-based (Kbps) that a port can be configured.')
hh3cif_b_kbps_uni_suppression_step = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 33), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifBKbpsUniSuppressionStep.setStatus('current')
if mibBuilder.loadTexts:
hh3cifBKbpsUniSuppressionStep.setDescription(' The step of unicast suppression with bandwidth-based(Kbps).')
hh3cif_b_kbps_uni_suppression = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 34), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifBKbpsUniSuppression.setStatus('current')
if mibBuilder.loadTexts:
hh3cifBKbpsUniSuppression.setDescription(' With bandwidth-based unicast suppression, the bandwidth is measured in Kbps. The upper limit of the unicast suppession with bandwidth-based(Kbps) is the value of hh3cifBKbpsUniSuppressionMax in the entry. The value of hh3cifBKbpsUniSuppression must be multiple of the value of hh3cifBKbpsUniSuppressionStep. The default value of hh3cifBKbpsUniSuppression is the value of hh3cifBKbpsUniSuppressionMax.')
hh3cif_out_payload_octets = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 35), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifOutPayloadOctets.setStatus('current')
if mibBuilder.loadTexts:
hh3cifOutPayloadOctets.setDescription(' The actual output octets of the interface.')
hh3cif_in_payload_octets = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 36), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifInPayloadOctets.setStatus('current')
if mibBuilder.loadTexts:
hh3cifInPayloadOctets.setDescription(' The actual input octets of the interface.')
hh3cif_in_error_pkts_rate = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 37), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifInErrorPktsRate.setStatus('current')
if mibBuilder.loadTexts:
hh3cifInErrorPktsRate.setDescription(' The rate of inbound error packets on the interface.')
hh3cif_in_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 38), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifInPkts.setStatus('current')
if mibBuilder.loadTexts:
hh3cifInPkts.setDescription(' The number of packets received on the interface.')
hh3cif_in_normal_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 39), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifInNormalPkts.setStatus('current')
if mibBuilder.loadTexts:
hh3cifInNormalPkts.setDescription(' The number of normal packets received on the interface.')
hh3cif_out_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 1, 1, 40), counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifOutPkts.setStatus('current')
if mibBuilder.loadTexts:
hh3cifOutPkts.setDescription(' The number of packets sent on the interface.')
hh3cif_aggregate_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 2))
if mibBuilder.loadTexts:
hh3cifAggregateTable.setStatus('current')
if mibBuilder.loadTexts:
hh3cifAggregateTable.setDescription('Port aggregation information table.')
hh3cif_aggregate_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 2, 1)).setIndexNames((0, 'HH3C-LswINF-MIB', 'hh3cifAggregatePortIndex'))
if mibBuilder.loadTexts:
hh3cifAggregateEntry.setStatus('current')
if mibBuilder.loadTexts:
hh3cifAggregateEntry.setDescription('Port aggregation information table.')
hh3cif_aggregate_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 2, 1, 1), interface_index()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifAggregatePortIndex.setStatus('current')
if mibBuilder.loadTexts:
hh3cifAggregatePortIndex.setDescription('Index number of the main aggregated port.')
hh3cif_aggregate_port_name = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 2, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifAggregatePortName.setStatus('current')
if mibBuilder.loadTexts:
hh3cifAggregatePortName.setDescription('Aggregation group name.')
hh3cif_aggregate_port_list_ports = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 2, 1, 3), port_list()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifAggregatePortListPorts.setStatus('current')
if mibBuilder.loadTexts:
hh3cifAggregatePortListPorts.setDescription('Portlist of a aggregating.')
hh3cif_aggregate_model = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('ingress', 1), ('both', 2), ('round-robin', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifAggregateModel.setStatus('current')
if mibBuilder.loadTexts:
hh3cifAggregateModel.setDescription('Load sharing mode for the port aggregation.')
hh3cif_aggregate_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 2, 1, 5), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hh3cifAggregateOperStatus.setStatus('current')
if mibBuilder.loadTexts:
hh3cifAggregateOperStatus.setDescription('Current operation status of the row.')
hh3cif_hybrid_port_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 3))
if mibBuilder.loadTexts:
hh3cifHybridPortTable.setStatus('current')
if mibBuilder.loadTexts:
hh3cifHybridPortTable.setDescription('Hybrid-port configuration table.')
hh3cif_hybrid_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 3, 1)).setIndexNames((0, 'HH3C-LswINF-MIB', 'hh3cifHybridPortIndex'))
if mibBuilder.loadTexts:
hh3cifHybridPortEntry.setStatus('current')
if mibBuilder.loadTexts:
hh3cifHybridPortEntry.setDescription('Hybrid-port configuration table.')
hh3cif_hybrid_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifHybridPortIndex.setStatus('current')
if mibBuilder.loadTexts:
hh3cifHybridPortIndex.setDescription('Index number of Hybrid-port.')
hh3cif_hybrid_tagged_vlan_list_low = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 3, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(0, 256))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifHybridTaggedVlanListLow.setStatus('current')
if mibBuilder.loadTexts:
hh3cifHybridTaggedVlanListLow.setDescription("Each octet within this value specifies a set of eight VLANs, with the first octet specifying VLANs 1 through 8, the second octet specifying VLANs 9 through 16, etc. Within each octet, the most significant bit represents the highest numbered VLAN, and the least significant bit represents the lowest numbered VLAN. Thus, each tagged VLAN of the hybrid port is represented by a single bit within the value of this object. If that bit has a value of '1' then that VLAN is tagged in the set of VLANs; the VLAN is not tagged if its bit has a value of '0'.")
hh3cif_hybrid_tagged_vlan_list_high = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 3, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 256))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifHybridTaggedVlanListHigh.setStatus('current')
if mibBuilder.loadTexts:
hh3cifHybridTaggedVlanListHigh.setDescription("Each octet within this value specifies a set of eight VLANs, with the first octet specifying VLANs 2049 through 2056, the second octet specifying VLANs 2057 through 2064, etc. Within each octet, the most significant bit represents the highest numbered VLAN, and the least significant bit represents the lowest numbered VLAN. Thus, each tagged VLAN of the hybrid port is represented by a single bit within the value of this object. If that bit has a value of '1' then that VLAN is tagged in the set of VLANs; the VLAN is not tagged if its bit has a value of '0'.")
hh3cif_hybrid_un_tagged_vlan_list_low = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 3, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(0, 256))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifHybridUnTaggedVlanListLow.setStatus('current')
if mibBuilder.loadTexts:
hh3cifHybridUnTaggedVlanListLow.setDescription("Each octet within this value specifies a set of eight VLANs, with the first octet specifying VLANs 1 through 8, the second octet specifying VLANs 9 through 16, etc. Within each octet, the most significant bit represents the highest numbered VLAN, and the least significant bit represents the lowest numbered VLAN. Thus, each untagged VLAN of the hybrid port is represented by a single bit within the value of this object. If that bit has a value of '1' then that VLAN is untagged in the set of VLANs; the VLAN is not untagged if its bit has a value of '0'.")
hh3cif_hybrid_un_tagged_vlan_list_high = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 3, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 256))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifHybridUnTaggedVlanListHigh.setStatus('current')
if mibBuilder.loadTexts:
hh3cifHybridUnTaggedVlanListHigh.setDescription("Each octet within this value specifies a set of eight VLANs, with the first octet specifying VLANs 2049 through 2056, the second octet specifying VLANs 2057 through 2064, etc. Within each octet, the most significant bit represents the highest numbered VLAN, and the least significant bit represents the lowest numbered VLAN. Thus, each untagged VLAN of the hybrid port is represented by a single bit within the value of this object. If that bit has a value of '1' then that VLAN is untagged in the set of VLANs; the VLAN is not untagged if its bit has a value of '0'.")
hh3cif_combo_port_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 4))
if mibBuilder.loadTexts:
hh3cifComboPortTable.setStatus('current')
if mibBuilder.loadTexts:
hh3cifComboPortTable.setDescription('Combo-port table.')
hh3cif_combo_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 4, 1)).setIndexNames((0, 'HH3C-LswINF-MIB', 'hh3cifComboPortIndex'))
if mibBuilder.loadTexts:
hh3cifComboPortEntry.setStatus('current')
if mibBuilder.loadTexts:
hh3cifComboPortEntry.setDescription('The entry of hh3cifComboPortTable.')
hh3cif_combo_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 4, 1, 1), interface_index()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifComboPortIndex.setStatus('current')
if mibBuilder.loadTexts:
hh3cifComboPortIndex.setDescription('The combo-port interface index. Its value is the same as the value of ifIndex in ifTable, but only includes indexes of the combo-port interfaces.')
hh3cif_combo_port_cur_active = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 1, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('fiber', 1), ('copper', 2), ('na', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifComboPortCurActive.setStatus('current')
if mibBuilder.loadTexts:
hh3cifComboPortCurActive.setDescription("Current active interface of combo interfaces. The value 'fiber' means the interface with fiber connector of the pair of combo-port interfaces is active. The value 'copper' means the interface with copper connector of the pair is active. The value 'na' means not supported.")
hh3c_lsw_l2_inf_mib_object = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1))
hh3c_slot_port_max = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cSlotPortMax.setStatus('current')
if mibBuilder.loadTexts:
hh3cSlotPortMax.setDescription('Max ports of the slots.')
hh3c_switch_port_max = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cSwitchPortMax.setStatus('current')
if mibBuilder.loadTexts:
hh3cSwitchPortMax.setDescription('Max ports that this switch includes.')
hh3cif_vlan_trunk_status_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 3))
if mibBuilder.loadTexts:
hh3cifVLANTrunkStatusTable.setStatus('current')
if mibBuilder.loadTexts:
hh3cifVLANTrunkStatusTable.setDescription('Gmosaic attributes on the VlanTrunk port.')
hh3cif_vlan_trunk_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 3, 1)).setIndexNames((0, 'HH3C-LswINF-MIB', 'hh3cifVLANTrunkIndex'))
if mibBuilder.loadTexts:
hh3cifVLANTrunkStatusEntry.setStatus('current')
if mibBuilder.loadTexts:
hh3cifVLANTrunkStatusEntry.setDescription('Gmosaic attributes on the VlanTrunk port.')
hh3cif_vlan_trunk_index = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 3, 1, 1), interface_index()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifVLANTrunkIndex.setStatus('current')
if mibBuilder.loadTexts:
hh3cifVLANTrunkIndex.setDescription('Index number of the VLANTrunk interface.')
hh3cif_vlan_trunk_gvrp_registration = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('normal', 1), ('fixed', 2), ('forbidden', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifVLANTrunkGvrpRegistration.setStatus('current')
if mibBuilder.loadTexts:
hh3cifVLANTrunkGvrpRegistration.setDescription('GMOSAIC registration information normal: This is the default configuration. Allow create, register and unregister vlans dynamiclly at this port. fixed: Aallow create and register vlan manually at this port. Prevent from unregistering vlans or registering known vlans of this port at another trunk port. forbidden: Unregister all vlans but vlan 1, forbid to create or register any other vlans at this port.')
hh3cif_vlan_trunk_pass_list_low = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 3, 1, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifVLANTrunkPassListLow.setStatus('current')
if mibBuilder.loadTexts:
hh3cifVLANTrunkPassListLow.setDescription("Each octet within this value specifies a set of eight VLANs, with the first octet specifying VLANs 1 through 8, the second octet specifying VLANs 9 through 16, etc. Within each octet, the most significant bit represents the highest numbered VLAN, and the least significant bit represents the lowest numbered VLAN. Thus, each actually passed VLAN of the trunk port is represented by a single bit within the value of this object. If that bit has a value of '1' then that VLAN is actually passed in the set of VLANs; the VLAN is not actually passed if its bit has a value of '0'.")
hh3cif_vlan_trunk_pass_list_high = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 3, 1, 5), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifVLANTrunkPassListHigh.setStatus('current')
if mibBuilder.loadTexts:
hh3cifVLANTrunkPassListHigh.setDescription("Each octet within this value specifies a set of eight VLANs, with the first octet specifying VLANs 2049 through 2056, the second octet specifying VLANs 2057 through 2064, etc. Within each octet, the most significant bit represents the highest numbered VLAN, and the least significant bit represents the lowest numbered VLAN. Thus, each actually passed VLAN of the trunk port is represented by a single bit within the value of this object. If that bit has a value of '1' then that VLAN is actually passed in the set of VLANs; the VLAN is not actually passed if its bit has a value of '0'.")
hh3cif_vlan_trunk_allow_list_low = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 3, 1, 6), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifVLANTrunkAllowListLow.setStatus('current')
if mibBuilder.loadTexts:
hh3cifVLANTrunkAllowListLow.setDescription("Each octet within this value specifies a set of eight VLANs, with the first octet specifying VLANs 1 through 8, the second octet specifying VLANs 9 through 16, etc. Within each octet, the most significant bit represents the highest numbered VLAN, and the least significant bit represents the lowest numbered VLAN. Thus, each allowed VLAN of the trunk port is represented by a single bit within the value of this object. If that bit has a value of '1' then that VLAN is allowed in the set of VLANs; the VLAN is not allowed if its bit has a value of '0'.")
hh3cif_vlan_trunk_allow_list_high = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 3, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifVLANTrunkAllowListHigh.setStatus('current')
if mibBuilder.loadTexts:
hh3cifVLANTrunkAllowListHigh.setDescription("Each octet within this value specifies a set of eight VLANs, with the first octet specifying VLANs 2049 through 2056, the second octet specifying VLANs 2057 through 2064, etc. Within each octet, the most significant bit represents the highest numbered VLAN, and the least significant bit represents the lowest numbered VLAN. Thus, each allowed VLAN of the trunk port is represented by a single bit within the value of this object. If that bit has a value of '1' then that VLAN is allowed in the set of VLANs; the VLAN is not allowed if its bit has a value of '0'.")
hh3cethernet_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4))
if mibBuilder.loadTexts:
hh3cethernetTable.setStatus('current')
if mibBuilder.loadTexts:
hh3cethernetTable.setDescription('Ethernet port attribute table.')
hh3cethernet_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1))
ifEntry.registerAugmentions(('HH3C-LswINF-MIB', 'hh3cethernetEntry'))
hh3cethernetEntry.setIndexNames(*ifEntry.getIndexNames())
if mibBuilder.loadTexts:
hh3cethernetEntry.setStatus('current')
if mibBuilder.loadTexts:
hh3cethernetEntry.setDescription('Entries of Ethernet port attribute table')
hh3cif_ethernet_duplex = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('full', 1), ('half', 2), ('auto', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifEthernetDuplex.setStatus('current')
if mibBuilder.loadTexts:
hh3cifEthernetDuplex.setDescription('Ethernet interface mode.')
hh3cif_ethernet_mtu = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifEthernetMTU.setStatus('current')
if mibBuilder.loadTexts:
hh3cifEthernetMTU.setDescription('MTU on the Ethernet interface.')
hh3cif_ethernet_speed = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 10, 100, 1000, 10000, 24000))).clone(namedValues=named_values(('auto', 0), ('s10M', 10), ('s100M', 100), ('s1000M', 1000), ('s10000M', 10000), ('s24000M', 24000)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifEthernetSpeed.setStatus('current')
if mibBuilder.loadTexts:
hh3cifEthernetSpeed.setDescription('Ethernet interface speed.')
hh3cif_ethernet_mdi = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('mdi-ii', 1), ('mdi-x', 2), ('mdi-auto', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifEthernetMdi.setStatus('current')
if mibBuilder.loadTexts:
hh3cifEthernetMdi.setDescription('Type of the line connected to the port. MDI-II (straight-through cable): 1 MDI-X (crossover cable): 2 MDI-AUTO (auto-sensing): 3')
hh3c_max_mac_learn = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(-1, 2147483647))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cMaxMacLearn.setStatus('current')
if mibBuilder.loadTexts:
hh3cMaxMacLearn.setDescription('The maximum number of MAC addresses that the port can learn. The value -1 means that the number of Mac addresses that the port can learn is unlimited.')
hh3cif_mac_address_learn = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifMacAddressLearn.setStatus('current')
if mibBuilder.loadTexts:
hh3cifMacAddressLearn.setDescription('This object indicates if the interface is allowed to learn mac address. eanbled(1) means the interface can learn mac address, otherwise disabled(2) can be set.')
hh3cif_ethernet_test = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('test', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifEthernetTest.setStatus('current')
if mibBuilder.loadTexts:
hh3cifEthernetTest.setDescription('Test this interface. The actual testing will be different according to products. Read operation not supported.')
hh3cif_mac_addr_learn_mode = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('iVL', 1), ('sVL', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifMacAddrLearnMode.setStatus('current')
if mibBuilder.loadTexts:
hh3cifMacAddrLearnMode.setDescription('Status indicates mac address learn mode of the interface. IVL(1) means independent VLAN learning. SVL means shared VLAN learning.')
hh3cif_ethernet_flow_interval = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(5, 300))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifEthernetFlowInterval.setStatus('current')
if mibBuilder.loadTexts:
hh3cifEthernetFlowInterval.setDescription('Set flow interval of the ethernet. The NMS should set value to integer which is a multiple of 5.')
hh3cif_ethernet_isolate = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 13), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifEthernetIsolate.setStatus('current')
if mibBuilder.loadTexts:
hh3cifEthernetIsolate.setDescription("Isolate group means that all ports in the same isolate group can not send and receive packets each other. Each octet within this value specifies a set of eight isolate groups, with the first octet specifying isolate groups 1 through 8, the second octet specifying isolate groups 9 through 16, etc. Within each octet, the leftmost bit is the first bit. the first bit represents the lowest numbered isolate group, and the last bit represents the highest numbered isolate group. one port can belong to more than one isolate group. Thus, each isolate group is represented by a single bit within the value of this object. If that bit has a value of '1', then that isolate group includes this port; the port is not included if its bit has a value of '0'. for example, the first octet is '10000100' means that the port is included in the isolate group 1 and isolate group 6.")
hh3cif_vlan_vpn_status = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifVlanVPNStatus.setStatus('current')
if mibBuilder.loadTexts:
hh3cifVlanVPNStatus.setDescription('Vlan VPN enable status.')
hh3cif_vlan_vpn_uplink_status = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifVlanVPNUplinkStatus.setStatus('current')
if mibBuilder.loadTexts:
hh3cifVlanVPNUplinkStatus.setDescription('Vlan VPN uplink status.')
hh3cif_vlan_vpntpid = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifVlanVPNTPID.setStatus('current')
if mibBuilder.loadTexts:
hh3cifVlanVPNTPID.setDescription('Port based Vlan VPN TPID(Tag Protocol Indentifier), default value is 0x8100. Please refer to hh3cVlanVPNTPIDMode to get more information.')
hh3cif_isolate_group_id = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 17), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifIsolateGroupID.setStatus('current')
if mibBuilder.loadTexts:
hh3cifIsolateGroupID.setDescription('Isolate group identifier. Value zero means this interface does not belong to any isolate group.')
hh3cifis_uplink_port = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifisUplinkPort.setStatus('current')
if mibBuilder.loadTexts:
hh3cifisUplinkPort.setDescription('Ethernet uplink status, default value is 2.')
hh3cif_ethernet_auto_speed_mask = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 19), speed_mode_flag()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cifEthernetAutoSpeedMask.setStatus('current')
if mibBuilder.loadTexts:
hh3cifEthernetAutoSpeedMask.setDescription("This object specifies which kinds of speed mode can be negotiated. Each bit corresponds to a kind of speed mode. If the value of a bit is '1', it means the corresponding speed mode is negotiable on the port. Otherwise the negotiation for that kind of speed mode is not supported on this port. If there are several negotiable speed modes, all bits for them are '1'. For example, if the speed mode 's10M' and 's1000M' can be negotiable, the value of this object is 0xA0.")
hh3cif_ethernet_auto_speed = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 4, 1, 20), speed_mode_flag()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cifEthernetAutoSpeed.setStatus('current')
if mibBuilder.loadTexts:
hh3cifEthernetAutoSpeed.setDescription("This object indicates which kinds of speed mode are negotiable on this port. Only when a bit of hh3cifEthernetAutoSpeedMask is '1', the corresponding bit of this object can be set to '1', indicating the corresponding speed mode is negotiable. For example, if the value of hh3cifEthernetAutoSpeedMask is 0xA0, which indicates speed mode 's10M' and 's1000M' are negotiable, the possible value of this object should be one of the four values (0x00, 0x20, 0x80 and 0xA0). If the value of hh3cifEthernetSpeed is not 'auto', the value of this object is insignificant and should be ignored. The value length of this object should be as long as that of hh3cifEthernetAutoSpeedMask.")
hh3c_isolate_group_max = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cIsolateGroupMax.setStatus('current')
if mibBuilder.loadTexts:
hh3cIsolateGroupMax.setDescription('Max isolate group that this device support, the value is zero means that the device does not support isolate group.')
hh3c_global_broadcast_max_pps = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 14881000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cGlobalBroadcastMaxPps.setStatus('current')
if mibBuilder.loadTexts:
hh3cGlobalBroadcastMaxPps.setDescription('The global max packets per second. When it is set, the value of BroadcastMaxPps in all ports will be changed to that setting.')
hh3c_global_broadcast_max_ratio = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cGlobalBroadcastMaxRatio.setStatus('current')
if mibBuilder.loadTexts:
hh3cGlobalBroadcastMaxRatio.setDescription('The global max-ratio of broadcast from 0 to 100 percent. When it is set, the value of BroadcastMaxRatio in all ports will be changed to that setting.')
hh3c_bpdu_tunnel_status = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cBpduTunnelStatus.setStatus('current')
if mibBuilder.loadTexts:
hh3cBpduTunnelStatus.setDescription('Bpdu tunnel enable status.')
hh3c_vlan_vpntpid_mode = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('port-based', 1), ('global', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cVlanVPNTPIDMode.setStatus('current')
if mibBuilder.loadTexts:
hh3cVlanVPNTPIDMode.setDescription("Vlan VPN TPID mode. The value 'port-based' means VLAN VPN TPID value would be set based on port via hh3cifVlanVPNTPID. In this situation, hh3cVlanVPNTPID is meaningless and always return 0x8100. The value 'global' means VLAN VPN TPID value should be set globally via hh3cVlanVPNTPID. In this situation, hh3cifVlanVPNTPID in hh3cethernetTable has the same value with hh3cVlanVPNTPID.")
hh3c_vlan_vpntpid = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cVlanVPNTPID.setStatus('current')
if mibBuilder.loadTexts:
hh3cVlanVPNTPID.setDescription('Global Vlan VPN TPID(Tag Protocol Indentifier), default value is 0x8100.')
hh3c_port_isolate_group_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 11))
if mibBuilder.loadTexts:
hh3cPortIsolateGroupTable.setStatus('current')
if mibBuilder.loadTexts:
hh3cPortIsolateGroupTable.setDescription('Isolate Group attribute table.')
hh3c_port_isolate_group_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 11, 1)).setIndexNames((0, 'HH3C-LswINF-MIB', 'hh3cPortIsolateGroupIndex'))
if mibBuilder.loadTexts:
hh3cPortIsolateGroupEntry.setStatus('current')
if mibBuilder.loadTexts:
hh3cPortIsolateGroupEntry.setDescription('The entry of hh3cPortIsolateGroupTable.')
hh3c_port_isolate_group_index = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 11, 1, 1), integer32())
if mibBuilder.loadTexts:
hh3cPortIsolateGroupIndex.setStatus('current')
if mibBuilder.loadTexts:
hh3cPortIsolateGroupIndex.setDescription('Port isolate group identifier. The index of the hh3cPortIsolateGroupTable. The value ranges from 1 to the limit of isolate group quantity.')
hh3c_port_isolate_uplink_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 11, 1, 2), interface_index()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hh3cPortIsolateUplinkIfIndex.setStatus('current')
if mibBuilder.loadTexts:
hh3cPortIsolateUplinkIfIndex.setDescription('Index number of the uplink interface.')
hh3c_port_isolate_group_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 11, 1, 3), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hh3cPortIsolateGroupRowStatus.setStatus('current')
if mibBuilder.loadTexts:
hh3cPortIsolateGroupRowStatus.setDescription('Current operation status of the row.')
hh3c_port_isolate_group_description = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 11, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hh3cPortIsolateGroupDescription.setStatus('current')
if mibBuilder.loadTexts:
hh3cPortIsolateGroupDescription.setDescription('Port isolate group description, default value is zero-length string.')
hh3c_max_mac_learn_range = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 8, 35, 5, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cMaxMacLearnRange.setStatus('current')
if mibBuilder.loadTexts:
hh3cMaxMacLearnRange.setDescription('The maximum number of MAC address that the port supports.')
mibBuilder.exportSymbols('HH3C-LswINF-MIB', hh3cMaxMacLearn=hh3cMaxMacLearn, hh3cifPpsUniSuppression=hh3cifPpsUniSuppression, hh3cifEthernetFlowInterval=hh3cifEthernetFlowInterval, hh3cifVLANType=hh3cifVLANType, hh3cGlobalBroadcastMaxRatio=hh3cGlobalBroadcastMaxRatio, hh3cifPpsMulSuppression=hh3cifPpsMulSuppression, hh3cifAggregateModel=hh3cifAggregateModel, hh3cIsolateGroupMax=hh3cIsolateGroupMax, hh3cifVLANTrunkAllowListLow=hh3cifVLANTrunkAllowListLow, hh3cifEthernetMdi=hh3cifEthernetMdi, hh3cifHybridPortIndex=hh3cifHybridPortIndex, hh3cVlanVPNTPID=hh3cVlanVPNTPID, hh3cifEthernetSpeed=hh3cifEthernetSpeed, hh3cifEthernetMTU=hh3cifEthernetMTU, hh3cifEthernetDuplex=hh3cifEthernetDuplex, hh3cLswL2InfMibObject=hh3cLswL2InfMibObject, hh3cifisUplinkPort=hh3cifisUplinkPort, hh3cifVLANTrunkPassListLow=hh3cifVLANTrunkPassListLow, hh3cBpduTunnelStatus=hh3cBpduTunnelStatus, hh3cifBMbpsUniSuppressionMax=hh3cifBMbpsUniSuppressionMax, hh3cifComboPortTable=hh3cifComboPortTable, SpeedModeFlag=SpeedModeFlag, hh3cifXXDevPortIndex=hh3cifXXDevPortIndex, hh3cifVlanVPNTPID=hh3cifVlanVPNTPID, hh3cifClearStat=hh3cifClearStat, hh3cifVLANTrunkAllowListHigh=hh3cifVLANTrunkAllowListHigh, hh3cifAggregatePort=hh3cifAggregatePort, hh3cPortIsolateGroupRowStatus=hh3cPortIsolateGroupRowStatus, hh3cPortIsolateGroupDescription=hh3cPortIsolateGroupDescription, hh3cifInNormalPkts=hh3cifInNormalPkts, hh3cifAggregatePortIndex=hh3cifAggregatePortIndex, hh3cifOutPayloadOctets=hh3cifOutPayloadOctets, hh3cifHybridUnTaggedVlanListHigh=hh3cifHybridUnTaggedVlanListHigh, hh3cifISPhyPort=hh3cifISPhyPort, hh3cifUnknownPacketDropMul=hh3cifUnknownPacketDropMul, hh3cifBKbpsUniSuppressionStep=hh3cifBKbpsUniSuppressionStep, hh3cifPpsMulSuppressionMax=hh3cifPpsMulSuppressionMax, hh3cifEthernetAutoSpeedMask=hh3cifEthernetAutoSpeedMask, hh3cifUniSuppression=hh3cifUniSuppression, hh3cifMacAddressLearn=hh3cifMacAddressLearn, hh3cPortIsolateGroupIndex=hh3cPortIsolateGroupIndex, hh3cifInPkts=hh3cifInPkts, hh3cifMcastControl=hh3cifMcastControl, hh3cifBKbpsUniSuppressionMax=hh3cifBKbpsUniSuppressionMax, hh3cifVLANTrunkStatusTable=hh3cifVLANTrunkStatusTable, hh3cLswL2InfMib=hh3cLswL2InfMib, hh3cifMulSuppressionStep=hh3cifMulSuppressionStep, DropDirection=DropDirection, hh3cifBMbpsMulSuppressionMax=hh3cifBMbpsMulSuppressionMax, hh3cifHybridTaggedVlanListHigh=hh3cifHybridTaggedVlanListHigh, hh3cifVLANTrunkStatusEntry=hh3cifVLANTrunkStatusEntry, hh3cifEthernetTest=hh3cifEthernetTest, hh3cifVLANTrunkIndex=hh3cifVLANTrunkIndex, hh3cifComboPortCurActive=hh3cifComboPortCurActive, PYSNMP_MODULE_ID=hh3cLswL2InfMib, hh3cPortIsolateGroupEntry=hh3cPortIsolateGroupEntry, hh3cifInPayloadOctets=hh3cifInPayloadOctets, hh3cifAggregatePortName=hh3cifAggregatePortName, hh3cifInErrorPktsRate=hh3cifInErrorPktsRate, hh3cifSrcMacControl=hh3cifSrcMacControl, InterfaceIndex=InterfaceIndex, hh3cifXXBasePortIndex=hh3cifXXBasePortIndex, hh3cifHybridPortTable=hh3cifHybridPortTable, hh3cSlotPortMax=hh3cSlotPortMax, hh3cifVLANTrunkGvrpRegistration=hh3cifVLANTrunkGvrpRegistration, hh3cPortIsolateUplinkIfIndex=hh3cPortIsolateUplinkIfIndex, hh3cLswExtInterface=hh3cLswExtInterface, hh3cifOutPkts=hh3cifOutPkts, hh3cifHybridTaggedVlanListLow=hh3cifHybridTaggedVlanListLow, hh3cifIsolateGroupID=hh3cifIsolateGroupID, PortList=PortList, hh3cPortIsolateGroupTable=hh3cPortIsolateGroupTable, hh3cifAggregateTable=hh3cifAggregateTable, hh3cifEthernetAutoSpeed=hh3cifEthernetAutoSpeed, hh3cifPpsUniSuppressionMax=hh3cifPpsUniSuppressionMax, hh3cifBKbpsUniSuppression=hh3cifBKbpsUniSuppression, VlanIndex=VlanIndex, hh3cifHybridUnTaggedVlanListLow=hh3cifHybridUnTaggedVlanListLow, hh3cifBKbpsMulSuppressionStep=hh3cifBKbpsMulSuppressionStep, hh3cSwitchPortMax=hh3cSwitchPortMax, hh3cifBMbpsUniSuppression=hh3cifBMbpsUniSuppression, hh3cifComboPortEntry=hh3cifComboPortEntry, hh3cifVlanVPNStatus=hh3cifVlanVPNStatus, hh3cifXXEntry=hh3cifXXEntry, hh3cifMirrorPort=hh3cifMirrorPort, hh3cifEthernetIsolate=hh3cifEthernetIsolate, hh3cifMulSuppression=hh3cifMulSuppression, hh3cGlobalBroadcastMaxPps=hh3cGlobalBroadcastMaxPps, hh3cifComboActivePort=hh3cifComboActivePort, hh3cifUniSuppressionStep=hh3cifUniSuppressionStep, hh3cifMacAddrLearnMode=hh3cifMacAddrLearnMode, hh3cifAggregateOperStatus=hh3cifAggregateOperStatus, hh3cifXXTable=hh3cifXXTable, hh3cifPpsMcastControl=hh3cifPpsMcastControl, hh3cifVlanVPNUplinkStatus=hh3cifVlanVPNUplinkStatus, hh3cifFlowControl=hh3cifFlowControl, hh3cifPpsBcastDisValControl=hh3cifPpsBcastDisValControl, hh3cMaxMacLearnRange=hh3cMaxMacLearnRange, hh3cethernetEntry=hh3cethernetEntry, hh3cifHybridPortEntry=hh3cifHybridPortEntry, hh3cethernetTable=hh3cethernetTable, hh3cifAggregateEntry=hh3cifAggregateEntry, hh3cifAggregatePortListPorts=hh3cifAggregatePortListPorts, hh3cifBKbpsMulSuppressionMax=hh3cifBKbpsMulSuppressionMax, hh3cifBMbpsMulSuppression=hh3cifBMbpsMulSuppression, hh3cVlanVPNTPIDMode=hh3cVlanVPNTPIDMode, hh3cifUnBoundPort=hh3cifUnBoundPort, hh3cifVLANTrunkPassListHigh=hh3cifVLANTrunkPassListHigh, hh3cifBKbpsMulSuppression=hh3cifBKbpsMulSuppression, hh3cifUnknownPacketDropUni=hh3cifUnknownPacketDropUni, hh3cifComboPortIndex=hh3cifComboPortIndex) |
dt = 1/10
a = gamma.pdf( np.arange(0,10,dt), 2.5, 0 )
t = np.arange(0,10,dt)
# what should go into the np.cumsum() function?
v = np.cumsum(a*dt)
# this just plots your velocity:
with plt.xkcd():
plt.figure(figsize=(10,6))
plt.plot(t,a,label='acceleration [$m/s^2$]')
plt.plot(t,v,label='velocity [$m/s$]')
plt.xlabel('time [s]')
plt.ylabel('[motion]')
plt.legend(facecolor='xkcd:white')
plt.show() | dt = 1 / 10
a = gamma.pdf(np.arange(0, 10, dt), 2.5, 0)
t = np.arange(0, 10, dt)
v = np.cumsum(a * dt)
with plt.xkcd():
plt.figure(figsize=(10, 6))
plt.plot(t, a, label='acceleration [$m/s^2$]')
plt.plot(t, v, label='velocity [$m/s$]')
plt.xlabel('time [s]')
plt.ylabel('[motion]')
plt.legend(facecolor='xkcd:white')
plt.show() |
__author__ = "Manuel Escriche <[email protected]>"
class BacklogIssuesModel:
def __init__(self):
self.__entryTypes = ('Epic', 'Feature', 'Story', 'Bug', 'WorkItem')
self.longTermTypes = ('Epic',)
self.midTermTypes = ('Feature',)
self.shortTermTypes = ('Story','Bug','WorkItem')
@property
def types(self): return self.__entryTypes
@property
def story(self): return ('Story',)
@property
def operativeTypes(self): return self.shortTermTypes + self.midTermTypes
@property
def organizingTypes(self): return self.longTermTypes
@property
def open(self):
return self.longTermTypes + self.midTermTypes
@property
def private(self):
return self.shortTermTypes
@property
def workitem(self):
return 'WorkItem'
backlogIssuesModel = BacklogIssuesModel()
if __name__ == "__main__":
pass
| __author__ = 'Manuel Escriche <[email protected]>'
class Backlogissuesmodel:
def __init__(self):
self.__entryTypes = ('Epic', 'Feature', 'Story', 'Bug', 'WorkItem')
self.longTermTypes = ('Epic',)
self.midTermTypes = ('Feature',)
self.shortTermTypes = ('Story', 'Bug', 'WorkItem')
@property
def types(self):
return self.__entryTypes
@property
def story(self):
return ('Story',)
@property
def operative_types(self):
return self.shortTermTypes + self.midTermTypes
@property
def organizing_types(self):
return self.longTermTypes
@property
def open(self):
return self.longTermTypes + self.midTermTypes
@property
def private(self):
return self.shortTermTypes
@property
def workitem(self):
return 'WorkItem'
backlog_issues_model = backlog_issues_model()
if __name__ == '__main__':
pass |
# Gitlab-UI: Settings -> General
# https://python-gitlab.readthedocs.io/en/stable/gl_objects/projects.html
# https://docs.gitlab.com/ce/api/projects.html#edit-project
def configure_project_general_settings(project):
print("Configuring general project settings:", project.name)
# Set whether merge requests can only be merged with successful jobs
# boolean
project.only_allow_merge_if_pipeline_succeeds = True
# Set whether or not merge requests can be merged with skipped jobs
# boolean
# Note: This is generally the recommended setting, but has to be changed for certain projects probably
project.allow_merge_on_skipped_pipeline = False
# Set whether merge requests can only be merged when all the discussions are resolved
# boolean
project.only_allow_merge_if_all_discussions_are_resolved = True
# There are currently three options for merge_method to choose from:
# merge: A merge commit is created for every merge, and merging is allowed as long as there are no conflicts.
# rebase_merge: A merge commit is created for every merge, but merging is only allowed if fast-forward merge is possible. This way you could make sure that if this merge request would build, after merging to target branch it would also build.
# ff: No merge commits are created and all merges are fast-forwarded, which means that merging is only allowed if the branch could be fast-forwarded
project.merge_method = 'ff'
# Enable Delete source branch option by default for all new merge requests
# boolean
project.remove_source_branch_after_merge = True
# How many approvers should approve merge request by default
# integer
project.approvals_before_merge = 2
project.save()
print("Saved project:", project.name)
return
| def configure_project_general_settings(project):
print('Configuring general project settings:', project.name)
project.only_allow_merge_if_pipeline_succeeds = True
project.allow_merge_on_skipped_pipeline = False
project.only_allow_merge_if_all_discussions_are_resolved = True
project.merge_method = 'ff'
project.remove_source_branch_after_merge = True
project.approvals_before_merge = 2
project.save()
print('Saved project:', project.name)
return |
# Birthday Chocolate
# Given an array of integers, find the number of subarrays of length k having sum s.
#
# https://www.hackerrank.com/challenges/the-birthday-bar/problem
#
def solve(n, s, d, m):
# Complete this function
return sum(1 for i in range(len(s) - m + 1) if sum(s[i:i + m]) == d)
n = int(input().strip())
s = list(map(int, input().strip().split(' ')))
d, m = input().strip().split(' ')
d, m = [int(d), int(m)]
result = solve(n, s, d, m)
print(result)
| def solve(n, s, d, m):
return sum((1 for i in range(len(s) - m + 1) if sum(s[i:i + m]) == d))
n = int(input().strip())
s = list(map(int, input().strip().split(' ')))
(d, m) = input().strip().split(' ')
(d, m) = [int(d), int(m)]
result = solve(n, s, d, m)
print(result) |
logFile = open("log.log", "r")
#print("score time")
#line = logFile.readline()
#line = "line"
i = 0
for line in logFile:
i += 1
if (i % 1 != 0): # Rendering all points takes time in LaTeX, skip some
continue
words = line.split()
score = words[0]
time = words[2].replace("s", "")
minutes = int(time)/60.0
#print(score + " " + str(round(minutes, 2)) + "") # Time
print(score + " " + i + "") # Count episodes
logFile.close() | log_file = open('log.log', 'r')
i = 0
for line in logFile:
i += 1
if i % 1 != 0:
continue
words = line.split()
score = words[0]
time = words[2].replace('s', '')
minutes = int(time) / 60.0
print(score + ' ' + i + '')
logFile.close() |
{
"variables": {
"gypkg_deps": [
# Place for `gypkg` dependencies
"git://github.com/libuv/libuv@^1.7.0 => uv.gyp:libuv",
],
},
"targets": [ {
"target_name": "latetyper",
"type": "executable",
"dependencies": [
"<!@(gypkg deps <(gypkg_deps))",
# Place for local dependencies
],
"direct_dependent_settings": {
"include_dirs": [
# Place for public includes
"include",
],
},
"include_dirs": [
# Place for private includes
".",
],
"sources": [
# Place for source files
"src/main.c",
],
"libraries": [
"-framework CoreFoundation",
"-framework CoreGraphics",
],
} ],
}
| {'variables': {'gypkg_deps': ['git://github.com/libuv/libuv@^1.7.0 => uv.gyp:libuv']}, 'targets': [{'target_name': 'latetyper', 'type': 'executable', 'dependencies': ['<!@(gypkg deps <(gypkg_deps))'], 'direct_dependent_settings': {'include_dirs': ['include']}, 'include_dirs': ['.'], 'sources': ['src/main.c'], 'libraries': ['-framework CoreFoundation', '-framework CoreGraphics']}]} |
grid = []
for r in range(20):
row = [int(x) for x in input().split(' ')]
grid.append(row)
mx = 0
for i in range(20):
for j in range(17):
prod = grid[i][j] * grid[i][j+1] * grid[i][j+2] * grid[i][j+3]
if prod > mx:
mx = prod
prod = grid[j][i] * grid[j+1][i] * grid[j+2][i] * grid[j+3][i]
if prod > mx:
mx = prod
for i in range(17):
for j in range(17):
prod = grid[i][j] * grid[i+1][j+1] * grid[i+2][j+2] * grid[i+3][j+3]
if prod > mx:
mx = prod
for i in range(17):
for j in range(3,20):
prod = grid[i][j] * grid[i+1][j-1] * grid[i+2][j-2] * grid[i+3][j-3]
if prod > mx:
mx = prod
print(str(mx))
| grid = []
for r in range(20):
row = [int(x) for x in input().split(' ')]
grid.append(row)
mx = 0
for i in range(20):
for j in range(17):
prod = grid[i][j] * grid[i][j + 1] * grid[i][j + 2] * grid[i][j + 3]
if prod > mx:
mx = prod
prod = grid[j][i] * grid[j + 1][i] * grid[j + 2][i] * grid[j + 3][i]
if prod > mx:
mx = prod
for i in range(17):
for j in range(17):
prod = grid[i][j] * grid[i + 1][j + 1] * grid[i + 2][j + 2] * grid[i + 3][j + 3]
if prod > mx:
mx = prod
for i in range(17):
for j in range(3, 20):
prod = grid[i][j] * grid[i + 1][j - 1] * grid[i + 2][j - 2] * grid[i + 3][j - 3]
if prod > mx:
mx = prod
print(str(mx)) |
def problem4_1(wordlist):
print(wordlist)
wordlist.sort(key=str.lower)
print(wordlist)
#firstline = ["Happy", "families", "are", "all", "alike;", "every", \
# "unhappy", "family", "is", "unhappy", "in", "its", "own", \
# "way.", "Leo Tolstoy", "Anna Karenina"]
#problem4_1(firstline)
| def problem4_1(wordlist):
print(wordlist)
wordlist.sort(key=str.lower)
print(wordlist) |
# 1346. Check If N and Its Double Exist
# Runtime: 40 ms, faster than 98.82% of Python3 online submissions for Check If N and Its Double Exist.
# Memory Usage: 14.4 MB, less than 9.05% of Python3 online submissions for Check If N and Its Double Exist.
class Solution:
def checkIfExist(self, arr: list[int]) -> bool:
prev = set()
for i, n in enumerate(arr):
if n * 2 in prev or n * 0.5 in prev:
return True
if n not in prev:
prev.add(n)
return False | class Solution:
def check_if_exist(self, arr: list[int]) -> bool:
prev = set()
for (i, n) in enumerate(arr):
if n * 2 in prev or n * 0.5 in prev:
return True
if n not in prev:
prev.add(n)
return False |
class Subject:
def __init__(self):
self.observers = []
def attach(self, observer):
if observer not in self.observers:
self.observers.append(observer)
def detach(self, observer):
try:
self.observers.remove(observer)
except Exception as e:
print('Found exception')
def notify(self, modifier=None):
for observer in self.observers:
observer.update(self)
class Core(Subject):
def __init__(self, n=''):
Subject.__init__(self)
self.name = n
self._temp = 0
@property
def temp(self):
return self._temp
@temp.setter
def temp(self, temp):
self._temp = temp
self.notify()
class TempObserver:
def __init__(self, n=''):
self.name = n
def update(self, subject):
print(f'{self.name} Temperature: {subject.name} {subject.temp}')
def check_observer():
c1 = Core('c1')
c2 = Core('c2')
o1 = TempObserver('o1')
o2 = TempObserver('o2')
c1.attach(o1)
c1.attach(o2)
c1.temp = 80
c1.temp = 90
check_observer()
| class Subject:
def __init__(self):
self.observers = []
def attach(self, observer):
if observer not in self.observers:
self.observers.append(observer)
def detach(self, observer):
try:
self.observers.remove(observer)
except Exception as e:
print('Found exception')
def notify(self, modifier=None):
for observer in self.observers:
observer.update(self)
class Core(Subject):
def __init__(self, n=''):
Subject.__init__(self)
self.name = n
self._temp = 0
@property
def temp(self):
return self._temp
@temp.setter
def temp(self, temp):
self._temp = temp
self.notify()
class Tempobserver:
def __init__(self, n=''):
self.name = n
def update(self, subject):
print(f'{self.name} Temperature: {subject.name} {subject.temp}')
def check_observer():
c1 = core('c1')
c2 = core('c2')
o1 = temp_observer('o1')
o2 = temp_observer('o2')
c1.attach(o1)
c1.attach(o2)
c1.temp = 80
c1.temp = 90
check_observer() |
class PropertyCheckResult:
def __init__(self, name: str):
self.name = name
def __str__(self):
return self.name
def __repr__(self):
return f"PropertyCheckResult({self.name})"
def __invert__(self):
if self == UNSAT:
return SAT
if self == SAT:
return UNSAT
return UNKNOWN
def __and__(self, other):
if not isinstance(other, PropertyCheckResult):
return NotImplemented
if self == UNSAT or other == UNSAT:
return UNSAT
if self == UNKNOWN or other == UNKNOWN:
return UNKNOWN
return SAT
def __or__(self, other):
if not isinstance(other, PropertyCheckResult):
return NotImplemented
if self == SAT or other == SAT:
return SAT
if self == UNKNOWN or other == UNKNOWN:
return UNKNOWN
return UNSAT
def __eq__(self, other):
if not isinstance(other, PropertyCheckResult):
return False
return self.name == other.name
SAT = PropertyCheckResult("sat")
UNKNOWN = PropertyCheckResult("unknown")
UNSAT = PropertyCheckResult("unsat")
__all__ = ["SAT", "UNKNOWN", "UNSAT"]
| class Propertycheckresult:
def __init__(self, name: str):
self.name = name
def __str__(self):
return self.name
def __repr__(self):
return f'PropertyCheckResult({self.name})'
def __invert__(self):
if self == UNSAT:
return SAT
if self == SAT:
return UNSAT
return UNKNOWN
def __and__(self, other):
if not isinstance(other, PropertyCheckResult):
return NotImplemented
if self == UNSAT or other == UNSAT:
return UNSAT
if self == UNKNOWN or other == UNKNOWN:
return UNKNOWN
return SAT
def __or__(self, other):
if not isinstance(other, PropertyCheckResult):
return NotImplemented
if self == SAT or other == SAT:
return SAT
if self == UNKNOWN or other == UNKNOWN:
return UNKNOWN
return UNSAT
def __eq__(self, other):
if not isinstance(other, PropertyCheckResult):
return False
return self.name == other.name
sat = property_check_result('sat')
unknown = property_check_result('unknown')
unsat = property_check_result('unsat')
__all__ = ['SAT', 'UNKNOWN', 'UNSAT'] |
d=dict(one=1,two=2,three=3)
print(d)
'''for k in d:
print(k,d[k])
for k in sorted(d.keys()): #isme key ki help se d[k] nikaalre h
print(k,d[k])
for k,v in sorted(d.items()): #k and v(value) dono ek hi baar lene h to without dictionary help
print(k,v)
for v in sorted(d.values()):
print(v)
for k in d:
print(k)
'''
'''
d['seven']=7 #insert new key
print(d)
#print(d['three1']) #will give an error as there is no such key.. to avoid..
s=d.get('three34','key not found') #to avoid error and print message
print(s)
'''
'''
#to delete in dictionary(2 methods)
d.pop('one') #to pop from dictionary using pop fn
print(d)
del d['two'] #using del
print(d)
'''
'''
x=dict(om=2,jai=3,**d) #to inherit
print(x)
'''
'''
======================================================================================================================================================================================
"HW******* user se 5 members ki name and age enter kraani h condition do logo ki same age ho.. then enter name from user then print age and also the second person with the same age "
======================================================================================================================================================================================
'''
'''
l=[1,2,3]
print('old list:- {}'.format(l))
l.append(89) #append at end
print('new list:- {}'.format(l))
l.insert(4,99) #if 3 ke badle 9 daaldia to bhi end me hi krdega
#index and value upar me h
print('new list:- {}'.format(l))
#l.extend()#will do in next class
''' | d = dict(one=1, two=2, three=3)
print(d)
'for k in d:\n print(k,d[k])\nfor k in sorted(d.keys()): #isme key ki help se d[k] nikaalre h\n print(k,d[k])\nfor k,v in sorted(d.items()): #k and v(value) dono ek hi baar lene h to without dictionary help\n print(k,v)\nfor v in sorted(d.values()):\n print(v)\nfor k in d:\n print(k)\n'
"\nd['seven']=7 #insert new key\nprint(d)\n#print(d['three1']) #will give an error as there is no such key.. to avoid..\ns=d.get('three34','key not found') #to avoid error and print message\nprint(s)\n"
"\n#to delete in dictionary(2 methods)\nd.pop('one') #to pop from dictionary using pop fn\nprint(d)\ndel d['two'] #using del\nprint(d)\n"
'\nx=dict(om=2,jai=3,**d) #to inherit \nprint(x)\n'
'\n======================================================================================================================================================================================\n\n"HW******* user se 5 members ki name and age enter kraani h condition do logo ki same age ho.. then enter name from user then print age and also the second person with the same age "\n\n======================================================================================================================================================================================\n'
"\nl=[1,2,3]\nprint('old list:- {}'.format(l))\nl.append(89) #append at end\nprint('new list:- {}'.format(l))\nl.insert(4,99) #if 3 ke badle 9 daaldia to bhi end me hi krdega\n #index and value upar me h\nprint('new list:- {}'.format(l))\n#l.extend()#will do in next class\n" |
#
# Copyright (c) 2017 Amit Green. All rights reserved.
#
@gem('Gem.ErrorNumber')
def gem():
require_gem('Gem.Import')
PythonErrorNumber = import_module('errno')
export(
'ERROR_NO_ACCESS', PythonErrorNumber.EACCES,
'ERROR_NO_ENTRY', PythonErrorNumber.ENOENT,
)
| @gem('Gem.ErrorNumber')
def gem():
require_gem('Gem.Import')
python_error_number = import_module('errno')
export('ERROR_NO_ACCESS', PythonErrorNumber.EACCES, 'ERROR_NO_ENTRY', PythonErrorNumber.ENOENT) |
class colors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
WHITE = '\033[1;97m'
def banner():
version = "0.6.0"
githublink = "https://github.com/f0lg0/Oncogene"
print("\n+--------------------------------------------------------------+\n")
LOGO = [
"|--- ONCOGENE ----|",
" \---------------/ ",
" ~-_---------_-~ ",
" ~-_---_-~ ",
" ~-_ ",
" _-~---~-_ ",
" _-~---------~-_ ",
" /---------------\ ",
"|-----------------|"
]
BANNER = [
" |",
" | Welcome to Oncogene",
f" | Version: {version}",
" |",
f" | {githublink}",
" |",
" | Written by: f0lg0",
" |",
f" | {colors.FAIL}[!] Only for educational purposes",
]
for llogo, lbanner in zip(LOGO, BANNER):
print(colors.OKGREEN + colors.BOLD + llogo, colors.OKBLUE + colors.BOLD + lbanner)
print(colors.ENDC)
print("\n+--------------------------------------------------------------+")
| class Colors:
header = '\x1b[95m'
okblue = '\x1b[94m'
okgreen = '\x1b[92m'
warning = '\x1b[93m'
fail = '\x1b[91m'
endc = '\x1b[0m'
bold = '\x1b[1m'
underline = '\x1b[4m'
white = '\x1b[1;97m'
def banner():
version = '0.6.0'
githublink = 'https://github.com/f0lg0/Oncogene'
print('\n+--------------------------------------------------------------+\n')
logo = ['|--- ONCOGENE ----|', ' \\---------------/ ', ' ~-_---------_-~ ', ' ~-_---_-~\t\t', ' ~-_ \t\t', ' _-~---~-_ ', ' _-~---------~-_ ', ' /---------------\\\t', '|-----------------|']
banner = [' |', ' | Welcome to Oncogene', f' | Version: {version}', ' |', f' | {githublink}', ' |', ' | Written by: f0lg0', ' |', f' | {colors.FAIL}[!] Only for educational purposes']
for (llogo, lbanner) in zip(LOGO, BANNER):
print(colors.OKGREEN + colors.BOLD + llogo, colors.OKBLUE + colors.BOLD + lbanner)
print(colors.ENDC)
print('\n+--------------------------------------------------------------+') |
cube = []
for value in range(1, 11):
cube_value = value**3
cube.append(cube_value)
print(cube)
| cube = []
for value in range(1, 11):
cube_value = value ** 3
cube.append(cube_value)
print(cube) |
# We create an arr dp which hold max val till that point. At each i, max_val = max(dp[i-2] + nums[i], dp[i-1])
class Solution:
def rob(self, nums: List[int]) -> int:
if not nums:
return 0
if len(nums)<2:
return max(nums)
dp = [0]*len(nums)
dp[0] = nums[0]
dp[1] = max(nums[0], nums[1])
for i in range(2, len(nums)):
dp[i] = max(dp[i-2] + nums[i], dp[i-1])
return dp[-1] | class Solution:
def rob(self, nums: List[int]) -> int:
if not nums:
return 0
if len(nums) < 2:
return max(nums)
dp = [0] * len(nums)
dp[0] = nums[0]
dp[1] = max(nums[0], nums[1])
for i in range(2, len(nums)):
dp[i] = max(dp[i - 2] + nums[i], dp[i - 1])
return dp[-1] |
def to_pascal_case(string):
return ''.join([w.title() for w in string.split('_')])
| def to_pascal_case(string):
return ''.join([w.title() for w in string.split('_')]) |
# Approach 3 - Two Pointers
# Time: O(n^2)
# Space: O(1)
class Solution:
def threeSumSmaller(self, nums: List[int], target: int) -> int:
nums.sort()
total = 0
for i in range(len(nums)-1):
total += self.twoSumSmaller(nums, i + 1, target - nums[i])
return total
def twoSumSmaller(self, nums, start_index, target):
total = 0
left, right = start_index, len(nums) - 1
while left < right:
if nums[left] + nums[right] < target:
total += right - left
left += 1
else:
right -= 1
return total
| class Solution:
def three_sum_smaller(self, nums: List[int], target: int) -> int:
nums.sort()
total = 0
for i in range(len(nums) - 1):
total += self.twoSumSmaller(nums, i + 1, target - nums[i])
return total
def two_sum_smaller(self, nums, start_index, target):
total = 0
(left, right) = (start_index, len(nums) - 1)
while left < right:
if nums[left] + nums[right] < target:
total += right - left
left += 1
else:
right -= 1
return total |
alien_0 = {'color': 'green', 'points': 5}
print(alien_0)
print(alien_0['color'])
print(alien_0['points'])
new_points = alien_0['points']
print("You just earned " + str(new_points) + " points!")
| alien_0 = {'color': 'green', 'points': 5}
print(alien_0)
print(alien_0['color'])
print(alien_0['points'])
new_points = alien_0['points']
print('You just earned ' + str(new_points) + ' points!') |
A = int(input())
B = int(input())
C = int(input())
X = int(input())
count = 0
for a in range(A+1):
for b in range(B+1):
for c in range(C+1):
if 500*a + 100*b + 50*c == X:
count +=1
print(count)
| a = int(input())
b = int(input())
c = int(input())
x = int(input())
count = 0
for a in range(A + 1):
for b in range(B + 1):
for c in range(C + 1):
if 500 * a + 100 * b + 50 * c == X:
count += 1
print(count) |
a, b, c = map(int, input().split())
numbers = [a, b, c]
numbers.sort()
print(" ".join(str(number) for number in numbers))
| (a, b, c) = map(int, input().split())
numbers = [a, b, c]
numbers.sort()
print(' '.join((str(number) for number in numbers))) |
def binarySearch(ar, n, key):
lb = 0
ub = n
while lb <= ub:
mid = int((lb + ub) / 2)
if ar[mid] == key:
return mid
if ar[mid] > key:
ub = mid - 1
else:
lb = mid + 1
print('!!Value Not Found!!')
return -1
# Test Code
ar = [1, 4, 6, 8, 10, 12]
n = 6
print('Position of element 10 : ' + str(binarySearch(ar, n, 10) + 1))
| def binary_search(ar, n, key):
lb = 0
ub = n
while lb <= ub:
mid = int((lb + ub) / 2)
if ar[mid] == key:
return mid
if ar[mid] > key:
ub = mid - 1
else:
lb = mid + 1
print('!!Value Not Found!!')
return -1
ar = [1, 4, 6, 8, 10, 12]
n = 6
print('Position of element 10 : ' + str(binary_search(ar, n, 10) + 1)) |
#MAIN PROGRAM STARTS HERE:
num = int(input('Enter the number of rows and columns for the square: '))
for x in range(num, 0, -1):
for y in range(num, 0, -1):
print ('%d ' % (y), end='')
print() | num = int(input('Enter the number of rows and columns for the square: '))
for x in range(num, 0, -1):
for y in range(num, 0, -1):
print('%d ' % y, end='')
print() |
def validBraces(string):
while len(string) !=0:
if '{}' in string or '[]' in string or '()' in string:
string = string.replace('{}','').replace('()','').replace('[]','')
else:
return False
return True | def valid_braces(string):
while len(string) != 0:
if '{}' in string or '[]' in string or '()' in string:
string = string.replace('{}', '').replace('()', '').replace('[]', '')
else:
return False
return True |
def resolve():
'''
code here
'''
N, M = [int(item) for item in input().split()]
As = [[int(item) for item in input().split()] for _ in range(N)]
memo = [0 for _ in range(M+1)]
for k, *items in As:
for item in items:
memo[item] += 1
res = 0
for item in memo:
if item == N:
res += 1
print(res)
if __name__ == "__main__":
resolve()
| def resolve():
"""
code here
"""
(n, m) = [int(item) for item in input().split()]
as = [[int(item) for item in input().split()] for _ in range(N)]
memo = [0 for _ in range(M + 1)]
for (k, *items) in As:
for item in items:
memo[item] += 1
res = 0
for item in memo:
if item == N:
res += 1
print(res)
if __name__ == '__main__':
resolve() |
noc_config = [
["c", "c"],
["c", "c"],
["n", "v"],
#["c", "n"],
]
| noc_config = [['c', 'c'], ['c', 'c'], ['n', 'v']] |
class Thing:
def __init__(self, primary_noun, countable=True):
self.primary_noun = primary_noun
self.countable = countable
class Container(Thing):
def __init__(self, primary_noun, countable=True, preposition="on"):
super().__init__(primary_noun, countable)
self.preposition = preposition
def there_are_things_here(things):
result = ["There is"]
if not things:
result.append("nothing")
elif len(things) == 1:
thing = things[0]
if thing.primary_noun[0] in "aeiou":
article = "an"
else:
article = "a"
result.append(f"{article} {thing.primary_noun}")
else:
inner = []
for thing in things[:-1]:
if thing.countable:
if thing.primary_noun[0] in "aeiou":
article = "an"
else:
article = "a"
else:
article = "some"
inner.append(f"{article} {thing.primary_noun}")
thing = things[-1]
if thing.countable:
article = "a"
else:
article = "some"
result.append(", ".join(inner) + f" and {article} {thing.primary_noun}")
result.append("here.")
return " ".join(result)
| class Thing:
def __init__(self, primary_noun, countable=True):
self.primary_noun = primary_noun
self.countable = countable
class Container(Thing):
def __init__(self, primary_noun, countable=True, preposition='on'):
super().__init__(primary_noun, countable)
self.preposition = preposition
def there_are_things_here(things):
result = ['There is']
if not things:
result.append('nothing')
elif len(things) == 1:
thing = things[0]
if thing.primary_noun[0] in 'aeiou':
article = 'an'
else:
article = 'a'
result.append(f'{article} {thing.primary_noun}')
else:
inner = []
for thing in things[:-1]:
if thing.countable:
if thing.primary_noun[0] in 'aeiou':
article = 'an'
else:
article = 'a'
else:
article = 'some'
inner.append(f'{article} {thing.primary_noun}')
thing = things[-1]
if thing.countable:
article = 'a'
else:
article = 'some'
result.append(', '.join(inner) + f' and {article} {thing.primary_noun}')
result.append('here.')
return ' '.join(result) |
# loops over all collection data, converts to true if collection - false if not part of collection
def collection_to_boolean(data_frame):
# Data should be available as str (see Kaggle Webpage)
data_frame.belongs_to_collection = data_frame.belongs_to_collection.astype(str)
# Looping over Data to convert to 0/1
data_frame['belongs_to_collection'] = (data_frame['belongs_to_collection'] != 'nan').astype(int)
# Converting data from 0/1 to true false
data_frame.belongs_to_collection = data_frame.belongs_to_collection.astype(bool)
return data_frame
| def collection_to_boolean(data_frame):
data_frame.belongs_to_collection = data_frame.belongs_to_collection.astype(str)
data_frame['belongs_to_collection'] = (data_frame['belongs_to_collection'] != 'nan').astype(int)
data_frame.belongs_to_collection = data_frame.belongs_to_collection.astype(bool)
return data_frame |
#var 1
div1 = [num for num in range(1, 11) if num % 2 != 0 and num % 3 != 0]
print(f"Not divisible by 2 and 3: {div1}")
div2 = [num for num in range(1, 11) if num % 2 == 0]
print(f"Divisible by 2: {div2}")
div3 = [num for num in range (1, 11) if num % 3 == 0]
print(f"Divisible by 3: {div3}")
input()
#var 2
for num in range(1, 11):
if num % 2 == 0:
print("Divisible by 2: ", num)
elif num % 3 == 0:
print("Divisible by 3: ", num)
elif num % 2 != 0 and num % 3 != 0:
print("Not divisible by both: ", num)
input()
| div1 = [num for num in range(1, 11) if num % 2 != 0 and num % 3 != 0]
print(f'Not divisible by 2 and 3: {div1}')
div2 = [num for num in range(1, 11) if num % 2 == 0]
print(f'Divisible by 2: {div2}')
div3 = [num for num in range(1, 11) if num % 3 == 0]
print(f'Divisible by 3: {div3}')
input()
for num in range(1, 11):
if num % 2 == 0:
print('Divisible by 2: ', num)
elif num % 3 == 0:
print('Divisible by 3: ', num)
elif num % 2 != 0 and num % 3 != 0:
print('Not divisible by both: ', num)
input() |
pkgname = "traceroute"
pkgver = "2.1.0"
pkgrel = 0
build_style = "makefile"
make_cmd = "gmake"
make_build_args = ["prefix=/usr"]
make_install_args = ["prefix=/usr"]
hostmakedepends = ["gmake"]
makedepends = ["linux-headers"]
pkgdesc = "Traces the route taken by packets over an IPv4/IPv6 network"
maintainer = "q66 <[email protected]>"
license = "GPL-2.0-or-later AND LGPL-2.1-or-later"
url = "http://traceroute.sourceforge.net"
source = f"$(SOURCEFORGE_SITE)/{pkgname}/{pkgname}-{pkgver}.tar.gz"
sha256 = "3669d22a34d3f38ed50caba18cd525ba55c5c00d5465f2d20d7472e5d81603b6"
# no tests
options = ["!cross", "!check"]
| pkgname = 'traceroute'
pkgver = '2.1.0'
pkgrel = 0
build_style = 'makefile'
make_cmd = 'gmake'
make_build_args = ['prefix=/usr']
make_install_args = ['prefix=/usr']
hostmakedepends = ['gmake']
makedepends = ['linux-headers']
pkgdesc = 'Traces the route taken by packets over an IPv4/IPv6 network'
maintainer = 'q66 <[email protected]>'
license = 'GPL-2.0-or-later AND LGPL-2.1-or-later'
url = 'http://traceroute.sourceforge.net'
source = f'$(SOURCEFORGE_SITE)/{pkgname}/{pkgname}-{pkgver}.tar.gz'
sha256 = '3669d22a34d3f38ed50caba18cd525ba55c5c00d5465f2d20d7472e5d81603b6'
options = ['!cross', '!check'] |
a=int(input("enter the element"))
b=int(input("enter the element"))
c=int(input("enter the element"))
n1=[]
n2=[]
n3=[]
n1.append(a)
n2.append(b)
n3.append(c)
if n1>n2 and n1>n3:
print(n1,"maximum")
elif n2>n1 and n2>n3:
print(n2,"maximum")
else:
print(n3,"maximum") | a = int(input('enter the element'))
b = int(input('enter the element'))
c = int(input('enter the element'))
n1 = []
n2 = []
n3 = []
n1.append(a)
n2.append(b)
n3.append(c)
if n1 > n2 and n1 > n3:
print(n1, 'maximum')
elif n2 > n1 and n2 > n3:
print(n2, 'maximum')
else:
print(n3, 'maximum') |
{
'name': 'test installation of data module',
'description': 'Test data module (see test_data_module) installation',
'version': '0.0.1',
'category': 'Hidden/Tests',
'sequence': 10,
}
| {'name': 'test installation of data module', 'description': 'Test data module (see test_data_module) installation', 'version': '0.0.1', 'category': 'Hidden/Tests', 'sequence': 10} |
class Solution:
@staticmethod
def longest_palindromic(self, s: str) -> str:
# Instead of taking the left and right edges of the string
# We will start in the middle of the string
# Making base function to help us in the method and pass in 'l' and 'r' parameters
def baseFun (l,r):
while (l >= 0 and r < len(s) and s[l]==s[r]):
# Since the left is greater or equal 0, right is less that string length
# After checking if the 'l' character is equal 'r' character
# We need to decrease 'l' by 1 and increase 'r' by 1
l -= 1
r += 1
return s[l+1:r]
# Define an empty variable to store result
res = ""
for i in range(len(s)):
# If the length of "s" is odd it will start from the same character
test = baseFun (i,i)
if len(test) > len(res):
res = test
# If the length of "s" is even it will start from the two middle characters
test = baseFun (i,i+1)
if len(test) > len(res):
res = test
return res | class Solution:
@staticmethod
def longest_palindromic(self, s: str) -> str:
def base_fun(l, r):
while l >= 0 and r < len(s) and (s[l] == s[r]):
l -= 1
r += 1
return s[l + 1:r]
res = ''
for i in range(len(s)):
test = base_fun(i, i)
if len(test) > len(res):
res = test
test = base_fun(i, i + 1)
if len(test) > len(res):
res = test
return res |
# model settings
norm_cfg = dict(type='GN', num_groups=32, requires_grad=True)
model = dict(
type='CFADetector',
pretrained='torchvision://resnet50',
backbone=dict(
type='ResNet',
depth=50,
num_stages=4,
out_indices=(0, 1, 2, 3),
frozen_stages=1,
norm_cfg=dict(type='BN', requires_grad=True),
style='pytorch',
),
neck=
dict(
type='FPN',
in_channels=[256, 512, 1024, 2048],
out_channels=256,
start_level=1,
add_extra_convs=True,
num_outs=5,
norm_cfg=norm_cfg
),
bbox_head=dict(
type='CFAHead',
num_classes=16,
in_channels=256,
feat_channels=256,
point_feat_channels=256,
stacked_convs=3,
num_points=9,
gradient_mul=0.3,
point_strides=[8, 16, 32, 64, 128],
point_base_scale=2,
norm_cfg=norm_cfg,
loss_cls=dict(type='FocalLoss', use_sigmoid=True, gamma=2.0, alpha=0.25, loss_weight=1.0),
loss_bbox_init=dict(type='ConvexGIoULoss', loss_weight=0.375),
loss_bbox_refine=dict(type='ConvexGIoULoss', loss_weight=1.0),
transform_method='rotrect',
show_points=True,
use_cfa=True,
topk=6,
anti_factor=0.75))
# training and testing settings
train_cfg = dict(
init=dict(
assigner=dict(type='ConvexAssigner', scale=4, pos_num=1),
allowed_border=-1,
pos_weight=-1,
debug=False),
refine=dict(
assigner=dict(
type='MaxConvexIoUAssigner',
pos_iou_thr=0.1,
neg_iou_thr=0.1,
min_pos_iou=0,
ignore_iof_thr=-1),
allowed_border=-1,
pos_weight=-1,
debug=False))
test_cfg = dict(
nms_pre=2000,
min_bbox_size=0,
score_thr=0.05,
nms=dict(type='rnms', iou_thr=0.4),
max_per_img=2000)
# dataset settings
dataset_type = 'DOTADataset'
data_root = '/content/drive/MyDrive/data/split_ss_dota1_0/'
img_norm_cfg = dict(
mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True)
train_pipeline = [
dict(type='LoadImageFromFile'),
dict(type='LoadOBBAnnotations', with_bbox=True,
with_label=True, with_poly_as_mask=True),
dict(type='LoadDOTASpecialInfo'),
dict(type='Resize', img_scale=(1024, 1024), keep_ratio=True),
dict(type='OBBRandomFlip', h_flip_ratio=0.5, v_flip_ratio=0.5),
dict(type='Normalize', **img_norm_cfg),
dict(type='RandomOBBRotate', rotate_after_flip=True,
angles=(0, 0), vert_rate=0.5, vert_cls=['roundabout', 'storage-tank']),
dict(type='Pad', size_divisor=32),
dict(type='DOTASpecialIgnore', ignore_size=2),
dict(type='FliterEmpty'),
dict(type='Mask2OBB', obb_type='obb'),
dict(type='OBBDefaultFormatBundle'),
dict(type='OBBCollect', keys=['img', 'gt_bboxes', 'gt_obboxes', 'gt_labels'])
]
test_pipeline = [
dict(type='LoadImageFromFile'),
dict(
type='MultiScaleFlipRotateAug',
img_scale=[(1024, 1024)],
h_flip=False,
v_flip=False,
rotate=False,
transforms=[
dict(type='Resize', keep_ratio=True),
dict(type='OBBRandomFlip'),
dict(type='Normalize', **img_norm_cfg),
dict(type='RandomOBBRotate', rotate_after_flip=True),
dict(type='Pad', size_divisor=32),
dict(type='ImageToTensor', keys=['img']),
dict(type='OBBCollect', keys=['img']),
])
]
# does evaluation while training
# uncomments it when you need evaluate every epoch
# data = dict(
# samples_per_gpu=2,
# workers_per_gpu=4,
# train=dict(
# type=dataset_type,
# task='Task1',
# ann_file=data_root + 'train/annfiles/',
# img_prefix=data_root + 'train/images/',
# pipeline=train_pipeline),
# val=dict(
# type=dataset_type,
# task='Task1',
# ann_file=data_root + 'val/annfiles/',
# img_prefix=data_root + 'val/images/',
# pipeline=test_pipeline),
# test=dict(
# type=dataset_type,
# task='Task1',
# ann_file=data_root + 'val/annfiles/',
# img_prefix=data_root + 'val/images/',
# pipeline=test_pipeline))
# evaluation = dict(metric='mAP')
# disable evluation, only need train and test
# uncomments it when use trainval as train
data = dict(
samples_per_gpu=2,
workers_per_gpu=4,
train=dict(
type=dataset_type,
task='Task1',
ann_file=data_root + 'trainval/annfiles/',
img_prefix=data_root + 'trainval/images/',
pipeline=train_pipeline),
test=dict(
type=dataset_type,
task='Task1',
ann_file=data_root + 'test/annfiles/',
img_prefix=data_root + 'test/images/',
pipeline=test_pipeline))
evaluation = None
# optimizer
optimizer = dict(type='SGD', lr=0.008, momentum=0.9, weight_decay=0.0001)
optimizer_config = dict(grad_clip=dict(max_norm=35, norm_type=2))
# learning policy
lr_config = dict(
policy='step',
warmup='linear',
warmup_iters=500,
warmup_ratio=1.0 / 3,
step=[24, 32, 38])
checkpoint_config = dict(interval=5)
# yapf:disable
log_config = dict(
interval=50,
hooks=[
dict(type='TextLoggerHook'),
])
# yapf:enable
# runtime settings
total_epochs = 40
dist_params = dict(backend='nccl')
log_level = 'INFO'
work_dir = None
load_from = None
resume_from = None
workflow = [('train', 1)]
| norm_cfg = dict(type='GN', num_groups=32, requires_grad=True)
model = dict(type='CFADetector', pretrained='torchvision://resnet50', backbone=dict(type='ResNet', depth=50, num_stages=4, out_indices=(0, 1, 2, 3), frozen_stages=1, norm_cfg=dict(type='BN', requires_grad=True), style='pytorch'), neck=dict(type='FPN', in_channels=[256, 512, 1024, 2048], out_channels=256, start_level=1, add_extra_convs=True, num_outs=5, norm_cfg=norm_cfg), bbox_head=dict(type='CFAHead', num_classes=16, in_channels=256, feat_channels=256, point_feat_channels=256, stacked_convs=3, num_points=9, gradient_mul=0.3, point_strides=[8, 16, 32, 64, 128], point_base_scale=2, norm_cfg=norm_cfg, loss_cls=dict(type='FocalLoss', use_sigmoid=True, gamma=2.0, alpha=0.25, loss_weight=1.0), loss_bbox_init=dict(type='ConvexGIoULoss', loss_weight=0.375), loss_bbox_refine=dict(type='ConvexGIoULoss', loss_weight=1.0), transform_method='rotrect', show_points=True, use_cfa=True, topk=6, anti_factor=0.75))
train_cfg = dict(init=dict(assigner=dict(type='ConvexAssigner', scale=4, pos_num=1), allowed_border=-1, pos_weight=-1, debug=False), refine=dict(assigner=dict(type='MaxConvexIoUAssigner', pos_iou_thr=0.1, neg_iou_thr=0.1, min_pos_iou=0, ignore_iof_thr=-1), allowed_border=-1, pos_weight=-1, debug=False))
test_cfg = dict(nms_pre=2000, min_bbox_size=0, score_thr=0.05, nms=dict(type='rnms', iou_thr=0.4), max_per_img=2000)
dataset_type = 'DOTADataset'
data_root = '/content/drive/MyDrive/data/split_ss_dota1_0/'
img_norm_cfg = dict(mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True)
train_pipeline = [dict(type='LoadImageFromFile'), dict(type='LoadOBBAnnotations', with_bbox=True, with_label=True, with_poly_as_mask=True), dict(type='LoadDOTASpecialInfo'), dict(type='Resize', img_scale=(1024, 1024), keep_ratio=True), dict(type='OBBRandomFlip', h_flip_ratio=0.5, v_flip_ratio=0.5), dict(type='Normalize', **img_norm_cfg), dict(type='RandomOBBRotate', rotate_after_flip=True, angles=(0, 0), vert_rate=0.5, vert_cls=['roundabout', 'storage-tank']), dict(type='Pad', size_divisor=32), dict(type='DOTASpecialIgnore', ignore_size=2), dict(type='FliterEmpty'), dict(type='Mask2OBB', obb_type='obb'), dict(type='OBBDefaultFormatBundle'), dict(type='OBBCollect', keys=['img', 'gt_bboxes', 'gt_obboxes', 'gt_labels'])]
test_pipeline = [dict(type='LoadImageFromFile'), dict(type='MultiScaleFlipRotateAug', img_scale=[(1024, 1024)], h_flip=False, v_flip=False, rotate=False, transforms=[dict(type='Resize', keep_ratio=True), dict(type='OBBRandomFlip'), dict(type='Normalize', **img_norm_cfg), dict(type='RandomOBBRotate', rotate_after_flip=True), dict(type='Pad', size_divisor=32), dict(type='ImageToTensor', keys=['img']), dict(type='OBBCollect', keys=['img'])])]
data = dict(samples_per_gpu=2, workers_per_gpu=4, train=dict(type=dataset_type, task='Task1', ann_file=data_root + 'trainval/annfiles/', img_prefix=data_root + 'trainval/images/', pipeline=train_pipeline), test=dict(type=dataset_type, task='Task1', ann_file=data_root + 'test/annfiles/', img_prefix=data_root + 'test/images/', pipeline=test_pipeline))
evaluation = None
optimizer = dict(type='SGD', lr=0.008, momentum=0.9, weight_decay=0.0001)
optimizer_config = dict(grad_clip=dict(max_norm=35, norm_type=2))
lr_config = dict(policy='step', warmup='linear', warmup_iters=500, warmup_ratio=1.0 / 3, step=[24, 32, 38])
checkpoint_config = dict(interval=5)
log_config = dict(interval=50, hooks=[dict(type='TextLoggerHook')])
total_epochs = 40
dist_params = dict(backend='nccl')
log_level = 'INFO'
work_dir = None
load_from = None
resume_from = None
workflow = [('train', 1)] |
# -*- coding: utf-8 -*-
class BaseContext:
headers = {}
def __init__(self, **kwargs):
self.headers = {}
def on_auth(self):
pass
def update_authkey(self, authkey):
pass
def set_authkey(self, authkey):
self.headers["X-Authorization-Update"] = "Bearer {0}".format(authkey)
| class Basecontext:
headers = {}
def __init__(self, **kwargs):
self.headers = {}
def on_auth(self):
pass
def update_authkey(self, authkey):
pass
def set_authkey(self, authkey):
self.headers['X-Authorization-Update'] = 'Bearer {0}'.format(authkey) |
class BaseDeDados:
def __init__(self):#init eh o mais proximo de um construtor e vamos adicionar ao dicionario o banco de dados
self.dados = {}
def inserir_cliente(self, id, nome):
if 'clientes' not in self.dados:#se a informacao nao tiver na base de dados
self.dados['clientes'] = {id: nome}#cria um cliente
else:
self.dados['clientes'].update({id: nome})#se a chave ja existir na base de dados atualiza a base
def lista_clientes(self):
for id, nome in self.dados['clientes'].items():
print(id, nome)
def apaga_cliente(self, id):
del self.dados['clientes'] [id]
bd = BaseDeDados()
bd.inserir_cliente(1, 'daniel')
bd.inserir_cliente(2, 'luana')
bd.inserir_cliente(3, 'tiago')
bd.apaga_cliente(3)
bd.lista_clientes()
#print(bd.dados)
#{'clientes': {1: 'daniel', 2: 'luana', 3: 'tiago'}}
| class Basededados:
def __init__(self):
self.dados = {}
def inserir_cliente(self, id, nome):
if 'clientes' not in self.dados:
self.dados['clientes'] = {id: nome}
else:
self.dados['clientes'].update({id: nome})
def lista_clientes(self):
for (id, nome) in self.dados['clientes'].items():
print(id, nome)
def apaga_cliente(self, id):
del self.dados['clientes'][id]
bd = base_de_dados()
bd.inserir_cliente(1, 'daniel')
bd.inserir_cliente(2, 'luana')
bd.inserir_cliente(3, 'tiago')
bd.apaga_cliente(3)
bd.lista_clientes() |
def langInit(jsonDir,json):
fop=open(jsonDir,'r')
lang=fop.read()
fop.close()
lang=json.loads(lang)
#print(lang)
return lang
| def lang_init(jsonDir, json):
fop = open(jsonDir, 'r')
lang = fop.read()
fop.close()
lang = json.loads(lang)
return lang |
# closure Example
def counter(n):
def next():
nonlocal n
r = n
n -= 1
# print(next.__globals__)
print(type(next.__globals__))
for val in next.__globals__:
print(type(val), val)
return r
return next
next = counter(10)
print(next())
# print(next.__globals__)
print(next())
print(next())
print(next())
print(next()) | def counter(n):
def next():
nonlocal n
r = n
n -= 1
print(type(next.__globals__))
for val in next.__globals__:
print(type(val), val)
return r
return next
next = counter(10)
print(next())
print(next())
print(next())
print(next())
print(next()) |
#
# PySNMP MIB module IF-CAP-STACK-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/IF-CAP-STACK-MIB
# Produced by pysmi-0.3.4 at Wed May 1 13:53:07 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint, SingleValueConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint", "SingleValueConstraint", "ValueSizeConstraint")
ifInvStackGroup, = mibBuilder.importSymbols("IF-INVERTED-STACK-MIB", "ifInvStackGroup")
ifStackLowerLayer, ifStackHigherLayer, ifStackGroup2 = mibBuilder.importSymbols("IF-MIB", "ifStackLowerLayer", "ifStackHigherLayer", "ifStackGroup2")
ObjectGroup, ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "ModuleCompliance", "NotificationGroup")
NotificationType, MibScalar, MibTable, MibTableRow, MibTableColumn, Bits, ObjectIdentity, iso, Counter32, TimeTicks, ModuleIdentity, Integer32, Gauge32, Counter64, Unsigned32, MibIdentifier, mib_2, IpAddress = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Bits", "ObjectIdentity", "iso", "Counter32", "TimeTicks", "ModuleIdentity", "Integer32", "Gauge32", "Counter64", "Unsigned32", "MibIdentifier", "mib-2", "IpAddress")
DisplayString, TextualConvention, TruthValue = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention", "TruthValue")
ifCapStackMIB = ModuleIdentity((1, 3, 6, 1, 2, 1, 166))
ifCapStackMIB.setRevisions(('2007-11-07 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: ifCapStackMIB.setRevisionsDescriptions(('Initial version, published as RFC 5066.',))
if mibBuilder.loadTexts: ifCapStackMIB.setLastUpdated('200711070000Z')
if mibBuilder.loadTexts: ifCapStackMIB.setOrganization('IETF Ethernet Interfaces and Hub MIB Working Group')
if mibBuilder.loadTexts: ifCapStackMIB.setContactInfo('WG charter: http://www.ietf.org/html.charters/OLD/hubmib-charter.html Mailing Lists: General Discussion: [email protected] To Subscribe: [email protected] In Body: subscribe your_email_address Chair: Bert Wijnen Postal: Alcatel-Lucent Schagen 33 3461 GL Linschoten Netherlands Phone: +31-348-407-775 EMail: [email protected] Editor: Edward Beili Postal: Actelis Networks Inc. 25 Bazel St., P.O.B. 10173 Petach-Tikva 10173 Israel Phone: +972-3-924-3491 EMail: [email protected]')
if mibBuilder.loadTexts: ifCapStackMIB.setDescription('The objects in this MIB module are used to describe cross-connect capabilities of stacked (layered) interfaces, complementing ifStackTable and ifInvStackTable defined in IF-MIB and IF-INVERTED-STACK-MIB, respectively. Copyright (C) The IETF Trust (2007). This version of this MIB module is part of RFC 5066; see the RFC itself for full legal notices.')
ifCapStackObjects = MibIdentifier((1, 3, 6, 1, 2, 1, 166, 1))
ifCapStackConformance = MibIdentifier((1, 3, 6, 1, 2, 1, 166, 2))
ifCapStackTable = MibTable((1, 3, 6, 1, 2, 1, 166, 1, 1), )
if mibBuilder.loadTexts: ifCapStackTable.setReference('IF-MIB, ifStackTable')
if mibBuilder.loadTexts: ifCapStackTable.setStatus('current')
if mibBuilder.loadTexts: ifCapStackTable.setDescription("This table, modeled after ifStackTable from IF-MIB, contains information on the possible 'on-top-of' relationships between the multiple sub-layers of network interfaces (as opposed to actual relationships described in ifStackTable). In particular, it contains information on which sub-layers MAY possibly run 'on top of' which other sub-layers, as determined by cross-connect capability of the device, where each sub-layer corresponds to a conceptual row in the ifTable. For example, when the sub-layer with ifIndex value x can be connected to run on top of the sub-layer with ifIndex value y, then this table contains: ifCapStackStatus.x.y=true The ifCapStackStatus.x.y row does not exist if it is impossible to connect between the sub-layers x and y. Note that for most stacked interfaces (e.g., 2BASE-TL) there's always at least one higher-level interface (e.g., PCS port) for each lower-level interface (e.g., PME) and at least one lower-level interface for each higher-level interface, that is, there is at least a single row with a 'true' status for any such existing value of x or y. This table is read-only as it describes device capabilities.")
ifCapStackEntry = MibTableRow((1, 3, 6, 1, 2, 1, 166, 1, 1, 1), ).setIndexNames((0, "IF-MIB", "ifStackHigherLayer"), (0, "IF-MIB", "ifStackLowerLayer"))
if mibBuilder.loadTexts: ifCapStackEntry.setStatus('current')
if mibBuilder.loadTexts: ifCapStackEntry.setDescription("Information on a particular relationship between two sub-layers, specifying that one sub-layer MAY possibly run on 'top' of the other sub-layer. Each sub-layer corresponds to a conceptual row in the ifTable (interface index for lower and higher layer, respectively).")
ifCapStackStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 166, 1, 1, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ifCapStackStatus.setStatus('current')
if mibBuilder.loadTexts: ifCapStackStatus.setDescription("The status of the 'cross-connect capability' relationship between two sub-layers. The following values can be returned: true(1) - indicates that the sub-layer interface, identified by the ifStackLowerLayer MAY be connected to run 'below' the sub-layer interface, identified by the ifStackHigherLayer index. false(2) - the sub-layer interfaces cannot be connected temporarily due to unavailability of the interface(s), e.g., one of the interfaces is located on an absent pluggable module. Note that lower-layer interface availability per higher-layer, indicated by the value of 'true', can be constrained by other parameters, for example, by the aggregation capacity of a higher-layer interface or by the lower-layer interface in question being already connected to another higher-layer interface. In order to ensure that a particular sub-layer can be connected to another sub-layer, all respective objects (e.g., ifCapStackTable, ifStackTable, and efmCuPAFCapacity for EFMCu interfaces) SHALL be inspected. This object is read-only, unlike ifStackStatus, as it describes a cross-connect capability.")
ifInvCapStackTable = MibTable((1, 3, 6, 1, 2, 1, 166, 1, 2), )
if mibBuilder.loadTexts: ifInvCapStackTable.setReference('IF-INVERTED-STACK-MIB, ifInvStackTable')
if mibBuilder.loadTexts: ifInvCapStackTable.setStatus('current')
if mibBuilder.loadTexts: ifInvCapStackTable.setDescription("A table containing information on the possible relationships between the multiple sub-layers of network interfaces. This table, modeled after ifInvStackTable from IF-INVERTED-STACK-MIB, is an inverse of the ifCapStackTable defined in this MIB module. In particular, this table contains information on which sub-layers MAY run 'underneath' which other sub-layers, where each sub-layer corresponds to a conceptual row in the ifTable. For example, when the sub-layer with ifIndex value x MAY be connected to run underneath the sub-layer with ifIndex value y, then this table contains: ifInvCapStackStatus.x.y=true This table contains exactly the same number of rows as the ifCapStackTable, but the rows appear in a different order. This table is read-only as it describes a cross-connect capability.")
ifInvCapStackEntry = MibTableRow((1, 3, 6, 1, 2, 1, 166, 1, 2, 1), ).setIndexNames((0, "IF-MIB", "ifStackLowerLayer"), (0, "IF-MIB", "ifStackHigherLayer"))
if mibBuilder.loadTexts: ifInvCapStackEntry.setStatus('current')
if mibBuilder.loadTexts: ifInvCapStackEntry.setDescription('Information on a particular relationship between two sub- layers, specifying that one sub-layer MAY run underneath the other sub-layer. Each sub-layer corresponds to a conceptual row in the ifTable.')
ifInvCapStackStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 166, 1, 2, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ifInvCapStackStatus.setReference('ifCapStackStatus')
if mibBuilder.loadTexts: ifInvCapStackStatus.setStatus('current')
if mibBuilder.loadTexts: ifInvCapStackStatus.setDescription("The status of the possible 'cross-connect capability' relationship between two sub-layers. An instance of this object exists for each instance of the ifCapStackStatus object, and vice versa. For example, if the variable ifCapStackStatus.H.L exists, then the variable ifInvCapStackStatus.L.H must also exist, and vice versa. In addition, the two variables always have the same value. The ifInvCapStackStatus object is read-only, as it describes a cross-connect capability.")
ifCapStackGroups = MibIdentifier((1, 3, 6, 1, 2, 1, 166, 2, 1))
ifCapStackCompliances = MibIdentifier((1, 3, 6, 1, 2, 1, 166, 2, 2))
ifCapStackGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 166, 2, 1, 1)).setObjects(("IF-CAP-STACK-MIB", "ifCapStackStatus"), ("IF-CAP-STACK-MIB", "ifInvCapStackStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ifCapStackGroup = ifCapStackGroup.setStatus('current')
if mibBuilder.loadTexts: ifCapStackGroup.setDescription('A collection of objects providing information on the cross-connect capability of multi-layer (stacked) network interfaces.')
ifCapStackCompliance = ModuleCompliance((1, 3, 6, 1, 2, 1, 166, 2, 2, 1)).setObjects(("IF-CAP-STACK-MIB", "ifCapStackGroup"), ("IF-MIB", "ifStackGroup2"), ("IF-INVERTED-STACK-MIB", "ifInvStackGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ifCapStackCompliance = ifCapStackCompliance.setStatus('current')
if mibBuilder.loadTexts: ifCapStackCompliance.setDescription('The compliance statement for SNMP entities, which provide information on the cross-connect capability of multi-layer (stacked) network interfaces, with flexible cross-connect between the sub-layers.')
mibBuilder.exportSymbols("IF-CAP-STACK-MIB", ifCapStackConformance=ifCapStackConformance, ifCapStackMIB=ifCapStackMIB, ifInvCapStackStatus=ifInvCapStackStatus, ifCapStackObjects=ifCapStackObjects, ifCapStackGroups=ifCapStackGroups, ifCapStackEntry=ifCapStackEntry, ifCapStackGroup=ifCapStackGroup, ifCapStackCompliances=ifCapStackCompliances, ifCapStackTable=ifCapStackTable, ifCapStackCompliance=ifCapStackCompliance, ifCapStackStatus=ifCapStackStatus, PYSNMP_MODULE_ID=ifCapStackMIB, ifInvCapStackEntry=ifInvCapStackEntry, ifInvCapStackTable=ifInvCapStackTable)
| (octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, constraints_intersection, value_range_constraint, single_value_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint', 'SingleValueConstraint', 'ValueSizeConstraint')
(if_inv_stack_group,) = mibBuilder.importSymbols('IF-INVERTED-STACK-MIB', 'ifInvStackGroup')
(if_stack_lower_layer, if_stack_higher_layer, if_stack_group2) = mibBuilder.importSymbols('IF-MIB', 'ifStackLowerLayer', 'ifStackHigherLayer', 'ifStackGroup2')
(object_group, module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ObjectGroup', 'ModuleCompliance', 'NotificationGroup')
(notification_type, mib_scalar, mib_table, mib_table_row, mib_table_column, bits, object_identity, iso, counter32, time_ticks, module_identity, integer32, gauge32, counter64, unsigned32, mib_identifier, mib_2, ip_address) = mibBuilder.importSymbols('SNMPv2-SMI', 'NotificationType', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Bits', 'ObjectIdentity', 'iso', 'Counter32', 'TimeTicks', 'ModuleIdentity', 'Integer32', 'Gauge32', 'Counter64', 'Unsigned32', 'MibIdentifier', 'mib-2', 'IpAddress')
(display_string, textual_convention, truth_value) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention', 'TruthValue')
if_cap_stack_mib = module_identity((1, 3, 6, 1, 2, 1, 166))
ifCapStackMIB.setRevisions(('2007-11-07 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
ifCapStackMIB.setRevisionsDescriptions(('Initial version, published as RFC 5066.',))
if mibBuilder.loadTexts:
ifCapStackMIB.setLastUpdated('200711070000Z')
if mibBuilder.loadTexts:
ifCapStackMIB.setOrganization('IETF Ethernet Interfaces and Hub MIB Working Group')
if mibBuilder.loadTexts:
ifCapStackMIB.setContactInfo('WG charter: http://www.ietf.org/html.charters/OLD/hubmib-charter.html Mailing Lists: General Discussion: [email protected] To Subscribe: [email protected] In Body: subscribe your_email_address Chair: Bert Wijnen Postal: Alcatel-Lucent Schagen 33 3461 GL Linschoten Netherlands Phone: +31-348-407-775 EMail: [email protected] Editor: Edward Beili Postal: Actelis Networks Inc. 25 Bazel St., P.O.B. 10173 Petach-Tikva 10173 Israel Phone: +972-3-924-3491 EMail: [email protected]')
if mibBuilder.loadTexts:
ifCapStackMIB.setDescription('The objects in this MIB module are used to describe cross-connect capabilities of stacked (layered) interfaces, complementing ifStackTable and ifInvStackTable defined in IF-MIB and IF-INVERTED-STACK-MIB, respectively. Copyright (C) The IETF Trust (2007). This version of this MIB module is part of RFC 5066; see the RFC itself for full legal notices.')
if_cap_stack_objects = mib_identifier((1, 3, 6, 1, 2, 1, 166, 1))
if_cap_stack_conformance = mib_identifier((1, 3, 6, 1, 2, 1, 166, 2))
if_cap_stack_table = mib_table((1, 3, 6, 1, 2, 1, 166, 1, 1))
if mibBuilder.loadTexts:
ifCapStackTable.setReference('IF-MIB, ifStackTable')
if mibBuilder.loadTexts:
ifCapStackTable.setStatus('current')
if mibBuilder.loadTexts:
ifCapStackTable.setDescription("This table, modeled after ifStackTable from IF-MIB, contains information on the possible 'on-top-of' relationships between the multiple sub-layers of network interfaces (as opposed to actual relationships described in ifStackTable). In particular, it contains information on which sub-layers MAY possibly run 'on top of' which other sub-layers, as determined by cross-connect capability of the device, where each sub-layer corresponds to a conceptual row in the ifTable. For example, when the sub-layer with ifIndex value x can be connected to run on top of the sub-layer with ifIndex value y, then this table contains: ifCapStackStatus.x.y=true The ifCapStackStatus.x.y row does not exist if it is impossible to connect between the sub-layers x and y. Note that for most stacked interfaces (e.g., 2BASE-TL) there's always at least one higher-level interface (e.g., PCS port) for each lower-level interface (e.g., PME) and at least one lower-level interface for each higher-level interface, that is, there is at least a single row with a 'true' status for any such existing value of x or y. This table is read-only as it describes device capabilities.")
if_cap_stack_entry = mib_table_row((1, 3, 6, 1, 2, 1, 166, 1, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifStackHigherLayer'), (0, 'IF-MIB', 'ifStackLowerLayer'))
if mibBuilder.loadTexts:
ifCapStackEntry.setStatus('current')
if mibBuilder.loadTexts:
ifCapStackEntry.setDescription("Information on a particular relationship between two sub-layers, specifying that one sub-layer MAY possibly run on 'top' of the other sub-layer. Each sub-layer corresponds to a conceptual row in the ifTable (interface index for lower and higher layer, respectively).")
if_cap_stack_status = mib_table_column((1, 3, 6, 1, 2, 1, 166, 1, 1, 1, 1), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ifCapStackStatus.setStatus('current')
if mibBuilder.loadTexts:
ifCapStackStatus.setDescription("The status of the 'cross-connect capability' relationship between two sub-layers. The following values can be returned: true(1) - indicates that the sub-layer interface, identified by the ifStackLowerLayer MAY be connected to run 'below' the sub-layer interface, identified by the ifStackHigherLayer index. false(2) - the sub-layer interfaces cannot be connected temporarily due to unavailability of the interface(s), e.g., one of the interfaces is located on an absent pluggable module. Note that lower-layer interface availability per higher-layer, indicated by the value of 'true', can be constrained by other parameters, for example, by the aggregation capacity of a higher-layer interface or by the lower-layer interface in question being already connected to another higher-layer interface. In order to ensure that a particular sub-layer can be connected to another sub-layer, all respective objects (e.g., ifCapStackTable, ifStackTable, and efmCuPAFCapacity for EFMCu interfaces) SHALL be inspected. This object is read-only, unlike ifStackStatus, as it describes a cross-connect capability.")
if_inv_cap_stack_table = mib_table((1, 3, 6, 1, 2, 1, 166, 1, 2))
if mibBuilder.loadTexts:
ifInvCapStackTable.setReference('IF-INVERTED-STACK-MIB, ifInvStackTable')
if mibBuilder.loadTexts:
ifInvCapStackTable.setStatus('current')
if mibBuilder.loadTexts:
ifInvCapStackTable.setDescription("A table containing information on the possible relationships between the multiple sub-layers of network interfaces. This table, modeled after ifInvStackTable from IF-INVERTED-STACK-MIB, is an inverse of the ifCapStackTable defined in this MIB module. In particular, this table contains information on which sub-layers MAY run 'underneath' which other sub-layers, where each sub-layer corresponds to a conceptual row in the ifTable. For example, when the sub-layer with ifIndex value x MAY be connected to run underneath the sub-layer with ifIndex value y, then this table contains: ifInvCapStackStatus.x.y=true This table contains exactly the same number of rows as the ifCapStackTable, but the rows appear in a different order. This table is read-only as it describes a cross-connect capability.")
if_inv_cap_stack_entry = mib_table_row((1, 3, 6, 1, 2, 1, 166, 1, 2, 1)).setIndexNames((0, 'IF-MIB', 'ifStackLowerLayer'), (0, 'IF-MIB', 'ifStackHigherLayer'))
if mibBuilder.loadTexts:
ifInvCapStackEntry.setStatus('current')
if mibBuilder.loadTexts:
ifInvCapStackEntry.setDescription('Information on a particular relationship between two sub- layers, specifying that one sub-layer MAY run underneath the other sub-layer. Each sub-layer corresponds to a conceptual row in the ifTable.')
if_inv_cap_stack_status = mib_table_column((1, 3, 6, 1, 2, 1, 166, 1, 2, 1, 1), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ifInvCapStackStatus.setReference('ifCapStackStatus')
if mibBuilder.loadTexts:
ifInvCapStackStatus.setStatus('current')
if mibBuilder.loadTexts:
ifInvCapStackStatus.setDescription("The status of the possible 'cross-connect capability' relationship between two sub-layers. An instance of this object exists for each instance of the ifCapStackStatus object, and vice versa. For example, if the variable ifCapStackStatus.H.L exists, then the variable ifInvCapStackStatus.L.H must also exist, and vice versa. In addition, the two variables always have the same value. The ifInvCapStackStatus object is read-only, as it describes a cross-connect capability.")
if_cap_stack_groups = mib_identifier((1, 3, 6, 1, 2, 1, 166, 2, 1))
if_cap_stack_compliances = mib_identifier((1, 3, 6, 1, 2, 1, 166, 2, 2))
if_cap_stack_group = object_group((1, 3, 6, 1, 2, 1, 166, 2, 1, 1)).setObjects(('IF-CAP-STACK-MIB', 'ifCapStackStatus'), ('IF-CAP-STACK-MIB', 'ifInvCapStackStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if_cap_stack_group = ifCapStackGroup.setStatus('current')
if mibBuilder.loadTexts:
ifCapStackGroup.setDescription('A collection of objects providing information on the cross-connect capability of multi-layer (stacked) network interfaces.')
if_cap_stack_compliance = module_compliance((1, 3, 6, 1, 2, 1, 166, 2, 2, 1)).setObjects(('IF-CAP-STACK-MIB', 'ifCapStackGroup'), ('IF-MIB', 'ifStackGroup2'), ('IF-INVERTED-STACK-MIB', 'ifInvStackGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if_cap_stack_compliance = ifCapStackCompliance.setStatus('current')
if mibBuilder.loadTexts:
ifCapStackCompliance.setDescription('The compliance statement for SNMP entities, which provide information on the cross-connect capability of multi-layer (stacked) network interfaces, with flexible cross-connect between the sub-layers.')
mibBuilder.exportSymbols('IF-CAP-STACK-MIB', ifCapStackConformance=ifCapStackConformance, ifCapStackMIB=ifCapStackMIB, ifInvCapStackStatus=ifInvCapStackStatus, ifCapStackObjects=ifCapStackObjects, ifCapStackGroups=ifCapStackGroups, ifCapStackEntry=ifCapStackEntry, ifCapStackGroup=ifCapStackGroup, ifCapStackCompliances=ifCapStackCompliances, ifCapStackTable=ifCapStackTable, ifCapStackCompliance=ifCapStackCompliance, ifCapStackStatus=ifCapStackStatus, PYSNMP_MODULE_ID=ifCapStackMIB, ifInvCapStackEntry=ifInvCapStackEntry, ifInvCapStackTable=ifInvCapStackTable) |
#
# PySNMP MIB module Nortel-MsCarrier-MscPassport-TrunksMIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/Nortel-MsCarrier-MscPassport-TrunksMIB
# Produced by pysmi-0.3.4 at Mon Apr 29 20:19:50 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsIntersection, ValueSizeConstraint, ConstraintsUnion, ValueRangeConstraint, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ValueSizeConstraint", "ConstraintsUnion", "ValueRangeConstraint", "SingleValueConstraint")
RowStatus, Integer32, Gauge32, DisplayString, Counter32, InterfaceIndex, Unsigned32, StorageType = mibBuilder.importSymbols("Nortel-MsCarrier-MscPassport-StandardTextualConventionsMIB", "RowStatus", "Integer32", "Gauge32", "DisplayString", "Counter32", "InterfaceIndex", "Unsigned32", "StorageType")
PassportCounter64, AsciiStringIndex, FixedPoint1, AsciiString, NonReplicated = mibBuilder.importSymbols("Nortel-MsCarrier-MscPassport-TextualConventionsMIB", "PassportCounter64", "AsciiStringIndex", "FixedPoint1", "AsciiString", "NonReplicated")
mscComponents, mscPassportMIBs = mibBuilder.importSymbols("Nortel-MsCarrier-MscPassport-UsefulDefinitionsMIB", "mscComponents", "mscPassportMIBs")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
Counter64, NotificationType, Integer32, Unsigned32, Gauge32, MibScalar, MibTable, MibTableRow, MibTableColumn, iso, MibIdentifier, ObjectIdentity, TimeTicks, Counter32, Bits, ModuleIdentity, IpAddress = mibBuilder.importSymbols("SNMPv2-SMI", "Counter64", "NotificationType", "Integer32", "Unsigned32", "Gauge32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "iso", "MibIdentifier", "ObjectIdentity", "TimeTicks", "Counter32", "Bits", "ModuleIdentity", "IpAddress")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
trunksMIB = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 43))
mscTrk = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60))
mscTrkRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 1), )
if mibBuilder.loadTexts: mscTrkRowStatusTable.setStatus('mandatory')
mscTrkRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"))
if mibBuilder.loadTexts: mscTrkRowStatusEntry.setStatus('mandatory')
mscTrkRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscTrkRowStatus.setStatus('mandatory')
mscTrkComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkComponentName.setStatus('mandatory')
mscTrkStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkStorageType.setStatus('mandatory')
mscTrkIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)))
if mibBuilder.loadTexts: mscTrkIndex.setStatus('mandatory')
mscTrkIfEntryTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 100), )
if mibBuilder.loadTexts: mscTrkIfEntryTable.setStatus('mandatory')
mscTrkIfEntryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 100, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"))
if mibBuilder.loadTexts: mscTrkIfEntryEntry.setStatus('mandatory')
mscTrkIfAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 100, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("testing", 3))).clone('up')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscTrkIfAdminStatus.setStatus('mandatory')
mscTrkIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 100, 1, 2), InterfaceIndex().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkIfIndex.setStatus('mandatory')
mscTrkProvTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 101), )
if mibBuilder.loadTexts: mscTrkProvTable.setStatus('mandatory')
mscTrkProvEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 101, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"))
if mibBuilder.loadTexts: mscTrkProvEntry.setStatus('mandatory')
mscTrkExpectedRemoteNodeName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 101, 1, 1), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 12))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscTrkExpectedRemoteNodeName.setStatus('mandatory')
mscTrkRemoteValidationAction = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 101, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("continue", 0), ("disable", 1))).clone('continue')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscTrkRemoteValidationAction.setStatus('mandatory')
mscTrkMaximumExpectedRoundTripDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 101, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 1500)).clone(1500)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscTrkMaximumExpectedRoundTripDelay.setStatus('mandatory')
mscTrkIdleTimeOut = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 101, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(2, 30)).clone(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscTrkIdleTimeOut.setStatus('mandatory')
mscTrkOverridesTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 102), )
if mibBuilder.loadTexts: mscTrkOverridesTable.setStatus('mandatory')
mscTrkOverridesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 102, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"))
if mibBuilder.loadTexts: mscTrkOverridesEntry.setStatus('mandatory')
mscTrkOverrideTransmitSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 102, 1, 1), Gauge32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 0), ValueRangeConstraint(1000, 4294967295), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscTrkOverrideTransmitSpeed.setStatus('mandatory')
mscTrkOldOverrideRoundTripDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 102, 1, 2), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 1500))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscTrkOldOverrideRoundTripDelay.setStatus('obsolete')
mscTrkOverrideRoundTripUsec = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 102, 1, 3), FixedPoint1().subtype(subtypeSpec=ValueRangeConstraint(0, 15000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscTrkOverrideRoundTripUsec.setStatus('mandatory')
mscTrkStateTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103), )
if mibBuilder.loadTexts: mscTrkStateTable.setStatus('mandatory')
mscTrkStateEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"))
if mibBuilder.loadTexts: mscTrkStateEntry.setStatus('mandatory')
mscTrkAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 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: mscTrkAdminState.setStatus('mandatory')
mscTrkOperationalState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkOperationalState.setStatus('mandatory')
mscTrkUsageState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 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: mscTrkUsageState.setStatus('mandatory')
mscTrkAvailabilityStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkAvailabilityStatus.setStatus('mandatory')
mscTrkProceduralStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkProceduralStatus.setStatus('mandatory')
mscTrkControlStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkControlStatus.setStatus('mandatory')
mscTrkAlarmStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkAlarmStatus.setStatus('mandatory')
mscTrkStandbyStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 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: mscTrkStandbyStatus.setStatus('mandatory')
mscTrkUnknownStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("false", 0), ("true", 1))).clone('false')).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkUnknownStatus.setStatus('mandatory')
mscTrkOperStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 104), )
if mibBuilder.loadTexts: mscTrkOperStatusTable.setStatus('mandatory')
mscTrkOperStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 104, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"))
if mibBuilder.loadTexts: mscTrkOperStatusEntry.setStatus('mandatory')
mscTrkSnmpOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 104, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("testing", 3))).clone('up')).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkSnmpOperStatus.setStatus('mandatory')
mscTrkOperTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 105), )
if mibBuilder.loadTexts: mscTrkOperTable.setStatus('mandatory')
mscTrkOperEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 105, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"))
if mibBuilder.loadTexts: mscTrkOperEntry.setStatus('mandatory')
mscTrkRemoteComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 105, 1, 1), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(1, 27))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkRemoteComponentName.setStatus('mandatory')
mscTrkTransportTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 106), )
if mibBuilder.loadTexts: mscTrkTransportTable.setStatus('mandatory')
mscTrkTransportEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 106, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"))
if mibBuilder.loadTexts: mscTrkTransportEntry.setStatus('mandatory')
mscTrkMeasuredSpeedToIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 106, 1, 1), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkMeasuredSpeedToIf.setStatus('mandatory')
mscTrkMeasuredRoundTripDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 106, 1, 2), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 1500))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkMeasuredRoundTripDelay.setStatus('obsolete')
mscTrkMaxTxUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 106, 1, 3), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkMaxTxUnit.setStatus('mandatory')
mscTrkMeasuredRoundTripDelayUsec = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 106, 1, 4), FixedPoint1().subtype(subtypeSpec=ValueRangeConstraint(0, 15000))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkMeasuredRoundTripDelayUsec.setStatus('mandatory')
mscTrkStatsTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107), )
if mibBuilder.loadTexts: mscTrkStatsTable.setStatus('mandatory')
mscTrkStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"))
if mibBuilder.loadTexts: mscTrkStatsEntry.setStatus('mandatory')
mscTrkAreYouThereModeEntries = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkAreYouThereModeEntries.setStatus('mandatory')
mscTrkPktFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 2), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkPktFromIf.setStatus('mandatory')
mscTrkTrunkPktFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkTrunkPktFromIf.setStatus('mandatory')
mscTrkTrunkPktToIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkTrunkPktToIf.setStatus('mandatory')
mscTrkDiscardUnforward = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 5), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkDiscardUnforward.setStatus('mandatory')
mscTrkDiscardTrunkPktFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkDiscardTrunkPktFromIf.setStatus('mandatory')
mscTrkIntPktFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 7), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkIntPktFromIf.setStatus('mandatory')
mscTrkDiscardIntUnforward = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 8), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkDiscardIntUnforward.setStatus('mandatory')
mscTrkStagingAttempts = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkStagingAttempts.setStatus('mandatory')
mscTrkDiscardTrunkPktToIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkDiscardTrunkPktToIf.setStatus('mandatory')
mscTrkSpeedReportingTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 109), )
if mibBuilder.loadTexts: mscTrkSpeedReportingTable.setStatus('mandatory')
mscTrkSpeedReportingEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 109, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"))
if mibBuilder.loadTexts: mscTrkSpeedReportingEntry.setStatus('mandatory')
mscTrkSpeedReportingHoldOff = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 109, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 1200)).clone(30)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscTrkSpeedReportingHoldOff.setStatus('mandatory')
mscTrkLowSpeedAlarmThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 109, 1, 3), Unsigned32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 0), ValueRangeConstraint(1, 4294967295), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscTrkLowSpeedAlarmThreshold.setStatus('mandatory')
mscTrkHighSpeedAlarmThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 109, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295)).clone(4294967295)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscTrkHighSpeedAlarmThreshold.setStatus('mandatory')
mscTrkSpdThTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 318), )
if mibBuilder.loadTexts: mscTrkSpdThTable.setStatus('mandatory')
mscTrkSpdThEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 318, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkSpdThValue"))
if mibBuilder.loadTexts: mscTrkSpdThEntry.setStatus('mandatory')
mscTrkSpdThValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 318, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 268435455))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscTrkSpdThValue.setStatus('mandatory')
mscTrkSpdThRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 318, 1, 2), RowStatus()).setMaxAccess("writeonly")
if mibBuilder.loadTexts: mscTrkSpdThRowStatus.setStatus('mandatory')
mscTrkPktBpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 368), )
if mibBuilder.loadTexts: mscTrkPktBpTable.setStatus('mandatory')
mscTrkPktBpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 368, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkPktBpIndex"))
if mibBuilder.loadTexts: mscTrkPktBpEntry.setStatus('mandatory')
mscTrkPktBpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 368, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("ep0", 0), ("ep1", 1), ("ep2", 2))))
if mibBuilder.loadTexts: mscTrkPktBpIndex.setStatus('mandatory')
mscTrkPktBpValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 368, 1, 2), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkPktBpValue.setStatus('mandatory')
mscTrkDiscBpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 369), )
if mibBuilder.loadTexts: mscTrkDiscBpTable.setStatus('mandatory')
mscTrkDiscBpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 369, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkDiscBpIndex"))
if mibBuilder.loadTexts: mscTrkDiscBpEntry.setStatus('mandatory')
mscTrkDiscBpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 369, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("ep0", 0), ("ep1", 1), ("ep2", 2))))
if mibBuilder.loadTexts: mscTrkDiscBpIndex.setStatus('mandatory')
mscTrkDiscBpValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 369, 1, 2), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkDiscBpValue.setStatus('mandatory')
mscTrkOctBpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 370), )
if mibBuilder.loadTexts: mscTrkOctBpTable.setStatus('mandatory')
mscTrkOctBpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 370, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkOctBpIndex"))
if mibBuilder.loadTexts: mscTrkOctBpEntry.setStatus('mandatory')
mscTrkOctBpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 370, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("ep0", 0), ("ep1", 1), ("ep2", 2))))
if mibBuilder.loadTexts: mscTrkOctBpIndex.setStatus('mandatory')
mscTrkOctBpValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 370, 1, 2), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkOctBpValue.setStatus('mandatory')
mscTrkPorsStats = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6))
mscTrkPorsStatsRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 1), )
if mibBuilder.loadTexts: mscTrkPorsStatsRowStatusTable.setStatus('mandatory')
mscTrkPorsStatsRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkPorsStatsIndex"))
if mibBuilder.loadTexts: mscTrkPorsStatsRowStatusEntry.setStatus('mandatory')
mscTrkPorsStatsRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 1, 1, 1), RowStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkPorsStatsRowStatus.setStatus('mandatory')
mscTrkPorsStatsComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkPorsStatsComponentName.setStatus('mandatory')
mscTrkPorsStatsStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkPorsStatsStorageType.setStatus('mandatory')
mscTrkPorsStatsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 1, 1, 10), NonReplicated())
if mibBuilder.loadTexts: mscTrkPorsStatsIndex.setStatus('mandatory')
mscTrkPorsStatsOperTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 10), )
if mibBuilder.loadTexts: mscTrkPorsStatsOperTable.setStatus('mandatory')
mscTrkPorsStatsOperEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkPorsStatsIndex"))
if mibBuilder.loadTexts: mscTrkPorsStatsOperEntry.setStatus('mandatory')
mscTrkPorsStatsPorsNormPktFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 10, 1, 1), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkPorsStatsPorsNormPktFromIf.setStatus('mandatory')
mscTrkPorsStatsPorsNormDiscUnforwardFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 10, 1, 2), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkPorsStatsPorsNormDiscUnforwardFromIf.setStatus('mandatory')
mscTrkPorsStatsPorsNormOctetFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 10, 1, 3), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkPorsStatsPorsNormOctetFromIf.setStatus('mandatory')
mscTrkPorsStatsPorsIntPktFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 10, 1, 4), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkPorsStatsPorsIntPktFromIf.setStatus('mandatory')
mscTrkPorsStatsPorsIntDiscUnforwardFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 10, 1, 5), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkPorsStatsPorsIntDiscUnforwardFromIf.setStatus('mandatory')
mscTrkPorsStatsPorsIntOctetFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 10, 1, 6), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkPorsStatsPorsIntOctetFromIf.setStatus('mandatory')
mscTrkPorsStatsPktBpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 371), )
if mibBuilder.loadTexts: mscTrkPorsStatsPktBpTable.setStatus('mandatory')
mscTrkPorsStatsPktBpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 371, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkPorsStatsIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkPorsStatsPktBpEpIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkPorsStatsPktBpDpIndex"))
if mibBuilder.loadTexts: mscTrkPorsStatsPktBpEntry.setStatus('mandatory')
mscTrkPorsStatsPktBpEpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 371, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("ep0", 0), ("ep1", 1), ("ep2", 2))))
if mibBuilder.loadTexts: mscTrkPorsStatsPktBpEpIndex.setStatus('mandatory')
mscTrkPorsStatsPktBpDpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 371, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("dp0", 0), ("dp1", 1), ("dp2", 2), ("dp3", 3))))
if mibBuilder.loadTexts: mscTrkPorsStatsPktBpDpIndex.setStatus('mandatory')
mscTrkPorsStatsPktBpValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 371, 1, 3), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkPorsStatsPktBpValue.setStatus('mandatory')
mscTrkPorsStatsDiscBpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 372), )
if mibBuilder.loadTexts: mscTrkPorsStatsDiscBpTable.setStatus('mandatory')
mscTrkPorsStatsDiscBpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 372, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkPorsStatsIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkPorsStatsDiscBpEpIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkPorsStatsDiscBpDpIndex"))
if mibBuilder.loadTexts: mscTrkPorsStatsDiscBpEntry.setStatus('mandatory')
mscTrkPorsStatsDiscBpEpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 372, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("ep0", 0), ("ep1", 1), ("ep2", 2))))
if mibBuilder.loadTexts: mscTrkPorsStatsDiscBpEpIndex.setStatus('mandatory')
mscTrkPorsStatsDiscBpDpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 372, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("dp0", 0), ("dp1", 1), ("dp2", 2), ("dp3", 3))))
if mibBuilder.loadTexts: mscTrkPorsStatsDiscBpDpIndex.setStatus('mandatory')
mscTrkPorsStatsDiscBpValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 372, 1, 3), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkPorsStatsDiscBpValue.setStatus('mandatory')
mscTrkPorsStatsOctBpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 373), )
if mibBuilder.loadTexts: mscTrkPorsStatsOctBpTable.setStatus('mandatory')
mscTrkPorsStatsOctBpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 373, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkPorsStatsIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkPorsStatsOctBpEpIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkPorsStatsOctBpDpIndex"))
if mibBuilder.loadTexts: mscTrkPorsStatsOctBpEntry.setStatus('mandatory')
mscTrkPorsStatsOctBpEpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 373, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("ep0", 0), ("ep1", 1), ("ep2", 2))))
if mibBuilder.loadTexts: mscTrkPorsStatsOctBpEpIndex.setStatus('mandatory')
mscTrkPorsStatsOctBpDpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 373, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("dp0", 0), ("dp1", 1), ("dp2", 2), ("dp3", 3))))
if mibBuilder.loadTexts: mscTrkPorsStatsOctBpDpIndex.setStatus('mandatory')
mscTrkPorsStatsOctBpValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 373, 1, 3), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkPorsStatsOctBpValue.setStatus('mandatory')
mscTrkFwdStats = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7))
mscTrkFwdStatsRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 1), )
if mibBuilder.loadTexts: mscTrkFwdStatsRowStatusTable.setStatus('mandatory')
mscTrkFwdStatsRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkFwdStatsIndex"))
if mibBuilder.loadTexts: mscTrkFwdStatsRowStatusEntry.setStatus('mandatory')
mscTrkFwdStatsRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 1, 1, 1), RowStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkFwdStatsRowStatus.setStatus('mandatory')
mscTrkFwdStatsComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkFwdStatsComponentName.setStatus('mandatory')
mscTrkFwdStatsStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkFwdStatsStorageType.setStatus('mandatory')
mscTrkFwdStatsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 1, 1, 10), NonReplicated())
if mibBuilder.loadTexts: mscTrkFwdStatsIndex.setStatus('mandatory')
mscTrkFwdStatsOperTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 10), )
if mibBuilder.loadTexts: mscTrkFwdStatsOperTable.setStatus('mandatory')
mscTrkFwdStatsOperEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkFwdStatsIndex"))
if mibBuilder.loadTexts: mscTrkFwdStatsOperEntry.setStatus('mandatory')
mscTrkFwdStatsFwdPktFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 10, 1, 1), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkFwdStatsFwdPktFromIf.setStatus('mandatory')
mscTrkFwdStatsFwdDiscUnforwardFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 10, 1, 2), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkFwdStatsFwdDiscUnforwardFromIf.setStatus('mandatory')
mscTrkFwdStatsFwdOctetFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 10, 1, 3), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkFwdStatsFwdOctetFromIf.setStatus('mandatory')
mscTrkVnsStats = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8))
mscTrkVnsStatsRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 1), )
if mibBuilder.loadTexts: mscTrkVnsStatsRowStatusTable.setStatus('mandatory')
mscTrkVnsStatsRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkVnsStatsIndex"))
if mibBuilder.loadTexts: mscTrkVnsStatsRowStatusEntry.setStatus('mandatory')
mscTrkVnsStatsRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 1, 1, 1), RowStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkVnsStatsRowStatus.setStatus('mandatory')
mscTrkVnsStatsComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkVnsStatsComponentName.setStatus('mandatory')
mscTrkVnsStatsStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkVnsStatsStorageType.setStatus('mandatory')
mscTrkVnsStatsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 1, 1, 10), NonReplicated())
if mibBuilder.loadTexts: mscTrkVnsStatsIndex.setStatus('mandatory')
mscTrkVnsStatsOperTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 10), )
if mibBuilder.loadTexts: mscTrkVnsStatsOperTable.setStatus('mandatory')
mscTrkVnsStatsOperEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkVnsStatsIndex"))
if mibBuilder.loadTexts: mscTrkVnsStatsOperEntry.setStatus('mandatory')
mscTrkVnsStatsVnsPktFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 10, 1, 1), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkVnsStatsVnsPktFromIf.setStatus('mandatory')
mscTrkVnsStatsVnsDiscUnforwardFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 10, 1, 2), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkVnsStatsVnsDiscUnforwardFromIf.setStatus('mandatory')
mscTrkVnsStatsVnsOctetFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 10, 1, 3), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkVnsStatsVnsOctetFromIf.setStatus('mandatory')
mscTrkVnsStatsPktBpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 377), )
if mibBuilder.loadTexts: mscTrkVnsStatsPktBpTable.setStatus('mandatory')
mscTrkVnsStatsPktBpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 377, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkVnsStatsIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkVnsStatsPktBpEpIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkVnsStatsPktBpDpIndex"))
if mibBuilder.loadTexts: mscTrkVnsStatsPktBpEntry.setStatus('mandatory')
mscTrkVnsStatsPktBpEpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 377, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("ep0", 0), ("ep1", 1), ("ep2", 2))))
if mibBuilder.loadTexts: mscTrkVnsStatsPktBpEpIndex.setStatus('mandatory')
mscTrkVnsStatsPktBpDpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 377, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("dp0", 0), ("dp1", 1), ("dp2", 2), ("dp3", 3))))
if mibBuilder.loadTexts: mscTrkVnsStatsPktBpDpIndex.setStatus('mandatory')
mscTrkVnsStatsPktBpValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 377, 1, 3), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkVnsStatsPktBpValue.setStatus('mandatory')
mscTrkVnsStatsDiscBpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 378), )
if mibBuilder.loadTexts: mscTrkVnsStatsDiscBpTable.setStatus('mandatory')
mscTrkVnsStatsDiscBpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 378, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkVnsStatsIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkVnsStatsDiscBpEpIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkVnsStatsDiscBpDpIndex"))
if mibBuilder.loadTexts: mscTrkVnsStatsDiscBpEntry.setStatus('mandatory')
mscTrkVnsStatsDiscBpEpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 378, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("ep0", 0), ("ep1", 1), ("ep2", 2))))
if mibBuilder.loadTexts: mscTrkVnsStatsDiscBpEpIndex.setStatus('mandatory')
mscTrkVnsStatsDiscBpDpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 378, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("dp0", 0), ("dp1", 1), ("dp2", 2), ("dp3", 3))))
if mibBuilder.loadTexts: mscTrkVnsStatsDiscBpDpIndex.setStatus('mandatory')
mscTrkVnsStatsDiscBpValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 378, 1, 3), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkVnsStatsDiscBpValue.setStatus('mandatory')
mscTrkVnsStatsOctBpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 379), )
if mibBuilder.loadTexts: mscTrkVnsStatsOctBpTable.setStatus('mandatory')
mscTrkVnsStatsOctBpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 379, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkVnsStatsIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkVnsStatsOctBpEpIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkVnsStatsOctBpDpIndex"))
if mibBuilder.loadTexts: mscTrkVnsStatsOctBpEntry.setStatus('mandatory')
mscTrkVnsStatsOctBpEpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 379, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("ep0", 0), ("ep1", 1), ("ep2", 2))))
if mibBuilder.loadTexts: mscTrkVnsStatsOctBpEpIndex.setStatus('mandatory')
mscTrkVnsStatsOctBpDpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 379, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("dp0", 0), ("dp1", 1), ("dp2", 2), ("dp3", 3))))
if mibBuilder.loadTexts: mscTrkVnsStatsOctBpDpIndex.setStatus('mandatory')
mscTrkVnsStatsOctBpValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 379, 1, 3), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkVnsStatsOctBpValue.setStatus('mandatory')
mscTrkDprsStats = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10))
mscTrkDprsStatsRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 1), )
if mibBuilder.loadTexts: mscTrkDprsStatsRowStatusTable.setStatus('mandatory')
mscTrkDprsStatsRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkDprsStatsIndex"))
if mibBuilder.loadTexts: mscTrkDprsStatsRowStatusEntry.setStatus('mandatory')
mscTrkDprsStatsRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 1, 1, 1), RowStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkDprsStatsRowStatus.setStatus('mandatory')
mscTrkDprsStatsComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkDprsStatsComponentName.setStatus('mandatory')
mscTrkDprsStatsStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkDprsStatsStorageType.setStatus('mandatory')
mscTrkDprsStatsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 1, 1, 10), NonReplicated())
if mibBuilder.loadTexts: mscTrkDprsStatsIndex.setStatus('mandatory')
mscTrkDprsStatsPktBpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 374), )
if mibBuilder.loadTexts: mscTrkDprsStatsPktBpTable.setStatus('mandatory')
mscTrkDprsStatsPktBpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 374, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkDprsStatsIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkDprsStatsPktBpEpIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkDprsStatsPktBpDpIndex"))
if mibBuilder.loadTexts: mscTrkDprsStatsPktBpEntry.setStatus('mandatory')
mscTrkDprsStatsPktBpEpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 374, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("ep0", 0), ("ep1", 1), ("ep2", 2))))
if mibBuilder.loadTexts: mscTrkDprsStatsPktBpEpIndex.setStatus('mandatory')
mscTrkDprsStatsPktBpDpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 374, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("dp0", 0), ("dp1", 1), ("dp2", 2), ("dp3", 3))))
if mibBuilder.loadTexts: mscTrkDprsStatsPktBpDpIndex.setStatus('mandatory')
mscTrkDprsStatsPktBpValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 374, 1, 3), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkDprsStatsPktBpValue.setStatus('mandatory')
mscTrkDprsStatsDiscBpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 375), )
if mibBuilder.loadTexts: mscTrkDprsStatsDiscBpTable.setStatus('mandatory')
mscTrkDprsStatsDiscBpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 375, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkDprsStatsIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkDprsStatsDiscBpEpIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkDprsStatsDiscBpDpIndex"))
if mibBuilder.loadTexts: mscTrkDprsStatsDiscBpEntry.setStatus('mandatory')
mscTrkDprsStatsDiscBpEpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 375, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("ep0", 0), ("ep1", 1), ("ep2", 2))))
if mibBuilder.loadTexts: mscTrkDprsStatsDiscBpEpIndex.setStatus('mandatory')
mscTrkDprsStatsDiscBpDpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 375, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("dp0", 0), ("dp1", 1), ("dp2", 2), ("dp3", 3))))
if mibBuilder.loadTexts: mscTrkDprsStatsDiscBpDpIndex.setStatus('mandatory')
mscTrkDprsStatsDiscBpValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 375, 1, 3), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkDprsStatsDiscBpValue.setStatus('mandatory')
mscTrkDprsStatsOctBpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 376), )
if mibBuilder.loadTexts: mscTrkDprsStatsOctBpTable.setStatus('mandatory')
mscTrkDprsStatsOctBpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 376, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkDprsStatsIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkDprsStatsOctBpEpIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkDprsStatsOctBpDpIndex"))
if mibBuilder.loadTexts: mscTrkDprsStatsOctBpEntry.setStatus('mandatory')
mscTrkDprsStatsOctBpEpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 376, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("ep0", 0), ("ep1", 1), ("ep2", 2))))
if mibBuilder.loadTexts: mscTrkDprsStatsOctBpEpIndex.setStatus('mandatory')
mscTrkDprsStatsOctBpDpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 376, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("dp0", 0), ("dp1", 1), ("dp2", 2), ("dp3", 3))))
if mibBuilder.loadTexts: mscTrkDprsStatsOctBpDpIndex.setStatus('mandatory')
mscTrkDprsStatsOctBpValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 376, 1, 3), PassportCounter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkDprsStatsOctBpValue.setStatus('mandatory')
mscTrkAddr = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11))
mscTrkAddrRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11, 1), )
if mibBuilder.loadTexts: mscTrkAddrRowStatusTable.setStatus('mandatory')
mscTrkAddrRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11, 1, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkAddrAddressIndex"))
if mibBuilder.loadTexts: mscTrkAddrRowStatusEntry.setStatus('mandatory')
mscTrkAddrRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscTrkAddrRowStatus.setStatus('mandatory')
mscTrkAddrComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkAddrComponentName.setStatus('mandatory')
mscTrkAddrStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mscTrkAddrStorageType.setStatus('mandatory')
mscTrkAddrAddressIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11, 1, 1, 10), AsciiStringIndex().subtype(subtypeSpec=ValueSizeConstraint(1, 40)))
if mibBuilder.loadTexts: mscTrkAddrAddressIndex.setStatus('mandatory')
mscTrkAddrProvTable = MibTable((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11, 10), )
if mibBuilder.loadTexts: mscTrkAddrProvTable.setStatus('mandatory')
mscTrkAddrProvEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11, 10, 1), ).setIndexNames((0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkIndex"), (0, "Nortel-MsCarrier-MscPassport-TrunksMIB", "mscTrkAddrAddressIndex"))
if mibBuilder.loadTexts: mscTrkAddrProvEntry.setStatus('mandatory')
mscTrkAddrCost = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11, 10, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65435)).clone(200)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mscTrkAddrCost.setStatus('mandatory')
trunksGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 43, 1))
trunksGroupCA = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 43, 1, 1))
trunksGroupCA02 = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 43, 1, 1, 3))
trunksGroupCA02A = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 43, 1, 1, 3, 2))
trunksCapabilities = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 43, 3))
trunksCapabilitiesCA = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 43, 3, 1))
trunksCapabilitiesCA02 = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 43, 3, 1, 3))
trunksCapabilitiesCA02A = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 43, 3, 1, 3, 2))
mibBuilder.exportSymbols("Nortel-MsCarrier-MscPassport-TrunksMIB", mscTrkDprsStatsOctBpTable=mscTrkDprsStatsOctBpTable, trunksCapabilitiesCA02=trunksCapabilitiesCA02, mscTrkUsageState=mscTrkUsageState, mscTrkVnsStatsVnsPktFromIf=mscTrkVnsStatsVnsPktFromIf, mscTrkPktBpTable=mscTrkPktBpTable, mscTrkOverrideTransmitSpeed=mscTrkOverrideTransmitSpeed, mscTrkPorsStatsPorsNormPktFromIf=mscTrkPorsStatsPorsNormPktFromIf, mscTrkDprsStatsOctBpDpIndex=mscTrkDprsStatsOctBpDpIndex, trunksCapabilitiesCA02A=trunksCapabilitiesCA02A, mscTrkPorsStatsPorsNormDiscUnforwardFromIf=mscTrkPorsStatsPorsNormDiscUnforwardFromIf, mscTrkPorsStatsOperTable=mscTrkPorsStatsOperTable, mscTrkFwdStatsFwdOctetFromIf=mscTrkFwdStatsFwdOctetFromIf, mscTrkStorageType=mscTrkStorageType, mscTrkPorsStatsOctBpDpIndex=mscTrkPorsStatsOctBpDpIndex, mscTrkAddrRowStatus=mscTrkAddrRowStatus, mscTrkStateTable=mscTrkStateTable, mscTrkDiscBpIndex=mscTrkDiscBpIndex, mscTrkVnsStatsPktBpTable=mscTrkVnsStatsPktBpTable, mscTrkSpeedReportingHoldOff=mscTrkSpeedReportingHoldOff, mscTrkPorsStatsOctBpTable=mscTrkPorsStatsOctBpTable, mscTrkVnsStatsPktBpDpIndex=mscTrkVnsStatsPktBpDpIndex, mscTrkMeasuredSpeedToIf=mscTrkMeasuredSpeedToIf, mscTrkAddrRowStatusEntry=mscTrkAddrRowStatusEntry, mscTrkAlarmStatus=mscTrkAlarmStatus, mscTrkSpeedReportingEntry=mscTrkSpeedReportingEntry, mscTrkOctBpValue=mscTrkOctBpValue, mscTrkOperTable=mscTrkOperTable, mscTrkStandbyStatus=mscTrkStandbyStatus, mscTrkVnsStatsDiscBpDpIndex=mscTrkVnsStatsDiscBpDpIndex, mscTrkDprsStatsDiscBpTable=mscTrkDprsStatsDiscBpTable, mscTrkDiscardTrunkPktToIf=mscTrkDiscardTrunkPktToIf, mscTrkVnsStatsOperEntry=mscTrkVnsStatsOperEntry, mscTrkExpectedRemoteNodeName=mscTrkExpectedRemoteNodeName, mscTrkPorsStatsPktBpTable=mscTrkPorsStatsPktBpTable, mscTrkDprsStatsComponentName=mscTrkDprsStatsComponentName, trunksGroupCA02=trunksGroupCA02, mscTrkIfAdminStatus=mscTrkIfAdminStatus, mscTrkVnsStatsDiscBpEntry=mscTrkVnsStatsDiscBpEntry, mscTrkSpdThTable=mscTrkSpdThTable, mscTrkAvailabilityStatus=mscTrkAvailabilityStatus, mscTrkSpeedReportingTable=mscTrkSpeedReportingTable, mscTrkPorsStats=mscTrkPorsStats, mscTrkPorsStatsPorsIntDiscUnforwardFromIf=mscTrkPorsStatsPorsIntDiscUnforwardFromIf, mscTrkDprsStatsDiscBpDpIndex=mscTrkDprsStatsDiscBpDpIndex, mscTrkSnmpOperStatus=mscTrkSnmpOperStatus, mscTrkAddrRowStatusTable=mscTrkAddrRowStatusTable, mscTrkDprsStatsDiscBpEpIndex=mscTrkDprsStatsDiscBpEpIndex, trunksCapabilitiesCA=trunksCapabilitiesCA, mscTrkPorsStatsDiscBpDpIndex=mscTrkPorsStatsDiscBpDpIndex, mscTrkPorsStatsDiscBpValue=mscTrkPorsStatsDiscBpValue, mscTrkAreYouThereModeEntries=mscTrkAreYouThereModeEntries, mscTrkPorsStatsPorsNormOctetFromIf=mscTrkPorsStatsPorsNormOctetFromIf, mscTrkFwdStatsIndex=mscTrkFwdStatsIndex, mscTrkVnsStatsDiscBpEpIndex=mscTrkVnsStatsDiscBpEpIndex, mscTrkOctBpIndex=mscTrkOctBpIndex, mscTrkProvEntry=mscTrkProvEntry, mscTrkMeasuredRoundTripDelay=mscTrkMeasuredRoundTripDelay, trunksMIB=trunksMIB, mscTrkPorsStatsPktBpEntry=mscTrkPorsStatsPktBpEntry, mscTrkUnknownStatus=mscTrkUnknownStatus, mscTrkDprsStatsOctBpEpIndex=mscTrkDprsStatsOctBpEpIndex, mscTrkVnsStatsDiscBpTable=mscTrkVnsStatsDiscBpTable, mscTrkProceduralStatus=mscTrkProceduralStatus, mscTrkFwdStatsRowStatusEntry=mscTrkFwdStatsRowStatusEntry, mscTrkVnsStatsComponentName=mscTrkVnsStatsComponentName, mscTrkVnsStatsRowStatusEntry=mscTrkVnsStatsRowStatusEntry, mscTrkDprsStatsPktBpValue=mscTrkDprsStatsPktBpValue, mscTrkDprsStatsPktBpDpIndex=mscTrkDprsStatsPktBpDpIndex, mscTrkDiscardTrunkPktFromIf=mscTrkDiscardTrunkPktFromIf, mscTrkPorsStatsDiscBpEpIndex=mscTrkPorsStatsDiscBpEpIndex, mscTrkAddrAddressIndex=mscTrkAddrAddressIndex, mscTrkDprsStatsRowStatusTable=mscTrkDprsStatsRowStatusTable, mscTrkVnsStatsOctBpDpIndex=mscTrkVnsStatsOctBpDpIndex, mscTrkPorsStatsOctBpValue=mscTrkPorsStatsOctBpValue, mscTrkDprsStatsDiscBpValue=mscTrkDprsStatsDiscBpValue, mscTrkFwdStatsOperTable=mscTrkFwdStatsOperTable, mscTrkVnsStatsVnsDiscUnforwardFromIf=mscTrkVnsStatsVnsDiscUnforwardFromIf, mscTrkPorsStatsDiscBpEntry=mscTrkPorsStatsDiscBpEntry, mscTrkIndex=mscTrkIndex, mscTrkAddrProvTable=mscTrkAddrProvTable, mscTrkIfEntryTable=mscTrkIfEntryTable, mscTrkAddrProvEntry=mscTrkAddrProvEntry, mscTrkDprsStatsOctBpValue=mscTrkDprsStatsOctBpValue, trunksGroup=trunksGroup, mscTrkDprsStatsPktBpTable=mscTrkDprsStatsPktBpTable, mscTrkDprsStatsRowStatus=mscTrkDprsStatsRowStatus, mscTrkOldOverrideRoundTripDelay=mscTrkOldOverrideRoundTripDelay, trunksGroupCA02A=trunksGroupCA02A, mscTrkPorsStatsPorsIntOctetFromIf=mscTrkPorsStatsPorsIntOctetFromIf, mscTrkPorsStatsComponentName=mscTrkPorsStatsComponentName, mscTrkSpdThValue=mscTrkSpdThValue, mscTrkRemoteValidationAction=mscTrkRemoteValidationAction, mscTrkComponentName=mscTrkComponentName, mscTrkOperStatusEntry=mscTrkOperStatusEntry, mscTrkVnsStatsOctBpTable=mscTrkVnsStatsOctBpTable, mscTrkLowSpeedAlarmThreshold=mscTrkLowSpeedAlarmThreshold, mscTrkAddrStorageType=mscTrkAddrStorageType, mscTrkPorsStatsOperEntry=mscTrkPorsStatsOperEntry, mscTrkDiscBpTable=mscTrkDiscBpTable, mscTrkVnsStatsRowStatusTable=mscTrkVnsStatsRowStatusTable, mscTrkPktBpIndex=mscTrkPktBpIndex, mscTrkOverridesEntry=mscTrkOverridesEntry, mscTrkVnsStatsVnsOctetFromIf=mscTrkVnsStatsVnsOctetFromIf, mscTrkVnsStatsStorageType=mscTrkVnsStatsStorageType, mscTrkIfIndex=mscTrkIfIndex, mscTrkVnsStatsOctBpValue=mscTrkVnsStatsOctBpValue, mscTrkVnsStatsRowStatus=mscTrkVnsStatsRowStatus, mscTrkPktBpValue=mscTrkPktBpValue, mscTrkOverrideRoundTripUsec=mscTrkOverrideRoundTripUsec, mscTrkPorsStatsPktBpValue=mscTrkPorsStatsPktBpValue, mscTrkVnsStatsOctBpEpIndex=mscTrkVnsStatsOctBpEpIndex, mscTrkPorsStatsRowStatusTable=mscTrkPorsStatsRowStatusTable, mscTrkDprsStats=mscTrkDprsStats, mscTrkFwdStats=mscTrkFwdStats, mscTrkVnsStatsPktBpEntry=mscTrkVnsStatsPktBpEntry, mscTrkFwdStatsComponentName=mscTrkFwdStatsComponentName, mscTrkDprsStatsDiscBpEntry=mscTrkDprsStatsDiscBpEntry, mscTrkStateEntry=mscTrkStateEntry, mscTrkOctBpEntry=mscTrkOctBpEntry, mscTrk=mscTrk, mscTrkAdminState=mscTrkAdminState, mscTrkHighSpeedAlarmThreshold=mscTrkHighSpeedAlarmThreshold, mscTrkOperationalState=mscTrkOperationalState, mscTrkPktBpEntry=mscTrkPktBpEntry, mscTrkPorsStatsRowStatusEntry=mscTrkPorsStatsRowStatusEntry, mscTrkTrunkPktToIf=mscTrkTrunkPktToIf, mscTrkTransportTable=mscTrkTransportTable, mscTrkControlStatus=mscTrkControlStatus, mscTrkSpdThRowStatus=mscTrkSpdThRowStatus, mscTrkIfEntryEntry=mscTrkIfEntryEntry, mscTrkDiscBpEntry=mscTrkDiscBpEntry, mscTrkStagingAttempts=mscTrkStagingAttempts, mscTrkDiscBpValue=mscTrkDiscBpValue, mscTrkPorsStatsPktBpDpIndex=mscTrkPorsStatsPktBpDpIndex, mscTrkTransportEntry=mscTrkTransportEntry, mscTrkPorsStatsIndex=mscTrkPorsStatsIndex, mscTrkVnsStatsPktBpEpIndex=mscTrkVnsStatsPktBpEpIndex, mscTrkVnsStatsOctBpEntry=mscTrkVnsStatsOctBpEntry, mscTrkDprsStatsRowStatusEntry=mscTrkDprsStatsRowStatusEntry, mscTrkFwdStatsRowStatus=mscTrkFwdStatsRowStatus, mscTrkAddrCost=mscTrkAddrCost, mscTrkOctBpTable=mscTrkOctBpTable, mscTrkDprsStatsOctBpEntry=mscTrkDprsStatsOctBpEntry, mscTrkFwdStatsRowStatusTable=mscTrkFwdStatsRowStatusTable, mscTrkVnsStats=mscTrkVnsStats, mscTrkMeasuredRoundTripDelayUsec=mscTrkMeasuredRoundTripDelayUsec, mscTrkFwdStatsStorageType=mscTrkFwdStatsStorageType, mscTrkMaximumExpectedRoundTripDelay=mscTrkMaximumExpectedRoundTripDelay, mscTrkPorsStatsOctBpEpIndex=mscTrkPorsStatsOctBpEpIndex, mscTrkAddr=mscTrkAddr, mscTrkPorsStatsPktBpEpIndex=mscTrkPorsStatsPktBpEpIndex, mscTrkStatsTable=mscTrkStatsTable, mscTrkDprsStatsStorageType=mscTrkDprsStatsStorageType, mscTrkVnsStatsIndex=mscTrkVnsStatsIndex, mscTrkFwdStatsFwdDiscUnforwardFromIf=mscTrkFwdStatsFwdDiscUnforwardFromIf, trunksGroupCA=trunksGroupCA, mscTrkMaxTxUnit=mscTrkMaxTxUnit, mscTrkPktFromIf=mscTrkPktFromIf, mscTrkAddrComponentName=mscTrkAddrComponentName, mscTrkPorsStatsStorageType=mscTrkPorsStatsStorageType, mscTrkDprsStatsIndex=mscTrkDprsStatsIndex, mscTrkRemoteComponentName=mscTrkRemoteComponentName, mscTrkTrunkPktFromIf=mscTrkTrunkPktFromIf, mscTrkFwdStatsOperEntry=mscTrkFwdStatsOperEntry, mscTrkRowStatusTable=mscTrkRowStatusTable, mscTrkPorsStatsRowStatus=mscTrkPorsStatsRowStatus, mscTrkVnsStatsDiscBpValue=mscTrkVnsStatsDiscBpValue, mscTrkProvTable=mscTrkProvTable, mscTrkOperStatusTable=mscTrkOperStatusTable, mscTrkDiscardUnforward=mscTrkDiscardUnforward, mscTrkFwdStatsFwdPktFromIf=mscTrkFwdStatsFwdPktFromIf, mscTrkOverridesTable=mscTrkOverridesTable, mscTrkStatsEntry=mscTrkStatsEntry, mscTrkSpdThEntry=mscTrkSpdThEntry, mscTrkRowStatus=mscTrkRowStatus, mscTrkOperEntry=mscTrkOperEntry, mscTrkDprsStatsPktBpEntry=mscTrkDprsStatsPktBpEntry, mscTrkPorsStatsDiscBpTable=mscTrkPorsStatsDiscBpTable, mscTrkRowStatusEntry=mscTrkRowStatusEntry, mscTrkVnsStatsPktBpValue=mscTrkVnsStatsPktBpValue, mscTrkIdleTimeOut=mscTrkIdleTimeOut, mscTrkPorsStatsOctBpEntry=mscTrkPorsStatsOctBpEntry, mscTrkDprsStatsPktBpEpIndex=mscTrkDprsStatsPktBpEpIndex, trunksCapabilities=trunksCapabilities, mscTrkVnsStatsOperTable=mscTrkVnsStatsOperTable, mscTrkPorsStatsPorsIntPktFromIf=mscTrkPorsStatsPorsIntPktFromIf, mscTrkDiscardIntUnforward=mscTrkDiscardIntUnforward, mscTrkIntPktFromIf=mscTrkIntPktFromIf)
| (octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_intersection, value_size_constraint, constraints_union, value_range_constraint, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ValueSizeConstraint', 'ConstraintsUnion', 'ValueRangeConstraint', 'SingleValueConstraint')
(row_status, integer32, gauge32, display_string, counter32, interface_index, unsigned32, storage_type) = mibBuilder.importSymbols('Nortel-MsCarrier-MscPassport-StandardTextualConventionsMIB', 'RowStatus', 'Integer32', 'Gauge32', 'DisplayString', 'Counter32', 'InterfaceIndex', 'Unsigned32', 'StorageType')
(passport_counter64, ascii_string_index, fixed_point1, ascii_string, non_replicated) = mibBuilder.importSymbols('Nortel-MsCarrier-MscPassport-TextualConventionsMIB', 'PassportCounter64', 'AsciiStringIndex', 'FixedPoint1', 'AsciiString', 'NonReplicated')
(msc_components, msc_passport_mi_bs) = mibBuilder.importSymbols('Nortel-MsCarrier-MscPassport-UsefulDefinitionsMIB', 'mscComponents', 'mscPassportMIBs')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(counter64, notification_type, integer32, unsigned32, gauge32, mib_scalar, mib_table, mib_table_row, mib_table_column, iso, mib_identifier, object_identity, time_ticks, counter32, bits, module_identity, ip_address) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter64', 'NotificationType', 'Integer32', 'Unsigned32', 'Gauge32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'iso', 'MibIdentifier', 'ObjectIdentity', 'TimeTicks', 'Counter32', 'Bits', 'ModuleIdentity', 'IpAddress')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
trunks_mib = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 43))
msc_trk = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60))
msc_trk_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 1))
if mibBuilder.loadTexts:
mscTrkRowStatusTable.setStatus('mandatory')
msc_trk_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'))
if mibBuilder.loadTexts:
mscTrkRowStatusEntry.setStatus('mandatory')
msc_trk_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscTrkRowStatus.setStatus('mandatory')
msc_trk_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkComponentName.setStatus('mandatory')
msc_trk_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkStorageType.setStatus('mandatory')
msc_trk_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535)))
if mibBuilder.loadTexts:
mscTrkIndex.setStatus('mandatory')
msc_trk_if_entry_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 100))
if mibBuilder.loadTexts:
mscTrkIfEntryTable.setStatus('mandatory')
msc_trk_if_entry_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 100, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'))
if mibBuilder.loadTexts:
mscTrkIfEntryEntry.setStatus('mandatory')
msc_trk_if_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 100, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('testing', 3))).clone('up')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscTrkIfAdminStatus.setStatus('mandatory')
msc_trk_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 100, 1, 2), interface_index().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkIfIndex.setStatus('mandatory')
msc_trk_prov_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 101))
if mibBuilder.loadTexts:
mscTrkProvTable.setStatus('mandatory')
msc_trk_prov_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 101, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'))
if mibBuilder.loadTexts:
mscTrkProvEntry.setStatus('mandatory')
msc_trk_expected_remote_node_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 101, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 12))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscTrkExpectedRemoteNodeName.setStatus('mandatory')
msc_trk_remote_validation_action = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 101, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('continue', 0), ('disable', 1))).clone('continue')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscTrkRemoteValidationAction.setStatus('mandatory')
msc_trk_maximum_expected_round_trip_delay = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 101, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 1500)).clone(1500)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscTrkMaximumExpectedRoundTripDelay.setStatus('mandatory')
msc_trk_idle_time_out = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 101, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(2, 30)).clone(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscTrkIdleTimeOut.setStatus('mandatory')
msc_trk_overrides_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 102))
if mibBuilder.loadTexts:
mscTrkOverridesTable.setStatus('mandatory')
msc_trk_overrides_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 102, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'))
if mibBuilder.loadTexts:
mscTrkOverridesEntry.setStatus('mandatory')
msc_trk_override_transmit_speed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 102, 1, 1), gauge32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 0), value_range_constraint(1000, 4294967295)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscTrkOverrideTransmitSpeed.setStatus('mandatory')
msc_trk_old_override_round_trip_delay = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 102, 1, 2), gauge32().subtype(subtypeSpec=value_range_constraint(0, 1500))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscTrkOldOverrideRoundTripDelay.setStatus('obsolete')
msc_trk_override_round_trip_usec = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 102, 1, 3), fixed_point1().subtype(subtypeSpec=value_range_constraint(0, 15000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscTrkOverrideRoundTripUsec.setStatus('mandatory')
msc_trk_state_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103))
if mibBuilder.loadTexts:
mscTrkStateTable.setStatus('mandatory')
msc_trk_state_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'))
if mibBuilder.loadTexts:
mscTrkStateEntry.setStatus('mandatory')
msc_trk_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 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:
mscTrkAdminState.setStatus('mandatory')
msc_trk_operational_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 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:
mscTrkOperationalState.setStatus('mandatory')
msc_trk_usage_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 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:
mscTrkUsageState.setStatus('mandatory')
msc_trk_availability_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkAvailabilityStatus.setStatus('mandatory')
msc_trk_procedural_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkProceduralStatus.setStatus('mandatory')
msc_trk_control_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkControlStatus.setStatus('mandatory')
msc_trk_alarm_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkAlarmStatus.setStatus('mandatory')
msc_trk_standby_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 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:
mscTrkStandbyStatus.setStatus('mandatory')
msc_trk_unknown_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 103, 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:
mscTrkUnknownStatus.setStatus('mandatory')
msc_trk_oper_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 104))
if mibBuilder.loadTexts:
mscTrkOperStatusTable.setStatus('mandatory')
msc_trk_oper_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 104, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'))
if mibBuilder.loadTexts:
mscTrkOperStatusEntry.setStatus('mandatory')
msc_trk_snmp_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 104, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('testing', 3))).clone('up')).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkSnmpOperStatus.setStatus('mandatory')
msc_trk_oper_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 105))
if mibBuilder.loadTexts:
mscTrkOperTable.setStatus('mandatory')
msc_trk_oper_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 105, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'))
if mibBuilder.loadTexts:
mscTrkOperEntry.setStatus('mandatory')
msc_trk_remote_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 105, 1, 1), ascii_string().subtype(subtypeSpec=value_size_constraint(1, 27))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkRemoteComponentName.setStatus('mandatory')
msc_trk_transport_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 106))
if mibBuilder.loadTexts:
mscTrkTransportTable.setStatus('mandatory')
msc_trk_transport_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 106, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'))
if mibBuilder.loadTexts:
mscTrkTransportEntry.setStatus('mandatory')
msc_trk_measured_speed_to_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 106, 1, 1), gauge32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkMeasuredSpeedToIf.setStatus('mandatory')
msc_trk_measured_round_trip_delay = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 106, 1, 2), gauge32().subtype(subtypeSpec=value_range_constraint(0, 1500))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkMeasuredRoundTripDelay.setStatus('obsolete')
msc_trk_max_tx_unit = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 106, 1, 3), gauge32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkMaxTxUnit.setStatus('mandatory')
msc_trk_measured_round_trip_delay_usec = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 106, 1, 4), fixed_point1().subtype(subtypeSpec=value_range_constraint(0, 15000))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkMeasuredRoundTripDelayUsec.setStatus('mandatory')
msc_trk_stats_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107))
if mibBuilder.loadTexts:
mscTrkStatsTable.setStatus('mandatory')
msc_trk_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'))
if mibBuilder.loadTexts:
mscTrkStatsEntry.setStatus('mandatory')
msc_trk_are_you_there_mode_entries = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkAreYouThereModeEntries.setStatus('mandatory')
msc_trk_pkt_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 2), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkPktFromIf.setStatus('mandatory')
msc_trk_trunk_pkt_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkTrunkPktFromIf.setStatus('mandatory')
msc_trk_trunk_pkt_to_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkTrunkPktToIf.setStatus('mandatory')
msc_trk_discard_unforward = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 5), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkDiscardUnforward.setStatus('mandatory')
msc_trk_discard_trunk_pkt_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkDiscardTrunkPktFromIf.setStatus('mandatory')
msc_trk_int_pkt_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 7), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkIntPktFromIf.setStatus('mandatory')
msc_trk_discard_int_unforward = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 8), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkDiscardIntUnforward.setStatus('mandatory')
msc_trk_staging_attempts = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkStagingAttempts.setStatus('mandatory')
msc_trk_discard_trunk_pkt_to_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 107, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkDiscardTrunkPktToIf.setStatus('mandatory')
msc_trk_speed_reporting_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 109))
if mibBuilder.loadTexts:
mscTrkSpeedReportingTable.setStatus('mandatory')
msc_trk_speed_reporting_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 109, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'))
if mibBuilder.loadTexts:
mscTrkSpeedReportingEntry.setStatus('mandatory')
msc_trk_speed_reporting_hold_off = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 109, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 1200)).clone(30)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscTrkSpeedReportingHoldOff.setStatus('mandatory')
msc_trk_low_speed_alarm_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 109, 1, 3), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 0), value_range_constraint(1, 4294967295)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscTrkLowSpeedAlarmThreshold.setStatus('mandatory')
msc_trk_high_speed_alarm_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 109, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 4294967295)).clone(4294967295)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscTrkHighSpeedAlarmThreshold.setStatus('mandatory')
msc_trk_spd_th_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 318))
if mibBuilder.loadTexts:
mscTrkSpdThTable.setStatus('mandatory')
msc_trk_spd_th_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 318, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkSpdThValue'))
if mibBuilder.loadTexts:
mscTrkSpdThEntry.setStatus('mandatory')
msc_trk_spd_th_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 318, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 268435455))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscTrkSpdThValue.setStatus('mandatory')
msc_trk_spd_th_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 318, 1, 2), row_status()).setMaxAccess('writeonly')
if mibBuilder.loadTexts:
mscTrkSpdThRowStatus.setStatus('mandatory')
msc_trk_pkt_bp_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 368))
if mibBuilder.loadTexts:
mscTrkPktBpTable.setStatus('mandatory')
msc_trk_pkt_bp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 368, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkPktBpIndex'))
if mibBuilder.loadTexts:
mscTrkPktBpEntry.setStatus('mandatory')
msc_trk_pkt_bp_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 368, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('ep0', 0), ('ep1', 1), ('ep2', 2))))
if mibBuilder.loadTexts:
mscTrkPktBpIndex.setStatus('mandatory')
msc_trk_pkt_bp_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 368, 1, 2), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkPktBpValue.setStatus('mandatory')
msc_trk_disc_bp_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 369))
if mibBuilder.loadTexts:
mscTrkDiscBpTable.setStatus('mandatory')
msc_trk_disc_bp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 369, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkDiscBpIndex'))
if mibBuilder.loadTexts:
mscTrkDiscBpEntry.setStatus('mandatory')
msc_trk_disc_bp_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 369, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('ep0', 0), ('ep1', 1), ('ep2', 2))))
if mibBuilder.loadTexts:
mscTrkDiscBpIndex.setStatus('mandatory')
msc_trk_disc_bp_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 369, 1, 2), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkDiscBpValue.setStatus('mandatory')
msc_trk_oct_bp_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 370))
if mibBuilder.loadTexts:
mscTrkOctBpTable.setStatus('mandatory')
msc_trk_oct_bp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 370, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkOctBpIndex'))
if mibBuilder.loadTexts:
mscTrkOctBpEntry.setStatus('mandatory')
msc_trk_oct_bp_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 370, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('ep0', 0), ('ep1', 1), ('ep2', 2))))
if mibBuilder.loadTexts:
mscTrkOctBpIndex.setStatus('mandatory')
msc_trk_oct_bp_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 370, 1, 2), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkOctBpValue.setStatus('mandatory')
msc_trk_pors_stats = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6))
msc_trk_pors_stats_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 1))
if mibBuilder.loadTexts:
mscTrkPorsStatsRowStatusTable.setStatus('mandatory')
msc_trk_pors_stats_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkPorsStatsIndex'))
if mibBuilder.loadTexts:
mscTrkPorsStatsRowStatusEntry.setStatus('mandatory')
msc_trk_pors_stats_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 1, 1, 1), row_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkPorsStatsRowStatus.setStatus('mandatory')
msc_trk_pors_stats_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkPorsStatsComponentName.setStatus('mandatory')
msc_trk_pors_stats_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkPorsStatsStorageType.setStatus('mandatory')
msc_trk_pors_stats_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 1, 1, 10), non_replicated())
if mibBuilder.loadTexts:
mscTrkPorsStatsIndex.setStatus('mandatory')
msc_trk_pors_stats_oper_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 10))
if mibBuilder.loadTexts:
mscTrkPorsStatsOperTable.setStatus('mandatory')
msc_trk_pors_stats_oper_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkPorsStatsIndex'))
if mibBuilder.loadTexts:
mscTrkPorsStatsOperEntry.setStatus('mandatory')
msc_trk_pors_stats_pors_norm_pkt_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 10, 1, 1), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkPorsStatsPorsNormPktFromIf.setStatus('mandatory')
msc_trk_pors_stats_pors_norm_disc_unforward_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 10, 1, 2), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkPorsStatsPorsNormDiscUnforwardFromIf.setStatus('mandatory')
msc_trk_pors_stats_pors_norm_octet_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 10, 1, 3), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkPorsStatsPorsNormOctetFromIf.setStatus('mandatory')
msc_trk_pors_stats_pors_int_pkt_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 10, 1, 4), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkPorsStatsPorsIntPktFromIf.setStatus('mandatory')
msc_trk_pors_stats_pors_int_disc_unforward_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 10, 1, 5), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkPorsStatsPorsIntDiscUnforwardFromIf.setStatus('mandatory')
msc_trk_pors_stats_pors_int_octet_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 10, 1, 6), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkPorsStatsPorsIntOctetFromIf.setStatus('mandatory')
msc_trk_pors_stats_pkt_bp_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 371))
if mibBuilder.loadTexts:
mscTrkPorsStatsPktBpTable.setStatus('mandatory')
msc_trk_pors_stats_pkt_bp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 371, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkPorsStatsIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkPorsStatsPktBpEpIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkPorsStatsPktBpDpIndex'))
if mibBuilder.loadTexts:
mscTrkPorsStatsPktBpEntry.setStatus('mandatory')
msc_trk_pors_stats_pkt_bp_ep_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 371, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('ep0', 0), ('ep1', 1), ('ep2', 2))))
if mibBuilder.loadTexts:
mscTrkPorsStatsPktBpEpIndex.setStatus('mandatory')
msc_trk_pors_stats_pkt_bp_dp_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 371, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('dp0', 0), ('dp1', 1), ('dp2', 2), ('dp3', 3))))
if mibBuilder.loadTexts:
mscTrkPorsStatsPktBpDpIndex.setStatus('mandatory')
msc_trk_pors_stats_pkt_bp_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 371, 1, 3), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkPorsStatsPktBpValue.setStatus('mandatory')
msc_trk_pors_stats_disc_bp_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 372))
if mibBuilder.loadTexts:
mscTrkPorsStatsDiscBpTable.setStatus('mandatory')
msc_trk_pors_stats_disc_bp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 372, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkPorsStatsIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkPorsStatsDiscBpEpIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkPorsStatsDiscBpDpIndex'))
if mibBuilder.loadTexts:
mscTrkPorsStatsDiscBpEntry.setStatus('mandatory')
msc_trk_pors_stats_disc_bp_ep_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 372, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('ep0', 0), ('ep1', 1), ('ep2', 2))))
if mibBuilder.loadTexts:
mscTrkPorsStatsDiscBpEpIndex.setStatus('mandatory')
msc_trk_pors_stats_disc_bp_dp_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 372, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('dp0', 0), ('dp1', 1), ('dp2', 2), ('dp3', 3))))
if mibBuilder.loadTexts:
mscTrkPorsStatsDiscBpDpIndex.setStatus('mandatory')
msc_trk_pors_stats_disc_bp_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 372, 1, 3), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkPorsStatsDiscBpValue.setStatus('mandatory')
msc_trk_pors_stats_oct_bp_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 373))
if mibBuilder.loadTexts:
mscTrkPorsStatsOctBpTable.setStatus('mandatory')
msc_trk_pors_stats_oct_bp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 373, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkPorsStatsIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkPorsStatsOctBpEpIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkPorsStatsOctBpDpIndex'))
if mibBuilder.loadTexts:
mscTrkPorsStatsOctBpEntry.setStatus('mandatory')
msc_trk_pors_stats_oct_bp_ep_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 373, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('ep0', 0), ('ep1', 1), ('ep2', 2))))
if mibBuilder.loadTexts:
mscTrkPorsStatsOctBpEpIndex.setStatus('mandatory')
msc_trk_pors_stats_oct_bp_dp_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 373, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('dp0', 0), ('dp1', 1), ('dp2', 2), ('dp3', 3))))
if mibBuilder.loadTexts:
mscTrkPorsStatsOctBpDpIndex.setStatus('mandatory')
msc_trk_pors_stats_oct_bp_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 6, 373, 1, 3), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkPorsStatsOctBpValue.setStatus('mandatory')
msc_trk_fwd_stats = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7))
msc_trk_fwd_stats_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 1))
if mibBuilder.loadTexts:
mscTrkFwdStatsRowStatusTable.setStatus('mandatory')
msc_trk_fwd_stats_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkFwdStatsIndex'))
if mibBuilder.loadTexts:
mscTrkFwdStatsRowStatusEntry.setStatus('mandatory')
msc_trk_fwd_stats_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 1, 1, 1), row_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkFwdStatsRowStatus.setStatus('mandatory')
msc_trk_fwd_stats_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkFwdStatsComponentName.setStatus('mandatory')
msc_trk_fwd_stats_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkFwdStatsStorageType.setStatus('mandatory')
msc_trk_fwd_stats_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 1, 1, 10), non_replicated())
if mibBuilder.loadTexts:
mscTrkFwdStatsIndex.setStatus('mandatory')
msc_trk_fwd_stats_oper_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 10))
if mibBuilder.loadTexts:
mscTrkFwdStatsOperTable.setStatus('mandatory')
msc_trk_fwd_stats_oper_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkFwdStatsIndex'))
if mibBuilder.loadTexts:
mscTrkFwdStatsOperEntry.setStatus('mandatory')
msc_trk_fwd_stats_fwd_pkt_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 10, 1, 1), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkFwdStatsFwdPktFromIf.setStatus('mandatory')
msc_trk_fwd_stats_fwd_disc_unforward_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 10, 1, 2), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkFwdStatsFwdDiscUnforwardFromIf.setStatus('mandatory')
msc_trk_fwd_stats_fwd_octet_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 7, 10, 1, 3), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkFwdStatsFwdOctetFromIf.setStatus('mandatory')
msc_trk_vns_stats = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8))
msc_trk_vns_stats_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 1))
if mibBuilder.loadTexts:
mscTrkVnsStatsRowStatusTable.setStatus('mandatory')
msc_trk_vns_stats_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkVnsStatsIndex'))
if mibBuilder.loadTexts:
mscTrkVnsStatsRowStatusEntry.setStatus('mandatory')
msc_trk_vns_stats_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 1, 1, 1), row_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkVnsStatsRowStatus.setStatus('mandatory')
msc_trk_vns_stats_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkVnsStatsComponentName.setStatus('mandatory')
msc_trk_vns_stats_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkVnsStatsStorageType.setStatus('mandatory')
msc_trk_vns_stats_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 1, 1, 10), non_replicated())
if mibBuilder.loadTexts:
mscTrkVnsStatsIndex.setStatus('mandatory')
msc_trk_vns_stats_oper_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 10))
if mibBuilder.loadTexts:
mscTrkVnsStatsOperTable.setStatus('mandatory')
msc_trk_vns_stats_oper_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkVnsStatsIndex'))
if mibBuilder.loadTexts:
mscTrkVnsStatsOperEntry.setStatus('mandatory')
msc_trk_vns_stats_vns_pkt_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 10, 1, 1), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkVnsStatsVnsPktFromIf.setStatus('mandatory')
msc_trk_vns_stats_vns_disc_unforward_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 10, 1, 2), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkVnsStatsVnsDiscUnforwardFromIf.setStatus('mandatory')
msc_trk_vns_stats_vns_octet_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 10, 1, 3), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkVnsStatsVnsOctetFromIf.setStatus('mandatory')
msc_trk_vns_stats_pkt_bp_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 377))
if mibBuilder.loadTexts:
mscTrkVnsStatsPktBpTable.setStatus('mandatory')
msc_trk_vns_stats_pkt_bp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 377, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkVnsStatsIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkVnsStatsPktBpEpIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkVnsStatsPktBpDpIndex'))
if mibBuilder.loadTexts:
mscTrkVnsStatsPktBpEntry.setStatus('mandatory')
msc_trk_vns_stats_pkt_bp_ep_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 377, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('ep0', 0), ('ep1', 1), ('ep2', 2))))
if mibBuilder.loadTexts:
mscTrkVnsStatsPktBpEpIndex.setStatus('mandatory')
msc_trk_vns_stats_pkt_bp_dp_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 377, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('dp0', 0), ('dp1', 1), ('dp2', 2), ('dp3', 3))))
if mibBuilder.loadTexts:
mscTrkVnsStatsPktBpDpIndex.setStatus('mandatory')
msc_trk_vns_stats_pkt_bp_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 377, 1, 3), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkVnsStatsPktBpValue.setStatus('mandatory')
msc_trk_vns_stats_disc_bp_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 378))
if mibBuilder.loadTexts:
mscTrkVnsStatsDiscBpTable.setStatus('mandatory')
msc_trk_vns_stats_disc_bp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 378, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkVnsStatsIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkVnsStatsDiscBpEpIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkVnsStatsDiscBpDpIndex'))
if mibBuilder.loadTexts:
mscTrkVnsStatsDiscBpEntry.setStatus('mandatory')
msc_trk_vns_stats_disc_bp_ep_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 378, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('ep0', 0), ('ep1', 1), ('ep2', 2))))
if mibBuilder.loadTexts:
mscTrkVnsStatsDiscBpEpIndex.setStatus('mandatory')
msc_trk_vns_stats_disc_bp_dp_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 378, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('dp0', 0), ('dp1', 1), ('dp2', 2), ('dp3', 3))))
if mibBuilder.loadTexts:
mscTrkVnsStatsDiscBpDpIndex.setStatus('mandatory')
msc_trk_vns_stats_disc_bp_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 378, 1, 3), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkVnsStatsDiscBpValue.setStatus('mandatory')
msc_trk_vns_stats_oct_bp_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 379))
if mibBuilder.loadTexts:
mscTrkVnsStatsOctBpTable.setStatus('mandatory')
msc_trk_vns_stats_oct_bp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 379, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkVnsStatsIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkVnsStatsOctBpEpIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkVnsStatsOctBpDpIndex'))
if mibBuilder.loadTexts:
mscTrkVnsStatsOctBpEntry.setStatus('mandatory')
msc_trk_vns_stats_oct_bp_ep_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 379, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('ep0', 0), ('ep1', 1), ('ep2', 2))))
if mibBuilder.loadTexts:
mscTrkVnsStatsOctBpEpIndex.setStatus('mandatory')
msc_trk_vns_stats_oct_bp_dp_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 379, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('dp0', 0), ('dp1', 1), ('dp2', 2), ('dp3', 3))))
if mibBuilder.loadTexts:
mscTrkVnsStatsOctBpDpIndex.setStatus('mandatory')
msc_trk_vns_stats_oct_bp_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 8, 379, 1, 3), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkVnsStatsOctBpValue.setStatus('mandatory')
msc_trk_dprs_stats = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10))
msc_trk_dprs_stats_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 1))
if mibBuilder.loadTexts:
mscTrkDprsStatsRowStatusTable.setStatus('mandatory')
msc_trk_dprs_stats_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkDprsStatsIndex'))
if mibBuilder.loadTexts:
mscTrkDprsStatsRowStatusEntry.setStatus('mandatory')
msc_trk_dprs_stats_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 1, 1, 1), row_status()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkDprsStatsRowStatus.setStatus('mandatory')
msc_trk_dprs_stats_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkDprsStatsComponentName.setStatus('mandatory')
msc_trk_dprs_stats_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkDprsStatsStorageType.setStatus('mandatory')
msc_trk_dprs_stats_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 1, 1, 10), non_replicated())
if mibBuilder.loadTexts:
mscTrkDprsStatsIndex.setStatus('mandatory')
msc_trk_dprs_stats_pkt_bp_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 374))
if mibBuilder.loadTexts:
mscTrkDprsStatsPktBpTable.setStatus('mandatory')
msc_trk_dprs_stats_pkt_bp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 374, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkDprsStatsIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkDprsStatsPktBpEpIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkDprsStatsPktBpDpIndex'))
if mibBuilder.loadTexts:
mscTrkDprsStatsPktBpEntry.setStatus('mandatory')
msc_trk_dprs_stats_pkt_bp_ep_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 374, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('ep0', 0), ('ep1', 1), ('ep2', 2))))
if mibBuilder.loadTexts:
mscTrkDprsStatsPktBpEpIndex.setStatus('mandatory')
msc_trk_dprs_stats_pkt_bp_dp_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 374, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('dp0', 0), ('dp1', 1), ('dp2', 2), ('dp3', 3))))
if mibBuilder.loadTexts:
mscTrkDprsStatsPktBpDpIndex.setStatus('mandatory')
msc_trk_dprs_stats_pkt_bp_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 374, 1, 3), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkDprsStatsPktBpValue.setStatus('mandatory')
msc_trk_dprs_stats_disc_bp_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 375))
if mibBuilder.loadTexts:
mscTrkDprsStatsDiscBpTable.setStatus('mandatory')
msc_trk_dprs_stats_disc_bp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 375, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkDprsStatsIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkDprsStatsDiscBpEpIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkDprsStatsDiscBpDpIndex'))
if mibBuilder.loadTexts:
mscTrkDprsStatsDiscBpEntry.setStatus('mandatory')
msc_trk_dprs_stats_disc_bp_ep_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 375, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('ep0', 0), ('ep1', 1), ('ep2', 2))))
if mibBuilder.loadTexts:
mscTrkDprsStatsDiscBpEpIndex.setStatus('mandatory')
msc_trk_dprs_stats_disc_bp_dp_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 375, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('dp0', 0), ('dp1', 1), ('dp2', 2), ('dp3', 3))))
if mibBuilder.loadTexts:
mscTrkDprsStatsDiscBpDpIndex.setStatus('mandatory')
msc_trk_dprs_stats_disc_bp_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 375, 1, 3), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkDprsStatsDiscBpValue.setStatus('mandatory')
msc_trk_dprs_stats_oct_bp_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 376))
if mibBuilder.loadTexts:
mscTrkDprsStatsOctBpTable.setStatus('mandatory')
msc_trk_dprs_stats_oct_bp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 376, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkDprsStatsIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkDprsStatsOctBpEpIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkDprsStatsOctBpDpIndex'))
if mibBuilder.loadTexts:
mscTrkDprsStatsOctBpEntry.setStatus('mandatory')
msc_trk_dprs_stats_oct_bp_ep_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 376, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('ep0', 0), ('ep1', 1), ('ep2', 2))))
if mibBuilder.loadTexts:
mscTrkDprsStatsOctBpEpIndex.setStatus('mandatory')
msc_trk_dprs_stats_oct_bp_dp_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 376, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('dp0', 0), ('dp1', 1), ('dp2', 2), ('dp3', 3))))
if mibBuilder.loadTexts:
mscTrkDprsStatsOctBpDpIndex.setStatus('mandatory')
msc_trk_dprs_stats_oct_bp_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 10, 376, 1, 3), passport_counter64()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkDprsStatsOctBpValue.setStatus('mandatory')
msc_trk_addr = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11))
msc_trk_addr_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11, 1))
if mibBuilder.loadTexts:
mscTrkAddrRowStatusTable.setStatus('mandatory')
msc_trk_addr_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11, 1, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkAddrAddressIndex'))
if mibBuilder.loadTexts:
mscTrkAddrRowStatusEntry.setStatus('mandatory')
msc_trk_addr_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11, 1, 1, 1), row_status()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscTrkAddrRowStatus.setStatus('mandatory')
msc_trk_addr_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkAddrComponentName.setStatus('mandatory')
msc_trk_addr_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11, 1, 1, 4), storage_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mscTrkAddrStorageType.setStatus('mandatory')
msc_trk_addr_address_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11, 1, 1, 10), ascii_string_index().subtype(subtypeSpec=value_size_constraint(1, 40)))
if mibBuilder.loadTexts:
mscTrkAddrAddressIndex.setStatus('mandatory')
msc_trk_addr_prov_table = mib_table((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11, 10))
if mibBuilder.loadTexts:
mscTrkAddrProvTable.setStatus('mandatory')
msc_trk_addr_prov_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11, 10, 1)).setIndexNames((0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkIndex'), (0, 'Nortel-MsCarrier-MscPassport-TrunksMIB', 'mscTrkAddrAddressIndex'))
if mibBuilder.loadTexts:
mscTrkAddrProvEntry.setStatus('mandatory')
msc_trk_addr_cost = mib_table_column((1, 3, 6, 1, 4, 1, 562, 36, 2, 1, 60, 11, 10, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65435)).clone(200)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mscTrkAddrCost.setStatus('mandatory')
trunks_group = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 43, 1))
trunks_group_ca = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 43, 1, 1))
trunks_group_ca02 = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 43, 1, 1, 3))
trunks_group_ca02_a = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 43, 1, 1, 3, 2))
trunks_capabilities = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 43, 3))
trunks_capabilities_ca = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 43, 3, 1))
trunks_capabilities_ca02 = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 43, 3, 1, 3))
trunks_capabilities_ca02_a = mib_identifier((1, 3, 6, 1, 4, 1, 562, 36, 2, 2, 43, 3, 1, 3, 2))
mibBuilder.exportSymbols('Nortel-MsCarrier-MscPassport-TrunksMIB', mscTrkDprsStatsOctBpTable=mscTrkDprsStatsOctBpTable, trunksCapabilitiesCA02=trunksCapabilitiesCA02, mscTrkUsageState=mscTrkUsageState, mscTrkVnsStatsVnsPktFromIf=mscTrkVnsStatsVnsPktFromIf, mscTrkPktBpTable=mscTrkPktBpTable, mscTrkOverrideTransmitSpeed=mscTrkOverrideTransmitSpeed, mscTrkPorsStatsPorsNormPktFromIf=mscTrkPorsStatsPorsNormPktFromIf, mscTrkDprsStatsOctBpDpIndex=mscTrkDprsStatsOctBpDpIndex, trunksCapabilitiesCA02A=trunksCapabilitiesCA02A, mscTrkPorsStatsPorsNormDiscUnforwardFromIf=mscTrkPorsStatsPorsNormDiscUnforwardFromIf, mscTrkPorsStatsOperTable=mscTrkPorsStatsOperTable, mscTrkFwdStatsFwdOctetFromIf=mscTrkFwdStatsFwdOctetFromIf, mscTrkStorageType=mscTrkStorageType, mscTrkPorsStatsOctBpDpIndex=mscTrkPorsStatsOctBpDpIndex, mscTrkAddrRowStatus=mscTrkAddrRowStatus, mscTrkStateTable=mscTrkStateTable, mscTrkDiscBpIndex=mscTrkDiscBpIndex, mscTrkVnsStatsPktBpTable=mscTrkVnsStatsPktBpTable, mscTrkSpeedReportingHoldOff=mscTrkSpeedReportingHoldOff, mscTrkPorsStatsOctBpTable=mscTrkPorsStatsOctBpTable, mscTrkVnsStatsPktBpDpIndex=mscTrkVnsStatsPktBpDpIndex, mscTrkMeasuredSpeedToIf=mscTrkMeasuredSpeedToIf, mscTrkAddrRowStatusEntry=mscTrkAddrRowStatusEntry, mscTrkAlarmStatus=mscTrkAlarmStatus, mscTrkSpeedReportingEntry=mscTrkSpeedReportingEntry, mscTrkOctBpValue=mscTrkOctBpValue, mscTrkOperTable=mscTrkOperTable, mscTrkStandbyStatus=mscTrkStandbyStatus, mscTrkVnsStatsDiscBpDpIndex=mscTrkVnsStatsDiscBpDpIndex, mscTrkDprsStatsDiscBpTable=mscTrkDprsStatsDiscBpTable, mscTrkDiscardTrunkPktToIf=mscTrkDiscardTrunkPktToIf, mscTrkVnsStatsOperEntry=mscTrkVnsStatsOperEntry, mscTrkExpectedRemoteNodeName=mscTrkExpectedRemoteNodeName, mscTrkPorsStatsPktBpTable=mscTrkPorsStatsPktBpTable, mscTrkDprsStatsComponentName=mscTrkDprsStatsComponentName, trunksGroupCA02=trunksGroupCA02, mscTrkIfAdminStatus=mscTrkIfAdminStatus, mscTrkVnsStatsDiscBpEntry=mscTrkVnsStatsDiscBpEntry, mscTrkSpdThTable=mscTrkSpdThTable, mscTrkAvailabilityStatus=mscTrkAvailabilityStatus, mscTrkSpeedReportingTable=mscTrkSpeedReportingTable, mscTrkPorsStats=mscTrkPorsStats, mscTrkPorsStatsPorsIntDiscUnforwardFromIf=mscTrkPorsStatsPorsIntDiscUnforwardFromIf, mscTrkDprsStatsDiscBpDpIndex=mscTrkDprsStatsDiscBpDpIndex, mscTrkSnmpOperStatus=mscTrkSnmpOperStatus, mscTrkAddrRowStatusTable=mscTrkAddrRowStatusTable, mscTrkDprsStatsDiscBpEpIndex=mscTrkDprsStatsDiscBpEpIndex, trunksCapabilitiesCA=trunksCapabilitiesCA, mscTrkPorsStatsDiscBpDpIndex=mscTrkPorsStatsDiscBpDpIndex, mscTrkPorsStatsDiscBpValue=mscTrkPorsStatsDiscBpValue, mscTrkAreYouThereModeEntries=mscTrkAreYouThereModeEntries, mscTrkPorsStatsPorsNormOctetFromIf=mscTrkPorsStatsPorsNormOctetFromIf, mscTrkFwdStatsIndex=mscTrkFwdStatsIndex, mscTrkVnsStatsDiscBpEpIndex=mscTrkVnsStatsDiscBpEpIndex, mscTrkOctBpIndex=mscTrkOctBpIndex, mscTrkProvEntry=mscTrkProvEntry, mscTrkMeasuredRoundTripDelay=mscTrkMeasuredRoundTripDelay, trunksMIB=trunksMIB, mscTrkPorsStatsPktBpEntry=mscTrkPorsStatsPktBpEntry, mscTrkUnknownStatus=mscTrkUnknownStatus, mscTrkDprsStatsOctBpEpIndex=mscTrkDprsStatsOctBpEpIndex, mscTrkVnsStatsDiscBpTable=mscTrkVnsStatsDiscBpTable, mscTrkProceduralStatus=mscTrkProceduralStatus, mscTrkFwdStatsRowStatusEntry=mscTrkFwdStatsRowStatusEntry, mscTrkVnsStatsComponentName=mscTrkVnsStatsComponentName, mscTrkVnsStatsRowStatusEntry=mscTrkVnsStatsRowStatusEntry, mscTrkDprsStatsPktBpValue=mscTrkDprsStatsPktBpValue, mscTrkDprsStatsPktBpDpIndex=mscTrkDprsStatsPktBpDpIndex, mscTrkDiscardTrunkPktFromIf=mscTrkDiscardTrunkPktFromIf, mscTrkPorsStatsDiscBpEpIndex=mscTrkPorsStatsDiscBpEpIndex, mscTrkAddrAddressIndex=mscTrkAddrAddressIndex, mscTrkDprsStatsRowStatusTable=mscTrkDprsStatsRowStatusTable, mscTrkVnsStatsOctBpDpIndex=mscTrkVnsStatsOctBpDpIndex, mscTrkPorsStatsOctBpValue=mscTrkPorsStatsOctBpValue, mscTrkDprsStatsDiscBpValue=mscTrkDprsStatsDiscBpValue, mscTrkFwdStatsOperTable=mscTrkFwdStatsOperTable, mscTrkVnsStatsVnsDiscUnforwardFromIf=mscTrkVnsStatsVnsDiscUnforwardFromIf, mscTrkPorsStatsDiscBpEntry=mscTrkPorsStatsDiscBpEntry, mscTrkIndex=mscTrkIndex, mscTrkAddrProvTable=mscTrkAddrProvTable, mscTrkIfEntryTable=mscTrkIfEntryTable, mscTrkAddrProvEntry=mscTrkAddrProvEntry, mscTrkDprsStatsOctBpValue=mscTrkDprsStatsOctBpValue, trunksGroup=trunksGroup, mscTrkDprsStatsPktBpTable=mscTrkDprsStatsPktBpTable, mscTrkDprsStatsRowStatus=mscTrkDprsStatsRowStatus, mscTrkOldOverrideRoundTripDelay=mscTrkOldOverrideRoundTripDelay, trunksGroupCA02A=trunksGroupCA02A, mscTrkPorsStatsPorsIntOctetFromIf=mscTrkPorsStatsPorsIntOctetFromIf, mscTrkPorsStatsComponentName=mscTrkPorsStatsComponentName, mscTrkSpdThValue=mscTrkSpdThValue, mscTrkRemoteValidationAction=mscTrkRemoteValidationAction, mscTrkComponentName=mscTrkComponentName, mscTrkOperStatusEntry=mscTrkOperStatusEntry, mscTrkVnsStatsOctBpTable=mscTrkVnsStatsOctBpTable, mscTrkLowSpeedAlarmThreshold=mscTrkLowSpeedAlarmThreshold, mscTrkAddrStorageType=mscTrkAddrStorageType, mscTrkPorsStatsOperEntry=mscTrkPorsStatsOperEntry, mscTrkDiscBpTable=mscTrkDiscBpTable, mscTrkVnsStatsRowStatusTable=mscTrkVnsStatsRowStatusTable, mscTrkPktBpIndex=mscTrkPktBpIndex, mscTrkOverridesEntry=mscTrkOverridesEntry, mscTrkVnsStatsVnsOctetFromIf=mscTrkVnsStatsVnsOctetFromIf, mscTrkVnsStatsStorageType=mscTrkVnsStatsStorageType, mscTrkIfIndex=mscTrkIfIndex, mscTrkVnsStatsOctBpValue=mscTrkVnsStatsOctBpValue, mscTrkVnsStatsRowStatus=mscTrkVnsStatsRowStatus, mscTrkPktBpValue=mscTrkPktBpValue, mscTrkOverrideRoundTripUsec=mscTrkOverrideRoundTripUsec, mscTrkPorsStatsPktBpValue=mscTrkPorsStatsPktBpValue, mscTrkVnsStatsOctBpEpIndex=mscTrkVnsStatsOctBpEpIndex, mscTrkPorsStatsRowStatusTable=mscTrkPorsStatsRowStatusTable, mscTrkDprsStats=mscTrkDprsStats, mscTrkFwdStats=mscTrkFwdStats, mscTrkVnsStatsPktBpEntry=mscTrkVnsStatsPktBpEntry, mscTrkFwdStatsComponentName=mscTrkFwdStatsComponentName, mscTrkDprsStatsDiscBpEntry=mscTrkDprsStatsDiscBpEntry, mscTrkStateEntry=mscTrkStateEntry, mscTrkOctBpEntry=mscTrkOctBpEntry, mscTrk=mscTrk, mscTrkAdminState=mscTrkAdminState, mscTrkHighSpeedAlarmThreshold=mscTrkHighSpeedAlarmThreshold, mscTrkOperationalState=mscTrkOperationalState, mscTrkPktBpEntry=mscTrkPktBpEntry, mscTrkPorsStatsRowStatusEntry=mscTrkPorsStatsRowStatusEntry, mscTrkTrunkPktToIf=mscTrkTrunkPktToIf, mscTrkTransportTable=mscTrkTransportTable, mscTrkControlStatus=mscTrkControlStatus, mscTrkSpdThRowStatus=mscTrkSpdThRowStatus, mscTrkIfEntryEntry=mscTrkIfEntryEntry, mscTrkDiscBpEntry=mscTrkDiscBpEntry, mscTrkStagingAttempts=mscTrkStagingAttempts, mscTrkDiscBpValue=mscTrkDiscBpValue, mscTrkPorsStatsPktBpDpIndex=mscTrkPorsStatsPktBpDpIndex, mscTrkTransportEntry=mscTrkTransportEntry, mscTrkPorsStatsIndex=mscTrkPorsStatsIndex, mscTrkVnsStatsPktBpEpIndex=mscTrkVnsStatsPktBpEpIndex, mscTrkVnsStatsOctBpEntry=mscTrkVnsStatsOctBpEntry, mscTrkDprsStatsRowStatusEntry=mscTrkDprsStatsRowStatusEntry, mscTrkFwdStatsRowStatus=mscTrkFwdStatsRowStatus, mscTrkAddrCost=mscTrkAddrCost, mscTrkOctBpTable=mscTrkOctBpTable, mscTrkDprsStatsOctBpEntry=mscTrkDprsStatsOctBpEntry, mscTrkFwdStatsRowStatusTable=mscTrkFwdStatsRowStatusTable, mscTrkVnsStats=mscTrkVnsStats, mscTrkMeasuredRoundTripDelayUsec=mscTrkMeasuredRoundTripDelayUsec, mscTrkFwdStatsStorageType=mscTrkFwdStatsStorageType, mscTrkMaximumExpectedRoundTripDelay=mscTrkMaximumExpectedRoundTripDelay, mscTrkPorsStatsOctBpEpIndex=mscTrkPorsStatsOctBpEpIndex, mscTrkAddr=mscTrkAddr, mscTrkPorsStatsPktBpEpIndex=mscTrkPorsStatsPktBpEpIndex, mscTrkStatsTable=mscTrkStatsTable, mscTrkDprsStatsStorageType=mscTrkDprsStatsStorageType, mscTrkVnsStatsIndex=mscTrkVnsStatsIndex, mscTrkFwdStatsFwdDiscUnforwardFromIf=mscTrkFwdStatsFwdDiscUnforwardFromIf, trunksGroupCA=trunksGroupCA, mscTrkMaxTxUnit=mscTrkMaxTxUnit, mscTrkPktFromIf=mscTrkPktFromIf, mscTrkAddrComponentName=mscTrkAddrComponentName, mscTrkPorsStatsStorageType=mscTrkPorsStatsStorageType, mscTrkDprsStatsIndex=mscTrkDprsStatsIndex, mscTrkRemoteComponentName=mscTrkRemoteComponentName, mscTrkTrunkPktFromIf=mscTrkTrunkPktFromIf, mscTrkFwdStatsOperEntry=mscTrkFwdStatsOperEntry, mscTrkRowStatusTable=mscTrkRowStatusTable, mscTrkPorsStatsRowStatus=mscTrkPorsStatsRowStatus, mscTrkVnsStatsDiscBpValue=mscTrkVnsStatsDiscBpValue, mscTrkProvTable=mscTrkProvTable, mscTrkOperStatusTable=mscTrkOperStatusTable, mscTrkDiscardUnforward=mscTrkDiscardUnforward, mscTrkFwdStatsFwdPktFromIf=mscTrkFwdStatsFwdPktFromIf, mscTrkOverridesTable=mscTrkOverridesTable, mscTrkStatsEntry=mscTrkStatsEntry, mscTrkSpdThEntry=mscTrkSpdThEntry, mscTrkRowStatus=mscTrkRowStatus, mscTrkOperEntry=mscTrkOperEntry, mscTrkDprsStatsPktBpEntry=mscTrkDprsStatsPktBpEntry, mscTrkPorsStatsDiscBpTable=mscTrkPorsStatsDiscBpTable, mscTrkRowStatusEntry=mscTrkRowStatusEntry, mscTrkVnsStatsPktBpValue=mscTrkVnsStatsPktBpValue, mscTrkIdleTimeOut=mscTrkIdleTimeOut, mscTrkPorsStatsOctBpEntry=mscTrkPorsStatsOctBpEntry, mscTrkDprsStatsPktBpEpIndex=mscTrkDprsStatsPktBpEpIndex, trunksCapabilities=trunksCapabilities, mscTrkVnsStatsOperTable=mscTrkVnsStatsOperTable, mscTrkPorsStatsPorsIntPktFromIf=mscTrkPorsStatsPorsIntPktFromIf, mscTrkDiscardIntUnforward=mscTrkDiscardIntUnforward, mscTrkIntPktFromIf=mscTrkIntPktFromIf) |
class Solution:
def findLatestStep(self, arr: List[int], m: int) -> int:
n = len(arr)
parent, size, result, bitsArray, count = [x for x in range(n)], [1] * n, -1, [0] * n, Counter()
def find(x):
if parent[x] == x:
return x
else:
parent[x] = find(parent[x])
return parent[x]
def union(x, y):
xParent, yParent = find(x), find(y)
if xParent == yParent:
return
if size[xParent] < size[yParent]:
xParent, yParent = yParent, xParent
parent[yParent] = xParent
size[xParent] += size[yParent]
size[yParent] = size[xParent]
def getSize(x):
return size[find(x)]
for step, index in enumerate(arr, start = 1):
index -= 1
bitsArray[index], currentSize = 1, 1
if index - 1 >= 0 and bitsArray[index - 1] == 1:
leftSize = getSize(index - 1)
union(index, index - 1)
currentSize += leftSize
count[leftSize] -= 1
if index + 1 < n and bitsArray[index + 1] == 1:
rightSize = getSize(index + 1)
union(index, index + 1)
currentSize += rightSize
count[rightSize] -= 1
count[currentSize] += 1
if count[m] > 0:
result = step
return result | class Solution:
def find_latest_step(self, arr: List[int], m: int) -> int:
n = len(arr)
(parent, size, result, bits_array, count) = ([x for x in range(n)], [1] * n, -1, [0] * n, counter())
def find(x):
if parent[x] == x:
return x
else:
parent[x] = find(parent[x])
return parent[x]
def union(x, y):
(x_parent, y_parent) = (find(x), find(y))
if xParent == yParent:
return
if size[xParent] < size[yParent]:
(x_parent, y_parent) = (yParent, xParent)
parent[yParent] = xParent
size[xParent] += size[yParent]
size[yParent] = size[xParent]
def get_size(x):
return size[find(x)]
for (step, index) in enumerate(arr, start=1):
index -= 1
(bitsArray[index], current_size) = (1, 1)
if index - 1 >= 0 and bitsArray[index - 1] == 1:
left_size = get_size(index - 1)
union(index, index - 1)
current_size += leftSize
count[leftSize] -= 1
if index + 1 < n and bitsArray[index + 1] == 1:
right_size = get_size(index + 1)
union(index, index + 1)
current_size += rightSize
count[rightSize] -= 1
count[currentSize] += 1
if count[m] > 0:
result = step
return result |
def ask_name():
name = input("Write your name: ")
return name
def go_through(name):
for i in name:
print(i)
print("\n")
def go_Through_(name):
for i in name:
print(i.upper())
print("\n")
def run():
n = ask_name()
go_through(n)
go_Through_(n)
if __name__ == "__main__":
run() | def ask_name():
name = input('Write your name: ')
return name
def go_through(name):
for i in name:
print(i)
print('\n')
def go__through_(name):
for i in name:
print(i.upper())
print('\n')
def run():
n = ask_name()
go_through(n)
go__through_(n)
if __name__ == '__main__':
run() |
def generate_exclusion_list(hls_input_file,exclusion_list_file):
file_lines = []
with open(hls_input_file,'r') as input_file:
file_lines = input_file.readlines()
r_list = []
with open(hls_input_file,'w') as clean_code:
for i,x in enumerate(file_lines):
if "@" in x:
if "loop_ignore" in x:
r_list.append(f"{i+1+1}\n")
clean_code.write(f"//{x}")
else:
clean_code.write(x)
with open(exclusion_list_file,'w') as exf:
exf.write(f"{len(r_list)}\n")
for l in r_list:
exf.write(l)
| def generate_exclusion_list(hls_input_file, exclusion_list_file):
file_lines = []
with open(hls_input_file, 'r') as input_file:
file_lines = input_file.readlines()
r_list = []
with open(hls_input_file, 'w') as clean_code:
for (i, x) in enumerate(file_lines):
if '@' in x:
if 'loop_ignore' in x:
r_list.append(f'{i + 1 + 1}\n')
clean_code.write(f'//{x}')
else:
clean_code.write(x)
with open(exclusion_list_file, 'w') as exf:
exf.write(f'{len(r_list)}\n')
for l in r_list:
exf.write(l) |
# Easy
# https://leetcode.com/problems/same-tree/
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
# Time Complexity: O(N)
# Space Complexity: O(tree height)
class Solution:
def isSameTree(self, p: TreeNode, q: TreeNode) -> bool:
return self.helper(p, q)
# Recursive Inorder Traversal check
def helper(self, node1, node2):
if node1 and not node2 or node2 and not node1:
return False
elif node1 and node2:
if not self.helper(node1.left, node2.left):
return False
if node1.val != node2.val:
return False
if not self.helper(node1.right, node2.right):
return False
return True
| class Solution:
def is_same_tree(self, p: TreeNode, q: TreeNode) -> bool:
return self.helper(p, q)
def helper(self, node1, node2):
if node1 and (not node2) or (node2 and (not node1)):
return False
elif node1 and node2:
if not self.helper(node1.left, node2.left):
return False
if node1.val != node2.val:
return False
if not self.helper(node1.right, node2.right):
return False
return True |
stack = []
def isEmpty(stack):
if stack == []:
return True
else:
return False
def push(stack):
item = int(input("enter value"))
stack.append(item)
top = len(stack)-1
def pop(stack):
if isEmpty(stack):
print("underflow")
else:
item=stack.pop()
if len(stack) == 0:
top = None
else:
top = len(stack)-1
print(item,"is deleted")
def peek(stack):
if isEmpty(stack):
print("stack empty")
else:
top = len(stack)-1
print(stack[top])
def display(stack):
if isEmpty(stack):
print("stack empty")
else:
top = len(stack)-1
for a in range(top,-1,-1):
print(stack[a])
while True:
menu = int(input('1.push\n 2.pop\n 3.peek\n 4.display'))
if menu == 1:
push(stack)
print("\n")
elif menu == 2:
pop(stack)
elif menu == 3:
peek(stack)
elif menu == 4:
display(stack)
else:
break
# credits Nishchal github ID(Nish251103) | stack = []
def is_empty(stack):
if stack == []:
return True
else:
return False
def push(stack):
item = int(input('enter value'))
stack.append(item)
top = len(stack) - 1
def pop(stack):
if is_empty(stack):
print('underflow')
else:
item = stack.pop()
if len(stack) == 0:
top = None
else:
top = len(stack) - 1
print(item, 'is deleted')
def peek(stack):
if is_empty(stack):
print('stack empty')
else:
top = len(stack) - 1
print(stack[top])
def display(stack):
if is_empty(stack):
print('stack empty')
else:
top = len(stack) - 1
for a in range(top, -1, -1):
print(stack[a])
while True:
menu = int(input('1.push\n 2.pop\n 3.peek\n 4.display'))
if menu == 1:
push(stack)
print('\n')
elif menu == 2:
pop(stack)
elif menu == 3:
peek(stack)
elif menu == 4:
display(stack)
else:
break |
#coding: latin1
#< full
class CYKParser:
def __init__(self, P: "IList<(str, str) or (str)>", S: "str",
createMap: "IList<(str, str), int -> IMap<int, int, str>"=lambda P, n: dict()):
self.P, self.S = P, S
self.createMap = createMap
def accepts(self, x: "str") -> "bool":
n = len(x)
Pi = self.createMap(self.P, n)
for i in range(n):
for A in self.P:
Pi[i,i,A] = any(right[0] == x[i] for right in self.P[A] if len(right) == 1)
for l in range(1, n):
for i in range(0, n-l):
for A in self.P:
Pi[i,i+l,A] = any(Pi[i,k,right[0]] and Pi[k+1,i+l,right[1]]
for k in range(i,i+l) for right in self.P[A] if len(right) == 2)
return Pi[0,n-1,self.S]
#> full
#< tree
def parse_tree(self, x: "str") -> "ParseTree":
n = len(x)
Pi = self.createMap(self.P, n)
back = self.createMap(self.P, n)
for i in range(len(x)):
for A in self.P:
Pi[i,i,A], back[i,i,A] = False, None
for right in self.P[A]:
if len(right) == 1 and right[0] == x[i]:
Pi[i,i,A], back[i,i,A] = True, x[i]
break
for l in range(1, n):
for i in range(0, n-l):
for A in self.P:
Pi[i,i+l,A], back[i,i+l,A] = False, None
for right in self.P[A]:
if len(right) == 2:
for k in range(i,i+l):
if Pi[i,k,right[0]] and Pi[k+1,i+l,right[1]]:
Pi[i,i+l,A], back[i,i+l,A] = True, (k, right[0], right[1])
break
def backtrace(i, k: "int", A: "str") -> "ParseTree":
if len(back[i,k,A]) == 1: return back[i,k,A]
j, B_prime, C_prime = back[i,k,A]
return [A, backtrace(i,j,B_prime), backtrace(j+1,k,C_prime)]
return backtrace(0, n-1, self.S)
#> tree | class Cykparser:
def __init__(self, P: 'IList<(str, str) or (str)>', S: 'str', createMap: 'IList<(str, str), int -> IMap<int, int, str>'=lambda P, n: dict()):
(self.P, self.S) = (P, S)
self.createMap = createMap
def accepts(self, x: 'str') -> 'bool':
n = len(x)
pi = self.createMap(self.P, n)
for i in range(n):
for a in self.P:
Pi[i, i, A] = any((right[0] == x[i] for right in self.P[A] if len(right) == 1))
for l in range(1, n):
for i in range(0, n - l):
for a in self.P:
Pi[i, i + l, A] = any((Pi[i, k, right[0]] and Pi[k + 1, i + l, right[1]] for k in range(i, i + l) for right in self.P[A] if len(right) == 2))
return Pi[0, n - 1, self.S]
def parse_tree(self, x: 'str') -> 'ParseTree':
n = len(x)
pi = self.createMap(self.P, n)
back = self.createMap(self.P, n)
for i in range(len(x)):
for a in self.P:
(Pi[i, i, A], back[i, i, A]) = (False, None)
for right in self.P[A]:
if len(right) == 1 and right[0] == x[i]:
(Pi[i, i, A], back[i, i, A]) = (True, x[i])
break
for l in range(1, n):
for i in range(0, n - l):
for a in self.P:
(Pi[i, i + l, A], back[i, i + l, A]) = (False, None)
for right in self.P[A]:
if len(right) == 2:
for k in range(i, i + l):
if Pi[i, k, right[0]] and Pi[k + 1, i + l, right[1]]:
(Pi[i, i + l, A], back[i, i + l, A]) = (True, (k, right[0], right[1]))
break
def backtrace(i, k: 'int', A: 'str') -> 'ParseTree':
if len(back[i, k, A]) == 1:
return back[i, k, A]
(j, b_prime, c_prime) = back[i, k, A]
return [A, backtrace(i, j, B_prime), backtrace(j + 1, k, C_prime)]
return backtrace(0, n - 1, self.S) |
class Solution:
def moveZeroes(self, nums: List[int]) -> None:
z = 0
for i in range(1, len(nums)):
if nums[i] != 0 and nums[z] == 0:
nums[i], nums[z] = nums[z], nums[i]
if nums[z] != 0:
z += 1
| class Solution:
def move_zeroes(self, nums: List[int]) -> None:
z = 0
for i in range(1, len(nums)):
if nums[i] != 0 and nums[z] == 0:
(nums[i], nums[z]) = (nums[z], nums[i])
if nums[z] != 0:
z += 1 |
# problem 18
# Project Euler
__author__ = 'Libao Jin'
__date__ = 'July 17, 2015'
string = '''
75
95 64
17 47 82
18 35 87 10
20 04 82 47 65
19 01 23 75 03 34
88 02 77 73 07 63 67
99 65 04 28 06 16 70 92
41 41 26 56 83 40 80 70 33
41 48 72 33 47 32 37 16 94 29
53 71 44 65 25 43 91 52 97 51 14
70 11 33 28 77 73 17 78 39 68 17 57
91 71 52 38 17 14 91 43 58 50 27 29 48
63 66 04 68 89 53 67 30 73 16 69 87 40 31
04 62 98 27 23 09 70 98 73 93 38 53 60 04 23
'''
def string2triangle(string):
string = string[1:-1]
string = string.split('\n')
triangle = []
for s in string:
substrings = s.split(' ')
integers = []
for ss in substrings:
integers.append(int(ss))
triangle.append(integers)
return triangle
def size(triangle):
numberOfRows = len(triangle)
numberOfColsMax = len(triangle[-1])
return (numberOfRows, numberOfColsMax)
def accumulateSum(numberList):
newNumberList = []
for i,e in enumerate(numberList):
newNumberList.append(sum(numberList[0:i]))
return newNumberList
def recursiveGen(n):
directions = [0,1]
if n == 1:
return [[0]]
#if n == 2:
#routes = []
#newRoutes = []
#for i in range(len(directions)):
#route = routes.copy()
#newRoutes.append(route)
#for i,e in enumerate(newRoutes):
#e.append(directions[i])
#return newRoutes
else:
routes = recursiveGen(n-1)
newRoutes = []
for i in routes:
for j in directions:
route = i.copy()
route.append(j)
newRoutes.append(route)
return newRoutes
def bruteForce(triangle):
sizeTriangle = size(triangle)
routes = recursiveGen(sizeTriangle[0])
for i,e in enumerate(routes):
routes[i] = accumulateSum(e)
Sum = []
maxIndex = -1
for i in routes:
tmp = 0
for j in range(sizeTriangle[0]):
tmp += triangle[j][i[j]]
Sum.append(tmp)
maxSum = max(Sum)
for i,e in enumerate(Sum):
if e == maxSum:
maxIndex = i
bestRoute = routes[maxIndex]
bestNumbers = []
for i in range(sizeTriangle[0]):
bestNumbers.append(triangle[i][bestRoute[i]])
return (maxSum, bestRoute, bestNumbers)
def solution():
triangle = string2triangle(string)
print(bruteForce(triangle))
def test():
triangle = string2triangle(string)
print(triangle)
sizeTriangle = size(triangle)
print(sizeTriangle)
allRoutes = recursiveGen(7)
print(allRoutes)
solution()
| __author__ = 'Libao Jin'
__date__ = 'July 17, 2015'
string = '\n75\n95 64\n17 47 82\n18 35 87 10\n20 04 82 47 65\n19 01 23 75 03 34\n88 02 77 73 07 63 67\n99 65 04 28 06 16 70 92\n41 41 26 56 83 40 80 70 33\n41 48 72 33 47 32 37 16 94 29\n53 71 44 65 25 43 91 52 97 51 14\n70 11 33 28 77 73 17 78 39 68 17 57\n91 71 52 38 17 14 91 43 58 50 27 29 48\n63 66 04 68 89 53 67 30 73 16 69 87 40 31\n04 62 98 27 23 09 70 98 73 93 38 53 60 04 23\n'
def string2triangle(string):
string = string[1:-1]
string = string.split('\n')
triangle = []
for s in string:
substrings = s.split(' ')
integers = []
for ss in substrings:
integers.append(int(ss))
triangle.append(integers)
return triangle
def size(triangle):
number_of_rows = len(triangle)
number_of_cols_max = len(triangle[-1])
return (numberOfRows, numberOfColsMax)
def accumulate_sum(numberList):
new_number_list = []
for (i, e) in enumerate(numberList):
newNumberList.append(sum(numberList[0:i]))
return newNumberList
def recursive_gen(n):
directions = [0, 1]
if n == 1:
return [[0]]
else:
routes = recursive_gen(n - 1)
new_routes = []
for i in routes:
for j in directions:
route = i.copy()
route.append(j)
newRoutes.append(route)
return newRoutes
def brute_force(triangle):
size_triangle = size(triangle)
routes = recursive_gen(sizeTriangle[0])
for (i, e) in enumerate(routes):
routes[i] = accumulate_sum(e)
sum = []
max_index = -1
for i in routes:
tmp = 0
for j in range(sizeTriangle[0]):
tmp += triangle[j][i[j]]
Sum.append(tmp)
max_sum = max(Sum)
for (i, e) in enumerate(Sum):
if e == maxSum:
max_index = i
best_route = routes[maxIndex]
best_numbers = []
for i in range(sizeTriangle[0]):
bestNumbers.append(triangle[i][bestRoute[i]])
return (maxSum, bestRoute, bestNumbers)
def solution():
triangle = string2triangle(string)
print(brute_force(triangle))
def test():
triangle = string2triangle(string)
print(triangle)
size_triangle = size(triangle)
print(sizeTriangle)
all_routes = recursive_gen(7)
print(allRoutes)
solution() |
# File: T (Python 2.4)
SKY_OFF = 0
SKY_LAST = 1
SKY_DAWN = 2
SKY_DAY = 3
SKY_DUSK = 4
SKY_NIGHT = 5
SKY_STARS = 6
SKY_HALLOWEEN = 7
SKY_SWAMP = 8
SKY_INVASION = 9
SKY_OVERCAST = 10
SKY_OVERCASTNIGHT = 11
SKY_CODES = {
SKY_OFF: 'SKY_OFF',
SKY_LAST: 'SKY_LAST',
SKY_DAWN: 'SKY_DAWN',
SKY_DAY: 'SKY_DAY',
SKY_DUSK: 'SKY_DUSK',
SKY_NIGHT: 'SKY_NIGHT',
SKY_STARS: 'SKY_STARS',
SKY_HALLOWEEN: 'SKY_HALLOWEEN',
SKY_SWAMP: 'SKY_SWAMP',
SKY_OVERCAST: 'SKY_OVERCAST',
SKY_OVERCASTNIGHT: 'SKY_OVERCASTNIGHT',
SKY_INVASION: 'SKY_INVASION' }
TOD_ALL_CYCLE = 0
TOD_REGULAR_CYCLE = 1
TOD_HALLOWEEN_CYCLE = 2
TOD_JOLLYCURSE_CYCLE = 3
TOD_JOLLYINVASION_CYCLE = 4
TOD_NORMAL2JOLLY_CYCLE = 5
TOD_JOLLY2NIGHT_CYCLE = 6
TOD_VALENTINE_CYCLE = 7
ENV_DEFAULT = 0
ENV_OFF = 1
ENV_OPENSKY = 2
ENV_FOREST = 3
ENV_SWAMP = 4
ENV_CAVE = 5
ENV_LAVACAVE = 6
ENV_INTERIOR = 7
ENV_AVATARCHOOSER = 8
ENV_SAILING = 9
ENV_CANNONGAME = 10
ENV_CLOUDY = 11
ENV_INVASION = 12
ENV_HALLOWEEN = 13
ENV_VALENTINES = 14
ENV_CURSED_NIGHT = 15
ENV_EVER_NIGHT = 16
ENV_NO_HOLIDAY = 17
ENV_SAINT_PATRICKS = 18
ENV_DATAFILE = 255
FOG_OFF = 0
FOG_EXP = 1
FOG_LINEAR = 2
FOG_CODES = {
FOG_OFF: 'FOG_OFF',
FOG_EXP: 'FOG_EXP',
FOG_LINEAR: 'FOG_LINEAR' }
| sky_off = 0
sky_last = 1
sky_dawn = 2
sky_day = 3
sky_dusk = 4
sky_night = 5
sky_stars = 6
sky_halloween = 7
sky_swamp = 8
sky_invasion = 9
sky_overcast = 10
sky_overcastnight = 11
sky_codes = {SKY_OFF: 'SKY_OFF', SKY_LAST: 'SKY_LAST', SKY_DAWN: 'SKY_DAWN', SKY_DAY: 'SKY_DAY', SKY_DUSK: 'SKY_DUSK', SKY_NIGHT: 'SKY_NIGHT', SKY_STARS: 'SKY_STARS', SKY_HALLOWEEN: 'SKY_HALLOWEEN', SKY_SWAMP: 'SKY_SWAMP', SKY_OVERCAST: 'SKY_OVERCAST', SKY_OVERCASTNIGHT: 'SKY_OVERCASTNIGHT', SKY_INVASION: 'SKY_INVASION'}
tod_all_cycle = 0
tod_regular_cycle = 1
tod_halloween_cycle = 2
tod_jollycurse_cycle = 3
tod_jollyinvasion_cycle = 4
tod_normal2_jolly_cycle = 5
tod_jolly2_night_cycle = 6
tod_valentine_cycle = 7
env_default = 0
env_off = 1
env_opensky = 2
env_forest = 3
env_swamp = 4
env_cave = 5
env_lavacave = 6
env_interior = 7
env_avatarchooser = 8
env_sailing = 9
env_cannongame = 10
env_cloudy = 11
env_invasion = 12
env_halloween = 13
env_valentines = 14
env_cursed_night = 15
env_ever_night = 16
env_no_holiday = 17
env_saint_patricks = 18
env_datafile = 255
fog_off = 0
fog_exp = 1
fog_linear = 2
fog_codes = {FOG_OFF: 'FOG_OFF', FOG_EXP: 'FOG_EXP', FOG_LINEAR: 'FOG_LINEAR'} |
def main():
with open('triangles.txt') as f:
lines = f.read().splitlines()
counts = 0
for line in lines:
points = line.split(',')
points = [int(point) for point in points]
A = points[:2]
B = points[2:4]
C = points[4:]
P = (0, 0)
if area(A, B, C) == area(P, B, C) + area(P, A, C) + area(P, A, B):
counts += 1
print(counts)
def area(A, B, C):
return abs((A[0]-C[0]) * (B[1]-A[1]) - (A[0]-B[0]) * (C[1]-A[1]))
if __name__ == '__main__':
main() | def main():
with open('triangles.txt') as f:
lines = f.read().splitlines()
counts = 0
for line in lines:
points = line.split(',')
points = [int(point) for point in points]
a = points[:2]
b = points[2:4]
c = points[4:]
p = (0, 0)
if area(A, B, C) == area(P, B, C) + area(P, A, C) + area(P, A, B):
counts += 1
print(counts)
def area(A, B, C):
return abs((A[0] - C[0]) * (B[1] - A[1]) - (A[0] - B[0]) * (C[1] - A[1]))
if __name__ == '__main__':
main() |
# SinglyLinkedListNode:
# int data
# SinglyLinkedListNode next
#
#
def findMergeNode(head1, head2):
# the data on the linked list nodes might not be unique
# we can't rely on just checking the data in each node
# as with any node-based data structure, each node is a unique
# region in memory
# the actual data on the merge point node is what we're going to return
# why a set? because sets are good at noting what we've seen already
# sets are good at holding unique things
# the linked lists kept track of the order of elements for us, so that
# the set didn't have to
# sets on their own do not keep track of the order in which elements
# are inserted
# Idea 1: if we're opting to not mutate list nodes
# Runtime: O(n + m) where n and m are the lengths of the two lists
# Space: O(n)
# we can use a set to keep track of nodes we've visited
# traverse one of the lists, adding each node to a visited set
# traverse the other list, checking to see if each node is in the set
# return the value of the first node in the second list that we find
# in the set
curr = head1
s = set()
while curr:
s.add(curr)
curr = curr.next
curr = head2
while curr:
if curr in s:
return curr.data
curr = curr.next
# Idea 2: If we allow mutation of the input
# Runtime: O(n + m) where n and m are the lengths of the two lists
# Space: O(1)
# traverse one of the lists, adding an attribute on each node to
# signify that we've seen this node before
# traverse the other list until we find the first node that has
# the attribute
# curr = head1
# while curr:
# curr.visited = True
# curr = curr.next
# curr = head2
# while curr:
# if hasattr(curr, 'visited'):
# return curr.data
# curr = curr.next | def find_merge_node(head1, head2):
curr = head1
s = set()
while curr:
s.add(curr)
curr = curr.next
curr = head2
while curr:
if curr in s:
return curr.data
curr = curr.next |
layers = {
"title": "DEA Water Observations",
"abstract": "Digital Earth Australia (DEA) Water Observations from Space (WOfS)",
"layers": [
{
"include": "ows_refactored.inland_water.wofs.individual.ows_c3_wo_cfg.layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.individual.ows_s2_wo_cfg.layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.multiyear.ows_wofs_summary_cfg.c3_wofs_layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.annual.ows_wofs_annual_cfg.c3_statistics_layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.seasonal.ows_wofs_apr_oct_cfg.c3_statistics_layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.seasonal.ows_wofs_nov_mar_cfg.c3_statistics_layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.c2.ows_wofs_alber_cfg.layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.c2.ows_wofs_annual_cfg.statistics_layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.c2.ows_wofs_annual_cfg.clear_layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.c2.ows_wofs_annual_cfg.wet_layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.c2.ows_wofs_summary_cfg.statistics_layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.c2.ows_wofs_summary_cfg.clear_layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.c2.ows_wofs_summary_cfg.wet_layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.c2.ows_wofs_summary_cfg.freq_layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.c2.ows_wofs_summary_cfg.filtered_layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.c2.ows_wofs_apr_oct_cfg.statistics_layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.c2.ows_wofs_apr_oct_cfg.clear_layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.c2.ows_wofs_apr_oct_cfg.wet_layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.c2.ows_wofs_nov_mar_cfg.statistics_layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.c2.ows_wofs_nov_mar_cfg.clear_layer",
"type": "python",
},
{
"include": "ows_refactored.inland_water.wofs.c2.ows_wofs_nov_mar_cfg.wet_layer",
"type": "python",
}
],
}
| layers = {'title': 'DEA Water Observations', 'abstract': 'Digital Earth Australia (DEA) Water Observations from Space (WOfS)', 'layers': [{'include': 'ows_refactored.inland_water.wofs.individual.ows_c3_wo_cfg.layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.individual.ows_s2_wo_cfg.layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.multiyear.ows_wofs_summary_cfg.c3_wofs_layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.annual.ows_wofs_annual_cfg.c3_statistics_layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.seasonal.ows_wofs_apr_oct_cfg.c3_statistics_layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.seasonal.ows_wofs_nov_mar_cfg.c3_statistics_layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.c2.ows_wofs_alber_cfg.layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.c2.ows_wofs_annual_cfg.statistics_layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.c2.ows_wofs_annual_cfg.clear_layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.c2.ows_wofs_annual_cfg.wet_layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.c2.ows_wofs_summary_cfg.statistics_layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.c2.ows_wofs_summary_cfg.clear_layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.c2.ows_wofs_summary_cfg.wet_layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.c2.ows_wofs_summary_cfg.freq_layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.c2.ows_wofs_summary_cfg.filtered_layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.c2.ows_wofs_apr_oct_cfg.statistics_layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.c2.ows_wofs_apr_oct_cfg.clear_layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.c2.ows_wofs_apr_oct_cfg.wet_layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.c2.ows_wofs_nov_mar_cfg.statistics_layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.c2.ows_wofs_nov_mar_cfg.clear_layer', 'type': 'python'}, {'include': 'ows_refactored.inland_water.wofs.c2.ows_wofs_nov_mar_cfg.wet_layer', 'type': 'python'}]} |
class FunnyRect():
def setCenter(self, x,y):
self.cx = x
self.cy = y
def setSize(self, a):
self.a = a
def render(self):
rect(self.cx, self.cy, self.a, self.a)
def colors(self,b):
fill(b)
funnyRect = FunnyRect()
funnyRect1 = FunnyRect()
counter = 0
def setup():
size(600,600)
smooth()
noStroke()
rectMode(CENTER)
funnyRect.setSize(50)
funnyRect1.setSize(50)
def draw():
global counter
background(255)
objX = mouseX +sin(counter)*150
objY = mouseY +cos(counter)*150
funnyRect.colors(50)
funnyRect.setCenter(mouseX, mouseY)
funnyRect.render()
funnyRect1.colors(180)
funnyRect1.setCenter(objX, objY)
funnyRect1.render()
counter +=0.05
def mouseClicked():
currentSize = funnyRect.a
currentSize += 50
funnyRect1.setSize(currentSize)
| class Funnyrect:
def set_center(self, x, y):
self.cx = x
self.cy = y
def set_size(self, a):
self.a = a
def render(self):
rect(self.cx, self.cy, self.a, self.a)
def colors(self, b):
fill(b)
funny_rect = funny_rect()
funny_rect1 = funny_rect()
counter = 0
def setup():
size(600, 600)
smooth()
no_stroke()
rect_mode(CENTER)
funnyRect.setSize(50)
funnyRect1.setSize(50)
def draw():
global counter
background(255)
obj_x = mouseX + sin(counter) * 150
obj_y = mouseY + cos(counter) * 150
funnyRect.colors(50)
funnyRect.setCenter(mouseX, mouseY)
funnyRect.render()
funnyRect1.colors(180)
funnyRect1.setCenter(objX, objY)
funnyRect1.render()
counter += 0.05
def mouse_clicked():
current_size = funnyRect.a
current_size += 50
funnyRect1.setSize(currentSize) |
class MyCustomClass:
prop1 = 1
prop2 = "a"
prop3 = {1, 2, 3}
def test_snapshot_custom_class(snapshot):
assert MyCustomClass() == snapshot
class MyCustomReprClass(MyCustomClass):
def __repr__(self):
state = "\n".join(
f" {a}={repr(getattr(self, a))},"
for a in sorted(dir(self))
if not a.startswith("_")
)
return f"{self.__class__.__name__}(\n{state}\n)"
def test_snapshot_custom_repr_class(snapshot):
assert MyCustomReprClass() == snapshot
| class Mycustomclass:
prop1 = 1
prop2 = 'a'
prop3 = {1, 2, 3}
def test_snapshot_custom_class(snapshot):
assert my_custom_class() == snapshot
class Mycustomreprclass(MyCustomClass):
def __repr__(self):
state = '\n'.join((f' {a}={repr(getattr(self, a))},' for a in sorted(dir(self)) if not a.startswith('_')))
return f'{self.__class__.__name__}(\n{state}\n)'
def test_snapshot_custom_repr_class(snapshot):
assert my_custom_repr_class() == snapshot |
ll = []
print(ll) # immutable operation
ll.append(1) # mutable operation
ll.insert(0, -1) # mutable operation
print(ll[0]) # immutable operation
print(ll) # immutable operation
ll.pop() # mutable operation
print(ll) # immutable operation
ll[0] = -111 # mutable operation
print(ll) # immutable operation
tt = (1, 2, 3, 4)
tt2 = 1, 2, 3, 4
print(tt)
print(tt[0])
# tt[2] = -3
tt = (1, 2, 3) # overwrites the value of tt
# single element list/tuple
print([1])
print((1,))
print(())
n = 15
print(list(range(n)))
print(tuple(range(n)))
print(tuple(ll)) # extremely rare case
| ll = []
print(ll)
ll.append(1)
ll.insert(0, -1)
print(ll[0])
print(ll)
ll.pop()
print(ll)
ll[0] = -111
print(ll)
tt = (1, 2, 3, 4)
tt2 = (1, 2, 3, 4)
print(tt)
print(tt[0])
tt = (1, 2, 3)
print([1])
print((1,))
print(())
n = 15
print(list(range(n)))
print(tuple(range(n)))
print(tuple(ll)) |
#
# @lc app=leetcode.cn id=1195 lang=python3
#
# [1195] distribute-candies-to-people
#
None
# @lc code=end | None |
class Lagrange():
def lagrange(self, points, x):
result = {
'error': False,
'errorMessage': None,
'functionOutput': None,
'terms': None,
'polynomial': None,
'resultMessage': None,
'solutionFailed': False
}
n = len(points)
l_values = list()
p_values = list()
res = 0
for i in range(n):
num = 1
den = 1
pn = ''
ln = '('
for j in range(n):
if j != i:
num *= (x - points[j][0])
ln += f'({x}-{points[j][0]})'
ln += ') / ('
for j in range(n):
if j != i:
den *= (points[i][0] - points[j][0])
ln += f'({points[i][0]}-{points[j][0]})'
ln += ')'
if den == 0:
raise ZeroDivisionError
Lx = num / den
ln += f' = {Lx}' if Lx != -0 else ' = 0.0'
pn += f'({Lx})({points[i][1]})' if Lx != -0 else f'(0.0)({points[i][1]})'
pn += ' +' if i < n - 1 else ''
LxFx = Lx * points[i][1]
res += LxFx
l_values.append(ln)
p_values.append(pn)
result['terms'] = l_values
result['polynomial'] = p_values
result['functionOutput'] = res
return result
| class Lagrange:
def lagrange(self, points, x):
result = {'error': False, 'errorMessage': None, 'functionOutput': None, 'terms': None, 'polynomial': None, 'resultMessage': None, 'solutionFailed': False}
n = len(points)
l_values = list()
p_values = list()
res = 0
for i in range(n):
num = 1
den = 1
pn = ''
ln = '('
for j in range(n):
if j != i:
num *= x - points[j][0]
ln += f'({x}-{points[j][0]})'
ln += ') / ('
for j in range(n):
if j != i:
den *= points[i][0] - points[j][0]
ln += f'({points[i][0]}-{points[j][0]})'
ln += ')'
if den == 0:
raise ZeroDivisionError
lx = num / den
ln += f' = {Lx}' if Lx != -0 else ' = 0.0'
pn += f'({Lx})({points[i][1]})' if Lx != -0 else f'(0.0)({points[i][1]})'
pn += ' +' if i < n - 1 else ''
lx_fx = Lx * points[i][1]
res += LxFx
l_values.append(ln)
p_values.append(pn)
result['terms'] = l_values
result['polynomial'] = p_values
result['functionOutput'] = res
return result |
device_str = " r3-L-n7, cisco, catalyst 2960, ios , extra stupid stuff " #string
# NON LIST COMPREHENSION WAY
device = list() #we are crating a empty list [0,1,2,3,4]
for item in device_str.split(","): #item 0, ittem 1, item 2 etc...
device.append(item.strip()) #remove begining and ending spaces for every item in list
print("\ndevice using for loop:\n\t\t", device)
# LIST COMPREHENSION
device = [item.strip() for item in device_str.split(",")] #by seeing [] list
print("\ndevice using list comprehension:\n\t\t", device)
# SIMPLER LIST COMPREHENSION
device_info_list = device_str.split(",")
device = [item.strip() for item in device_info_list]
print("\ndevice using simpler list comprehension:\n\t\t", device)
# LIST COMPREHENSION WITH CONDITIONAL
device = [item.strip() for item in device_str.split(",") if "stupid" not in item]
# Logical operator in Python that will return True if the expression is False
print("\ndevice using list comprehension with conditional:\n\t\t", device)
device_info = [ #list[] inside
("name", "r3-L-n7"), #tuple and inside are key values :
("vendor", "cisco"),
("model", "catalyst 2960"),
("os", "ios"),
]
# DICT COMPREHENSION FROM LIST OF TUPLES
device = {item[0]: item[1] for item in device_info} #{} rep dic
print("\ndevice using dict comprehension:\n\t\t", device)
print("device nicely formatted:")
for key, value in device.items():
print(f"{key:>16s} : {value}")
device_info_str = "name:r3-L-n7, vendor:cisco, model:catalyst 2960, os:ios, version:12.1(T)"
# LIST THEN DICT COMPREHENSION FROM STRING
device_info_pairs = [kv_pair.split(":") for kv_pair in device_info_str.split(",")] #list
#maybe like split(",") will split each item into pair like "name:r3-L-n7","vendor:cisco"etc
#now again split that particular pair with : as 'name':'r3-L-n7' etc
device = {item[0].strip(): item[1].strip() for item in device_info_pairs}
#this removes the spaces for each of the item
print("\ndevice using list and dict comprehension:\n\t\t", device)
print("device nicely formatted:")
for key, value in device.items():
print(f"{key:>16s} : {value}")
# DICT COMPREHENSION FROM STRING
device = {item.split(":")[0].strip(): item.split(":")[1].strip() for item in device_info_str.split(",")}
#{} dict this is some more advanced
print("\ndevice using dict comprehension:\n\t\t", device)
print("device nicely formatted:")
for key, value in device.items():
print(f"{key:>16s} : {value}")
| device_str = ' r3-L-n7, cisco, catalyst 2960, ios , extra stupid stuff '
device = list()
for item in device_str.split(','):
device.append(item.strip())
print('\ndevice using for loop:\n\t\t', device)
device = [item.strip() for item in device_str.split(',')]
print('\ndevice using list comprehension:\n\t\t', device)
device_info_list = device_str.split(',')
device = [item.strip() for item in device_info_list]
print('\ndevice using simpler list comprehension:\n\t\t', device)
device = [item.strip() for item in device_str.split(',') if 'stupid' not in item]
print('\ndevice using list comprehension with conditional:\n\t\t', device)
device_info = [('name', 'r3-L-n7'), ('vendor', 'cisco'), ('model', 'catalyst 2960'), ('os', 'ios')]
device = {item[0]: item[1] for item in device_info}
print('\ndevice using dict comprehension:\n\t\t', device)
print('device nicely formatted:')
for (key, value) in device.items():
print(f'{key:>16s} : {value}')
device_info_str = 'name:r3-L-n7, vendor:cisco, model:catalyst 2960, os:ios, version:12.1(T)'
device_info_pairs = [kv_pair.split(':') for kv_pair in device_info_str.split(',')]
device = {item[0].strip(): item[1].strip() for item in device_info_pairs}
print('\ndevice using list and dict comprehension:\n\t\t', device)
print('device nicely formatted:')
for (key, value) in device.items():
print(f'{key:>16s} : {value}')
device = {item.split(':')[0].strip(): item.split(':')[1].strip() for item in device_info_str.split(',')}
print('\ndevice using dict comprehension:\n\t\t', device)
print('device nicely formatted:')
for (key, value) in device.items():
print(f'{key:>16s} : {value}') |
def process_scope(dom, json_dict):
scope_sections = dom.xpath("scope")
if len(scope_sections) > 0:
json_dict["scope"] = []
for book in scope_sections[0].xpath("bookScope"):
if book.text:
json_dict["scope"].append(book.text)
| def process_scope(dom, json_dict):
scope_sections = dom.xpath('scope')
if len(scope_sections) > 0:
json_dict['scope'] = []
for book in scope_sections[0].xpath('bookScope'):
if book.text:
json_dict['scope'].append(book.text) |
#sets 2 variables a and b as age one and age 2. One is enterd it will swap the ages to b,a
def swap(age1, age2):
a = age1
b = age2
if a <= b:
return a, b
else:
return b, a
def swapfunction():
input1 = input("first age")
input2 = input("second age")
a, b = swap(input1, input2)
print(a, b)
if __name__ == "__main__":
swapfunction()
| def swap(age1, age2):
a = age1
b = age2
if a <= b:
return (a, b)
else:
return (b, a)
def swapfunction():
input1 = input('first age')
input2 = input('second age')
(a, b) = swap(input1, input2)
print(a, b)
if __name__ == '__main__':
swapfunction() |
BASE_URLS = [
"www.journals.elsevier.com/aasri-procedia/",
"www.elsevier.com/journals/abstract-bulletin-of-paper-science-and-technology/1523-388x",
"www.journals.elsevier.com/academic-pediatrics/",
"www.journals.elsevier.com/academic-radiology/",
"www.journals.elsevier.com/accident-analysis-and-prevention/",
"www.elsevier.com/journals/accident-and-emergency-nursing/0965-2302",
"www.journals.elsevier.com/accounting-forum/",
"www.journals.elsevier.com/accounting-organizations-and-society/",
"www.elsevier.com/journals/acta-agronomica-sinica/1875-2780",
"www.elsevier.com/journals/acta-anaesthesiologica-taiwanica/1875-4597",
"www.journals.elsevier.com/acta-astronautica/",
"www.elsevier.com/journals/acta-automatica-sinica/1874-1029",
"www.journals.elsevier.com/acta-biomaterialia/",
"www.elsevier.com/journals/acta-ecologica-sinica/1872-2032",
"www.elsevier.com/journals/acta-genetica-sinica/0379-4172",
"www.elsevier.com/journals/acta-haematologica-polonica/0001-5814",
"www.elsevier.com/journals/acta-histochemica/0065-1281",
"www.journals.elsevier.com/acta-materialia/",
"www.elsevier.com/journals/acta-mathematica-scientia/0252-9602",
"www.elsevier.com/journals/acta-mechanica-solida-sinica/0894-9166",
"www.elsevier.com/journals/acta-metallurgica-sinica-english-letters/1006-7191",
"www.journals.elsevier.com/acta-oecologica/",
"www.elsevier.com/journals/acta-otorrinolaringologica-english-edition/2173-5735",
"www.elsevier.com/journals/acta-otorrinolaringologica-espanola/1988-3013",
"www.journals.elsevier.com/acta-pharmaceutica-sinica-b/",
"www.elsevier.com/journals/acta-physico-chimica-sinica/1872-1508",
"www.journals.elsevier.com/acta-psychologica/",
"www.journals.elsevier.com/acta-tropica/",
"www.elsevier.com/journals/actas-dermo-sifiliograficas/0001-7310",
"www.elsevier.com/journals/actas-dermo-sifiliograficas-english-edition/1578-2190",
"www.elsevier.com/journals/actas-urologicas-espanolas/0210-4806",
"www.elsevier.com/journals/actas-urologicas-espanolas-english-edition/2173-5786",
"www.elsevier.com/journals/actividad-dietetica/1138-0322",
"www.elsevier.com/journals/actualites-pharmaceutiques/0515-3700",
"www.elsevier.com/journals/actualites-pharmaceutiques-hospitalieres/1769-7344",
"www.elsevier.com/journals/acupuncture-and-related-therapies/2211-7660",
"www.elsevier.com/journals/acute-pain/1366-0071",
"www.journals.elsevier.com/ad-hoc-networks/",
"www.journals.elsevier.com/addictive-behaviors/",
"www.elsevier.com/journals/addictive-behaviors-with-eating-behaviors-combined-subscription/fs00-2274",
"www.elsevier.com/journals/additives-for-polymers/0306-3747",
"www.journals.elsevier.com/advanced-drug-delivery-reviews/",
"www.journals.elsevier.com/advanced-engineering-informatics/",
"www.elsevier.com/journals/advanced-engineering-informatics-with-engineering-applications-of-artificial-intelligence-combined-subscription/fs00-1026",
"www.journals.elsevier.com/advanced-powder-technology/",
"www.journals.elsevier.com/advances-in-accounting/",
"www.elsevier.com/journals/advances-in-anesthesia/0737-6146",
"www.journals.elsevier.com/advances-in-applied-mathematics/",
"www.journals.elsevier.com/advances-in-biological-regulation/",
"www.journals.elsevier.com/advances-in-chronic-kidney-disease/",
"www.journals.elsevier.com/advances-in-colloid-and-interface-science/",
"www.elsevier.com/journals/advances-in-colloid-and-interface-science-with-current-opinion-in-colloid-and-interface-science-combined-subscription/fs00-5465",
"www.journals.elsevier.com/advances-in-engineering-software/",
"www.journals.elsevier.com/advances-in-enzyme-regulation/",
"www.elsevier.com/journals/advances-in-integrative-medicine/2212-9626",
"www.journals.elsevier.com/advances-in-life-course-research/",
"www.journals.elsevier.com/advances-in-mathematics/",
"www.elsevier.com/journals/advances-in-pediatrics/0065-3101",
"www.journals.elsevier.com/advances-in-small-animal-medicine-and-surgery/",
"www.journals.elsevier.com/advances-in-space-research/",
"www.elsevier.com/journals/advances-in-surgery/0065-3411",
"www.elsevier.com/journals/advances-in-vascular-surgery/1069-7292",
"www.journals.elsevier.com/advances-in-water-resources/",
"www.elsevier.com/journals/adverse-reactions-titles-section-38-embase/0001-8848",
"www.elsevier.com/journals/aeu-international-journal-of-electronics-and-communications/1434-8411",
"www.journals.elsevier.com/aeolian-research/",
"www.journals.elsevier.com/aerospace-science-and-technology/",
"www.elsevier.com/journals/aesthetische-zahnmedizin/1434-6087",
"www.elsevier.com/journals/african-journal-of-emergency-medicine/2211-419x",
"www.elsevier.com/journals/african-journal-of-urology/1110-5704",
"www.journals.elsevier.com/ageing-research-reviews/",
"www.journals.elsevier.com/aggression-and-violent-behavior/",
"www.journals.elsevier.com/agricultural-and-forest-meteorology/",
"www.elsevier.com/journals/agricultural-sciences-in-china/1671-2927",
"www.journals.elsevier.com/agricultural-systems/",
"www.journals.elsevier.com/agricultural-water-management/",
"www.journals.elsevier.com/agriculture-and-agricultural-science-procedia/",
"www.journals.elsevier.com/agriculture-ecosystems-and-environment/",
"www.elsevier.com/journals/agriculture-ecosystems-and-environment-with-applied-soil-ecology-combined-subscription/fs00-0501",
"www.journals.elsevier.com/ain-shams-engineering-journal/",
"www.journals.elsevier.com/air-medical-journal/",
"www.journals.elsevier.com/ajic-american-journal-of-infection-control/",
"www.journals.elsevier.com/alcohol/",
"www.journals.elsevier.com/alexandria-engineering-journal/",
"www.elsevier.com/journals/alexandria-journal-of-medicine/2090-5068",
"www.journals.elsevier.com/algal-research/",
"www.elsevier.com/journals/all-clinics-online/1876-2751",
"www.elsevier.com/journals/allergologia-et-immunopathologia/0301-0546",
"www.elsevier.com/journals/alpha-omegan/0002-6417",
"www.elsevier.com/journals/alter-european-journal-of-disability-research-journal-europeen-de-recherche-sur-le-handicap/1875-0672",
"www.journals.elsevier.com/alzheimers-and-dementia/",
"www.elsevier.com/journals/ambulatory-surgery/0966-6532",
"www.journals.elsevier.com/american-heart-journal/",
"www.journals.elsevier.com/american-journal-of-emergency-medicine/",
"www.journals.elsevier.com/american-journal-of-kidney-diseases/",
"www.journals.elsevier.com/american-journal-of-obstetrics-and-gynecology/",
"www.journals.elsevier.com/american-journal-of-ophthalmology/",
"www.journals.elsevier.com/american-journal-of-orthodontics-and-dentofacial-orthopedics/",
"www.journals.elsevier.com/american-journal-of-otolaryngology/",
"www.journals.elsevier.com/american-journal-of-preventive-medicine/",
"www.journals.elsevier.com/anaerobe/",
"www.elsevier.com/journals/anaesthesia-and-intensive-care-medicine/1472-0299",
"www.elsevier.com/journals/anales-de-cirugia-vascular/1130-2542",
"www.elsevier.com/journals/anales-de-pediatria/1695-4033",
"www.elsevier.com/journals/anales-de-pediatria-continuada/1696-2818",
"www.elsevier.com/journals/analytic-methods-in-accident-research/2213-6657",
"www.journals.elsevier.com/analytica-chimica-acta/",
"www.elsevier.com/journals/analytica-chimica-acta-with-vibrational-spectroscopy-combined-subscription/fs00-0339",
"www.journals.elsevier.com/analytical-biochemistry-methods-in-the-biological-sciences/",
"www.elsevier.com/journals/anatomy-anthropology-embryology-and-histology-section-1-embase/0014-4053",
"www.elsevier.com/journals/anesthesiology-section-24-embase/0014-4282",
"www.elsevier.com/journals/anesthesiology-clinics/1932-2275",
"www.elsevier.com/journals/anesthesiology-clinics-of-north-america/0889-8537",
"www.elsevier.com/journals/angiologia/0003-3170",
"www.journals.elsevier.com/animal-behaviour/",
"www.journals.elsevier.com/animal-feed-science-and-technology/",
"www.journals.elsevier.com/animal-reproduction-science/",
"www.elsevier.com/journals/annales-dendocrinologie/0003-4266",
"www.elsevier.com/journals/annales-durologie/0003-4401",
"www.elsevier.com/journals/annales-de-cardiologie-et-dangeiologie/0003-3928",
"www.elsevier.com/journals/annales-de-chirurgie/0003-3944",
"www.elsevier.com/journals/annales-de-chirurgie-plastique-esthetique/0294-1260",
"www.elsevier.com/journals/annales-de-chirurgie-vasculaire/0299-2213",
"www.elsevier.com/journals/annales-de-dermatologie-et-de-venereologie/0151-9638",
"www.elsevier.com/journals/annales-de-linstitut-henri-poincare-b-probabilites-et-statistiques/0246-0203",
"www.journals.elsevier.com/annales-de-linstitut-henri-poincare-c-analyse-non-lineaire/",
"www.elsevier.com/journals/annales-de-paleontologie/0753-3969",
"www.elsevier.com/journals/annales-de-pathologie/0242-6498",
"www.elsevier.com/journals/annales-de-readaptation-et-de-medecine-physique/0168-6054",
"www.elsevier.com/journals/annales-francaises-danesthesie-et-de-reanimation/0750-7658",
"www.elsevier.com/journals/annales-francaises-doto-rhino-laryngologie-et-de-pathologie-cervico-faciale/1879-7261",
"www.elsevier.com/journals/annales-medico-psychologiques-revue-psychiatrique/0003-4487",
"www.elsevier.com/journals/annales-pharmaceutiques-francaises/0003-4509",
"www.elsevier.com/journals/annales-scientifiques-de-lecole-normale-superieure/0012-9593",
"www.journals.elsevier.com/annals-of-agricultural-sciences/",
"www.journals.elsevier.com/annals-of-allergy-asthma-and-immunology/",
"www.elsevier.com/journals/annals-of-anatomy/0940-9602",
"www.journals.elsevier.com/annals-of-diagnostic-pathology/",
"www.journals.elsevier.com/annals-of-emergency-medicine/",
"www.journals.elsevier.com/annals-of-epidemiology/",
"www.journals.elsevier.com/annals-of-nuclear-energy/",
"www.elsevier.com/journals/annals-of-physical-and-rehabilitation-medicine/1877-0657",
"www.journals.elsevier.com/annals-of-physics/",
"www.journals.elsevier.com/annals-of-pure-and-applied-logic/",
"www.journals.elsevier.com/annals-of-the-icrp/",
"www.journals.elsevier.com/annals-of-tourism-research/",
"www.journals.elsevier.com/annals-of-vascular-surgery/",
"www.journals.elsevier.com/annual-reviews-in-control/",
"www.journals.elsevier.com/anthropocene/",
"www.elsevier.com/journals/antibiotiques/1294-5501",
"www.journals.elsevier.com/antiviral-research/",
"www.journals.elsevier.com/aorn-journal/",
"www.journals.elsevier.com/apcbee-procedia/",
"www.elsevier.com/journals/apollo-medicine/0976-0016",
"www.journals.elsevier.com/appetite/",
"www.journals.elsevier.com/applied-and-preventive-psychology/",
"www.journals.elsevier.com/applied-acoustics/",
"www.journals.elsevier.com/applied-and-computational-harmonic-analysis/",
"www.journals.elsevier.com/applied-and-translational-genomics/",
"www.journals.elsevier.com/applied-animal-behaviour-science/",
"www.elsevier.com/journals/applied-catalysis-ab-combined-subscription/fs00-0332",
"www.journals.elsevier.com/applied-catalysis-a-general/",
"www.journals.elsevier.com/applied-catalysis-b-environmental/",
"www.journals.elsevier.com/applied-clay-science/",
"www.journals.elsevier.com/applied-computing-and-informatics/",
"www.journals.elsevier.com/applied-energy/",
"www.journals.elsevier.com/applied-ergonomics/",
"www.journals.elsevier.com/applied-geochemistry/",
"www.journals.elsevier.com/applied-geography/",
"www.journals.elsevier.com/applied-mathematical-modelling/",
"www.elsevier.com/journals/applied-mathematical-modelling-with-simulation-modelling-practice-and-theory-combined-subscription/fs00-7004",
"www.journals.elsevier.com/applied-mathematics-and-computation/",
"www.journals.elsevier.com/applied-mathematics-letters/",
"www.journals.elsevier.com/applied-numerical-mathematics/",
"www.journals.elsevier.com/applied-nursing-research/",
"www.journals.elsevier.com/applied-ocean-research/",
"www.journals.elsevier.com/applied-radiation-and-isotopes/",
"www.journals.elsevier.com/applied-soft-computing/",
"www.journals.elsevier.com/applied-soil-ecology/",
"www.journals.elsevier.com/applied-surface-science/",
"www.journals.elsevier.com/applied-thermal-engineering/",
"www.elsevier.com/journals/apunts-medicina-de-lesport/1886-6581",
"www.journals.elsevier.com/aquacultural-engineering/",
"www.journals.elsevier.com/aquaculture/",
"www.journals.elsevier.com/aquatic-botany/",
"www.journals.elsevier.com/aquatic-toxicology/",
"www.elsevier.com/journals/arab-journal-of-gastroenterology/1687-1979",
"www.journals.elsevier.com/arab-journal-of-mathematical-sciences/",
"www.elsevier.com/journals/arab-journal-of-urology/2090-598x",
"www.journals.elsevier.com/arabian-journal-of-chemistry/",
"www.journals.elsevier.com/archaeology-ethnology-and-anthropology-of-eurasia/",
"www.elsevier.com/journals/archives-de-pediatrie/0929-693x",
"www.elsevier.com/journals/archives-des-maladies-du-cur-et-des-vaisseaux-pratique/1261-694x",
"www.elsevier.com/journals/archives-des-maladies-professionnelles-et-de-lenvironnement/1775-8785",
"www.journals.elsevier.com/archives-of-biochemistry-and-biophysics/",
"www.elsevier.com/journals/archives-of-cardiovascular-diseases/1875-2136",
"www.elsevier.com/journals/archives-of-cardiovascular-diseases-supplements/1878-6480",
"www.elsevier.com/journals/archives-of-civil-and-mechanical-engineering/1644-9665",
"www.elsevier.com/journals/archives-of-clinical-neuropsychology/0887-6177",
"www.journals.elsevier.com/archives-of-gerontology-and-geriatrics/",
"www.journals.elsevier.com/archives-of-medical-research/",
"www.journals.elsevier.com/archives-of-oral-biology/",
"www.journals.elsevier.com/archives-of-physical-medicine-and-rehabilitation/",
"www.journals.elsevier.com/archives-of-psychiatric-nursing/",
"www.elsevier.com/journals/archivos-de-bronconeumologia/0300-2896",
"www.elsevier.com/journals/archivos-de-la-sociedad-espanola-de-oftalmologia/0365-6691",
"www.elsevier.com/journals/archivos-de-la-sociedad-espanola-de-oftalmologia-english-edition/2173-5794",
"www.journals.elsevier.com/artery-research/",
"www.elsevier.com/journals/arthritis-and-rheumatism-section-31-embase/0014-4355",
"www.journals.elsevier.com/arthropod-structure-and-development/",
"www.elsevier.com/journals/arthropod-structure-and-development-with-insect-biochemistry-and-molecular-biology-and-journal-of-insect-physiology-combined-subscription/fs00-0394",
"www.journals.elsevier.com/arthroscopy-techniques/",
"www.journals.elsevier.com/arthroscopy-the-journal-of-arthroscopy-and-related-surgery/",
"www.journals.elsevier.com/artificial-intelligence/",
"www.journals.elsevier.com/artificial-intelligence-in-medicine/",
"www.elsevier.com/journals/asian-journal-of-oral-and-maxillofacial-surgery/0915-6992",
"www.journals.elsevier.com/asian-journal-of-psychiatry/",
"www.elsevier.com/journals/asian-journal-of-surgery/1015-9584",
"www.elsevier.com/journals/asian-nursing-research/1976-1317",
"www.elsevier.com/journals/asian-pacific-journal-of-reproduction/2305-0500",
"www.elsevier.com/journals/asian-pacific-journal-of-tropical-biomedicine/2221-1691",
"www.elsevier.com/journals/asian-pacific-journal-of-tropical-disease/2222-1808",
"www.elsevier.com/journals/asian-pacific-journal-of-tropical-medicine/1995-7645",
"www.journals.elsevier.com/assessing-writing/",
"www.elsevier.com/journals/asthma-magazine/1088-0712",
"www.elsevier.com/journals/astronomy-and-astrophysics-package/fs00-5460",
"www.journals.elsevier.com/astronomy-and-computing/",
"www.journals.elsevier.com/astroparticle-physics/",
"www.elsevier.com/journals/atencion-primaria/0212-6567",
"www.journals.elsevier.com/atherosclerosis/",
"www.elsevier.com/journals/atlas-of-the-oral-and-maxillofacial-surgery-clinics-of-north-america/1061-3315",
"www.journals.elsevier.com/atmospheric-environment/",
"www.journals.elsevier.com/atmospheric-research/",
"www.journals.elsevier.com/atomic-data-and-nuclear-data-tables/",
"www.elsevier.com/journals/auris-nasus-larynx/0385-8146",
"www.elsevier.com/journals/australasian-emergency-nursing-journal/1574-6267",
"www.journals.elsevier.com/australasian-marketing-journal/",
"www.elsevier.com/journals/australian-critical-care/1036-7314",
"www.journals.elsevier.com/autoimmunity-reviews/",
"www.journals.elsevier.com/automatica/",
"www.elsevier.com/journals/automatica-with-control-engineering-practice-combined-subscription/fs00-0323",
"www.journals.elsevier.com/automation-in-construction/",
"www.journals.elsevier.com/autonomic-neuroscience-basic-and-clinical/",
"www.elsevier.com/journals/avances-en-diabetologia/1134-3230",
"www.journals.elsevier.com/journal-of-aapos/",
"www.journals.elsevier.com/journal-of-accounting-and-economics/",
"www.journals.elsevier.com/journal-of-accounting-and-public-policy/",
"www.journals.elsevier.com/journal-of-accounting-education/",
"www.elsevier.com/journals/journal-of-accounting-literature/0737-4607",
"www.elsevier.com/journals/journal-of-acupuncture-and-meridian-studies/2005-2901",
"www.elsevier.com/journals/journal-of-acute-disease/2221-6189",
"www.elsevier.com/journals/journal-of-acute-medicine/2211-5587",
"www.journals.elsevier.com/journal-of-adolescence/",
"www.journals.elsevier.com/journal-of-adolescent-health/",
"www.journals.elsevier.com/journal-of-advanced-research/",
"www.journals.elsevier.com/journal-of-aerosol-science/",
"www.journals.elsevier.com/journal-of-affective-disorders/",
"www.journals.elsevier.com/journal-of-african-earth-sciences/",
"www.journals.elsevier.com/journal-of-aging-studies/",
"www.journals.elsevier.com/journal-of-air-transport-management/",
"www.journals.elsevier.com/journal-of-algebra/",
"www.elsevier.com/journals/journal-of-algorithms-in-cognition-informatics-and-logic/0196-6774",
"www.journals.elsevier.com/journal-of-allergy-and-clinical-immunology/",
"www.journals.elsevier.com/journal-of-alloys-and-compounds/",
"www.journals.elsevier.com/journal-of-analytical-and-applied-pyrolysis/",
"www.journals.elsevier.com/journal-of-anthropological-archaeology/",
"www.journals.elsevier.com/journal-of-anxiety-disorders/",
"www.journals.elsevier.com/journal-of-applied-developmental-psychology/",
"www.journals.elsevier.com/journal-of-applied-economics/",
"www.journals.elsevier.com/journal-of-applied-geophysics/",
"www.journals.elsevier.com/journal-of-applied-logic/",
"www.journals.elsevier.com/journal-of-applied-mathematics-and-mechanics/",
"www.journals.elsevier.com/journal-of-applied-research-in-memory-and-cognition/",
"www.journals.elsevier.com/journal-of-approximation-theory/",
"www.journals.elsevier.com/journal-of-archaeological-science/",
"www.journals.elsevier.com/journal-of-arid-environments/",
"www.elsevier.com/journals/journal-of-arrhythmia/1880-4276",
"www.journals.elsevier.com/journal-of-arthroplasty/",
"www.journals.elsevier.com/journal-of-asia-pacific-entomology/",
"www.elsevier.com/journals/journal-of-asian-ceramic-societies/2187-0764",
"www.journals.elsevier.com/journal-of-asian-earth-sciences/",
"www.journals.elsevier.com/journal-of-asian-economics/",
"www.journals.elsevier.com/journal-of-atmospheric-and-solar-terrestrial-physics/",
"www.journals.elsevier.com/journal-of-autoimmunity/",
"www.journals.elsevier.com/journal-of-the-academy-of-nutrition-and-dietetics/",
"www.journals.elsevier.com/journal-of-the-american-academy-of-child-and-adolescent-psychiatry/",
"www.journals.elsevier.com/journal-of-the-american-academy-of-dermatology/",
"www.journals.elsevier.com/journal-of-the-american-college-of-radiology/",
"www.journals.elsevier.com/journal-of-the-american-college-of-surgeons/",
"www.elsevier.com/journals/journal-of-the-american-dietetic-association/0002-8223",
"www.journals.elsevier.com/journal-of-the-american-medical-directors-association/",
"www.elsevier.com/journals/journal-of-the-american-society-for-mass-spectrometry/1044-0305",
"www.elsevier.com/journals/journal-of-the-american-society-of-cytopathology/2213-2945",
"www.journals.elsevier.com/journal-of-the-american-society-of-echocardiography/",
"www.journals.elsevier.com/journal-of-the-american-society-of-hypertension/",
"www.journals.elsevier.com/journal-of-the-association-for-vascular-access/",
"www.journals.elsevier.com/journal-of-the-association-of-arab-universities-for-basic-and-applied-sciences/",
"www.journals.elsevier.com/journal-of-the-association-of-nurses-in-aids-care/",
"www.journals.elsevier.com/the-american-journal-of-cardiology/",
"www.journals.elsevier.com/the-american-journal-of-geriatric-pharmacotherapy/",
"www.elsevier.com/journals/the-american-journal-of-geriatric-psychiatry/1064-7481",
"www.elsevier.com/journals/the-american-journal-of-human-genetics/0002-9297",
"www.journals.elsevier.com/the-american-journal-of-medicine/",
"www.journals.elsevier.com/the-american-journal-of-pathology/",
"www.journals.elsevier.com/the-american-journal-of-surgery/",
"www.journals.elsevier.com/the-annals-of-thoracic-surgery/",
"www.journals.elsevier.com/the-arts-in-psychotherapy/",
"www.journals.elsevier.com/the-asian-journal-of-shipping-and-logistics/",
"www.journals.elsevier.com/the-journal-of-academic-librarianship/",
"www.elsevier.com/journals/the-journal-of-allergy-and-clinical-immunology-in-practice/2213-2198",
"www.journals.elsevier.com/the-journal-of-the-american-college-of-certified-wound-specialists/",
"www.journals.elsevier.com/the-journal-of-the-american-college-of-clinical-wound-specialists/",
"www.elsevier.com/journals/basal-ganglia/2210-5336",
"www.elsevier.com/journals/basic-and-applied-ecology/1439-1791",
"www.elsevier.com/journals/bba-biochimica-et-biophysica-acta/fs00-0253",
"www.journals.elsevier.com/bba-bioenergetics/",
"www.journals.elsevier.com/bba-biomembranes/",
"www.journals.elsevier.com/bba-gene-regulatory-mechanisms/",
"www.elsevier.com/journals/bba-gene-structure-and-expression/0167-4781",
"www.journals.elsevier.com/bba-general-subjects/",
"www.journals.elsevier.com/bba-molecular-and-cell-biology-of-lipids/",
"www.journals.elsevier.com/bba-molecular-basis-of-disease/",
"www.journals.elsevier.com/bba-molecular-cell-research/",
"www.journals.elsevier.com/bba-proteins-and-proteomics/",
"www.journals.elsevier.com/bba-reviews-on-cancer/",
"www.journals.elsevier.com/behavior-therapy/",
"www.journals.elsevier.com/behaviour-research-and-therapy/",
"www.journals.elsevier.com/behavioural-brain-research/",
"www.journals.elsevier.com/behavioural-processes/",
"www.journals.elsevier.com/best-practice-and-research-clinical-anaesthesiology/",
"www.journals.elsevier.com/best-practice-and-research-clinical-endocrinology-and-metabolism/",
"www.journals.elsevier.com/best-practice-and-research-clinical-gastroenterology/",
"www.journals.elsevier.com/best-practice-and-research-clinical-haematology/",
"www.journals.elsevier.com/best-practice-and-research-clinical-obstetrics-and-gynaecology/",
"www.journals.elsevier.com/best-practice-and-research-clinical-rheumatology/",
"www.journals.elsevier.com/bioactive-carbohydrates-and-dietary-fibre/",
"www.journals.elsevier.com/biocatalysis-and-agricultural-biotechnology/",
"www.journals.elsevier.com/biochemical-and-biophysical-research-communications/",
"www.journals.elsevier.com/biochemical-engineering-journal/",
"www.journals.elsevier.com/biochemical-pharmacology/",
"www.journals.elsevier.com/biochemical-systematics-and-ecology/",
"www.journals.elsevier.com/biochimie/",
"www.elsevier.com/journals/biocybernetics-and-biomedical-engineering/0208-5216",
"www.journals.elsevier.com/bioelectrochemistry/",
"www.journals.elsevier.com/biological-conservation/",
"www.journals.elsevier.com/biological-control/",
"www.journals.elsevier.com/biological-psychiatry/",
"www.journals.elsevier.com/biological-psychology/",
"www.journals.elsevier.com/biologically-inspired-cognitive-architectures/",
"www.journals.elsevier.com/biologicals/",
"www.journals.elsevier.com/biology-of-blood-and-marrow-transplantation/",
"www.journals.elsevier.com/biomass-and-bioenergy/",
"www.journals.elsevier.com/biomaterials/",
"www.elsevier.com/journals/biomedical-and-environmental-sciences/0895-3988",
"www.journals.elsevier.com/biomedical-signal-processing-and-control/",
"www.elsevier.com/journals/biomedicine/2211-8020",
"www.elsevier.com/journals/biomedicine-and-aging-pathology/2210-5220",
"www.elsevier.com/journals/biomedicine-and-pharmacotherapy/0753-3322",
"www.elsevier.com/journals/biomedicine-and-preventive-nutrition/2210-5239",
"www.elsevier.com/journals/biometric-technology-today/0969-4765",
"www.journals.elsevier.com/bioorganic-and-medicinal-chemistry/",
"www.journals.elsevier.com/bioorganic-and-medicinal-chemistry-letters/",
"www.elsevier.com/journals/bioorganic-and-medicinal-chemistry-letters-with-tetrahedron-letters-combined-subscription/fs00-0107",
"www.elsevier.com/journals/bioorganic-and-medicinal-chemistry-with-bioorganic-and-medicinal-chemistry-letters-combined-subscription/fs00-0131",
"www.journals.elsevier.com/bioorganic-chemistry/",
"www.journals.elsevier.com/biophysical-chemistry/",
"www.elsevier.com/journals/biophysical-journal/0006-3495",
"www.elsevier.com/journals/biophysics-bioengineering-and-medical-instrumentation-section-27-embase/0014-4312",
"www.journals.elsevier.com/bioresource-technology/",
"www.elsevier.com/journals/bioscience-hypotheses/1756-2392",
"www.journals.elsevier.com/biosensors-and-bioelectronics/",
"www.journals.elsevier.com/biosystems/",
"www.journals.elsevier.com/biosystems-engineering/",
"www.journals.elsevier.com/biotechnology-advances/",
"www.journals.elsevier.com/blood-cells-molecules-and-diseases/",
"www.journals.elsevier.com/blood-reviews/",
"www.journals.elsevier.com/body-image/",
"www.elsevier.com/journals/boletin-de-aelfa/1137-8174",
"www.journals.elsevier.com/bone/",
"www.journals.elsevier.com/brachytherapy/",
"www.elsevier.com/journals/brain-and-development/0387-7604",
"www.journals.elsevier.com/brain-and-cognition/",
"www.journals.elsevier.com/brain-and-language/",
"www.journals.elsevier.com/brain-research/",
"www.journals.elsevier.com/brain-research-bulletin/",
"www.elsevier.com/journals/brain-research-combined-subscription/fs00-0265",
"www.journals.elsevier.com/brain-research-reviews/",
"www.journals.elsevier.com/brain-stimulation/",
"www.journals.elsevier.com/brain-behavior-and-immunity/",
"www.elsevier.com/journals/brazilian-journal-of-anesthesiology/0034-7094",
"www.elsevier.com/journals/brazilian-journal-of-infectious-diseases/1413-8670",
"www.elsevier.com/journals/brazilian-journal-of-rheumatology/0482-5004",
"www.elsevier.com/journals/breast-diseases-a-year-book-quarterly/1043-321x",
"www.journals.elsevier.com/british-journal-of-medical-and-surgical-urology/",
"www.journals.elsevier.com/british-journal-of-oral-and-maxillofacial-surgery/",
"www.journals.elsevier.com/building-and-environment/",
"www.elsevier.com/journals/bulletin-de-lacademie-nationale-de-medecine/0001-4079",
"www.elsevier.com/journals/bulletin-de-lordre-des-medecins/0030-4565",
"www.journals.elsevier.com/bulletin-des-sciences-mathematiques/",
"www.elsevier.com/journals/bulletin-of-faculty-of-pharmacy-cairo-university/1110-0931",
"www.elsevier.com/journals/burnout-research/2213-0586",
"www.journals.elsevier.com/burns/",
"www.journals.elsevier.com/business-horizons/",
"www.journals.elsevier.com/journal-of-banking-and-finance/",
"www.journals.elsevier.com/journal-of-behavior-therapy-and-experimental-psychiatry/",
"www.elsevier.com/journals/journal-of-biochemical-and-biophysical-methods/0165-022x",
"www.journals.elsevier.com/journal-of-biomechanics/",
"www.journals.elsevier.com/journal-of-biomedical-informatics/",
"www.elsevier.com/journals/journal-of-biomedical-research/1674-8301",
"www.elsevier.com/journals/journal-of-bionic-engineering/1672-6529",
"www.journals.elsevier.com/journal-of-bioscience-and-bioengineering/",
"www.journals.elsevier.com/journal-of-biotechnology/",
"www.journals.elsevier.com/journal-of-bodywork-and-movement-therapies/",
"www.elsevier.com/journals/journal-of-bone-oncology/2212-1374",
"www.journals.elsevier.com/journal-of-business-research/",
"www.journals.elsevier.com/journal-of-business-venturing/",
"www.journals.elsevier.com/the-breast/",
"www.journals.elsevier.com/the-british-accounting-review/",
"www.journals.elsevier.com/the-journal-of-basic-and-applied-zoology/",
"www.elsevier.com/journals/cahiers-de-la-puericultrice/0007-9820",
"www.elsevier.com/journals/cahiers-de-nutrition-et-de-dietetique/0007-9960",
"www.journals.elsevier.com/calphad/",
"www.journals.elsevier.com/canadian-association-of-radiologists-journal/",
"www.journals.elsevier.com/canadian-journal-of-cardiology/",
"www.journals.elsevier.com/canadian-journal-of-diabetes/",
"www.journals.elsevier.com/canadian-journal-of-ophthalmology/",
"www.elsevier.com/journals/cancer-section-16-embase/0014-4207",
"www.elsevier.com/journals/cancer-cell/1535-6108",
"www.elsevier.com/journals/cancer-detection-and-prevention/0361-090x",
"www.journals.elsevier.com/cancer-epidemiology/",
"www.journals.elsevier.com/cancer-genetics/",
"www.elsevier.com/journals/cancer-genetics-and-cytogenetics/0165-4608",
"www.journals.elsevier.com/cancer-letters/",
"www.elsevier.com/journals/cancer-radiotherapie/1278-3218",
"www.journals.elsevier.com/cancer-treatment-communications/",
"www.journals.elsevier.com/cancer-treatment-reviews/",
"www.journals.elsevier.com/carbohydrate-polymers/",
"www.journals.elsevier.com/carbohydrate-research/",
"www.journals.elsevier.com/carbon/",
"www.elsevier.com/journals/card-technology-today/0965-2590",
"www.elsevier.com/journals/cardiac-electrophysiology-clinics/1877-9182",
"www.elsevier.com/journals/cardiocore/1889-898x",
"www.elsevier.com/journals/cardiology-clinics/0733-8651",
"www.elsevier.com/journals/cardiology-news/1544-8800",
"www.elsevier.com/journals/cardiovascular-diseases-and-cardiovascular-surgery-section-18-embase/0014-4223",
"www.journals.elsevier.com/cardiovascular-pathology/",
"www.journals.elsevier.com/cardiovascular-revascularization-medicine/",
"www.journals.elsevier.com/caring-for-the-ages/",
"www.journals.elsevier.com/case-studies-in-engineering-failure-analysis/",
"www.elsevier.com/journals/case-studies-in-thermal-engineering/2214-157x",
"www.journals.elsevier.com/case-studies-on-transport-policy/",
"www.journals.elsevier.com/catalysis-communications/",
"www.journals.elsevier.com/catalysis-today/",
"www.journals.elsevier.com/catena/",
"www.elsevier.com/journals/cell/0092-8674",
"www.elsevier.com/journals/cell-biology-international/1065-6995",
"www.journals.elsevier.com/cell-calcium/",
"www.elsevier.com/journals/cell-host-and-microbe/1931-3128",
"www.elsevier.com/journals/cell-metabolism/1550-4131",
"www.elsevier.com/journals/cell-reports/2211-1247",
"www.elsevier.com/journals/cell-stem-cell/1934-5909",
"www.journals.elsevier.com/cellular-immunology/",
"www.journals.elsevier.com/cellular-signalling/",
"www.journals.elsevier.com/cement-and-concrete-composites/",
"www.journals.elsevier.com/cement-and-concrete-research/",
"www.journals.elsevier.com/ceramics-international/",
"www.journals.elsevier.com/cerevisia/",
"www.journals.elsevier.com/chaos-solitons-and-fractals/",
"www.journals.elsevier.com/chemical-engineering-and-processing-process-intensification/",
"www.journals.elsevier.com/chemical-engineering-journal/",
"www.elsevier.com/journals/chemical-engineering-journal-with-biochemical-engineering-journal-combined-subscription/fs00-6050",
"www.journals.elsevier.com/chemical-engineering-research-and-design/",
"www.elsevier.com/journals/chemical-engineering-research-and-design-with-process-safety-and-environmental-protection-and-food-and-bioproducts-processing-combined-subscription/fs00-8637",
"www.journals.elsevier.com/chemical-engineering-science/",
"www.journals.elsevier.com/chemical-geology/",
"www.journals.elsevier.com/chemical-physics/",
"www.journals.elsevier.com/chemical-physics-letters/",
"www.elsevier.com/journals/chemical-research-in-chinese-universities/1005-9040",
"www.journals.elsevier.com/chemico-biological-interactions/",
"www.elsevier.com/journals/chemie-der-erde-geochemistry/0009-2819",
"www.elsevier.com/journals/chemistry-and-biology/1074-5521",
"www.journals.elsevier.com/chemistry-and-physics-of-lipids/",
"www.journals.elsevier.com/chemometrics-and-intelligent-laboratory-systems/",
"www.journals.elsevier.com/chemosphere/",
"www.elsevier.com/journals/chest-diseases-thoracic-surgery-and-tuberculosis-section-15-embase/0014-4193",
"www.elsevier.com/journals/chest-physician/1558-6200",
"www.journals.elsevier.com/child-abuse-and-neglect/",
"www.elsevier.com/journals/child-and-adolescent-psychiatric-clinics-of-north-america/1056-4993",
"www.journals.elsevier.com/children-and-youth-services-review/",
"www.journals.elsevier.com/china-economic-review/",
"www.journals.elsevier.com/china-journal-of-accounting-research/",
"www.elsevier.com/journals/china-particuology/1672-2515",
"www.elsevier.com/journals/china-population-resources-and-environment/1872-583x",
"www.journals.elsevier.com/chinese-astronomy-and-astrophysics/",
"www.elsevier.com/journals/chinese-chemical-letters/1001-8417",
"www.elsevier.com/journals/chinese-herbal-medicines/1674-6384",
"www.journals.elsevier.com/chinese-journal-of-aeronautics/",
"www.elsevier.com/journals/chinese-journal-of-analytical-chemistry/1872-2040",
"www.elsevier.com/journals/chinese-journal-of-catalysis/1872-2067",
"www.elsevier.com/journals/chinese-journal-of-chemical-engineering/1004-9541",
"www.elsevier.com/journals/chinese-journal-of-chromatography/1872-2059",
"www.elsevier.com/journals/chinese-journal-of-natural-medicines/1875-5364",
"www.elsevier.com/journals/chinese-journal-of-traumatology-english-edition/1008-1275",
"www.elsevier.com/journals/chinese-medical-sciences-journal/1001-9294",
"www.elsevier.com/journals/chirurgie-de-la-main/1297-3203",
"www.elsevier.com/journals/chromatographia/0009-5893",
"www.journals.elsevier.com/cirp-annals-manufacturing-technology/",
"www.journals.elsevier.com/cirp-journal-of-manufacturing-science-and-technology/",
"www.elsevier.com/journals/cirugia-espanola/0009-739x",
"www.elsevier.com/journals/cirugia-espanola-english-edition/2173-5077",
"www.journals.elsevier.com/cities/",
"www.elsevier.com/journals/cities-with-habitat-international-combined-subscription/fs00-1028",
"www.journals.elsevier.com/city-culture-and-society/",
"www.elsevier.com/journals/clinica-e-investigacion-en-arteriosclerosis/0214-9168",
"www.elsevier.com/journals/clinica-e-investigacion-en-ginecologia-y-obstetricia/0210-573x",
"www.journals.elsevier.com/climate-risk-management/",
"www.journals.elsevier.com/clinica-chimica-acta/",
"www.elsevier.com/journals/clinical-and-applied-immunology-reviews/1529-1049",
"www.elsevier.com/journals/clinical-and-experimental-biochemistry-section-29-embase/0927-278x",
"www.elsevier.com/journals/clinical-and-experimental-pharmacology-section-30-embase/0927-2798",
"www.journals.elsevier.com/clinical-biochemistry/",
"www.journals.elsevier.com/clinical-biomechanics/",
"www.journals.elsevier.com/clinical-breast-cancer/",
"www.journals.elsevier.com/clinical-chiropractic/",
"www.journals.elsevier.com/clinical-colorectal-cancer/",
"www.elsevier.com/journals/clinical-cornerstone/1098-3597",
"www.elsevier.com/journals/clinical-effectiveness-in-nursing/1361-9004",
"www.elsevier.com/journals/clinical-endocrinology-news/1558-0164",
"www.elsevier.com/journals/clinical-epidemiology-and-global-health/2213-3984",
"www.journals.elsevier.com/clinical-gastroenterology-and-hepatology/",
"www.journals.elsevier.com/clinical-genitourinary-cancer/",
"www.journals.elsevier.com/clinical-imaging/",
"www.journals.elsevier.com/clinical-immunology/",
"www.journals.elsevier.com/clinical-lung-cancer/",
"www.journals.elsevier.com/clinical-lymphoma-myeloma-and-leukemia/",
"www.journals.elsevier.com/clinical-microbiology-newsletter/",
"www.journals.elsevier.com/clinical-neurology-and-neurosurgery/",
"www.journals.elsevier.com/clinical-neurophysiology/",
"www.elsevier.com/journals/clinical-neuroscience-research/1566-2772",
"www.journals.elsevier.com/clinical-nutrition/",
"www.journals.elsevier.com/clinical-nutrition-supplements/",
"www.journals.elsevier.com/clinical-oncology/",
"www.journals.elsevier.com/clinical-ovarian-and-other-gynecologic-cancer/",
"www.elsevier.com/journals/clinical-ovarian-cancer/1941-4390",
"www.journals.elsevier.com/clinical-pediatric-emergency-medicine/",
"www.elsevier.com/journals/clinical-plasma-medicine/2212-8166",
"www.elsevier.com/journals/clinical-psychiatry-news/0270-6644",
"www.journals.elsevier.com/clinical-psychology-review/",
"www.elsevier.com/journals/clinical-queries-nephrology/2211-9477",
"www.journals.elsevier.com/clinical-radiology/",
"www.journals.elsevier.com/clinical-simulation-in-nursing/",
"www.journals.elsevier.com/clinical-therapeutics/",
"www.elsevier.com/journals/clinics-and-research-in-hepatology-and-gastroenterology/2210-7401",
"www.elsevier.com/journals/clinics-in-chest-medicine/0272-5231",
"www.journals.elsevier.com/clinics-in-dermatology/",
"www.elsevier.com/journals/clinics-in-geriatric-medicine/0749-0690",
"www.elsevier.com/journals/clinics-in-laboratory-medicine/0272-2712",
"www.elsevier.com/journals/clinics-in-liver-disease/1089-3261",
"www.elsevier.com/journals/clinics-in-perinatology/0095-5108",
"www.elsevier.com/journals/clinics-in-plastic-surgery/0094-1298",
"www.elsevier.com/journals/clinics-in-podiatric-medicine-and-surgery/0891-8422",
"www.elsevier.com/journals/clinics-in-sports-medicine/0278-5919",
"www.elsevier.com/journals/cme-supplement-to-clinics-in-perinatology/1557-7864",
"www.elsevier.com/journals/cme-supplement-to-critical-care-nursing-clinics-of-north-america/1557-7880",
"www.elsevier.com/journals/cme-supplement-to-dental-clinics-of-north-america/1554-1959",
"www.elsevier.com/journals/cme-supplement-to-emergency-medicine-clinics-of-north-america/1557-8151",
"www.elsevier.com/journals/cme-supplement-to-magnetic-resonance-imaging-clinics-of-north-america/1557-8178",
"www.elsevier.com/journals/cme-supplement-to-medical-clinics-of-north-america/1557-8143",
"www.elsevier.com/journals/cme-supplement-to-neuroimaging-clinics-of-north-america/1557-8186",
"www.elsevier.com/journals/cme-supplement-to-obstetrics-and-gynecology-clinics/1557-816x",
"www.elsevier.com/journals/cme-supplement-to-pediatric-clinics-of-north-america/1557-8135",
"www.elsevier.com/journals/cme-supplement-to-radiologic-clinics-of-north-americs/1557-7872",
"www.elsevier.com/journals/cme-supplement-to-veterinary-clinics-of-north-america-equine-practice/1554-1967",
"www.elsevier.com/journals/cme-supplement-to-veterinary-clinics-of-north-america-exotic-animal-practice/1554-1991",
"www.elsevier.com/journals/cme-supplement-to-veterinary-clinics-small-animal-practice/1554-1983",
"www.elsevier.com/journals/cme-pet-clinics/1559-7814",
"www.elsevier.com/journals/cme-ultrasound-clinics/1559-7792",
"www.journals.elsevier.com/coastal-engineering/",
"www.journals.elsevier.com/cognition/",
"www.journals.elsevier.com/cognitive-and-behavioral-practice/",
"www.journals.elsevier.com/cognitive-development/",
"www.journals.elsevier.com/cognitive-psychology/",
"www.journals.elsevier.com/cognitive-systems-research/",
"www.journals.elsevier.com/cold-regions-science-and-technology/",
"www.elsevier.com/journals/collegian/1322-7696",
"www.elsevier.com/journals/colloids-and-surfaces-ab-combined-subscription/fs00-0457",
"www.journals.elsevier.com/colloids-and-surfaces-a-physicochemical-and-engineering-aspects/",
"www.journals.elsevier.com/colloids-and-surfaces-b-biointerfaces/",
"www.elsevier.com/journals/colombian-journal-of-anesthesiology/2256-2087",
"www.elsevier.com/journals/combinatorial-chemistry-an-online-journal/1464-3383",
"www.journals.elsevier.com/combustion-and-flame/",
"www.journals.elsevier.com/communications-in-nonlinear-science-and-numerical-simulation/",
"www.journals.elsevier.com/communist-and-post-communist-studies/",
"www.elsevier.com/journals/community-oncology/1548-5315",
"www.journals.elsevier.com/comparative-biochemistry-and-physiology-part-a-molecular-and-integrative-physiology/",
"www.journals.elsevier.com/comparative-biochemistry-and-physiology-part-b-biochemistry-and-molecular-biology/",
"www.journals.elsevier.com/comparative-biochemistry-and-physiology-part-c-toxicology-and-pharmacology/",
"www.journals.elsevier.com/comparative-biochemistry-and-physiology-part-d-genomics-and-proteomics/",
"www.elsevier.com/journals/comparative-biochemistry-and-physiology-parts-a-b-c-and-d-full-set/fs00-7514",
"www.journals.elsevier.com/comparative-immunology-microbiology-and-infectious-diseases/",
"www.journals.elsevier.com/complementary-therapies-in-clinical-practice/",
"www.journals.elsevier.com/complementary-therapies-in-medicine/",
"www.journals.elsevier.com/composite-structures/",
"www.journals.elsevier.com/composites-part-a-applied-science-and-manufacturing/",
"www.journals.elsevier.com/composites-part-b-engineering/",
"www.elsevier.com/journals/composites-parts-a-and-b-combined-subscription/fs00-1000",
"www.journals.elsevier.com/composites-science-and-technology/",
"www.journals.elsevier.com/comprehensive-psychiatry/",
"www.elsevier.com/journals/comptes-rendus-biologies/1631-0691",
"www.elsevier.com/journals/comptes-rendus-chimie/1631-0748",
"www.elsevier.com/journals/comptes-rendus-de-lacademie-des-sciences-option-1-combined-subscription/fs00-9100",
"www.elsevier.com/journals/comptes-rendus-geoscience/1631-0713",
"www.elsevier.com/journals/comptes-rendus-mathematique/1631-073x",
"www.elsevier.com/journals/comptes-rendus-mecanique/1631-0721",
"www.elsevier.com/journals/comptes-rendus-palevol/1631-0683",
"www.elsevier.com/journals/comptes-rendus-physique/1631-0705",
"www.journals.elsevier.com/computational-and-theoretical-chemistry/",
"www.journals.elsevier.com/computational-biology-and-chemistry/",
"www.journals.elsevier.com/computational-geometry/",
"www.journals.elsevier.com/computational-materials-science/",
"www.journals.elsevier.com/computational-statistics-and-data-analysis/",
"www.journals.elsevier.com/computer-aided-geometric-design/",
"www.journals.elsevier.com/computer-communications/",
"www.elsevier.com/journals/computer-fraud-and-security/1361-3723",
"www.journals.elsevier.com/computer-languages-systems-and-structures/",
"www.journals.elsevier.com/computer-law-and-security-review/",
"www.journals.elsevier.com/computer-methods-and-programs-in-biomedicine/",
"www.journals.elsevier.com/computer-methods-in-applied-mechanics-and-engineering/",
"www.journals.elsevier.com/computer-networks/",
"www.elsevier.com/journals/computer-networks-with-ad-hoc-networks-and-optical-switching-and-networking-full-set/fs00-5500",
"www.journals.elsevier.com/computer-physics-communications/",
"www.journals.elsevier.com/computer-science-review/",
"www.journals.elsevier.com/computer-speech-and-language/",
"www.journals.elsevier.com/computer-standards-and-interfaces/",
"www.journals.elsevier.com/computer-vision-and-image-understanding/",
"www.journals.elsevier.com/computer-aided-design/",
"www.journals.elsevier.com/computerized-medical-imaging-and-graphics/",
"www.journals.elsevier.com/computers-and-chemical-engineering/",
"www.journals.elsevier.com/computers-and-education/",
"www.journals.elsevier.com/computers-and-electrical-engineering/",
"www.journals.elsevier.com/computers-and-fluids/",
"www.journals.elsevier.com/computers-and-geosciences/",
"www.journals.elsevier.com/computers-and-graphics/",
"www.journals.elsevier.com/computers-and-industrial-engineering/",
"www.journals.elsevier.com/computers-and-mathematics-with-applications/",
"www.journals.elsevier.com/computers-and-operations-research/",
"www.journals.elsevier.com/computers-and-security/",
"www.journals.elsevier.com/computers-and-structures/",
"www.journals.elsevier.com/computers-and-composition/",
"www.journals.elsevier.com/computers-and-electronics-in-agriculture/",
"www.journals.elsevier.com/computers-and-geotechnics/",
"www.journals.elsevier.com/computers-in-biology-and-medicine/",
"www.journals.elsevier.com/computers-in-human-behavior/",
"www.journals.elsevier.com/computers-in-industry/",
"www.journals.elsevier.com/computers-environment-and-urban-systems/",
"www.journals.elsevier.com/consciousness-and-cognition/",
"www.journals.elsevier.com/construction-and-building-materials/",
"www.journals.elsevier.com/contact-lens-and-anterior-eye/",
"www.journals.elsevier.com/contemporary-clinical-trials/",
"www.journals.elsevier.com/contemporary-educational-psychology/",
"www.journals.elsevier.com/continental-shelf-research/",
"www.journals.elsevier.com/contraception/",
"www.journals.elsevier.com/control-engineering-practice/",
"www.journals.elsevier.com/coordination-chemistry-reviews/",
"www.elsevier.com/journals/cor-et-vasa/0010-8650",
"www.elsevier.com/journals/core-journals-in-cardiology/0165-9405",
"www.elsevier.com/journals/core-journals-in-clinical-neurology/0165-1056",
"www.elsevier.com/journals/core-journals-in-dermatology/0167-5796",
"www.elsevier.com/journals/core-journals-in-gastroenterology/0165-8719",
"www.elsevier.com/journals/core-journals-in-obstetrics-gynecology/0376-5059",
"www.elsevier.com/journals/core-journals-in-ophthalmology/0165-1005",
"www.elsevier.com/journals/core-journals-in-pediatrics/0376-5040",
"www.journals.elsevier.com/corrosion-science/",
"www.journals.elsevier.com/cortex/",
"www.elsevier.com/journals/cospar-information-bulletin/0045-8732",
"www.journals.elsevier.com/cretaceous-research/",
"www.elsevier.com/journals/critical-care-clinics/0749-0704",
"www.elsevier.com/journals/critical-care-nursing-clinics-of-north-america/0899-5885",
"www.journals.elsevier.com/critical-perspectives-on-accounting/",
"www.journals.elsevier.com/critical-reviews-in-oncology-hematology/",
"www.journals.elsevier.com/crop-protection/",
"www.journals.elsevier.com/cryobiology/",
"www.journals.elsevier.com/cryogenics/",
"www.elsevier.com/journals/cuadernos-de-economia/0210-0266",
"www.elsevier.com/journals/cuadernos-de-economia-y-direccion-de-la-empresa/1138-5758",
"www.elsevier.com/journals/current-advances-in-applied-microbiology-and-biotechnology/0964-8712",
"www.elsevier.com/journals/current-advances-in-cancer-research/0895-9803",
"www.elsevier.com/journals/current-advances-in-cell-and-developmental-biology/0741-1626",
"www.elsevier.com/journals/current-advances-in-clinical-chemistry/0885-1980",
"www.elsevier.com/journals/current-advances-in-ecological-and-environmental-sciences/0955-6648",
"www.elsevier.com/journals/current-advances-in-endocrinology-and-metabolism/0964-8720",
"www.elsevier.com/journals/current-advances-in-genetics-and-molecular-biology/0741-1642",
"www.elsevier.com/journals/current-advances-in-immunology-and-infectious-diseases/0964-8747",
"www.elsevier.com/journals/current-advances-in-neuroscience/0741-1677",
"www.elsevier.com/journals/current-advances-in-plant-science/0306-4484",
"www.elsevier.com/journals/current-advances-in-protein-biochemistry/0965-0504",
"www.elsevier.com/journals/current-advances-in-toxicology/0965-0512",
"www.elsevier.com/journals/current-anaesthesia-and-critical-care/0953-7112",
"www.journals.elsevier.com/current-applied-physics/",
"www.elsevier.com/journals/current-awareness-in-biological-sciences-cabs-full-set/fs00-0396",
"www.elsevier.com/journals/current-biology/0960-9822",
"www.elsevier.com/journals/current-diagnostic-pathology/0968-6053",
"www.elsevier.com/journals/current-obstetrics-and-gynaecology/0957-5847",
"www.journals.elsevier.com/current-opinion-in-biotechnology/",
"www.journals.elsevier.com/current-opinion-in-cell-biology/",
"www.journals.elsevier.com/current-opinion-in-chemical-biology/",
"www.journals.elsevier.com/current-opinion-in-chemical-engineering/",
"www.journals.elsevier.com/current-opinion-in-colloid-and-interface-science/",
"www.journals.elsevier.com/current-opinion-in-environmental-sustainability/",
"www.journals.elsevier.com/current-opinion-in-genetics-and-development/",
"www.journals.elsevier.com/current-opinion-in-immunology/",
"www.journals.elsevier.com/current-opinion-in-microbiology/",
"www.journals.elsevier.com/current-opinion-in-neurobiology/",
"www.journals.elsevier.com/current-opinion-in-pharmacology/",
"www.journals.elsevier.com/current-opinion-in-plant-biology/",
"www.journals.elsevier.com/current-opinion-in-solid-state-and-materials-science/",
"www.journals.elsevier.com/current-opinion-in-structural-biology/",
"www.journals.elsevier.com/current-opinion-in-virology/",
"www.elsevier.com/journals/current-orthopaedics/0268-0890",
"www.journals.elsevier.com/current-problems-in-cancer/",
"www.journals.elsevier.com/current-problems-in-cardiology/",
"www.journals.elsevier.com/current-problems-in-diagnostic-radiology/",
"www.journals.elsevier.com/current-problems-in-pediatric-and-adolescent-health-care/",
"www.journals.elsevier.com/current-problems-in-surgery/",
"www.journals.elsevier.com/current-therapeutic-research/",
"www.journals.elsevier.com/currents-in-pharmacy-teaching-and-learning/",
"www.elsevier.com/journals/cvd-prevention-and-control/1875-4570",
"www.journals.elsevier.com/cytokine/",
"www.journals.elsevier.com/cytokine-and-growth-factor-reviews/",
"www.journals.elsevier.com/cytotherapy/",
"www.journals.elsevier.com/journal-of-cancer-policy/",
"www.journals.elsevier.com/journal-of-cardiac-failure/",
"www.elsevier.com/journals/journal-of-cardiology/0914-5087",
"www.elsevier.com/journals/journal-of-cardiology-cases/1878-5409",
"www.journals.elsevier.com/journal-of-cardiothoracic-and-vascular-anesthesia/",
"www.elsevier.com/journals/journal-of-cardiothoracic-renal-research/1574-0668",
"www.journals.elsevier.com/journal-of-cardiovascular-computed-tomography/",
"www.journals.elsevier.com/journal-of-catalysis/",
"www.journals.elsevier.com/journal-of-cataract-and-refractive-surgery/",
"www.journals.elsevier.com/journal-of-cereal-science/",
"www.journals.elsevier.com/journal-of-chemical-health-and-safety/",
"www.journals.elsevier.com/journal-of-chemical-neuroanatomy/",
"www.elsevier.com/journals/journal-of-china-university-of-geosciences/1002-0705",
"www.elsevier.com/journals/journal-of-china-university-of-mining-and-technology/1006-1266",
"www.journals.elsevier.com/journal-of-chiropractic-humanities/",
"www.journals.elsevier.com/journal-of-chiropractic-medicine/",
"www.journals.elsevier.com/journal-of-choice-modelling/",
"www.journals.elsevier.com/journal-of-chromatography-a/",
"www.elsevier.com/journals/journal-of-chromatography-a-with-journal-of-chromatography-b-combined-subscription/fs00-0049",
"www.journals.elsevier.com/journal-of-chromatography-b/",
"www.journals.elsevier.com/journal-of-cleaner-production/",
"www.elsevier.com/journals/journal-of-clinical-and-experimental-hepatology/0973-6883",
"www.journals.elsevier.com/journal-of-clinical-anesthesia/",
"www.journals.elsevier.com/journal-of-clinical-densitometry/",
"www.journals.elsevier.com/journal-of-clinical-epidemiology/",
"www.elsevier.com/journals/journal-of-clinical-forensic-medicine/1353-1131",
"www.elsevier.com/journals/journal-of-clinical-gerontology-and-geriatrics/2210-8335",
"www.journals.elsevier.com/journal-of-clinical-lipidology/",
"www.journals.elsevier.com/journal-of-clinical-neuroscience/",
"www.elsevier.com/journals/journal-of-clinical-orthopaedics-and-trauma/0976-5662",
"www.journals.elsevier.com/journal-of-clinical-virology/",
"www.elsevier.com/journals/journal-of-clinical-virology-with-virus-research-combined-subscription/fs00-5544",
"www.journals.elsevier.com/journal-of-co-operative-organization-and-management/",
"www.journals.elsevier.com/journal-of-co2-utilization/",
"www.journals.elsevier.com/journal-of-colloid-and-interface-science/",
"www.journals.elsevier.com/journal-of-combinatorial-theory-series-a/",
"www.journals.elsevier.com/journal-of-combinatorial-theory-series-b/",
"www.journals.elsevier.com/journal-of-communication-disorders/",
"www.journals.elsevier.com/journal-of-comparative-economics/",
"www.journals.elsevier.com/journal-of-comparative-pathology/",
"www.journals.elsevier.com/journal-of-complexity/",
"www.journals.elsevier.com/journal-of-computational-and-applied-mathematics/",
"www.journals.elsevier.com/journal-of-computational-physics/",
"www.journals.elsevier.com/journal-of-computational-science/",
"www.journals.elsevier.com/journal-of-computer-and-system-sciences/",
"www.journals.elsevier.com/journal-of-constructional-steel-research/",
"www.journals.elsevier.com/journal-of-consumer-psychology/",
"www.journals.elsevier.com/journal-of-contaminant-hydrology/",
"www.elsevier.com/journals/journal-of-contaminant-hydrology-with-journal-of-hydrology-combined-subscription/fs00-5457",
"www.journals.elsevier.com/journal-of-contemporary-accounting-and-economics/",
"www.journals.elsevier.com/journal-of-contextual-behavioral-science/",
"www.journals.elsevier.com/journal-of-controlled-release/",
"www.journals.elsevier.com/journal-of-corporate-finance/",
"www.journals.elsevier.com/journal-of-cranio-maxillofacial-surgery/",
"www.journals.elsevier.com/journal-of-criminal-justice/",
"www.journals.elsevier.com/journal-of-critical-care/",
"www.journals.elsevier.com/journal-of-crohns-and-colitis/",
"www.journals.elsevier.com/journal-of-crohns-and-colitis-supplements/",
"www.journals.elsevier.com/journal-of-crystal-growth/",
"www.elsevier.com/journals/journal-of-crystal-growth-with-progress-in-crystal-growth-and-characterization-of-materials-combined-subscription/fs00-5455",
"www.elsevier.com/journals/journal-of-cultural-heritage/1296-2074",
"www.journals.elsevier.com/journal-of-cystic-fibrosis/",
"www.elsevier.com/journals/journal-of-the-chinese-institute-of-chemical-engineers/0368-1653",
"www.elsevier.com/journals/journal-of-the-chinese-medical-association/1726-4901",
"www.elsevier.com/journals/les-cahiers-de-laudition/0980-3482",
"www.elsevier.com/journals/the-case-manager/1061-9259",
"www.journals.elsevier.com/the-journal-of-chemical-thermodynamics/",
"www.elsevier.com/journals/the-journal-of-china-universities-of-posts-and-telecommunications/1005-8885",
"www.elsevier.com/journals/das-neurophysiologie-labor/1439-4847",
"www.journals.elsevier.com/data-and-knowledge-engineering/",
"www.journals.elsevier.com/decision-support-systems/",
"www.elsevier.com/journals/deep-sea-research-part-i-oceanographic-research-papers-with-part-ii-topical-studies-in-oceanography/fs00-0216",
"www.elsevier.com/journals/deep-sea-research-parts-i-and-ii-with-oceanographic-literature-review-combined-subscription/fs00-0117",
"www.journals.elsevier.com/deep-sea-research-part-i-oceanographic-research-papers/",
"www.journals.elsevier.com/deep-sea-research-part-ii-topical-studies-in-oceanography/",
"www.elsevier.com/journals/dendrochronologia/1125-7865",
"www.journals.elsevier.com/dental-abstracts/",
"www.elsevier.com/journals/dental-cadmos/0011-8524",
"www.elsevier.com/journals/dental-clinics-of-north-america/0011-8532",
"www.journals.elsevier.com/dental-materials/",
"www.elsevier.com/journals/der-zoologische-garten-in-deutscher-sprache-in-german/0044-5169",
"www.elsevier.com/journals/dermatologic-clinics/0733-8635",
"www.elsevier.com/journals/dermatologica-sinica/1027-8117",
"www.elsevier.com/journals/dermatology-and-venereology-section-13-embase/0014-4177",
"www.journals.elsevier.com/desalination/",
"www.journals.elsevier.com/design-studies/",
"www.elsevier.com/journals/deutsche-zeitschrift-fur-akupunktur/0415-6412",
"www.journals.elsevier.com/developmental-and-comparative-immunology/",
"www.journals.elsevier.com/developmental-biology/",
"www.elsevier.com/journals/developmental-biology-and-teratology-section-21-embase/0014-4258",
"www.elsevier.com/journals/developmental-cell/1534-5807",
"www.journals.elsevier.com/developmental-cognitive-neuroscience/",
"www.journals.elsevier.com/developmental-review/",
"www.elsevier.com/journals/dialisis-y-trasplante/1886-2845",
"www.elsevier.com/journals/diabetes-and-metabolic-syndrome-clinical-research-and-reviews/1871-4021",
"www.elsevier.com/journals/diabetes-and-metabolism/1262-3636",
"www.journals.elsevier.com/diabetes-research-and-clinical-practice/",
"www.elsevier.com/journals/diagnostico-prenatal/2173-4127",
"www.elsevier.com/journals/diagnostic-and-interventional-imaging/2211-5684",
"www.elsevier.com/journals/diagnostic-histopathology/1756-2317",
"www.journals.elsevier.com/diagnostic-microbiology-and-infectious-disease/",
"www.journals.elsevier.com/diamond-and-related-materials/",
"www.journals.elsevier.com/differential-geometry-and-its-applications/",
"www.journals.elsevier.com/differentiation/",
"www.journals.elsevier.com/digestive-and-liver-disease/",
"www.journals.elsevier.com/digital-applications-in-archaeology-and-cultural-heritage/",
"www.journals.elsevier.com/digital-investigation/",
"www.journals.elsevier.com/digital-signal-processing/",
"www.journals.elsevier.com/disability-and-health-journal/",
"www.journals.elsevier.com/discourse-context-and-media/",
"www.journals.elsevier.com/discrete-applied-mathematics/",
"www.journals.elsevier.com/discrete-mathematics/",
"www.elsevier.com/journals/discrete-mathematics-with-discrete-applied-mathematics-combined-subscription/fs00-0025",
"www.journals.elsevier.com/discrete-optimization/",
"www.journals.elsevier.com/disease-a-month/",
"www.journals.elsevier.com/displays/",
"www.journals.elsevier.com/dna-repair/",
"www.elsevier.com/journals/doctor/0046-0451",
"www.elsevier.com/journals/doctorconsult-the-journal-wissen-fur-klinik-und-praxis/1879-4122",
"www.journals.elsevier.com/domestic-animal-endocrinology/",
"www.elsevier.com/journals/douleurs/1624-5687",
"www.elsevier.com/journals/droit-deontologie-et-soin/1629-6583",
"www.journals.elsevier.com/drug-and-alcohol-dependence/",
"www.elsevier.com/journals/drug-dependence-alcohol-abuse-and-alcoholism-section-40-embase/0925-5958",
"www.journals.elsevier.com/drug-discovery-today/",
"www.elsevier.com/journals/drug-discovery-today-biosilico/1741-8364",
"www.journals.elsevier.com/drug-discovery-today-disease-mechanisms/",
"www.journals.elsevier.com/drug-discovery-today-disease-models/",
"www.journals.elsevier.com/drug-discovery-today-technologies/",
"www.journals.elsevier.com/drug-discovery-today-therapeutic-strategies/",
"www.elsevier.com/journals/drug-invention-today/0975-7619",
"www.journals.elsevier.com/drug-resistance-updates/",
"www.journals.elsevier.com/dyes-and-pigments/",
"www.journals.elsevier.com/dynamics-of-atmospheres-and-oceans/",
"www.elsevier.com/journals/journal-de-chirurgie/0021-7697",
"www.elsevier.com/journals/journal-de-chirurgie-version-portugaise/1950-1692",
"www.elsevier.com/journals/journal-de-chirurgie-viscerale/1878-786x",
"www.elsevier.com/journals/journal-de-gynecologie-obstetrique-et-biologie-de-la-reproduction/0368-2315",
"www.journals.elsevier.com/journal-de-mathematiques-pures-et-appliquees/",
"www.elsevier.com/journals/journal-de-mycologie-medicale/1156-5233",
"www.elsevier.com/journals/journal-de-pediatrie-et-de-puericulture/0987-7983",
"www.elsevier.com/journals/journal-de-readaptation-medicale/0242-648x",
"www.elsevier.com/journals/journal-de-radiologie-diagnostique-et-interventionnelle/2211-5706",
"www.elsevier.com/journals/journal-de-therapie-comportementale-et-cognitive/1155-1704",
"www.elsevier.com/journals/journal-de-traumatologie-du-sport/0762-915x",
"www.elsevier.com/journals/journal-des-anti-infectieux/2210-6545",
"www.elsevier.com/journals/journal-des-maladies-vasculaires/0398-0499",
"www.journals.elsevier.com/journal-of-dairy-science/",
"www.elsevier.com/journals/journal-of-dental-sciences/1991-7902",
"www.journals.elsevier.com/journal-of-dentistry/",
"www.journals.elsevier.com/journal-of-dermatological-science/",
"www.journals.elsevier.com/journal-of-destination-marketing-and-management/",
"www.journals.elsevier.com/journal-of-development-economics/",
"www.journals.elsevier.com/journal-of-diabetes-and-its-complications/",
"www.journals.elsevier.com/journal-of-differential-equations/",
"www.journals.elsevier.com/journal-of-discrete-algorithms/",
"www.journals.elsevier.com/e-spen-journal/",
"www.elsevier.com/journals/e-spen-the-european-e-journal-of-clinical-nutrition-and-metabolism/1751-4991",
"www.journals.elsevier.com/early-childhood-research-quarterly/",
"www.journals.elsevier.com/early-human-development/",
"www.journals.elsevier.com/earth-and-planetary-science-letters/",
"www.elsevier.com/journals/earth-science-frontiers/1872-5791",
"www.journals.elsevier.com/earth-science-reviews/",
"www.journals.elsevier.com/eating-behaviors/",
"www.elsevier.com/journals/eau-update-series/1570-9124",
"www.elsevier.com/journals/eau-ebu-update-series/1871-2592",
"www.elsevier.com/journals/ecohydrology-and-hydrobiology/1642-3593",
"www.elsevier.com/journals/ecological-abstracts/0305-196x",
"www.journals.elsevier.com/ecological-complexity/",
"www.journals.elsevier.com/ecological-economics/",
"www.journals.elsevier.com/ecological-engineering/",
"www.journals.elsevier.com/ecological-indicators/",
"www.journals.elsevier.com/ecological-informatics/",
"www.journals.elsevier.com/ecological-modelling/",
"www.journals.elsevier.com/economic-modelling/",
"www.journals.elsevier.com/economic-systems/",
"www.journals.elsevier.com/economics-and-human-biology/",
"www.journals.elsevier.com/economics-letters/",
"www.journals.elsevier.com/economics-of-education-review/",
"www.journals.elsevier.com/economics-of-transportation/",
"www.journals.elsevier.com/ecosystem-services/",
"www.journals.elsevier.com/ecotoxicology-and-environmental-safety/",
"www.journals.elsevier.com/education-for-chemical-engineers/",
"www.journals.elsevier.com/educational-research-review/",
"www.journals.elsevier.com/egyptian-informatics-journal/",
"www.elsevier.com/journals/egyptian-journal-of-anaesthesia/1110-1849",
"www.elsevier.com/journals/egyptian-journal-of-aquatic-research/1687-4285",
"www.elsevier.com/journals/egyptian-journal-of-chest-disease-and-tuberculosis/0422-7638",
"www.elsevier.com/journals/egyptian-journal-of-critical-care-medicine/2090-7303",
"www.elsevier.com/journals/egyptian-journal-of-ear-nose-throat-and-allied-sciences/2090-0740",
"www.elsevier.com/journals/egyptian-journal-of-forensic-sciences/2090-536x",
"www.elsevier.com/journals/egyptian-journal-of-medical-human-genetics/1110-8630",
"www.journals.elsevier.com/egyptian-journal-of-petroleum/",
"www.elsevier.com/journals/egyptian-paediatric-association-gazette/1110-6638",
"www.journals.elsevier.com/ejc-supplements/",
"www.journals.elsevier.com/ejso-european-journal-of-surgical-oncology/",
"www.journals.elsevier.com/electoral-studies/",
"www.journals.elsevier.com/electric-power-systems-research/",
"www.journals.elsevier.com/electrochemistry-communications/",
"www.journals.elsevier.com/electrochimica-acta/",
"www.journals.elsevier.com/electronic-commerce-research-and-applications/",
"www.elsevier.com/journals/electronic-notes-in-discrete-mathematics/1571-0653",
"www.elsevier.com/journals/electronic-notes-in-theoretical-computer-science/1571-0661",
"www.elsevier.com/journals/emc-akos-trattato-di-medicina/1634-7358",
"www.elsevier.com/journals/emc-anestesia-reanimacion/1280-4703",
"www.elsevier.com/journals/emc-anestesia-rianimazione/1283-0771",
"www.elsevier.com/journals/emc-aparato-locomotor/1286-935x",
"www.elsevier.com/journals/emc-cirugia-general/1634-7080",
"www.elsevier.com/journals/emc-cirugia-otorrinolaringologica-y-cervicofacial/1635-2505",
"www.elsevier.com/journals/emc-cirugia-plastica-reparadora-y-estetica/1634-2143",
"www.elsevier.com/journals/emc-cosmetologia-medica-e-medicina-degli-inestetismi-cutanei/1776-0313",
"www.elsevier.com/journals/emc-dentisterie/1762-5661",
"www.elsevier.com/journals/emc-dermatologia/1761-2896",
"www.elsevier.com/journals/emc-ginecologia-obstetricia/1283-081x",
"www.elsevier.com/journals/emc-kinesiterapia-medicina-fisica/1293-2965",
"www.elsevier.com/journals/emc-medicina-riabilitativa/1283-078x",
"www.elsevier.com/journals/emc-neurologia/1634-7072",
"www.elsevier.com/journals/emc-neurologie/1762-4231",
"www.elsevier.com/journals/emc-otorinolaringoiatria/1639-870x",
"www.elsevier.com/journals/emc-otorrinolaringologia/1632-3475",
"www.elsevier.com/journals/emc-pediatria/1245-1789",
"www.elsevier.com/journals/emc-podologia/1762-827x",
"www.elsevier.com/journals/emc-psychiatrie/1762-5718",
"www.elsevier.com/journals/emc-tecnicas-quirurgicas-aparato-digestivo/1282-9129",
"www.elsevier.com/journals/emc-tecnicas-quirurgicas-ortopedia-y-traumatologia/2211-033x",
"www.elsevier.com/journals/emc-tecniche-chirurgiche-chirurgia-addominale/1283-0798",
"www.elsevier.com/journals/emc-tecniche-chirurgiche-chirurgia-generale/1636-5577",
"www.elsevier.com/journals/emc-tecniche-chirurgiche-chirurgia-orl-e-cervico-facciale/1292-3036",
"www.elsevier.com/journals/emc-tecniche-chirurgiche-chirurgia-ortopedica/2211-0801",
"www.elsevier.com/journals/emc-tecniche-chirurgiche-chirurgia-plastica-ricostruttiva-ed-estetica/1769-6704",
"www.elsevier.com/journals/emc-tecniche-chirurgiche-chirurgia-torace/1288-3336",
"www.elsevier.com/journals/emc-tecniche-chirurgiche-chirurgia-vascolare/1283-0801",
"www.elsevier.com/journals/emc-tratado-de-medicina/1636-5410",
"www.elsevier.com/journals/emc-urgenze/1286-9341",
"www.elsevier.com/journals/emc-urologia/1761-3310",
"www.elsevier.com/journals/emergency-medicine-clinics-of-north-america/0733-8627",
"www.journals.elsevier.com/emerging-markets-review/",
"www.journals.elsevier.com/emotion-space-and-society/",
"www.journals.elsevier.com/endeavour/",
"www.elsevier.com/journals/endocrinologia-y-nutricion/1575-0922",
"www.elsevier.com/journals/endocrinologia-y-nutricion-english-edition/2173-5093",
"www.elsevier.com/journals/endocrinology-and-metabolism-clinics-of-north-america/0889-8529",
"www.elsevier.com/journals/endocrinology-section-3-embase/0014-407x",
"www.journals.elsevier.com/energy/",
"www.journals.elsevier.com/energy-and-buildings/",
"www.journals.elsevier.com/energy-conversion-and-management/",
"www.journals.elsevier.com/energy-economics/",
"www.journals.elsevier.com/energy-for-sustainable-development/",
"www.journals.elsevier.com/energy-policy/",
"www.journals.elsevier.com/energy-procedia/",
"www.journals.elsevier.com/energy-strategy-reviews/",
"www.elsevier.com/journals/enfermedades-infecciosas-y-microbiologia-clinica/0213-005x",
"www.elsevier.com/journals/enfermeria-clinica/1130-8621",
"www.elsevier.com/journals/enfermeria-intensiva/1130-2399",
"www.journals.elsevier.com/engineering-analysis-with-boundary-elements/",
"www.journals.elsevier.com/engineering-applications-of-artificial-intelligence/",
"www.journals.elsevier.com/engineering-failure-analysis/",
"www.journals.elsevier.com/engineering-fracture-mechanics/",
"www.journals.elsevier.com/engineering-geology/",
"www.journals.elsevier.com/engineering-structures/",
"www.journals.elsevier.com/english-for-specific-purposes/",
"www.elsevier.com/journals/english-for-specific-purposes-with-journal-of-english-for-academic-purposes-combined-subscription/fs00-0681",
"www.journals.elsevier.com/entertainment-computing/",
"www.journals.elsevier.com/environment-international/",
"www.journals.elsevier.com/environmental-and-experimental-botany/",
"www.journals.elsevier.com/environmental-development/",
"www.elsevier.com/journals/environmental-health-and-pollution-control-section-46-embase/0300-5194",
"www.journals.elsevier.com/environmental-impact-assessment-review/",
"www.journals.elsevier.com/environmental-innovation-and-societal-transitions/",
"www.journals.elsevier.com/environmental-modelling-and-software/",
"www.journals.elsevier.com/environmental-pollution/",
"www.journals.elsevier.com/environmental-research/",
"www.elsevier.com/journals/environmental-research-with-ecotoxicology-and-environmental-safety-combined-subscription/fs-2302",
"www.journals.elsevier.com/environmental-science-and-policy/",
"www.elsevier.com/journals/environmental-science-package-option-1/fs00-0137",
"www.elsevier.com/journals/environmental-science-package-option-2/fs00-0173",
"www.journals.elsevier.com/environmental-toxicology-and-pharmacology/",
"www.journals.elsevier.com/enzyme-and-microbial-technology/",
"www.journals.elsevier.com/epidemics/",
"www.journals.elsevier.com/epilepsy-and-behavior/",
"www.journals.elsevier.com/epilepsy-and-behavior-case-reports/",
"www.elsevier.com/journals/epilepsy-abstracts-section-50-embase/0031-0743",
"www.journals.elsevier.com/epilepsy-research/",
"www.elsevier.com/journals/epileptology/2212-8220",
"www.journals.elsevier.com/estuarine-coastal-and-shelf-science/",
"www.journals.elsevier.com/eupa-open-proteomics/",
"www.elsevier.com/journals/european-annals-of-otorhinolaryngology-head-and-neck-diseases/1879-7296",
"www.journals.elsevier.com/european-economic-review/",
"www.elsevier.com/journals/european-geriatric-medicine/1878-7649",
"www.journals.elsevier.com/european-journal-of-agronomy/",
"www.journals.elsevier.com/european-journal-of-cancer/",
"www.elsevier.com/journals/european-journal-of-cancer-with-oral-oncology-combined-subscription/fs00-0298",
"www.elsevier.com/journals/european-journal-of-cardio-thoracic-surgery-supplement/1567-4258",
"www.elsevier.com/journals/european-journal-of-cardiovascular-nursing/1474-5151",
"www.elsevier.com/journals/european-journal-of-cell-biology/0171-9335",
"www.journals.elsevier.com/european-journal-of-combinatorics/",
"www.elsevier.com/journals/european-journal-of-control/0947-3580",
"www.elsevier.com/journals/european-journal-of-integrative-medicine/1876-3820",
"www.journals.elsevier.com/european-journal-of-internal-medicine/",
"www.elsevier.com/journals/european-journal-of-mechanics-a-b-combined-subscription/fs00-9097",
"www.journals.elsevier.com/european-journal-of-mechanics-a-solids/",
"www.journals.elsevier.com/european-journal-of-mechanics-b-fluids/",
"www.journals.elsevier.com/european-journal-of-medical-genetics/",
"www.journals.elsevier.com/european-journal-of-medicinal-chemistry/",
"www.journals.elsevier.com/european-journal-of-obstetrics-and-gynecology-and-reproductive-biology/",
"www.journals.elsevier.com/european-journal-of-oncology-nursing/",
"www.journals.elsevier.com/european-journal-of-operational-research/",
"www.journals.elsevier.com/european-journal-of-paediatric-neurology/",
"www.elsevier.com/journals/european-journal-of-pain/1090-3801",
"www.journals.elsevier.com/european-journal-of-pharmaceutical-sciences/",
"www.journals.elsevier.com/european-journal-of-pharmaceutics-and-biopharmaceutics/",
"www.journals.elsevier.com/european-journal-of-pharmacology/",
"www.journals.elsevier.com/european-journal-of-political-economy/",
"www.elsevier.com/journals/european-journal-of-protistology/0932-4739",
"www.elsevier.com/journals/european-journal-of-radiography/1756-1175",
"www.journals.elsevier.com/european-journal-of-radiology/",
"www.elsevier.com/journals/european-journal-of-radiology-extra/1571-4675",
"www.journals.elsevier.com/european-journal-of-soil-biology/",
"www.journals.elsevier.com/european-journal-of-vascular-and-endovascular-surgery/",
"www.journals.elsevier.com/european-journal-of-vascular-and-endovascular-surgery-extra/",
"www.journals.elsevier.com/european-management-journal/",
"www.journals.elsevier.com/european-neuropsychopharmacology/",
"www.journals.elsevier.com/european-polymer-journal/",
"www.elsevier.com/journals/european-psychiatry/0924-9338",
"www.elsevier.com/journals/european-research-in-telemedicine-la-recherche-europeenne-en-telemedecine/2212-764x",
"www.journals.elsevier.com/european-urology/",
"www.journals.elsevier.com/european-urology-supplements/",
"www.journals.elsevier.com/evaluation-and-program-planning/",
"www.elsevier.com/journals/evidence-based-cardiovascular-medicine/1361-2611",
"www.elsevier.com/journals/evidence-based-healthcare-and-public-health/1744-2249",
"www.elsevier.com/journals/evidence-based-obstetrics-and-gynecology/1361-259x",
"www.journals.elsevier.com/evolution-and-human-behavior/",
"www.elsevier.com/journals/excerpta-medica-full-set-series/fs00-8549",
"www.journals.elsevier.com/experimental-and-molecular-pathology/",
"www.elsevier.com/journals/experimental-and-toxicologic-pathology/0940-2993",
"www.journals.elsevier.com/experimental-cell-research/",
"www.journals.elsevier.com/experimental-eye-research/",
"www.journals.elsevier.com/experimental-gerontology/",
"www.journals.elsevier.com/experimental-hematology/",
"www.journals.elsevier.com/experimental-neurology/",
"www.journals.elsevier.com/experimental-parasitology/",
"www.journals.elsevier.com/experimental-thermal-and-fluid-science/",
"www.journals.elsevier.com/expert-systems-with-applications/",
"www.journals.elsevier.com/explorations-in-economic-history/",
"www.journals.elsevier.com/explore-the-journal-of-science-and-healing/",
"www.elsevier.com/journals/expositiones-mathematicae/0723-0869",
"www.elsevier.com/journals/journal-europeen-des-urgences-et-de-reanimation/2211-4238",
"www.journals.elsevier.com/journal-of-econometrics/",
"www.journals.elsevier.com/journal-of-economic-behavior-and-organization/",
"www.journals.elsevier.com/journal-of-economic-dynamics-and-control/",
"www.journals.elsevier.com/journal-of-economic-psychology/",
"www.journals.elsevier.com/journal-of-economic-theory/",
"www.journals.elsevier.com/journal-of-economics-and-business/",
"www.journals.elsevier.com/journal-of-electroanalytical-chemistry/",
"www.elsevier.com/journals/journal-of-electroanalytical-chemistry-with-bioelectrochemistry-combined-subscription/fs00-6055",
"www.elsevier.com/journals/journal-of-electroanalytical-chemistry-with-bioelectrochemistry-and-electrochemistry-communications-combined-subscription/fs00-6040",
"www.journals.elsevier.com/journal-of-electrocardiology/",
"www.journals.elsevier.com/journal-of-electromyography-and-kinesiology/",
"www.journals.elsevier.com/journal-of-electron-spectroscopy-and-related-phenomena/",
"www.journals.elsevier.com/journal-of-electrostatics/",
"www.elsevier.com/journals/journal-of-emergency-medical-services-jems/0197-2510",
"www.journals.elsevier.com/journal-of-emergency-nursing/",
"www.journals.elsevier.com/journal-of-empirical-finance/",
"www.journals.elsevier.com/journal-of-endodontics/",
"www.elsevier.com/journals/journal-of-energy-chemistry/2095-4956",
"www.journals.elsevier.com/journal-of-engineering-and-technology-management/",
"www.journals.elsevier.com/journal-of-english-for-academic-purposes/",
"www.journals.elsevier.com/journal-of-environmental-chemical-engineering/",
"www.journals.elsevier.com/journal-of-environmental-economics-and-management/",
"www.journals.elsevier.com/journal-of-environmental-management/",
"www.journals.elsevier.com/journal-of-environmental-psychology/",
"www.journals.elsevier.com/journal-of-environmental-radioactivity/",
"www.elsevier.com/journals/journal-of-environmental-sciences/1001-0742",
"www.elsevier.com/journals/journal-of-epidemiology-and-global-health/2210-6006",
"www.journals.elsevier.com/journal-of-equine-veterinary-science/",
"www.journals.elsevier.com/journal-of-ethnopharmacology/",
"www.journals.elsevier.com/journal-of-eurasian-studies/",
"www.journals.elsevier.com/journal-of-evidence-based-dental-practice/",
"www.elsevier.com/journals/journal-of-exercise-science-and-fitness/1728-869x",
"www.journals.elsevier.com/journal-of-exotic-pet-medicine/",
"www.elsevier.com/journals/journal-of-experimental-and-clinical-medicine/1878-3317",
"www.elsevier.com/journals/journal-of-experimental-animal-science/0939-8600",
"www.journals.elsevier.com/journal-of-experimental-child-psychology/",
"www.journals.elsevier.com/journal-of-experimental-marine-biology-and-ecology/",
"www.journals.elsevier.com/journal-of-experimental-social-psychology/",
"www.journals.elsevier.com/journal-of-the-egyptian-mathematical-society/",
"www.elsevier.com/journals/journal-of-the-egyptian-national-cancer-institute/1110-0362",
"www.journals.elsevier.com/journal-of-the-european-ceramic-society/",
"www.elsevier.com/journals/the-egyptian-heart-journal/1110-2608",
"www.elsevier.com/journals/the-egyptian-journal-of-radiology-and-nuclear-medicine/0378-603x",
"www.journals.elsevier.com/the-egyptian-journal-of-remote-sensing-and-space-sciences/",
"www.elsevier.com/journals/the-egyptian-rheumatologist/1110-1164",
"www.journals.elsevier.com/the-electricity-journal/",
"www.journals.elsevier.com/the-journal-of-economic-asymmetries/",
"www.journals.elsevier.com/the-journal-of-emergency-medicine/",
"www.journals.elsevier.com/the-journal-of-the-economics-of-ageing/",
"www.elsevier.com/journals/facial-plastic-surgery-clinics-of-north-america/1064-7406",
"www.elsevier.com/journals/family-practice-news/0300-7073",
"www.elsevier.com/journals/farmaceuticos-de-atencion-primaria/2172-3761",
"www.elsevier.com/journals/farmacia-hospitalaria/1130-6343",
"www.elsevier.com/journals/farmacia-hospitalaria-english-edition/2173-5085",
"www.journals.elsevier.com/febs-letters/",
"www.journals.elsevier.com/febs-open-bio/",
"www.journals.elsevier.com/fertility-and-sterility/",
"www.elsevier.com/journals/feuillets-de-radiologie/0181-9801",
"www.journals.elsevier.com/field-crops-research/",
"www.journals.elsevier.com/field-mycology/",
"www.elsevier.com/journals/filtration-industry-analyst/1365-6937",
"www.elsevier.com/journals/filtrationseparation/0015-1882",
"www.journals.elsevier.com/finance-research-letters/",
"www.journals.elsevier.com/finite-elements-in-analysis-and-design/",
"www.journals.elsevier.com/finite-fields-and-their-applications/",
"www.journals.elsevier.com/fire-safety-journal/",
"www.elsevier.com/journals/firerescue-magazine/1094-0529",
"www.journals.elsevier.com/fish-and-shellfish-immunology/",
"www.journals.elsevier.com/fisheries-research/",
"www.elsevier.com/journals/fisioterapia/0211-5638",
"www.journals.elsevier.com/fitoterapia/",
"www.elsevier.com/journals/flora/0367-2530",
"www.journals.elsevier.com/flow-measurement-and-instrumentation/",
"www.elsevier.com/journals/fluid-abstracts-civil-engineering/0962-7170",
"www.elsevier.com/journals/fluid-abstracts-process-engineering/0962-7162",
"www.journals.elsevier.com/fluid-phase-equilibria/",
"www.elsevier.com/journals/fmc-formacion-medica-continuada-en-atencion-primaria/1134-2072",
"www.elsevier.com/journals/focus-on-catalysts/1351-4180",
"www.elsevier.com/journals/focus-on-pigments/0969-6210",
"www.elsevier.com/journals/focus-on-powder-coatings/1364-5439",
"www.elsevier.com/journals/focus-on-surfactants/1351-4210",
"www.journals.elsevier.com/food-and-bioproducts-processing/",
"www.journals.elsevier.com/food-and-chemical-toxicology/",
"www.journals.elsevier.com/food-bioscience/",
"www.journals.elsevier.com/food-chemistry/",
"www.journals.elsevier.com/food-control/",
"www.journals.elsevier.com/food-hydrocolloids/",
"www.journals.elsevier.com/food-microbiology/",
"www.journals.elsevier.com/food-policy/",
"www.journals.elsevier.com/food-quality-and-preference/",
"www.journals.elsevier.com/food-research-international/",
"www.journals.elsevier.com/food-science-and-human-wellness/",
"www.elsevier.com/journals/food-science-package/fs00-0174",
"www.journals.elsevier.com/food-structure/",
"www.elsevier.com/journals/foot-and-ankle-clinics/1083-7515",
"www.journals.elsevier.com/foot-and-ankle-surgery/",
"www.elsevier.com/journals/fooyin-journal-of-health-sciences/1877-8607",
"www.elsevier.com/journals/forensic-package/fs00-8144",
"www.elsevier.com/journals/forensic-science-abstracts-section-49-embase/0303-8459",
"www.journals.elsevier.com/forensic-science-international/",
"www.journals.elsevier.com/forensic-science-international-supplement-series/",
"www.journals.elsevier.com/forensic-science-international-genetics/",
"www.journals.elsevier.com/forensic-science-international-genetics-supplement-series/",
"www.journals.elsevier.com/forest-ecology-and-management/",
"www.elsevier.com/journals/forest-ecology-and-management-with-forest-policy-and-economics-combined-subscription/fs00-5554",
"www.journals.elsevier.com/forest-policy-and-economics/",
"www.elsevier.com/journals/formosan-journal-of-musculoskeletal-disorders/2210-7940",
"www.elsevier.com/journals/formosan-journal-of-surgery/1682-606x",
"www.journals.elsevier.com/free-radical-biology-and-medicine/",
"www.elsevier.com/journals/free-radicals-and-antioxidants/2231-2536",
"www.journals.elsevier.com/frontiers-in-neuroendocrinology/",
"www.journals.elsevier.com/frontiers-of-architectural-research/",
"www.elsevier.com/journals/fu-and-sprunggelenk/1619-9987",
"www.journals.elsevier.com/fuel/",
"www.journals.elsevier.com/fuel-and-energy-abstracts/",
"www.elsevier.com/journals/fuel-cells-bulletin/1464-2859",
"www.journals.elsevier.com/fuel-processing-technology/",
"www.journals.elsevier.com/fungal-biology/",
"www.journals.elsevier.com/fungal-biology-reviews/",
"www.journals.elsevier.com/fungal-ecology/",
"www.journals.elsevier.com/fungal-genetics-and-biology/",
"www.journals.elsevier.com/fusion-engineering-and-design/",
"www.journals.elsevier.com/future-generation-computer-systems/",
"www.journals.elsevier.com/futures/",
"www.journals.elsevier.com/fuzzy-sets-and-systems/",
"www.elsevier.com/journals/journal-for-nature-conservation/1617-1381",
"www.elsevier.com/journals/journal-francais-dophtalmologie/0181-5512",
"www.journals.elsevier.com/journal-of-family-business-strategy/",
"www.journals.elsevier.com/journal-of-financial-economics/",
"www.journals.elsevier.com/journal-of-financial-intermediation/",
"www.journals.elsevier.com/journal-of-financial-markets/",
"www.journals.elsevier.com/journal-of-financial-stability/",
"www.journals.elsevier.com/journal-of-fluency-disorders/",
"www.journals.elsevier.com/journal-of-fluids-and-structures/",
"www.journals.elsevier.com/journal-of-fluorine-chemistry/",
"www.journals.elsevier.com/journal-of-food-composition-and-analysis/",
"www.journals.elsevier.com/journal-of-food-engineering/",
"www.journals.elsevier.com/journal-of-forensic-and-legal-medicine/",
"www.journals.elsevier.com/journal-of-forensic-radiology-and-imaging/",
"www.elsevier.com/journals/journal-of-forest-economics/1104-6899",
"www.elsevier.com/journals/journal-of-fuel-chemistry-and-technology/1872-5813",
"www.journals.elsevier.com/journal-of-functional-analysis/",
"www.journals.elsevier.com/journal-of-functional-foods/",
"www.elsevier.com/journals/journal-of-the-formosan-medical-association/0929-6646",
"www.journals.elsevier.com/journal-of-the-franklin-institute/",
"www.journals.elsevier.com/the-foot/",
"www.elsevier.com/journals/the-foundation-years/1744-1889",
"www.journals.elsevier.com/the-journal-for-nurse-practitioners/",
"www.journals.elsevier.com/the-journal-of-foot-and-ankle-surgery/",
"www.elsevier.com/journals/gaceta-medica-de-bilbao/0304-4858",
"www.elsevier.com/journals/gaceta-sanitaria/0213-9111",
"www.journals.elsevier.com/gait-and-posture/",
"www.journals.elsevier.com/games-and-economic-behavior/",
"www.elsevier.com/journals/gastroenterologie-clinique-et-biologique/0399-8320",
"www.elsevier.com/journals/gastroenterologia-y-hepatologia/0210-5705",
"www.elsevier.com/journals/gastroenterologia-y-hepatologia-continuada/1578-1550",
"www.journals.elsevier.com/gastroenterology/",
"www.elsevier.com/journals/gastroenterology-section-48-embase/0031-3580",
"www.elsevier.com/journals/gastroenterology-clinics-of-north-america/0889-8553",
"www.journals.elsevier.com/gastrointestinal-endoscopy/",
"www.elsevier.com/journals/gastrointestinal-endoscopy-clinics-of-north-america/1052-5157",
"www.elsevier.com/journals/gastrointestinal-intervention/2213-1795",
"www.elsevier.com/journals/ge-jornal-portugues-de-gastrenterologia/0872-8178",
"www.journals.elsevier.com/gender-medicine/",
"www.journals.elsevier.com/gene/",
"www.journals.elsevier.com/gene-expression-patterns/",
"www.journals.elsevier.com/general-and-comparative-endocrinology/",
"www.journals.elsevier.com/general-hospital-psychiatry/",
"www.elsevier.com/journals/general-pathology-and-pathological-anatomy-section-5-embase/0014-4096",
"www.elsevier.com/journals/genomic-medicine-biomarkers-and-health-sciences/2211-4254",
"www.journals.elsevier.com/genomics/",
"www.journals.elsevier.com/genomics-data/",
"www.journals.elsevier.com/genomics-proteomics-and-bioinformatics/",
"www.elsevier.com/journals/geo-full-set-series/fs00-2235",
"www.elsevier.com/journals/geobios/0016-6995",
"www.journals.elsevier.com/geochimica-et-cosmochimica-acta/",
"www.journals.elsevier.com/geoderma/",
"www.journals.elsevier.com/geoforum/",
"www.elsevier.com/journals/geographical-abstracts-human-geography/0953-9611",
"www.elsevier.com/journals/geographical-abstracts-physical-geography/0954-0504",
"www.elsevier.com/journals/geography-and-natural-resources/1875-3728",
"www.elsevier.com/journals/geological-abstracts/0954-0512",
"www.elsevier.com/journals/geomechanics-abstracts/1365-1617",
"www.journals.elsevier.com/geomorphology/",
"www.journals.elsevier.com/geoscience-frontiers/",
"www.elsevier.com/journals/geoscience-package/fs00-1014",
"www.journals.elsevier.com/geotextiles-and-geomembranes/",
"www.journals.elsevier.com/geothermics/",
"www.elsevier.com/journals/geriatric-mental-health-care/2212-9693",
"www.journals.elsevier.com/geriatric-nursing/",
"www.elsevier.com/journals/gerontology-and-geriatrics-section-20-embase/0014-424x",
"www.journals.elsevier.com/gi-and-hepatology-news/",
"www.elsevier.com/journals/giornale-italiano-di-endodonzia/1121-4171",
"www.journals.elsevier.com/global-and-planetary-change/",
"www.journals.elsevier.com/global-environmental-change/",
"www.journals.elsevier.com/global-finance-journal/",
"www.journals.elsevier.com/global-food-security/",
"www.journals.elsevier.com/global-heart/",
"www.journals.elsevier.com/gondwana-research/",
"www.journals.elsevier.com/government-information-quarterly/",
"www.journals.elsevier.com/graphical-models/",
"www.journals.elsevier.com/growth-hormone-and-igf-research/",
"www.elsevier.com/journals/gynecologie-obstetrique-and-fertilite/1297-9589",
"www.elsevier.com/journals/gyn-obs/0240-172x",
"www.journals.elsevier.com/gynecologic-oncology/",
"www.journals.elsevier.com/gynecologic-oncology-case-reports/",
"www.elsevier.com/journals/gynecology-and-minimally-invasive-therapy/2213-3070",
"www.elsevier.com/journals/journal-of-gastrointestinal-surgery/1091-255x",
"www.journals.elsevier.com/journal-of-genetic-engineering-and-biotechnology/",
"www.journals.elsevier.com/journal-of-genetics-and-genomics/",
"www.journals.elsevier.com/journal-of-geochemical-exploration/",
"www.journals.elsevier.com/journal-of-geodynamics/",
"www.elsevier.com/journals/journal-of-geodynamics-with-journal-of-structural-geology-combined-subscription/fs00-1055",
"www.journals.elsevier.com/journal-of-geometry-and-physics/",
"www.journals.elsevier.com/journal-of-geriatric-oncology/",
"www.journals.elsevier.com/journal-of-global-antimicrobial-resistance/",
"www.journals.elsevier.com/journal-of-great-lakes-research/",
"www.elsevier.com/journals/the-gold-sheet/1530-6194",
"www.elsevier.com/journals/the-gray-sheet/1530-1214",
"www.journals.elsevier.com/habitat-international/",
"www.elsevier.com/journals/hand-clinics/0749-0712",
"www.journals.elsevier.com/harmful-algae/",
"www.journals.elsevier.com/hbrc-journal/",
"www.journals.elsevier.com/health-and-place/",
"www.elsevier.com/journals/health-and-place-with-social-science-and-medicine-combined-subscription/fs00-1027",
"www.elsevier.com/journals/health-news-daily/1042-2781",
"www.journals.elsevier.com/health-outcomes-research-in-medicine/",
"www.journals.elsevier.com/health-policy/",
"www.journals.elsevier.com/health-policy-and-technology/",
"www.elsevier.com/journals/health-policy-economics-and-management-section-36-embase/0921-8068",
"www.journals.elsevier.com/healthcare-management-forum/",
"www.journals.elsevier.com/healthcare-the-journal-of-delivery-science-and-innovation/",
"www.journals.elsevier.com/hearing-research/",
"www.journals.elsevier.com/heart-and-lung-the-journal-of-acute-and-critical-care/",
"www.elsevier.com/journals/heart-failure-clinics/1551-7136",
"www.journals.elsevier.com/heart-rhythm/",
"www.elsevier.com/journals/heart-lung-and-circulation/1443-9506",
"www.elsevier.com/journals/hematology-section-25-embase/0014-4290",
"www.elsevier.com/journals/hematology-oncology-and-stem-cell-therapy/1658-3876",
"www.elsevier.com/journals/hematology-oncology-clinics-of-north-america/0889-8588",
"www.elsevier.com/journals/hepatobiliary-and-pancreatic-diseases-international/1499-3872",
"www.elsevier.com/journals/hepatology-research/1386-6346",
"www.journals.elsevier.com/heterocycles/",
"www.journals.elsevier.com/high-energy-density-physics/",
"www.elsevier.com/journals/hipertension-y-riesgo-vascular/1889-1837",
"www.journals.elsevier.com/historia-mathematica/",
"www.journals.elsevier.com/history-of-european-ideas/",
"www.elsevier.com/journals/hiv-and-aids-review/1730-1270",
"www.journals.elsevier.com/homeopathy/",
"www.elsevier.com/journals/homo/0018-442x",
"www.elsevier.com/journals/hong-kong-journal-of-nephrology/1561-5413",
"www.elsevier.com/journals/hong-kong-journal-of-occupational-therapy/1569-1861",
"www.elsevier.com/journals/hong-kong-physiotherapy-journal/1013-7025",
"www.journals.elsevier.com/hormones-and-behavior/",
"www.elsevier.com/journals/hospital-doctor/0262-3145",
"www.elsevier.com/journals/hospital-medicine-clinics/2211-5943",
"www.elsevier.com/journals/human-genetics-section-22-embase/0014-4266",
"www.journals.elsevier.com/human-immunology/",
"www.journals.elsevier.com/human-movement-science/",
"www.journals.elsevier.com/human-pathology/",
"www.journals.elsevier.com/human-resource-management-review/",
"www.journals.elsevier.com/hydrometallurgy/",
"www.journals.elsevier.com/journal-of-hand-surgery-american-volume/",
"www.elsevier.com/journals/journal-of-hand-surgery-european-volume/0266-7681",
"www.journals.elsevier.com/journal-of-hand-therapy/",
"www.journals.elsevier.com/journal-of-hazardous-materials/",
"www.journals.elsevier.com/journal-of-health-economics/",
"www.journals.elsevier.com/journal-of-hepatology/",
"www.elsevier.com/journals/journal-of-herbal-medicine/2210-8033",
"www.journals.elsevier.com/journal-of-historical-geography/",
"www.journals.elsevier.com/journal-of-hospital-infection/",
"www.elsevier.com/journals/journal-of-hospitality-and-tourism-management/1447-6770",
"www.journals.elsevier.com/journal-of-hospitality-leisure-sport-and-tourism-education-johlste/",
"www.journals.elsevier.com/journal-of-housing-economics/",
"www.journals.elsevier.com/journal-of-human-evolution/",
"www.journals.elsevier.com/journal-of-hydro-environment-research/",
"www.elsevier.com/journals/journal-of-hydrodynamics/1001-6058",
"www.journals.elsevier.com/journal-of-hydrology/",
"www.journals.elsevier.com/the-history-of-the-family/",
"www.journals.elsevier.com/the-journal-of-heart-and-lung-transplantation/",
"www.journals.elsevier.com/the-journal-of-high-technology-management-research/",
"www.journals.elsevier.com/iatss-research/",
"www.elsevier.com/journals/ibs-immuno-analyse-and-biologie-specialisee/0923-2532",
"www.journals.elsevier.com/icarus/",
"www.journals.elsevier.com/ieri-procedia/",
"www.journals.elsevier.com/ifac-papers-online/",
"www.elsevier.com/journals/iii-vs-review/0961-1290",
"www.journals.elsevier.com/iimb-management-review/",
"www.journals.elsevier.com/image-and-vision-computing/",
"www.elsevier.com/journals/imagen-diagnostica/2171-3669",
"www.elsevier.com/journals/imagerie-de-la-femme/1776-9817",
"www.elsevier.com/journals/immunity/1074-7613",
"www.elsevier.com/journals/immunobiology/0171-2985",
"www.elsevier.com/journals/immunology-and-allergy-clinics-of-north-america/0889-8561",
"www.journals.elsevier.com/immunology-letters/",
"www.elsevier.com/journals/immunology-serology-and-transplantation-section-26-embase/0014-4304",
"www.elsevier.com/journals/implantodontie/1158-1336",
"www.elsevier.com/journals/in-vivo/0733-1398",
"www.journals.elsevier.com/indagationes-mathematicae/",
"www.elsevier.com/journals/indian-heart-journal/0019-4832",
"www.elsevier.com/journals/indian-journal-of-dentistry/0975-962x",
"www.elsevier.com/journals/indian-journal-of-rheumatology/0973-3698",
"www.elsevier.com/journals/indian-journal-of-transplantation/2212-0017",
"www.journals.elsevier.com/industrial-crops-and-products/",
"www.journals.elsevier.com/industrial-marketing-management/",
"www.journals.elsevier.com/infant-behavior-and-development/",
"www.elsevier.com/journals/infectio/0123-9392",
"www.journals.elsevier.com/infection-genetics-and-evolution/",
"www.elsevier.com/journals/infectious-disease-clinics-of-north-america/0891-5520",
"www.journals.elsevier.com/information-and-computation/",
"www.journals.elsevier.com/information-and-management/",
"www.journals.elsevier.com/information-and-organization/",
"www.journals.elsevier.com/information-and-software-technology/",
"www.journals.elsevier.com/information-economics-and-policy/",
"www.journals.elsevier.com/information-fusion/",
"www.journals.elsevier.com/information-processing-and-management/",
"www.journals.elsevier.com/information-processing-letters/",
"www.journals.elsevier.com/information-sciences/",
"www.journals.elsevier.com/information-security-technical-report/",
"www.journals.elsevier.com/information-systems/",
"www.elsevier.com/journals/infosecurity/1754-4548",
"www.journals.elsevier.com/infrared-physics-and-technology/",
"www.journals.elsevier.com/injury/",
"www.journals.elsevier.com/injury-extra/",
"www.elsevier.com/journals/inmunologia/0213-9626",
"www.journals.elsevier.com/innovative-food-science-and-emerging-technologies/",
"www.journals.elsevier.com/inorganic-chemistry-communications/",
"www.journals.elsevier.com/inorganica-chimica-acta/",
"www.journals.elsevier.com/insect-biochemistry-and-molecular-biology/",
"www.elsevier.com/journals/insect-biochemistry-and-molecular-biology-with-journal-of-insect-physiology-combined-subscription/fs00-0406",
"www.elsevier.com/journals/insulin/1557-0843",
"www.journals.elsevier.com/insurance-mathematics-and-economics/",
"www.journals.elsevier.com/integration-the-vlsi-journal/",
"www.elsevier.com/journals/integrative-medicine-research/2213-4220",
"www.journals.elsevier.com/intelligence/",
"www.journals.elsevier.com/intensive-and-critical-care-nursing/",
"www.elsevier.com/journals/inter-bloc/0242-3960",
"www.journals.elsevier.com/intermetallics/",
"www.elsevier.com/journals/internal-medicine-section-6-embase/0014-410x",
"www.elsevier.com/journals/internal-medicine-news/1097-8690",
"www.journals.elsevier.com/international-biodeterioration-and-biodegradation/",
"www.journals.elsevier.com/international-business-review/",
"www.elsevier.com/journals/international-business-review-with-long-range-planning-combined-subscription/fs00-0140",
"www.journals.elsevier.com/international-communications-in-heat-and-mass-transfer/",
"www.elsevier.com/journals/international-communications-in-heat-and-mass-transfer-with-international-journal-of-heat-and-mass-transfer-combined-subscription/fs00-0680",
"www.elsevier.com/journals/international-congress-series/0531-5131",
"www.journals.elsevier.com/international-dairy-journal/",
"www.elsevier.com/journals/international-development-abstracts/0262-0855",
"www.elsevier.com/journals/international-economics/2110-7017",
"www.journals.elsevier.com/international-emergency-nursing/",
"www.journals.elsevier.com/international-immunopharmacology/",
"www.journals.elsevier.com/international-information-and-library-review/",
"www.journals.elsevier.com/international-journal-for-parasitology/",
"www.journals.elsevier.com/international-journal-for-parasitology-drugs-and-drug-resistance/",
"www.journals.elsevier.com/international-journal-for-parasitology-parasites-and-wildlife/",
"www.journals.elsevier.com/international-journal-of-accounting-information-systems/",
"www.journals.elsevier.com/international-journal-of-adhesion-and-adhesives/",
"www.elsevier.com/journals/international-journal-of-adipose-tissue-and-stem-cells/2211-9116",
"www.journals.elsevier.com/international-journal-of-antimicrobial-agents/",
"www.journals.elsevier.com/international-journal-of-applied-earth-observation-and-geoinformation/",
"www.journals.elsevier.com/international-journal-of-approximate-reasoning/",
"www.elsevier.com/journals/international-journal-of-aromatherapy/0962-4562",
"www.journals.elsevier.com/international-journal-of-biological-macromolecules/",
"www.journals.elsevier.com/international-journal-of-cardiology/",
"www.elsevier.com/journals/international-journal-of-chemical-and-analytical-science/0976-1209",
"www.journals.elsevier.com/international-journal-of-child-computer-interaction/",
"www.journals.elsevier.com/international-journal-of-coal-geology/",
"www.journals.elsevier.com/international-journal-of-critical-infrastructure-protection/",
"www.journals.elsevier.com/international-journal-of-developmental-neuroscience/",
"www.journals.elsevier.com/international-journal-of-disaster-risk-reduction/",
"www.journals.elsevier.com/international-journal-of-drug-policy/",
"www.journals.elsevier.com/international-journal-of-educational-development/",
"www.journals.elsevier.com/international-journal-of-educational-research/",
"www.elsevier.com/journals/international-journal-of-educational-research-including-learning-and-instruction-combined-subscription/fs00-0491",
"www.journals.elsevier.com/international-journal-of-electrical-power-and-energy-systems/",
"www.journals.elsevier.com/international-journal-of-engineering-science/",
"www.journals.elsevier.com/international-journal-of-fatigue/",
"www.journals.elsevier.com/international-journal-of-food-microbiology/",
"www.journals.elsevier.com/international-journal-of-forecasting/",
"www.journals.elsevier.com/international-journal-of-gastronomy-and-food-science/",
"www.elsevier.com/journals/international-journal-of-gerontology/1873-9598",
"www.journals.elsevier.com/international-journal-of-greenhouse-gas-control/",
"www.journals.elsevier.com/international-journal-of-gynecology-and-obstetrics/",
"www.journals.elsevier.com/international-journal-of-heat-and-fluid-flow/",
"www.journals.elsevier.com/international-journal-of-heat-and-mass-transfer/",
"www.journals.elsevier.com/international-journal-of-hospitality-management/",
"www.journals.elsevier.com/international-journal-of-human-computer-studies/",
"www.journals.elsevier.com/international-journal-of-hydrogen-energy/",
"www.elsevier.com/journals/international-journal-of-hygiene-and-environmental-health/1438-4639",
"www.journals.elsevier.com/international-journal-of-impact-engineering/",
"www.journals.elsevier.com/international-journal-of-industrial-ergonomics/",
"www.journals.elsevier.com/international-journal-of-industrial-organization/",
"www.journals.elsevier.com/international-journal-of-infectious-diseases/",
"www.journals.elsevier.com/international-journal-of-information-management/",
"www.journals.elsevier.com/international-journal-of-intercultural-relations/",
"www.journals.elsevier.com/international-journal-of-law-and-psychiatry/",
"www.journals.elsevier.com/international-journal-of-law-crime-and-justice/",
"www.journals.elsevier.com/international-journal-of-machine-tools-and-manufacture/",
"www.journals.elsevier.com/international-journal-of-mass-spectrometry/",
"www.journals.elsevier.com/international-journal-of-mechanical-sciences/",
"www.journals.elsevier.com/international-journal-of-medical-informatics/",
"www.elsevier.com/journals/international-journal-of-medical-microbiology/1438-4221",
"www.journals.elsevier.com/international-journal-of-mineral-processing/",
"www.elsevier.com/journals/international-journal-of-minerals-metallurgy-and-materials/1674-4799",
"www.journals.elsevier.com/international-journal-of-mining-science-and-technology/",
"www.journals.elsevier.com/international-journal-of-multiphase-flow/",
"www.elsevier.com/journals/international-journal-of-mycobacteriology/2212-5531",
"www.journals.elsevier.com/international-journal-of-non-linear-mechanics/",
"www.journals.elsevier.com/international-journal-of-nursing-studies/",
"www.journals.elsevier.com/international-journal-of-obstetric-anesthesia/",
"www.journals.elsevier.com/international-journal-of-oral-and-maxillofacial-surgery/",
"www.journals.elsevier.com/international-journal-of-orthopaedic-and-trauma-nursing/",
"www.journals.elsevier.com/international-journal-of-osteopathic-medicine/",
"www.journals.elsevier.com/international-journal-of-paleopathology/",
"www.journals.elsevier.com/international-journal-of-pediatric-otorhinolaryngology/",
"www.journals.elsevier.com/international-journal-of-pediatric-otorhinolaryngology-extra/",
"www.journals.elsevier.com/international-journal-of-pharmaceutics/",
"www.journals.elsevier.com/international-journal-of-plasticity/",
"www.journals.elsevier.com/international-journal-of-pressure-vessels-and-piping/",
"www.journals.elsevier.com/international-journal-of-production-economics/",
"www.journals.elsevier.com/international-journal-of-project-management/",
"www.journals.elsevier.com/international-journal-of-psychophysiology/",
"www.journals.elsevier.com/international-journal-of-radiation-oncology-biology-physics/",
"www.journals.elsevier.com/international-journal-of-refractory-metals-and-hard-materials/",
"www.journals.elsevier.com/international-journal-of-refrigeration/",
"www.journals.elsevier.com/international-journal-of-research-in-marketing/",
"www.journals.elsevier.com/international-journal-of-rock-mechanics-and-mining-sciences/",
"www.elsevier.com/journals/international-journal-of-sediment-research/1001-6279",
"www.journals.elsevier.com/international-journal-of-solids-and-structures/",
"www.journals.elsevier.com/international-journal-of-surgery/",
"www.journals.elsevier.com/international-journal-of-surgery-case-reports/",
"www.journals.elsevier.com/international-journal-of-sustainable-built-environment/",
"www.journals.elsevier.com/international-journal-of-thermal-sciences/",
"www.elsevier.com/journals/international-medical-review-on-down-syndrome/2171-9748",
"www.elsevier.com/journals/international-orthodontics/1761-7227",
"www.journals.elsevier.com/international-review-of-economics-and-finance/",
"www.journals.elsevier.com/international-review-of-economics-education/",
"www.journals.elsevier.com/international-review-of-financial-analysis/",
"www.journals.elsevier.com/international-review-of-law-and-economics/",
"www.elsevier.com/journals/interventional-cardiology-clinics/2211-7458",
"www.elsevier.com/journals/investigaciones-de-historia-economica-economic-history-research/1698-6989",
"www.elsevier.com/journals/investigaciones-europeas-de-direccion-y-economia-de-la-empresa/1135-2523",
"www.elsevier.com/journals/irbm/1959-0318",
"www.elsevier.com/journals/irbm-news/1959-7568",
"www.journals.elsevier.com/isa-transactions/",
"www.journals.elsevier.com/isprs-journal-of-photogrammetry-and-remote-sensing/",
"www.journals.elsevier.com/journal-of-immunological-methods/",
"www.elsevier.com/journals/journal-of-indian-college-of-cardiology/1561-8811",
"www.journals.elsevier.com/journal-of-industrial-and-engineering-chemistry/",
"www.journals.elsevier.com/journal-of-infection/",
"www.elsevier.com/journals/journal-of-infection-and-public-health/1876-0341",
"www.journals.elsevier.com/journal-of-informetrics/",
"www.journals.elsevier.com/journal-of-inorganic-biochemistry/",
"www.journals.elsevier.com/journal-of-insect-physiology/",
"www.elsevier.com/journals/journal-of-integrative-agriculture/2095-3119",
"www.journals.elsevier.com/journal-of-interactive-marketing/",
"www.journals.elsevier.com/journal-of-international-accounting-auditing-and-taxation/",
"www.journals.elsevier.com/journal-of-international-economics/",
"www.journals.elsevier.com/journal-of-international-financial-markets-institutions-and-money/",
"www.journals.elsevier.com/journal-of-international-management/",
"www.journals.elsevier.com/journal-of-international-money-and-finance/",
"www.journals.elsevier.com/journal-of-invertebrate-pathology/",
"www.elsevier.com/journals/journal-of-iron-and-steel-research-international/1006-706x",
"www.elsevier.com/journals/the-indian-journal-of-neurotrauma/0973-0508",
"www.journals.elsevier.com/the-international-journal-of-accounting/",
"www.journals.elsevier.com/the-international-journal-of-biochemistry-and-cell-biology/",
"www.journals.elsevier.com/the-international-journal-of-management-education/",
"www.journals.elsevier.com/the-international-journal-of-spine-surgery/",
"www.journals.elsevier.com/the-internet-and-higher-education/",
"www.journals.elsevier.com/jacc-journal-of-the-american-college-of-cardiology/",
"www.journals.elsevier.com/jacc-cardiovascular-imaging/",
"www.journals.elsevier.com/jacc-cardiovascular-interventions/",
"www.journals.elsevier.com/jacc-heart-failure/",
"www.journals.elsevier.com/japan-and-the-world-economy/",
"www.elsevier.com/journals/japanese-dental-science-review/1882-7616",
"www.elsevier.com/journals/jcc-open/2212-0149",
"www.elsevier.com/journals/joint-bone-spine/1297-319x",
"www.journals.elsevier.com/journal-of-the-japanese-and-international-economies/",
"www.journals.elsevier.com/jvir-journal-of-vascular-and-interventional-radiology/",
"www.journals.elsevier.com/journal-of-king-saud-university-computer-and-information-sciences/",
"www.journals.elsevier.com/journal-of-king-saud-university-engineering-sciences/",
"www.journals.elsevier.com/journal-of-king-saud-university-languages-and-translation/",
"www.journals.elsevier.com/journal-of-king-saud-university-science/",
"www.journals.elsevier.com/journal-of-the-korean-statistical-society/",
"www.elsevier.com/journals/kidney-research-and-clinical-practice/2211-9132",
"www.elsevier.com/journals/kinesitherapie-la-revue/1779-0123",
"www.elsevier.com/journals/king-saud-university-journal-of-dental-science/2210-8157",
"www.journals.elsevier.com/knowledge-based-systems/",
"www.elsevier.com/journals/komplementare-und-integrative-medizin/1863-8678",
"www.elsevier.com/journals/krankenhaus-hygiene-infektionsverhutung/0720-3373",
"www.elsevier.com/journals/the-kaohsiung-journal-of-medical-sciences/1607-551x",
"www.journals.elsevier.com/the-knee/",
"www.journals.elsevier.com/journal-of-loss-prevention-in-the-process-industries/",
"www.journals.elsevier.com/journal-of-luminescence/",
"www.elsevier.com/journals/levolution-psychiatrique/0014-3855",
"www.elsevier.com/journals/laide-soignante/1166-3413",
"www.elsevier.com/journals/lanthropologie/0003-5521",
"www.elsevier.com/journals/lencephale/0013-7006",
"www.elsevier.com/journals/logos-interdisziplinar-in-deutscher-sprache-in-german/0944-405x",
"www.journals.elsevier.com/labour-economics/",
"www.journals.elsevier.com/land-use-policy/",
"www.journals.elsevier.com/landscape-and-urban-planning/",
"www.journals.elsevier.com/language-and-communication/",
"www.elsevier.com/journals/language-and-communication-with-language-sciences-combined-subscription/fs00-1016",
"www.journals.elsevier.com/language-sciences/",
"www.elsevier.com/journals/law-officers-magazine/1553-9555",
"www.journals.elsevier.com/learning-and-individual-differences/",
"www.journals.elsevier.com/learning-and-instruction/",
"www.journals.elsevier.com/learning-and-motivation/",
"www.journals.elsevier.com/learning-culture-and-social-interaction/",
"www.journals.elsevier.com/legal-medicine/",
"www.journals.elsevier.com/leukemia-research/",
"www.journals.elsevier.com/leukemia-research-reports/",
"www.journals.elsevier.com/library-and-information-science-research/",
"www.journals.elsevier.com/library-collections-acquisitions-and-technical-services/",
"www.journals.elsevier.com/life-sciences/",
"www.elsevier.com/journals/limnologica/0075-9511",
"www.journals.elsevier.com/linear-algebra-and-its-applications/",
"www.journals.elsevier.com/lingua/",
"www.journals.elsevier.com/linguistics-and-education/",
"www.journals.elsevier.com/lithos/",
"www.journals.elsevier.com/livestock-science/",
"www.journals.elsevier.com/long-range-planning/",
"www.journals.elsevier.com/lung-cancer/",
"www.journals.elsevier.com/lwt-food-science-and-technology/",
"www.elsevier.com/journals/the-journal-of-laboratory-and-clinical-medicine/0022-2143",
"www.journals.elsevier.com/the-journal-of-logic-and-algebraic-programming/",
"www.journals.elsevier.com/the-lancet/",
"www.journals.elsevier.com/the-lancet-north-american-edition/",
"www.elsevier.com/journals/the-lancet-diabetes-and-endocrinology/2213-8587",
"www.journals.elsevier.com/the-lancet-infectious-diseases/",
"www.journals.elsevier.com/the-lancet-neurology/",
"www.journals.elsevier.com/the-lancet-oncology/",
"www.elsevier.com/journals/the-lancet-respiratory-medicine/2213-2600",
"www.elsevier.com/journals/the-latest-word-the-bimonthly-newsletter-for-medical-transcriptionists/1067-716x",
"www.journals.elsevier.com/the-leadership-quarterly/",
"www.journals.elsevier.com/journal-of-macroeconomics/",
"www.elsevier.com/journals/journal-of-magnesium-and-alloys/2213-9567",
"www.journals.elsevier.com/journal-of-magnetic-resonance/",
"www.journals.elsevier.com/journal-of-magnetism-and-magnetic-materials/",
"www.journals.elsevier.com/journal-of-manipulative-and-physiological-therapeutics/",
"www.journals.elsevier.com/journal-of-manufacturing-processes/",
"www.journals.elsevier.com/journal-of-manufacturing-systems/",
"www.elsevier.com/journals/journal-of-manufacturing-systems-with-journal-of-manufacturing-processes-combined-subscription/fs00-4083",
"www.journals.elsevier.com/journal-of-marine-and-island-cultures/",
"www.journals.elsevier.com/journal-of-marine-systems/",
"www.journals.elsevier.com/journal-of-materials-processing-technology/",
"www.elsevier.com/journals/journal-of-materials-research-and-technology/2238-7854",
"www.elsevier.com/journals/journal-of-materials-science-and-technology/1005-0302",
"www.journals.elsevier.com/journal-of-mathematical-analysis-and-applications/",
"www.journals.elsevier.com/journal-of-mathematical-economics/",
"www.journals.elsevier.com/journal-of-mathematical-psychology/",
"www.elsevier.com/journals/journal-of-medical-colleges-of-pla/1000-1948",
"www.elsevier.com/journals/journal-of-medical-hypotheses-and-ideas/2251-7294",
"www.journals.elsevier.com/journal-of-medical-imaging-and-radiation-sciences/",
"www.elsevier.com/journals/journal-of-medical-ultrasound/0929-6441",
"www.journals.elsevier.com/journal-of-medieval-history/",
"www.journals.elsevier.com/journal-of-membrane-science/",
"www.journals.elsevier.com/journal-of-memory-and-language/",
"www.journals.elsevier.com/journal-of-mens-health/",
"www.journals.elsevier.com/journal-of-microbiological-methods/",
"www.elsevier.com/journals/journal-of-microbiology-immunology-and-infection/1684-1182",
"www.elsevier.com/journals/journal-of-microscopy-and-ultrastructure/2213-879x",
"www.elsevier.com/journals/journal-of-midwifery-and-womens-health/1526-9523",
"www.journals.elsevier.com/journal-of-minimally-invasive-gynecology/",
"www.journals.elsevier.com/journal-of-molecular-and-cellular-cardiology/",
"www.journals.elsevier.com/journal-of-molecular-biology/",
"www.elsevier.com/journals/journal-of-molecular-catalysis-ab-combined-subscription/fs00-0537",
"www.journals.elsevier.com/journal-of-molecular-catalysis-a-chemical/",
"www.journals.elsevier.com/journal-of-molecular-catalysis-b-enzymatic/",
"www.journals.elsevier.com/journal-of-molecular-graphics-and-modelling/",
"www.journals.elsevier.com/journal-of-molecular-liquids/",
"www.journals.elsevier.com/journal-of-molecular-spectroscopy/",
"www.journals.elsevier.com/journal-of-molecular-structure/",
"www.elsevier.com/journals/journal-of-molecular-structure-with-computational-and-theoretical-chemistry-combined-subscription/fs00-0061",
"www.elsevier.com/journals/journal-of-molecular-structure-theochem/0166-1280",
"www.journals.elsevier.com/journal-of-monetary-economics/",
"www.journals.elsevier.com/journal-of-multinational-financial-management/",
"www.journals.elsevier.com/journal-of-multivariate-analysis/",
"www.journals.elsevier.com/journal-of-the-mechanical-behavior-of-biomedical-materials/",
"www.journals.elsevier.com/journal-of-the-mechanics-and-physics-of-solids/",
"www.elsevier.com/journals/medecine-and-droit/1246-7391",
"www.elsevier.com/journals/medecine-and-longevite/1875-7170",
"www.elsevier.com/journals/medecine-des-maladies-metaboliques/1957-2557",
"www.elsevier.com/journals/medecine-du-sommeil/1769-4493",
"www.elsevier.com/journals/medecine-et-maladies-infectieuses/0399-077x",
"www.elsevier.com/journals/medecine-nucleaire-imagerie-fonctionnelle-et-metabolique/0928-1258",
"www.elsevier.com/journals/medecine-palliative/1636-6522",
"www.elsevier.com/journals/metiers-de-la-petite-enfance/1258-780x",
"www.journals.elsevier.com/magnetic-resonance-imaging/",
"www.elsevier.com/journals/magnetic-resonance-imaging-clinics-of-north-america/1064-9689",
"www.elsevier.com/journals/mammalian-biology/1616-5047",
"www.journals.elsevier.com/management-accounting-research/",
"www.journals.elsevier.com/manual-therapy/",
"www.journals.elsevier.com/manufacturing-letters/",
"www.journals.elsevier.com/marine-and-petroleum-geology/",
"www.journals.elsevier.com/marine-chemistry/",
"www.journals.elsevier.com/marine-environmental-research/",
"www.journals.elsevier.com/marine-genomics/",
"www.journals.elsevier.com/marine-geology/",
"www.journals.elsevier.com/marine-micropaleontology/",
"www.journals.elsevier.com/marine-policy/",
"www.journals.elsevier.com/marine-pollution-bulletin/",
"www.journals.elsevier.com/marine-structures/",
"www.journals.elsevier.com/materials-and-design/",
"www.journals.elsevier.com/materials-characterization/",
"www.journals.elsevier.com/materials-chemistry-and-physics/",
"www.journals.elsevier.com/materials-letters/",
"www.journals.elsevier.com/materials-research-bulletin/",
"www.elsevier.com/journals/materials-science-and-engineering-a-with-r-reports-combined-subscription/fs00-6043",
"www.elsevier.com/journals/materials-science-and-engineering-b-with-r-reports-combined-subscription/fs00-6044",
"www.elsevier.com/journals/materials-science-and-engineering-a-b-c-and-r-reports-combined-subscription/fs00-6042",
"www.journals.elsevier.com/materials-science-and-engineering-a/",
"www.journals.elsevier.com/materials-science-and-engineering-b/",
"www.journals.elsevier.com/materials-science-and-engineering-c/",
"www.journals.elsevier.com/materials-science-and-engineering-r-reports/",
"www.journals.elsevier.com/materials-science-in-semiconductor-processing/",
"www.elsevier.com/journals/materials-science-in-semiconductor-processing-with-solid-state-electronics-combined-subscription/fs00-1058",
"www.journals.elsevier.com/materials-today/",
"www.journals.elsevier.com/mathematical-and-computer-modelling/",
"www.journals.elsevier.com/mathematical-biosciences/",
"www.journals.elsevier.com/mathematical-social-sciences/",
"www.journals.elsevier.com/mathematics-and-computers-in-simulation/",
"www.elsevier.com/journals/mathematics-and-computers-in-simulation-with-applied-numerical-mathematics-combined-subscription/fs00-0085",
"www.journals.elsevier.com/matrix-biology/",
"www.journals.elsevier.com/maturitas/",
"www.journals.elsevier.com/mayo-clinic-proceedings/",
"www.journals.elsevier.com/measurement/",
"www.journals.elsevier.com/meat-science/",
"www.journals.elsevier.com/mechanical-systems-and-signal-processing/",
"www.journals.elsevier.com/mechanics-of-materials/",
"www.journals.elsevier.com/mechanics-research-communications/",
"www.journals.elsevier.com/mechanism-and-machine-theory/",
"www.journals.elsevier.com/mechanisms-of-ageing-and-development/",
"www.elsevier.com/journals/mechanisms-of-ageing-and-development-with-ageing-research-reviews-combined-subscription/fs00-8146",
"www.journals.elsevier.com/mechanisms-of-development/",
"www.elsevier.com/journals/mechanisms-of-development-with-gene-expression-patterns-combined-subscription/fs-8150",
"www.journals.elsevier.com/mechatronics/",
"www.elsevier.com/journals/medical-clinics-of-north-america/0025-7125",
"www.journals.elsevier.com/medical-dosimetry/",
"www.journals.elsevier.com/medical-engineering-and-physics/",
"www.journals.elsevier.com/medical-hypotheses/",
"www.journals.elsevier.com/medical-image-analysis/",
"www.elsevier.com/journals/medical-journal-armed-forces-india/0377-1237",
"www.elsevier.com/journals/medical-laser-application/1615-1615",
"www.journals.elsevier.com/medical-mycology-case-reports/",
"www.elsevier.com/journals/medical-photonics/2213-8846",
"www.elsevier.com/journals/medicina-clinica/0025-7753",
"www.elsevier.com/journals/medicina-intensiva/0210-5691",
"www.elsevier.com/journals/medicina-intensiva-english-edition/2173-5727",
"www.elsevier.com/journals/medicina-paliativa/1134-248x",
"www.elsevier.com/journals/medicine/1357-3039",
"www.elsevier.com/journals/medicine-programa-de-formacion-medica-continuada-acreditado/0304-5412",
"www.elsevier.com/journals/membrane-technology/0958-2118",
"www.journals.elsevier.com/mendeleev-communications/",
"www.elsevier.com/journals/mental-health-and-prevention/2212-6570",
"www.journals.elsevier.com/mental-health-and-physical-activity/",
"www.journals.elsevier.com/metabolic-engineering/",
"www.journals.elsevier.com/metabolism/",
"www.elsevier.com/journals/metal-finishing/0026-0576",
"www.elsevier.com/journals/metal-powder-report/0026-0657",
"www.journals.elsevier.com/metamaterials/",
"www.journals.elsevier.com/methods/",
"www.journals.elsevier.com/methods-in-oceanography/",
"www.elsevier.com/journals/mic-minimal-invasive-chirurgie/0941-455x",
"www.journals.elsevier.com/microbes-and-infection/",
"www.elsevier.com/journals/microbes-and-infection-with-research-in-microbiology-combined-subscription/fs00-9098",
"www.journals.elsevier.com/microbial-pathogenesis/",
"www.elsevier.com/journals/microbiological-research/0944-5013",
"www.elsevier.com/journals/microbiology-bacteriology-mycology-parasitology-and-virology-section-4-embase/0927-2771",
"www.journals.elsevier.com/microchemical-journal/",
"www.journals.elsevier.com/microelectronic-engineering/",
"www.journals.elsevier.com/microelectronics-journal/",
"www.journals.elsevier.com/microelectronics-reliability/",
"www.journals.elsevier.com/micron/",
"www.journals.elsevier.com/microporous-and-mesoporous-materials/",
"www.journals.elsevier.com/microprocessors-and-microsystems/",
"www.journals.elsevier.com/microvascular-research/",
"www.elsevier.com/journals/middle-east-fertility-society-journal/1110-5690",
"www.journals.elsevier.com/midwifery/",
"www.elsevier.com/journals/mikrokosmos/0026-3680",
"www.journals.elsevier.com/minerals-engineering/",
"www.journals.elsevier.com/mitochondrion/",
"www.journals.elsevier.com/molecular-and-biochemical-parasitology/",
"www.journals.elsevier.com/molecular-and-cellular-endocrinology/",
"www.journals.elsevier.com/molecular-and-cellular-neuroscience/",
"www.journals.elsevier.com/molecular-and-cellular-probes-mcp/",
"www.journals.elsevier.com/molecular-aspects-of-medicine/",
"www.elsevier.com/journals/molecular-cell/1097-2765",
"www.journals.elsevier.com/molecular-genetics-and-metabolism/",
"www.journals.elsevier.com/molecular-immunology/",
"www.elsevier.com/journals/molecular-metabolism/2212-8778",
"www.journals.elsevier.com/molecular-oncology/",
"www.journals.elsevier.com/molecular-phylogenetics-and-evolution/",
"www.elsevier.com/journals/morphologie/1286-0115",
"www.elsevier.com/journals/motricite-cerebrale/0245-5919",
"www.journals.elsevier.com/multiple-sclerosis-and-related-disorders/",
"www.elsevier.com/journals/mutation-research-full-set/fs00-0289",
"www.journals.elsevier.com/mutation-research-fundamental-and-molecular-mechanisms-of-mutagenesis/",
"www.journals.elsevier.com/mutation-research-genetic-toxicology-and-environmental-mutagenesis/",
"www.journals.elsevier.com/mutation-research-reviews/",
"www.elsevier.com/journals/mycological-research/0953-7562",
"www.elsevier.com/journals/mycologist/0269-915x",
"www.elsevier.com/journals/mycoscience/1340-3540",
"www.journals.elsevier.com/the-journal-of-mathematical-behavior/",
"www.elsevier.com/journals/the-journal-of-mens-health-and-gender/1571-8913",
"www.journals.elsevier.com/the-journal-of-molecular-diagnostics/",
"www.elsevier.com/journals/journal-of-nanjing-medical-university/1007-4376",
"www.elsevier.com/journals/journal-of-natural-gas-chemistry/1003-9953",
"www.journals.elsevier.com/journal-of-natural-gas-science-and-engineering/",
"www.journals.elsevier.com/journal-of-neonatal-nursing/",
"www.journals.elsevier.com/journal-of-network-and-computer-applications/",
"www.journals.elsevier.com/journal-of-neuroimmunology/",
"www.journals.elsevier.com/journal-of-neurolinguistics/",
"www.elsevier.com/journals/journal-of-neuroradiology/0150-9861",
"www.journals.elsevier.com/journal-of-neuroscience-methods/",
"www.journals.elsevier.com/journal-of-non-crystalline-solids/",
"www.journals.elsevier.com/journal-of-non-newtonian-fluid-mechanics/",
"www.elsevier.com/journals/journal-of-northeast-agricultural-university-english-edition/1006-8104",
"www.journals.elsevier.com/journal-of-nuclear-materials/",
"www.journals.elsevier.com/journal-of-number-theory/",
"www.journals.elsevier.com/journal-of-nutrition-education-and-behavior/",
"www.journals.elsevier.com/journal-of-the-neurological-sciences/",
"www.elsevier.com/journals/nephrologie-and-therapeutique/1769-7255",
"www.journals.elsevier.com/nano-communication-networks/",
"www.journals.elsevier.com/nano-energy/",
"www.journals.elsevier.com/nano-today/",
"www.journals.elsevier.com/nanomedicine-nanotechnology-biology-and-medicine/",
"www.journals.elsevier.com/ndt-and-e-international/",
"www.elsevier.com/journals/network-security/1353-4858",
"www.journals.elsevier.com/neural-networks/",
"www.journals.elsevier.com/neurobiology-of-aging/",
"www.journals.elsevier.com/neurobiology-of-disease/",
"www.journals.elsevier.com/neurobiology-of-learning-and-memory/",
"www.journals.elsevier.com/neurochemistry-international/",
"www.elsevier.com/journals/neurochirurgie/0028-3770",
"www.elsevier.com/journals/neurocirugia/1130-1473",
"www.journals.elsevier.com/neurocomputing/",
"www.journals.elsevier.com/neuroimage/",
"www.journals.elsevier.com/neuroimage-clinical/",
"www.elsevier.com/journals/neuroimaging-clinics-of-north-america/1052-5149",
"www.elsevier.com/journals/neurologia/0213-4853",
"www.elsevier.com/journals/neurologia-english-edition/2173-5808",
"www.elsevier.com/journals/neurologia-argentina/1853-0028",
"www.elsevier.com/journals/neurologic-clinics/0733-8619",
"www.elsevier.com/journals/neurology-and-neurosurgery-section-8-embase/0014-4126",
"www.elsevier.com/journals/neurology-psychiatry-and-brain-research/0941-9500",
"www.journals.elsevier.com/neuromuscular-disorders/",
"www.elsevier.com/journals/neuron/0896-6273",
"www.journals.elsevier.com/neuropeptides/",
"www.journals.elsevier.com/neuropharmacology/",
"www.elsevier.com/journals/neurophysiologie-clinique-clinical-neurophysiology/0987-7053",
"www.elsevier.com/journals/neuropsychiatrie-de-lenfance-et-de-ladolescence/0222-9617",
"www.journals.elsevier.com/neuropsychologia/",
"www.journals.elsevier.com/neuroscience/",
"www.journals.elsevier.com/neuroscience-and-biobehavioral-reviews/",
"www.journals.elsevier.com/neuroscience-letters/",
"www.elsevier.com/journals/neuroscience-package-option-1/fs00-0136",
"www.elsevier.com/journals/neuroscience-package-option-2/fs00-0175",
"www.journals.elsevier.com/neuroscience-research/",
"www.elsevier.com/journals/neurosurgery-clinics-of-north-america/1042-3680",
"www.elsevier.com/journals/neurotherapeutics/1933-7213",
"www.journals.elsevier.com/neurotoxicology/",
"www.journals.elsevier.com/neurotoxicology-and-teratology/",
"www.journals.elsevier.com/new-astronomy/",
"www.journals.elsevier.com/new-astronomy-reviews/",
"www.journals.elsevier.com/new-biotechnology/",
"www.elsevier.com/journals/new-carbon-materials/1872-5805",
"www.journals.elsevier.com/new-ideas-in-psychology/",
"www.journals.elsevier.com/newborn-and-infant-nursing-reviews/",
"www.journals.elsevier.com/nitric-oxide-biology-and-chemistry/",
"www.journals.elsevier.com/njas-wageningen-journal-of-life-sciences/",
"www.journals.elsevier.com/nonlinear-analysis-hybrid-systems/",
"www.journals.elsevier.com/nonlinear-analysis-real-world-applications/",
"www.journals.elsevier.com/nonlinear-analysis-theory-methods-and-applications/",
"www.elsevier.com/journals/nonlinear-analysis-theory-methods-and-applications-nonlinear-analysis-real-world-applications-and-nonlinear-analysis-hybrid-systems-combined-subscription/fs00-0239",
"www.elsevier.com/journals/npg-neurologie-psychiatrie-geriatrie/1627-4830",
"www.journals.elsevier.com/nriag-journal-of-astronomy-and-geophysics/",
"www.journals.elsevier.com/nuclear-data-sheets/",
"www.journals.elsevier.com/nuclear-engineering-and-design/",
"www.elsevier.com/journals/nuclear-engineering-and-design-with-fusion-engineering-and-design-combined-subscription/fs00-6045",
"www.elsevier.com/journals/nuclear-instruments-and-methods-in-physics-research-ab-full-set/fs00-0111",
"www.journals.elsevier.com/nuclear-instruments-and-methods-in-physics-research-section-a-accelerators-spectrometers-detectors-and-associated-equipment/",
"www.journals.elsevier.com/nuclear-instruments-and-methods-in-physics-research-section-b-beam-interactions-with-materials-and-atoms/",
"www.elsevier.com/journals/nuclear-medicine-section-23-embase/0014-4274",
"www.journals.elsevier.com/nuclear-medicine-and-biology/",
"www.journals.elsevier.com/nuclear-physics-a/",
"www.journals.elsevier.com/nuclear-physics-b/",
"www.journals.elsevier.com/nuclear-physics-b-proceedings-supplements/",
"www.elsevier.com/journals/nuclear-physics-section-a-section-b-with-section-b-proceedings-supplements-full-set/fs00-0123",
"www.journals.elsevier.com/nurse-education-in-practice/",
"www.journals.elsevier.com/nurse-education-today/",
"www.elsevier.com/journals/nurse-education-today-with-nurse-education-in-practice-combined-subscription/00fs-2300",
"www.journals.elsevier.com/nurse-leader/",
"www.elsevier.com/journals/nursing-clinics-of-north-america/0029-6465",
"www.journals.elsevier.com/nursing-outlook/",
"www.journals.elsevier.com/nutrition/",
"www.elsevier.com/journals/nutrition-clinique-et-metabolisme/0985-0562",
"www.journals.elsevier.com/nutrition-research/",
"www.journals.elsevier.com/nutrition-metabolism-and-cardiovascular-diseases/",
"www.journals.elsevier.com/the-journal-of-nutritional-biochemistry/",
"www.journals.elsevier.com/the-north-american-journal-of-economics-and-finance/",
"www.journals.elsevier.com/journal-of-obsessive-compulsive-and-related-disorders/",
"www.journals.elsevier.com/journal-of-operations-management/",
"www.elsevier.com/journals/journal-of-optometry/1888-4296",
"www.journals.elsevier.com/journal-of-oral-and-maxillofacial-surgery/",
"www.elsevier.com/journals/journal-of-oral-and-maxillofacial-surgery-medicine-and-pathology/2212-5558",
"www.elsevier.com/journals/journal-of-oral-biology-and-craniofacial-research/2212-4268",
"www.elsevier.com/journals/journal-of-oral-biosciences/1349-0079",
"www.journals.elsevier.com/journal-of-organometallic-chemistry/",
"www.elsevier.com/journals/journal-of-orthopaedic-nursing/1361-3111",
"www.elsevier.com/journals/journal-of-orthopaedics/0972-978x",
"www.elsevier.com/journals/journal-of-orthopaedics-trauma-and-rehabilitation/2210-4917",
"www.journals.elsevier.com/journal-of-outdoor-recreation-and-tourism/",
"www.elsevier.com/journals/ob-gyn-news/0029-7437",
"www.elsevier.com/journals/obesity-research-and-clinical-practice/1871-403x",
"www.elsevier.com/journals/obstetrics-and-gynecology-section-10-embase/0014-4142",
"www.elsevier.com/journals/obstetrics-and-gynecology-clinics-of-north-america/0889-8545",
"www.elsevier.com/journals/obstetrics-gynaecology-and-reproductive-medicine/1751-7214",
"www.elsevier.com/journals/occupational-health-and-industrial-medicine-section-35-embase/0014-4398",
"www.journals.elsevier.com/ocean-and-coastal-management/",
"www.journals.elsevier.com/ocean-engineering/",
"www.journals.elsevier.com/ocean-modelling/",
"www.elsevier.com/journals/oceanographic-literature-review/0967-0653",
"www.elsevier.com/journals/oceanography-package/fs00-0176",
"www.journals.elsevier.com/omega/",
"www.journals.elsevier.com/operations-research-for-health-care/",
"www.journals.elsevier.com/operations-research-letters/",
"www.elsevier.com/journals/operative-techniques-in-general-surgery/1524-153x",
"www.journals.elsevier.com/operative-techniques-in-orthopaedics/",
"www.journals.elsevier.com/operative-techniques-in-otolaryngology-head-and-neck-surgery/",
"www.journals.elsevier.com/operative-techniques-in-sports-medicine/",
"www.journals.elsevier.com/operative-techniques-in-thoracic-and-cardiovascular-surgery/",
"www.elsevier.com/journals/ophthalmology-section-12-embase/0014-4169",
"www.journals.elsevier.com/ophthalmology-journal-of-the-american-academy-of-ophthalmology/",
"www.journals.elsevier.com/optical-fiber-technology/",
"www.journals.elsevier.com/optical-materials/",
"www.journals.elsevier.com/optical-switching-and-networking/",
"www.journals.elsevier.com/optics-and-laser-technology/",
"www.journals.elsevier.com/optics-and-lasers-in-engineering/",
"www.journals.elsevier.com/optics-communications/",
"www.elsevier.com/journals/optik/0030-4026",
"www.elsevier.com/journals/option-bio/0992-5945",
"www.elsevier.com/journals/oral-and-maxillofacial-surgery-clinics-of-north-america/1042-3699",
"www.journals.elsevier.com/oral-oncology/",
"www.elsevier.com/journals/oral-science-international/1348-8643",
"www.journals.elsevier.com/oral-surgery-oral-medicine-oral-pathology-and-oral-radiology/",
"www.elsevier.com/journals/oral-surgery-oral-medicine-oral-pathology-oral-radiology-and-endodontology/1079-2104",
"www.journals.elsevier.com/orbis/",
"www.journals.elsevier.com/ore-geology-reviews/",
"www.journals.elsevier.com/organic-electronics/",
"www.journals.elsevier.com/organic-geochemistry/",
"www.elsevier.com/journals/organisms-diversity-and-evolution/1439-6092",
"www.journals.elsevier.com/organizational-behavior-and-human-decision-processes/",
"www.journals.elsevier.com/organizational-dynamics/",
"www.elsevier.com/journals/ortho-magazine/1262-4586",
"www.elsevier.com/journals/orthodontic-waves/1344-0241",
"www.elsevier.com/journals/orthopaedics-and-traumatology-surgery-and-research/1877-0568",
"www.elsevier.com/journals/orthopaedics-and-trauma/1877-1327",
"www.elsevier.com/journals/orthopedic-clinics-of-north-america/0030-5898",
"www.elsevier.com/journals/orthopedic-surgery-section-33-embase/0014-4371",
"www.elsevier.com/journals/ortodoncia-espanola/0210-1637",
"www.elsevier.com/journals/osong-public-health-and-research-perspectives/2210-9099",
"www.journals.elsevier.com/osteoarthritis-and-cartilage/",
"www.elsevier.com/journals/osteopatia-cientifica/1886-9297",
"www.journals.elsevier.com/osteopathic-family-physician/",
"www.elsevier.com/journals/osteopathische-medizin/1615-9071",
"www.elsevier.com/journals/otolaryngologia-polska/0030-6657",
"www.elsevier.com/journals/otolaryngologic-clinics-of-north-america/0030-6665",
"www.elsevier.com/journals/otorhinolaryngology-section-11-embase/0014-4150",
"www.elsevier.com/journals/oxymag/0990-1310",
"www.journals.elsevier.com/the-ocular-surface/",
"www.journals.elsevier.com/journal-of-pain-and-symptom-management/",
"www.journals.elsevier.com/journal-of-parallel-and-distributed-computing/",
"www.journals.elsevier.com/journal-of-pediatric-and-adolescent-gynecology/",
"www.journals.elsevier.com/journal-of-pediatric-health-care/",
"www.journals.elsevier.com/journal-of-pediatric-nursing/",
"www.journals.elsevier.com/journal-of-pediatric-surgery/",
"www.elsevier.com/journals/journal-of-pediatric-surgery-case-reports/2213-5766",
"www.journals.elsevier.com/journal-of-pediatric-urology/",
"www.journals.elsevier.com/journal-of-perianesthesia-nursing/",
"www.journals.elsevier.com/journal-of-petroleum-science-and-engineering/",
"www.journals.elsevier.com/journal-of-pharmaceutical-analysis/",
"www.journals.elsevier.com/journal-of-pharmaceutical-and-biomedical-analysis/",
"www.journals.elsevier.com/journal-of-pharmacological-and-toxicological-methods/",
"www.elsevier.com/journals/journal-of-pharmacy-research/0974-6943",
"www.journals.elsevier.com/journal-of-phonetics/",
"www.elsevier.com/journals/journal-of-photochemistry-and-photobiology-abc-combined-subscription/fs00-6041",
"www.journals.elsevier.com/journal-of-photochemistry-and-photobiology-a-chemistry/",
"www.journals.elsevier.com/journal-of-photochemistry-and-photobiology-b-biology/",
"www.journals.elsevier.com/journal-of-photochemistry-and-photobiology-c-photochemistry-reviews/",
"www.journals.elsevier.com/journal-of-physics-and-chemistry-of-solids/",
"www.journals.elsevier.com/journal-of-physiology-paris/",
"www.elsevier.com/journals/journal-of-physiotherapy/1836-9553",
"www.elsevier.com/journals/journal-of-plant-physiology/0176-1617",
"www.journals.elsevier.com/journal-of-plastic-reconstructive-and-aesthetic-surgery/",
"www.journals.elsevier.com/journal-of-policy-modeling/",
"www.journals.elsevier.com/journal-of-power-sources/",
"www.journals.elsevier.com/journal-of-pragmatics/",
"www.journals.elsevier.com/journal-of-process-control/",
"www.journals.elsevier.com/journal-of-professional-nursing/",
"www.journals.elsevier.com/journal-of-prosthetic-dentistry/",
"www.elsevier.com/journals/journal-of-prosthodontic-research/1883-1958",
"www.journals.elsevier.com/journal-of-proteomics/",
"www.journals.elsevier.com/journal-of-psychiatric-research/",
"www.journals.elsevier.com/journal-of-psychosomatic-research/",
"www.journals.elsevier.com/journal-of-public-economics/",
"www.journals.elsevier.com/journal-of-purchasing-and-supply-management/",
"www.journals.elsevier.com/journal-of-pure-and-applied-algebra/",
"www.elsevier.com/journals/la-presse-medicale/0755-4982",
"www.elsevier.com/journals/le-pharmacien-hospitalier/0768-9179",
"www.elsevier.com/journals/le-pharmacien-hospitalier-et-clinicien/2211-1042",
"www.elsevier.com/journals/le-praticien-en-anesthesie-reanimation/1279-7960",
"www.journals.elsevier.com/pacific-basin-finance-journal/",
"www.journals.elsevier.com/paediatric-respiratory-reviews/",
"www.elsevier.com/journals/paediatrics-and-child-health/1751-7222",
"www.journals.elsevier.com/pain-management-nursing/",
"www.journals.elsevier.com/pain/",
"www.journals.elsevier.com/palaeogeography-palaeoclimatology-palaeoecology/",
"www.elsevier.com/journals/palaeogeography-palaeoclimatology-palaeoecology-with-global-and-planetary-change-combined-subscription/fs00-0481",
"www.elsevier.com/journals/palaeoworld/1871-174x",
"www.elsevier.com/journals/pancreatology/1424-3903",
"www.journals.elsevier.com/parallel-computing/",
"www.journals.elsevier.com/parasitology-international/",
"www.journals.elsevier.com/parkinsonism-and-related-disorders/",
"www.journals.elsevier.com/particuology/",
"www.elsevier.com/journals/pathologie-biologie/0369-8114",
"www.elsevier.com/journals/pathology-research-and-practice/0344-0338",
"www.elsevier.com/journals/pathophysiology/0928-4680",
"www.journals.elsevier.com/patient-education-and-counseling/",
"www.journals.elsevier.com/pattern-recognition/",
"www.journals.elsevier.com/pattern-recognition-letters/",
"www.elsevier.com/journals/pediatria-polska/0031-3939",
"www.elsevier.com/journals/pediatric-clinics-of-north-america/0031-3955",
"www.elsevier.com/journals/pediatric-infectious-disease/2212-8328",
"www.journals.elsevier.com/pediatric-neurology/",
"www.elsevier.com/journals/pediatric-news/0031-398x",
"www.elsevier.com/journals/pediatrics-and-neonatology/1875-9572",
"www.elsevier.com/journals/pediatrics-and-pediatric-surgery-section-7-embase/0373-6512",
"www.elsevier.com/journals/pedobiologia/0031-4056",
"www.elsevier.com/journals/pedosphere/1002-0160",
"www.journals.elsevier.com/peptides/",
"www.elsevier.com/journals/performance-enhancement-and-health/2211-2669",
"www.journals.elsevier.com/performance-evaluation/",
"www.elsevier.com/journals/perioperative-medizin/1875-2772",
"www.elsevier.com/journals/perioperative-nursing-clinics/1556-7931",
"www.journals.elsevier.com/personality-and-individual-differences/",
"www.elsevier.com/journals/personalized-medicine-universe/2186-4950",
"www.elsevier.com/journals/perspectives-in-medicine/2211-968x",
"www.elsevier.com/journals/perspectives-in-plant-ecology-evolution-and-systematics/1433-8319",
"www.elsevier.com/journals/perspectives-in-science/2213-0209",
"www.elsevier.com/journals/perspectives-in-vaccinology/2210-7622",
"www.journals.elsevier.com/pervasive-and-mobile-computing/",
"www.journals.elsevier.com/pesticide-biochemistry-and-physiology/",
"www.elsevier.com/journals/pet-clinics/1556-8598",
"www.journals.elsevier.com/petroleum-exploration-and-development/",
"www.elsevier.com/journals/pharmaceutical-approvals-monthly/1530-6232",
"www.journals.elsevier.com/pharmacological-research/",
"www.journals.elsevier.com/pharmacology-and-therapeutics/",
"www.journals.elsevier.com/pharmacology-biochemistry-and-behavior/",
"www.elsevier.com/journals/pharmacology-package-option-1/fs00-0138",
"www.elsevier.com/journals/pharmacology-package-option-2/fs00-0177",
"www.journals.elsevier.com/pharmanutrition/",
"www.elsevier.com/journals/pharmasia-news/1875-7774",
"www.elsevier.com/journals/photoacoustics/2213-5979",
"www.journals.elsevier.com/photodiagnosis-and-photodynamic-therapy/",
"www.journals.elsevier.com/photonics-and-nanostructures-fundamentals-and-applications/",
"www.elsevier.com/journals/physica-ab-combined-subscription/fs00-0385",
"www.elsevier.com/journals/physica-abc-combined-subscription/fs00-0337",
"www.elsevier.com/journals/physica-abd-combined-subscription/fs00-0349",
"www.elsevier.com/journals/physica-ac-combined-subscription/fs00-0397",
"www.elsevier.com/journals/physica-acd-combined-subscription/fs00-0361",
"www.elsevier.com/journals/physica-ad-combined-subscription/fs00-0409",
"www.elsevier.com/journals/physica-a-b-c-d-and-e-full-set/fs00-0147",
"www.journals.elsevier.com/physica-a-statistical-mechanics-and-its-applications/",
"www.elsevier.com/journals/physica-bc-combined-subscription/fs00-0422",
"www.elsevier.com/journals/physica-bcd-combined-subscription/fs00-0373",
"www.elsevier.com/journals/physica-bd-combined-subscription/fs00-0433",
"www.journals.elsevier.com/physica-b-condensed-matter/",
"www.elsevier.com/journals/physica-cd-combined-subscription/fs00-0445",
"www.journals.elsevier.com/physica-c-superconductivity-and-its-applications/",
"www.journals.elsevier.com/physica-d-nonlinear-phenomena/",
"www.journals.elsevier.com/physica-e-low-dimensional-systems-and-nanostructures/",
"www.journals.elsevier.com/physica-medica/",
"www.journals.elsevier.com/physical-communication/",
"www.elsevier.com/journals/physical-medicine-and-rehabilitation-clinics-of-north-america/1047-9651",
"www.journals.elsevier.com/physical-mesomechanics/",
"www.journals.elsevier.com/physical-therapy-in-sport/",
"www.journals.elsevier.com/physics-and-chemistry-of-the-earth/",
"www.journals.elsevier.com/physics-letters-a/",
"www.elsevier.com/journals/physics-letters-abphysics-reports-full-set/fs00-0159",
"www.journals.elsevier.com/physics-letters-b/",
"www.journals.elsevier.com/physics-of-life-reviews/",
"www.journals.elsevier.com/physics-of-the-dark-universe/",
"www.journals.elsevier.com/physics-of-the-earth-and-planetary-interiors/",
"www.journals.elsevier.com/physics-procedia/",
"www.journals.elsevier.com/physics-reports/",
"www.journals.elsevier.com/physiological-and-molecular-plant-pathology/",
"www.journals.elsevier.com/physiology-and-behavior/",
"www.elsevier.com/journals/physiology-section-2-embase/0367-1089",
"www.journals.elsevier.com/physiotherapy/",
"www.journals.elsevier.com/phytochemistry/",
"www.journals.elsevier.com/phytochemistry-letters/",
"www.elsevier.com/journals/phytomedicine/0944-7113",
"www.elsevier.com/journals/piel/0213-9251",
"www.journals.elsevier.com/placenta/",
"www.journals.elsevier.com/planetary-and-space-science/",
"www.journals.elsevier.com/plant-physiology-and-biochemistry/",
"www.journals.elsevier.com/plant-science/",
"www.journals.elsevier.com/plasmid/",
"www.elsevier.com/journals/plastics-additives-and-compounding/1464-391x",
"www.journals.elsevier.com/pmandr/",
"www.journals.elsevier.com/poetics/",
"www.journals.elsevier.com/polar-science/",
"www.journals.elsevier.com/policy-and-society/",
"www.elsevier.com/journals/polish-annals-of-medicine/1230-8013",
"www.journals.elsevier.com/political-geography/",
"www.elsevier.com/journals/polski-przeglad-otorynolaryngologiczny/2084-5308",
"www.journals.elsevier.com/polyhedron/",
"www.journals.elsevier.com/polymer/",
"www.elsevier.com/journals/polymer-contents/0883-153x",
"www.journals.elsevier.com/polymer-degradation-and-stability/",
"www.journals.elsevier.com/polymer-testing/",
"www.journals.elsevier.com/postharvest-biology-and-technology/",
"www.journals.elsevier.com/powder-technology/",
"www.journals.elsevier.com/practical-radiation-oncology/",
"www.elsevier.com/journals/pratique-neurologique-fmc/1878-7762",
"www.elsevier.com/journals/pratiques-du-soignant/1764-9137",
"www.elsevier.com/journals/pratiques-en-nutrition/1766-7305",
"www.elsevier.com/journals/pratiques-medicale-et-chirurgicale-de-lanimal-de-compagnie/0758-1882",
"www.elsevier.com/journals/pratiques-psychologiques/1269-1763",
"www.journals.elsevier.com/precambrian-research/",
"www.journals.elsevier.com/precision-engineering/",
"www.journals.elsevier.com/pregnancy-hypertension/",
"www.journals.elsevier.com/preventive-medicine/",
"www.journals.elsevier.com/preventive-veterinary-medicine/",
"www.journals.elsevier.com/primary-care-diabetes/",
"www.elsevier.com/journals/primary-care-respiratory-journal/1471-4418",
"www.elsevier.com/journals/primary-care-clinics-in-office-practice/0095-4543",
"www.journals.elsevier.com/probabilistic-engineering-mechanics/",
"www.journals.elsevier.com/procedia-social-and-behavioral-sciences/",
"www.journals.elsevier.com/procedia-chemistry/",
"www.journals.elsevier.com/procedia-cirp/",
"www.journals.elsevier.com/procedia-computer-science/",
"www.journals.elsevier.com/procedia-earth-and-planetary-science/",
"www.journals.elsevier.com/procedia-economics-and-finance/",
"www.journals.elsevier.com/procedia-engineering/",
"www.journals.elsevier.com/procedia-environmental-sciences/",
"www.journals.elsevier.com/procedia-food-science/",
"www.journals.elsevier.com/procedia-in-vaccinology/",
"www.journals.elsevier.com/procedia-iutam/",
"www.journals.elsevier.com/procedia-materials-science/",
"www.journals.elsevier.com/procedia-technology/",
"www.journals.elsevier.com/proceedings-of-the-combustion-institute/",
"www.journals.elsevier.com/proceedings-of-the-geologists-association/",
"www.journals.elsevier.com/process-biochemistry/",
"www.journals.elsevier.com/process-safety-and-environmental-protection/",
"www.elsevier.com/journals/progres-en-urologie/1166-7087",
"www.elsevier.com/journals/progresos-de-obstetricia-y-ginecologia/0304-5013",
"www.journals.elsevier.com/progress-in-aerospace-sciences/",
"www.journals.elsevier.com/progress-in-biophysics-and-molecular-biology/",
"www.journals.elsevier.com/progress-in-cardiovascular-diseases/",
"www.journals.elsevier.com/progress-in-crystal-growth-and-characterization-of-materials/",
"www.journals.elsevier.com/progress-in-energy-and-combustion-science/",
"www.elsevier.com/journals/progress-in-histochemistry-and-cytochemistry/0079-6336",
"www.journals.elsevier.com/progress-in-lipid-research/",
"www.journals.elsevier.com/progress-in-materials-science/",
"www.journals.elsevier.com/progress-in-natural-science-materials-international/",
"www.journals.elsevier.com/progress-in-neuro-psychopharmacology-and-biological-psychiatry/",
"www.journals.elsevier.com/progress-in-neurobiology/",
"www.journals.elsevier.com/progress-in-nuclear-energy/",
"www.journals.elsevier.com/progress-in-nuclear-magnetic-resonance-spectroscopy/",
"www.journals.elsevier.com/progress-in-oceanography/",
"www.journals.elsevier.com/progress-in-organic-coatings/",
"www.journals.elsevier.com/progress-in-particle-and-nuclear-physics/",
"www.journals.elsevier.com/progress-in-pediatric-cardiology/",
"www.journals.elsevier.com/progress-in-planning/",
"www.journals.elsevier.com/progress-in-polymer-science/",
"www.journals.elsevier.com/progress-in-quantum-electronics/",
"www.journals.elsevier.com/progress-in-retinal-and-eye-research/",
"www.elsevier.com/journals/progress-in-retinal-and-eye-research-with-vision-research-combined-subscription/fs00-0106",
"www.journals.elsevier.com/progress-in-solid-state-chemistry/",
"www.journals.elsevier.com/progress-in-surface-science/",
"www.journals.elsevier.com/propulsion-and-power-research/",
"www.journals.elsevier.com/prostaglandins-and-other-lipid-mediators/",
"www.journals.elsevier.com/prostaglandins-leukotrienes-and-essential-fatty-acids-plefa/",
"www.journals.elsevier.com/protein-expression-and-purification/",
"www.elsevier.com/journals/protist/1434-4610",
"www.elsevier.com/journals/psiquiatria-biologica/1134-5934",
"www.elsevier.com/journals/psychiatric-clinics-of-north-america/0193-953x",
"www.elsevier.com/journals/psychiatry/1476-1793",
"www.elsevier.com/journals/psychiatry-section-32-embase/0014-4363",
"www.journals.elsevier.com/psychiatry-research/",
"www.elsevier.com/journals/psychiatry-research-with-psychiatry-research-neuroimaging-section-combined-subscription/fs00-8064",
"www.journals.elsevier.com/psychiatry-research-neuroimaging/",
"www.elsevier.com/journals/psychologie-du-travail-et-des-organisations/1420-2530",
"www.elsevier.com/journals/psychologie-francaise/0033-2984",
"www.journals.elsevier.com/psychology-of-sport-and-exercise/",
"www.journals.elsevier.com/psychoneuroendocrinology/",
"www.journals.elsevier.com/psychosomatics/",
"www.journals.elsevier.com/public-health/",
"www.elsevier.com/journals/public-health-forum/0944-5587",
"www.elsevier.com/journals/public-health-social-medicine-and-epidemiology-section-17-embase/0924-5723",
"www.journals.elsevier.com/public-relations-review/",
"www.journals.elsevier.com/pulmonary-pharmacology-and-therapeutics/",
"www.elsevier.com/journals/pump-industry-analyst/1359-6128",
"www.journals.elsevier.com/the-journal-of-pain/",
"www.journals.elsevier.com/the-journal-of-pediatrics/",
"www.elsevier.com/journals/the-pink-sheet/1530-6240",
"www.elsevier.com/journals/the-pink-sheet-daily/1554-4036",
"www.journals.elsevier.com/journal-of-quantitative-spectroscopy-and-radiative-transfer/",
"www.elsevier.com/journals/quantitative-ecology-combined-set/fs00-5564",
"www.journals.elsevier.com/quaternary-geochronology/",
"www.journals.elsevier.com/quaternary-international/",
"www.journals.elsevier.com/quaternary-research/",
"www.journals.elsevier.com/quaternary-science-reviews/",
"www.elsevier.com/journals/quaternary-science-reviews-with-quaternary-geochronology-combined-subscription/fs00-4108",
"www.elsevier.com/journals/quaternary-science-reviews-with-quaternary-international-combined-subscription/fs00-1037",
"www.journals.elsevier.com/the-quarterly-review-of-economics-and-finance/",
"www.journals.elsevier.com/journal-of-radiology-nursing/",
"www.journals.elsevier.com/journal-of-rail-transport-planning-and-management/",
"www.elsevier.com/journals/journal-of-rare-earths/1002-0721",
"www.journals.elsevier.com/journal-of-renal-nutrition/",
"www.elsevier.com/journals/journal-of-reproduction-and-contraception/1001-7844",
"www.journals.elsevier.com/journal-of-reproductive-immunology/",
"www.journals.elsevier.com/journal-of-research-in-personality/",
"www.journals.elsevier.com/journal-of-retailing/",
"www.journals.elsevier.com/journal-of-retailing-and-consumer-services/",
"www.elsevier.com/journals/journal-of-rock-mechanics-and-geotechnical-engineering/1674-7755",
"www.journals.elsevier.com/journal-of-rural-studies/",
"www.elsevier.com/journals/la-revue-dhomeopathie/1878-9730",
"www.elsevier.com/journals/la-revue-de-medecine-interne/0248-8663",
"www.elsevier.com/journals/la-revue-de-medecine-legale/1878-6529",
"www.elsevier.com/journals/la-revue-sage-femme/1637-4088",
"www.elsevier.com/journals/reanimation/1624-0693",
"www.elsevier.com/journals/rontgenpraxis/0035-7820",
"www.journals.elsevier.com/radiation-measurements/",
"www.journals.elsevier.com/radiation-physics-and-chemistry/",
"www.journals.elsevier.com/radiography/",
"www.elsevier.com/journals/radiologia/0033-8338",
"www.elsevier.com/journals/radiologia-english-edition/2173-5107",
"www.elsevier.com/journals/radiologic-clinics-of-north-america/0033-8389",
"www.elsevier.com/journals/radiology-section-14-embase/0014-4185",
"www.journals.elsevier.com/radiotherapy-and-oncology/",
"www.elsevier.com/journals/rare-metal-materials-and-engineering/1875-5372",
"www.elsevier.com/journals/rare-metals/1001-0521",
"www.journals.elsevier.com/reactive-and-functional-polymers/",
"www.journals.elsevier.com/redox-biology/",
"www.elsevier.com/journals/refocus/1471-0846",
"www.journals.elsevier.com/regional-science-and-urban-economics/",
"www.journals.elsevier.com/regulatory-peptides/",
"www.journals.elsevier.com/regulatory-toxicology-and-pharmacology/",
"www.elsevier.com/journals/rehabilitacion/0048-7120",
"www.elsevier.com/journals/rehabilitation-and-physical-medicine-section-19-embase/0014-4231",
"www.elsevier.com/journals/reinforced-plastics/0034-3617",
"www.journals.elsevier.com/reliability-engineering-and-system-safety/",
"www.elsevier.com/journals/religion/0048-721x",
"www.journals.elsevier.com/remote-sensing-of-environment/",
"www.journals.elsevier.com/renewable-and-sustainable-energy-reviews/",
"www.journals.elsevier.com/renewable-energy/",
"www.elsevier.com/journals/renewable-energy-focus/1755-0084",
"www.elsevier.com/journals/reports-of-practical-oncology-and-radiotherapy/1507-1367",
"www.journals.elsevier.com/reports-on-mathematical-physics/",
"www.elsevier.com/journals/reproductive-biology/1642-431x",
"www.journals.elsevier.com/reproductive-biomedicine-online/",
"www.journals.elsevier.com/reproductive-health-matters/",
"www.journals.elsevier.com/reproductive-toxicology/",
"www.journals.elsevier.com/research-in-accounting-regulation/",
"www.journals.elsevier.com/research-in-autism-spectrum-disorders/",
"www.journals.elsevier.com/research-in-developmental-disabilities/",
"www.journals.elsevier.com/research-in-economics/",
"www.journals.elsevier.com/research-in-international-business-and-finance/",
"www.journals.elsevier.com/research-in-microbiology/",
"www.journals.elsevier.com/research-in-organizational-behavior/",
"www.journals.elsevier.com/research-in-social-and-administrative-pharmacy/",
"www.journals.elsevier.com/research-in-social-stratification-and-mobility/",
"www.journals.elsevier.com/research-in-transportation-business-and-management/",
"www.journals.elsevier.com/research-in-transportation-economics/",
"www.journals.elsevier.com/research-in-veterinary-science/",
"www.journals.elsevier.com/research-policy/",
"www.elsevier.com/journals/research-strategies/0734-3310",
"www.journals.elsevier.com/resource-and-energy-economics/",
"www.journals.elsevier.com/resources-policy/",
"www.journals.elsevier.com/resources-conservation-and-recycling/",
"www.elsevier.com/journals/respiratory-investigation/2212-5345",
"www.journals.elsevier.com/respiratory-medicine/",
"www.journals.elsevier.com/respiratory-medicine-case-reports/",
"www.elsevier.com/journals/respiratory-medicine-cme/1755-0017",
"www.elsevier.com/journals/respiratory-medicine-extra/1744-9049",
"www.elsevier.com/journals/respiratory-medicine-copd-update/1745-0454",
"www.journals.elsevier.com/respiratory-physiology-and-neurobiology/",
"www.journals.elsevier.com/results-in-immunology/",
"www.journals.elsevier.com/results-in-pharma-sciences/",
"www.journals.elsevier.com/results-in-physics/",
"www.journals.elsevier.com/resuscitation/",
"www.elsevier.com/journals/reumatologia-clinica/1699-258x",
"www.elsevier.com/journals/reumatologia-clinica-english-edition/2173-5743",
"www.journals.elsevier.com/review-of-development-finance/",
"www.journals.elsevier.com/review-of-economic-dynamics/",
"www.journals.elsevier.com/review-of-financial-economics/",
"www.journals.elsevier.com/review-of-palaeobotany-and-palynology/",
"www.elsevier.com/journals/reviews-in-gynaecological-and-perinatal-practice/1871-2320",
"www.elsevier.com/journals/reviews-in-vascular-medicine/2212-0211",
"www.elsevier.com/journals/revista-andaluza-de-medicina-del-deporte/1888-7546",
"www.elsevier.com/journals/revista-brasileira-de-cardiologia-invasiva/0104-1843",
"www.elsevier.com/journals/revista-brasileira-de-psiquiatria-rbp-psychiatry/1516-4446",
"www.elsevier.com/journals/revista-cientifica-de-la-sociedad-espanola-de-enfermeria-neurologica/2013-5246",
"www.elsevier.com/journals/revista-clinica-espanola/0014-2565",
"www.elsevier.com/journals/revista-colombiana-de-anestesiologia/0120-3347",
"www.elsevier.com/journals/revista-da-associacao-medica-brasileira/0104-4230",
"www.elsevier.com/journals/revista-de-calidad-asistencial/1134-282x",
"www.elsevier.com/journals/revista-de-la-sociedad-espanola-del-dolor/1134-8046",
"www.elsevier.com/journals/revista-de-logopedia-foniatria-y-audiologia/0214-4603",
"www.elsevier.com/journals/revista-de-patologia-respiratoria/1576-9895",
"www.elsevier.com/journals/revista-de-psiquiatria-y-salud-mental/1888-9891",
"www.elsevier.com/journals/revista-de-psiquiatria-y-salud-mental-english-edition/2173-5050",
"www.elsevier.com/journals/revista-de-senologia-y-patologia-mamaria/0214-1582",
"www.elsevier.com/journals/revista-del-laboratorio-clinico/1888-4008",
"www.elsevier.com/journals/revista-espanola-de-anestesiologia-y-reanimacion/0034-9356",
"www.elsevier.com/journals/revista-espanola-de-cardiologia/0300-8932",
"www.elsevier.com/journals/revista-espanola-de-cardiologia-english-version/1885-5857",
"www.elsevier.com/journals/revista-espanola-de-cardiologia-suplementos/1131-3587",
"www.elsevier.com/journals/revista-espanola-de-cirugia-oral-y-maxilofacial/1130-0558",
"www.elsevier.com/journals/revista-espanola-de-cirugia-ortopedica-y-traumatologia/1888-4415",
"www.elsevier.com/journals/revista-espanola-de-enfermedades-metabolicas-seas/1132-8460",
"www.elsevier.com/journals/revista-espanola-de-geriatria-y-gerontologia/0211-139x",
"www.elsevier.com/journals/revista-espanola-de-medicina-legal/0377-4732",
"www.elsevier.com/journals/revista-espanola-de-medicina-nuclear/0212-6982",
"www.elsevier.com/journals/revista-espanola-de-medicina-nuclear-e-imagen-molecular/2253-654x",
"www.elsevier.com/journals/revista-espanola-de-nutricion-humana-y-dietetica/2173-1292",
"www.elsevier.com/journals/revista-espanola-de-patologia/1699-8855",
"www.elsevier.com/journals/revista-europea-de-direccion-y-economia-de-la-empresa/1019-6838",
"www.elsevier.com/journals/revista-iberoamericana-de-automatica-e-informatica-industrial-riai/1697-7912",
"www.elsevier.com/journals/revista-iberoamericana-de-fisioterapia-y-kinesiologia/1138-6045",
"www.elsevier.com/journals/revista-iberoamericana-de-micologia/1130-1406",
"www.elsevier.com/journals/revista-internacional-de-acupuntura/1887-8369",
"www.elsevier.com/journals/revista-internacional-de-andrologia/1698-031x",
"www.elsevier.com/journals/revista-internacional-de-metodos-numericos-para-calculo-y-diseno-en-ingenieria/0213-1315",
"www.elsevier.com/journals/revista-medica-de-homeopatia/1888-8526",
"www.elsevier.com/journals/revista-medica-internacional-sobre-el-sindrome-de-down/1138-2074",
"www.elsevier.com/journals/revista-portuguesa-de-cardiologia/0870-2551",
"www.elsevier.com/journals/revista-portuguesa-de-cardiologia-english-edition/2174-2049",
"www.elsevier.com/journals/revista-portuguesa-de-endocrinologia-diabetes-e-metabolismo/1646-3439",
"www.elsevier.com/journals/revista-portuguesa-de-estomatologia-medicina-dentaria-e-cirugia-maxilofacial/1646-2890",
"www.elsevier.com/journals/revista-portuguesa-de-pneumologia/0873-2159",
"www.elsevier.com/journals/revista-portuguesa-de-pneumologia-english-edition/2173-5115",
"www.elsevier.com/journals/revista-portuguesa-de-saude-publica/0870-9025",
"www.elsevier.com/journals/revue-depidemiologie-et-de-sante-publique/0398-7620",
"www.elsevier.com/journals/revue-de-chirurgie-orthopedique-et-reparatrice-de-lappareil-moteur/0035-1040",
"www.elsevier.com/journals/revue-de-chirurgie-orthopedique-et-traumatologique/1877-0517",
"www.elsevier.com/journals/revue-de-linfirmiere/1293-8505",
"www.elsevier.com/journals/revue-de-micropaleontologie/0035-1598",
"www.elsevier.com/journals/revue-de-pneumologie-clinique/0761-8417",
"www.elsevier.com/journals/revue-de-sante-scolaire-et-universitaire/1879-3991",
"www.elsevier.com/journals/revue-de-stomatologie-et-de-chirurgie-maxillo-faciale/0035-1768",
"www.elsevier.com/journals/revue-des-maladies-respiratoires/0761-8425",
"www.elsevier.com/journals/revue-des-maladies-respiratoires-actualites/1877-1203",
"www.elsevier.com/journals/revue-du-cadre-de-sante/1776-0550",
"www.elsevier.com/journals/revue-du-podologue/1766-7313",
"www.elsevier.com/journals/revue-du-rhumatisme/1169-8330",
"www.elsevier.com/journals/revue-du-rhumatisme-monographies/1878-6227",
"www.elsevier.com/journals/revue-du-soignant-en-geriatrie/1760-2882",
"www.elsevier.com/journals/revue-du-soignant-en-sante-publique/1766-2389",
"www.elsevier.com/journals/revue-europeenne-de-psychologie-appliquee-european-review-of-applied-psychology/1162-9088",
"www.elsevier.com/journals/revue-francaise-dallergologie/1877-0320",
"www.elsevier.com/journals/revue-francaise-dallergologie-et-dimmunologie-clinique/0335-7457",
"www.elsevier.com/journals/revue-francophone-dorthoptie/1876-2204",
"www.elsevier.com/journals/revue-francophone-des-laboratoires/1773-035x",
"www.elsevier.com/journals/revue-neurologique/0035-3787",
"www.elsevier.com/journals/rheumatic-disease-clinics-of-north-america/0889-857x",
"www.elsevier.com/journals/rheumatology-news/1541-9800",
"www.elsevier.com/journals/rice-science/1672-6308",
"www.journals.elsevier.com/robotics-and-autonomous-systems/",
"www.journals.elsevier.com/robotics-and-computer-integrated-manufacturing/",
"www.journals.elsevier.com/russian-geology-and-geophysics/",
"www.journals.elsevier.com/russian-literature/",
"www.elsevier.com/journals/the-rose-sheet/1530-1222",
"www.elsevier.com/journals/the-rpm-report/2160-4665",
"www.journals.elsevier.com/journal-of-safety-research/",
"www.journals.elsevier.com/journal-of-saudi-chemical-society/",
"www.journals.elsevier.com/journal-of-school-psychology/",
"www.elsevier.com/journals/journal-of-science-and-medicine-in-sport/1440-2440",
"www.journals.elsevier.com/journal-of-sea-research/",
"www.journals.elsevier.com/journal-of-second-language-writing/",
"www.journals.elsevier.com/journal-of-shoulder-and-elbow-surgery/",
"www.journals.elsevier.com/journal-of-socio-economics/",
"www.journals.elsevier.com/journal-of-solid-state-chemistry/",
"www.journals.elsevier.com/journal-of-sound-and-vibration/",
"www.journals.elsevier.com/journal-of-south-american-earth-sciences/",
"www.journals.elsevier.com/journal-of-sport-and-health-science/",
"www.journals.elsevier.com/journal-of-statistical-planning-and-inference/",
"www.journals.elsevier.com/journal-of-stored-products-research/",
"www.journals.elsevier.com/journal-of-stroke-and-cerebrovascular-diseases/",
"www.journals.elsevier.com/journal-of-structural-biology/",
"www.journals.elsevier.com/journal-of-structural-geology/",
"www.journals.elsevier.com/journal-of-substance-abuse-treatment/",
"www.journals.elsevier.com/journal-of-surgical-education/",
"www.journals.elsevier.com/journal-of-surgical-research/",
"www.journals.elsevier.com/journal-of-symbolic-computation/",
"www.journals.elsevier.com/journal-of-systems-and-software/",
"www.journals.elsevier.com/journal-of-systems-architecture/",
"www.elsevier.com/journals/journal-of-systems-engineering-and-electronics/1004-4132",
"www.elsevier.com/journals/journal-of-the-saudi-heart-association/1016-7315",
"www.journals.elsevier.com/journal-of-the-saudi-society-for-agricultural-sciences/",
"www.elsevier.com/journals/journal-of-the-saudi-society-for-dermatology-and-dermatologic-surgery/2210-836x",
"www.journals.elsevier.com/safety-science/",
"www.elsevier.com/journals/sas-journal/1935-9810",
"www.journals.elsevier.com/saudi-journal-of-biological-sciences/",
"www.elsevier.com/journals/saudi-journal-of-ophthalmology/1319-4534",
"www.journals.elsevier.com/saudi-pharmaceutical-journal/",
"www.journals.elsevier.com/scandinavian-journal-of-management/",
"www.journals.elsevier.com/scandinavian-journal-of-pain/",
"www.journals.elsevier.com/schizophrenia-research/",
"www.journals.elsevier.com/science-and-justice/",
"www.elsevier.com/journals/science-and-sports/0765-1597",
"www.elsevier.com/journals/science-and-technology-of-advanced-materials/1468-6996",
"www.journals.elsevier.com/science-of-computer-programming/",
"www.elsevier.com/journals/science-of-computer-programming-with-theoretical-computer-science-combined-subscription/fs00-0183",
"www.journals.elsevier.com/science-of-the-total-environment/",
"www.journals.elsevier.com/scientia-horticulturae/",
"www.journals.elsevier.com/scripta-materialia/",
"www.elsevier.com/journals/sealing-technology/1350-4789",
"www.journals.elsevier.com/sedimentary-geology/",
"www.journals.elsevier.com/seizure-european-journal-of-epilepsy/",
"www.elsevier.com/journals/semergen-medicina-de-familia/1138-3593",
"www.elsevier.com/journals/seminarios-de-la-fundacion-espanola-de-reumatologia/1577-3566",
"www.journals.elsevier.com/seminars-in-arthritis-and-rheumatism/",
"www.journals.elsevier.com/seminars-in-arthroplasty/",
"www.journals.elsevier.com/seminars-in-cancer-biology/",
"www.journals.elsevier.com/seminars-in-cell-and-developmental-biology/",
"www.elsevier.com/journals/seminars-in-cerebrovascular-diseases-and-stroke/1528-9931",
"www.journals.elsevier.com/seminars-in-colon-and-rectal-surgery/",
"www.elsevier.com/journals/seminars-in-cutaneous-medicine-and-surgery/1085-5629",
"www.journals.elsevier.com/seminars-in-diagnostic-pathology/",
"www.journals.elsevier.com/seminars-in-fetal-and-neonatal-medicine/",
"www.journals.elsevier.com/seminars-in-hematology/",
"www.journals.elsevier.com/seminars-in-immunology/",
"www.journals.elsevier.com/seminars-in-nephrology/",
"www.journals.elsevier.com/seminars-in-nuclear-medicine/",
"www.journals.elsevier.com/seminars-in-oncology/",
"www.journals.elsevier.com/seminars-in-oncology-nursing/",
"www.journals.elsevier.com/seminars-in-orthodontics/",
"www.journals.elsevier.com/seminars-in-pediatric-neurology/",
"www.journals.elsevier.com/seminars-in-pediatric-surgery/",
"www.journals.elsevier.com/seminars-in-perinatology/",
"www.elsevier.com/journals/seminars-in-preventive-and-alternative-medicine/1556-4061",
"www.journals.elsevier.com/seminars-in-radiation-oncology/",
"www.journals.elsevier.com/seminars-in-roentgenology/",
"www.journals.elsevier.com/seminars-in-spine-surgery/",
"www.journals.elsevier.com/seminars-in-thoracic-and-cardiovascular-surgery/",
"www.journals.elsevier.com/seminars-in-thoracic-and-cardiovascular-surgery-pediatric-cardiac-surgery-annual/",
"www.journals.elsevier.com/seminars-in-ultrasound-ct-and-mri/",
"www.journals.elsevier.com/seminars-in-vascular-surgery/",
"www.journals.elsevier.com/sensors-and-actuators-a-physical/",
"www.journals.elsevier.com/sensors-and-actuators-b-chemical/",
"www.elsevier.com/journals/sensors-and-actuators-a-physical-with-b-chemical-combined-subscription/fs00-0066",
"www.journals.elsevier.com/separation-and-purification-technology/",
"www.journals.elsevier.com/serials-review/",
"www.elsevier.com/journals/sexologies/1158-1360",
"www.journals.elsevier.com/sexual-and-reproductive-healthcare/",
"www.elsevier.com/journals/sexuologie/0944-7105",
"www.journals.elsevier.com/signal-processing/",
"www.elsevier.com/journals/signal-processing-with-signal-processing-image-communication-combined-subscription/fs00-5575",
"www.elsevier.com/journals/signal-processing-signal-processing-image-communication-with-speech-communication-combined-subscription/fs00-0325",
"www.journals.elsevier.com/signal-processing-image-communication/",
"www.journals.elsevier.com/simulation-modelling-practice-and-theory/",
"www.elsevier.com/journals/singapore-dental-journal/0377-5291",
"www.elsevier.com/journals/skin-and-allergy-news/0037-6337",
"www.elsevier.com/journals/sleep-clinics-continuing-medical-education-program/1559-7806",
"www.journals.elsevier.com/sleep-medicine/",
"www.elsevier.com/journals/sleep-medicine-clinics/1556-407x",
"www.journals.elsevier.com/sleep-medicine-reviews/",
"www.journals.elsevier.com/small-ruminant-research/",
"www.journals.elsevier.com/social-networks/",
"www.journals.elsevier.com/social-science-and-medicine/",
"www.journals.elsevier.com/social-science-research/",
"www.journals.elsevier.com/socio-economic-planning-sciences/",
"www.elsevier.com/journals/sociologie-du-travail/0038-0296",
"www.journals.elsevier.com/soil-and-tillage-research/",
"www.journals.elsevier.com/soil-biology-and-biochemistry/",
"www.journals.elsevier.com/soil-dynamics-and-earthquake-engineering/",
"www.journals.elsevier.com/soils-and-foundations/",
"www.elsevier.com/journals/soins/0038-0814",
"www.elsevier.com/journals/soins-aides-soignantes/1770-9857",
"www.elsevier.com/journals/soins-cadres-de-sante/0183-2980",
"www.elsevier.com/journals/soins-gerontologie/1268-6034",
"www.elsevier.com/journals/soins-pediatrie-puericulture/1259-4792",
"www.elsevier.com/journals/soins-psychiatrie/0241-6972",
"www.journals.elsevier.com/solar-energy/",
"www.journals.elsevier.com/solar-energy-materials-and-solar-cells/",
"www.journals.elsevier.com/solid-state-communications/",
"www.journals.elsevier.com/solid-state-ionics/",
"www.journals.elsevier.com/solid-state-nuclear-magnetic-resonance/",
"www.journals.elsevier.com/solid-state-sciences/",
"www.journals.elsevier.com/solid-state-electronics/",
"www.journals.elsevier.com/south-african-journal-of-botany/",
"www.journals.elsevier.com/space-policy/",
"www.journals.elsevier.com/space-research-today/",
"www.journals.elsevier.com/spatial-and-spatio-temporal-epidemiology/",
"www.journals.elsevier.com/spatial-statistics/",
"www.journals.elsevier.com/spectrochimica-acta-part-a-molecular-and-biomolecular-spectroscopy/",
"www.journals.elsevier.com/spectrochimica-acta-part-b-atomic-spectroscopy/",
"www.journals.elsevier.com/speech-communication/",
"www.journals.elsevier.com/spine-deformity/",
"www.journals.elsevier.com/sport-management-review/",
"www.elsevier.com/journals/sport-orthopadie-sport-traumatologie/0949-328x",
"www.elsevier.com/journals/start-up/1943-7358",
"www.journals.elsevier.com/statistical-methodology/",
"www.journals.elsevier.com/statistics-and-probability-letters/",
"www.journals.elsevier.com/stem-cell-research/",
"www.journals.elsevier.com/steroids/",
"www.journals.elsevier.com/stochastic-processes-and-their-applications/",
"www.elsevier.com/journals/stochastic-processes-and-their-applications-alternative-subscription/1879-209x",
"www.journals.elsevier.com/structural-change-and-economic-dynamics/",
"www.journals.elsevier.com/structural-safety/",
"www.elsevier.com/journals/structure/0969-2126",
"www.elsevier.com/journals/studies-in-communication-sciences/1424-4896",
"www.journals.elsevier.com/studies-in-educational-evaluation/",
"www.journals.elsevier.com/studies-in-history-and-philosophy-of-science-part-a/",
"www.journals.elsevier.com/studies-in-history-and-philosophy-of-science-part-b-studies-in-history-and-philosophy-of-modern-physics/",
"www.journals.elsevier.com/studies-in-history-and-philosophy-of-science-part-c-studies-in-history-and-philosophy-of-biological-and-biomedical-sciences/",
"www.elsevier.com/journals/studies-in-history-and-philosophy-of-science-parts-a-b-and-c-combined-subscription/fs00-0401",
"www.journals.elsevier.com/superlattices-and-microstructures/",
"www.journals.elsevier.com/surface-and-coatings-technology/",
"www.journals.elsevier.com/surface-science-including-surface-science-letters/",
"www.elsevier.com/journals/surface-science-full-set/fs00-0171",
"www.journals.elsevier.com/surface-science-reports/",
"www.journals.elsevier.com/surgery/",
"www.elsevier.com/journals/surgery-oxford/0263-9319",
"www.elsevier.com/journals/surgery-section-9-embase/0014-4134",
"www.journals.elsevier.com/surgery-for-obesity-and-related-diseases/",
"www.elsevier.com/journals/surgical-clinics-of-north-america/0039-6109",
"www.journals.elsevier.com/surgical-oncology/",
"www.elsevier.com/journals/surgical-oncology-clinics-of-north-america/1055-3207",
"www.elsevier.com/journals/surgical-pathology-clinics/1875-9181",
"www.journals.elsevier.com/survey-of-ophthalmology/",
"www.journals.elsevier.com/surveys-in-operations-research-and-management-science/",
"www.journals.elsevier.com/sustainability-of-water-quality-and-ecology/",
"www.journals.elsevier.com/sustainable-cities-and-society/",
"www.journals.elsevier.com/sustainable-computing/",
"www.journals.elsevier.com/sustainable-energy-technologies-and-assessments/",
"www.journals.elsevier.com/swarm-and-evolutionary-computation/",
"www.elsevier.com/journals/synergy/2213-7130",
"www.journals.elsevier.com/synthetic-metals/",
"www.journals.elsevier.com/system/",
"www.elsevier.com/journals/systematic-and-applied-microbiology/0723-2020",
"www.journals.elsevier.com/systems-and-control-letters/",
"www.elsevier.com/journals/systems-engineering-theory-and-practice/1874-8651",
"www.journals.elsevier.com/systems-engineering-procedia/",
"www.journals.elsevier.com/the-journal-of-social-studies-research/",
"www.journals.elsevier.com/the-journal-of-steroid-biochemistry-and-molecular-biology/",
"www.journals.elsevier.com/the-journal-of-strategic-information-systems/",
"www.journals.elsevier.com/the-journal-of-supercritical-fluids/",
"www.elsevier.com/journals/the-journal-of-supportive-oncology/1544-6794",
"www.elsevier.com/journals/the-saudi-dental-journal/1013-9052",
"www.elsevier.com/journals/the-silver-sheet/1068-5324",
"www.journals.elsevier.com/the-social-science-journal/",
"www.elsevier.com/journals/the-spanish-review-of-financial-economics/2173-1268",
"www.journals.elsevier.com/the-spine-journal/",
"www.journals.elsevier.com/the-surgeon/",
"www.journals.elsevier.com/journal-of-taibah-university-for-science/",
"www.elsevier.com/journals/journal-of-taibah-university-medical-sciences/1658-3612",
"www.journals.elsevier.com/journal-of-terramechanics/",
"www.journals.elsevier.com/journal-of-the-taiwan-institute-of-chemical-engineers/",
"www.journals.elsevier.com/journal-of-theoretical-biology/",
"www.journals.elsevier.com/journal-of-thermal-biology/",
"www.journals.elsevier.com/journal-of-thoracic-and-cardiovascular-surgery/",
"www.journals.elsevier.com/journal-of-tissue-viability/",
"www.elsevier.com/journals/journal-of-trace-elements-in-medicine-and-biology/0946-672x",
"www.elsevier.com/journals/journal-of-traditional-chinese-medicine/0255-2922",
"www.journals.elsevier.com/journal-of-transport-geography/",
"www.elsevier.com/journals/journal-of-transportation-systems-engineering-and-information-technology/1570-6672",
"www.elsevier.com/journals/tekhne-review-of-applied-management-studies/1645-9911",
"www.elsevier.com/journals/taiwan-journal-of-ophthalmology/2211-5056",
"www.elsevier.com/journals/taiwanese-journal-of-obstetrics-and-gynecology/1028-4559",
"www.journals.elsevier.com/talanta/",
"www.journals.elsevier.com/teaching-and-learning-in-nursing/",
"www.journals.elsevier.com/teaching-and-teacher-education/",
"www.journals.elsevier.com/techniques-in-gastrointestinal-endoscopy/",
"www.journals.elsevier.com/techniques-in-regional-anesthesia-and-pain-management/",
"www.journals.elsevier.com/techniques-in-vascular-and-interventional-radiology/",
"www.journals.elsevier.com/technological-forecasting-and-social-change/",
"www.journals.elsevier.com/technology-in-society/",
"www.journals.elsevier.com/technovation/",
"www.journals.elsevier.com/tectonophysics/",
"www.journals.elsevier.com/telecommunications-policy/",
"www.journals.elsevier.com/telematics-and-informatics/",
"www.journals.elsevier.com/tetrahedron/",
"www.elsevier.com/journals/tetrahedron-including-tetrahedron-asymmetry/fs00-0232",
"www.elsevier.com/journals/tetrahedron-a-combined-subscription-to-five-tetrahedron-journals/fs00-0876",
"www.journals.elsevier.com/tetrahedron-letters/",
"www.journals.elsevier.com/tetrahedron-asymmetry/",
"www.elsevier.com/journals/the-tan-sheet/1530-1206",
"www.journals.elsevier.com/theoretical-and-applied-fracture-mechanics/",
"www.journals.elsevier.com/theoretical-computer-science/",
"www.journals.elsevier.com/theoretical-population-biology/",
"www.elsevier.com/journals/theory-in-biosciences-theorie-in-den-biowissenschaften/1431-7613",
"www.journals.elsevier.com/theriogenology/",
"www.journals.elsevier.com/thermochimica-acta/",
"www.journals.elsevier.com/thin-solid-films/",
"www.elsevier.com/journals/thin-solid-films-with-organic-electronics-combined-subscription/fs00-06056",
"www.journals.elsevier.com/thin-walled-structures/",
"www.journals.elsevier.com/thinking-skills-and-creativity/",
"www.elsevier.com/journals/thoracic-surgery-clinics/1547-4127",
"www.journals.elsevier.com/thrombosis-research/",
"www.elsevier.com/journals/ticks-and-tick-borne-diseases/1877-959x",
"www.journals.elsevier.com/tissue-and-cell/",
"www.journals.elsevier.com/topics-in-companion-animal-medicine/",
"www.journals.elsevier.com/topology/",
"www.journals.elsevier.com/topology-and-its-applications/",
"www.journals.elsevier.com/tourism-management/",
"www.journals.elsevier.com/tourism-management-perspectives/",
"www.journals.elsevier.com/toxicology/",
"www.elsevier.com/journals/toxicology-section-52-embase/0167-8353",
"www.journals.elsevier.com/toxicology-and-applied-pharmacology/",
"www.journals.elsevier.com/toxicology-in-vitro/",
"www.journals.elsevier.com/toxicology-letters/",
"www.journals.elsevier.com/toxicon/",
"www.elsevier.com/journals/transactions-of-nonferrous-metals-society-of-china/1003-6326",
"www.journals.elsevier.com/transfusion-and-apheresis-science/",
"www.elsevier.com/journals/transfusion-clinique-et-biologique/1246-7820",
"www.journals.elsevier.com/transfusion-medicine-reviews/",
"www.journals.elsevier.com/translational-proteomics/",
"www.journals.elsevier.com/translational-research-the-journal-of-laboratory-and-clinical-medicine/",
"www.journals.elsevier.com/transplant-immunology/",
"www.journals.elsevier.com/transplantation-proceedings/",
"www.journals.elsevier.com/transplantation-reviews/",
"www.journals.elsevier.com/transport-policy/",
"www.journals.elsevier.com/transportation-research-part-a-policy-and-practice/",
"www.journals.elsevier.com/transportation-research-part-b-methodological/",
"www.journals.elsevier.com/transportation-research-part-c-emerging-technologies/",
"www.journals.elsevier.com/transportation-research-part-d-transport-and-environment/",
"www.journals.elsevier.com/transportation-research-part-e-logistics-and-transportation-review/",
"www.journals.elsevier.com/transportation-research-part-f-traffic-psychology-and-behaviour/",
"www.elsevier.com/journals/transportation-research-parts-a-and-b-combined-subscription/fs00-0135",
"www.elsevier.com/journals/transportation-research-parts-a-b-and-c-combined-subscription/fs00-0316",
"www.elsevier.com/journals/transportation-research-parts-a-b-c-and-d-combined-subscription/fs00-1008",
"www.elsevier.com/journals/transportation-research-parts-a-b-c-d-and-e-combined-subscription/fs00-1021",
"www.elsevier.com/journals/transportation-research-parts-a-b-c-d-e-f-combined-subscription/fs00-1035",
"www.elsevier.com/journals/trastornos-adictivos/1575-0973",
"www.journals.elsevier.com/travel-medicine-and-infectious-disease/",
"www.journals.elsevier.com/trends-in-anaesthesia-and-critical-care/",
"www.journals.elsevier.com/trends-in-analytical-chemistry/",
"www.journals.elsevier.com/trends-in-analytical-chemistry-library-edition/",
"www.elsevier.com/journals/trends-in-biochemical-sciences/0968-0004",
"www.elsevier.com/journals/trends-in-biotechnology/0167-7799",
"www.journals.elsevier.com/trends-in-cardiovascular-medicine/",
"www.elsevier.com/journals/trends-in-cell-biology/0962-8924",
"www.elsevier.com/journals/trends-in-cognitive-sciences/1364-6613",
"www.elsevier.com/journals/trends-in-ecology-and-evolution/0169-5347",
"www.elsevier.com/journals/trends-in-endocrinology-and-metabolism/1043-2760",
"www.journals.elsevier.com/trends-in-food-science-and-technology/",
"www.elsevier.com/journals/trends-in-genetics/0168-9525",
"www.elsevier.com/journals/trends-in-immunology/1471-4906",
"www.elsevier.com/journals/trends-in-microbiology/0966-842x",
"www.elsevier.com/journals/trends-in-molecular-medicine/1471-4914",
"www.elsevier.com/journals/trends-in-neuroscience-and-education/2211-9493",
"www.elsevier.com/journals/trends-in-neurosciences/0166-2236",
"www.elsevier.com/journals/trends-in-parasitology/1471-4922",
"www.elsevier.com/journals/trends-in-pharmacological-sciences/0165-6147",
"www.elsevier.com/journals/trends-in-plant-science/1360-1385",
"www.journals.elsevier.com/trials-in-vaccinology/",
"www.journals.elsevier.com/tribology-international/",
"www.elsevier.com/journals/tsinghua-science-and-technology/1007-0214",
"www.journals.elsevier.com/tuberculosis/",
"www.journals.elsevier.com/tunnelling-and-underground-space-technology/",
"www.elsevier.com/journals/tzu-chi-medical-journal/1016-3190",
"www.journals.elsevier.com/journal-of-unconventional-oil-and-gas-resources/",
"www.elsevier.com/journals/journal-of-university-of-science-and-technology-beijing/1005-8850",
"www.journals.elsevier.com/journal-of-urban-economics/",
"www.journals.elsevier.com/the-journal-of-urology/",
"www.journals.elsevier.com/ultramicroscopy/",
"www.journals.elsevier.com/ultrasonics/",
"www.journals.elsevier.com/ultrasonics-sonochemistry/",
"www.elsevier.com/journals/ultrasonics-with-ultrasonics-sonochemistry-combined-subscription/fs00-0549",
"www.elsevier.com/journals/ultrasound-clinics/1556-858x",
"www.journals.elsevier.com/ultrasound-in-medicine-and-biology/",
"www.elsevier.com/journals/umk-procedia/2214-0115",
"www.elsevier.com/journals/update/0301-5718",
"www.journals.elsevier.com/urban-climate/",
"www.elsevier.com/journals/urban-forestry-and-urban-greening/1618-8667",
"www.elsevier.com/journals/urologic-clinics-of-north-america/0094-0143",
"www.journals.elsevier.com/urologic-oncology-seminars-and-original-investigations/",
"www.elsevier.com/journals/urological-science/1879-5226",
"www.elsevier.com/journals/urology-and-nephrology-section-28-embase/0014-4320",
"www.journals.elsevier.com/urology/",
"www.journals.elsevier.com/utilities-policy/",
"www.journals.elsevier.com/journal-of-vascular-nursing/",
"www.journals.elsevier.com/journal-of-vascular-surgery/",
"www.elsevier.com/journals/journal-of-vascular-surgery-venous-and-lymphatic-disorders/2213-333x",
"www.journals.elsevier.com/journal-of-veterinary-behavior-clinical-applications-and-research/",
"www.journals.elsevier.com/journal-of-veterinary-cardiology/",
"www.journals.elsevier.com/journal-of-virological-methods/",
"www.elsevier.com/journals/journal-of-virological-methods-with-journal-of-clinical-virology-combined-subscription/fs00-5065",
"www.elsevier.com/journals/journal-of-visceral-surgery/1878-7886",
"www.journals.elsevier.com/journal-of-visual-communication-and-image-representation/",
"www.journals.elsevier.com/journal-of-visual-languages-and-computing/",
"www.journals.elsevier.com/journal-of-vocational-behavior/",
"www.journals.elsevier.com/journal-of-voice/",
"www.journals.elsevier.com/journal-of-volcanology-and-geothermal-research/",
"www.journals.elsevier.com/the-veterinary-journal/",
"www.journals.elsevier.com/vaccine/",
"www.elsevier.com/journals/vacunas/1576-9887",
"www.journals.elsevier.com/vacuum/",
"www.journals.elsevier.com/value-in-health/",
"www.journals.elsevier.com/value-in-health-regional-issues/",
"www.journals.elsevier.com/vascular-pharmacology/",
"www.elsevier.com/journals/veterinary-clinics-of-north-america-equine-practice/0749-0739",
"www.elsevier.com/journals/veterinary-clinics-of-north-america-exotic-animal-practice/1094-9194",
"www.elsevier.com/journals/veterinary-clinics-of-north-america-food-animal-practice/0749-0720",
"www.elsevier.com/journals/veterinary-clinics-of-north-america-small-animal-practice/0195-5616",
"www.journals.elsevier.com/veterinary-immunology-and-immunopathology/",
"www.journals.elsevier.com/veterinary-microbiology/",
"www.journals.elsevier.com/veterinary-parasitology/",
"www.journals.elsevier.com/vibrational-spectroscopy/",
"www.elsevier.com/journals/video-journal-and-encyclopedia-of-gi-endoscopy/2212-0971",
"www.journals.elsevier.com/virology/",
"www.journals.elsevier.com/virus-research/",
"www.journals.elsevier.com/vision-research/",
"www.elsevier.com/journals/vocation-sage-femme/1634-0760",
"www.journals.elsevier.com/journal-of-the-world-federation-of-orthodontists/",
"www.journals.elsevier.com/journal-of-web-semantics/",
"www.journals.elsevier.com/journal-of-wind-engineering-and-industrial-aerodynamics/",
"www.journals.elsevier.com/journal-of-world-business/",
"www.journals.elsevier.com/waste-management/",
"www.journals.elsevier.com/water-research/",
"www.journals.elsevier.com/water-resources-and-economics/",
"www.journals.elsevier.com/water-resources-and-industry/",
"www.journals.elsevier.com/water-resources-and-rural-development/",
"www.journals.elsevier.com/wave-motion/",
"www.journals.elsevier.com/wear/",
"www.journals.elsevier.com/weather-and-climate-extremes/",
"www.journals.elsevier.com/wilderness-and-environmental-medicine/",
"www.elsevier.com/journals/wildland-firefighter/1086-3982",
"www.journals.elsevier.com/wine-economics-and-policy/",
"www.elsevier.com/journals/women-and-birth/1871-5192",
"www.journals.elsevier.com/womens-health-issues/",
"www.elsevier.com/journals/womens-health-medicine/1744-1870",
"www.journals.elsevier.com/womens-studies-international-forum/",
"www.journals.elsevier.com/world-development/",
"www.elsevier.com/journals/world-journal-of-acupuncture-moxibustion/1003-5257",
"www.journals.elsevier.com/world-neurosurgery/",
"www.journals.elsevier.com/world-patent-information/",
"www.elsevier.com/journals/world-pumps/0262-1762",
"www.elsevier.com/journals/wound-medicine/2213-9095",
"www.elsevier.com/journals/year-book-of-anesthesiology-and-pain-management/1073-5437",
"www.elsevier.com/journals/year-book-of-cardiology/0145-4145",
"www.elsevier.com/journals/year-book-of-critical-care-medicine/0734-3299",
"www.elsevier.com/journals/year-book-of-dentistry/0084-3717",
"www.elsevier.com/journals/year-book-of-dermatology-and-dermatologic-surgery/0093-3619",
"www.elsevier.com/journals/year-book-of-diagnostic-radiology/0098-1672",
"www.elsevier.com/journals/year-book-of-emergency-medicine/0271-7964",
"www.elsevier.com/journals/year-book-of-endocrinology/0084-3741",
"www.elsevier.com/journals/year-book-of-family-practice/0147-1996",
"www.elsevier.com/journals/year-book-of-gastroenterology/0739-5930",
"www.elsevier.com/journals/year-book-of-hand-and-upper-limb-surgery/1551-7977",
"www.elsevier.com/journals/year-book-of-medicine/0084-3873",
"www.elsevier.com/journals/year-book-of-neonatal-and-perinatal-medicine/8756-5005",
"www.elsevier.com/journals/year-book-of-neurology-and-neurosurgery/0513-5117",
"www.elsevier.com/journals/year-book-of-nuclear-medicine/0084-3903",
"www.elsevier.com/journals/year-book-of-obstetrics-gynecology-and-womens-health/1090-798x",
"www.elsevier.com/journals/year-book-of-oncology/1040-1741",
"www.elsevier.com/journals/year-book-of-ophthalmology/0084-392x",
"www.elsevier.com/journals/year-book-of-orthopedics/0276-1092",
"www.elsevier.com/journals/year-book-of-otolaryngology-head-and-neck-surgery/1041-892x",
"www.elsevier.com/journals/year-book-of-pathology-and-laboratory-medicine/1077-9108",
"www.elsevier.com/journals/year-book-of-pediatrics/0084-3954",
"www.elsevier.com/journals/year-book-of-plastic-and-aesthetic-surgery/1535-1513",
"www.elsevier.com/journals/year-book-of-psychiatry-and-applied-mental-health/0084-3970",
"www.elsevier.com/journals/year-book-of-pulmonary-disease/8756-3452",
"www.elsevier.com/journals/year-book-of-sports-medicine/0162-0908",
"www.elsevier.com/journals/year-book-of-surgery/0090-3671",
"www.elsevier.com/journals/year-book-of-urology/0084-4071",
"www.elsevier.com/journals/year-book-of-vascular-surgery/0749-4041",
"www.elsevier.com/journals/zeitschrift-fur-evidenz-fortbildung-und-qualitat-im-gesundheitswesen/1865-9217",
"www.elsevier.com/journals/zeitschrift-fur-medizinische-physik/0939-3889",
"www.elsevier.com/journals/zoologischer-anzeiger/0044-5231",
"www.elsevier.com/journals/zoology/0944-2006"]
| base_urls = ['www.journals.elsevier.com/aasri-procedia/', 'www.elsevier.com/journals/abstract-bulletin-of-paper-science-and-technology/1523-388x', 'www.journals.elsevier.com/academic-pediatrics/', 'www.journals.elsevier.com/academic-radiology/', 'www.journals.elsevier.com/accident-analysis-and-prevention/', 'www.elsevier.com/journals/accident-and-emergency-nursing/0965-2302', 'www.journals.elsevier.com/accounting-forum/', 'www.journals.elsevier.com/accounting-organizations-and-society/', 'www.elsevier.com/journals/acta-agronomica-sinica/1875-2780', 'www.elsevier.com/journals/acta-anaesthesiologica-taiwanica/1875-4597', 'www.journals.elsevier.com/acta-astronautica/', 'www.elsevier.com/journals/acta-automatica-sinica/1874-1029', 'www.journals.elsevier.com/acta-biomaterialia/', 'www.elsevier.com/journals/acta-ecologica-sinica/1872-2032', 'www.elsevier.com/journals/acta-genetica-sinica/0379-4172', 'www.elsevier.com/journals/acta-haematologica-polonica/0001-5814', 'www.elsevier.com/journals/acta-histochemica/0065-1281', 'www.journals.elsevier.com/acta-materialia/', 'www.elsevier.com/journals/acta-mathematica-scientia/0252-9602', 'www.elsevier.com/journals/acta-mechanica-solida-sinica/0894-9166', 'www.elsevier.com/journals/acta-metallurgica-sinica-english-letters/1006-7191', 'www.journals.elsevier.com/acta-oecologica/', 'www.elsevier.com/journals/acta-otorrinolaringologica-english-edition/2173-5735', 'www.elsevier.com/journals/acta-otorrinolaringologica-espanola/1988-3013', 'www.journals.elsevier.com/acta-pharmaceutica-sinica-b/', 'www.elsevier.com/journals/acta-physico-chimica-sinica/1872-1508', 'www.journals.elsevier.com/acta-psychologica/', 'www.journals.elsevier.com/acta-tropica/', 'www.elsevier.com/journals/actas-dermo-sifiliograficas/0001-7310', 'www.elsevier.com/journals/actas-dermo-sifiliograficas-english-edition/1578-2190', 'www.elsevier.com/journals/actas-urologicas-espanolas/0210-4806', 'www.elsevier.com/journals/actas-urologicas-espanolas-english-edition/2173-5786', 'www.elsevier.com/journals/actividad-dietetica/1138-0322', 'www.elsevier.com/journals/actualites-pharmaceutiques/0515-3700', 'www.elsevier.com/journals/actualites-pharmaceutiques-hospitalieres/1769-7344', 'www.elsevier.com/journals/acupuncture-and-related-therapies/2211-7660', 'www.elsevier.com/journals/acute-pain/1366-0071', 'www.journals.elsevier.com/ad-hoc-networks/', 'www.journals.elsevier.com/addictive-behaviors/', 'www.elsevier.com/journals/addictive-behaviors-with-eating-behaviors-combined-subscription/fs00-2274', 'www.elsevier.com/journals/additives-for-polymers/0306-3747', 'www.journals.elsevier.com/advanced-drug-delivery-reviews/', 'www.journals.elsevier.com/advanced-engineering-informatics/', 'www.elsevier.com/journals/advanced-engineering-informatics-with-engineering-applications-of-artificial-intelligence-combined-subscription/fs00-1026', 'www.journals.elsevier.com/advanced-powder-technology/', 'www.journals.elsevier.com/advances-in-accounting/', 'www.elsevier.com/journals/advances-in-anesthesia/0737-6146', 'www.journals.elsevier.com/advances-in-applied-mathematics/', 'www.journals.elsevier.com/advances-in-biological-regulation/', 'www.journals.elsevier.com/advances-in-chronic-kidney-disease/', 'www.journals.elsevier.com/advances-in-colloid-and-interface-science/', 'www.elsevier.com/journals/advances-in-colloid-and-interface-science-with-current-opinion-in-colloid-and-interface-science-combined-subscription/fs00-5465', 'www.journals.elsevier.com/advances-in-engineering-software/', 'www.journals.elsevier.com/advances-in-enzyme-regulation/', 'www.elsevier.com/journals/advances-in-integrative-medicine/2212-9626', 'www.journals.elsevier.com/advances-in-life-course-research/', 'www.journals.elsevier.com/advances-in-mathematics/', 'www.elsevier.com/journals/advances-in-pediatrics/0065-3101', 'www.journals.elsevier.com/advances-in-small-animal-medicine-and-surgery/', 'www.journals.elsevier.com/advances-in-space-research/', 'www.elsevier.com/journals/advances-in-surgery/0065-3411', 'www.elsevier.com/journals/advances-in-vascular-surgery/1069-7292', 'www.journals.elsevier.com/advances-in-water-resources/', 'www.elsevier.com/journals/adverse-reactions-titles-section-38-embase/0001-8848', 'www.elsevier.com/journals/aeu-international-journal-of-electronics-and-communications/1434-8411', 'www.journals.elsevier.com/aeolian-research/', 'www.journals.elsevier.com/aerospace-science-and-technology/', 'www.elsevier.com/journals/aesthetische-zahnmedizin/1434-6087', 'www.elsevier.com/journals/african-journal-of-emergency-medicine/2211-419x', 'www.elsevier.com/journals/african-journal-of-urology/1110-5704', 'www.journals.elsevier.com/ageing-research-reviews/', 'www.journals.elsevier.com/aggression-and-violent-behavior/', 'www.journals.elsevier.com/agricultural-and-forest-meteorology/', 'www.elsevier.com/journals/agricultural-sciences-in-china/1671-2927', 'www.journals.elsevier.com/agricultural-systems/', 'www.journals.elsevier.com/agricultural-water-management/', 'www.journals.elsevier.com/agriculture-and-agricultural-science-procedia/', 'www.journals.elsevier.com/agriculture-ecosystems-and-environment/', 'www.elsevier.com/journals/agriculture-ecosystems-and-environment-with-applied-soil-ecology-combined-subscription/fs00-0501', 'www.journals.elsevier.com/ain-shams-engineering-journal/', 'www.journals.elsevier.com/air-medical-journal/', 'www.journals.elsevier.com/ajic-american-journal-of-infection-control/', 'www.journals.elsevier.com/alcohol/', 'www.journals.elsevier.com/alexandria-engineering-journal/', 'www.elsevier.com/journals/alexandria-journal-of-medicine/2090-5068', 'www.journals.elsevier.com/algal-research/', 'www.elsevier.com/journals/all-clinics-online/1876-2751', 'www.elsevier.com/journals/allergologia-et-immunopathologia/0301-0546', 'www.elsevier.com/journals/alpha-omegan/0002-6417', 'www.elsevier.com/journals/alter-european-journal-of-disability-research-journal-europeen-de-recherche-sur-le-handicap/1875-0672', 'www.journals.elsevier.com/alzheimers-and-dementia/', 'www.elsevier.com/journals/ambulatory-surgery/0966-6532', 'www.journals.elsevier.com/american-heart-journal/', 'www.journals.elsevier.com/american-journal-of-emergency-medicine/', 'www.journals.elsevier.com/american-journal-of-kidney-diseases/', 'www.journals.elsevier.com/american-journal-of-obstetrics-and-gynecology/', 'www.journals.elsevier.com/american-journal-of-ophthalmology/', 'www.journals.elsevier.com/american-journal-of-orthodontics-and-dentofacial-orthopedics/', 'www.journals.elsevier.com/american-journal-of-otolaryngology/', 'www.journals.elsevier.com/american-journal-of-preventive-medicine/', 'www.journals.elsevier.com/anaerobe/', 'www.elsevier.com/journals/anaesthesia-and-intensive-care-medicine/1472-0299', 'www.elsevier.com/journals/anales-de-cirugia-vascular/1130-2542', 'www.elsevier.com/journals/anales-de-pediatria/1695-4033', 'www.elsevier.com/journals/anales-de-pediatria-continuada/1696-2818', 'www.elsevier.com/journals/analytic-methods-in-accident-research/2213-6657', 'www.journals.elsevier.com/analytica-chimica-acta/', 'www.elsevier.com/journals/analytica-chimica-acta-with-vibrational-spectroscopy-combined-subscription/fs00-0339', 'www.journals.elsevier.com/analytical-biochemistry-methods-in-the-biological-sciences/', 'www.elsevier.com/journals/anatomy-anthropology-embryology-and-histology-section-1-embase/0014-4053', 'www.elsevier.com/journals/anesthesiology-section-24-embase/0014-4282', 'www.elsevier.com/journals/anesthesiology-clinics/1932-2275', 'www.elsevier.com/journals/anesthesiology-clinics-of-north-america/0889-8537', 'www.elsevier.com/journals/angiologia/0003-3170', 'www.journals.elsevier.com/animal-behaviour/', 'www.journals.elsevier.com/animal-feed-science-and-technology/', 'www.journals.elsevier.com/animal-reproduction-science/', 'www.elsevier.com/journals/annales-dendocrinologie/0003-4266', 'www.elsevier.com/journals/annales-durologie/0003-4401', 'www.elsevier.com/journals/annales-de-cardiologie-et-dangeiologie/0003-3928', 'www.elsevier.com/journals/annales-de-chirurgie/0003-3944', 'www.elsevier.com/journals/annales-de-chirurgie-plastique-esthetique/0294-1260', 'www.elsevier.com/journals/annales-de-chirurgie-vasculaire/0299-2213', 'www.elsevier.com/journals/annales-de-dermatologie-et-de-venereologie/0151-9638', 'www.elsevier.com/journals/annales-de-linstitut-henri-poincare-b-probabilites-et-statistiques/0246-0203', 'www.journals.elsevier.com/annales-de-linstitut-henri-poincare-c-analyse-non-lineaire/', 'www.elsevier.com/journals/annales-de-paleontologie/0753-3969', 'www.elsevier.com/journals/annales-de-pathologie/0242-6498', 'www.elsevier.com/journals/annales-de-readaptation-et-de-medecine-physique/0168-6054', 'www.elsevier.com/journals/annales-francaises-danesthesie-et-de-reanimation/0750-7658', 'www.elsevier.com/journals/annales-francaises-doto-rhino-laryngologie-et-de-pathologie-cervico-faciale/1879-7261', 'www.elsevier.com/journals/annales-medico-psychologiques-revue-psychiatrique/0003-4487', 'www.elsevier.com/journals/annales-pharmaceutiques-francaises/0003-4509', 'www.elsevier.com/journals/annales-scientifiques-de-lecole-normale-superieure/0012-9593', 'www.journals.elsevier.com/annals-of-agricultural-sciences/', 'www.journals.elsevier.com/annals-of-allergy-asthma-and-immunology/', 'www.elsevier.com/journals/annals-of-anatomy/0940-9602', 'www.journals.elsevier.com/annals-of-diagnostic-pathology/', 'www.journals.elsevier.com/annals-of-emergency-medicine/', 'www.journals.elsevier.com/annals-of-epidemiology/', 'www.journals.elsevier.com/annals-of-nuclear-energy/', 'www.elsevier.com/journals/annals-of-physical-and-rehabilitation-medicine/1877-0657', 'www.journals.elsevier.com/annals-of-physics/', 'www.journals.elsevier.com/annals-of-pure-and-applied-logic/', 'www.journals.elsevier.com/annals-of-the-icrp/', 'www.journals.elsevier.com/annals-of-tourism-research/', 'www.journals.elsevier.com/annals-of-vascular-surgery/', 'www.journals.elsevier.com/annual-reviews-in-control/', 'www.journals.elsevier.com/anthropocene/', 'www.elsevier.com/journals/antibiotiques/1294-5501', 'www.journals.elsevier.com/antiviral-research/', 'www.journals.elsevier.com/aorn-journal/', 'www.journals.elsevier.com/apcbee-procedia/', 'www.elsevier.com/journals/apollo-medicine/0976-0016', 'www.journals.elsevier.com/appetite/', 'www.journals.elsevier.com/applied-and-preventive-psychology/', 'www.journals.elsevier.com/applied-acoustics/', 'www.journals.elsevier.com/applied-and-computational-harmonic-analysis/', 'www.journals.elsevier.com/applied-and-translational-genomics/', 'www.journals.elsevier.com/applied-animal-behaviour-science/', 'www.elsevier.com/journals/applied-catalysis-ab-combined-subscription/fs00-0332', 'www.journals.elsevier.com/applied-catalysis-a-general/', 'www.journals.elsevier.com/applied-catalysis-b-environmental/', 'www.journals.elsevier.com/applied-clay-science/', 'www.journals.elsevier.com/applied-computing-and-informatics/', 'www.journals.elsevier.com/applied-energy/', 'www.journals.elsevier.com/applied-ergonomics/', 'www.journals.elsevier.com/applied-geochemistry/', 'www.journals.elsevier.com/applied-geography/', 'www.journals.elsevier.com/applied-mathematical-modelling/', 'www.elsevier.com/journals/applied-mathematical-modelling-with-simulation-modelling-practice-and-theory-combined-subscription/fs00-7004', 'www.journals.elsevier.com/applied-mathematics-and-computation/', 'www.journals.elsevier.com/applied-mathematics-letters/', 'www.journals.elsevier.com/applied-numerical-mathematics/', 'www.journals.elsevier.com/applied-nursing-research/', 'www.journals.elsevier.com/applied-ocean-research/', 'www.journals.elsevier.com/applied-radiation-and-isotopes/', 'www.journals.elsevier.com/applied-soft-computing/', 'www.journals.elsevier.com/applied-soil-ecology/', 'www.journals.elsevier.com/applied-surface-science/', 'www.journals.elsevier.com/applied-thermal-engineering/', 'www.elsevier.com/journals/apunts-medicina-de-lesport/1886-6581', 'www.journals.elsevier.com/aquacultural-engineering/', 'www.journals.elsevier.com/aquaculture/', 'www.journals.elsevier.com/aquatic-botany/', 'www.journals.elsevier.com/aquatic-toxicology/', 'www.elsevier.com/journals/arab-journal-of-gastroenterology/1687-1979', 'www.journals.elsevier.com/arab-journal-of-mathematical-sciences/', 'www.elsevier.com/journals/arab-journal-of-urology/2090-598x', 'www.journals.elsevier.com/arabian-journal-of-chemistry/', 'www.journals.elsevier.com/archaeology-ethnology-and-anthropology-of-eurasia/', 'www.elsevier.com/journals/archives-de-pediatrie/0929-693x', 'www.elsevier.com/journals/archives-des-maladies-du-cur-et-des-vaisseaux-pratique/1261-694x', 'www.elsevier.com/journals/archives-des-maladies-professionnelles-et-de-lenvironnement/1775-8785', 'www.journals.elsevier.com/archives-of-biochemistry-and-biophysics/', 'www.elsevier.com/journals/archives-of-cardiovascular-diseases/1875-2136', 'www.elsevier.com/journals/archives-of-cardiovascular-diseases-supplements/1878-6480', 'www.elsevier.com/journals/archives-of-civil-and-mechanical-engineering/1644-9665', 'www.elsevier.com/journals/archives-of-clinical-neuropsychology/0887-6177', 'www.journals.elsevier.com/archives-of-gerontology-and-geriatrics/', 'www.journals.elsevier.com/archives-of-medical-research/', 'www.journals.elsevier.com/archives-of-oral-biology/', 'www.journals.elsevier.com/archives-of-physical-medicine-and-rehabilitation/', 'www.journals.elsevier.com/archives-of-psychiatric-nursing/', 'www.elsevier.com/journals/archivos-de-bronconeumologia/0300-2896', 'www.elsevier.com/journals/archivos-de-la-sociedad-espanola-de-oftalmologia/0365-6691', 'www.elsevier.com/journals/archivos-de-la-sociedad-espanola-de-oftalmologia-english-edition/2173-5794', 'www.journals.elsevier.com/artery-research/', 'www.elsevier.com/journals/arthritis-and-rheumatism-section-31-embase/0014-4355', 'www.journals.elsevier.com/arthropod-structure-and-development/', 'www.elsevier.com/journals/arthropod-structure-and-development-with-insect-biochemistry-and-molecular-biology-and-journal-of-insect-physiology-combined-subscription/fs00-0394', 'www.journals.elsevier.com/arthroscopy-techniques/', 'www.journals.elsevier.com/arthroscopy-the-journal-of-arthroscopy-and-related-surgery/', 'www.journals.elsevier.com/artificial-intelligence/', 'www.journals.elsevier.com/artificial-intelligence-in-medicine/', 'www.elsevier.com/journals/asian-journal-of-oral-and-maxillofacial-surgery/0915-6992', 'www.journals.elsevier.com/asian-journal-of-psychiatry/', 'www.elsevier.com/journals/asian-journal-of-surgery/1015-9584', 'www.elsevier.com/journals/asian-nursing-research/1976-1317', 'www.elsevier.com/journals/asian-pacific-journal-of-reproduction/2305-0500', 'www.elsevier.com/journals/asian-pacific-journal-of-tropical-biomedicine/2221-1691', 'www.elsevier.com/journals/asian-pacific-journal-of-tropical-disease/2222-1808', 'www.elsevier.com/journals/asian-pacific-journal-of-tropical-medicine/1995-7645', 'www.journals.elsevier.com/assessing-writing/', 'www.elsevier.com/journals/asthma-magazine/1088-0712', 'www.elsevier.com/journals/astronomy-and-astrophysics-package/fs00-5460', 'www.journals.elsevier.com/astronomy-and-computing/', 'www.journals.elsevier.com/astroparticle-physics/', 'www.elsevier.com/journals/atencion-primaria/0212-6567', 'www.journals.elsevier.com/atherosclerosis/', 'www.elsevier.com/journals/atlas-of-the-oral-and-maxillofacial-surgery-clinics-of-north-america/1061-3315', 'www.journals.elsevier.com/atmospheric-environment/', 'www.journals.elsevier.com/atmospheric-research/', 'www.journals.elsevier.com/atomic-data-and-nuclear-data-tables/', 'www.elsevier.com/journals/auris-nasus-larynx/0385-8146', 'www.elsevier.com/journals/australasian-emergency-nursing-journal/1574-6267', 'www.journals.elsevier.com/australasian-marketing-journal/', 'www.elsevier.com/journals/australian-critical-care/1036-7314', 'www.journals.elsevier.com/autoimmunity-reviews/', 'www.journals.elsevier.com/automatica/', 'www.elsevier.com/journals/automatica-with-control-engineering-practice-combined-subscription/fs00-0323', 'www.journals.elsevier.com/automation-in-construction/', 'www.journals.elsevier.com/autonomic-neuroscience-basic-and-clinical/', 'www.elsevier.com/journals/avances-en-diabetologia/1134-3230', 'www.journals.elsevier.com/journal-of-aapos/', 'www.journals.elsevier.com/journal-of-accounting-and-economics/', 'www.journals.elsevier.com/journal-of-accounting-and-public-policy/', 'www.journals.elsevier.com/journal-of-accounting-education/', 'www.elsevier.com/journals/journal-of-accounting-literature/0737-4607', 'www.elsevier.com/journals/journal-of-acupuncture-and-meridian-studies/2005-2901', 'www.elsevier.com/journals/journal-of-acute-disease/2221-6189', 'www.elsevier.com/journals/journal-of-acute-medicine/2211-5587', 'www.journals.elsevier.com/journal-of-adolescence/', 'www.journals.elsevier.com/journal-of-adolescent-health/', 'www.journals.elsevier.com/journal-of-advanced-research/', 'www.journals.elsevier.com/journal-of-aerosol-science/', 'www.journals.elsevier.com/journal-of-affective-disorders/', 'www.journals.elsevier.com/journal-of-african-earth-sciences/', 'www.journals.elsevier.com/journal-of-aging-studies/', 'www.journals.elsevier.com/journal-of-air-transport-management/', 'www.journals.elsevier.com/journal-of-algebra/', 'www.elsevier.com/journals/journal-of-algorithms-in-cognition-informatics-and-logic/0196-6774', 'www.journals.elsevier.com/journal-of-allergy-and-clinical-immunology/', 'www.journals.elsevier.com/journal-of-alloys-and-compounds/', 'www.journals.elsevier.com/journal-of-analytical-and-applied-pyrolysis/', 'www.journals.elsevier.com/journal-of-anthropological-archaeology/', 'www.journals.elsevier.com/journal-of-anxiety-disorders/', 'www.journals.elsevier.com/journal-of-applied-developmental-psychology/', 'www.journals.elsevier.com/journal-of-applied-economics/', 'www.journals.elsevier.com/journal-of-applied-geophysics/', 'www.journals.elsevier.com/journal-of-applied-logic/', 'www.journals.elsevier.com/journal-of-applied-mathematics-and-mechanics/', 'www.journals.elsevier.com/journal-of-applied-research-in-memory-and-cognition/', 'www.journals.elsevier.com/journal-of-approximation-theory/', 'www.journals.elsevier.com/journal-of-archaeological-science/', 'www.journals.elsevier.com/journal-of-arid-environments/', 'www.elsevier.com/journals/journal-of-arrhythmia/1880-4276', 'www.journals.elsevier.com/journal-of-arthroplasty/', 'www.journals.elsevier.com/journal-of-asia-pacific-entomology/', 'www.elsevier.com/journals/journal-of-asian-ceramic-societies/2187-0764', 'www.journals.elsevier.com/journal-of-asian-earth-sciences/', 'www.journals.elsevier.com/journal-of-asian-economics/', 'www.journals.elsevier.com/journal-of-atmospheric-and-solar-terrestrial-physics/', 'www.journals.elsevier.com/journal-of-autoimmunity/', 'www.journals.elsevier.com/journal-of-the-academy-of-nutrition-and-dietetics/', 'www.journals.elsevier.com/journal-of-the-american-academy-of-child-and-adolescent-psychiatry/', 'www.journals.elsevier.com/journal-of-the-american-academy-of-dermatology/', 'www.journals.elsevier.com/journal-of-the-american-college-of-radiology/', 'www.journals.elsevier.com/journal-of-the-american-college-of-surgeons/', 'www.elsevier.com/journals/journal-of-the-american-dietetic-association/0002-8223', 'www.journals.elsevier.com/journal-of-the-american-medical-directors-association/', 'www.elsevier.com/journals/journal-of-the-american-society-for-mass-spectrometry/1044-0305', 'www.elsevier.com/journals/journal-of-the-american-society-of-cytopathology/2213-2945', 'www.journals.elsevier.com/journal-of-the-american-society-of-echocardiography/', 'www.journals.elsevier.com/journal-of-the-american-society-of-hypertension/', 'www.journals.elsevier.com/journal-of-the-association-for-vascular-access/', 'www.journals.elsevier.com/journal-of-the-association-of-arab-universities-for-basic-and-applied-sciences/', 'www.journals.elsevier.com/journal-of-the-association-of-nurses-in-aids-care/', 'www.journals.elsevier.com/the-american-journal-of-cardiology/', 'www.journals.elsevier.com/the-american-journal-of-geriatric-pharmacotherapy/', 'www.elsevier.com/journals/the-american-journal-of-geriatric-psychiatry/1064-7481', 'www.elsevier.com/journals/the-american-journal-of-human-genetics/0002-9297', 'www.journals.elsevier.com/the-american-journal-of-medicine/', 'www.journals.elsevier.com/the-american-journal-of-pathology/', 'www.journals.elsevier.com/the-american-journal-of-surgery/', 'www.journals.elsevier.com/the-annals-of-thoracic-surgery/', 'www.journals.elsevier.com/the-arts-in-psychotherapy/', 'www.journals.elsevier.com/the-asian-journal-of-shipping-and-logistics/', 'www.journals.elsevier.com/the-journal-of-academic-librarianship/', 'www.elsevier.com/journals/the-journal-of-allergy-and-clinical-immunology-in-practice/2213-2198', 'www.journals.elsevier.com/the-journal-of-the-american-college-of-certified-wound-specialists/', 'www.journals.elsevier.com/the-journal-of-the-american-college-of-clinical-wound-specialists/', 'www.elsevier.com/journals/basal-ganglia/2210-5336', 'www.elsevier.com/journals/basic-and-applied-ecology/1439-1791', 'www.elsevier.com/journals/bba-biochimica-et-biophysica-acta/fs00-0253', 'www.journals.elsevier.com/bba-bioenergetics/', 'www.journals.elsevier.com/bba-biomembranes/', 'www.journals.elsevier.com/bba-gene-regulatory-mechanisms/', 'www.elsevier.com/journals/bba-gene-structure-and-expression/0167-4781', 'www.journals.elsevier.com/bba-general-subjects/', 'www.journals.elsevier.com/bba-molecular-and-cell-biology-of-lipids/', 'www.journals.elsevier.com/bba-molecular-basis-of-disease/', 'www.journals.elsevier.com/bba-molecular-cell-research/', 'www.journals.elsevier.com/bba-proteins-and-proteomics/', 'www.journals.elsevier.com/bba-reviews-on-cancer/', 'www.journals.elsevier.com/behavior-therapy/', 'www.journals.elsevier.com/behaviour-research-and-therapy/', 'www.journals.elsevier.com/behavioural-brain-research/', 'www.journals.elsevier.com/behavioural-processes/', 'www.journals.elsevier.com/best-practice-and-research-clinical-anaesthesiology/', 'www.journals.elsevier.com/best-practice-and-research-clinical-endocrinology-and-metabolism/', 'www.journals.elsevier.com/best-practice-and-research-clinical-gastroenterology/', 'www.journals.elsevier.com/best-practice-and-research-clinical-haematology/', 'www.journals.elsevier.com/best-practice-and-research-clinical-obstetrics-and-gynaecology/', 'www.journals.elsevier.com/best-practice-and-research-clinical-rheumatology/', 'www.journals.elsevier.com/bioactive-carbohydrates-and-dietary-fibre/', 'www.journals.elsevier.com/biocatalysis-and-agricultural-biotechnology/', 'www.journals.elsevier.com/biochemical-and-biophysical-research-communications/', 'www.journals.elsevier.com/biochemical-engineering-journal/', 'www.journals.elsevier.com/biochemical-pharmacology/', 'www.journals.elsevier.com/biochemical-systematics-and-ecology/', 'www.journals.elsevier.com/biochimie/', 'www.elsevier.com/journals/biocybernetics-and-biomedical-engineering/0208-5216', 'www.journals.elsevier.com/bioelectrochemistry/', 'www.journals.elsevier.com/biological-conservation/', 'www.journals.elsevier.com/biological-control/', 'www.journals.elsevier.com/biological-psychiatry/', 'www.journals.elsevier.com/biological-psychology/', 'www.journals.elsevier.com/biologically-inspired-cognitive-architectures/', 'www.journals.elsevier.com/biologicals/', 'www.journals.elsevier.com/biology-of-blood-and-marrow-transplantation/', 'www.journals.elsevier.com/biomass-and-bioenergy/', 'www.journals.elsevier.com/biomaterials/', 'www.elsevier.com/journals/biomedical-and-environmental-sciences/0895-3988', 'www.journals.elsevier.com/biomedical-signal-processing-and-control/', 'www.elsevier.com/journals/biomedicine/2211-8020', 'www.elsevier.com/journals/biomedicine-and-aging-pathology/2210-5220', 'www.elsevier.com/journals/biomedicine-and-pharmacotherapy/0753-3322', 'www.elsevier.com/journals/biomedicine-and-preventive-nutrition/2210-5239', 'www.elsevier.com/journals/biometric-technology-today/0969-4765', 'www.journals.elsevier.com/bioorganic-and-medicinal-chemistry/', 'www.journals.elsevier.com/bioorganic-and-medicinal-chemistry-letters/', 'www.elsevier.com/journals/bioorganic-and-medicinal-chemistry-letters-with-tetrahedron-letters-combined-subscription/fs00-0107', 'www.elsevier.com/journals/bioorganic-and-medicinal-chemistry-with-bioorganic-and-medicinal-chemistry-letters-combined-subscription/fs00-0131', 'www.journals.elsevier.com/bioorganic-chemistry/', 'www.journals.elsevier.com/biophysical-chemistry/', 'www.elsevier.com/journals/biophysical-journal/0006-3495', 'www.elsevier.com/journals/biophysics-bioengineering-and-medical-instrumentation-section-27-embase/0014-4312', 'www.journals.elsevier.com/bioresource-technology/', 'www.elsevier.com/journals/bioscience-hypotheses/1756-2392', 'www.journals.elsevier.com/biosensors-and-bioelectronics/', 'www.journals.elsevier.com/biosystems/', 'www.journals.elsevier.com/biosystems-engineering/', 'www.journals.elsevier.com/biotechnology-advances/', 'www.journals.elsevier.com/blood-cells-molecules-and-diseases/', 'www.journals.elsevier.com/blood-reviews/', 'www.journals.elsevier.com/body-image/', 'www.elsevier.com/journals/boletin-de-aelfa/1137-8174', 'www.journals.elsevier.com/bone/', 'www.journals.elsevier.com/brachytherapy/', 'www.elsevier.com/journals/brain-and-development/0387-7604', 'www.journals.elsevier.com/brain-and-cognition/', 'www.journals.elsevier.com/brain-and-language/', 'www.journals.elsevier.com/brain-research/', 'www.journals.elsevier.com/brain-research-bulletin/', 'www.elsevier.com/journals/brain-research-combined-subscription/fs00-0265', 'www.journals.elsevier.com/brain-research-reviews/', 'www.journals.elsevier.com/brain-stimulation/', 'www.journals.elsevier.com/brain-behavior-and-immunity/', 'www.elsevier.com/journals/brazilian-journal-of-anesthesiology/0034-7094', 'www.elsevier.com/journals/brazilian-journal-of-infectious-diseases/1413-8670', 'www.elsevier.com/journals/brazilian-journal-of-rheumatology/0482-5004', 'www.elsevier.com/journals/breast-diseases-a-year-book-quarterly/1043-321x', 'www.journals.elsevier.com/british-journal-of-medical-and-surgical-urology/', 'www.journals.elsevier.com/british-journal-of-oral-and-maxillofacial-surgery/', 'www.journals.elsevier.com/building-and-environment/', 'www.elsevier.com/journals/bulletin-de-lacademie-nationale-de-medecine/0001-4079', 'www.elsevier.com/journals/bulletin-de-lordre-des-medecins/0030-4565', 'www.journals.elsevier.com/bulletin-des-sciences-mathematiques/', 'www.elsevier.com/journals/bulletin-of-faculty-of-pharmacy-cairo-university/1110-0931', 'www.elsevier.com/journals/burnout-research/2213-0586', 'www.journals.elsevier.com/burns/', 'www.journals.elsevier.com/business-horizons/', 'www.journals.elsevier.com/journal-of-banking-and-finance/', 'www.journals.elsevier.com/journal-of-behavior-therapy-and-experimental-psychiatry/', 'www.elsevier.com/journals/journal-of-biochemical-and-biophysical-methods/0165-022x', 'www.journals.elsevier.com/journal-of-biomechanics/', 'www.journals.elsevier.com/journal-of-biomedical-informatics/', 'www.elsevier.com/journals/journal-of-biomedical-research/1674-8301', 'www.elsevier.com/journals/journal-of-bionic-engineering/1672-6529', 'www.journals.elsevier.com/journal-of-bioscience-and-bioengineering/', 'www.journals.elsevier.com/journal-of-biotechnology/', 'www.journals.elsevier.com/journal-of-bodywork-and-movement-therapies/', 'www.elsevier.com/journals/journal-of-bone-oncology/2212-1374', 'www.journals.elsevier.com/journal-of-business-research/', 'www.journals.elsevier.com/journal-of-business-venturing/', 'www.journals.elsevier.com/the-breast/', 'www.journals.elsevier.com/the-british-accounting-review/', 'www.journals.elsevier.com/the-journal-of-basic-and-applied-zoology/', 'www.elsevier.com/journals/cahiers-de-la-puericultrice/0007-9820', 'www.elsevier.com/journals/cahiers-de-nutrition-et-de-dietetique/0007-9960', 'www.journals.elsevier.com/calphad/', 'www.journals.elsevier.com/canadian-association-of-radiologists-journal/', 'www.journals.elsevier.com/canadian-journal-of-cardiology/', 'www.journals.elsevier.com/canadian-journal-of-diabetes/', 'www.journals.elsevier.com/canadian-journal-of-ophthalmology/', 'www.elsevier.com/journals/cancer-section-16-embase/0014-4207', 'www.elsevier.com/journals/cancer-cell/1535-6108', 'www.elsevier.com/journals/cancer-detection-and-prevention/0361-090x', 'www.journals.elsevier.com/cancer-epidemiology/', 'www.journals.elsevier.com/cancer-genetics/', 'www.elsevier.com/journals/cancer-genetics-and-cytogenetics/0165-4608', 'www.journals.elsevier.com/cancer-letters/', 'www.elsevier.com/journals/cancer-radiotherapie/1278-3218', 'www.journals.elsevier.com/cancer-treatment-communications/', 'www.journals.elsevier.com/cancer-treatment-reviews/', 'www.journals.elsevier.com/carbohydrate-polymers/', 'www.journals.elsevier.com/carbohydrate-research/', 'www.journals.elsevier.com/carbon/', 'www.elsevier.com/journals/card-technology-today/0965-2590', 'www.elsevier.com/journals/cardiac-electrophysiology-clinics/1877-9182', 'www.elsevier.com/journals/cardiocore/1889-898x', 'www.elsevier.com/journals/cardiology-clinics/0733-8651', 'www.elsevier.com/journals/cardiology-news/1544-8800', 'www.elsevier.com/journals/cardiovascular-diseases-and-cardiovascular-surgery-section-18-embase/0014-4223', 'www.journals.elsevier.com/cardiovascular-pathology/', 'www.journals.elsevier.com/cardiovascular-revascularization-medicine/', 'www.journals.elsevier.com/caring-for-the-ages/', 'www.journals.elsevier.com/case-studies-in-engineering-failure-analysis/', 'www.elsevier.com/journals/case-studies-in-thermal-engineering/2214-157x', 'www.journals.elsevier.com/case-studies-on-transport-policy/', 'www.journals.elsevier.com/catalysis-communications/', 'www.journals.elsevier.com/catalysis-today/', 'www.journals.elsevier.com/catena/', 'www.elsevier.com/journals/cell/0092-8674', 'www.elsevier.com/journals/cell-biology-international/1065-6995', 'www.journals.elsevier.com/cell-calcium/', 'www.elsevier.com/journals/cell-host-and-microbe/1931-3128', 'www.elsevier.com/journals/cell-metabolism/1550-4131', 'www.elsevier.com/journals/cell-reports/2211-1247', 'www.elsevier.com/journals/cell-stem-cell/1934-5909', 'www.journals.elsevier.com/cellular-immunology/', 'www.journals.elsevier.com/cellular-signalling/', 'www.journals.elsevier.com/cement-and-concrete-composites/', 'www.journals.elsevier.com/cement-and-concrete-research/', 'www.journals.elsevier.com/ceramics-international/', 'www.journals.elsevier.com/cerevisia/', 'www.journals.elsevier.com/chaos-solitons-and-fractals/', 'www.journals.elsevier.com/chemical-engineering-and-processing-process-intensification/', 'www.journals.elsevier.com/chemical-engineering-journal/', 'www.elsevier.com/journals/chemical-engineering-journal-with-biochemical-engineering-journal-combined-subscription/fs00-6050', 'www.journals.elsevier.com/chemical-engineering-research-and-design/', 'www.elsevier.com/journals/chemical-engineering-research-and-design-with-process-safety-and-environmental-protection-and-food-and-bioproducts-processing-combined-subscription/fs00-8637', 'www.journals.elsevier.com/chemical-engineering-science/', 'www.journals.elsevier.com/chemical-geology/', 'www.journals.elsevier.com/chemical-physics/', 'www.journals.elsevier.com/chemical-physics-letters/', 'www.elsevier.com/journals/chemical-research-in-chinese-universities/1005-9040', 'www.journals.elsevier.com/chemico-biological-interactions/', 'www.elsevier.com/journals/chemie-der-erde-geochemistry/0009-2819', 'www.elsevier.com/journals/chemistry-and-biology/1074-5521', 'www.journals.elsevier.com/chemistry-and-physics-of-lipids/', 'www.journals.elsevier.com/chemometrics-and-intelligent-laboratory-systems/', 'www.journals.elsevier.com/chemosphere/', 'www.elsevier.com/journals/chest-diseases-thoracic-surgery-and-tuberculosis-section-15-embase/0014-4193', 'www.elsevier.com/journals/chest-physician/1558-6200', 'www.journals.elsevier.com/child-abuse-and-neglect/', 'www.elsevier.com/journals/child-and-adolescent-psychiatric-clinics-of-north-america/1056-4993', 'www.journals.elsevier.com/children-and-youth-services-review/', 'www.journals.elsevier.com/china-economic-review/', 'www.journals.elsevier.com/china-journal-of-accounting-research/', 'www.elsevier.com/journals/china-particuology/1672-2515', 'www.elsevier.com/journals/china-population-resources-and-environment/1872-583x', 'www.journals.elsevier.com/chinese-astronomy-and-astrophysics/', 'www.elsevier.com/journals/chinese-chemical-letters/1001-8417', 'www.elsevier.com/journals/chinese-herbal-medicines/1674-6384', 'www.journals.elsevier.com/chinese-journal-of-aeronautics/', 'www.elsevier.com/journals/chinese-journal-of-analytical-chemistry/1872-2040', 'www.elsevier.com/journals/chinese-journal-of-catalysis/1872-2067', 'www.elsevier.com/journals/chinese-journal-of-chemical-engineering/1004-9541', 'www.elsevier.com/journals/chinese-journal-of-chromatography/1872-2059', 'www.elsevier.com/journals/chinese-journal-of-natural-medicines/1875-5364', 'www.elsevier.com/journals/chinese-journal-of-traumatology-english-edition/1008-1275', 'www.elsevier.com/journals/chinese-medical-sciences-journal/1001-9294', 'www.elsevier.com/journals/chirurgie-de-la-main/1297-3203', 'www.elsevier.com/journals/chromatographia/0009-5893', 'www.journals.elsevier.com/cirp-annals-manufacturing-technology/', 'www.journals.elsevier.com/cirp-journal-of-manufacturing-science-and-technology/', 'www.elsevier.com/journals/cirugia-espanola/0009-739x', 'www.elsevier.com/journals/cirugia-espanola-english-edition/2173-5077', 'www.journals.elsevier.com/cities/', 'www.elsevier.com/journals/cities-with-habitat-international-combined-subscription/fs00-1028', 'www.journals.elsevier.com/city-culture-and-society/', 'www.elsevier.com/journals/clinica-e-investigacion-en-arteriosclerosis/0214-9168', 'www.elsevier.com/journals/clinica-e-investigacion-en-ginecologia-y-obstetricia/0210-573x', 'www.journals.elsevier.com/climate-risk-management/', 'www.journals.elsevier.com/clinica-chimica-acta/', 'www.elsevier.com/journals/clinical-and-applied-immunology-reviews/1529-1049', 'www.elsevier.com/journals/clinical-and-experimental-biochemistry-section-29-embase/0927-278x', 'www.elsevier.com/journals/clinical-and-experimental-pharmacology-section-30-embase/0927-2798', 'www.journals.elsevier.com/clinical-biochemistry/', 'www.journals.elsevier.com/clinical-biomechanics/', 'www.journals.elsevier.com/clinical-breast-cancer/', 'www.journals.elsevier.com/clinical-chiropractic/', 'www.journals.elsevier.com/clinical-colorectal-cancer/', 'www.elsevier.com/journals/clinical-cornerstone/1098-3597', 'www.elsevier.com/journals/clinical-effectiveness-in-nursing/1361-9004', 'www.elsevier.com/journals/clinical-endocrinology-news/1558-0164', 'www.elsevier.com/journals/clinical-epidemiology-and-global-health/2213-3984', 'www.journals.elsevier.com/clinical-gastroenterology-and-hepatology/', 'www.journals.elsevier.com/clinical-genitourinary-cancer/', 'www.journals.elsevier.com/clinical-imaging/', 'www.journals.elsevier.com/clinical-immunology/', 'www.journals.elsevier.com/clinical-lung-cancer/', 'www.journals.elsevier.com/clinical-lymphoma-myeloma-and-leukemia/', 'www.journals.elsevier.com/clinical-microbiology-newsletter/', 'www.journals.elsevier.com/clinical-neurology-and-neurosurgery/', 'www.journals.elsevier.com/clinical-neurophysiology/', 'www.elsevier.com/journals/clinical-neuroscience-research/1566-2772', 'www.journals.elsevier.com/clinical-nutrition/', 'www.journals.elsevier.com/clinical-nutrition-supplements/', 'www.journals.elsevier.com/clinical-oncology/', 'www.journals.elsevier.com/clinical-ovarian-and-other-gynecologic-cancer/', 'www.elsevier.com/journals/clinical-ovarian-cancer/1941-4390', 'www.journals.elsevier.com/clinical-pediatric-emergency-medicine/', 'www.elsevier.com/journals/clinical-plasma-medicine/2212-8166', 'www.elsevier.com/journals/clinical-psychiatry-news/0270-6644', 'www.journals.elsevier.com/clinical-psychology-review/', 'www.elsevier.com/journals/clinical-queries-nephrology/2211-9477', 'www.journals.elsevier.com/clinical-radiology/', 'www.journals.elsevier.com/clinical-simulation-in-nursing/', 'www.journals.elsevier.com/clinical-therapeutics/', 'www.elsevier.com/journals/clinics-and-research-in-hepatology-and-gastroenterology/2210-7401', 'www.elsevier.com/journals/clinics-in-chest-medicine/0272-5231', 'www.journals.elsevier.com/clinics-in-dermatology/', 'www.elsevier.com/journals/clinics-in-geriatric-medicine/0749-0690', 'www.elsevier.com/journals/clinics-in-laboratory-medicine/0272-2712', 'www.elsevier.com/journals/clinics-in-liver-disease/1089-3261', 'www.elsevier.com/journals/clinics-in-perinatology/0095-5108', 'www.elsevier.com/journals/clinics-in-plastic-surgery/0094-1298', 'www.elsevier.com/journals/clinics-in-podiatric-medicine-and-surgery/0891-8422', 'www.elsevier.com/journals/clinics-in-sports-medicine/0278-5919', 'www.elsevier.com/journals/cme-supplement-to-clinics-in-perinatology/1557-7864', 'www.elsevier.com/journals/cme-supplement-to-critical-care-nursing-clinics-of-north-america/1557-7880', 'www.elsevier.com/journals/cme-supplement-to-dental-clinics-of-north-america/1554-1959', 'www.elsevier.com/journals/cme-supplement-to-emergency-medicine-clinics-of-north-america/1557-8151', 'www.elsevier.com/journals/cme-supplement-to-magnetic-resonance-imaging-clinics-of-north-america/1557-8178', 'www.elsevier.com/journals/cme-supplement-to-medical-clinics-of-north-america/1557-8143', 'www.elsevier.com/journals/cme-supplement-to-neuroimaging-clinics-of-north-america/1557-8186', 'www.elsevier.com/journals/cme-supplement-to-obstetrics-and-gynecology-clinics/1557-816x', 'www.elsevier.com/journals/cme-supplement-to-pediatric-clinics-of-north-america/1557-8135', 'www.elsevier.com/journals/cme-supplement-to-radiologic-clinics-of-north-americs/1557-7872', 'www.elsevier.com/journals/cme-supplement-to-veterinary-clinics-of-north-america-equine-practice/1554-1967', 'www.elsevier.com/journals/cme-supplement-to-veterinary-clinics-of-north-america-exotic-animal-practice/1554-1991', 'www.elsevier.com/journals/cme-supplement-to-veterinary-clinics-small-animal-practice/1554-1983', 'www.elsevier.com/journals/cme-pet-clinics/1559-7814', 'www.elsevier.com/journals/cme-ultrasound-clinics/1559-7792', 'www.journals.elsevier.com/coastal-engineering/', 'www.journals.elsevier.com/cognition/', 'www.journals.elsevier.com/cognitive-and-behavioral-practice/', 'www.journals.elsevier.com/cognitive-development/', 'www.journals.elsevier.com/cognitive-psychology/', 'www.journals.elsevier.com/cognitive-systems-research/', 'www.journals.elsevier.com/cold-regions-science-and-technology/', 'www.elsevier.com/journals/collegian/1322-7696', 'www.elsevier.com/journals/colloids-and-surfaces-ab-combined-subscription/fs00-0457', 'www.journals.elsevier.com/colloids-and-surfaces-a-physicochemical-and-engineering-aspects/', 'www.journals.elsevier.com/colloids-and-surfaces-b-biointerfaces/', 'www.elsevier.com/journals/colombian-journal-of-anesthesiology/2256-2087', 'www.elsevier.com/journals/combinatorial-chemistry-an-online-journal/1464-3383', 'www.journals.elsevier.com/combustion-and-flame/', 'www.journals.elsevier.com/communications-in-nonlinear-science-and-numerical-simulation/', 'www.journals.elsevier.com/communist-and-post-communist-studies/', 'www.elsevier.com/journals/community-oncology/1548-5315', 'www.journals.elsevier.com/comparative-biochemistry-and-physiology-part-a-molecular-and-integrative-physiology/', 'www.journals.elsevier.com/comparative-biochemistry-and-physiology-part-b-biochemistry-and-molecular-biology/', 'www.journals.elsevier.com/comparative-biochemistry-and-physiology-part-c-toxicology-and-pharmacology/', 'www.journals.elsevier.com/comparative-biochemistry-and-physiology-part-d-genomics-and-proteomics/', 'www.elsevier.com/journals/comparative-biochemistry-and-physiology-parts-a-b-c-and-d-full-set/fs00-7514', 'www.journals.elsevier.com/comparative-immunology-microbiology-and-infectious-diseases/', 'www.journals.elsevier.com/complementary-therapies-in-clinical-practice/', 'www.journals.elsevier.com/complementary-therapies-in-medicine/', 'www.journals.elsevier.com/composite-structures/', 'www.journals.elsevier.com/composites-part-a-applied-science-and-manufacturing/', 'www.journals.elsevier.com/composites-part-b-engineering/', 'www.elsevier.com/journals/composites-parts-a-and-b-combined-subscription/fs00-1000', 'www.journals.elsevier.com/composites-science-and-technology/', 'www.journals.elsevier.com/comprehensive-psychiatry/', 'www.elsevier.com/journals/comptes-rendus-biologies/1631-0691', 'www.elsevier.com/journals/comptes-rendus-chimie/1631-0748', 'www.elsevier.com/journals/comptes-rendus-de-lacademie-des-sciences-option-1-combined-subscription/fs00-9100', 'www.elsevier.com/journals/comptes-rendus-geoscience/1631-0713', 'www.elsevier.com/journals/comptes-rendus-mathematique/1631-073x', 'www.elsevier.com/journals/comptes-rendus-mecanique/1631-0721', 'www.elsevier.com/journals/comptes-rendus-palevol/1631-0683', 'www.elsevier.com/journals/comptes-rendus-physique/1631-0705', 'www.journals.elsevier.com/computational-and-theoretical-chemistry/', 'www.journals.elsevier.com/computational-biology-and-chemistry/', 'www.journals.elsevier.com/computational-geometry/', 'www.journals.elsevier.com/computational-materials-science/', 'www.journals.elsevier.com/computational-statistics-and-data-analysis/', 'www.journals.elsevier.com/computer-aided-geometric-design/', 'www.journals.elsevier.com/computer-communications/', 'www.elsevier.com/journals/computer-fraud-and-security/1361-3723', 'www.journals.elsevier.com/computer-languages-systems-and-structures/', 'www.journals.elsevier.com/computer-law-and-security-review/', 'www.journals.elsevier.com/computer-methods-and-programs-in-biomedicine/', 'www.journals.elsevier.com/computer-methods-in-applied-mechanics-and-engineering/', 'www.journals.elsevier.com/computer-networks/', 'www.elsevier.com/journals/computer-networks-with-ad-hoc-networks-and-optical-switching-and-networking-full-set/fs00-5500', 'www.journals.elsevier.com/computer-physics-communications/', 'www.journals.elsevier.com/computer-science-review/', 'www.journals.elsevier.com/computer-speech-and-language/', 'www.journals.elsevier.com/computer-standards-and-interfaces/', 'www.journals.elsevier.com/computer-vision-and-image-understanding/', 'www.journals.elsevier.com/computer-aided-design/', 'www.journals.elsevier.com/computerized-medical-imaging-and-graphics/', 'www.journals.elsevier.com/computers-and-chemical-engineering/', 'www.journals.elsevier.com/computers-and-education/', 'www.journals.elsevier.com/computers-and-electrical-engineering/', 'www.journals.elsevier.com/computers-and-fluids/', 'www.journals.elsevier.com/computers-and-geosciences/', 'www.journals.elsevier.com/computers-and-graphics/', 'www.journals.elsevier.com/computers-and-industrial-engineering/', 'www.journals.elsevier.com/computers-and-mathematics-with-applications/', 'www.journals.elsevier.com/computers-and-operations-research/', 'www.journals.elsevier.com/computers-and-security/', 'www.journals.elsevier.com/computers-and-structures/', 'www.journals.elsevier.com/computers-and-composition/', 'www.journals.elsevier.com/computers-and-electronics-in-agriculture/', 'www.journals.elsevier.com/computers-and-geotechnics/', 'www.journals.elsevier.com/computers-in-biology-and-medicine/', 'www.journals.elsevier.com/computers-in-human-behavior/', 'www.journals.elsevier.com/computers-in-industry/', 'www.journals.elsevier.com/computers-environment-and-urban-systems/', 'www.journals.elsevier.com/consciousness-and-cognition/', 'www.journals.elsevier.com/construction-and-building-materials/', 'www.journals.elsevier.com/contact-lens-and-anterior-eye/', 'www.journals.elsevier.com/contemporary-clinical-trials/', 'www.journals.elsevier.com/contemporary-educational-psychology/', 'www.journals.elsevier.com/continental-shelf-research/', 'www.journals.elsevier.com/contraception/', 'www.journals.elsevier.com/control-engineering-practice/', 'www.journals.elsevier.com/coordination-chemistry-reviews/', 'www.elsevier.com/journals/cor-et-vasa/0010-8650', 'www.elsevier.com/journals/core-journals-in-cardiology/0165-9405', 'www.elsevier.com/journals/core-journals-in-clinical-neurology/0165-1056', 'www.elsevier.com/journals/core-journals-in-dermatology/0167-5796', 'www.elsevier.com/journals/core-journals-in-gastroenterology/0165-8719', 'www.elsevier.com/journals/core-journals-in-obstetrics-gynecology/0376-5059', 'www.elsevier.com/journals/core-journals-in-ophthalmology/0165-1005', 'www.elsevier.com/journals/core-journals-in-pediatrics/0376-5040', 'www.journals.elsevier.com/corrosion-science/', 'www.journals.elsevier.com/cortex/', 'www.elsevier.com/journals/cospar-information-bulletin/0045-8732', 'www.journals.elsevier.com/cretaceous-research/', 'www.elsevier.com/journals/critical-care-clinics/0749-0704', 'www.elsevier.com/journals/critical-care-nursing-clinics-of-north-america/0899-5885', 'www.journals.elsevier.com/critical-perspectives-on-accounting/', 'www.journals.elsevier.com/critical-reviews-in-oncology-hematology/', 'www.journals.elsevier.com/crop-protection/', 'www.journals.elsevier.com/cryobiology/', 'www.journals.elsevier.com/cryogenics/', 'www.elsevier.com/journals/cuadernos-de-economia/0210-0266', 'www.elsevier.com/journals/cuadernos-de-economia-y-direccion-de-la-empresa/1138-5758', 'www.elsevier.com/journals/current-advances-in-applied-microbiology-and-biotechnology/0964-8712', 'www.elsevier.com/journals/current-advances-in-cancer-research/0895-9803', 'www.elsevier.com/journals/current-advances-in-cell-and-developmental-biology/0741-1626', 'www.elsevier.com/journals/current-advances-in-clinical-chemistry/0885-1980', 'www.elsevier.com/journals/current-advances-in-ecological-and-environmental-sciences/0955-6648', 'www.elsevier.com/journals/current-advances-in-endocrinology-and-metabolism/0964-8720', 'www.elsevier.com/journals/current-advances-in-genetics-and-molecular-biology/0741-1642', 'www.elsevier.com/journals/current-advances-in-immunology-and-infectious-diseases/0964-8747', 'www.elsevier.com/journals/current-advances-in-neuroscience/0741-1677', 'www.elsevier.com/journals/current-advances-in-plant-science/0306-4484', 'www.elsevier.com/journals/current-advances-in-protein-biochemistry/0965-0504', 'www.elsevier.com/journals/current-advances-in-toxicology/0965-0512', 'www.elsevier.com/journals/current-anaesthesia-and-critical-care/0953-7112', 'www.journals.elsevier.com/current-applied-physics/', 'www.elsevier.com/journals/current-awareness-in-biological-sciences-cabs-full-set/fs00-0396', 'www.elsevier.com/journals/current-biology/0960-9822', 'www.elsevier.com/journals/current-diagnostic-pathology/0968-6053', 'www.elsevier.com/journals/current-obstetrics-and-gynaecology/0957-5847', 'www.journals.elsevier.com/current-opinion-in-biotechnology/', 'www.journals.elsevier.com/current-opinion-in-cell-biology/', 'www.journals.elsevier.com/current-opinion-in-chemical-biology/', 'www.journals.elsevier.com/current-opinion-in-chemical-engineering/', 'www.journals.elsevier.com/current-opinion-in-colloid-and-interface-science/', 'www.journals.elsevier.com/current-opinion-in-environmental-sustainability/', 'www.journals.elsevier.com/current-opinion-in-genetics-and-development/', 'www.journals.elsevier.com/current-opinion-in-immunology/', 'www.journals.elsevier.com/current-opinion-in-microbiology/', 'www.journals.elsevier.com/current-opinion-in-neurobiology/', 'www.journals.elsevier.com/current-opinion-in-pharmacology/', 'www.journals.elsevier.com/current-opinion-in-plant-biology/', 'www.journals.elsevier.com/current-opinion-in-solid-state-and-materials-science/', 'www.journals.elsevier.com/current-opinion-in-structural-biology/', 'www.journals.elsevier.com/current-opinion-in-virology/', 'www.elsevier.com/journals/current-orthopaedics/0268-0890', 'www.journals.elsevier.com/current-problems-in-cancer/', 'www.journals.elsevier.com/current-problems-in-cardiology/', 'www.journals.elsevier.com/current-problems-in-diagnostic-radiology/', 'www.journals.elsevier.com/current-problems-in-pediatric-and-adolescent-health-care/', 'www.journals.elsevier.com/current-problems-in-surgery/', 'www.journals.elsevier.com/current-therapeutic-research/', 'www.journals.elsevier.com/currents-in-pharmacy-teaching-and-learning/', 'www.elsevier.com/journals/cvd-prevention-and-control/1875-4570', 'www.journals.elsevier.com/cytokine/', 'www.journals.elsevier.com/cytokine-and-growth-factor-reviews/', 'www.journals.elsevier.com/cytotherapy/', 'www.journals.elsevier.com/journal-of-cancer-policy/', 'www.journals.elsevier.com/journal-of-cardiac-failure/', 'www.elsevier.com/journals/journal-of-cardiology/0914-5087', 'www.elsevier.com/journals/journal-of-cardiology-cases/1878-5409', 'www.journals.elsevier.com/journal-of-cardiothoracic-and-vascular-anesthesia/', 'www.elsevier.com/journals/journal-of-cardiothoracic-renal-research/1574-0668', 'www.journals.elsevier.com/journal-of-cardiovascular-computed-tomography/', 'www.journals.elsevier.com/journal-of-catalysis/', 'www.journals.elsevier.com/journal-of-cataract-and-refractive-surgery/', 'www.journals.elsevier.com/journal-of-cereal-science/', 'www.journals.elsevier.com/journal-of-chemical-health-and-safety/', 'www.journals.elsevier.com/journal-of-chemical-neuroanatomy/', 'www.elsevier.com/journals/journal-of-china-university-of-geosciences/1002-0705', 'www.elsevier.com/journals/journal-of-china-university-of-mining-and-technology/1006-1266', 'www.journals.elsevier.com/journal-of-chiropractic-humanities/', 'www.journals.elsevier.com/journal-of-chiropractic-medicine/', 'www.journals.elsevier.com/journal-of-choice-modelling/', 'www.journals.elsevier.com/journal-of-chromatography-a/', 'www.elsevier.com/journals/journal-of-chromatography-a-with-journal-of-chromatography-b-combined-subscription/fs00-0049', 'www.journals.elsevier.com/journal-of-chromatography-b/', 'www.journals.elsevier.com/journal-of-cleaner-production/', 'www.elsevier.com/journals/journal-of-clinical-and-experimental-hepatology/0973-6883', 'www.journals.elsevier.com/journal-of-clinical-anesthesia/', 'www.journals.elsevier.com/journal-of-clinical-densitometry/', 'www.journals.elsevier.com/journal-of-clinical-epidemiology/', 'www.elsevier.com/journals/journal-of-clinical-forensic-medicine/1353-1131', 'www.elsevier.com/journals/journal-of-clinical-gerontology-and-geriatrics/2210-8335', 'www.journals.elsevier.com/journal-of-clinical-lipidology/', 'www.journals.elsevier.com/journal-of-clinical-neuroscience/', 'www.elsevier.com/journals/journal-of-clinical-orthopaedics-and-trauma/0976-5662', 'www.journals.elsevier.com/journal-of-clinical-virology/', 'www.elsevier.com/journals/journal-of-clinical-virology-with-virus-research-combined-subscription/fs00-5544', 'www.journals.elsevier.com/journal-of-co-operative-organization-and-management/', 'www.journals.elsevier.com/journal-of-co2-utilization/', 'www.journals.elsevier.com/journal-of-colloid-and-interface-science/', 'www.journals.elsevier.com/journal-of-combinatorial-theory-series-a/', 'www.journals.elsevier.com/journal-of-combinatorial-theory-series-b/', 'www.journals.elsevier.com/journal-of-communication-disorders/', 'www.journals.elsevier.com/journal-of-comparative-economics/', 'www.journals.elsevier.com/journal-of-comparative-pathology/', 'www.journals.elsevier.com/journal-of-complexity/', 'www.journals.elsevier.com/journal-of-computational-and-applied-mathematics/', 'www.journals.elsevier.com/journal-of-computational-physics/', 'www.journals.elsevier.com/journal-of-computational-science/', 'www.journals.elsevier.com/journal-of-computer-and-system-sciences/', 'www.journals.elsevier.com/journal-of-constructional-steel-research/', 'www.journals.elsevier.com/journal-of-consumer-psychology/', 'www.journals.elsevier.com/journal-of-contaminant-hydrology/', 'www.elsevier.com/journals/journal-of-contaminant-hydrology-with-journal-of-hydrology-combined-subscription/fs00-5457', 'www.journals.elsevier.com/journal-of-contemporary-accounting-and-economics/', 'www.journals.elsevier.com/journal-of-contextual-behavioral-science/', 'www.journals.elsevier.com/journal-of-controlled-release/', 'www.journals.elsevier.com/journal-of-corporate-finance/', 'www.journals.elsevier.com/journal-of-cranio-maxillofacial-surgery/', 'www.journals.elsevier.com/journal-of-criminal-justice/', 'www.journals.elsevier.com/journal-of-critical-care/', 'www.journals.elsevier.com/journal-of-crohns-and-colitis/', 'www.journals.elsevier.com/journal-of-crohns-and-colitis-supplements/', 'www.journals.elsevier.com/journal-of-crystal-growth/', 'www.elsevier.com/journals/journal-of-crystal-growth-with-progress-in-crystal-growth-and-characterization-of-materials-combined-subscription/fs00-5455', 'www.elsevier.com/journals/journal-of-cultural-heritage/1296-2074', 'www.journals.elsevier.com/journal-of-cystic-fibrosis/', 'www.elsevier.com/journals/journal-of-the-chinese-institute-of-chemical-engineers/0368-1653', 'www.elsevier.com/journals/journal-of-the-chinese-medical-association/1726-4901', 'www.elsevier.com/journals/les-cahiers-de-laudition/0980-3482', 'www.elsevier.com/journals/the-case-manager/1061-9259', 'www.journals.elsevier.com/the-journal-of-chemical-thermodynamics/', 'www.elsevier.com/journals/the-journal-of-china-universities-of-posts-and-telecommunications/1005-8885', 'www.elsevier.com/journals/das-neurophysiologie-labor/1439-4847', 'www.journals.elsevier.com/data-and-knowledge-engineering/', 'www.journals.elsevier.com/decision-support-systems/', 'www.elsevier.com/journals/deep-sea-research-part-i-oceanographic-research-papers-with-part-ii-topical-studies-in-oceanography/fs00-0216', 'www.elsevier.com/journals/deep-sea-research-parts-i-and-ii-with-oceanographic-literature-review-combined-subscription/fs00-0117', 'www.journals.elsevier.com/deep-sea-research-part-i-oceanographic-research-papers/', 'www.journals.elsevier.com/deep-sea-research-part-ii-topical-studies-in-oceanography/', 'www.elsevier.com/journals/dendrochronologia/1125-7865', 'www.journals.elsevier.com/dental-abstracts/', 'www.elsevier.com/journals/dental-cadmos/0011-8524', 'www.elsevier.com/journals/dental-clinics-of-north-america/0011-8532', 'www.journals.elsevier.com/dental-materials/', 'www.elsevier.com/journals/der-zoologische-garten-in-deutscher-sprache-in-german/0044-5169', 'www.elsevier.com/journals/dermatologic-clinics/0733-8635', 'www.elsevier.com/journals/dermatologica-sinica/1027-8117', 'www.elsevier.com/journals/dermatology-and-venereology-section-13-embase/0014-4177', 'www.journals.elsevier.com/desalination/', 'www.journals.elsevier.com/design-studies/', 'www.elsevier.com/journals/deutsche-zeitschrift-fur-akupunktur/0415-6412', 'www.journals.elsevier.com/developmental-and-comparative-immunology/', 'www.journals.elsevier.com/developmental-biology/', 'www.elsevier.com/journals/developmental-biology-and-teratology-section-21-embase/0014-4258', 'www.elsevier.com/journals/developmental-cell/1534-5807', 'www.journals.elsevier.com/developmental-cognitive-neuroscience/', 'www.journals.elsevier.com/developmental-review/', 'www.elsevier.com/journals/dialisis-y-trasplante/1886-2845', 'www.elsevier.com/journals/diabetes-and-metabolic-syndrome-clinical-research-and-reviews/1871-4021', 'www.elsevier.com/journals/diabetes-and-metabolism/1262-3636', 'www.journals.elsevier.com/diabetes-research-and-clinical-practice/', 'www.elsevier.com/journals/diagnostico-prenatal/2173-4127', 'www.elsevier.com/journals/diagnostic-and-interventional-imaging/2211-5684', 'www.elsevier.com/journals/diagnostic-histopathology/1756-2317', 'www.journals.elsevier.com/diagnostic-microbiology-and-infectious-disease/', 'www.journals.elsevier.com/diamond-and-related-materials/', 'www.journals.elsevier.com/differential-geometry-and-its-applications/', 'www.journals.elsevier.com/differentiation/', 'www.journals.elsevier.com/digestive-and-liver-disease/', 'www.journals.elsevier.com/digital-applications-in-archaeology-and-cultural-heritage/', 'www.journals.elsevier.com/digital-investigation/', 'www.journals.elsevier.com/digital-signal-processing/', 'www.journals.elsevier.com/disability-and-health-journal/', 'www.journals.elsevier.com/discourse-context-and-media/', 'www.journals.elsevier.com/discrete-applied-mathematics/', 'www.journals.elsevier.com/discrete-mathematics/', 'www.elsevier.com/journals/discrete-mathematics-with-discrete-applied-mathematics-combined-subscription/fs00-0025', 'www.journals.elsevier.com/discrete-optimization/', 'www.journals.elsevier.com/disease-a-month/', 'www.journals.elsevier.com/displays/', 'www.journals.elsevier.com/dna-repair/', 'www.elsevier.com/journals/doctor/0046-0451', 'www.elsevier.com/journals/doctorconsult-the-journal-wissen-fur-klinik-und-praxis/1879-4122', 'www.journals.elsevier.com/domestic-animal-endocrinology/', 'www.elsevier.com/journals/douleurs/1624-5687', 'www.elsevier.com/journals/droit-deontologie-et-soin/1629-6583', 'www.journals.elsevier.com/drug-and-alcohol-dependence/', 'www.elsevier.com/journals/drug-dependence-alcohol-abuse-and-alcoholism-section-40-embase/0925-5958', 'www.journals.elsevier.com/drug-discovery-today/', 'www.elsevier.com/journals/drug-discovery-today-biosilico/1741-8364', 'www.journals.elsevier.com/drug-discovery-today-disease-mechanisms/', 'www.journals.elsevier.com/drug-discovery-today-disease-models/', 'www.journals.elsevier.com/drug-discovery-today-technologies/', 'www.journals.elsevier.com/drug-discovery-today-therapeutic-strategies/', 'www.elsevier.com/journals/drug-invention-today/0975-7619', 'www.journals.elsevier.com/drug-resistance-updates/', 'www.journals.elsevier.com/dyes-and-pigments/', 'www.journals.elsevier.com/dynamics-of-atmospheres-and-oceans/', 'www.elsevier.com/journals/journal-de-chirurgie/0021-7697', 'www.elsevier.com/journals/journal-de-chirurgie-version-portugaise/1950-1692', 'www.elsevier.com/journals/journal-de-chirurgie-viscerale/1878-786x', 'www.elsevier.com/journals/journal-de-gynecologie-obstetrique-et-biologie-de-la-reproduction/0368-2315', 'www.journals.elsevier.com/journal-de-mathematiques-pures-et-appliquees/', 'www.elsevier.com/journals/journal-de-mycologie-medicale/1156-5233', 'www.elsevier.com/journals/journal-de-pediatrie-et-de-puericulture/0987-7983', 'www.elsevier.com/journals/journal-de-readaptation-medicale/0242-648x', 'www.elsevier.com/journals/journal-de-radiologie-diagnostique-et-interventionnelle/2211-5706', 'www.elsevier.com/journals/journal-de-therapie-comportementale-et-cognitive/1155-1704', 'www.elsevier.com/journals/journal-de-traumatologie-du-sport/0762-915x', 'www.elsevier.com/journals/journal-des-anti-infectieux/2210-6545', 'www.elsevier.com/journals/journal-des-maladies-vasculaires/0398-0499', 'www.journals.elsevier.com/journal-of-dairy-science/', 'www.elsevier.com/journals/journal-of-dental-sciences/1991-7902', 'www.journals.elsevier.com/journal-of-dentistry/', 'www.journals.elsevier.com/journal-of-dermatological-science/', 'www.journals.elsevier.com/journal-of-destination-marketing-and-management/', 'www.journals.elsevier.com/journal-of-development-economics/', 'www.journals.elsevier.com/journal-of-diabetes-and-its-complications/', 'www.journals.elsevier.com/journal-of-differential-equations/', 'www.journals.elsevier.com/journal-of-discrete-algorithms/', 'www.journals.elsevier.com/e-spen-journal/', 'www.elsevier.com/journals/e-spen-the-european-e-journal-of-clinical-nutrition-and-metabolism/1751-4991', 'www.journals.elsevier.com/early-childhood-research-quarterly/', 'www.journals.elsevier.com/early-human-development/', 'www.journals.elsevier.com/earth-and-planetary-science-letters/', 'www.elsevier.com/journals/earth-science-frontiers/1872-5791', 'www.journals.elsevier.com/earth-science-reviews/', 'www.journals.elsevier.com/eating-behaviors/', 'www.elsevier.com/journals/eau-update-series/1570-9124', 'www.elsevier.com/journals/eau-ebu-update-series/1871-2592', 'www.elsevier.com/journals/ecohydrology-and-hydrobiology/1642-3593', 'www.elsevier.com/journals/ecological-abstracts/0305-196x', 'www.journals.elsevier.com/ecological-complexity/', 'www.journals.elsevier.com/ecological-economics/', 'www.journals.elsevier.com/ecological-engineering/', 'www.journals.elsevier.com/ecological-indicators/', 'www.journals.elsevier.com/ecological-informatics/', 'www.journals.elsevier.com/ecological-modelling/', 'www.journals.elsevier.com/economic-modelling/', 'www.journals.elsevier.com/economic-systems/', 'www.journals.elsevier.com/economics-and-human-biology/', 'www.journals.elsevier.com/economics-letters/', 'www.journals.elsevier.com/economics-of-education-review/', 'www.journals.elsevier.com/economics-of-transportation/', 'www.journals.elsevier.com/ecosystem-services/', 'www.journals.elsevier.com/ecotoxicology-and-environmental-safety/', 'www.journals.elsevier.com/education-for-chemical-engineers/', 'www.journals.elsevier.com/educational-research-review/', 'www.journals.elsevier.com/egyptian-informatics-journal/', 'www.elsevier.com/journals/egyptian-journal-of-anaesthesia/1110-1849', 'www.elsevier.com/journals/egyptian-journal-of-aquatic-research/1687-4285', 'www.elsevier.com/journals/egyptian-journal-of-chest-disease-and-tuberculosis/0422-7638', 'www.elsevier.com/journals/egyptian-journal-of-critical-care-medicine/2090-7303', 'www.elsevier.com/journals/egyptian-journal-of-ear-nose-throat-and-allied-sciences/2090-0740', 'www.elsevier.com/journals/egyptian-journal-of-forensic-sciences/2090-536x', 'www.elsevier.com/journals/egyptian-journal-of-medical-human-genetics/1110-8630', 'www.journals.elsevier.com/egyptian-journal-of-petroleum/', 'www.elsevier.com/journals/egyptian-paediatric-association-gazette/1110-6638', 'www.journals.elsevier.com/ejc-supplements/', 'www.journals.elsevier.com/ejso-european-journal-of-surgical-oncology/', 'www.journals.elsevier.com/electoral-studies/', 'www.journals.elsevier.com/electric-power-systems-research/', 'www.journals.elsevier.com/electrochemistry-communications/', 'www.journals.elsevier.com/electrochimica-acta/', 'www.journals.elsevier.com/electronic-commerce-research-and-applications/', 'www.elsevier.com/journals/electronic-notes-in-discrete-mathematics/1571-0653', 'www.elsevier.com/journals/electronic-notes-in-theoretical-computer-science/1571-0661', 'www.elsevier.com/journals/emc-akos-trattato-di-medicina/1634-7358', 'www.elsevier.com/journals/emc-anestesia-reanimacion/1280-4703', 'www.elsevier.com/journals/emc-anestesia-rianimazione/1283-0771', 'www.elsevier.com/journals/emc-aparato-locomotor/1286-935x', 'www.elsevier.com/journals/emc-cirugia-general/1634-7080', 'www.elsevier.com/journals/emc-cirugia-otorrinolaringologica-y-cervicofacial/1635-2505', 'www.elsevier.com/journals/emc-cirugia-plastica-reparadora-y-estetica/1634-2143', 'www.elsevier.com/journals/emc-cosmetologia-medica-e-medicina-degli-inestetismi-cutanei/1776-0313', 'www.elsevier.com/journals/emc-dentisterie/1762-5661', 'www.elsevier.com/journals/emc-dermatologia/1761-2896', 'www.elsevier.com/journals/emc-ginecologia-obstetricia/1283-081x', 'www.elsevier.com/journals/emc-kinesiterapia-medicina-fisica/1293-2965', 'www.elsevier.com/journals/emc-medicina-riabilitativa/1283-078x', 'www.elsevier.com/journals/emc-neurologia/1634-7072', 'www.elsevier.com/journals/emc-neurologie/1762-4231', 'www.elsevier.com/journals/emc-otorinolaringoiatria/1639-870x', 'www.elsevier.com/journals/emc-otorrinolaringologia/1632-3475', 'www.elsevier.com/journals/emc-pediatria/1245-1789', 'www.elsevier.com/journals/emc-podologia/1762-827x', 'www.elsevier.com/journals/emc-psychiatrie/1762-5718', 'www.elsevier.com/journals/emc-tecnicas-quirurgicas-aparato-digestivo/1282-9129', 'www.elsevier.com/journals/emc-tecnicas-quirurgicas-ortopedia-y-traumatologia/2211-033x', 'www.elsevier.com/journals/emc-tecniche-chirurgiche-chirurgia-addominale/1283-0798', 'www.elsevier.com/journals/emc-tecniche-chirurgiche-chirurgia-generale/1636-5577', 'www.elsevier.com/journals/emc-tecniche-chirurgiche-chirurgia-orl-e-cervico-facciale/1292-3036', 'www.elsevier.com/journals/emc-tecniche-chirurgiche-chirurgia-ortopedica/2211-0801', 'www.elsevier.com/journals/emc-tecniche-chirurgiche-chirurgia-plastica-ricostruttiva-ed-estetica/1769-6704', 'www.elsevier.com/journals/emc-tecniche-chirurgiche-chirurgia-torace/1288-3336', 'www.elsevier.com/journals/emc-tecniche-chirurgiche-chirurgia-vascolare/1283-0801', 'www.elsevier.com/journals/emc-tratado-de-medicina/1636-5410', 'www.elsevier.com/journals/emc-urgenze/1286-9341', 'www.elsevier.com/journals/emc-urologia/1761-3310', 'www.elsevier.com/journals/emergency-medicine-clinics-of-north-america/0733-8627', 'www.journals.elsevier.com/emerging-markets-review/', 'www.journals.elsevier.com/emotion-space-and-society/', 'www.journals.elsevier.com/endeavour/', 'www.elsevier.com/journals/endocrinologia-y-nutricion/1575-0922', 'www.elsevier.com/journals/endocrinologia-y-nutricion-english-edition/2173-5093', 'www.elsevier.com/journals/endocrinology-and-metabolism-clinics-of-north-america/0889-8529', 'www.elsevier.com/journals/endocrinology-section-3-embase/0014-407x', 'www.journals.elsevier.com/energy/', 'www.journals.elsevier.com/energy-and-buildings/', 'www.journals.elsevier.com/energy-conversion-and-management/', 'www.journals.elsevier.com/energy-economics/', 'www.journals.elsevier.com/energy-for-sustainable-development/', 'www.journals.elsevier.com/energy-policy/', 'www.journals.elsevier.com/energy-procedia/', 'www.journals.elsevier.com/energy-strategy-reviews/', 'www.elsevier.com/journals/enfermedades-infecciosas-y-microbiologia-clinica/0213-005x', 'www.elsevier.com/journals/enfermeria-clinica/1130-8621', 'www.elsevier.com/journals/enfermeria-intensiva/1130-2399', 'www.journals.elsevier.com/engineering-analysis-with-boundary-elements/', 'www.journals.elsevier.com/engineering-applications-of-artificial-intelligence/', 'www.journals.elsevier.com/engineering-failure-analysis/', 'www.journals.elsevier.com/engineering-fracture-mechanics/', 'www.journals.elsevier.com/engineering-geology/', 'www.journals.elsevier.com/engineering-structures/', 'www.journals.elsevier.com/english-for-specific-purposes/', 'www.elsevier.com/journals/english-for-specific-purposes-with-journal-of-english-for-academic-purposes-combined-subscription/fs00-0681', 'www.journals.elsevier.com/entertainment-computing/', 'www.journals.elsevier.com/environment-international/', 'www.journals.elsevier.com/environmental-and-experimental-botany/', 'www.journals.elsevier.com/environmental-development/', 'www.elsevier.com/journals/environmental-health-and-pollution-control-section-46-embase/0300-5194', 'www.journals.elsevier.com/environmental-impact-assessment-review/', 'www.journals.elsevier.com/environmental-innovation-and-societal-transitions/', 'www.journals.elsevier.com/environmental-modelling-and-software/', 'www.journals.elsevier.com/environmental-pollution/', 'www.journals.elsevier.com/environmental-research/', 'www.elsevier.com/journals/environmental-research-with-ecotoxicology-and-environmental-safety-combined-subscription/fs-2302', 'www.journals.elsevier.com/environmental-science-and-policy/', 'www.elsevier.com/journals/environmental-science-package-option-1/fs00-0137', 'www.elsevier.com/journals/environmental-science-package-option-2/fs00-0173', 'www.journals.elsevier.com/environmental-toxicology-and-pharmacology/', 'www.journals.elsevier.com/enzyme-and-microbial-technology/', 'www.journals.elsevier.com/epidemics/', 'www.journals.elsevier.com/epilepsy-and-behavior/', 'www.journals.elsevier.com/epilepsy-and-behavior-case-reports/', 'www.elsevier.com/journals/epilepsy-abstracts-section-50-embase/0031-0743', 'www.journals.elsevier.com/epilepsy-research/', 'www.elsevier.com/journals/epileptology/2212-8220', 'www.journals.elsevier.com/estuarine-coastal-and-shelf-science/', 'www.journals.elsevier.com/eupa-open-proteomics/', 'www.elsevier.com/journals/european-annals-of-otorhinolaryngology-head-and-neck-diseases/1879-7296', 'www.journals.elsevier.com/european-economic-review/', 'www.elsevier.com/journals/european-geriatric-medicine/1878-7649', 'www.journals.elsevier.com/european-journal-of-agronomy/', 'www.journals.elsevier.com/european-journal-of-cancer/', 'www.elsevier.com/journals/european-journal-of-cancer-with-oral-oncology-combined-subscription/fs00-0298', 'www.elsevier.com/journals/european-journal-of-cardio-thoracic-surgery-supplement/1567-4258', 'www.elsevier.com/journals/european-journal-of-cardiovascular-nursing/1474-5151', 'www.elsevier.com/journals/european-journal-of-cell-biology/0171-9335', 'www.journals.elsevier.com/european-journal-of-combinatorics/', 'www.elsevier.com/journals/european-journal-of-control/0947-3580', 'www.elsevier.com/journals/european-journal-of-integrative-medicine/1876-3820', 'www.journals.elsevier.com/european-journal-of-internal-medicine/', 'www.elsevier.com/journals/european-journal-of-mechanics-a-b-combined-subscription/fs00-9097', 'www.journals.elsevier.com/european-journal-of-mechanics-a-solids/', 'www.journals.elsevier.com/european-journal-of-mechanics-b-fluids/', 'www.journals.elsevier.com/european-journal-of-medical-genetics/', 'www.journals.elsevier.com/european-journal-of-medicinal-chemistry/', 'www.journals.elsevier.com/european-journal-of-obstetrics-and-gynecology-and-reproductive-biology/', 'www.journals.elsevier.com/european-journal-of-oncology-nursing/', 'www.journals.elsevier.com/european-journal-of-operational-research/', 'www.journals.elsevier.com/european-journal-of-paediatric-neurology/', 'www.elsevier.com/journals/european-journal-of-pain/1090-3801', 'www.journals.elsevier.com/european-journal-of-pharmaceutical-sciences/', 'www.journals.elsevier.com/european-journal-of-pharmaceutics-and-biopharmaceutics/', 'www.journals.elsevier.com/european-journal-of-pharmacology/', 'www.journals.elsevier.com/european-journal-of-political-economy/', 'www.elsevier.com/journals/european-journal-of-protistology/0932-4739', 'www.elsevier.com/journals/european-journal-of-radiography/1756-1175', 'www.journals.elsevier.com/european-journal-of-radiology/', 'www.elsevier.com/journals/european-journal-of-radiology-extra/1571-4675', 'www.journals.elsevier.com/european-journal-of-soil-biology/', 'www.journals.elsevier.com/european-journal-of-vascular-and-endovascular-surgery/', 'www.journals.elsevier.com/european-journal-of-vascular-and-endovascular-surgery-extra/', 'www.journals.elsevier.com/european-management-journal/', 'www.journals.elsevier.com/european-neuropsychopharmacology/', 'www.journals.elsevier.com/european-polymer-journal/', 'www.elsevier.com/journals/european-psychiatry/0924-9338', 'www.elsevier.com/journals/european-research-in-telemedicine-la-recherche-europeenne-en-telemedecine/2212-764x', 'www.journals.elsevier.com/european-urology/', 'www.journals.elsevier.com/european-urology-supplements/', 'www.journals.elsevier.com/evaluation-and-program-planning/', 'www.elsevier.com/journals/evidence-based-cardiovascular-medicine/1361-2611', 'www.elsevier.com/journals/evidence-based-healthcare-and-public-health/1744-2249', 'www.elsevier.com/journals/evidence-based-obstetrics-and-gynecology/1361-259x', 'www.journals.elsevier.com/evolution-and-human-behavior/', 'www.elsevier.com/journals/excerpta-medica-full-set-series/fs00-8549', 'www.journals.elsevier.com/experimental-and-molecular-pathology/', 'www.elsevier.com/journals/experimental-and-toxicologic-pathology/0940-2993', 'www.journals.elsevier.com/experimental-cell-research/', 'www.journals.elsevier.com/experimental-eye-research/', 'www.journals.elsevier.com/experimental-gerontology/', 'www.journals.elsevier.com/experimental-hematology/', 'www.journals.elsevier.com/experimental-neurology/', 'www.journals.elsevier.com/experimental-parasitology/', 'www.journals.elsevier.com/experimental-thermal-and-fluid-science/', 'www.journals.elsevier.com/expert-systems-with-applications/', 'www.journals.elsevier.com/explorations-in-economic-history/', 'www.journals.elsevier.com/explore-the-journal-of-science-and-healing/', 'www.elsevier.com/journals/expositiones-mathematicae/0723-0869', 'www.elsevier.com/journals/journal-europeen-des-urgences-et-de-reanimation/2211-4238', 'www.journals.elsevier.com/journal-of-econometrics/', 'www.journals.elsevier.com/journal-of-economic-behavior-and-organization/', 'www.journals.elsevier.com/journal-of-economic-dynamics-and-control/', 'www.journals.elsevier.com/journal-of-economic-psychology/', 'www.journals.elsevier.com/journal-of-economic-theory/', 'www.journals.elsevier.com/journal-of-economics-and-business/', 'www.journals.elsevier.com/journal-of-electroanalytical-chemistry/', 'www.elsevier.com/journals/journal-of-electroanalytical-chemistry-with-bioelectrochemistry-combined-subscription/fs00-6055', 'www.elsevier.com/journals/journal-of-electroanalytical-chemistry-with-bioelectrochemistry-and-electrochemistry-communications-combined-subscription/fs00-6040', 'www.journals.elsevier.com/journal-of-electrocardiology/', 'www.journals.elsevier.com/journal-of-electromyography-and-kinesiology/', 'www.journals.elsevier.com/journal-of-electron-spectroscopy-and-related-phenomena/', 'www.journals.elsevier.com/journal-of-electrostatics/', 'www.elsevier.com/journals/journal-of-emergency-medical-services-jems/0197-2510', 'www.journals.elsevier.com/journal-of-emergency-nursing/', 'www.journals.elsevier.com/journal-of-empirical-finance/', 'www.journals.elsevier.com/journal-of-endodontics/', 'www.elsevier.com/journals/journal-of-energy-chemistry/2095-4956', 'www.journals.elsevier.com/journal-of-engineering-and-technology-management/', 'www.journals.elsevier.com/journal-of-english-for-academic-purposes/', 'www.journals.elsevier.com/journal-of-environmental-chemical-engineering/', 'www.journals.elsevier.com/journal-of-environmental-economics-and-management/', 'www.journals.elsevier.com/journal-of-environmental-management/', 'www.journals.elsevier.com/journal-of-environmental-psychology/', 'www.journals.elsevier.com/journal-of-environmental-radioactivity/', 'www.elsevier.com/journals/journal-of-environmental-sciences/1001-0742', 'www.elsevier.com/journals/journal-of-epidemiology-and-global-health/2210-6006', 'www.journals.elsevier.com/journal-of-equine-veterinary-science/', 'www.journals.elsevier.com/journal-of-ethnopharmacology/', 'www.journals.elsevier.com/journal-of-eurasian-studies/', 'www.journals.elsevier.com/journal-of-evidence-based-dental-practice/', 'www.elsevier.com/journals/journal-of-exercise-science-and-fitness/1728-869x', 'www.journals.elsevier.com/journal-of-exotic-pet-medicine/', 'www.elsevier.com/journals/journal-of-experimental-and-clinical-medicine/1878-3317', 'www.elsevier.com/journals/journal-of-experimental-animal-science/0939-8600', 'www.journals.elsevier.com/journal-of-experimental-child-psychology/', 'www.journals.elsevier.com/journal-of-experimental-marine-biology-and-ecology/', 'www.journals.elsevier.com/journal-of-experimental-social-psychology/', 'www.journals.elsevier.com/journal-of-the-egyptian-mathematical-society/', 'www.elsevier.com/journals/journal-of-the-egyptian-national-cancer-institute/1110-0362', 'www.journals.elsevier.com/journal-of-the-european-ceramic-society/', 'www.elsevier.com/journals/the-egyptian-heart-journal/1110-2608', 'www.elsevier.com/journals/the-egyptian-journal-of-radiology-and-nuclear-medicine/0378-603x', 'www.journals.elsevier.com/the-egyptian-journal-of-remote-sensing-and-space-sciences/', 'www.elsevier.com/journals/the-egyptian-rheumatologist/1110-1164', 'www.journals.elsevier.com/the-electricity-journal/', 'www.journals.elsevier.com/the-journal-of-economic-asymmetries/', 'www.journals.elsevier.com/the-journal-of-emergency-medicine/', 'www.journals.elsevier.com/the-journal-of-the-economics-of-ageing/', 'www.elsevier.com/journals/facial-plastic-surgery-clinics-of-north-america/1064-7406', 'www.elsevier.com/journals/family-practice-news/0300-7073', 'www.elsevier.com/journals/farmaceuticos-de-atencion-primaria/2172-3761', 'www.elsevier.com/journals/farmacia-hospitalaria/1130-6343', 'www.elsevier.com/journals/farmacia-hospitalaria-english-edition/2173-5085', 'www.journals.elsevier.com/febs-letters/', 'www.journals.elsevier.com/febs-open-bio/', 'www.journals.elsevier.com/fertility-and-sterility/', 'www.elsevier.com/journals/feuillets-de-radiologie/0181-9801', 'www.journals.elsevier.com/field-crops-research/', 'www.journals.elsevier.com/field-mycology/', 'www.elsevier.com/journals/filtration-industry-analyst/1365-6937', 'www.elsevier.com/journals/filtrationseparation/0015-1882', 'www.journals.elsevier.com/finance-research-letters/', 'www.journals.elsevier.com/finite-elements-in-analysis-and-design/', 'www.journals.elsevier.com/finite-fields-and-their-applications/', 'www.journals.elsevier.com/fire-safety-journal/', 'www.elsevier.com/journals/firerescue-magazine/1094-0529', 'www.journals.elsevier.com/fish-and-shellfish-immunology/', 'www.journals.elsevier.com/fisheries-research/', 'www.elsevier.com/journals/fisioterapia/0211-5638', 'www.journals.elsevier.com/fitoterapia/', 'www.elsevier.com/journals/flora/0367-2530', 'www.journals.elsevier.com/flow-measurement-and-instrumentation/', 'www.elsevier.com/journals/fluid-abstracts-civil-engineering/0962-7170', 'www.elsevier.com/journals/fluid-abstracts-process-engineering/0962-7162', 'www.journals.elsevier.com/fluid-phase-equilibria/', 'www.elsevier.com/journals/fmc-formacion-medica-continuada-en-atencion-primaria/1134-2072', 'www.elsevier.com/journals/focus-on-catalysts/1351-4180', 'www.elsevier.com/journals/focus-on-pigments/0969-6210', 'www.elsevier.com/journals/focus-on-powder-coatings/1364-5439', 'www.elsevier.com/journals/focus-on-surfactants/1351-4210', 'www.journals.elsevier.com/food-and-bioproducts-processing/', 'www.journals.elsevier.com/food-and-chemical-toxicology/', 'www.journals.elsevier.com/food-bioscience/', 'www.journals.elsevier.com/food-chemistry/', 'www.journals.elsevier.com/food-control/', 'www.journals.elsevier.com/food-hydrocolloids/', 'www.journals.elsevier.com/food-microbiology/', 'www.journals.elsevier.com/food-policy/', 'www.journals.elsevier.com/food-quality-and-preference/', 'www.journals.elsevier.com/food-research-international/', 'www.journals.elsevier.com/food-science-and-human-wellness/', 'www.elsevier.com/journals/food-science-package/fs00-0174', 'www.journals.elsevier.com/food-structure/', 'www.elsevier.com/journals/foot-and-ankle-clinics/1083-7515', 'www.journals.elsevier.com/foot-and-ankle-surgery/', 'www.elsevier.com/journals/fooyin-journal-of-health-sciences/1877-8607', 'www.elsevier.com/journals/forensic-package/fs00-8144', 'www.elsevier.com/journals/forensic-science-abstracts-section-49-embase/0303-8459', 'www.journals.elsevier.com/forensic-science-international/', 'www.journals.elsevier.com/forensic-science-international-supplement-series/', 'www.journals.elsevier.com/forensic-science-international-genetics/', 'www.journals.elsevier.com/forensic-science-international-genetics-supplement-series/', 'www.journals.elsevier.com/forest-ecology-and-management/', 'www.elsevier.com/journals/forest-ecology-and-management-with-forest-policy-and-economics-combined-subscription/fs00-5554', 'www.journals.elsevier.com/forest-policy-and-economics/', 'www.elsevier.com/journals/formosan-journal-of-musculoskeletal-disorders/2210-7940', 'www.elsevier.com/journals/formosan-journal-of-surgery/1682-606x', 'www.journals.elsevier.com/free-radical-biology-and-medicine/', 'www.elsevier.com/journals/free-radicals-and-antioxidants/2231-2536', 'www.journals.elsevier.com/frontiers-in-neuroendocrinology/', 'www.journals.elsevier.com/frontiers-of-architectural-research/', 'www.elsevier.com/journals/fu-and-sprunggelenk/1619-9987', 'www.journals.elsevier.com/fuel/', 'www.journals.elsevier.com/fuel-and-energy-abstracts/', 'www.elsevier.com/journals/fuel-cells-bulletin/1464-2859', 'www.journals.elsevier.com/fuel-processing-technology/', 'www.journals.elsevier.com/fungal-biology/', 'www.journals.elsevier.com/fungal-biology-reviews/', 'www.journals.elsevier.com/fungal-ecology/', 'www.journals.elsevier.com/fungal-genetics-and-biology/', 'www.journals.elsevier.com/fusion-engineering-and-design/', 'www.journals.elsevier.com/future-generation-computer-systems/', 'www.journals.elsevier.com/futures/', 'www.journals.elsevier.com/fuzzy-sets-and-systems/', 'www.elsevier.com/journals/journal-for-nature-conservation/1617-1381', 'www.elsevier.com/journals/journal-francais-dophtalmologie/0181-5512', 'www.journals.elsevier.com/journal-of-family-business-strategy/', 'www.journals.elsevier.com/journal-of-financial-economics/', 'www.journals.elsevier.com/journal-of-financial-intermediation/', 'www.journals.elsevier.com/journal-of-financial-markets/', 'www.journals.elsevier.com/journal-of-financial-stability/', 'www.journals.elsevier.com/journal-of-fluency-disorders/', 'www.journals.elsevier.com/journal-of-fluids-and-structures/', 'www.journals.elsevier.com/journal-of-fluorine-chemistry/', 'www.journals.elsevier.com/journal-of-food-composition-and-analysis/', 'www.journals.elsevier.com/journal-of-food-engineering/', 'www.journals.elsevier.com/journal-of-forensic-and-legal-medicine/', 'www.journals.elsevier.com/journal-of-forensic-radiology-and-imaging/', 'www.elsevier.com/journals/journal-of-forest-economics/1104-6899', 'www.elsevier.com/journals/journal-of-fuel-chemistry-and-technology/1872-5813', 'www.journals.elsevier.com/journal-of-functional-analysis/', 'www.journals.elsevier.com/journal-of-functional-foods/', 'www.elsevier.com/journals/journal-of-the-formosan-medical-association/0929-6646', 'www.journals.elsevier.com/journal-of-the-franklin-institute/', 'www.journals.elsevier.com/the-foot/', 'www.elsevier.com/journals/the-foundation-years/1744-1889', 'www.journals.elsevier.com/the-journal-for-nurse-practitioners/', 'www.journals.elsevier.com/the-journal-of-foot-and-ankle-surgery/', 'www.elsevier.com/journals/gaceta-medica-de-bilbao/0304-4858', 'www.elsevier.com/journals/gaceta-sanitaria/0213-9111', 'www.journals.elsevier.com/gait-and-posture/', 'www.journals.elsevier.com/games-and-economic-behavior/', 'www.elsevier.com/journals/gastroenterologie-clinique-et-biologique/0399-8320', 'www.elsevier.com/journals/gastroenterologia-y-hepatologia/0210-5705', 'www.elsevier.com/journals/gastroenterologia-y-hepatologia-continuada/1578-1550', 'www.journals.elsevier.com/gastroenterology/', 'www.elsevier.com/journals/gastroenterology-section-48-embase/0031-3580', 'www.elsevier.com/journals/gastroenterology-clinics-of-north-america/0889-8553', 'www.journals.elsevier.com/gastrointestinal-endoscopy/', 'www.elsevier.com/journals/gastrointestinal-endoscopy-clinics-of-north-america/1052-5157', 'www.elsevier.com/journals/gastrointestinal-intervention/2213-1795', 'www.elsevier.com/journals/ge-jornal-portugues-de-gastrenterologia/0872-8178', 'www.journals.elsevier.com/gender-medicine/', 'www.journals.elsevier.com/gene/', 'www.journals.elsevier.com/gene-expression-patterns/', 'www.journals.elsevier.com/general-and-comparative-endocrinology/', 'www.journals.elsevier.com/general-hospital-psychiatry/', 'www.elsevier.com/journals/general-pathology-and-pathological-anatomy-section-5-embase/0014-4096', 'www.elsevier.com/journals/genomic-medicine-biomarkers-and-health-sciences/2211-4254', 'www.journals.elsevier.com/genomics/', 'www.journals.elsevier.com/genomics-data/', 'www.journals.elsevier.com/genomics-proteomics-and-bioinformatics/', 'www.elsevier.com/journals/geo-full-set-series/fs00-2235', 'www.elsevier.com/journals/geobios/0016-6995', 'www.journals.elsevier.com/geochimica-et-cosmochimica-acta/', 'www.journals.elsevier.com/geoderma/', 'www.journals.elsevier.com/geoforum/', 'www.elsevier.com/journals/geographical-abstracts-human-geography/0953-9611', 'www.elsevier.com/journals/geographical-abstracts-physical-geography/0954-0504', 'www.elsevier.com/journals/geography-and-natural-resources/1875-3728', 'www.elsevier.com/journals/geological-abstracts/0954-0512', 'www.elsevier.com/journals/geomechanics-abstracts/1365-1617', 'www.journals.elsevier.com/geomorphology/', 'www.journals.elsevier.com/geoscience-frontiers/', 'www.elsevier.com/journals/geoscience-package/fs00-1014', 'www.journals.elsevier.com/geotextiles-and-geomembranes/', 'www.journals.elsevier.com/geothermics/', 'www.elsevier.com/journals/geriatric-mental-health-care/2212-9693', 'www.journals.elsevier.com/geriatric-nursing/', 'www.elsevier.com/journals/gerontology-and-geriatrics-section-20-embase/0014-424x', 'www.journals.elsevier.com/gi-and-hepatology-news/', 'www.elsevier.com/journals/giornale-italiano-di-endodonzia/1121-4171', 'www.journals.elsevier.com/global-and-planetary-change/', 'www.journals.elsevier.com/global-environmental-change/', 'www.journals.elsevier.com/global-finance-journal/', 'www.journals.elsevier.com/global-food-security/', 'www.journals.elsevier.com/global-heart/', 'www.journals.elsevier.com/gondwana-research/', 'www.journals.elsevier.com/government-information-quarterly/', 'www.journals.elsevier.com/graphical-models/', 'www.journals.elsevier.com/growth-hormone-and-igf-research/', 'www.elsevier.com/journals/gynecologie-obstetrique-and-fertilite/1297-9589', 'www.elsevier.com/journals/gyn-obs/0240-172x', 'www.journals.elsevier.com/gynecologic-oncology/', 'www.journals.elsevier.com/gynecologic-oncology-case-reports/', 'www.elsevier.com/journals/gynecology-and-minimally-invasive-therapy/2213-3070', 'www.elsevier.com/journals/journal-of-gastrointestinal-surgery/1091-255x', 'www.journals.elsevier.com/journal-of-genetic-engineering-and-biotechnology/', 'www.journals.elsevier.com/journal-of-genetics-and-genomics/', 'www.journals.elsevier.com/journal-of-geochemical-exploration/', 'www.journals.elsevier.com/journal-of-geodynamics/', 'www.elsevier.com/journals/journal-of-geodynamics-with-journal-of-structural-geology-combined-subscription/fs00-1055', 'www.journals.elsevier.com/journal-of-geometry-and-physics/', 'www.journals.elsevier.com/journal-of-geriatric-oncology/', 'www.journals.elsevier.com/journal-of-global-antimicrobial-resistance/', 'www.journals.elsevier.com/journal-of-great-lakes-research/', 'www.elsevier.com/journals/the-gold-sheet/1530-6194', 'www.elsevier.com/journals/the-gray-sheet/1530-1214', 'www.journals.elsevier.com/habitat-international/', 'www.elsevier.com/journals/hand-clinics/0749-0712', 'www.journals.elsevier.com/harmful-algae/', 'www.journals.elsevier.com/hbrc-journal/', 'www.journals.elsevier.com/health-and-place/', 'www.elsevier.com/journals/health-and-place-with-social-science-and-medicine-combined-subscription/fs00-1027', 'www.elsevier.com/journals/health-news-daily/1042-2781', 'www.journals.elsevier.com/health-outcomes-research-in-medicine/', 'www.journals.elsevier.com/health-policy/', 'www.journals.elsevier.com/health-policy-and-technology/', 'www.elsevier.com/journals/health-policy-economics-and-management-section-36-embase/0921-8068', 'www.journals.elsevier.com/healthcare-management-forum/', 'www.journals.elsevier.com/healthcare-the-journal-of-delivery-science-and-innovation/', 'www.journals.elsevier.com/hearing-research/', 'www.journals.elsevier.com/heart-and-lung-the-journal-of-acute-and-critical-care/', 'www.elsevier.com/journals/heart-failure-clinics/1551-7136', 'www.journals.elsevier.com/heart-rhythm/', 'www.elsevier.com/journals/heart-lung-and-circulation/1443-9506', 'www.elsevier.com/journals/hematology-section-25-embase/0014-4290', 'www.elsevier.com/journals/hematology-oncology-and-stem-cell-therapy/1658-3876', 'www.elsevier.com/journals/hematology-oncology-clinics-of-north-america/0889-8588', 'www.elsevier.com/journals/hepatobiliary-and-pancreatic-diseases-international/1499-3872', 'www.elsevier.com/journals/hepatology-research/1386-6346', 'www.journals.elsevier.com/heterocycles/', 'www.journals.elsevier.com/high-energy-density-physics/', 'www.elsevier.com/journals/hipertension-y-riesgo-vascular/1889-1837', 'www.journals.elsevier.com/historia-mathematica/', 'www.journals.elsevier.com/history-of-european-ideas/', 'www.elsevier.com/journals/hiv-and-aids-review/1730-1270', 'www.journals.elsevier.com/homeopathy/', 'www.elsevier.com/journals/homo/0018-442x', 'www.elsevier.com/journals/hong-kong-journal-of-nephrology/1561-5413', 'www.elsevier.com/journals/hong-kong-journal-of-occupational-therapy/1569-1861', 'www.elsevier.com/journals/hong-kong-physiotherapy-journal/1013-7025', 'www.journals.elsevier.com/hormones-and-behavior/', 'www.elsevier.com/journals/hospital-doctor/0262-3145', 'www.elsevier.com/journals/hospital-medicine-clinics/2211-5943', 'www.elsevier.com/journals/human-genetics-section-22-embase/0014-4266', 'www.journals.elsevier.com/human-immunology/', 'www.journals.elsevier.com/human-movement-science/', 'www.journals.elsevier.com/human-pathology/', 'www.journals.elsevier.com/human-resource-management-review/', 'www.journals.elsevier.com/hydrometallurgy/', 'www.journals.elsevier.com/journal-of-hand-surgery-american-volume/', 'www.elsevier.com/journals/journal-of-hand-surgery-european-volume/0266-7681', 'www.journals.elsevier.com/journal-of-hand-therapy/', 'www.journals.elsevier.com/journal-of-hazardous-materials/', 'www.journals.elsevier.com/journal-of-health-economics/', 'www.journals.elsevier.com/journal-of-hepatology/', 'www.elsevier.com/journals/journal-of-herbal-medicine/2210-8033', 'www.journals.elsevier.com/journal-of-historical-geography/', 'www.journals.elsevier.com/journal-of-hospital-infection/', 'www.elsevier.com/journals/journal-of-hospitality-and-tourism-management/1447-6770', 'www.journals.elsevier.com/journal-of-hospitality-leisure-sport-and-tourism-education-johlste/', 'www.journals.elsevier.com/journal-of-housing-economics/', 'www.journals.elsevier.com/journal-of-human-evolution/', 'www.journals.elsevier.com/journal-of-hydro-environment-research/', 'www.elsevier.com/journals/journal-of-hydrodynamics/1001-6058', 'www.journals.elsevier.com/journal-of-hydrology/', 'www.journals.elsevier.com/the-history-of-the-family/', 'www.journals.elsevier.com/the-journal-of-heart-and-lung-transplantation/', 'www.journals.elsevier.com/the-journal-of-high-technology-management-research/', 'www.journals.elsevier.com/iatss-research/', 'www.elsevier.com/journals/ibs-immuno-analyse-and-biologie-specialisee/0923-2532', 'www.journals.elsevier.com/icarus/', 'www.journals.elsevier.com/ieri-procedia/', 'www.journals.elsevier.com/ifac-papers-online/', 'www.elsevier.com/journals/iii-vs-review/0961-1290', 'www.journals.elsevier.com/iimb-management-review/', 'www.journals.elsevier.com/image-and-vision-computing/', 'www.elsevier.com/journals/imagen-diagnostica/2171-3669', 'www.elsevier.com/journals/imagerie-de-la-femme/1776-9817', 'www.elsevier.com/journals/immunity/1074-7613', 'www.elsevier.com/journals/immunobiology/0171-2985', 'www.elsevier.com/journals/immunology-and-allergy-clinics-of-north-america/0889-8561', 'www.journals.elsevier.com/immunology-letters/', 'www.elsevier.com/journals/immunology-serology-and-transplantation-section-26-embase/0014-4304', 'www.elsevier.com/journals/implantodontie/1158-1336', 'www.elsevier.com/journals/in-vivo/0733-1398', 'www.journals.elsevier.com/indagationes-mathematicae/', 'www.elsevier.com/journals/indian-heart-journal/0019-4832', 'www.elsevier.com/journals/indian-journal-of-dentistry/0975-962x', 'www.elsevier.com/journals/indian-journal-of-rheumatology/0973-3698', 'www.elsevier.com/journals/indian-journal-of-transplantation/2212-0017', 'www.journals.elsevier.com/industrial-crops-and-products/', 'www.journals.elsevier.com/industrial-marketing-management/', 'www.journals.elsevier.com/infant-behavior-and-development/', 'www.elsevier.com/journals/infectio/0123-9392', 'www.journals.elsevier.com/infection-genetics-and-evolution/', 'www.elsevier.com/journals/infectious-disease-clinics-of-north-america/0891-5520', 'www.journals.elsevier.com/information-and-computation/', 'www.journals.elsevier.com/information-and-management/', 'www.journals.elsevier.com/information-and-organization/', 'www.journals.elsevier.com/information-and-software-technology/', 'www.journals.elsevier.com/information-economics-and-policy/', 'www.journals.elsevier.com/information-fusion/', 'www.journals.elsevier.com/information-processing-and-management/', 'www.journals.elsevier.com/information-processing-letters/', 'www.journals.elsevier.com/information-sciences/', 'www.journals.elsevier.com/information-security-technical-report/', 'www.journals.elsevier.com/information-systems/', 'www.elsevier.com/journals/infosecurity/1754-4548', 'www.journals.elsevier.com/infrared-physics-and-technology/', 'www.journals.elsevier.com/injury/', 'www.journals.elsevier.com/injury-extra/', 'www.elsevier.com/journals/inmunologia/0213-9626', 'www.journals.elsevier.com/innovative-food-science-and-emerging-technologies/', 'www.journals.elsevier.com/inorganic-chemistry-communications/', 'www.journals.elsevier.com/inorganica-chimica-acta/', 'www.journals.elsevier.com/insect-biochemistry-and-molecular-biology/', 'www.elsevier.com/journals/insect-biochemistry-and-molecular-biology-with-journal-of-insect-physiology-combined-subscription/fs00-0406', 'www.elsevier.com/journals/insulin/1557-0843', 'www.journals.elsevier.com/insurance-mathematics-and-economics/', 'www.journals.elsevier.com/integration-the-vlsi-journal/', 'www.elsevier.com/journals/integrative-medicine-research/2213-4220', 'www.journals.elsevier.com/intelligence/', 'www.journals.elsevier.com/intensive-and-critical-care-nursing/', 'www.elsevier.com/journals/inter-bloc/0242-3960', 'www.journals.elsevier.com/intermetallics/', 'www.elsevier.com/journals/internal-medicine-section-6-embase/0014-410x', 'www.elsevier.com/journals/internal-medicine-news/1097-8690', 'www.journals.elsevier.com/international-biodeterioration-and-biodegradation/', 'www.journals.elsevier.com/international-business-review/', 'www.elsevier.com/journals/international-business-review-with-long-range-planning-combined-subscription/fs00-0140', 'www.journals.elsevier.com/international-communications-in-heat-and-mass-transfer/', 'www.elsevier.com/journals/international-communications-in-heat-and-mass-transfer-with-international-journal-of-heat-and-mass-transfer-combined-subscription/fs00-0680', 'www.elsevier.com/journals/international-congress-series/0531-5131', 'www.journals.elsevier.com/international-dairy-journal/', 'www.elsevier.com/journals/international-development-abstracts/0262-0855', 'www.elsevier.com/journals/international-economics/2110-7017', 'www.journals.elsevier.com/international-emergency-nursing/', 'www.journals.elsevier.com/international-immunopharmacology/', 'www.journals.elsevier.com/international-information-and-library-review/', 'www.journals.elsevier.com/international-journal-for-parasitology/', 'www.journals.elsevier.com/international-journal-for-parasitology-drugs-and-drug-resistance/', 'www.journals.elsevier.com/international-journal-for-parasitology-parasites-and-wildlife/', 'www.journals.elsevier.com/international-journal-of-accounting-information-systems/', 'www.journals.elsevier.com/international-journal-of-adhesion-and-adhesives/', 'www.elsevier.com/journals/international-journal-of-adipose-tissue-and-stem-cells/2211-9116', 'www.journals.elsevier.com/international-journal-of-antimicrobial-agents/', 'www.journals.elsevier.com/international-journal-of-applied-earth-observation-and-geoinformation/', 'www.journals.elsevier.com/international-journal-of-approximate-reasoning/', 'www.elsevier.com/journals/international-journal-of-aromatherapy/0962-4562', 'www.journals.elsevier.com/international-journal-of-biological-macromolecules/', 'www.journals.elsevier.com/international-journal-of-cardiology/', 'www.elsevier.com/journals/international-journal-of-chemical-and-analytical-science/0976-1209', 'www.journals.elsevier.com/international-journal-of-child-computer-interaction/', 'www.journals.elsevier.com/international-journal-of-coal-geology/', 'www.journals.elsevier.com/international-journal-of-critical-infrastructure-protection/', 'www.journals.elsevier.com/international-journal-of-developmental-neuroscience/', 'www.journals.elsevier.com/international-journal-of-disaster-risk-reduction/', 'www.journals.elsevier.com/international-journal-of-drug-policy/', 'www.journals.elsevier.com/international-journal-of-educational-development/', 'www.journals.elsevier.com/international-journal-of-educational-research/', 'www.elsevier.com/journals/international-journal-of-educational-research-including-learning-and-instruction-combined-subscription/fs00-0491', 'www.journals.elsevier.com/international-journal-of-electrical-power-and-energy-systems/', 'www.journals.elsevier.com/international-journal-of-engineering-science/', 'www.journals.elsevier.com/international-journal-of-fatigue/', 'www.journals.elsevier.com/international-journal-of-food-microbiology/', 'www.journals.elsevier.com/international-journal-of-forecasting/', 'www.journals.elsevier.com/international-journal-of-gastronomy-and-food-science/', 'www.elsevier.com/journals/international-journal-of-gerontology/1873-9598', 'www.journals.elsevier.com/international-journal-of-greenhouse-gas-control/', 'www.journals.elsevier.com/international-journal-of-gynecology-and-obstetrics/', 'www.journals.elsevier.com/international-journal-of-heat-and-fluid-flow/', 'www.journals.elsevier.com/international-journal-of-heat-and-mass-transfer/', 'www.journals.elsevier.com/international-journal-of-hospitality-management/', 'www.journals.elsevier.com/international-journal-of-human-computer-studies/', 'www.journals.elsevier.com/international-journal-of-hydrogen-energy/', 'www.elsevier.com/journals/international-journal-of-hygiene-and-environmental-health/1438-4639', 'www.journals.elsevier.com/international-journal-of-impact-engineering/', 'www.journals.elsevier.com/international-journal-of-industrial-ergonomics/', 'www.journals.elsevier.com/international-journal-of-industrial-organization/', 'www.journals.elsevier.com/international-journal-of-infectious-diseases/', 'www.journals.elsevier.com/international-journal-of-information-management/', 'www.journals.elsevier.com/international-journal-of-intercultural-relations/', 'www.journals.elsevier.com/international-journal-of-law-and-psychiatry/', 'www.journals.elsevier.com/international-journal-of-law-crime-and-justice/', 'www.journals.elsevier.com/international-journal-of-machine-tools-and-manufacture/', 'www.journals.elsevier.com/international-journal-of-mass-spectrometry/', 'www.journals.elsevier.com/international-journal-of-mechanical-sciences/', 'www.journals.elsevier.com/international-journal-of-medical-informatics/', 'www.elsevier.com/journals/international-journal-of-medical-microbiology/1438-4221', 'www.journals.elsevier.com/international-journal-of-mineral-processing/', 'www.elsevier.com/journals/international-journal-of-minerals-metallurgy-and-materials/1674-4799', 'www.journals.elsevier.com/international-journal-of-mining-science-and-technology/', 'www.journals.elsevier.com/international-journal-of-multiphase-flow/', 'www.elsevier.com/journals/international-journal-of-mycobacteriology/2212-5531', 'www.journals.elsevier.com/international-journal-of-non-linear-mechanics/', 'www.journals.elsevier.com/international-journal-of-nursing-studies/', 'www.journals.elsevier.com/international-journal-of-obstetric-anesthesia/', 'www.journals.elsevier.com/international-journal-of-oral-and-maxillofacial-surgery/', 'www.journals.elsevier.com/international-journal-of-orthopaedic-and-trauma-nursing/', 'www.journals.elsevier.com/international-journal-of-osteopathic-medicine/', 'www.journals.elsevier.com/international-journal-of-paleopathology/', 'www.journals.elsevier.com/international-journal-of-pediatric-otorhinolaryngology/', 'www.journals.elsevier.com/international-journal-of-pediatric-otorhinolaryngology-extra/', 'www.journals.elsevier.com/international-journal-of-pharmaceutics/', 'www.journals.elsevier.com/international-journal-of-plasticity/', 'www.journals.elsevier.com/international-journal-of-pressure-vessels-and-piping/', 'www.journals.elsevier.com/international-journal-of-production-economics/', 'www.journals.elsevier.com/international-journal-of-project-management/', 'www.journals.elsevier.com/international-journal-of-psychophysiology/', 'www.journals.elsevier.com/international-journal-of-radiation-oncology-biology-physics/', 'www.journals.elsevier.com/international-journal-of-refractory-metals-and-hard-materials/', 'www.journals.elsevier.com/international-journal-of-refrigeration/', 'www.journals.elsevier.com/international-journal-of-research-in-marketing/', 'www.journals.elsevier.com/international-journal-of-rock-mechanics-and-mining-sciences/', 'www.elsevier.com/journals/international-journal-of-sediment-research/1001-6279', 'www.journals.elsevier.com/international-journal-of-solids-and-structures/', 'www.journals.elsevier.com/international-journal-of-surgery/', 'www.journals.elsevier.com/international-journal-of-surgery-case-reports/', 'www.journals.elsevier.com/international-journal-of-sustainable-built-environment/', 'www.journals.elsevier.com/international-journal-of-thermal-sciences/', 'www.elsevier.com/journals/international-medical-review-on-down-syndrome/2171-9748', 'www.elsevier.com/journals/international-orthodontics/1761-7227', 'www.journals.elsevier.com/international-review-of-economics-and-finance/', 'www.journals.elsevier.com/international-review-of-economics-education/', 'www.journals.elsevier.com/international-review-of-financial-analysis/', 'www.journals.elsevier.com/international-review-of-law-and-economics/', 'www.elsevier.com/journals/interventional-cardiology-clinics/2211-7458', 'www.elsevier.com/journals/investigaciones-de-historia-economica-economic-history-research/1698-6989', 'www.elsevier.com/journals/investigaciones-europeas-de-direccion-y-economia-de-la-empresa/1135-2523', 'www.elsevier.com/journals/irbm/1959-0318', 'www.elsevier.com/journals/irbm-news/1959-7568', 'www.journals.elsevier.com/isa-transactions/', 'www.journals.elsevier.com/isprs-journal-of-photogrammetry-and-remote-sensing/', 'www.journals.elsevier.com/journal-of-immunological-methods/', 'www.elsevier.com/journals/journal-of-indian-college-of-cardiology/1561-8811', 'www.journals.elsevier.com/journal-of-industrial-and-engineering-chemistry/', 'www.journals.elsevier.com/journal-of-infection/', 'www.elsevier.com/journals/journal-of-infection-and-public-health/1876-0341', 'www.journals.elsevier.com/journal-of-informetrics/', 'www.journals.elsevier.com/journal-of-inorganic-biochemistry/', 'www.journals.elsevier.com/journal-of-insect-physiology/', 'www.elsevier.com/journals/journal-of-integrative-agriculture/2095-3119', 'www.journals.elsevier.com/journal-of-interactive-marketing/', 'www.journals.elsevier.com/journal-of-international-accounting-auditing-and-taxation/', 'www.journals.elsevier.com/journal-of-international-economics/', 'www.journals.elsevier.com/journal-of-international-financial-markets-institutions-and-money/', 'www.journals.elsevier.com/journal-of-international-management/', 'www.journals.elsevier.com/journal-of-international-money-and-finance/', 'www.journals.elsevier.com/journal-of-invertebrate-pathology/', 'www.elsevier.com/journals/journal-of-iron-and-steel-research-international/1006-706x', 'www.elsevier.com/journals/the-indian-journal-of-neurotrauma/0973-0508', 'www.journals.elsevier.com/the-international-journal-of-accounting/', 'www.journals.elsevier.com/the-international-journal-of-biochemistry-and-cell-biology/', 'www.journals.elsevier.com/the-international-journal-of-management-education/', 'www.journals.elsevier.com/the-international-journal-of-spine-surgery/', 'www.journals.elsevier.com/the-internet-and-higher-education/', 'www.journals.elsevier.com/jacc-journal-of-the-american-college-of-cardiology/', 'www.journals.elsevier.com/jacc-cardiovascular-imaging/', 'www.journals.elsevier.com/jacc-cardiovascular-interventions/', 'www.journals.elsevier.com/jacc-heart-failure/', 'www.journals.elsevier.com/japan-and-the-world-economy/', 'www.elsevier.com/journals/japanese-dental-science-review/1882-7616', 'www.elsevier.com/journals/jcc-open/2212-0149', 'www.elsevier.com/journals/joint-bone-spine/1297-319x', 'www.journals.elsevier.com/journal-of-the-japanese-and-international-economies/', 'www.journals.elsevier.com/jvir-journal-of-vascular-and-interventional-radiology/', 'www.journals.elsevier.com/journal-of-king-saud-university-computer-and-information-sciences/', 'www.journals.elsevier.com/journal-of-king-saud-university-engineering-sciences/', 'www.journals.elsevier.com/journal-of-king-saud-university-languages-and-translation/', 'www.journals.elsevier.com/journal-of-king-saud-university-science/', 'www.journals.elsevier.com/journal-of-the-korean-statistical-society/', 'www.elsevier.com/journals/kidney-research-and-clinical-practice/2211-9132', 'www.elsevier.com/journals/kinesitherapie-la-revue/1779-0123', 'www.elsevier.com/journals/king-saud-university-journal-of-dental-science/2210-8157', 'www.journals.elsevier.com/knowledge-based-systems/', 'www.elsevier.com/journals/komplementare-und-integrative-medizin/1863-8678', 'www.elsevier.com/journals/krankenhaus-hygiene-infektionsverhutung/0720-3373', 'www.elsevier.com/journals/the-kaohsiung-journal-of-medical-sciences/1607-551x', 'www.journals.elsevier.com/the-knee/', 'www.journals.elsevier.com/journal-of-loss-prevention-in-the-process-industries/', 'www.journals.elsevier.com/journal-of-luminescence/', 'www.elsevier.com/journals/levolution-psychiatrique/0014-3855', 'www.elsevier.com/journals/laide-soignante/1166-3413', 'www.elsevier.com/journals/lanthropologie/0003-5521', 'www.elsevier.com/journals/lencephale/0013-7006', 'www.elsevier.com/journals/logos-interdisziplinar-in-deutscher-sprache-in-german/0944-405x', 'www.journals.elsevier.com/labour-economics/', 'www.journals.elsevier.com/land-use-policy/', 'www.journals.elsevier.com/landscape-and-urban-planning/', 'www.journals.elsevier.com/language-and-communication/', 'www.elsevier.com/journals/language-and-communication-with-language-sciences-combined-subscription/fs00-1016', 'www.journals.elsevier.com/language-sciences/', 'www.elsevier.com/journals/law-officers-magazine/1553-9555', 'www.journals.elsevier.com/learning-and-individual-differences/', 'www.journals.elsevier.com/learning-and-instruction/', 'www.journals.elsevier.com/learning-and-motivation/', 'www.journals.elsevier.com/learning-culture-and-social-interaction/', 'www.journals.elsevier.com/legal-medicine/', 'www.journals.elsevier.com/leukemia-research/', 'www.journals.elsevier.com/leukemia-research-reports/', 'www.journals.elsevier.com/library-and-information-science-research/', 'www.journals.elsevier.com/library-collections-acquisitions-and-technical-services/', 'www.journals.elsevier.com/life-sciences/', 'www.elsevier.com/journals/limnologica/0075-9511', 'www.journals.elsevier.com/linear-algebra-and-its-applications/', 'www.journals.elsevier.com/lingua/', 'www.journals.elsevier.com/linguistics-and-education/', 'www.journals.elsevier.com/lithos/', 'www.journals.elsevier.com/livestock-science/', 'www.journals.elsevier.com/long-range-planning/', 'www.journals.elsevier.com/lung-cancer/', 'www.journals.elsevier.com/lwt-food-science-and-technology/', 'www.elsevier.com/journals/the-journal-of-laboratory-and-clinical-medicine/0022-2143', 'www.journals.elsevier.com/the-journal-of-logic-and-algebraic-programming/', 'www.journals.elsevier.com/the-lancet/', 'www.journals.elsevier.com/the-lancet-north-american-edition/', 'www.elsevier.com/journals/the-lancet-diabetes-and-endocrinology/2213-8587', 'www.journals.elsevier.com/the-lancet-infectious-diseases/', 'www.journals.elsevier.com/the-lancet-neurology/', 'www.journals.elsevier.com/the-lancet-oncology/', 'www.elsevier.com/journals/the-lancet-respiratory-medicine/2213-2600', 'www.elsevier.com/journals/the-latest-word-the-bimonthly-newsletter-for-medical-transcriptionists/1067-716x', 'www.journals.elsevier.com/the-leadership-quarterly/', 'www.journals.elsevier.com/journal-of-macroeconomics/', 'www.elsevier.com/journals/journal-of-magnesium-and-alloys/2213-9567', 'www.journals.elsevier.com/journal-of-magnetic-resonance/', 'www.journals.elsevier.com/journal-of-magnetism-and-magnetic-materials/', 'www.journals.elsevier.com/journal-of-manipulative-and-physiological-therapeutics/', 'www.journals.elsevier.com/journal-of-manufacturing-processes/', 'www.journals.elsevier.com/journal-of-manufacturing-systems/', 'www.elsevier.com/journals/journal-of-manufacturing-systems-with-journal-of-manufacturing-processes-combined-subscription/fs00-4083', 'www.journals.elsevier.com/journal-of-marine-and-island-cultures/', 'www.journals.elsevier.com/journal-of-marine-systems/', 'www.journals.elsevier.com/journal-of-materials-processing-technology/', 'www.elsevier.com/journals/journal-of-materials-research-and-technology/2238-7854', 'www.elsevier.com/journals/journal-of-materials-science-and-technology/1005-0302', 'www.journals.elsevier.com/journal-of-mathematical-analysis-and-applications/', 'www.journals.elsevier.com/journal-of-mathematical-economics/', 'www.journals.elsevier.com/journal-of-mathematical-psychology/', 'www.elsevier.com/journals/journal-of-medical-colleges-of-pla/1000-1948', 'www.elsevier.com/journals/journal-of-medical-hypotheses-and-ideas/2251-7294', 'www.journals.elsevier.com/journal-of-medical-imaging-and-radiation-sciences/', 'www.elsevier.com/journals/journal-of-medical-ultrasound/0929-6441', 'www.journals.elsevier.com/journal-of-medieval-history/', 'www.journals.elsevier.com/journal-of-membrane-science/', 'www.journals.elsevier.com/journal-of-memory-and-language/', 'www.journals.elsevier.com/journal-of-mens-health/', 'www.journals.elsevier.com/journal-of-microbiological-methods/', 'www.elsevier.com/journals/journal-of-microbiology-immunology-and-infection/1684-1182', 'www.elsevier.com/journals/journal-of-microscopy-and-ultrastructure/2213-879x', 'www.elsevier.com/journals/journal-of-midwifery-and-womens-health/1526-9523', 'www.journals.elsevier.com/journal-of-minimally-invasive-gynecology/', 'www.journals.elsevier.com/journal-of-molecular-and-cellular-cardiology/', 'www.journals.elsevier.com/journal-of-molecular-biology/', 'www.elsevier.com/journals/journal-of-molecular-catalysis-ab-combined-subscription/fs00-0537', 'www.journals.elsevier.com/journal-of-molecular-catalysis-a-chemical/', 'www.journals.elsevier.com/journal-of-molecular-catalysis-b-enzymatic/', 'www.journals.elsevier.com/journal-of-molecular-graphics-and-modelling/', 'www.journals.elsevier.com/journal-of-molecular-liquids/', 'www.journals.elsevier.com/journal-of-molecular-spectroscopy/', 'www.journals.elsevier.com/journal-of-molecular-structure/', 'www.elsevier.com/journals/journal-of-molecular-structure-with-computational-and-theoretical-chemistry-combined-subscription/fs00-0061', 'www.elsevier.com/journals/journal-of-molecular-structure-theochem/0166-1280', 'www.journals.elsevier.com/journal-of-monetary-economics/', 'www.journals.elsevier.com/journal-of-multinational-financial-management/', 'www.journals.elsevier.com/journal-of-multivariate-analysis/', 'www.journals.elsevier.com/journal-of-the-mechanical-behavior-of-biomedical-materials/', 'www.journals.elsevier.com/journal-of-the-mechanics-and-physics-of-solids/', 'www.elsevier.com/journals/medecine-and-droit/1246-7391', 'www.elsevier.com/journals/medecine-and-longevite/1875-7170', 'www.elsevier.com/journals/medecine-des-maladies-metaboliques/1957-2557', 'www.elsevier.com/journals/medecine-du-sommeil/1769-4493', 'www.elsevier.com/journals/medecine-et-maladies-infectieuses/0399-077x', 'www.elsevier.com/journals/medecine-nucleaire-imagerie-fonctionnelle-et-metabolique/0928-1258', 'www.elsevier.com/journals/medecine-palliative/1636-6522', 'www.elsevier.com/journals/metiers-de-la-petite-enfance/1258-780x', 'www.journals.elsevier.com/magnetic-resonance-imaging/', 'www.elsevier.com/journals/magnetic-resonance-imaging-clinics-of-north-america/1064-9689', 'www.elsevier.com/journals/mammalian-biology/1616-5047', 'www.journals.elsevier.com/management-accounting-research/', 'www.journals.elsevier.com/manual-therapy/', 'www.journals.elsevier.com/manufacturing-letters/', 'www.journals.elsevier.com/marine-and-petroleum-geology/', 'www.journals.elsevier.com/marine-chemistry/', 'www.journals.elsevier.com/marine-environmental-research/', 'www.journals.elsevier.com/marine-genomics/', 'www.journals.elsevier.com/marine-geology/', 'www.journals.elsevier.com/marine-micropaleontology/', 'www.journals.elsevier.com/marine-policy/', 'www.journals.elsevier.com/marine-pollution-bulletin/', 'www.journals.elsevier.com/marine-structures/', 'www.journals.elsevier.com/materials-and-design/', 'www.journals.elsevier.com/materials-characterization/', 'www.journals.elsevier.com/materials-chemistry-and-physics/', 'www.journals.elsevier.com/materials-letters/', 'www.journals.elsevier.com/materials-research-bulletin/', 'www.elsevier.com/journals/materials-science-and-engineering-a-with-r-reports-combined-subscription/fs00-6043', 'www.elsevier.com/journals/materials-science-and-engineering-b-with-r-reports-combined-subscription/fs00-6044', 'www.elsevier.com/journals/materials-science-and-engineering-a-b-c-and-r-reports-combined-subscription/fs00-6042', 'www.journals.elsevier.com/materials-science-and-engineering-a/', 'www.journals.elsevier.com/materials-science-and-engineering-b/', 'www.journals.elsevier.com/materials-science-and-engineering-c/', 'www.journals.elsevier.com/materials-science-and-engineering-r-reports/', 'www.journals.elsevier.com/materials-science-in-semiconductor-processing/', 'www.elsevier.com/journals/materials-science-in-semiconductor-processing-with-solid-state-electronics-combined-subscription/fs00-1058', 'www.journals.elsevier.com/materials-today/', 'www.journals.elsevier.com/mathematical-and-computer-modelling/', 'www.journals.elsevier.com/mathematical-biosciences/', 'www.journals.elsevier.com/mathematical-social-sciences/', 'www.journals.elsevier.com/mathematics-and-computers-in-simulation/', 'www.elsevier.com/journals/mathematics-and-computers-in-simulation-with-applied-numerical-mathematics-combined-subscription/fs00-0085', 'www.journals.elsevier.com/matrix-biology/', 'www.journals.elsevier.com/maturitas/', 'www.journals.elsevier.com/mayo-clinic-proceedings/', 'www.journals.elsevier.com/measurement/', 'www.journals.elsevier.com/meat-science/', 'www.journals.elsevier.com/mechanical-systems-and-signal-processing/', 'www.journals.elsevier.com/mechanics-of-materials/', 'www.journals.elsevier.com/mechanics-research-communications/', 'www.journals.elsevier.com/mechanism-and-machine-theory/', 'www.journals.elsevier.com/mechanisms-of-ageing-and-development/', 'www.elsevier.com/journals/mechanisms-of-ageing-and-development-with-ageing-research-reviews-combined-subscription/fs00-8146', 'www.journals.elsevier.com/mechanisms-of-development/', 'www.elsevier.com/journals/mechanisms-of-development-with-gene-expression-patterns-combined-subscription/fs-8150', 'www.journals.elsevier.com/mechatronics/', 'www.elsevier.com/journals/medical-clinics-of-north-america/0025-7125', 'www.journals.elsevier.com/medical-dosimetry/', 'www.journals.elsevier.com/medical-engineering-and-physics/', 'www.journals.elsevier.com/medical-hypotheses/', 'www.journals.elsevier.com/medical-image-analysis/', 'www.elsevier.com/journals/medical-journal-armed-forces-india/0377-1237', 'www.elsevier.com/journals/medical-laser-application/1615-1615', 'www.journals.elsevier.com/medical-mycology-case-reports/', 'www.elsevier.com/journals/medical-photonics/2213-8846', 'www.elsevier.com/journals/medicina-clinica/0025-7753', 'www.elsevier.com/journals/medicina-intensiva/0210-5691', 'www.elsevier.com/journals/medicina-intensiva-english-edition/2173-5727', 'www.elsevier.com/journals/medicina-paliativa/1134-248x', 'www.elsevier.com/journals/medicine/1357-3039', 'www.elsevier.com/journals/medicine-programa-de-formacion-medica-continuada-acreditado/0304-5412', 'www.elsevier.com/journals/membrane-technology/0958-2118', 'www.journals.elsevier.com/mendeleev-communications/', 'www.elsevier.com/journals/mental-health-and-prevention/2212-6570', 'www.journals.elsevier.com/mental-health-and-physical-activity/', 'www.journals.elsevier.com/metabolic-engineering/', 'www.journals.elsevier.com/metabolism/', 'www.elsevier.com/journals/metal-finishing/0026-0576', 'www.elsevier.com/journals/metal-powder-report/0026-0657', 'www.journals.elsevier.com/metamaterials/', 'www.journals.elsevier.com/methods/', 'www.journals.elsevier.com/methods-in-oceanography/', 'www.elsevier.com/journals/mic-minimal-invasive-chirurgie/0941-455x', 'www.journals.elsevier.com/microbes-and-infection/', 'www.elsevier.com/journals/microbes-and-infection-with-research-in-microbiology-combined-subscription/fs00-9098', 'www.journals.elsevier.com/microbial-pathogenesis/', 'www.elsevier.com/journals/microbiological-research/0944-5013', 'www.elsevier.com/journals/microbiology-bacteriology-mycology-parasitology-and-virology-section-4-embase/0927-2771', 'www.journals.elsevier.com/microchemical-journal/', 'www.journals.elsevier.com/microelectronic-engineering/', 'www.journals.elsevier.com/microelectronics-journal/', 'www.journals.elsevier.com/microelectronics-reliability/', 'www.journals.elsevier.com/micron/', 'www.journals.elsevier.com/microporous-and-mesoporous-materials/', 'www.journals.elsevier.com/microprocessors-and-microsystems/', 'www.journals.elsevier.com/microvascular-research/', 'www.elsevier.com/journals/middle-east-fertility-society-journal/1110-5690', 'www.journals.elsevier.com/midwifery/', 'www.elsevier.com/journals/mikrokosmos/0026-3680', 'www.journals.elsevier.com/minerals-engineering/', 'www.journals.elsevier.com/mitochondrion/', 'www.journals.elsevier.com/molecular-and-biochemical-parasitology/', 'www.journals.elsevier.com/molecular-and-cellular-endocrinology/', 'www.journals.elsevier.com/molecular-and-cellular-neuroscience/', 'www.journals.elsevier.com/molecular-and-cellular-probes-mcp/', 'www.journals.elsevier.com/molecular-aspects-of-medicine/', 'www.elsevier.com/journals/molecular-cell/1097-2765', 'www.journals.elsevier.com/molecular-genetics-and-metabolism/', 'www.journals.elsevier.com/molecular-immunology/', 'www.elsevier.com/journals/molecular-metabolism/2212-8778', 'www.journals.elsevier.com/molecular-oncology/', 'www.journals.elsevier.com/molecular-phylogenetics-and-evolution/', 'www.elsevier.com/journals/morphologie/1286-0115', 'www.elsevier.com/journals/motricite-cerebrale/0245-5919', 'www.journals.elsevier.com/multiple-sclerosis-and-related-disorders/', 'www.elsevier.com/journals/mutation-research-full-set/fs00-0289', 'www.journals.elsevier.com/mutation-research-fundamental-and-molecular-mechanisms-of-mutagenesis/', 'www.journals.elsevier.com/mutation-research-genetic-toxicology-and-environmental-mutagenesis/', 'www.journals.elsevier.com/mutation-research-reviews/', 'www.elsevier.com/journals/mycological-research/0953-7562', 'www.elsevier.com/journals/mycologist/0269-915x', 'www.elsevier.com/journals/mycoscience/1340-3540', 'www.journals.elsevier.com/the-journal-of-mathematical-behavior/', 'www.elsevier.com/journals/the-journal-of-mens-health-and-gender/1571-8913', 'www.journals.elsevier.com/the-journal-of-molecular-diagnostics/', 'www.elsevier.com/journals/journal-of-nanjing-medical-university/1007-4376', 'www.elsevier.com/journals/journal-of-natural-gas-chemistry/1003-9953', 'www.journals.elsevier.com/journal-of-natural-gas-science-and-engineering/', 'www.journals.elsevier.com/journal-of-neonatal-nursing/', 'www.journals.elsevier.com/journal-of-network-and-computer-applications/', 'www.journals.elsevier.com/journal-of-neuroimmunology/', 'www.journals.elsevier.com/journal-of-neurolinguistics/', 'www.elsevier.com/journals/journal-of-neuroradiology/0150-9861', 'www.journals.elsevier.com/journal-of-neuroscience-methods/', 'www.journals.elsevier.com/journal-of-non-crystalline-solids/', 'www.journals.elsevier.com/journal-of-non-newtonian-fluid-mechanics/', 'www.elsevier.com/journals/journal-of-northeast-agricultural-university-english-edition/1006-8104', 'www.journals.elsevier.com/journal-of-nuclear-materials/', 'www.journals.elsevier.com/journal-of-number-theory/', 'www.journals.elsevier.com/journal-of-nutrition-education-and-behavior/', 'www.journals.elsevier.com/journal-of-the-neurological-sciences/', 'www.elsevier.com/journals/nephrologie-and-therapeutique/1769-7255', 'www.journals.elsevier.com/nano-communication-networks/', 'www.journals.elsevier.com/nano-energy/', 'www.journals.elsevier.com/nano-today/', 'www.journals.elsevier.com/nanomedicine-nanotechnology-biology-and-medicine/', 'www.journals.elsevier.com/ndt-and-e-international/', 'www.elsevier.com/journals/network-security/1353-4858', 'www.journals.elsevier.com/neural-networks/', 'www.journals.elsevier.com/neurobiology-of-aging/', 'www.journals.elsevier.com/neurobiology-of-disease/', 'www.journals.elsevier.com/neurobiology-of-learning-and-memory/', 'www.journals.elsevier.com/neurochemistry-international/', 'www.elsevier.com/journals/neurochirurgie/0028-3770', 'www.elsevier.com/journals/neurocirugia/1130-1473', 'www.journals.elsevier.com/neurocomputing/', 'www.journals.elsevier.com/neuroimage/', 'www.journals.elsevier.com/neuroimage-clinical/', 'www.elsevier.com/journals/neuroimaging-clinics-of-north-america/1052-5149', 'www.elsevier.com/journals/neurologia/0213-4853', 'www.elsevier.com/journals/neurologia-english-edition/2173-5808', 'www.elsevier.com/journals/neurologia-argentina/1853-0028', 'www.elsevier.com/journals/neurologic-clinics/0733-8619', 'www.elsevier.com/journals/neurology-and-neurosurgery-section-8-embase/0014-4126', 'www.elsevier.com/journals/neurology-psychiatry-and-brain-research/0941-9500', 'www.journals.elsevier.com/neuromuscular-disorders/', 'www.elsevier.com/journals/neuron/0896-6273', 'www.journals.elsevier.com/neuropeptides/', 'www.journals.elsevier.com/neuropharmacology/', 'www.elsevier.com/journals/neurophysiologie-clinique-clinical-neurophysiology/0987-7053', 'www.elsevier.com/journals/neuropsychiatrie-de-lenfance-et-de-ladolescence/0222-9617', 'www.journals.elsevier.com/neuropsychologia/', 'www.journals.elsevier.com/neuroscience/', 'www.journals.elsevier.com/neuroscience-and-biobehavioral-reviews/', 'www.journals.elsevier.com/neuroscience-letters/', 'www.elsevier.com/journals/neuroscience-package-option-1/fs00-0136', 'www.elsevier.com/journals/neuroscience-package-option-2/fs00-0175', 'www.journals.elsevier.com/neuroscience-research/', 'www.elsevier.com/journals/neurosurgery-clinics-of-north-america/1042-3680', 'www.elsevier.com/journals/neurotherapeutics/1933-7213', 'www.journals.elsevier.com/neurotoxicology/', 'www.journals.elsevier.com/neurotoxicology-and-teratology/', 'www.journals.elsevier.com/new-astronomy/', 'www.journals.elsevier.com/new-astronomy-reviews/', 'www.journals.elsevier.com/new-biotechnology/', 'www.elsevier.com/journals/new-carbon-materials/1872-5805', 'www.journals.elsevier.com/new-ideas-in-psychology/', 'www.journals.elsevier.com/newborn-and-infant-nursing-reviews/', 'www.journals.elsevier.com/nitric-oxide-biology-and-chemistry/', 'www.journals.elsevier.com/njas-wageningen-journal-of-life-sciences/', 'www.journals.elsevier.com/nonlinear-analysis-hybrid-systems/', 'www.journals.elsevier.com/nonlinear-analysis-real-world-applications/', 'www.journals.elsevier.com/nonlinear-analysis-theory-methods-and-applications/', 'www.elsevier.com/journals/nonlinear-analysis-theory-methods-and-applications-nonlinear-analysis-real-world-applications-and-nonlinear-analysis-hybrid-systems-combined-subscription/fs00-0239', 'www.elsevier.com/journals/npg-neurologie-psychiatrie-geriatrie/1627-4830', 'www.journals.elsevier.com/nriag-journal-of-astronomy-and-geophysics/', 'www.journals.elsevier.com/nuclear-data-sheets/', 'www.journals.elsevier.com/nuclear-engineering-and-design/', 'www.elsevier.com/journals/nuclear-engineering-and-design-with-fusion-engineering-and-design-combined-subscription/fs00-6045', 'www.elsevier.com/journals/nuclear-instruments-and-methods-in-physics-research-ab-full-set/fs00-0111', 'www.journals.elsevier.com/nuclear-instruments-and-methods-in-physics-research-section-a-accelerators-spectrometers-detectors-and-associated-equipment/', 'www.journals.elsevier.com/nuclear-instruments-and-methods-in-physics-research-section-b-beam-interactions-with-materials-and-atoms/', 'www.elsevier.com/journals/nuclear-medicine-section-23-embase/0014-4274', 'www.journals.elsevier.com/nuclear-medicine-and-biology/', 'www.journals.elsevier.com/nuclear-physics-a/', 'www.journals.elsevier.com/nuclear-physics-b/', 'www.journals.elsevier.com/nuclear-physics-b-proceedings-supplements/', 'www.elsevier.com/journals/nuclear-physics-section-a-section-b-with-section-b-proceedings-supplements-full-set/fs00-0123', 'www.journals.elsevier.com/nurse-education-in-practice/', 'www.journals.elsevier.com/nurse-education-today/', 'www.elsevier.com/journals/nurse-education-today-with-nurse-education-in-practice-combined-subscription/00fs-2300', 'www.journals.elsevier.com/nurse-leader/', 'www.elsevier.com/journals/nursing-clinics-of-north-america/0029-6465', 'www.journals.elsevier.com/nursing-outlook/', 'www.journals.elsevier.com/nutrition/', 'www.elsevier.com/journals/nutrition-clinique-et-metabolisme/0985-0562', 'www.journals.elsevier.com/nutrition-research/', 'www.journals.elsevier.com/nutrition-metabolism-and-cardiovascular-diseases/', 'www.journals.elsevier.com/the-journal-of-nutritional-biochemistry/', 'www.journals.elsevier.com/the-north-american-journal-of-economics-and-finance/', 'www.journals.elsevier.com/journal-of-obsessive-compulsive-and-related-disorders/', 'www.journals.elsevier.com/journal-of-operations-management/', 'www.elsevier.com/journals/journal-of-optometry/1888-4296', 'www.journals.elsevier.com/journal-of-oral-and-maxillofacial-surgery/', 'www.elsevier.com/journals/journal-of-oral-and-maxillofacial-surgery-medicine-and-pathology/2212-5558', 'www.elsevier.com/journals/journal-of-oral-biology-and-craniofacial-research/2212-4268', 'www.elsevier.com/journals/journal-of-oral-biosciences/1349-0079', 'www.journals.elsevier.com/journal-of-organometallic-chemistry/', 'www.elsevier.com/journals/journal-of-orthopaedic-nursing/1361-3111', 'www.elsevier.com/journals/journal-of-orthopaedics/0972-978x', 'www.elsevier.com/journals/journal-of-orthopaedics-trauma-and-rehabilitation/2210-4917', 'www.journals.elsevier.com/journal-of-outdoor-recreation-and-tourism/', 'www.elsevier.com/journals/ob-gyn-news/0029-7437', 'www.elsevier.com/journals/obesity-research-and-clinical-practice/1871-403x', 'www.elsevier.com/journals/obstetrics-and-gynecology-section-10-embase/0014-4142', 'www.elsevier.com/journals/obstetrics-and-gynecology-clinics-of-north-america/0889-8545', 'www.elsevier.com/journals/obstetrics-gynaecology-and-reproductive-medicine/1751-7214', 'www.elsevier.com/journals/occupational-health-and-industrial-medicine-section-35-embase/0014-4398', 'www.journals.elsevier.com/ocean-and-coastal-management/', 'www.journals.elsevier.com/ocean-engineering/', 'www.journals.elsevier.com/ocean-modelling/', 'www.elsevier.com/journals/oceanographic-literature-review/0967-0653', 'www.elsevier.com/journals/oceanography-package/fs00-0176', 'www.journals.elsevier.com/omega/', 'www.journals.elsevier.com/operations-research-for-health-care/', 'www.journals.elsevier.com/operations-research-letters/', 'www.elsevier.com/journals/operative-techniques-in-general-surgery/1524-153x', 'www.journals.elsevier.com/operative-techniques-in-orthopaedics/', 'www.journals.elsevier.com/operative-techniques-in-otolaryngology-head-and-neck-surgery/', 'www.journals.elsevier.com/operative-techniques-in-sports-medicine/', 'www.journals.elsevier.com/operative-techniques-in-thoracic-and-cardiovascular-surgery/', 'www.elsevier.com/journals/ophthalmology-section-12-embase/0014-4169', 'www.journals.elsevier.com/ophthalmology-journal-of-the-american-academy-of-ophthalmology/', 'www.journals.elsevier.com/optical-fiber-technology/', 'www.journals.elsevier.com/optical-materials/', 'www.journals.elsevier.com/optical-switching-and-networking/', 'www.journals.elsevier.com/optics-and-laser-technology/', 'www.journals.elsevier.com/optics-and-lasers-in-engineering/', 'www.journals.elsevier.com/optics-communications/', 'www.elsevier.com/journals/optik/0030-4026', 'www.elsevier.com/journals/option-bio/0992-5945', 'www.elsevier.com/journals/oral-and-maxillofacial-surgery-clinics-of-north-america/1042-3699', 'www.journals.elsevier.com/oral-oncology/', 'www.elsevier.com/journals/oral-science-international/1348-8643', 'www.journals.elsevier.com/oral-surgery-oral-medicine-oral-pathology-and-oral-radiology/', 'www.elsevier.com/journals/oral-surgery-oral-medicine-oral-pathology-oral-radiology-and-endodontology/1079-2104', 'www.journals.elsevier.com/orbis/', 'www.journals.elsevier.com/ore-geology-reviews/', 'www.journals.elsevier.com/organic-electronics/', 'www.journals.elsevier.com/organic-geochemistry/', 'www.elsevier.com/journals/organisms-diversity-and-evolution/1439-6092', 'www.journals.elsevier.com/organizational-behavior-and-human-decision-processes/', 'www.journals.elsevier.com/organizational-dynamics/', 'www.elsevier.com/journals/ortho-magazine/1262-4586', 'www.elsevier.com/journals/orthodontic-waves/1344-0241', 'www.elsevier.com/journals/orthopaedics-and-traumatology-surgery-and-research/1877-0568', 'www.elsevier.com/journals/orthopaedics-and-trauma/1877-1327', 'www.elsevier.com/journals/orthopedic-clinics-of-north-america/0030-5898', 'www.elsevier.com/journals/orthopedic-surgery-section-33-embase/0014-4371', 'www.elsevier.com/journals/ortodoncia-espanola/0210-1637', 'www.elsevier.com/journals/osong-public-health-and-research-perspectives/2210-9099', 'www.journals.elsevier.com/osteoarthritis-and-cartilage/', 'www.elsevier.com/journals/osteopatia-cientifica/1886-9297', 'www.journals.elsevier.com/osteopathic-family-physician/', 'www.elsevier.com/journals/osteopathische-medizin/1615-9071', 'www.elsevier.com/journals/otolaryngologia-polska/0030-6657', 'www.elsevier.com/journals/otolaryngologic-clinics-of-north-america/0030-6665', 'www.elsevier.com/journals/otorhinolaryngology-section-11-embase/0014-4150', 'www.elsevier.com/journals/oxymag/0990-1310', 'www.journals.elsevier.com/the-ocular-surface/', 'www.journals.elsevier.com/journal-of-pain-and-symptom-management/', 'www.journals.elsevier.com/journal-of-parallel-and-distributed-computing/', 'www.journals.elsevier.com/journal-of-pediatric-and-adolescent-gynecology/', 'www.journals.elsevier.com/journal-of-pediatric-health-care/', 'www.journals.elsevier.com/journal-of-pediatric-nursing/', 'www.journals.elsevier.com/journal-of-pediatric-surgery/', 'www.elsevier.com/journals/journal-of-pediatric-surgery-case-reports/2213-5766', 'www.journals.elsevier.com/journal-of-pediatric-urology/', 'www.journals.elsevier.com/journal-of-perianesthesia-nursing/', 'www.journals.elsevier.com/journal-of-petroleum-science-and-engineering/', 'www.journals.elsevier.com/journal-of-pharmaceutical-analysis/', 'www.journals.elsevier.com/journal-of-pharmaceutical-and-biomedical-analysis/', 'www.journals.elsevier.com/journal-of-pharmacological-and-toxicological-methods/', 'www.elsevier.com/journals/journal-of-pharmacy-research/0974-6943', 'www.journals.elsevier.com/journal-of-phonetics/', 'www.elsevier.com/journals/journal-of-photochemistry-and-photobiology-abc-combined-subscription/fs00-6041', 'www.journals.elsevier.com/journal-of-photochemistry-and-photobiology-a-chemistry/', 'www.journals.elsevier.com/journal-of-photochemistry-and-photobiology-b-biology/', 'www.journals.elsevier.com/journal-of-photochemistry-and-photobiology-c-photochemistry-reviews/', 'www.journals.elsevier.com/journal-of-physics-and-chemistry-of-solids/', 'www.journals.elsevier.com/journal-of-physiology-paris/', 'www.elsevier.com/journals/journal-of-physiotherapy/1836-9553', 'www.elsevier.com/journals/journal-of-plant-physiology/0176-1617', 'www.journals.elsevier.com/journal-of-plastic-reconstructive-and-aesthetic-surgery/', 'www.journals.elsevier.com/journal-of-policy-modeling/', 'www.journals.elsevier.com/journal-of-power-sources/', 'www.journals.elsevier.com/journal-of-pragmatics/', 'www.journals.elsevier.com/journal-of-process-control/', 'www.journals.elsevier.com/journal-of-professional-nursing/', 'www.journals.elsevier.com/journal-of-prosthetic-dentistry/', 'www.elsevier.com/journals/journal-of-prosthodontic-research/1883-1958', 'www.journals.elsevier.com/journal-of-proteomics/', 'www.journals.elsevier.com/journal-of-psychiatric-research/', 'www.journals.elsevier.com/journal-of-psychosomatic-research/', 'www.journals.elsevier.com/journal-of-public-economics/', 'www.journals.elsevier.com/journal-of-purchasing-and-supply-management/', 'www.journals.elsevier.com/journal-of-pure-and-applied-algebra/', 'www.elsevier.com/journals/la-presse-medicale/0755-4982', 'www.elsevier.com/journals/le-pharmacien-hospitalier/0768-9179', 'www.elsevier.com/journals/le-pharmacien-hospitalier-et-clinicien/2211-1042', 'www.elsevier.com/journals/le-praticien-en-anesthesie-reanimation/1279-7960', 'www.journals.elsevier.com/pacific-basin-finance-journal/', 'www.journals.elsevier.com/paediatric-respiratory-reviews/', 'www.elsevier.com/journals/paediatrics-and-child-health/1751-7222', 'www.journals.elsevier.com/pain-management-nursing/', 'www.journals.elsevier.com/pain/', 'www.journals.elsevier.com/palaeogeography-palaeoclimatology-palaeoecology/', 'www.elsevier.com/journals/palaeogeography-palaeoclimatology-palaeoecology-with-global-and-planetary-change-combined-subscription/fs00-0481', 'www.elsevier.com/journals/palaeoworld/1871-174x', 'www.elsevier.com/journals/pancreatology/1424-3903', 'www.journals.elsevier.com/parallel-computing/', 'www.journals.elsevier.com/parasitology-international/', 'www.journals.elsevier.com/parkinsonism-and-related-disorders/', 'www.journals.elsevier.com/particuology/', 'www.elsevier.com/journals/pathologie-biologie/0369-8114', 'www.elsevier.com/journals/pathology-research-and-practice/0344-0338', 'www.elsevier.com/journals/pathophysiology/0928-4680', 'www.journals.elsevier.com/patient-education-and-counseling/', 'www.journals.elsevier.com/pattern-recognition/', 'www.journals.elsevier.com/pattern-recognition-letters/', 'www.elsevier.com/journals/pediatria-polska/0031-3939', 'www.elsevier.com/journals/pediatric-clinics-of-north-america/0031-3955', 'www.elsevier.com/journals/pediatric-infectious-disease/2212-8328', 'www.journals.elsevier.com/pediatric-neurology/', 'www.elsevier.com/journals/pediatric-news/0031-398x', 'www.elsevier.com/journals/pediatrics-and-neonatology/1875-9572', 'www.elsevier.com/journals/pediatrics-and-pediatric-surgery-section-7-embase/0373-6512', 'www.elsevier.com/journals/pedobiologia/0031-4056', 'www.elsevier.com/journals/pedosphere/1002-0160', 'www.journals.elsevier.com/peptides/', 'www.elsevier.com/journals/performance-enhancement-and-health/2211-2669', 'www.journals.elsevier.com/performance-evaluation/', 'www.elsevier.com/journals/perioperative-medizin/1875-2772', 'www.elsevier.com/journals/perioperative-nursing-clinics/1556-7931', 'www.journals.elsevier.com/personality-and-individual-differences/', 'www.elsevier.com/journals/personalized-medicine-universe/2186-4950', 'www.elsevier.com/journals/perspectives-in-medicine/2211-968x', 'www.elsevier.com/journals/perspectives-in-plant-ecology-evolution-and-systematics/1433-8319', 'www.elsevier.com/journals/perspectives-in-science/2213-0209', 'www.elsevier.com/journals/perspectives-in-vaccinology/2210-7622', 'www.journals.elsevier.com/pervasive-and-mobile-computing/', 'www.journals.elsevier.com/pesticide-biochemistry-and-physiology/', 'www.elsevier.com/journals/pet-clinics/1556-8598', 'www.journals.elsevier.com/petroleum-exploration-and-development/', 'www.elsevier.com/journals/pharmaceutical-approvals-monthly/1530-6232', 'www.journals.elsevier.com/pharmacological-research/', 'www.journals.elsevier.com/pharmacology-and-therapeutics/', 'www.journals.elsevier.com/pharmacology-biochemistry-and-behavior/', 'www.elsevier.com/journals/pharmacology-package-option-1/fs00-0138', 'www.elsevier.com/journals/pharmacology-package-option-2/fs00-0177', 'www.journals.elsevier.com/pharmanutrition/', 'www.elsevier.com/journals/pharmasia-news/1875-7774', 'www.elsevier.com/journals/photoacoustics/2213-5979', 'www.journals.elsevier.com/photodiagnosis-and-photodynamic-therapy/', 'www.journals.elsevier.com/photonics-and-nanostructures-fundamentals-and-applications/', 'www.elsevier.com/journals/physica-ab-combined-subscription/fs00-0385', 'www.elsevier.com/journals/physica-abc-combined-subscription/fs00-0337', 'www.elsevier.com/journals/physica-abd-combined-subscription/fs00-0349', 'www.elsevier.com/journals/physica-ac-combined-subscription/fs00-0397', 'www.elsevier.com/journals/physica-acd-combined-subscription/fs00-0361', 'www.elsevier.com/journals/physica-ad-combined-subscription/fs00-0409', 'www.elsevier.com/journals/physica-a-b-c-d-and-e-full-set/fs00-0147', 'www.journals.elsevier.com/physica-a-statistical-mechanics-and-its-applications/', 'www.elsevier.com/journals/physica-bc-combined-subscription/fs00-0422', 'www.elsevier.com/journals/physica-bcd-combined-subscription/fs00-0373', 'www.elsevier.com/journals/physica-bd-combined-subscription/fs00-0433', 'www.journals.elsevier.com/physica-b-condensed-matter/', 'www.elsevier.com/journals/physica-cd-combined-subscription/fs00-0445', 'www.journals.elsevier.com/physica-c-superconductivity-and-its-applications/', 'www.journals.elsevier.com/physica-d-nonlinear-phenomena/', 'www.journals.elsevier.com/physica-e-low-dimensional-systems-and-nanostructures/', 'www.journals.elsevier.com/physica-medica/', 'www.journals.elsevier.com/physical-communication/', 'www.elsevier.com/journals/physical-medicine-and-rehabilitation-clinics-of-north-america/1047-9651', 'www.journals.elsevier.com/physical-mesomechanics/', 'www.journals.elsevier.com/physical-therapy-in-sport/', 'www.journals.elsevier.com/physics-and-chemistry-of-the-earth/', 'www.journals.elsevier.com/physics-letters-a/', 'www.elsevier.com/journals/physics-letters-abphysics-reports-full-set/fs00-0159', 'www.journals.elsevier.com/physics-letters-b/', 'www.journals.elsevier.com/physics-of-life-reviews/', 'www.journals.elsevier.com/physics-of-the-dark-universe/', 'www.journals.elsevier.com/physics-of-the-earth-and-planetary-interiors/', 'www.journals.elsevier.com/physics-procedia/', 'www.journals.elsevier.com/physics-reports/', 'www.journals.elsevier.com/physiological-and-molecular-plant-pathology/', 'www.journals.elsevier.com/physiology-and-behavior/', 'www.elsevier.com/journals/physiology-section-2-embase/0367-1089', 'www.journals.elsevier.com/physiotherapy/', 'www.journals.elsevier.com/phytochemistry/', 'www.journals.elsevier.com/phytochemistry-letters/', 'www.elsevier.com/journals/phytomedicine/0944-7113', 'www.elsevier.com/journals/piel/0213-9251', 'www.journals.elsevier.com/placenta/', 'www.journals.elsevier.com/planetary-and-space-science/', 'www.journals.elsevier.com/plant-physiology-and-biochemistry/', 'www.journals.elsevier.com/plant-science/', 'www.journals.elsevier.com/plasmid/', 'www.elsevier.com/journals/plastics-additives-and-compounding/1464-391x', 'www.journals.elsevier.com/pmandr/', 'www.journals.elsevier.com/poetics/', 'www.journals.elsevier.com/polar-science/', 'www.journals.elsevier.com/policy-and-society/', 'www.elsevier.com/journals/polish-annals-of-medicine/1230-8013', 'www.journals.elsevier.com/political-geography/', 'www.elsevier.com/journals/polski-przeglad-otorynolaryngologiczny/2084-5308', 'www.journals.elsevier.com/polyhedron/', 'www.journals.elsevier.com/polymer/', 'www.elsevier.com/journals/polymer-contents/0883-153x', 'www.journals.elsevier.com/polymer-degradation-and-stability/', 'www.journals.elsevier.com/polymer-testing/', 'www.journals.elsevier.com/postharvest-biology-and-technology/', 'www.journals.elsevier.com/powder-technology/', 'www.journals.elsevier.com/practical-radiation-oncology/', 'www.elsevier.com/journals/pratique-neurologique-fmc/1878-7762', 'www.elsevier.com/journals/pratiques-du-soignant/1764-9137', 'www.elsevier.com/journals/pratiques-en-nutrition/1766-7305', 'www.elsevier.com/journals/pratiques-medicale-et-chirurgicale-de-lanimal-de-compagnie/0758-1882', 'www.elsevier.com/journals/pratiques-psychologiques/1269-1763', 'www.journals.elsevier.com/precambrian-research/', 'www.journals.elsevier.com/precision-engineering/', 'www.journals.elsevier.com/pregnancy-hypertension/', 'www.journals.elsevier.com/preventive-medicine/', 'www.journals.elsevier.com/preventive-veterinary-medicine/', 'www.journals.elsevier.com/primary-care-diabetes/', 'www.elsevier.com/journals/primary-care-respiratory-journal/1471-4418', 'www.elsevier.com/journals/primary-care-clinics-in-office-practice/0095-4543', 'www.journals.elsevier.com/probabilistic-engineering-mechanics/', 'www.journals.elsevier.com/procedia-social-and-behavioral-sciences/', 'www.journals.elsevier.com/procedia-chemistry/', 'www.journals.elsevier.com/procedia-cirp/', 'www.journals.elsevier.com/procedia-computer-science/', 'www.journals.elsevier.com/procedia-earth-and-planetary-science/', 'www.journals.elsevier.com/procedia-economics-and-finance/', 'www.journals.elsevier.com/procedia-engineering/', 'www.journals.elsevier.com/procedia-environmental-sciences/', 'www.journals.elsevier.com/procedia-food-science/', 'www.journals.elsevier.com/procedia-in-vaccinology/', 'www.journals.elsevier.com/procedia-iutam/', 'www.journals.elsevier.com/procedia-materials-science/', 'www.journals.elsevier.com/procedia-technology/', 'www.journals.elsevier.com/proceedings-of-the-combustion-institute/', 'www.journals.elsevier.com/proceedings-of-the-geologists-association/', 'www.journals.elsevier.com/process-biochemistry/', 'www.journals.elsevier.com/process-safety-and-environmental-protection/', 'www.elsevier.com/journals/progres-en-urologie/1166-7087', 'www.elsevier.com/journals/progresos-de-obstetricia-y-ginecologia/0304-5013', 'www.journals.elsevier.com/progress-in-aerospace-sciences/', 'www.journals.elsevier.com/progress-in-biophysics-and-molecular-biology/', 'www.journals.elsevier.com/progress-in-cardiovascular-diseases/', 'www.journals.elsevier.com/progress-in-crystal-growth-and-characterization-of-materials/', 'www.journals.elsevier.com/progress-in-energy-and-combustion-science/', 'www.elsevier.com/journals/progress-in-histochemistry-and-cytochemistry/0079-6336', 'www.journals.elsevier.com/progress-in-lipid-research/', 'www.journals.elsevier.com/progress-in-materials-science/', 'www.journals.elsevier.com/progress-in-natural-science-materials-international/', 'www.journals.elsevier.com/progress-in-neuro-psychopharmacology-and-biological-psychiatry/', 'www.journals.elsevier.com/progress-in-neurobiology/', 'www.journals.elsevier.com/progress-in-nuclear-energy/', 'www.journals.elsevier.com/progress-in-nuclear-magnetic-resonance-spectroscopy/', 'www.journals.elsevier.com/progress-in-oceanography/', 'www.journals.elsevier.com/progress-in-organic-coatings/', 'www.journals.elsevier.com/progress-in-particle-and-nuclear-physics/', 'www.journals.elsevier.com/progress-in-pediatric-cardiology/', 'www.journals.elsevier.com/progress-in-planning/', 'www.journals.elsevier.com/progress-in-polymer-science/', 'www.journals.elsevier.com/progress-in-quantum-electronics/', 'www.journals.elsevier.com/progress-in-retinal-and-eye-research/', 'www.elsevier.com/journals/progress-in-retinal-and-eye-research-with-vision-research-combined-subscription/fs00-0106', 'www.journals.elsevier.com/progress-in-solid-state-chemistry/', 'www.journals.elsevier.com/progress-in-surface-science/', 'www.journals.elsevier.com/propulsion-and-power-research/', 'www.journals.elsevier.com/prostaglandins-and-other-lipid-mediators/', 'www.journals.elsevier.com/prostaglandins-leukotrienes-and-essential-fatty-acids-plefa/', 'www.journals.elsevier.com/protein-expression-and-purification/', 'www.elsevier.com/journals/protist/1434-4610', 'www.elsevier.com/journals/psiquiatria-biologica/1134-5934', 'www.elsevier.com/journals/psychiatric-clinics-of-north-america/0193-953x', 'www.elsevier.com/journals/psychiatry/1476-1793', 'www.elsevier.com/journals/psychiatry-section-32-embase/0014-4363', 'www.journals.elsevier.com/psychiatry-research/', 'www.elsevier.com/journals/psychiatry-research-with-psychiatry-research-neuroimaging-section-combined-subscription/fs00-8064', 'www.journals.elsevier.com/psychiatry-research-neuroimaging/', 'www.elsevier.com/journals/psychologie-du-travail-et-des-organisations/1420-2530', 'www.elsevier.com/journals/psychologie-francaise/0033-2984', 'www.journals.elsevier.com/psychology-of-sport-and-exercise/', 'www.journals.elsevier.com/psychoneuroendocrinology/', 'www.journals.elsevier.com/psychosomatics/', 'www.journals.elsevier.com/public-health/', 'www.elsevier.com/journals/public-health-forum/0944-5587', 'www.elsevier.com/journals/public-health-social-medicine-and-epidemiology-section-17-embase/0924-5723', 'www.journals.elsevier.com/public-relations-review/', 'www.journals.elsevier.com/pulmonary-pharmacology-and-therapeutics/', 'www.elsevier.com/journals/pump-industry-analyst/1359-6128', 'www.journals.elsevier.com/the-journal-of-pain/', 'www.journals.elsevier.com/the-journal-of-pediatrics/', 'www.elsevier.com/journals/the-pink-sheet/1530-6240', 'www.elsevier.com/journals/the-pink-sheet-daily/1554-4036', 'www.journals.elsevier.com/journal-of-quantitative-spectroscopy-and-radiative-transfer/', 'www.elsevier.com/journals/quantitative-ecology-combined-set/fs00-5564', 'www.journals.elsevier.com/quaternary-geochronology/', 'www.journals.elsevier.com/quaternary-international/', 'www.journals.elsevier.com/quaternary-research/', 'www.journals.elsevier.com/quaternary-science-reviews/', 'www.elsevier.com/journals/quaternary-science-reviews-with-quaternary-geochronology-combined-subscription/fs00-4108', 'www.elsevier.com/journals/quaternary-science-reviews-with-quaternary-international-combined-subscription/fs00-1037', 'www.journals.elsevier.com/the-quarterly-review-of-economics-and-finance/', 'www.journals.elsevier.com/journal-of-radiology-nursing/', 'www.journals.elsevier.com/journal-of-rail-transport-planning-and-management/', 'www.elsevier.com/journals/journal-of-rare-earths/1002-0721', 'www.journals.elsevier.com/journal-of-renal-nutrition/', 'www.elsevier.com/journals/journal-of-reproduction-and-contraception/1001-7844', 'www.journals.elsevier.com/journal-of-reproductive-immunology/', 'www.journals.elsevier.com/journal-of-research-in-personality/', 'www.journals.elsevier.com/journal-of-retailing/', 'www.journals.elsevier.com/journal-of-retailing-and-consumer-services/', 'www.elsevier.com/journals/journal-of-rock-mechanics-and-geotechnical-engineering/1674-7755', 'www.journals.elsevier.com/journal-of-rural-studies/', 'www.elsevier.com/journals/la-revue-dhomeopathie/1878-9730', 'www.elsevier.com/journals/la-revue-de-medecine-interne/0248-8663', 'www.elsevier.com/journals/la-revue-de-medecine-legale/1878-6529', 'www.elsevier.com/journals/la-revue-sage-femme/1637-4088', 'www.elsevier.com/journals/reanimation/1624-0693', 'www.elsevier.com/journals/rontgenpraxis/0035-7820', 'www.journals.elsevier.com/radiation-measurements/', 'www.journals.elsevier.com/radiation-physics-and-chemistry/', 'www.journals.elsevier.com/radiography/', 'www.elsevier.com/journals/radiologia/0033-8338', 'www.elsevier.com/journals/radiologia-english-edition/2173-5107', 'www.elsevier.com/journals/radiologic-clinics-of-north-america/0033-8389', 'www.elsevier.com/journals/radiology-section-14-embase/0014-4185', 'www.journals.elsevier.com/radiotherapy-and-oncology/', 'www.elsevier.com/journals/rare-metal-materials-and-engineering/1875-5372', 'www.elsevier.com/journals/rare-metals/1001-0521', 'www.journals.elsevier.com/reactive-and-functional-polymers/', 'www.journals.elsevier.com/redox-biology/', 'www.elsevier.com/journals/refocus/1471-0846', 'www.journals.elsevier.com/regional-science-and-urban-economics/', 'www.journals.elsevier.com/regulatory-peptides/', 'www.journals.elsevier.com/regulatory-toxicology-and-pharmacology/', 'www.elsevier.com/journals/rehabilitacion/0048-7120', 'www.elsevier.com/journals/rehabilitation-and-physical-medicine-section-19-embase/0014-4231', 'www.elsevier.com/journals/reinforced-plastics/0034-3617', 'www.journals.elsevier.com/reliability-engineering-and-system-safety/', 'www.elsevier.com/journals/religion/0048-721x', 'www.journals.elsevier.com/remote-sensing-of-environment/', 'www.journals.elsevier.com/renewable-and-sustainable-energy-reviews/', 'www.journals.elsevier.com/renewable-energy/', 'www.elsevier.com/journals/renewable-energy-focus/1755-0084', 'www.elsevier.com/journals/reports-of-practical-oncology-and-radiotherapy/1507-1367', 'www.journals.elsevier.com/reports-on-mathematical-physics/', 'www.elsevier.com/journals/reproductive-biology/1642-431x', 'www.journals.elsevier.com/reproductive-biomedicine-online/', 'www.journals.elsevier.com/reproductive-health-matters/', 'www.journals.elsevier.com/reproductive-toxicology/', 'www.journals.elsevier.com/research-in-accounting-regulation/', 'www.journals.elsevier.com/research-in-autism-spectrum-disorders/', 'www.journals.elsevier.com/research-in-developmental-disabilities/', 'www.journals.elsevier.com/research-in-economics/', 'www.journals.elsevier.com/research-in-international-business-and-finance/', 'www.journals.elsevier.com/research-in-microbiology/', 'www.journals.elsevier.com/research-in-organizational-behavior/', 'www.journals.elsevier.com/research-in-social-and-administrative-pharmacy/', 'www.journals.elsevier.com/research-in-social-stratification-and-mobility/', 'www.journals.elsevier.com/research-in-transportation-business-and-management/', 'www.journals.elsevier.com/research-in-transportation-economics/', 'www.journals.elsevier.com/research-in-veterinary-science/', 'www.journals.elsevier.com/research-policy/', 'www.elsevier.com/journals/research-strategies/0734-3310', 'www.journals.elsevier.com/resource-and-energy-economics/', 'www.journals.elsevier.com/resources-policy/', 'www.journals.elsevier.com/resources-conservation-and-recycling/', 'www.elsevier.com/journals/respiratory-investigation/2212-5345', 'www.journals.elsevier.com/respiratory-medicine/', 'www.journals.elsevier.com/respiratory-medicine-case-reports/', 'www.elsevier.com/journals/respiratory-medicine-cme/1755-0017', 'www.elsevier.com/journals/respiratory-medicine-extra/1744-9049', 'www.elsevier.com/journals/respiratory-medicine-copd-update/1745-0454', 'www.journals.elsevier.com/respiratory-physiology-and-neurobiology/', 'www.journals.elsevier.com/results-in-immunology/', 'www.journals.elsevier.com/results-in-pharma-sciences/', 'www.journals.elsevier.com/results-in-physics/', 'www.journals.elsevier.com/resuscitation/', 'www.elsevier.com/journals/reumatologia-clinica/1699-258x', 'www.elsevier.com/journals/reumatologia-clinica-english-edition/2173-5743', 'www.journals.elsevier.com/review-of-development-finance/', 'www.journals.elsevier.com/review-of-economic-dynamics/', 'www.journals.elsevier.com/review-of-financial-economics/', 'www.journals.elsevier.com/review-of-palaeobotany-and-palynology/', 'www.elsevier.com/journals/reviews-in-gynaecological-and-perinatal-practice/1871-2320', 'www.elsevier.com/journals/reviews-in-vascular-medicine/2212-0211', 'www.elsevier.com/journals/revista-andaluza-de-medicina-del-deporte/1888-7546', 'www.elsevier.com/journals/revista-brasileira-de-cardiologia-invasiva/0104-1843', 'www.elsevier.com/journals/revista-brasileira-de-psiquiatria-rbp-psychiatry/1516-4446', 'www.elsevier.com/journals/revista-cientifica-de-la-sociedad-espanola-de-enfermeria-neurologica/2013-5246', 'www.elsevier.com/journals/revista-clinica-espanola/0014-2565', 'www.elsevier.com/journals/revista-colombiana-de-anestesiologia/0120-3347', 'www.elsevier.com/journals/revista-da-associacao-medica-brasileira/0104-4230', 'www.elsevier.com/journals/revista-de-calidad-asistencial/1134-282x', 'www.elsevier.com/journals/revista-de-la-sociedad-espanola-del-dolor/1134-8046', 'www.elsevier.com/journals/revista-de-logopedia-foniatria-y-audiologia/0214-4603', 'www.elsevier.com/journals/revista-de-patologia-respiratoria/1576-9895', 'www.elsevier.com/journals/revista-de-psiquiatria-y-salud-mental/1888-9891', 'www.elsevier.com/journals/revista-de-psiquiatria-y-salud-mental-english-edition/2173-5050', 'www.elsevier.com/journals/revista-de-senologia-y-patologia-mamaria/0214-1582', 'www.elsevier.com/journals/revista-del-laboratorio-clinico/1888-4008', 'www.elsevier.com/journals/revista-espanola-de-anestesiologia-y-reanimacion/0034-9356', 'www.elsevier.com/journals/revista-espanola-de-cardiologia/0300-8932', 'www.elsevier.com/journals/revista-espanola-de-cardiologia-english-version/1885-5857', 'www.elsevier.com/journals/revista-espanola-de-cardiologia-suplementos/1131-3587', 'www.elsevier.com/journals/revista-espanola-de-cirugia-oral-y-maxilofacial/1130-0558', 'www.elsevier.com/journals/revista-espanola-de-cirugia-ortopedica-y-traumatologia/1888-4415', 'www.elsevier.com/journals/revista-espanola-de-enfermedades-metabolicas-seas/1132-8460', 'www.elsevier.com/journals/revista-espanola-de-geriatria-y-gerontologia/0211-139x', 'www.elsevier.com/journals/revista-espanola-de-medicina-legal/0377-4732', 'www.elsevier.com/journals/revista-espanola-de-medicina-nuclear/0212-6982', 'www.elsevier.com/journals/revista-espanola-de-medicina-nuclear-e-imagen-molecular/2253-654x', 'www.elsevier.com/journals/revista-espanola-de-nutricion-humana-y-dietetica/2173-1292', 'www.elsevier.com/journals/revista-espanola-de-patologia/1699-8855', 'www.elsevier.com/journals/revista-europea-de-direccion-y-economia-de-la-empresa/1019-6838', 'www.elsevier.com/journals/revista-iberoamericana-de-automatica-e-informatica-industrial-riai/1697-7912', 'www.elsevier.com/journals/revista-iberoamericana-de-fisioterapia-y-kinesiologia/1138-6045', 'www.elsevier.com/journals/revista-iberoamericana-de-micologia/1130-1406', 'www.elsevier.com/journals/revista-internacional-de-acupuntura/1887-8369', 'www.elsevier.com/journals/revista-internacional-de-andrologia/1698-031x', 'www.elsevier.com/journals/revista-internacional-de-metodos-numericos-para-calculo-y-diseno-en-ingenieria/0213-1315', 'www.elsevier.com/journals/revista-medica-de-homeopatia/1888-8526', 'www.elsevier.com/journals/revista-medica-internacional-sobre-el-sindrome-de-down/1138-2074', 'www.elsevier.com/journals/revista-portuguesa-de-cardiologia/0870-2551', 'www.elsevier.com/journals/revista-portuguesa-de-cardiologia-english-edition/2174-2049', 'www.elsevier.com/journals/revista-portuguesa-de-endocrinologia-diabetes-e-metabolismo/1646-3439', 'www.elsevier.com/journals/revista-portuguesa-de-estomatologia-medicina-dentaria-e-cirugia-maxilofacial/1646-2890', 'www.elsevier.com/journals/revista-portuguesa-de-pneumologia/0873-2159', 'www.elsevier.com/journals/revista-portuguesa-de-pneumologia-english-edition/2173-5115', 'www.elsevier.com/journals/revista-portuguesa-de-saude-publica/0870-9025', 'www.elsevier.com/journals/revue-depidemiologie-et-de-sante-publique/0398-7620', 'www.elsevier.com/journals/revue-de-chirurgie-orthopedique-et-reparatrice-de-lappareil-moteur/0035-1040', 'www.elsevier.com/journals/revue-de-chirurgie-orthopedique-et-traumatologique/1877-0517', 'www.elsevier.com/journals/revue-de-linfirmiere/1293-8505', 'www.elsevier.com/journals/revue-de-micropaleontologie/0035-1598', 'www.elsevier.com/journals/revue-de-pneumologie-clinique/0761-8417', 'www.elsevier.com/journals/revue-de-sante-scolaire-et-universitaire/1879-3991', 'www.elsevier.com/journals/revue-de-stomatologie-et-de-chirurgie-maxillo-faciale/0035-1768', 'www.elsevier.com/journals/revue-des-maladies-respiratoires/0761-8425', 'www.elsevier.com/journals/revue-des-maladies-respiratoires-actualites/1877-1203', 'www.elsevier.com/journals/revue-du-cadre-de-sante/1776-0550', 'www.elsevier.com/journals/revue-du-podologue/1766-7313', 'www.elsevier.com/journals/revue-du-rhumatisme/1169-8330', 'www.elsevier.com/journals/revue-du-rhumatisme-monographies/1878-6227', 'www.elsevier.com/journals/revue-du-soignant-en-geriatrie/1760-2882', 'www.elsevier.com/journals/revue-du-soignant-en-sante-publique/1766-2389', 'www.elsevier.com/journals/revue-europeenne-de-psychologie-appliquee-european-review-of-applied-psychology/1162-9088', 'www.elsevier.com/journals/revue-francaise-dallergologie/1877-0320', 'www.elsevier.com/journals/revue-francaise-dallergologie-et-dimmunologie-clinique/0335-7457', 'www.elsevier.com/journals/revue-francophone-dorthoptie/1876-2204', 'www.elsevier.com/journals/revue-francophone-des-laboratoires/1773-035x', 'www.elsevier.com/journals/revue-neurologique/0035-3787', 'www.elsevier.com/journals/rheumatic-disease-clinics-of-north-america/0889-857x', 'www.elsevier.com/journals/rheumatology-news/1541-9800', 'www.elsevier.com/journals/rice-science/1672-6308', 'www.journals.elsevier.com/robotics-and-autonomous-systems/', 'www.journals.elsevier.com/robotics-and-computer-integrated-manufacturing/', 'www.journals.elsevier.com/russian-geology-and-geophysics/', 'www.journals.elsevier.com/russian-literature/', 'www.elsevier.com/journals/the-rose-sheet/1530-1222', 'www.elsevier.com/journals/the-rpm-report/2160-4665', 'www.journals.elsevier.com/journal-of-safety-research/', 'www.journals.elsevier.com/journal-of-saudi-chemical-society/', 'www.journals.elsevier.com/journal-of-school-psychology/', 'www.elsevier.com/journals/journal-of-science-and-medicine-in-sport/1440-2440', 'www.journals.elsevier.com/journal-of-sea-research/', 'www.journals.elsevier.com/journal-of-second-language-writing/', 'www.journals.elsevier.com/journal-of-shoulder-and-elbow-surgery/', 'www.journals.elsevier.com/journal-of-socio-economics/', 'www.journals.elsevier.com/journal-of-solid-state-chemistry/', 'www.journals.elsevier.com/journal-of-sound-and-vibration/', 'www.journals.elsevier.com/journal-of-south-american-earth-sciences/', 'www.journals.elsevier.com/journal-of-sport-and-health-science/', 'www.journals.elsevier.com/journal-of-statistical-planning-and-inference/', 'www.journals.elsevier.com/journal-of-stored-products-research/', 'www.journals.elsevier.com/journal-of-stroke-and-cerebrovascular-diseases/', 'www.journals.elsevier.com/journal-of-structural-biology/', 'www.journals.elsevier.com/journal-of-structural-geology/', 'www.journals.elsevier.com/journal-of-substance-abuse-treatment/', 'www.journals.elsevier.com/journal-of-surgical-education/', 'www.journals.elsevier.com/journal-of-surgical-research/', 'www.journals.elsevier.com/journal-of-symbolic-computation/', 'www.journals.elsevier.com/journal-of-systems-and-software/', 'www.journals.elsevier.com/journal-of-systems-architecture/', 'www.elsevier.com/journals/journal-of-systems-engineering-and-electronics/1004-4132', 'www.elsevier.com/journals/journal-of-the-saudi-heart-association/1016-7315', 'www.journals.elsevier.com/journal-of-the-saudi-society-for-agricultural-sciences/', 'www.elsevier.com/journals/journal-of-the-saudi-society-for-dermatology-and-dermatologic-surgery/2210-836x', 'www.journals.elsevier.com/safety-science/', 'www.elsevier.com/journals/sas-journal/1935-9810', 'www.journals.elsevier.com/saudi-journal-of-biological-sciences/', 'www.elsevier.com/journals/saudi-journal-of-ophthalmology/1319-4534', 'www.journals.elsevier.com/saudi-pharmaceutical-journal/', 'www.journals.elsevier.com/scandinavian-journal-of-management/', 'www.journals.elsevier.com/scandinavian-journal-of-pain/', 'www.journals.elsevier.com/schizophrenia-research/', 'www.journals.elsevier.com/science-and-justice/', 'www.elsevier.com/journals/science-and-sports/0765-1597', 'www.elsevier.com/journals/science-and-technology-of-advanced-materials/1468-6996', 'www.journals.elsevier.com/science-of-computer-programming/', 'www.elsevier.com/journals/science-of-computer-programming-with-theoretical-computer-science-combined-subscription/fs00-0183', 'www.journals.elsevier.com/science-of-the-total-environment/', 'www.journals.elsevier.com/scientia-horticulturae/', 'www.journals.elsevier.com/scripta-materialia/', 'www.elsevier.com/journals/sealing-technology/1350-4789', 'www.journals.elsevier.com/sedimentary-geology/', 'www.journals.elsevier.com/seizure-european-journal-of-epilepsy/', 'www.elsevier.com/journals/semergen-medicina-de-familia/1138-3593', 'www.elsevier.com/journals/seminarios-de-la-fundacion-espanola-de-reumatologia/1577-3566', 'www.journals.elsevier.com/seminars-in-arthritis-and-rheumatism/', 'www.journals.elsevier.com/seminars-in-arthroplasty/', 'www.journals.elsevier.com/seminars-in-cancer-biology/', 'www.journals.elsevier.com/seminars-in-cell-and-developmental-biology/', 'www.elsevier.com/journals/seminars-in-cerebrovascular-diseases-and-stroke/1528-9931', 'www.journals.elsevier.com/seminars-in-colon-and-rectal-surgery/', 'www.elsevier.com/journals/seminars-in-cutaneous-medicine-and-surgery/1085-5629', 'www.journals.elsevier.com/seminars-in-diagnostic-pathology/', 'www.journals.elsevier.com/seminars-in-fetal-and-neonatal-medicine/', 'www.journals.elsevier.com/seminars-in-hematology/', 'www.journals.elsevier.com/seminars-in-immunology/', 'www.journals.elsevier.com/seminars-in-nephrology/', 'www.journals.elsevier.com/seminars-in-nuclear-medicine/', 'www.journals.elsevier.com/seminars-in-oncology/', 'www.journals.elsevier.com/seminars-in-oncology-nursing/', 'www.journals.elsevier.com/seminars-in-orthodontics/', 'www.journals.elsevier.com/seminars-in-pediatric-neurology/', 'www.journals.elsevier.com/seminars-in-pediatric-surgery/', 'www.journals.elsevier.com/seminars-in-perinatology/', 'www.elsevier.com/journals/seminars-in-preventive-and-alternative-medicine/1556-4061', 'www.journals.elsevier.com/seminars-in-radiation-oncology/', 'www.journals.elsevier.com/seminars-in-roentgenology/', 'www.journals.elsevier.com/seminars-in-spine-surgery/', 'www.journals.elsevier.com/seminars-in-thoracic-and-cardiovascular-surgery/', 'www.journals.elsevier.com/seminars-in-thoracic-and-cardiovascular-surgery-pediatric-cardiac-surgery-annual/', 'www.journals.elsevier.com/seminars-in-ultrasound-ct-and-mri/', 'www.journals.elsevier.com/seminars-in-vascular-surgery/', 'www.journals.elsevier.com/sensors-and-actuators-a-physical/', 'www.journals.elsevier.com/sensors-and-actuators-b-chemical/', 'www.elsevier.com/journals/sensors-and-actuators-a-physical-with-b-chemical-combined-subscription/fs00-0066', 'www.journals.elsevier.com/separation-and-purification-technology/', 'www.journals.elsevier.com/serials-review/', 'www.elsevier.com/journals/sexologies/1158-1360', 'www.journals.elsevier.com/sexual-and-reproductive-healthcare/', 'www.elsevier.com/journals/sexuologie/0944-7105', 'www.journals.elsevier.com/signal-processing/', 'www.elsevier.com/journals/signal-processing-with-signal-processing-image-communication-combined-subscription/fs00-5575', 'www.elsevier.com/journals/signal-processing-signal-processing-image-communication-with-speech-communication-combined-subscription/fs00-0325', 'www.journals.elsevier.com/signal-processing-image-communication/', 'www.journals.elsevier.com/simulation-modelling-practice-and-theory/', 'www.elsevier.com/journals/singapore-dental-journal/0377-5291', 'www.elsevier.com/journals/skin-and-allergy-news/0037-6337', 'www.elsevier.com/journals/sleep-clinics-continuing-medical-education-program/1559-7806', 'www.journals.elsevier.com/sleep-medicine/', 'www.elsevier.com/journals/sleep-medicine-clinics/1556-407x', 'www.journals.elsevier.com/sleep-medicine-reviews/', 'www.journals.elsevier.com/small-ruminant-research/', 'www.journals.elsevier.com/social-networks/', 'www.journals.elsevier.com/social-science-and-medicine/', 'www.journals.elsevier.com/social-science-research/', 'www.journals.elsevier.com/socio-economic-planning-sciences/', 'www.elsevier.com/journals/sociologie-du-travail/0038-0296', 'www.journals.elsevier.com/soil-and-tillage-research/', 'www.journals.elsevier.com/soil-biology-and-biochemistry/', 'www.journals.elsevier.com/soil-dynamics-and-earthquake-engineering/', 'www.journals.elsevier.com/soils-and-foundations/', 'www.elsevier.com/journals/soins/0038-0814', 'www.elsevier.com/journals/soins-aides-soignantes/1770-9857', 'www.elsevier.com/journals/soins-cadres-de-sante/0183-2980', 'www.elsevier.com/journals/soins-gerontologie/1268-6034', 'www.elsevier.com/journals/soins-pediatrie-puericulture/1259-4792', 'www.elsevier.com/journals/soins-psychiatrie/0241-6972', 'www.journals.elsevier.com/solar-energy/', 'www.journals.elsevier.com/solar-energy-materials-and-solar-cells/', 'www.journals.elsevier.com/solid-state-communications/', 'www.journals.elsevier.com/solid-state-ionics/', 'www.journals.elsevier.com/solid-state-nuclear-magnetic-resonance/', 'www.journals.elsevier.com/solid-state-sciences/', 'www.journals.elsevier.com/solid-state-electronics/', 'www.journals.elsevier.com/south-african-journal-of-botany/', 'www.journals.elsevier.com/space-policy/', 'www.journals.elsevier.com/space-research-today/', 'www.journals.elsevier.com/spatial-and-spatio-temporal-epidemiology/', 'www.journals.elsevier.com/spatial-statistics/', 'www.journals.elsevier.com/spectrochimica-acta-part-a-molecular-and-biomolecular-spectroscopy/', 'www.journals.elsevier.com/spectrochimica-acta-part-b-atomic-spectroscopy/', 'www.journals.elsevier.com/speech-communication/', 'www.journals.elsevier.com/spine-deformity/', 'www.journals.elsevier.com/sport-management-review/', 'www.elsevier.com/journals/sport-orthopadie-sport-traumatologie/0949-328x', 'www.elsevier.com/journals/start-up/1943-7358', 'www.journals.elsevier.com/statistical-methodology/', 'www.journals.elsevier.com/statistics-and-probability-letters/', 'www.journals.elsevier.com/stem-cell-research/', 'www.journals.elsevier.com/steroids/', 'www.journals.elsevier.com/stochastic-processes-and-their-applications/', 'www.elsevier.com/journals/stochastic-processes-and-their-applications-alternative-subscription/1879-209x', 'www.journals.elsevier.com/structural-change-and-economic-dynamics/', 'www.journals.elsevier.com/structural-safety/', 'www.elsevier.com/journals/structure/0969-2126', 'www.elsevier.com/journals/studies-in-communication-sciences/1424-4896', 'www.journals.elsevier.com/studies-in-educational-evaluation/', 'www.journals.elsevier.com/studies-in-history-and-philosophy-of-science-part-a/', 'www.journals.elsevier.com/studies-in-history-and-philosophy-of-science-part-b-studies-in-history-and-philosophy-of-modern-physics/', 'www.journals.elsevier.com/studies-in-history-and-philosophy-of-science-part-c-studies-in-history-and-philosophy-of-biological-and-biomedical-sciences/', 'www.elsevier.com/journals/studies-in-history-and-philosophy-of-science-parts-a-b-and-c-combined-subscription/fs00-0401', 'www.journals.elsevier.com/superlattices-and-microstructures/', 'www.journals.elsevier.com/surface-and-coatings-technology/', 'www.journals.elsevier.com/surface-science-including-surface-science-letters/', 'www.elsevier.com/journals/surface-science-full-set/fs00-0171', 'www.journals.elsevier.com/surface-science-reports/', 'www.journals.elsevier.com/surgery/', 'www.elsevier.com/journals/surgery-oxford/0263-9319', 'www.elsevier.com/journals/surgery-section-9-embase/0014-4134', 'www.journals.elsevier.com/surgery-for-obesity-and-related-diseases/', 'www.elsevier.com/journals/surgical-clinics-of-north-america/0039-6109', 'www.journals.elsevier.com/surgical-oncology/', 'www.elsevier.com/journals/surgical-oncology-clinics-of-north-america/1055-3207', 'www.elsevier.com/journals/surgical-pathology-clinics/1875-9181', 'www.journals.elsevier.com/survey-of-ophthalmology/', 'www.journals.elsevier.com/surveys-in-operations-research-and-management-science/', 'www.journals.elsevier.com/sustainability-of-water-quality-and-ecology/', 'www.journals.elsevier.com/sustainable-cities-and-society/', 'www.journals.elsevier.com/sustainable-computing/', 'www.journals.elsevier.com/sustainable-energy-technologies-and-assessments/', 'www.journals.elsevier.com/swarm-and-evolutionary-computation/', 'www.elsevier.com/journals/synergy/2213-7130', 'www.journals.elsevier.com/synthetic-metals/', 'www.journals.elsevier.com/system/', 'www.elsevier.com/journals/systematic-and-applied-microbiology/0723-2020', 'www.journals.elsevier.com/systems-and-control-letters/', 'www.elsevier.com/journals/systems-engineering-theory-and-practice/1874-8651', 'www.journals.elsevier.com/systems-engineering-procedia/', 'www.journals.elsevier.com/the-journal-of-social-studies-research/', 'www.journals.elsevier.com/the-journal-of-steroid-biochemistry-and-molecular-biology/', 'www.journals.elsevier.com/the-journal-of-strategic-information-systems/', 'www.journals.elsevier.com/the-journal-of-supercritical-fluids/', 'www.elsevier.com/journals/the-journal-of-supportive-oncology/1544-6794', 'www.elsevier.com/journals/the-saudi-dental-journal/1013-9052', 'www.elsevier.com/journals/the-silver-sheet/1068-5324', 'www.journals.elsevier.com/the-social-science-journal/', 'www.elsevier.com/journals/the-spanish-review-of-financial-economics/2173-1268', 'www.journals.elsevier.com/the-spine-journal/', 'www.journals.elsevier.com/the-surgeon/', 'www.journals.elsevier.com/journal-of-taibah-university-for-science/', 'www.elsevier.com/journals/journal-of-taibah-university-medical-sciences/1658-3612', 'www.journals.elsevier.com/journal-of-terramechanics/', 'www.journals.elsevier.com/journal-of-the-taiwan-institute-of-chemical-engineers/', 'www.journals.elsevier.com/journal-of-theoretical-biology/', 'www.journals.elsevier.com/journal-of-thermal-biology/', 'www.journals.elsevier.com/journal-of-thoracic-and-cardiovascular-surgery/', 'www.journals.elsevier.com/journal-of-tissue-viability/', 'www.elsevier.com/journals/journal-of-trace-elements-in-medicine-and-biology/0946-672x', 'www.elsevier.com/journals/journal-of-traditional-chinese-medicine/0255-2922', 'www.journals.elsevier.com/journal-of-transport-geography/', 'www.elsevier.com/journals/journal-of-transportation-systems-engineering-and-information-technology/1570-6672', 'www.elsevier.com/journals/tekhne-review-of-applied-management-studies/1645-9911', 'www.elsevier.com/journals/taiwan-journal-of-ophthalmology/2211-5056', 'www.elsevier.com/journals/taiwanese-journal-of-obstetrics-and-gynecology/1028-4559', 'www.journals.elsevier.com/talanta/', 'www.journals.elsevier.com/teaching-and-learning-in-nursing/', 'www.journals.elsevier.com/teaching-and-teacher-education/', 'www.journals.elsevier.com/techniques-in-gastrointestinal-endoscopy/', 'www.journals.elsevier.com/techniques-in-regional-anesthesia-and-pain-management/', 'www.journals.elsevier.com/techniques-in-vascular-and-interventional-radiology/', 'www.journals.elsevier.com/technological-forecasting-and-social-change/', 'www.journals.elsevier.com/technology-in-society/', 'www.journals.elsevier.com/technovation/', 'www.journals.elsevier.com/tectonophysics/', 'www.journals.elsevier.com/telecommunications-policy/', 'www.journals.elsevier.com/telematics-and-informatics/', 'www.journals.elsevier.com/tetrahedron/', 'www.elsevier.com/journals/tetrahedron-including-tetrahedron-asymmetry/fs00-0232', 'www.elsevier.com/journals/tetrahedron-a-combined-subscription-to-five-tetrahedron-journals/fs00-0876', 'www.journals.elsevier.com/tetrahedron-letters/', 'www.journals.elsevier.com/tetrahedron-asymmetry/', 'www.elsevier.com/journals/the-tan-sheet/1530-1206', 'www.journals.elsevier.com/theoretical-and-applied-fracture-mechanics/', 'www.journals.elsevier.com/theoretical-computer-science/', 'www.journals.elsevier.com/theoretical-population-biology/', 'www.elsevier.com/journals/theory-in-biosciences-theorie-in-den-biowissenschaften/1431-7613', 'www.journals.elsevier.com/theriogenology/', 'www.journals.elsevier.com/thermochimica-acta/', 'www.journals.elsevier.com/thin-solid-films/', 'www.elsevier.com/journals/thin-solid-films-with-organic-electronics-combined-subscription/fs00-06056', 'www.journals.elsevier.com/thin-walled-structures/', 'www.journals.elsevier.com/thinking-skills-and-creativity/', 'www.elsevier.com/journals/thoracic-surgery-clinics/1547-4127', 'www.journals.elsevier.com/thrombosis-research/', 'www.elsevier.com/journals/ticks-and-tick-borne-diseases/1877-959x', 'www.journals.elsevier.com/tissue-and-cell/', 'www.journals.elsevier.com/topics-in-companion-animal-medicine/', 'www.journals.elsevier.com/topology/', 'www.journals.elsevier.com/topology-and-its-applications/', 'www.journals.elsevier.com/tourism-management/', 'www.journals.elsevier.com/tourism-management-perspectives/', 'www.journals.elsevier.com/toxicology/', 'www.elsevier.com/journals/toxicology-section-52-embase/0167-8353', 'www.journals.elsevier.com/toxicology-and-applied-pharmacology/', 'www.journals.elsevier.com/toxicology-in-vitro/', 'www.journals.elsevier.com/toxicology-letters/', 'www.journals.elsevier.com/toxicon/', 'www.elsevier.com/journals/transactions-of-nonferrous-metals-society-of-china/1003-6326', 'www.journals.elsevier.com/transfusion-and-apheresis-science/', 'www.elsevier.com/journals/transfusion-clinique-et-biologique/1246-7820', 'www.journals.elsevier.com/transfusion-medicine-reviews/', 'www.journals.elsevier.com/translational-proteomics/', 'www.journals.elsevier.com/translational-research-the-journal-of-laboratory-and-clinical-medicine/', 'www.journals.elsevier.com/transplant-immunology/', 'www.journals.elsevier.com/transplantation-proceedings/', 'www.journals.elsevier.com/transplantation-reviews/', 'www.journals.elsevier.com/transport-policy/', 'www.journals.elsevier.com/transportation-research-part-a-policy-and-practice/', 'www.journals.elsevier.com/transportation-research-part-b-methodological/', 'www.journals.elsevier.com/transportation-research-part-c-emerging-technologies/', 'www.journals.elsevier.com/transportation-research-part-d-transport-and-environment/', 'www.journals.elsevier.com/transportation-research-part-e-logistics-and-transportation-review/', 'www.journals.elsevier.com/transportation-research-part-f-traffic-psychology-and-behaviour/', 'www.elsevier.com/journals/transportation-research-parts-a-and-b-combined-subscription/fs00-0135', 'www.elsevier.com/journals/transportation-research-parts-a-b-and-c-combined-subscription/fs00-0316', 'www.elsevier.com/journals/transportation-research-parts-a-b-c-and-d-combined-subscription/fs00-1008', 'www.elsevier.com/journals/transportation-research-parts-a-b-c-d-and-e-combined-subscription/fs00-1021', 'www.elsevier.com/journals/transportation-research-parts-a-b-c-d-e-f-combined-subscription/fs00-1035', 'www.elsevier.com/journals/trastornos-adictivos/1575-0973', 'www.journals.elsevier.com/travel-medicine-and-infectious-disease/', 'www.journals.elsevier.com/trends-in-anaesthesia-and-critical-care/', 'www.journals.elsevier.com/trends-in-analytical-chemistry/', 'www.journals.elsevier.com/trends-in-analytical-chemistry-library-edition/', 'www.elsevier.com/journals/trends-in-biochemical-sciences/0968-0004', 'www.elsevier.com/journals/trends-in-biotechnology/0167-7799', 'www.journals.elsevier.com/trends-in-cardiovascular-medicine/', 'www.elsevier.com/journals/trends-in-cell-biology/0962-8924', 'www.elsevier.com/journals/trends-in-cognitive-sciences/1364-6613', 'www.elsevier.com/journals/trends-in-ecology-and-evolution/0169-5347', 'www.elsevier.com/journals/trends-in-endocrinology-and-metabolism/1043-2760', 'www.journals.elsevier.com/trends-in-food-science-and-technology/', 'www.elsevier.com/journals/trends-in-genetics/0168-9525', 'www.elsevier.com/journals/trends-in-immunology/1471-4906', 'www.elsevier.com/journals/trends-in-microbiology/0966-842x', 'www.elsevier.com/journals/trends-in-molecular-medicine/1471-4914', 'www.elsevier.com/journals/trends-in-neuroscience-and-education/2211-9493', 'www.elsevier.com/journals/trends-in-neurosciences/0166-2236', 'www.elsevier.com/journals/trends-in-parasitology/1471-4922', 'www.elsevier.com/journals/trends-in-pharmacological-sciences/0165-6147', 'www.elsevier.com/journals/trends-in-plant-science/1360-1385', 'www.journals.elsevier.com/trials-in-vaccinology/', 'www.journals.elsevier.com/tribology-international/', 'www.elsevier.com/journals/tsinghua-science-and-technology/1007-0214', 'www.journals.elsevier.com/tuberculosis/', 'www.journals.elsevier.com/tunnelling-and-underground-space-technology/', 'www.elsevier.com/journals/tzu-chi-medical-journal/1016-3190', 'www.journals.elsevier.com/journal-of-unconventional-oil-and-gas-resources/', 'www.elsevier.com/journals/journal-of-university-of-science-and-technology-beijing/1005-8850', 'www.journals.elsevier.com/journal-of-urban-economics/', 'www.journals.elsevier.com/the-journal-of-urology/', 'www.journals.elsevier.com/ultramicroscopy/', 'www.journals.elsevier.com/ultrasonics/', 'www.journals.elsevier.com/ultrasonics-sonochemistry/', 'www.elsevier.com/journals/ultrasonics-with-ultrasonics-sonochemistry-combined-subscription/fs00-0549', 'www.elsevier.com/journals/ultrasound-clinics/1556-858x', 'www.journals.elsevier.com/ultrasound-in-medicine-and-biology/', 'www.elsevier.com/journals/umk-procedia/2214-0115', 'www.elsevier.com/journals/update/0301-5718', 'www.journals.elsevier.com/urban-climate/', 'www.elsevier.com/journals/urban-forestry-and-urban-greening/1618-8667', 'www.elsevier.com/journals/urologic-clinics-of-north-america/0094-0143', 'www.journals.elsevier.com/urologic-oncology-seminars-and-original-investigations/', 'www.elsevier.com/journals/urological-science/1879-5226', 'www.elsevier.com/journals/urology-and-nephrology-section-28-embase/0014-4320', 'www.journals.elsevier.com/urology/', 'www.journals.elsevier.com/utilities-policy/', 'www.journals.elsevier.com/journal-of-vascular-nursing/', 'www.journals.elsevier.com/journal-of-vascular-surgery/', 'www.elsevier.com/journals/journal-of-vascular-surgery-venous-and-lymphatic-disorders/2213-333x', 'www.journals.elsevier.com/journal-of-veterinary-behavior-clinical-applications-and-research/', 'www.journals.elsevier.com/journal-of-veterinary-cardiology/', 'www.journals.elsevier.com/journal-of-virological-methods/', 'www.elsevier.com/journals/journal-of-virological-methods-with-journal-of-clinical-virology-combined-subscription/fs00-5065', 'www.elsevier.com/journals/journal-of-visceral-surgery/1878-7886', 'www.journals.elsevier.com/journal-of-visual-communication-and-image-representation/', 'www.journals.elsevier.com/journal-of-visual-languages-and-computing/', 'www.journals.elsevier.com/journal-of-vocational-behavior/', 'www.journals.elsevier.com/journal-of-voice/', 'www.journals.elsevier.com/journal-of-volcanology-and-geothermal-research/', 'www.journals.elsevier.com/the-veterinary-journal/', 'www.journals.elsevier.com/vaccine/', 'www.elsevier.com/journals/vacunas/1576-9887', 'www.journals.elsevier.com/vacuum/', 'www.journals.elsevier.com/value-in-health/', 'www.journals.elsevier.com/value-in-health-regional-issues/', 'www.journals.elsevier.com/vascular-pharmacology/', 'www.elsevier.com/journals/veterinary-clinics-of-north-america-equine-practice/0749-0739', 'www.elsevier.com/journals/veterinary-clinics-of-north-america-exotic-animal-practice/1094-9194', 'www.elsevier.com/journals/veterinary-clinics-of-north-america-food-animal-practice/0749-0720', 'www.elsevier.com/journals/veterinary-clinics-of-north-america-small-animal-practice/0195-5616', 'www.journals.elsevier.com/veterinary-immunology-and-immunopathology/', 'www.journals.elsevier.com/veterinary-microbiology/', 'www.journals.elsevier.com/veterinary-parasitology/', 'www.journals.elsevier.com/vibrational-spectroscopy/', 'www.elsevier.com/journals/video-journal-and-encyclopedia-of-gi-endoscopy/2212-0971', 'www.journals.elsevier.com/virology/', 'www.journals.elsevier.com/virus-research/', 'www.journals.elsevier.com/vision-research/', 'www.elsevier.com/journals/vocation-sage-femme/1634-0760', 'www.journals.elsevier.com/journal-of-the-world-federation-of-orthodontists/', 'www.journals.elsevier.com/journal-of-web-semantics/', 'www.journals.elsevier.com/journal-of-wind-engineering-and-industrial-aerodynamics/', 'www.journals.elsevier.com/journal-of-world-business/', 'www.journals.elsevier.com/waste-management/', 'www.journals.elsevier.com/water-research/', 'www.journals.elsevier.com/water-resources-and-economics/', 'www.journals.elsevier.com/water-resources-and-industry/', 'www.journals.elsevier.com/water-resources-and-rural-development/', 'www.journals.elsevier.com/wave-motion/', 'www.journals.elsevier.com/wear/', 'www.journals.elsevier.com/weather-and-climate-extremes/', 'www.journals.elsevier.com/wilderness-and-environmental-medicine/', 'www.elsevier.com/journals/wildland-firefighter/1086-3982', 'www.journals.elsevier.com/wine-economics-and-policy/', 'www.elsevier.com/journals/women-and-birth/1871-5192', 'www.journals.elsevier.com/womens-health-issues/', 'www.elsevier.com/journals/womens-health-medicine/1744-1870', 'www.journals.elsevier.com/womens-studies-international-forum/', 'www.journals.elsevier.com/world-development/', 'www.elsevier.com/journals/world-journal-of-acupuncture-moxibustion/1003-5257', 'www.journals.elsevier.com/world-neurosurgery/', 'www.journals.elsevier.com/world-patent-information/', 'www.elsevier.com/journals/world-pumps/0262-1762', 'www.elsevier.com/journals/wound-medicine/2213-9095', 'www.elsevier.com/journals/year-book-of-anesthesiology-and-pain-management/1073-5437', 'www.elsevier.com/journals/year-book-of-cardiology/0145-4145', 'www.elsevier.com/journals/year-book-of-critical-care-medicine/0734-3299', 'www.elsevier.com/journals/year-book-of-dentistry/0084-3717', 'www.elsevier.com/journals/year-book-of-dermatology-and-dermatologic-surgery/0093-3619', 'www.elsevier.com/journals/year-book-of-diagnostic-radiology/0098-1672', 'www.elsevier.com/journals/year-book-of-emergency-medicine/0271-7964', 'www.elsevier.com/journals/year-book-of-endocrinology/0084-3741', 'www.elsevier.com/journals/year-book-of-family-practice/0147-1996', 'www.elsevier.com/journals/year-book-of-gastroenterology/0739-5930', 'www.elsevier.com/journals/year-book-of-hand-and-upper-limb-surgery/1551-7977', 'www.elsevier.com/journals/year-book-of-medicine/0084-3873', 'www.elsevier.com/journals/year-book-of-neonatal-and-perinatal-medicine/8756-5005', 'www.elsevier.com/journals/year-book-of-neurology-and-neurosurgery/0513-5117', 'www.elsevier.com/journals/year-book-of-nuclear-medicine/0084-3903', 'www.elsevier.com/journals/year-book-of-obstetrics-gynecology-and-womens-health/1090-798x', 'www.elsevier.com/journals/year-book-of-oncology/1040-1741', 'www.elsevier.com/journals/year-book-of-ophthalmology/0084-392x', 'www.elsevier.com/journals/year-book-of-orthopedics/0276-1092', 'www.elsevier.com/journals/year-book-of-otolaryngology-head-and-neck-surgery/1041-892x', 'www.elsevier.com/journals/year-book-of-pathology-and-laboratory-medicine/1077-9108', 'www.elsevier.com/journals/year-book-of-pediatrics/0084-3954', 'www.elsevier.com/journals/year-book-of-plastic-and-aesthetic-surgery/1535-1513', 'www.elsevier.com/journals/year-book-of-psychiatry-and-applied-mental-health/0084-3970', 'www.elsevier.com/journals/year-book-of-pulmonary-disease/8756-3452', 'www.elsevier.com/journals/year-book-of-sports-medicine/0162-0908', 'www.elsevier.com/journals/year-book-of-surgery/0090-3671', 'www.elsevier.com/journals/year-book-of-urology/0084-4071', 'www.elsevier.com/journals/year-book-of-vascular-surgery/0749-4041', 'www.elsevier.com/journals/zeitschrift-fur-evidenz-fortbildung-und-qualitat-im-gesundheitswesen/1865-9217', 'www.elsevier.com/journals/zeitschrift-fur-medizinische-physik/0939-3889', 'www.elsevier.com/journals/zoologischer-anzeiger/0044-5231', 'www.elsevier.com/journals/zoology/0944-2006'] |
# Expected Payment's direction
class DirectionTypes:
CREDIT = 'credit'
DEBIT = 'debit'
# PaymentOrders
class PaymentOrderTypes:
ACH = 'ach'
WIRE = 'wire'
CHECk = 'check'
BOOK = 'book'
rtp = 'rtp'
# account types
class AccountTypes:
CHECKING = 'checking'
SAVINGS = 'savings'
OTHER = 'other'
class AccountNumberType:
IBAN = 'iban'
CLABE = 'clabe'
OTHER = 'other'
class RoutingNumberTypes:
# routing number types
ABA = 'aba'
SWIFT = 'swift'
CPA = 'ca_cpa'
BSB = 'au_bsb'
GB = 'gb_sort_code'
IFSC = 'in_ifsc'
| class Directiontypes:
credit = 'credit'
debit = 'debit'
class Paymentordertypes:
ach = 'ach'
wire = 'wire'
che_ck = 'check'
book = 'book'
rtp = 'rtp'
class Accounttypes:
checking = 'checking'
savings = 'savings'
other = 'other'
class Accountnumbertype:
iban = 'iban'
clabe = 'clabe'
other = 'other'
class Routingnumbertypes:
aba = 'aba'
swift = 'swift'
cpa = 'ca_cpa'
bsb = 'au_bsb'
gb = 'gb_sort_code'
ifsc = 'in_ifsc' |
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
class FICDataVault:
def __init__(self):
# Common Data
self.uid = int() # Used to find the object.
self.repos_container = dict()
# Commit Specific Data
# Common Git and HG values
self.commit_type = None # Can be "git" or "hg"
self.commit_number = None
self.commit_sha = None
self.commit_url = None
self.commit_author = None
self.commit_author_email = None
self.commit_message = None
self.commit_date = None
self.commit_files_changed = None
self.repo_name = None
self.team_name = None
self.last_check = None
self.commit_reviewer = None
# HG Specific values
self.changeset_index = None
self.changeset = None
self.changeset_lander = None
self.hg_commits_list = None
self.changesets_json = None
self.constructed_dict = {}
# GIT Specific values
self.folders_to_check = []
self.repo_type = None
self.local_version = None
self.release_version = None
self.build_puppet_version = None
self.list_of_commits = {}
self.keyword = None
| class Ficdatavault:
def __init__(self):
self.uid = int()
self.repos_container = dict()
self.commit_type = None
self.commit_number = None
self.commit_sha = None
self.commit_url = None
self.commit_author = None
self.commit_author_email = None
self.commit_message = None
self.commit_date = None
self.commit_files_changed = None
self.repo_name = None
self.team_name = None
self.last_check = None
self.commit_reviewer = None
self.changeset_index = None
self.changeset = None
self.changeset_lander = None
self.hg_commits_list = None
self.changesets_json = None
self.constructed_dict = {}
self.folders_to_check = []
self.repo_type = None
self.local_version = None
self.release_version = None
self.build_puppet_version = None
self.list_of_commits = {}
self.keyword = None |
#
# PySNMP MIB module IANA-RTPROTO-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/IANA-RTPROTO-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 17:02:20 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")
ConstraintsIntersection, ValueRangeConstraint, SingleValueConstraint, ConstraintsUnion, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ValueRangeConstraint", "SingleValueConstraint", "ConstraintsUnion", "ValueSizeConstraint")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
Counter32, IpAddress, ModuleIdentity, Gauge32, Bits, Unsigned32, iso, NotificationType, ObjectIdentity, MibIdentifier, TimeTicks, Counter64, Integer32, mib_2, MibScalar, MibTable, MibTableRow, MibTableColumn = mibBuilder.importSymbols("SNMPv2-SMI", "Counter32", "IpAddress", "ModuleIdentity", "Gauge32", "Bits", "Unsigned32", "iso", "NotificationType", "ObjectIdentity", "MibIdentifier", "TimeTicks", "Counter64", "Integer32", "mib-2", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
ianaRtProtoMIB = ModuleIdentity((1, 3, 6, 1, 2, 1, 84))
ianaRtProtoMIB.setRevisions(('2016-04-25 00:00', '2016-04-06 00:00', '2012-08-30 00:00', '2011-07-22 00:00', '2000-09-26 00:00',))
if mibBuilder.loadTexts: ianaRtProtoMIB.setLastUpdated('201604250000Z')
if mibBuilder.loadTexts: ianaRtProtoMIB.setOrganization('IANA')
class IANAipRouteProtocol(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20))
namedValues = NamedValues(("other", 1), ("local", 2), ("netmgmt", 3), ("icmp", 4), ("egp", 5), ("ggp", 6), ("hello", 7), ("rip", 8), ("isIs", 9), ("esIs", 10), ("ciscoIgrp", 11), ("bbnSpfIgp", 12), ("ospf", 13), ("bgp", 14), ("idpr", 15), ("ciscoEigrp", 16), ("dvmrp", 17), ("rpl", 18), ("dhcp", 19), ("ttdp", 20))
class IANAipMRouteProtocol(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))
namedValues = NamedValues(("other", 1), ("local", 2), ("netmgmt", 3), ("dvmrp", 4), ("mospf", 5), ("pimSparseDense", 6), ("cbt", 7), ("pimSparseMode", 8), ("pimDenseMode", 9), ("igmpOnly", 10), ("bgmp", 11), ("msdp", 12))
mibBuilder.exportSymbols("IANA-RTPROTO-MIB", IANAipRouteProtocol=IANAipRouteProtocol, ianaRtProtoMIB=ianaRtProtoMIB, IANAipMRouteProtocol=IANAipMRouteProtocol, PYSNMP_MODULE_ID=ianaRtProtoMIB)
| (object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_intersection, value_range_constraint, single_value_constraint, constraints_union, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ValueRangeConstraint', 'SingleValueConstraint', 'ConstraintsUnion', 'ValueSizeConstraint')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(counter32, ip_address, module_identity, gauge32, bits, unsigned32, iso, notification_type, object_identity, mib_identifier, time_ticks, counter64, integer32, mib_2, mib_scalar, mib_table, mib_table_row, mib_table_column) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter32', 'IpAddress', 'ModuleIdentity', 'Gauge32', 'Bits', 'Unsigned32', 'iso', 'NotificationType', 'ObjectIdentity', 'MibIdentifier', 'TimeTicks', 'Counter64', 'Integer32', 'mib-2', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
iana_rt_proto_mib = module_identity((1, 3, 6, 1, 2, 1, 84))
ianaRtProtoMIB.setRevisions(('2016-04-25 00:00', '2016-04-06 00:00', '2012-08-30 00:00', '2011-07-22 00:00', '2000-09-26 00:00'))
if mibBuilder.loadTexts:
ianaRtProtoMIB.setLastUpdated('201604250000Z')
if mibBuilder.loadTexts:
ianaRtProtoMIB.setOrganization('IANA')
class Ianaiprouteprotocol(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20))
named_values = named_values(('other', 1), ('local', 2), ('netmgmt', 3), ('icmp', 4), ('egp', 5), ('ggp', 6), ('hello', 7), ('rip', 8), ('isIs', 9), ('esIs', 10), ('ciscoIgrp', 11), ('bbnSpfIgp', 12), ('ospf', 13), ('bgp', 14), ('idpr', 15), ('ciscoEigrp', 16), ('dvmrp', 17), ('rpl', 18), ('dhcp', 19), ('ttdp', 20))
class Ianaipmrouteprotocol(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))
named_values = named_values(('other', 1), ('local', 2), ('netmgmt', 3), ('dvmrp', 4), ('mospf', 5), ('pimSparseDense', 6), ('cbt', 7), ('pimSparseMode', 8), ('pimDenseMode', 9), ('igmpOnly', 10), ('bgmp', 11), ('msdp', 12))
mibBuilder.exportSymbols('IANA-RTPROTO-MIB', IANAipRouteProtocol=IANAipRouteProtocol, ianaRtProtoMIB=ianaRtProtoMIB, IANAipMRouteProtocol=IANAipMRouteProtocol, PYSNMP_MODULE_ID=ianaRtProtoMIB) |
expected_output = {
"vrf": {
"default": {
"address_family": {
"ipv4": {
"routes": {
"0.0.0.0/0": {
"candidate_default": True,
"active": True,
"route": "0.0.0.0/0",
"source_protocol_codes": "S",
"source_protocol": "static",
"metric": 0,
"route_preference": 1,
"next_hop": {
"next_hop_list": {
1: {
"index": 1,
"next_hop": "192.2.0.1",
"outgoing_interface_name": "Outside-Port-Channel"
}
}
}
},
"1.1.1.0/24": {
"candidate_default": False,
"active": True,
"date": "2d19h",
"route": "1.1.1.0/24",
"source_protocol_codes": "B",
"source_protocol": "bgp",
"metric": 0,
"route_preference": 20,
"next_hop": {
"next_hop_list": {
1: {
"index": 1,
"next_hop": "10.98.126.1"
}
}
}
},
"4.33.104.119/32": {
"candidate_default": False,
"active": True,
"date": "2d19h",
"route": "4.33.104.119/32",
"source_protocol_codes": "B",
"source_protocol": "bgp",
"metric": 0,
"route_preference": 20,
"next_hop": {
"next_hop_list": {
1: {
"index": 1,
"next_hop": "10.98.126.1"
}
}
}
},
},
"tunneled_routes": {
"0.0.0.0/0": {
"candidate_default": False,
"active": True,
"route": "0.0.0.0/0",
"source_protocol_codes": "S",
"source_protocol": "static",
"metric": 0,
"route_preference": 255,
"next_hop": {
"next_hop_list": {
1: {
"index": 1,
"next_hop": "10.98.126.1",
"outgoing_interface_name": "Inside-Port-Channel"
}
}
}
}
}
}
}
}
}
} | expected_output = {'vrf': {'default': {'address_family': {'ipv4': {'routes': {'0.0.0.0/0': {'candidate_default': True, 'active': True, 'route': '0.0.0.0/0', 'source_protocol_codes': 'S', 'source_protocol': 'static', 'metric': 0, 'route_preference': 1, 'next_hop': {'next_hop_list': {1: {'index': 1, 'next_hop': '192.2.0.1', 'outgoing_interface_name': 'Outside-Port-Channel'}}}}, '1.1.1.0/24': {'candidate_default': False, 'active': True, 'date': '2d19h', 'route': '1.1.1.0/24', 'source_protocol_codes': 'B', 'source_protocol': 'bgp', 'metric': 0, 'route_preference': 20, 'next_hop': {'next_hop_list': {1: {'index': 1, 'next_hop': '10.98.126.1'}}}}, '4.33.104.119/32': {'candidate_default': False, 'active': True, 'date': '2d19h', 'route': '4.33.104.119/32', 'source_protocol_codes': 'B', 'source_protocol': 'bgp', 'metric': 0, 'route_preference': 20, 'next_hop': {'next_hop_list': {1: {'index': 1, 'next_hop': '10.98.126.1'}}}}}, 'tunneled_routes': {'0.0.0.0/0': {'candidate_default': False, 'active': True, 'route': '0.0.0.0/0', 'source_protocol_codes': 'S', 'source_protocol': 'static', 'metric': 0, 'route_preference': 255, 'next_hop': {'next_hop_list': {1: {'index': 1, 'next_hop': '10.98.126.1', 'outgoing_interface_name': 'Inside-Port-Channel'}}}}}}}}}} |
class PyLarkError(Exception):
def __init__(self, scope: str, func: str, code: int, msg: str):
super().__init__(
f"pylark error, scope={scope}, func={func}, code={code}, msg={msg}"
)
self.scope = scope
self.func = func
self.code = code
self.msg = msg
| class Pylarkerror(Exception):
def __init__(self, scope: str, func: str, code: int, msg: str):
super().__init__(f'pylark error, scope={scope}, func={func}, code={code}, msg={msg}')
self.scope = scope
self.func = func
self.code = code
self.msg = msg |
budget = float(input())
needed_funds = 0
product = input()
counter = 0
total_price = 0
is_budget_over = False
while product != 'Stop':
counter += 1
product_price = float(input())
if counter % 3 == 0:
product_price = product_price / 2
if budget < product_price:
is_budget_over = True
break
total_price += product_price
budget -= product_price
product = input()
needed_funds = abs(budget - product_price)
if is_budget_over:
print(f"You don't have enough money!")
print(f"You need {needed_funds:.2f} leva!")
else:
print(f"You bought {counter} products for {total_price:.2f} leva.")
| budget = float(input())
needed_funds = 0
product = input()
counter = 0
total_price = 0
is_budget_over = False
while product != 'Stop':
counter += 1
product_price = float(input())
if counter % 3 == 0:
product_price = product_price / 2
if budget < product_price:
is_budget_over = True
break
total_price += product_price
budget -= product_price
product = input()
needed_funds = abs(budget - product_price)
if is_budget_over:
print(f"You don't have enough money!")
print(f'You need {needed_funds:.2f} leva!')
else:
print(f'You bought {counter} products for {total_price:.2f} leva.') |
def perfect_number(num):
sum_divisors = 0
for i in range(1, num):
if i > 0:
if num % i == 0:
sum_divisors += i
if sum_divisors == num:
return 'We have a perfect number!'
else:
return 'It\'s not so perfect.'
number = int(input())
print(perfect_number(number)) | def perfect_number(num):
sum_divisors = 0
for i in range(1, num):
if i > 0:
if num % i == 0:
sum_divisors += i
if sum_divisors == num:
return 'We have a perfect number!'
else:
return "It's not so perfect."
number = int(input())
print(perfect_number(number)) |
class Solution:
def defangIPaddr(self, address: str) -> str:
return "[.]".join((address.split(".")))
slu = Solution()
print(slu.defangIPaddr("1.1.1.1")) | class Solution:
def defang_i_paddr(self, address: str) -> str:
return '[.]'.join(address.split('.'))
slu = solution()
print(slu.defangIPaddr('1.1.1.1')) |
# ----------------------------------------------
# Convert a temperature in Fahrenheit to Celsius
# ----------------------------------------------
Fahrenheit = 85.2
Celsius = (Fahrenheit - 32) * 5.0 / 9.0
print("Temperature:", Fahrenheit, "Fahrenheit = ", Celsius, " Celsius")
| fahrenheit = 85.2
celsius = (Fahrenheit - 32) * 5.0 / 9.0
print('Temperature:', Fahrenheit, 'Fahrenheit = ', Celsius, ' Celsius') |
#
# @lc app=leetcode.cn id=1410 lang=python3
#
# [1410] traffic-light-controlled-intersection
#
None
# @lc code=end | None |
num_tries = 0
def binarysearch(numlist, target):
global num_tries
if len(numlist) == 0:
print("The target is not in this list.")
else:
midpoint_index = len(numlist) // 2
if numlist[midpoint_index] == target:
num_tries += 1
print("The target", target, "was found in", num_tries, "guesses.")
elif numlist[midpoint_index] < target:
num_tries += 1
print("Guess: ", numlist[midpoint_index], "is too low")
return binarysearch(numlist[midpoint_index + 1:], target)
elif numlist[midpoint_index] > target:
num_tries += 1
print("Guess: ", numlist[midpoint_index], "is too high")
return binarysearch(numlist[:midpoint_index], target)
def listmaker(min, max):
'''Simple ordered numbers list maker'''
alist = []
for x in range(min, max):
alist.append(x)
return alist
#Examples to try:
#binarysearch(listmaker(1, 99999999), 38636313)
#binarysearch(listmaker(1, 10000), 2773)
#binarysearch([1, 4, 76, 456, 6666, 984345, 9824465], 76)
#binarysearch([1, 4, 76, 456, 6666, 984345, 9824465], 85423)
| num_tries = 0
def binarysearch(numlist, target):
global num_tries
if len(numlist) == 0:
print('The target is not in this list.')
else:
midpoint_index = len(numlist) // 2
if numlist[midpoint_index] == target:
num_tries += 1
print('The target', target, 'was found in', num_tries, 'guesses.')
elif numlist[midpoint_index] < target:
num_tries += 1
print('Guess: ', numlist[midpoint_index], 'is too low')
return binarysearch(numlist[midpoint_index + 1:], target)
elif numlist[midpoint_index] > target:
num_tries += 1
print('Guess: ', numlist[midpoint_index], 'is too high')
return binarysearch(numlist[:midpoint_index], target)
def listmaker(min, max):
"""Simple ordered numbers list maker"""
alist = []
for x in range(min, max):
alist.append(x)
return alist |
#: E711:7
if res == None:
pass
#: E711:7
if res != None:
pass
#: E711:8
if None == res:
pass
#: E711:8
if None != res:
pass
#: E711:10
if res[1] == None:
pass
#: E711:10
if res[1] != None:
pass
#: E711:8
if None != res[1]:
pass
#: E711:8
if None == res[1]:
pass
#
#: E712:7
if res == True:
pass
#: E712:7
if res != False:
pass
#: E712:8
if True != res:
pass
#: E712:9
if False == res:
pass
#: E712:10
if res[1] == True:
pass
#: E712:10
if res[1] != False:
pass
if x is False:
pass
#
#: E713:9
if not X in Y:
pass
#: E713:11
if not X.B in Y:
pass
#: E713:9
if not X in Y and Z == "zero":
pass
#: E713:24
if X == "zero" or not Y in Z:
pass
#
#: E714:9
if not X is Y:
pass
#: E714:11
if not X.B is Y:
pass
#
# Okay
if x not in y:
pass
if not (X in Y or X is Z):
pass
if not (X in Y):
pass
if x is not y:
pass
if TrueElement.get_element(True) == TrueElement.get_element(False):
pass
if (True) == TrueElement or x == TrueElement:
pass
assert (not foo) in bar
assert {'x': not foo} in bar
assert [42, not foo] in bar
| if res == None:
pass
if res != None:
pass
if None == res:
pass
if None != res:
pass
if res[1] == None:
pass
if res[1] != None:
pass
if None != res[1]:
pass
if None == res[1]:
pass
if res == True:
pass
if res != False:
pass
if True != res:
pass
if False == res:
pass
if res[1] == True:
pass
if res[1] != False:
pass
if x is False:
pass
if not X in Y:
pass
if not X.B in Y:
pass
if not X in Y and Z == 'zero':
pass
if X == 'zero' or not Y in Z:
pass
if not X is Y:
pass
if not X.B is Y:
pass
if x not in y:
pass
if not (X in Y or X is Z):
pass
if not X in Y:
pass
if x is not y:
pass
if TrueElement.get_element(True) == TrueElement.get_element(False):
pass
if True == TrueElement or x == TrueElement:
pass
assert (not foo) in bar
assert {'x': not foo} in bar
assert [42, not foo] in bar |
# Data cfg
dataset_type = 'MarvelDatasetBBox'
background_type = 'ImageNetDataset'
# data_root = 'your_data_path/imagenet/train' # data path
base_scale = (256, 256)
fore_scale = (128, 255)
img_norm_cfg = dict(
mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=False)
preprocess_pipeline = dict(
type='CopyAndPasteNew',
feed_bytes=False,
base_scale=base_scale,
ratio=(0.5, 2.0),
w_range=fore_scale,
h_range=fore_scale,
)
train_pipeline = [
dict(type='PixelAugPil', to_rgb=True),
dict(type='RandomFlip', flip_ratio=0.5),
dict(type='Normalize', **img_norm_cfg),
dict(type='DefaultFormatBundle', to_tensor=True),
dict(type='Collect', keys=['img', 'gt_bboxes', 'gt_labels'])
]
data = dict(
samples_per_gpu=32,
workers_per_gpu=8,
train=dict(
type=dataset_type,
background_data=dict(
type=background_type,
ann_file='/root/data/zq/data/imagenet01/train.txt',
preprocess=preprocess_pipeline,
pipeline=train_pipeline
),
ann_file='/root/data/zq/data/marvel/final_400k_new3.txt', # anno file
# img_prefix=data_root,
preprocess=preprocess_pipeline,
pipeline=train_pipeline))
# Model Cfg
norm_cfg = dict(type='BN', requires_grad=True)
model = dict(
type='InsLocFPNQ',
pretrained=None,
pool_with_gt=[False, True], # for query, key encoder respectively
drop_rpn_k=True,
shuffle_data=['img', 'bbox'],
num_levels=4,
level_loss_weights=[1.0, 1.0, 1.0, 1.0],
box_replaced_with_gt=[True, True, True,
False], # Means the box aug is only applied on P5
momentum_cfg=dict(dim=128, K=65536, m=0.999, T=0.2),
cross_patch=True,
backbone=dict(
type='ResNet',
depth=50,
num_stages=4,
out_indices=(0, 1, 2, 3),
frozen_stages=-1,
norm_cfg=norm_cfg,
norm_eval=False,
normal_init=True,
zero_init_residual=False),
neck=dict(
type='FPN',
in_channels=[256, 512, 1024, 2048],
out_channels=256,
norm_cfg=norm_cfg,
num_outs=4),
rpn_head=dict(
type='AnchorAugHead',
anchor_generator=dict(
type='AnchorGenerator',
scales=[2, 4, 8, 16],
ratios=[0.5, 0.75, 1.0, 1.5, 2.0],
strides=[16]),
),
roi_head=dict(
type='MomentumRoIPoolPatch',
bbox_roi_extractor=dict(
type='SingleRoIExtractor',
roi_layer=dict(type='RoIAlign', out_size=7, sample_num=0),
num_extractor=4,
out_channels=256,
finest_scale=56,
featmap_strides=[4, 8, 16, 32]),
bbox_head=dict(
type='ConvFCBBoxInsClsHead',
num_shared_convs=4,
num_shared_fcs=2,
fc_out_channels=1024,
with_avg_pool=False,
norm_cfg=norm_cfg,
roi_feat_size=7,
in_channels=256,
final_out_channel=128),
with_patch=True))
train_cfg = dict(
rpn=None,
rpn_proposal=dict(
nms_across_levels=False,
generate_from_single_level=2,
iou_thr=0.5,
iou_nms=True,
nms_pre=4000,
nms_post=1000,
max_num=1000,
nms_thr=0.7,
min_bbox_size=0),
rcnn=None,
)
test_cfg = dict(rpn=None, rcnn=None)
# Training cfg
optimizer = dict(
type='SGD', lr=0.015, momentum=0.9, weight_decay=0.0001, nesterov=True)
optimizer_config = dict(grad_clip=None)
lr_config = dict(policy='CosineAnnealing', min_lr=0.0, by_epoch=True)
total_epochs = 200
checkpoint_config = dict(interval=5)
log_config = dict(interval=100, hooks=[dict(type='TextLoggerHook')])
dist_params = dict(backend='nccl')
log_level = 'INFO'
load_from = None
resume_from = None
workflow = [('train', 1)]
gpu_ids = range(0, 1)
| dataset_type = 'MarvelDatasetBBox'
background_type = 'ImageNetDataset'
base_scale = (256, 256)
fore_scale = (128, 255)
img_norm_cfg = dict(mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=False)
preprocess_pipeline = dict(type='CopyAndPasteNew', feed_bytes=False, base_scale=base_scale, ratio=(0.5, 2.0), w_range=fore_scale, h_range=fore_scale)
train_pipeline = [dict(type='PixelAugPil', to_rgb=True), dict(type='RandomFlip', flip_ratio=0.5), dict(type='Normalize', **img_norm_cfg), dict(type='DefaultFormatBundle', to_tensor=True), dict(type='Collect', keys=['img', 'gt_bboxes', 'gt_labels'])]
data = dict(samples_per_gpu=32, workers_per_gpu=8, train=dict(type=dataset_type, background_data=dict(type=background_type, ann_file='/root/data/zq/data/imagenet01/train.txt', preprocess=preprocess_pipeline, pipeline=train_pipeline), ann_file='/root/data/zq/data/marvel/final_400k_new3.txt', preprocess=preprocess_pipeline, pipeline=train_pipeline))
norm_cfg = dict(type='BN', requires_grad=True)
model = dict(type='InsLocFPNQ', pretrained=None, pool_with_gt=[False, True], drop_rpn_k=True, shuffle_data=['img', 'bbox'], num_levels=4, level_loss_weights=[1.0, 1.0, 1.0, 1.0], box_replaced_with_gt=[True, True, True, False], momentum_cfg=dict(dim=128, K=65536, m=0.999, T=0.2), cross_patch=True, backbone=dict(type='ResNet', depth=50, num_stages=4, out_indices=(0, 1, 2, 3), frozen_stages=-1, norm_cfg=norm_cfg, norm_eval=False, normal_init=True, zero_init_residual=False), neck=dict(type='FPN', in_channels=[256, 512, 1024, 2048], out_channels=256, norm_cfg=norm_cfg, num_outs=4), rpn_head=dict(type='AnchorAugHead', anchor_generator=dict(type='AnchorGenerator', scales=[2, 4, 8, 16], ratios=[0.5, 0.75, 1.0, 1.5, 2.0], strides=[16])), roi_head=dict(type='MomentumRoIPoolPatch', bbox_roi_extractor=dict(type='SingleRoIExtractor', roi_layer=dict(type='RoIAlign', out_size=7, sample_num=0), num_extractor=4, out_channels=256, finest_scale=56, featmap_strides=[4, 8, 16, 32]), bbox_head=dict(type='ConvFCBBoxInsClsHead', num_shared_convs=4, num_shared_fcs=2, fc_out_channels=1024, with_avg_pool=False, norm_cfg=norm_cfg, roi_feat_size=7, in_channels=256, final_out_channel=128), with_patch=True))
train_cfg = dict(rpn=None, rpn_proposal=dict(nms_across_levels=False, generate_from_single_level=2, iou_thr=0.5, iou_nms=True, nms_pre=4000, nms_post=1000, max_num=1000, nms_thr=0.7, min_bbox_size=0), rcnn=None)
test_cfg = dict(rpn=None, rcnn=None)
optimizer = dict(type='SGD', lr=0.015, momentum=0.9, weight_decay=0.0001, nesterov=True)
optimizer_config = dict(grad_clip=None)
lr_config = dict(policy='CosineAnnealing', min_lr=0.0, by_epoch=True)
total_epochs = 200
checkpoint_config = dict(interval=5)
log_config = dict(interval=100, hooks=[dict(type='TextLoggerHook')])
dist_params = dict(backend='nccl')
log_level = 'INFO'
load_from = None
resume_from = None
workflow = [('train', 1)]
gpu_ids = range(0, 1) |
#
# PySNMP MIB module RFC1286-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/RFC1286-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 16:48: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)
#
OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
NotificationType, Gauge32, Bits, ModuleIdentity, Integer32, MibIdentifier, TimeTicks, mib_2, iso, Unsigned32, Counter32, IpAddress, ObjectIdentity, Counter64, NotificationType, MibScalar, MibTable, MibTableRow, MibTableColumn = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "Gauge32", "Bits", "ModuleIdentity", "Integer32", "MibIdentifier", "TimeTicks", "mib-2", "iso", "Unsigned32", "Counter32", "IpAddress", "ObjectIdentity", "Counter64", "NotificationType", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
class MacAddress(OctetString):
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(6, 6)
fixedLength = 6
class BridgeId(OctetString):
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(8, 8)
fixedLength = 8
class Timeout(Integer32):
pass
dot1dBridge = MibIdentifier((1, 3, 6, 1, 2, 1, 17))
dot1dBase = MibIdentifier((1, 3, 6, 1, 2, 1, 17, 1))
dot1dStp = MibIdentifier((1, 3, 6, 1, 2, 1, 17, 2))
dot1dSr = MibIdentifier((1, 3, 6, 1, 2, 1, 17, 3))
dot1dTp = MibIdentifier((1, 3, 6, 1, 2, 1, 17, 4))
dot1dStatic = MibIdentifier((1, 3, 6, 1, 2, 1, 17, 5))
dot1dBaseBridgeAddress = MibScalar((1, 3, 6, 1, 2, 1, 17, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dBaseBridgeAddress.setStatus('mandatory')
dot1dBaseNumPorts = MibScalar((1, 3, 6, 1, 2, 1, 17, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dBaseNumPorts.setStatus('mandatory')
dot1dBaseType = MibScalar((1, 3, 6, 1, 2, 1, 17, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("unknown", 1), ("transparent-only", 2), ("sourceroute-only", 3), ("srt", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dBaseType.setStatus('mandatory')
dot1dBasePortTable = MibTable((1, 3, 6, 1, 2, 1, 17, 1, 4), )
if mibBuilder.loadTexts: dot1dBasePortTable.setStatus('mandatory')
dot1dBasePortEntry = MibTableRow((1, 3, 6, 1, 2, 1, 17, 1, 4, 1), ).setIndexNames((0, "RFC1286-MIB", "dot1dBasePort"))
if mibBuilder.loadTexts: dot1dBasePortEntry.setStatus('mandatory')
dot1dBasePort = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 1, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dBasePort.setStatus('mandatory')
dot1dBasePortIfIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 1, 4, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dBasePortIfIndex.setStatus('mandatory')
dot1dBasePortCircuit = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 1, 4, 1, 3), ObjectIdentifier()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dBasePortCircuit.setStatus('mandatory')
dot1dBasePortDelayExceededDiscards = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 1, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dBasePortDelayExceededDiscards.setStatus('mandatory')
dot1dBasePortMtuExceededDiscards = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 1, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dBasePortMtuExceededDiscards.setStatus('mandatory')
dot1dStpProtocolSpecification = MibScalar((1, 3, 6, 1, 2, 1, 17, 2, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("unknown", 1), ("decLb100", 2), ("ieee8021d", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dStpProtocolSpecification.setStatus('mandatory')
dot1dStpPriority = MibScalar((1, 3, 6, 1, 2, 1, 17, 2, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dot1dStpPriority.setStatus('mandatory')
dot1dStpTimeSinceTopologyChange = MibScalar((1, 3, 6, 1, 2, 1, 17, 2, 3), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dStpTimeSinceTopologyChange.setStatus('mandatory')
dot1dStpTopChanges = MibScalar((1, 3, 6, 1, 2, 1, 17, 2, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dStpTopChanges.setStatus('mandatory')
dot1dStpDesignatedRoot = MibScalar((1, 3, 6, 1, 2, 1, 17, 2, 5), BridgeId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dStpDesignatedRoot.setStatus('mandatory')
dot1dStpRootCost = MibScalar((1, 3, 6, 1, 2, 1, 17, 2, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dStpRootCost.setStatus('mandatory')
dot1dStpRootPort = MibScalar((1, 3, 6, 1, 2, 1, 17, 2, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dStpRootPort.setStatus('mandatory')
dot1dStpMaxAge = MibScalar((1, 3, 6, 1, 2, 1, 17, 2, 8), Timeout()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dStpMaxAge.setStatus('mandatory')
dot1dStpHelloTime = MibScalar((1, 3, 6, 1, 2, 1, 17, 2, 9), Timeout()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dStpHelloTime.setStatus('mandatory')
dot1dStpHoldTime = MibScalar((1, 3, 6, 1, 2, 1, 17, 2, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dStpHoldTime.setStatus('mandatory')
dot1dStpForwardDelay = MibScalar((1, 3, 6, 1, 2, 1, 17, 2, 11), Timeout()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dStpForwardDelay.setStatus('mandatory')
dot1dStpBridgeMaxAge = MibScalar((1, 3, 6, 1, 2, 1, 17, 2, 12), Timeout().subtype(subtypeSpec=ValueRangeConstraint(600, 4000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dot1dStpBridgeMaxAge.setStatus('mandatory')
dot1dStpBridgeHelloTime = MibScalar((1, 3, 6, 1, 2, 1, 17, 2, 13), Timeout().subtype(subtypeSpec=ValueRangeConstraint(100, 1000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dot1dStpBridgeHelloTime.setStatus('mandatory')
dot1dStpBridgeForwardDelay = MibScalar((1, 3, 6, 1, 2, 1, 17, 2, 14), Timeout().subtype(subtypeSpec=ValueRangeConstraint(400, 3000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dot1dStpBridgeForwardDelay.setStatus('mandatory')
dot1dStpPortTable = MibTable((1, 3, 6, 1, 2, 1, 17, 2, 15), )
if mibBuilder.loadTexts: dot1dStpPortTable.setStatus('mandatory')
dot1dStpPortEntry = MibTableRow((1, 3, 6, 1, 2, 1, 17, 2, 15, 1), ).setIndexNames((0, "RFC1286-MIB", "dot1dStpPort"))
if mibBuilder.loadTexts: dot1dStpPortEntry.setStatus('mandatory')
dot1dStpPort = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dStpPort.setStatus('mandatory')
dot1dStpPortPriority = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dot1dStpPortPriority.setStatus('mandatory')
dot1dStpPortState = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("disabled", 1), ("blocking", 2), ("listening", 3), ("learning", 4), ("forwarding", 5), ("broken", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dStpPortState.setStatus('mandatory')
dot1dStpPortEnable = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dot1dStpPortEnable.setStatus('mandatory')
dot1dStpPortPathCost = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dot1dStpPortPathCost.setStatus('mandatory')
dot1dStpPortDesignatedRoot = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 6), BridgeId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dStpPortDesignatedRoot.setStatus('mandatory')
dot1dStpPortDesignatedCost = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dStpPortDesignatedCost.setStatus('mandatory')
dot1dStpPortDesignatedBridge = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 8), BridgeId()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dStpPortDesignatedBridge.setStatus('mandatory')
dot1dStpPortDesignatedPort = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dStpPortDesignatedPort.setStatus('mandatory')
dot1dStpPortForwardTransitions = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dStpPortForwardTransitions.setStatus('mandatory')
dot1dSrPortTable = MibTable((1, 3, 6, 1, 2, 1, 17, 3, 1), )
if mibBuilder.loadTexts: dot1dSrPortTable.setStatus('mandatory')
dot1dSrPortEntry = MibTableRow((1, 3, 6, 1, 2, 1, 17, 3, 1, 1), ).setIndexNames((0, "RFC1286-MIB", "dot1dSrPort"))
if mibBuilder.loadTexts: dot1dSrPortEntry.setStatus('mandatory')
dot1dSrPort = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dSrPort.setStatus('mandatory')
dot1dSrPortHopCount = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dot1dSrPortHopCount.setStatus('mandatory')
dot1dSrPortLocalSegment = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dot1dSrPortLocalSegment.setStatus('mandatory')
dot1dSrPortBridgeNum = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dot1dSrPortBridgeNum.setStatus('mandatory')
dot1dSrPortTargetSegment = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dot1dSrPortTargetSegment.setStatus('mandatory')
dot1dSrPortLargestFrame = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(516, 1500, 2052, 4472, 8144, 11407, 17800, 65535))).clone(namedValues=NamedValues(("dot1dSrMtu516", 516), ("dot1dSrMtu1500", 1500), ("dot1dSrMtu2052", 2052), ("dot1dSrMtu4472", 4472), ("dot1dSrMtu8144", 8144), ("dot1dSrMtu11407", 11407), ("dot1dSrMtu17800", 17800), ("dot1dSrMtu65535", 65535)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dot1dSrPortLargestFrame.setStatus('mandatory')
dot1dSrPortSTESpanMode = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("auto-span", 1), ("disabled", 2), ("forced", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dot1dSrPortSTESpanMode.setStatus('mandatory')
dot1dSrPortSpecInFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dSrPortSpecInFrames.setStatus('mandatory')
dot1dSrPortSpecOutFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dSrPortSpecOutFrames.setStatus('mandatory')
dot1dSrPortApeInFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dSrPortApeInFrames.setStatus('mandatory')
dot1dSrPortApeOutFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dSrPortApeOutFrames.setStatus('mandatory')
dot1dSrPortSteInFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dSrPortSteInFrames.setStatus('mandatory')
dot1dSrPortSteOutFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dSrPortSteOutFrames.setStatus('mandatory')
dot1dSrPortSegmentMismatchDiscards = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dSrPortSegmentMismatchDiscards.setStatus('mandatory')
dot1dSrPortDuplicateSegmentDiscards = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dSrPortDuplicateSegmentDiscards.setStatus('mandatory')
dot1dSrPortHopCountExceededDiscards = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dSrPortHopCountExceededDiscards.setStatus('mandatory')
dot1dTpLearnedEntryDiscards = MibScalar((1, 3, 6, 1, 2, 1, 17, 4, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dTpLearnedEntryDiscards.setStatus('mandatory')
dot1dTpAgingTime = MibScalar((1, 3, 6, 1, 2, 1, 17, 4, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dot1dTpAgingTime.setStatus('mandatory')
dot1dTpFdbTable = MibTable((1, 3, 6, 1, 2, 1, 17, 4, 3), )
if mibBuilder.loadTexts: dot1dTpFdbTable.setStatus('mandatory')
dot1dTpFdbEntry = MibTableRow((1, 3, 6, 1, 2, 1, 17, 4, 3, 1), ).setIndexNames((0, "RFC1286-MIB", "dot1dTpFdbAddress"))
if mibBuilder.loadTexts: dot1dTpFdbEntry.setStatus('mandatory')
dot1dTpFdbAddress = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 4, 3, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dTpFdbAddress.setStatus('mandatory')
dot1dTpFdbPort = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 4, 3, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dTpFdbPort.setStatus('mandatory')
dot1dTpFdbStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 4, 3, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("other", 1), ("invalid", 2), ("learned", 3), ("self", 4), ("mgmt", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dTpFdbStatus.setStatus('mandatory')
dot1dTpPortTable = MibTable((1, 3, 6, 1, 2, 1, 17, 4, 4), )
if mibBuilder.loadTexts: dot1dTpPortTable.setStatus('mandatory')
dot1dTpPortEntry = MibTableRow((1, 3, 6, 1, 2, 1, 17, 4, 4, 1), ).setIndexNames((0, "RFC1286-MIB", "dot1dTpPort"))
if mibBuilder.loadTexts: dot1dTpPortEntry.setStatus('mandatory')
dot1dTpPort = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 4, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dTpPort.setStatus('mandatory')
dot1dTpPortMaxInfo = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 4, 4, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dTpPortMaxInfo.setStatus('mandatory')
dot1dTpPortInFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 4, 4, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dTpPortInFrames.setStatus('mandatory')
dot1dTpPortOutFrames = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 4, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dTpPortOutFrames.setStatus('mandatory')
dot1dTpPortInDiscards = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 4, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dot1dTpPortInDiscards.setStatus('mandatory')
dot1dStaticTable = MibTable((1, 3, 6, 1, 2, 1, 17, 5, 1), )
if mibBuilder.loadTexts: dot1dStaticTable.setStatus('mandatory')
dot1dStaticEntry = MibTableRow((1, 3, 6, 1, 2, 1, 17, 5, 1, 1), ).setIndexNames((0, "RFC1286-MIB", "dot1dStaticAddress"), (0, "RFC1286-MIB", "dot1dStaticReceivePort"))
if mibBuilder.loadTexts: dot1dStaticEntry.setStatus('mandatory')
dot1dStaticAddress = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 5, 1, 1, 1), MacAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dot1dStaticAddress.setStatus('mandatory')
dot1dStaticReceivePort = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 5, 1, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dot1dStaticReceivePort.setStatus('mandatory')
dot1dStaticAllowedToGoTo = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 5, 1, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dot1dStaticAllowedToGoTo.setStatus('mandatory')
dot1dStaticStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 17, 5, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("other", 1), ("invalid", 2), ("permanent", 3), ("deleteOnReset", 4), ("deleteOnTimeout", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dot1dStaticStatus.setStatus('mandatory')
newRoot = NotificationType((1, 3, 6, 1, 2, 1, 17) + (0,1))
topologyChange = NotificationType((1, 3, 6, 1, 2, 1, 17) + (0,2))
mibBuilder.exportSymbols("RFC1286-MIB", dot1dSrPortTargetSegment=dot1dSrPortTargetSegment, MacAddress=MacAddress, Timeout=Timeout, newRoot=newRoot, dot1dTpFdbPort=dot1dTpFdbPort, dot1dTpPortOutFrames=dot1dTpPortOutFrames, dot1dSrPortSpecOutFrames=dot1dSrPortSpecOutFrames, dot1dSrPortSTESpanMode=dot1dSrPortSTESpanMode, dot1dSrPortLargestFrame=dot1dSrPortLargestFrame, dot1dSrPortHopCount=dot1dSrPortHopCount, dot1dBasePortCircuit=dot1dBasePortCircuit, dot1dStpHelloTime=dot1dStpHelloTime, dot1dStatic=dot1dStatic, dot1dSrPortTable=dot1dSrPortTable, dot1dStpPortTable=dot1dStpPortTable, dot1dStpPortDesignatedPort=dot1dStpPortDesignatedPort, dot1dStaticStatus=dot1dStaticStatus, dot1dStaticTable=dot1dStaticTable, dot1dStpBridgeForwardDelay=dot1dStpBridgeForwardDelay, BridgeId=BridgeId, dot1dStpBridgeHelloTime=dot1dStpBridgeHelloTime, dot1dStaticAllowedToGoTo=dot1dStaticAllowedToGoTo, dot1dStpPortEntry=dot1dStpPortEntry, dot1dTpFdbStatus=dot1dTpFdbStatus, dot1dTpPortMaxInfo=dot1dTpPortMaxInfo, dot1dTpFdbEntry=dot1dTpFdbEntry, dot1dStpForwardDelay=dot1dStpForwardDelay, dot1dBaseType=dot1dBaseType, dot1dStaticEntry=dot1dStaticEntry, dot1dStpPort=dot1dStpPort, dot1dStpRootCost=dot1dStpRootCost, dot1dSrPortLocalSegment=dot1dSrPortLocalSegment, dot1dBasePortIfIndex=dot1dBasePortIfIndex, dot1dStpPortState=dot1dStpPortState, dot1dTpPortTable=dot1dTpPortTable, dot1dTpPort=dot1dTpPort, dot1dStpRootPort=dot1dStpRootPort, dot1dBasePortDelayExceededDiscards=dot1dBasePortDelayExceededDiscards, dot1dSrPortSteOutFrames=dot1dSrPortSteOutFrames, dot1dBaseBridgeAddress=dot1dBaseBridgeAddress, dot1dBaseNumPorts=dot1dBaseNumPorts, dot1dBasePortTable=dot1dBasePortTable, dot1dStpPortEnable=dot1dStpPortEnable, dot1dStpPortForwardTransitions=dot1dStpPortForwardTransitions, dot1dTpPortInFrames=dot1dTpPortInFrames, dot1dBasePortMtuExceededDiscards=dot1dBasePortMtuExceededDiscards, dot1dStpTopChanges=dot1dStpTopChanges, dot1dStaticReceivePort=dot1dStaticReceivePort, dot1dStpPortPriority=dot1dStpPortPriority, dot1dBridge=dot1dBridge, dot1dStpDesignatedRoot=dot1dStpDesignatedRoot, dot1dSrPortApeInFrames=dot1dSrPortApeInFrames, dot1dStpMaxAge=dot1dStpMaxAge, dot1dTpPortInDiscards=dot1dTpPortInDiscards, dot1dStpPortDesignatedRoot=dot1dStpPortDesignatedRoot, dot1dTpFdbTable=dot1dTpFdbTable, dot1dTpPortEntry=dot1dTpPortEntry, dot1dStpPortDesignatedBridge=dot1dStpPortDesignatedBridge, dot1dBasePort=dot1dBasePort, dot1dSrPortDuplicateSegmentDiscards=dot1dSrPortDuplicateSegmentDiscards, dot1dStpPortPathCost=dot1dStpPortPathCost, dot1dSrPort=dot1dSrPort, dot1dTpAgingTime=dot1dTpAgingTime, dot1dSrPortHopCountExceededDiscards=dot1dSrPortHopCountExceededDiscards, dot1dSrPortApeOutFrames=dot1dSrPortApeOutFrames, topologyChange=topologyChange, dot1dSrPortSegmentMismatchDiscards=dot1dSrPortSegmentMismatchDiscards, dot1dBasePortEntry=dot1dBasePortEntry, dot1dStpHoldTime=dot1dStpHoldTime, dot1dStpPriority=dot1dStpPriority, dot1dTp=dot1dTp, dot1dStpProtocolSpecification=dot1dStpProtocolSpecification, dot1dStaticAddress=dot1dStaticAddress, dot1dTpFdbAddress=dot1dTpFdbAddress, dot1dSrPortBridgeNum=dot1dSrPortBridgeNum, dot1dStpBridgeMaxAge=dot1dStpBridgeMaxAge, dot1dStpPortDesignatedCost=dot1dStpPortDesignatedCost, dot1dStpTimeSinceTopologyChange=dot1dStpTimeSinceTopologyChange, dot1dSrPortSteInFrames=dot1dSrPortSteInFrames, dot1dSr=dot1dSr, dot1dSrPortEntry=dot1dSrPortEntry, dot1dSrPortSpecInFrames=dot1dSrPortSpecInFrames, dot1dBase=dot1dBase, dot1dTpLearnedEntryDiscards=dot1dTpLearnedEntryDiscards, dot1dStp=dot1dStp)
| (octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, value_range_constraint, constraints_union, constraints_intersection, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueSizeConstraint')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(notification_type, gauge32, bits, module_identity, integer32, mib_identifier, time_ticks, mib_2, iso, unsigned32, counter32, ip_address, object_identity, counter64, notification_type, mib_scalar, mib_table, mib_table_row, mib_table_column) = mibBuilder.importSymbols('SNMPv2-SMI', 'NotificationType', 'Gauge32', 'Bits', 'ModuleIdentity', 'Integer32', 'MibIdentifier', 'TimeTicks', 'mib-2', 'iso', 'Unsigned32', 'Counter32', 'IpAddress', 'ObjectIdentity', 'Counter64', 'NotificationType', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
class Macaddress(OctetString):
subtype_spec = OctetString.subtypeSpec + value_size_constraint(6, 6)
fixed_length = 6
class Bridgeid(OctetString):
subtype_spec = OctetString.subtypeSpec + value_size_constraint(8, 8)
fixed_length = 8
class Timeout(Integer32):
pass
dot1d_bridge = mib_identifier((1, 3, 6, 1, 2, 1, 17))
dot1d_base = mib_identifier((1, 3, 6, 1, 2, 1, 17, 1))
dot1d_stp = mib_identifier((1, 3, 6, 1, 2, 1, 17, 2))
dot1d_sr = mib_identifier((1, 3, 6, 1, 2, 1, 17, 3))
dot1d_tp = mib_identifier((1, 3, 6, 1, 2, 1, 17, 4))
dot1d_static = mib_identifier((1, 3, 6, 1, 2, 1, 17, 5))
dot1d_base_bridge_address = mib_scalar((1, 3, 6, 1, 2, 1, 17, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dBaseBridgeAddress.setStatus('mandatory')
dot1d_base_num_ports = mib_scalar((1, 3, 6, 1, 2, 1, 17, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dBaseNumPorts.setStatus('mandatory')
dot1d_base_type = mib_scalar((1, 3, 6, 1, 2, 1, 17, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('unknown', 1), ('transparent-only', 2), ('sourceroute-only', 3), ('srt', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dBaseType.setStatus('mandatory')
dot1d_base_port_table = mib_table((1, 3, 6, 1, 2, 1, 17, 1, 4))
if mibBuilder.loadTexts:
dot1dBasePortTable.setStatus('mandatory')
dot1d_base_port_entry = mib_table_row((1, 3, 6, 1, 2, 1, 17, 1, 4, 1)).setIndexNames((0, 'RFC1286-MIB', 'dot1dBasePort'))
if mibBuilder.loadTexts:
dot1dBasePortEntry.setStatus('mandatory')
dot1d_base_port = mib_table_column((1, 3, 6, 1, 2, 1, 17, 1, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dBasePort.setStatus('mandatory')
dot1d_base_port_if_index = mib_table_column((1, 3, 6, 1, 2, 1, 17, 1, 4, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dBasePortIfIndex.setStatus('mandatory')
dot1d_base_port_circuit = mib_table_column((1, 3, 6, 1, 2, 1, 17, 1, 4, 1, 3), object_identifier()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dBasePortCircuit.setStatus('mandatory')
dot1d_base_port_delay_exceeded_discards = mib_table_column((1, 3, 6, 1, 2, 1, 17, 1, 4, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dBasePortDelayExceededDiscards.setStatus('mandatory')
dot1d_base_port_mtu_exceeded_discards = mib_table_column((1, 3, 6, 1, 2, 1, 17, 1, 4, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dBasePortMtuExceededDiscards.setStatus('mandatory')
dot1d_stp_protocol_specification = mib_scalar((1, 3, 6, 1, 2, 1, 17, 2, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('unknown', 1), ('decLb100', 2), ('ieee8021d', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dStpProtocolSpecification.setStatus('mandatory')
dot1d_stp_priority = mib_scalar((1, 3, 6, 1, 2, 1, 17, 2, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dot1dStpPriority.setStatus('mandatory')
dot1d_stp_time_since_topology_change = mib_scalar((1, 3, 6, 1, 2, 1, 17, 2, 3), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dStpTimeSinceTopologyChange.setStatus('mandatory')
dot1d_stp_top_changes = mib_scalar((1, 3, 6, 1, 2, 1, 17, 2, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dStpTopChanges.setStatus('mandatory')
dot1d_stp_designated_root = mib_scalar((1, 3, 6, 1, 2, 1, 17, 2, 5), bridge_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dStpDesignatedRoot.setStatus('mandatory')
dot1d_stp_root_cost = mib_scalar((1, 3, 6, 1, 2, 1, 17, 2, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dStpRootCost.setStatus('mandatory')
dot1d_stp_root_port = mib_scalar((1, 3, 6, 1, 2, 1, 17, 2, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dStpRootPort.setStatus('mandatory')
dot1d_stp_max_age = mib_scalar((1, 3, 6, 1, 2, 1, 17, 2, 8), timeout()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dStpMaxAge.setStatus('mandatory')
dot1d_stp_hello_time = mib_scalar((1, 3, 6, 1, 2, 1, 17, 2, 9), timeout()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dStpHelloTime.setStatus('mandatory')
dot1d_stp_hold_time = mib_scalar((1, 3, 6, 1, 2, 1, 17, 2, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dStpHoldTime.setStatus('mandatory')
dot1d_stp_forward_delay = mib_scalar((1, 3, 6, 1, 2, 1, 17, 2, 11), timeout()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dStpForwardDelay.setStatus('mandatory')
dot1d_stp_bridge_max_age = mib_scalar((1, 3, 6, 1, 2, 1, 17, 2, 12), timeout().subtype(subtypeSpec=value_range_constraint(600, 4000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dot1dStpBridgeMaxAge.setStatus('mandatory')
dot1d_stp_bridge_hello_time = mib_scalar((1, 3, 6, 1, 2, 1, 17, 2, 13), timeout().subtype(subtypeSpec=value_range_constraint(100, 1000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dot1dStpBridgeHelloTime.setStatus('mandatory')
dot1d_stp_bridge_forward_delay = mib_scalar((1, 3, 6, 1, 2, 1, 17, 2, 14), timeout().subtype(subtypeSpec=value_range_constraint(400, 3000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dot1dStpBridgeForwardDelay.setStatus('mandatory')
dot1d_stp_port_table = mib_table((1, 3, 6, 1, 2, 1, 17, 2, 15))
if mibBuilder.loadTexts:
dot1dStpPortTable.setStatus('mandatory')
dot1d_stp_port_entry = mib_table_row((1, 3, 6, 1, 2, 1, 17, 2, 15, 1)).setIndexNames((0, 'RFC1286-MIB', 'dot1dStpPort'))
if mibBuilder.loadTexts:
dot1dStpPortEntry.setStatus('mandatory')
dot1d_stp_port = mib_table_column((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dStpPort.setStatus('mandatory')
dot1d_stp_port_priority = mib_table_column((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dot1dStpPortPriority.setStatus('mandatory')
dot1d_stp_port_state = mib_table_column((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('disabled', 1), ('blocking', 2), ('listening', 3), ('learning', 4), ('forwarding', 5), ('broken', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dStpPortState.setStatus('mandatory')
dot1d_stp_port_enable = mib_table_column((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dot1dStpPortEnable.setStatus('mandatory')
dot1d_stp_port_path_cost = mib_table_column((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dot1dStpPortPathCost.setStatus('mandatory')
dot1d_stp_port_designated_root = mib_table_column((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 6), bridge_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dStpPortDesignatedRoot.setStatus('mandatory')
dot1d_stp_port_designated_cost = mib_table_column((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dStpPortDesignatedCost.setStatus('mandatory')
dot1d_stp_port_designated_bridge = mib_table_column((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 8), bridge_id()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dStpPortDesignatedBridge.setStatus('mandatory')
dot1d_stp_port_designated_port = mib_table_column((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 9), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dStpPortDesignatedPort.setStatus('mandatory')
dot1d_stp_port_forward_transitions = mib_table_column((1, 3, 6, 1, 2, 1, 17, 2, 15, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dStpPortForwardTransitions.setStatus('mandatory')
dot1d_sr_port_table = mib_table((1, 3, 6, 1, 2, 1, 17, 3, 1))
if mibBuilder.loadTexts:
dot1dSrPortTable.setStatus('mandatory')
dot1d_sr_port_entry = mib_table_row((1, 3, 6, 1, 2, 1, 17, 3, 1, 1)).setIndexNames((0, 'RFC1286-MIB', 'dot1dSrPort'))
if mibBuilder.loadTexts:
dot1dSrPortEntry.setStatus('mandatory')
dot1d_sr_port = mib_table_column((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dSrPort.setStatus('mandatory')
dot1d_sr_port_hop_count = mib_table_column((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dot1dSrPortHopCount.setStatus('mandatory')
dot1d_sr_port_local_segment = mib_table_column((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dot1dSrPortLocalSegment.setStatus('mandatory')
dot1d_sr_port_bridge_num = mib_table_column((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dot1dSrPortBridgeNum.setStatus('mandatory')
dot1d_sr_port_target_segment = mib_table_column((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dot1dSrPortTargetSegment.setStatus('mandatory')
dot1d_sr_port_largest_frame = mib_table_column((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(516, 1500, 2052, 4472, 8144, 11407, 17800, 65535))).clone(namedValues=named_values(('dot1dSrMtu516', 516), ('dot1dSrMtu1500', 1500), ('dot1dSrMtu2052', 2052), ('dot1dSrMtu4472', 4472), ('dot1dSrMtu8144', 8144), ('dot1dSrMtu11407', 11407), ('dot1dSrMtu17800', 17800), ('dot1dSrMtu65535', 65535)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dot1dSrPortLargestFrame.setStatus('mandatory')
dot1d_sr_port_ste_span_mode = mib_table_column((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('auto-span', 1), ('disabled', 2), ('forced', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dot1dSrPortSTESpanMode.setStatus('mandatory')
dot1d_sr_port_spec_in_frames = mib_table_column((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dSrPortSpecInFrames.setStatus('mandatory')
dot1d_sr_port_spec_out_frames = mib_table_column((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dSrPortSpecOutFrames.setStatus('mandatory')
dot1d_sr_port_ape_in_frames = mib_table_column((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dSrPortApeInFrames.setStatus('mandatory')
dot1d_sr_port_ape_out_frames = mib_table_column((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dSrPortApeOutFrames.setStatus('mandatory')
dot1d_sr_port_ste_in_frames = mib_table_column((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dSrPortSteInFrames.setStatus('mandatory')
dot1d_sr_port_ste_out_frames = mib_table_column((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dSrPortSteOutFrames.setStatus('mandatory')
dot1d_sr_port_segment_mismatch_discards = mib_table_column((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dSrPortSegmentMismatchDiscards.setStatus('mandatory')
dot1d_sr_port_duplicate_segment_discards = mib_table_column((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dSrPortDuplicateSegmentDiscards.setStatus('mandatory')
dot1d_sr_port_hop_count_exceeded_discards = mib_table_column((1, 3, 6, 1, 2, 1, 17, 3, 1, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dSrPortHopCountExceededDiscards.setStatus('mandatory')
dot1d_tp_learned_entry_discards = mib_scalar((1, 3, 6, 1, 2, 1, 17, 4, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dTpLearnedEntryDiscards.setStatus('mandatory')
dot1d_tp_aging_time = mib_scalar((1, 3, 6, 1, 2, 1, 17, 4, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dot1dTpAgingTime.setStatus('mandatory')
dot1d_tp_fdb_table = mib_table((1, 3, 6, 1, 2, 1, 17, 4, 3))
if mibBuilder.loadTexts:
dot1dTpFdbTable.setStatus('mandatory')
dot1d_tp_fdb_entry = mib_table_row((1, 3, 6, 1, 2, 1, 17, 4, 3, 1)).setIndexNames((0, 'RFC1286-MIB', 'dot1dTpFdbAddress'))
if mibBuilder.loadTexts:
dot1dTpFdbEntry.setStatus('mandatory')
dot1d_tp_fdb_address = mib_table_column((1, 3, 6, 1, 2, 1, 17, 4, 3, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dTpFdbAddress.setStatus('mandatory')
dot1d_tp_fdb_port = mib_table_column((1, 3, 6, 1, 2, 1, 17, 4, 3, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dTpFdbPort.setStatus('mandatory')
dot1d_tp_fdb_status = mib_table_column((1, 3, 6, 1, 2, 1, 17, 4, 3, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('other', 1), ('invalid', 2), ('learned', 3), ('self', 4), ('mgmt', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dTpFdbStatus.setStatus('mandatory')
dot1d_tp_port_table = mib_table((1, 3, 6, 1, 2, 1, 17, 4, 4))
if mibBuilder.loadTexts:
dot1dTpPortTable.setStatus('mandatory')
dot1d_tp_port_entry = mib_table_row((1, 3, 6, 1, 2, 1, 17, 4, 4, 1)).setIndexNames((0, 'RFC1286-MIB', 'dot1dTpPort'))
if mibBuilder.loadTexts:
dot1dTpPortEntry.setStatus('mandatory')
dot1d_tp_port = mib_table_column((1, 3, 6, 1, 2, 1, 17, 4, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dTpPort.setStatus('mandatory')
dot1d_tp_port_max_info = mib_table_column((1, 3, 6, 1, 2, 1, 17, 4, 4, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dTpPortMaxInfo.setStatus('mandatory')
dot1d_tp_port_in_frames = mib_table_column((1, 3, 6, 1, 2, 1, 17, 4, 4, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dTpPortInFrames.setStatus('mandatory')
dot1d_tp_port_out_frames = mib_table_column((1, 3, 6, 1, 2, 1, 17, 4, 4, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dTpPortOutFrames.setStatus('mandatory')
dot1d_tp_port_in_discards = mib_table_column((1, 3, 6, 1, 2, 1, 17, 4, 4, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dot1dTpPortInDiscards.setStatus('mandatory')
dot1d_static_table = mib_table((1, 3, 6, 1, 2, 1, 17, 5, 1))
if mibBuilder.loadTexts:
dot1dStaticTable.setStatus('mandatory')
dot1d_static_entry = mib_table_row((1, 3, 6, 1, 2, 1, 17, 5, 1, 1)).setIndexNames((0, 'RFC1286-MIB', 'dot1dStaticAddress'), (0, 'RFC1286-MIB', 'dot1dStaticReceivePort'))
if mibBuilder.loadTexts:
dot1dStaticEntry.setStatus('mandatory')
dot1d_static_address = mib_table_column((1, 3, 6, 1, 2, 1, 17, 5, 1, 1, 1), mac_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dot1dStaticAddress.setStatus('mandatory')
dot1d_static_receive_port = mib_table_column((1, 3, 6, 1, 2, 1, 17, 5, 1, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dot1dStaticReceivePort.setStatus('mandatory')
dot1d_static_allowed_to_go_to = mib_table_column((1, 3, 6, 1, 2, 1, 17, 5, 1, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dot1dStaticAllowedToGoTo.setStatus('mandatory')
dot1d_static_status = mib_table_column((1, 3, 6, 1, 2, 1, 17, 5, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('other', 1), ('invalid', 2), ('permanent', 3), ('deleteOnReset', 4), ('deleteOnTimeout', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dot1dStaticStatus.setStatus('mandatory')
new_root = notification_type((1, 3, 6, 1, 2, 1, 17) + (0, 1))
topology_change = notification_type((1, 3, 6, 1, 2, 1, 17) + (0, 2))
mibBuilder.exportSymbols('RFC1286-MIB', dot1dSrPortTargetSegment=dot1dSrPortTargetSegment, MacAddress=MacAddress, Timeout=Timeout, newRoot=newRoot, dot1dTpFdbPort=dot1dTpFdbPort, dot1dTpPortOutFrames=dot1dTpPortOutFrames, dot1dSrPortSpecOutFrames=dot1dSrPortSpecOutFrames, dot1dSrPortSTESpanMode=dot1dSrPortSTESpanMode, dot1dSrPortLargestFrame=dot1dSrPortLargestFrame, dot1dSrPortHopCount=dot1dSrPortHopCount, dot1dBasePortCircuit=dot1dBasePortCircuit, dot1dStpHelloTime=dot1dStpHelloTime, dot1dStatic=dot1dStatic, dot1dSrPortTable=dot1dSrPortTable, dot1dStpPortTable=dot1dStpPortTable, dot1dStpPortDesignatedPort=dot1dStpPortDesignatedPort, dot1dStaticStatus=dot1dStaticStatus, dot1dStaticTable=dot1dStaticTable, dot1dStpBridgeForwardDelay=dot1dStpBridgeForwardDelay, BridgeId=BridgeId, dot1dStpBridgeHelloTime=dot1dStpBridgeHelloTime, dot1dStaticAllowedToGoTo=dot1dStaticAllowedToGoTo, dot1dStpPortEntry=dot1dStpPortEntry, dot1dTpFdbStatus=dot1dTpFdbStatus, dot1dTpPortMaxInfo=dot1dTpPortMaxInfo, dot1dTpFdbEntry=dot1dTpFdbEntry, dot1dStpForwardDelay=dot1dStpForwardDelay, dot1dBaseType=dot1dBaseType, dot1dStaticEntry=dot1dStaticEntry, dot1dStpPort=dot1dStpPort, dot1dStpRootCost=dot1dStpRootCost, dot1dSrPortLocalSegment=dot1dSrPortLocalSegment, dot1dBasePortIfIndex=dot1dBasePortIfIndex, dot1dStpPortState=dot1dStpPortState, dot1dTpPortTable=dot1dTpPortTable, dot1dTpPort=dot1dTpPort, dot1dStpRootPort=dot1dStpRootPort, dot1dBasePortDelayExceededDiscards=dot1dBasePortDelayExceededDiscards, dot1dSrPortSteOutFrames=dot1dSrPortSteOutFrames, dot1dBaseBridgeAddress=dot1dBaseBridgeAddress, dot1dBaseNumPorts=dot1dBaseNumPorts, dot1dBasePortTable=dot1dBasePortTable, dot1dStpPortEnable=dot1dStpPortEnable, dot1dStpPortForwardTransitions=dot1dStpPortForwardTransitions, dot1dTpPortInFrames=dot1dTpPortInFrames, dot1dBasePortMtuExceededDiscards=dot1dBasePortMtuExceededDiscards, dot1dStpTopChanges=dot1dStpTopChanges, dot1dStaticReceivePort=dot1dStaticReceivePort, dot1dStpPortPriority=dot1dStpPortPriority, dot1dBridge=dot1dBridge, dot1dStpDesignatedRoot=dot1dStpDesignatedRoot, dot1dSrPortApeInFrames=dot1dSrPortApeInFrames, dot1dStpMaxAge=dot1dStpMaxAge, dot1dTpPortInDiscards=dot1dTpPortInDiscards, dot1dStpPortDesignatedRoot=dot1dStpPortDesignatedRoot, dot1dTpFdbTable=dot1dTpFdbTable, dot1dTpPortEntry=dot1dTpPortEntry, dot1dStpPortDesignatedBridge=dot1dStpPortDesignatedBridge, dot1dBasePort=dot1dBasePort, dot1dSrPortDuplicateSegmentDiscards=dot1dSrPortDuplicateSegmentDiscards, dot1dStpPortPathCost=dot1dStpPortPathCost, dot1dSrPort=dot1dSrPort, dot1dTpAgingTime=dot1dTpAgingTime, dot1dSrPortHopCountExceededDiscards=dot1dSrPortHopCountExceededDiscards, dot1dSrPortApeOutFrames=dot1dSrPortApeOutFrames, topologyChange=topologyChange, dot1dSrPortSegmentMismatchDiscards=dot1dSrPortSegmentMismatchDiscards, dot1dBasePortEntry=dot1dBasePortEntry, dot1dStpHoldTime=dot1dStpHoldTime, dot1dStpPriority=dot1dStpPriority, dot1dTp=dot1dTp, dot1dStpProtocolSpecification=dot1dStpProtocolSpecification, dot1dStaticAddress=dot1dStaticAddress, dot1dTpFdbAddress=dot1dTpFdbAddress, dot1dSrPortBridgeNum=dot1dSrPortBridgeNum, dot1dStpBridgeMaxAge=dot1dStpBridgeMaxAge, dot1dStpPortDesignatedCost=dot1dStpPortDesignatedCost, dot1dStpTimeSinceTopologyChange=dot1dStpTimeSinceTopologyChange, dot1dSrPortSteInFrames=dot1dSrPortSteInFrames, dot1dSr=dot1dSr, dot1dSrPortEntry=dot1dSrPortEntry, dot1dSrPortSpecInFrames=dot1dSrPortSpecInFrames, dot1dBase=dot1dBase, dot1dTpLearnedEntryDiscards=dot1dTpLearnedEntryDiscards, dot1dStp=dot1dStp) |
def findDecision(obj): #obj[0]: Passanger, obj[1]: Coupon, obj[2]: Education, obj[3]: Occupation, obj[4]: Bar, obj[5]: Restaurant20to50, obj[6]: Direction_same, obj[7]: Distance
# {"feature": "Passanger", "instances": 51, "metric_value": 0.9526, "depth": 1}
if obj[0]>0:
# {"feature": "Education", "instances": 47, "metric_value": 0.9734, "depth": 2}
if obj[2]<=2:
# {"feature": "Occupation", "instances": 34, "metric_value": 0.9082, "depth": 3}
if obj[3]<=12:
# {"feature": "Bar", "instances": 30, "metric_value": 0.9481, "depth": 4}
if obj[4]<=2.0:
# {"feature": "Restaurant20to50", "instances": 27, "metric_value": 0.8767, "depth": 5}
if obj[5]<=1.0:
# {"feature": "Distance", "instances": 20, "metric_value": 0.971, "depth": 6}
if obj[7]<=2:
# {"feature": "Direction_same", "instances": 18, "metric_value": 0.9911, "depth": 7}
if obj[6]<=0:
# {"feature": "Coupon", "instances": 17, "metric_value": 0.9975, "depth": 8}
if obj[1]>1:
return 'True'
elif obj[1]<=1:
return 'False'
else: return 'False'
elif obj[6]>0:
return 'True'
else: return 'True'
elif obj[7]>2:
return 'True'
else: return 'True'
elif obj[5]>1.0:
return 'True'
else: return 'True'
elif obj[4]>2.0:
return 'False'
else: return 'False'
elif obj[3]>12:
return 'True'
else: return 'True'
elif obj[2]>2:
# {"feature": "Coupon", "instances": 13, "metric_value": 0.9612, "depth": 3}
if obj[1]>1:
# {"feature": "Occupation", "instances": 9, "metric_value": 0.9911, "depth": 4}
if obj[3]<=11:
# {"feature": "Bar", "instances": 7, "metric_value": 0.9852, "depth": 5}
if obj[4]>1.0:
# {"feature": "Restaurant20to50", "instances": 4, "metric_value": 0.8113, "depth": 6}
if obj[5]>3.0:
# {"feature": "Distance", "instances": 2, "metric_value": 1.0, "depth": 7}
if obj[7]>1:
return 'True'
elif obj[7]<=1:
return 'False'
else: return 'False'
elif obj[5]<=3.0:
return 'True'
else: return 'True'
elif obj[4]<=1.0:
return 'False'
else: return 'False'
elif obj[3]>11:
return 'True'
else: return 'True'
elif obj[1]<=1:
return 'False'
else: return 'False'
else: return 'False'
elif obj[0]<=0:
return 'True'
else: return 'True'
| def find_decision(obj):
if obj[0] > 0:
if obj[2] <= 2:
if obj[3] <= 12:
if obj[4] <= 2.0:
if obj[5] <= 1.0:
if obj[7] <= 2:
if obj[6] <= 0:
if obj[1] > 1:
return 'True'
elif obj[1] <= 1:
return 'False'
else:
return 'False'
elif obj[6] > 0:
return 'True'
else:
return 'True'
elif obj[7] > 2:
return 'True'
else:
return 'True'
elif obj[5] > 1.0:
return 'True'
else:
return 'True'
elif obj[4] > 2.0:
return 'False'
else:
return 'False'
elif obj[3] > 12:
return 'True'
else:
return 'True'
elif obj[2] > 2:
if obj[1] > 1:
if obj[3] <= 11:
if obj[4] > 1.0:
if obj[5] > 3.0:
if obj[7] > 1:
return 'True'
elif obj[7] <= 1:
return 'False'
else:
return 'False'
elif obj[5] <= 3.0:
return 'True'
else:
return 'True'
elif obj[4] <= 1.0:
return 'False'
else:
return 'False'
elif obj[3] > 11:
return 'True'
else:
return 'True'
elif obj[1] <= 1:
return 'False'
else:
return 'False'
else:
return 'False'
elif obj[0] <= 0:
return 'True'
else:
return 'True' |
# Copyright 2020 Chen Bainian
# Licensed under the Apache License, Version 2.0
__version__ = '0.2.2'
| __version__ = '0.2.2' |
# NUCLEOTIDES
BASES = ['A' 'C', 'G', 'T']
dna_letters = "GATC"
dna_extended_letters = "GATCRYWSMKHBVDN"
rna_letters = "GAUC"
rna_extended_letters = "GAUCRYWSMKHBVDN"
dna_ambiguity = {
"A": "A",
"C": "C",
"G": "G",
"T": "T",
"M": "AC",
"R": "AG",
"W": "AT",
"S": "CG",
"Y": "CT",
"K": "GT",
"V": "ACG",
"H": "ACT",
"D": "AGT",
"B": "CGT",
"X": "GATC",
"N": "GATC",
}
rna_ambiguity = {
"A": "A",
"C": "C",
"G": "G",
"U": "U",
"M": "AC",
"R": "AG",
"W": "AU",
"S": "CG",
"Y": "CU",
"K": "GU",
"V": "ACG",
"H": "ACU",
"D": "AGU",
"B": "CGU",
"X": "GAUC",
"N": "GAUC",
}
nucleotide_names = {
'A': 'Adenosine',
'C': 'Cytidine',
'G': 'Guanine',
'T': 'Thymidine',
'U': 'Uracil',
'R': 'G A (puRine)',
'Y': 'T C (pYrimidine)',
'K': 'G T (Ketone)',
'M': 'A C (aMino group)',
'S': 'G C (Strong interaction)',
'W': 'A T (Weak interaction)',
'B': 'G T C (not A) (B comes after A)',
'D': 'G A T (not C) (D comes after C)',
'H': 'A C T (not G) (H comes after G)',
'V': 'G C A (not T, not U) (V comes after U)',
'N': 'A G C T (aNy)',
'-': 'gap',
}
# AMINOACIDS
AMINOACIDS = ["R", "H", "K", "D", "E", "S", "T", "N", "Q", "C",
"G", "P", "A", "V", "I", "L", "M", "F", "Y", "W", ]
THREE_LETTERS = {"ARG":"R", "HIS":"H",
"LYS":"K", "ASP": "D",
"GLU": "E","SER": "S",
"THR": "T", "ASN": "N",
"GLN" :"Q", "CYS" :"C",
"GLY": "G", "PRO" : "P",
"ALA": "A", "VAL": "V",
"ILE": "I", "LEU": "L",
"MET": "M", "PHE": "F",
"TYR" :"Y", "TRP": "W" }
amino_acid_letters = "ACDEFGHIKLMNPQRSTVWY"
amino_acid_alternative_letters = "ARNDCQEGHILKMFPSTWYV"
amino_acid_extended_letters = "ACDEFGHIKLMNOPQRSTUVWYBJZX*-"
amino_acid_ambiguity = {
"A": "A",
"B": "ND",
"C": "C",
"D": "D",
"E": "E",
"F": "F",
"G": "G",
"H": "H",
"I": "I",
"K": "K",
"L": "L",
"M": "M",
"N": "N",
"P": "P",
"Q": "Q",
"R": "R",
"S": "S",
"T": "T",
"V": "V",
"W": "W",
"X": "ACDEFGHIKLMNPQRSTVWY",
"Y": "Y",
"Z": "QE",
"J": "IL",
'U': 'U',
'O': 'O',
}
extended_three_to_one = {
'2as': 'D', '3ah': 'H', '5hp': 'E', 'Acl': 'R', 'Agm': 'R', 'Aib': 'A', 'Ala': 'A', 'Alm': 'A',
'Alo': 'T', 'Aly': 'K', 'Arg': 'R', 'Arm': 'R', 'Asa': 'D', 'Asb': 'D', 'Ask': 'D', 'Asl': 'D',
'Asn': 'N', 'Asp': 'D', 'Asq': 'D', 'Asx': 'B', 'Aya': 'A', 'Bcs': 'C', 'Bhd': 'D', 'Bmt': 'T',
'Bnn': 'A', 'Buc': 'C', 'Bug': 'L', 'C5c': 'C', 'C6c': 'C', 'Ccs': 'C', 'Cea': 'C', 'Cgu': 'E',
'Chg': 'A', 'Cle': 'L', 'Cme': 'C', 'Csd': 'A', 'Cso': 'C', 'Csp': 'C', 'Css': 'C', 'Csw': 'C',
'Csx': 'C', 'Cxm': 'M', 'Cy1': 'C', 'Cy3': 'C', 'Cyg': 'C', 'Cym': 'C', 'Cyq': 'C', 'Cys': 'C',
'Dah': 'F', 'Dal': 'A', 'Dar': 'R', 'Das': 'D', 'Dcy': 'C', 'Dgl': 'E', 'Dgn': 'Q', 'Dha': 'A',
'Dhi': 'H', 'Dil': 'I', 'Div': 'V', 'Dle': 'L', 'Dly': 'K', 'Dnp': 'A', 'Dpn': 'F', 'Dpr': 'P',
'Dsn': 'S', 'Dsp': 'D', 'Dth': 'T', 'Dtr': 'W', 'Dty': 'Y', 'Dva': 'V', 'Efc': 'C', 'Fla': 'A',
'Fme': 'M', 'Ggl': 'E', 'Gl3': 'G', 'Gln': 'Q', 'Glu': 'E', 'Glx': 'Z', 'Gly': 'G', 'Glz': 'G',
'Gma': 'E', 'Gsc': 'G', 'Hac': 'A', 'Har': 'R', 'Hic': 'H', 'Hip': 'H', 'His': 'H', 'Hmr': 'R',
'Hpq': 'F', 'Htr': 'W', 'Hyp': 'P', 'Iil': 'I', 'Ile': 'I', 'Iyr': 'Y', 'Kcx': 'K', 'Leu': 'L',
'Llp': 'K', 'Lly': 'K', 'Ltr': 'W', 'Lym': 'K', 'Lys': 'K', 'Lyz': 'K', 'Maa': 'A', 'Men': 'N',
'Met': 'M', 'Mhs': 'H', 'Mis': 'S', 'Mle': 'L', 'Mpq': 'G', 'Msa': 'G', 'Mse': 'M', 'Mva': 'V',
'Nem': 'H', 'Nep': 'H', 'Nle': 'L', 'Nln': 'L', 'Nlp': 'L', 'Nmc': 'G', 'Oas': 'S', 'Ocs': 'C',
'Omt': 'M', 'Paq': 'Y', 'Pca': 'E', 'Pec': 'C', 'Phe': 'F', 'Phi': 'F', 'Phl': 'F', 'Pr3': 'C',
'Pro': 'P', 'Prr': 'A', 'Ptr': 'Y', 'Pyl': 'O', 'Sac': 'S', 'Sar': 'G', 'Sch': 'C', 'Scs': 'C',
'Scy': 'C', 'Sec': 'U', 'Sel': 'U', 'Sep': 'S', 'Ser': 'S', 'Set': 'S', 'Shc': 'C', 'Shr': 'K',
'Smc': 'C', 'Soc': 'C', 'Sty': 'Y', 'Sva': 'S', 'Ter': '*', 'Thr': 'T', 'Tih': 'A', 'Tpl': 'W',
'Tpo': 'T', 'Tpq': 'A', 'Trg': 'K', 'Tro': 'W', 'Trp': 'W', 'Tyb': 'Y', 'Tyq': 'Y', 'Tyr': 'Y',
'Tys': 'Y', 'Tyy': 'Y', 'Unk': 'X', 'Val': 'V', 'Xaa': 'X', 'Xer': 'X', 'Xle': 'J'}
amino_acid_names = {
'A': 'alanine',
'M': 'methionine',
'C': 'cysteine',
'N': 'asparagine',
'D': 'aspartic acid',
'P': 'proline',
'E': 'glutamic acid',
'Q': 'glutamine',
'F': 'phenylalanine',
'R': 'arginine',
'G': 'glycine',
'S': 'serine',
'H': 'histidine',
'T': 'threonine',
'I': 'isoleucine',
'V': 'valine',
'K': 'lysine',
'W': 'tryptophan',
'L': 'leucine',
'Y': 'tyrosine',
'B': 'aspartic acid or asparagine',
'J': 'leucine or isoleucine',
'X': 'unknown',
'Z': 'glutamic acid or glutamine',
'U': 'selenocysteine',
'O': 'pyrrolysine',
'*': 'translation stop',
'-': 'gap'
}
| bases = ['AC', 'G', 'T']
dna_letters = 'GATC'
dna_extended_letters = 'GATCRYWSMKHBVDN'
rna_letters = 'GAUC'
rna_extended_letters = 'GAUCRYWSMKHBVDN'
dna_ambiguity = {'A': 'A', 'C': 'C', 'G': 'G', 'T': 'T', 'M': 'AC', 'R': 'AG', 'W': 'AT', 'S': 'CG', 'Y': 'CT', 'K': 'GT', 'V': 'ACG', 'H': 'ACT', 'D': 'AGT', 'B': 'CGT', 'X': 'GATC', 'N': 'GATC'}
rna_ambiguity = {'A': 'A', 'C': 'C', 'G': 'G', 'U': 'U', 'M': 'AC', 'R': 'AG', 'W': 'AU', 'S': 'CG', 'Y': 'CU', 'K': 'GU', 'V': 'ACG', 'H': 'ACU', 'D': 'AGU', 'B': 'CGU', 'X': 'GAUC', 'N': 'GAUC'}
nucleotide_names = {'A': 'Adenosine', 'C': 'Cytidine', 'G': 'Guanine', 'T': 'Thymidine', 'U': 'Uracil', 'R': 'G A (puRine)', 'Y': 'T C (pYrimidine)', 'K': 'G T (Ketone)', 'M': 'A C (aMino group)', 'S': 'G C (Strong interaction)', 'W': 'A T (Weak interaction)', 'B': 'G T C (not A) (B comes after A)', 'D': 'G A T (not C) (D comes after C)', 'H': 'A C T (not G) (H comes after G)', 'V': 'G C A (not T, not U) (V comes after U)', 'N': 'A G C T (aNy)', '-': 'gap'}
aminoacids = ['R', 'H', 'K', 'D', 'E', 'S', 'T', 'N', 'Q', 'C', 'G', 'P', 'A', 'V', 'I', 'L', 'M', 'F', 'Y', 'W']
three_letters = {'ARG': 'R', 'HIS': 'H', 'LYS': 'K', 'ASP': 'D', 'GLU': 'E', 'SER': 'S', 'THR': 'T', 'ASN': 'N', 'GLN': 'Q', 'CYS': 'C', 'GLY': 'G', 'PRO': 'P', 'ALA': 'A', 'VAL': 'V', 'ILE': 'I', 'LEU': 'L', 'MET': 'M', 'PHE': 'F', 'TYR': 'Y', 'TRP': 'W'}
amino_acid_letters = 'ACDEFGHIKLMNPQRSTVWY'
amino_acid_alternative_letters = 'ARNDCQEGHILKMFPSTWYV'
amino_acid_extended_letters = 'ACDEFGHIKLMNOPQRSTUVWYBJZX*-'
amino_acid_ambiguity = {'A': 'A', 'B': 'ND', 'C': 'C', 'D': 'D', 'E': 'E', 'F': 'F', 'G': 'G', 'H': 'H', 'I': 'I', 'K': 'K', 'L': 'L', 'M': 'M', 'N': 'N', 'P': 'P', 'Q': 'Q', 'R': 'R', 'S': 'S', 'T': 'T', 'V': 'V', 'W': 'W', 'X': 'ACDEFGHIKLMNPQRSTVWY', 'Y': 'Y', 'Z': 'QE', 'J': 'IL', 'U': 'U', 'O': 'O'}
extended_three_to_one = {'2as': 'D', '3ah': 'H', '5hp': 'E', 'Acl': 'R', 'Agm': 'R', 'Aib': 'A', 'Ala': 'A', 'Alm': 'A', 'Alo': 'T', 'Aly': 'K', 'Arg': 'R', 'Arm': 'R', 'Asa': 'D', 'Asb': 'D', 'Ask': 'D', 'Asl': 'D', 'Asn': 'N', 'Asp': 'D', 'Asq': 'D', 'Asx': 'B', 'Aya': 'A', 'Bcs': 'C', 'Bhd': 'D', 'Bmt': 'T', 'Bnn': 'A', 'Buc': 'C', 'Bug': 'L', 'C5c': 'C', 'C6c': 'C', 'Ccs': 'C', 'Cea': 'C', 'Cgu': 'E', 'Chg': 'A', 'Cle': 'L', 'Cme': 'C', 'Csd': 'A', 'Cso': 'C', 'Csp': 'C', 'Css': 'C', 'Csw': 'C', 'Csx': 'C', 'Cxm': 'M', 'Cy1': 'C', 'Cy3': 'C', 'Cyg': 'C', 'Cym': 'C', 'Cyq': 'C', 'Cys': 'C', 'Dah': 'F', 'Dal': 'A', 'Dar': 'R', 'Das': 'D', 'Dcy': 'C', 'Dgl': 'E', 'Dgn': 'Q', 'Dha': 'A', 'Dhi': 'H', 'Dil': 'I', 'Div': 'V', 'Dle': 'L', 'Dly': 'K', 'Dnp': 'A', 'Dpn': 'F', 'Dpr': 'P', 'Dsn': 'S', 'Dsp': 'D', 'Dth': 'T', 'Dtr': 'W', 'Dty': 'Y', 'Dva': 'V', 'Efc': 'C', 'Fla': 'A', 'Fme': 'M', 'Ggl': 'E', 'Gl3': 'G', 'Gln': 'Q', 'Glu': 'E', 'Glx': 'Z', 'Gly': 'G', 'Glz': 'G', 'Gma': 'E', 'Gsc': 'G', 'Hac': 'A', 'Har': 'R', 'Hic': 'H', 'Hip': 'H', 'His': 'H', 'Hmr': 'R', 'Hpq': 'F', 'Htr': 'W', 'Hyp': 'P', 'Iil': 'I', 'Ile': 'I', 'Iyr': 'Y', 'Kcx': 'K', 'Leu': 'L', 'Llp': 'K', 'Lly': 'K', 'Ltr': 'W', 'Lym': 'K', 'Lys': 'K', 'Lyz': 'K', 'Maa': 'A', 'Men': 'N', 'Met': 'M', 'Mhs': 'H', 'Mis': 'S', 'Mle': 'L', 'Mpq': 'G', 'Msa': 'G', 'Mse': 'M', 'Mva': 'V', 'Nem': 'H', 'Nep': 'H', 'Nle': 'L', 'Nln': 'L', 'Nlp': 'L', 'Nmc': 'G', 'Oas': 'S', 'Ocs': 'C', 'Omt': 'M', 'Paq': 'Y', 'Pca': 'E', 'Pec': 'C', 'Phe': 'F', 'Phi': 'F', 'Phl': 'F', 'Pr3': 'C', 'Pro': 'P', 'Prr': 'A', 'Ptr': 'Y', 'Pyl': 'O', 'Sac': 'S', 'Sar': 'G', 'Sch': 'C', 'Scs': 'C', 'Scy': 'C', 'Sec': 'U', 'Sel': 'U', 'Sep': 'S', 'Ser': 'S', 'Set': 'S', 'Shc': 'C', 'Shr': 'K', 'Smc': 'C', 'Soc': 'C', 'Sty': 'Y', 'Sva': 'S', 'Ter': '*', 'Thr': 'T', 'Tih': 'A', 'Tpl': 'W', 'Tpo': 'T', 'Tpq': 'A', 'Trg': 'K', 'Tro': 'W', 'Trp': 'W', 'Tyb': 'Y', 'Tyq': 'Y', 'Tyr': 'Y', 'Tys': 'Y', 'Tyy': 'Y', 'Unk': 'X', 'Val': 'V', 'Xaa': 'X', 'Xer': 'X', 'Xle': 'J'}
amino_acid_names = {'A': 'alanine', 'M': 'methionine', 'C': 'cysteine', 'N': 'asparagine', 'D': 'aspartic acid', 'P': 'proline', 'E': 'glutamic acid', 'Q': 'glutamine', 'F': 'phenylalanine', 'R': 'arginine', 'G': 'glycine', 'S': 'serine', 'H': 'histidine', 'T': 'threonine', 'I': 'isoleucine', 'V': 'valine', 'K': 'lysine', 'W': 'tryptophan', 'L': 'leucine', 'Y': 'tyrosine', 'B': 'aspartic acid or asparagine', 'J': 'leucine or isoleucine', 'X': 'unknown', 'Z': 'glutamic acid or glutamine', 'U': 'selenocysteine', 'O': 'pyrrolysine', '*': 'translation stop', '-': 'gap'} |
expected_output = {
"bgp_id": 5918,
"vrf": {
"default": {
"neighbor": {
"192.168.10.253": {
"address_family": {
"vpnv4 unicast": {
"activity_paths": "23637710/17596802",
"activity_prefixes": "11724891/9708585",
"as": 65555,
"attribute_entries": "5101/4700",
"bgp_table_version": 33086714,
"cache_entries": {
"filter-list": {"memory_usage": 0, "total_entries": 0},
"route-map": {"memory_usage": 0, "total_entries": 0},
},
"community_entries": {
"memory_usage": 60120,
"total_entries": 2303,
},
"entries": {
"AS-PATH": {"memory_usage": 4824, "total_entries": 201},
"rrinfo": {"memory_usage": 20080, "total_entries": 502},
},
"input_queue": 0,
"local_as": 5918,
"msg_rcvd": 619,
"msg_sent": 695,
"output_queue": 0,
"path": {"memory_usage": 900480, "total_entries": 7504},
"prefixes": {"memory_usage": 973568, "total_entries": 3803},
"route_identifier": "192.168.10.254",
"routing_table_version": 33086714,
"scan_interval": 60,
"state_pfxrcd": "100",
"tbl_ver": 33086714,
"total_memory": 3305736,
"up_down": "05:07:45",
"version": 4,
}
}
}
}
}
},
}
| expected_output = {'bgp_id': 5918, 'vrf': {'default': {'neighbor': {'192.168.10.253': {'address_family': {'vpnv4 unicast': {'activity_paths': '23637710/17596802', 'activity_prefixes': '11724891/9708585', 'as': 65555, 'attribute_entries': '5101/4700', 'bgp_table_version': 33086714, 'cache_entries': {'filter-list': {'memory_usage': 0, 'total_entries': 0}, 'route-map': {'memory_usage': 0, 'total_entries': 0}}, 'community_entries': {'memory_usage': 60120, 'total_entries': 2303}, 'entries': {'AS-PATH': {'memory_usage': 4824, 'total_entries': 201}, 'rrinfo': {'memory_usage': 20080, 'total_entries': 502}}, 'input_queue': 0, 'local_as': 5918, 'msg_rcvd': 619, 'msg_sent': 695, 'output_queue': 0, 'path': {'memory_usage': 900480, 'total_entries': 7504}, 'prefixes': {'memory_usage': 973568, 'total_entries': 3803}, 'route_identifier': '192.168.10.254', 'routing_table_version': 33086714, 'scan_interval': 60, 'state_pfxrcd': '100', 'tbl_ver': 33086714, 'total_memory': 3305736, 'up_down': '05:07:45', 'version': 4}}}}}}} |
# File: proofpoint_consts.py
# Copyright (c) 2017-2020 Splunk Inc.
#
# Licensed under Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt)
#
PP_API_BASE_URL = "https://tap-api-v2.proofpoint.com"
PP_API_PATH_CLICKS_BLOCKED = "/v2/siem/clicks/blocked"
PP_API_PATH_CLICKS_PERMITTED = "/v2/siem/clicks/permitted"
PP_API_PATH_MESSAGES_BLOCKED = "/v2/siem/messages/blocked"
PP_API_PATH_MESSAGES_DELIVERED = "/v2/siem/messages/delivered"
PP_API_PATH_ISSUES = "/v2/siem/issues"
PP_API_PATH_ALL = "/v2/siem/all"
PP_API_PATH_CAMPAIGN = "/v2/campaign/{}"
PP_API_PATH_FORENSICS = "/v2/forensics"
PP_API_PATH_DECODE = "/v2/url/decode"
# Constants relating to 'get_error_message_from_exception'
ERR_CODE_MSG = "Error code unavailable"
ERR_MSG_UNAVAILABLE = "Error message unavailable. Please check the asset configuration and|or action parameters"
PARSE_ERR_MSG = "Unable to parse the error message. Please check the asset configuration and|or action parameters"
TYPE_ERR_MSG = "Error occurred while connecting to the Proofpoint TAP Server. Please check the asset configuration and|or action parameters."
ERR_MSG_FORMAT_WITH_CODE = "Error Code: {}. Error Message: {}"
ERR_MSG_FORMAT_WITHOUT_CODE = "Error Message: {}"
# Constants relating to 'validate_integer'
INVALID_INTEGER_ERR_MSG = "Please provide a valid integer value in the {}"
INVALID_NON_NEGATIVE_INTEGER_ERR_MSG = "Please provide a valid non-negative integer value in the {}"
INITIAL_INGESTION_WINDOW_KEY = "'initial_ingestion_window' configuration parameter"
# Constant relating to 'handle_py_ver_compat_for_input_str'
PY_2TO3_ERR_MSG = "Error occurred while handling python 2to3 compatibility for the input string"
# Constant relating to fetching the python major version
ERR_FETCHING_PYTHON_VERSION = "Error occurred while fetching the Phantom server's Python major version"
# Constants relating to error messages while processing response from server
EMPTY_RESPONSE_MSG = "Status code: {}. Empty response and no information in the header"
HTML_RESPONSE_PARSE_ERR_MSG = "Cannot parse error details"
JSON_PARSE_ERR_MSG = 'Unable to parse JSON response. Error: {}'
SERVER_ERR_MSG = 'Error from server. Status Code: {} Data from server: {}'
SERVER_ERR_CANT_PROCESS_RESPONSE_MSG = "Can't process response from server. Status Code: {} Data from server: {}"
CONNECTION_REFUSED_ERR_MSG = "Error Details: Connection Refused from the Server"
SERVER_CONNECTION_ERR_MSG = "Error Connecting to server. Details: {}"
| pp_api_base_url = 'https://tap-api-v2.proofpoint.com'
pp_api_path_clicks_blocked = '/v2/siem/clicks/blocked'
pp_api_path_clicks_permitted = '/v2/siem/clicks/permitted'
pp_api_path_messages_blocked = '/v2/siem/messages/blocked'
pp_api_path_messages_delivered = '/v2/siem/messages/delivered'
pp_api_path_issues = '/v2/siem/issues'
pp_api_path_all = '/v2/siem/all'
pp_api_path_campaign = '/v2/campaign/{}'
pp_api_path_forensics = '/v2/forensics'
pp_api_path_decode = '/v2/url/decode'
err_code_msg = 'Error code unavailable'
err_msg_unavailable = 'Error message unavailable. Please check the asset configuration and|or action parameters'
parse_err_msg = 'Unable to parse the error message. Please check the asset configuration and|or action parameters'
type_err_msg = 'Error occurred while connecting to the Proofpoint TAP Server. Please check the asset configuration and|or action parameters.'
err_msg_format_with_code = 'Error Code: {}. Error Message: {}'
err_msg_format_without_code = 'Error Message: {}'
invalid_integer_err_msg = 'Please provide a valid integer value in the {}'
invalid_non_negative_integer_err_msg = 'Please provide a valid non-negative integer value in the {}'
initial_ingestion_window_key = "'initial_ingestion_window' configuration parameter"
py_2_to3_err_msg = 'Error occurred while handling python 2to3 compatibility for the input string'
err_fetching_python_version = "Error occurred while fetching the Phantom server's Python major version"
empty_response_msg = 'Status code: {}. Empty response and no information in the header'
html_response_parse_err_msg = 'Cannot parse error details'
json_parse_err_msg = 'Unable to parse JSON response. Error: {}'
server_err_msg = 'Error from server. Status Code: {} Data from server: {}'
server_err_cant_process_response_msg = "Can't process response from server. Status Code: {} Data from server: {}"
connection_refused_err_msg = 'Error Details: Connection Refused from the Server'
server_connection_err_msg = 'Error Connecting to server. Details: {}' |
def caeser(message, key):
x = list((map(ord,message)))
def foo(a):
if 96 < a < 123:
if a + key < 123:
return chr(a + key)
else:
return chr(a + key - 123 + 97)
else:
return chr(a)
return ''.join(map(foo,x)).upper() | def caeser(message, key):
x = list(map(ord, message))
def foo(a):
if 96 < a < 123:
if a + key < 123:
return chr(a + key)
else:
return chr(a + key - 123 + 97)
else:
return chr(a)
return ''.join(map(foo, x)).upper() |
# Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).
#
# For example, this binary tree [1,2,2,3,4,4,3] is symmetric:
#
# 1
# / \
# 2 2
# / \ / \
# 3 4 4 3
class TreeNode:
def __init__(self, x):
self.val = x
self.left = None
self.right = None
class Solution:
def isSymmetric(self, root):
if not root:
return True
def helper(node1, node2):
if not node1 and not node2:
return True
if not node1 or not node2:
return False
if node1.val != node2.val:
return False
return helper(node1.left, node2.right) and helper(node1.right, node2.left)
return helper(root.left, root.right)
def isSymmetricIterative(self, root):
if not root:
return True
stack = []
stack.append([root.left, root.right])
while len(stack):
node1, node2 = stack.pop()
if not node1 and not node2:
continue
if not node1 or not node2:
return False
if node1.val != node2.val:
return False
stack.append([node1.left, node2.right])
stack.append([node1.right, node2.left])
return True
| class Treenode:
def __init__(self, x):
self.val = x
self.left = None
self.right = None
class Solution:
def is_symmetric(self, root):
if not root:
return True
def helper(node1, node2):
if not node1 and (not node2):
return True
if not node1 or not node2:
return False
if node1.val != node2.val:
return False
return helper(node1.left, node2.right) and helper(node1.right, node2.left)
return helper(root.left, root.right)
def is_symmetric_iterative(self, root):
if not root:
return True
stack = []
stack.append([root.left, root.right])
while len(stack):
(node1, node2) = stack.pop()
if not node1 and (not node2):
continue
if not node1 or not node2:
return False
if node1.val != node2.val:
return False
stack.append([node1.left, node2.right])
stack.append([node1.right, node2.left])
return True |
def adder(good, bad, ugly, **kwargs):
tmp = good + bad + ugly
for k in kwargs.keys():
tmp += kwargs[k]
return tmp
| def adder(good, bad, ugly, **kwargs):
tmp = good + bad + ugly
for k in kwargs.keys():
tmp += kwargs[k]
return tmp |
def somar():
a = float(input("digite um valor: "))
b = float(input("digite outro valor: "))
soma = a + b
print(soma)
'''import calculadora
ou
form calculadora import somar #se eu colocar * no somar, nao precisa "calculadora".somar
calculadora.somar()'''
somar()
| def somar():
a = float(input('digite um valor: '))
b = float(input('digite outro valor: '))
soma = a + b
print(soma)
'import calculadora\nou \nform calculadora import somar #se eu colocar * no somar, nao precisa "calculadora".somar\ncalculadora.somar()'
somar() |
class Trie:
def __init__(self):
self.root = Node()
def search(self, s):
node = self.root
for c in s:
node = node.next[ord(c) - ord('a')]
if not node:
return False
return node.next[26] != None
def insert(self, s):
node = self.root
for c in s:
i = ord(c) - ord('a')
if not node.next[i]:
node.next[i] = Node()
node = node.next[i]
node.next[26] = Node()
def startsWith(self, s):
node = self.root
for c in s:
node = node.next[ord(c) - ord('a')]
if not node:
return False
return True
class Node:
def __init__(self):
self.next = [ None for i in range(27) ]
s = Trie()
s.insert("apple")
s.insert("banana")
print(s.search("app"))
print(s.search("bananananana"))
print(s.search("banana"))
print(s.startsWith("ban"))
| class Trie:
def __init__(self):
self.root = node()
def search(self, s):
node = self.root
for c in s:
node = node.next[ord(c) - ord('a')]
if not node:
return False
return node.next[26] != None
def insert(self, s):
node = self.root
for c in s:
i = ord(c) - ord('a')
if not node.next[i]:
node.next[i] = node()
node = node.next[i]
node.next[26] = node()
def starts_with(self, s):
node = self.root
for c in s:
node = node.next[ord(c) - ord('a')]
if not node:
return False
return True
class Node:
def __init__(self):
self.next = [None for i in range(27)]
s = trie()
s.insert('apple')
s.insert('banana')
print(s.search('app'))
print(s.search('bananananana'))
print(s.search('banana'))
print(s.startsWith('ban')) |
# @TODO complete the point class
class Point:
def __init__(self, x, y):
self.x = x
self.y = y
def distanceFrom(self, p2):
return ((self.x - p2.x)**2 + (self.y - p2.y)**2)**0.5
# @todo complete the Line class
class Line:
def __init__(self, p1, p2):
self.p1 = p1
self.p2 = p2
def getLength(self):
return self.p1.distanceFrom(self.p2)
# @TODO complete The triangle class
class Triangle:
def __init__(self, l1, l2, l3):
self.l1 = l1
self.l2 = l2
self.l3 = l3
def getPerimeter(self):
return self.l1.getLength() + self.l2.getLength() \
+ self.l3.getLength()
# @TODO Test classes
def main():
p1 = Point(0, 0)
p2 = Point(0, 4)
p3 = Point(3, 0)
print("distance p1 from p2")
print(p2.distanceFrom(p1))
# test class Line
l1 = Line(p1, p2)
l2 = Line(p2, p3)
l3 = Line(p3, p1)
print('Length of L1:', l1.getLength())
triangle = Triangle(l1, l2, l3)
print('Triangle:', triangle.getPerimeter())
if __name__ == "__main__":
# test class point
main()
| class Point:
def __init__(self, x, y):
self.x = x
self.y = y
def distance_from(self, p2):
return ((self.x - p2.x) ** 2 + (self.y - p2.y) ** 2) ** 0.5
class Line:
def __init__(self, p1, p2):
self.p1 = p1
self.p2 = p2
def get_length(self):
return self.p1.distanceFrom(self.p2)
class Triangle:
def __init__(self, l1, l2, l3):
self.l1 = l1
self.l2 = l2
self.l3 = l3
def get_perimeter(self):
return self.l1.getLength() + self.l2.getLength() + self.l3.getLength()
def main():
p1 = point(0, 0)
p2 = point(0, 4)
p3 = point(3, 0)
print('distance p1 from p2')
print(p2.distanceFrom(p1))
l1 = line(p1, p2)
l2 = line(p2, p3)
l3 = line(p3, p1)
print('Length of L1:', l1.getLength())
triangle = triangle(l1, l2, l3)
print('Triangle:', triangle.getPerimeter())
if __name__ == '__main__':
main() |
class Solution:
def decodeString(self, s: str) -> str:
res, _ = self.dfs(s, 0)
return res
def dfs(self, s, i):
res = ''
while i < len(s) and s[i] != ']':
if s[i].isdigit():
times = 0
while i < len(s) and s[i].isdigit():
times = times*10 + int(s[i])
i += 1
i += 1
decodeString, i = self.dfs(s, i)
i += 1
res += times*decodeString
else:
res += s[i]
i += 1
return res, i
| class Solution:
def decode_string(self, s: str) -> str:
(res, _) = self.dfs(s, 0)
return res
def dfs(self, s, i):
res = ''
while i < len(s) and s[i] != ']':
if s[i].isdigit():
times = 0
while i < len(s) and s[i].isdigit():
times = times * 10 + int(s[i])
i += 1
i += 1
(decode_string, i) = self.dfs(s, i)
i += 1
res += times * decodeString
else:
res += s[i]
i += 1
return (res, i) |
class Node:
def __init__(self, dado=None) -> None:
self.__dado: object = dado
self.__prox = None
@property
def dado(self) -> object:
return self.__dado
@property
def prox(self) -> object:
return self.__prox
@dado.setter
def dado(self, novoDado) -> None:
self.__dado = novoDado
@prox.setter
def prox(self, novoProx) -> None:
self.__prox = novoProx
def __str__(self) -> str:
return str(self.__dado)
| class Node:
def __init__(self, dado=None) -> None:
self.__dado: object = dado
self.__prox = None
@property
def dado(self) -> object:
return self.__dado
@property
def prox(self) -> object:
return self.__prox
@dado.setter
def dado(self, novoDado) -> None:
self.__dado = novoDado
@prox.setter
def prox(self, novoProx) -> None:
self.__prox = novoProx
def __str__(self) -> str:
return str(self.__dado) |
def is_palindrome(x):
s = str(x)
return s == s[::-1]
def solve():
products = []
for i in range(100, 1000):
for j in range(i, 1000):
products.append(i * j)
products = sorted((i * j for i in range(100, 1000) for j in range(i, 1000)), reverse = True)
for p in products:
if is_palindrome(p):
return p
if __name__ == '__main__':
print(solve())
| def is_palindrome(x):
s = str(x)
return s == s[::-1]
def solve():
products = []
for i in range(100, 1000):
for j in range(i, 1000):
products.append(i * j)
products = sorted((i * j for i in range(100, 1000) for j in range(i, 1000)), reverse=True)
for p in products:
if is_palindrome(p):
return p
if __name__ == '__main__':
print(solve()) |
def format_metric(text: str):
return text.replace('.', '_')
def format_period(text: str):
return text.split(',', 1)[0]
def try_or_else(op, default):
try:
return op()
except:
return default
| def format_metric(text: str):
return text.replace('.', '_')
def format_period(text: str):
return text.split(',', 1)[0]
def try_or_else(op, default):
try:
return op()
except:
return default |
class QuestRedeemResponsePacket:
def __init__(self):
self.type = "QUESTREDEEMRESPONSE"
self.ok = False
self.message = ""
def read(self, reader):
self.ok = reader.readBool()
self.message = reader.readStr()
| class Questredeemresponsepacket:
def __init__(self):
self.type = 'QUESTREDEEMRESPONSE'
self.ok = False
self.message = ''
def read(self, reader):
self.ok = reader.readBool()
self.message = reader.readStr() |
list1 = ['abcd', 786, 2.33, 'baidu', 70.2]
tinylist = [123, 'baidu']
print(list1)
print(list1[0])
print(list1[1:3])
print(list1[2:])
print(tinylist * 2)
print(list1 + tinylist)
| list1 = ['abcd', 786, 2.33, 'baidu', 70.2]
tinylist = [123, 'baidu']
print(list1)
print(list1[0])
print(list1[1:3])
print(list1[2:])
print(tinylist * 2)
print(list1 + tinylist) |
'''
https://leetcode.com/problems/bulls-and-cows/
299. Bulls and Cows
You are playing the Bulls and Cows game with your friend.
You write down a secret number and ask your friend to guess what the number is.
When your friend makes a guess, you provide a hint with the following info:
The number of "bulls", which are digits in the guess that are in the correct position.
The number of "cows", which are digits in the guess that are in your secret number but are located in the wrong position.
Specifically, the non-bull digits in the guess that could be rearranged such that they become bulls.
Given the secret number secret and your friend's guess guess, return the hint for your friend's guess.
The hint should be formatted as "xAyB", where x is the number of bulls and y is the number of cows. Note that both secret
and guess may contain duplicate digits.
'''
class Solution:
def getHint(self, secret: str, guess: str) -> str:
bulls_count = 0
cows_count = 0
secret_digits_to_match = {}
# we first map each digit in secret to its count in secret
for digit in secret:
if digit in secret_digits_to_match:
secret_digits_to_match[digit] += 1
else:
secret_digits_to_match[digit] = 1
for i in range(0, len(secret)):
if secret[i] == guess[i]:
# matched secret[i] to guess[i] so we need
# reduce the count of digits in secret to match
secret_digits_to_match[secret[i]] -= 1
bulls_count += 1
# now that we matched all the digits in secrets to the matching ones (in terms of value and position)
# in guess, we need to check if there are characters in guess that are in secret but same index as anything
# in bulls_indices
for j in range(0, len(guess)):
if secret[j] != guess[j] and guess[j] in secret_digits_to_match and secret_digits_to_match[guess[j]] > 0:
secret_digits_to_match[guess[j]] -= 1
cows_count += 1
return str(bulls_count) + "A" + str(cows_count) + "B"
# secret = "1807"
# guess = "7810"
# secret = "1123"
# guess = "0111"
secret = "11"
guess = "10"
print(Solution().getHint(secret, guess))
| """
https://leetcode.com/problems/bulls-and-cows/
299. Bulls and Cows
You are playing the Bulls and Cows game with your friend.
You write down a secret number and ask your friend to guess what the number is.
When your friend makes a guess, you provide a hint with the following info:
The number of "bulls", which are digits in the guess that are in the correct position.
The number of "cows", which are digits in the guess that are in your secret number but are located in the wrong position.
Specifically, the non-bull digits in the guess that could be rearranged such that they become bulls.
Given the secret number secret and your friend's guess guess, return the hint for your friend's guess.
The hint should be formatted as "xAyB", where x is the number of bulls and y is the number of cows. Note that both secret
and guess may contain duplicate digits.
"""
class Solution:
def get_hint(self, secret: str, guess: str) -> str:
bulls_count = 0
cows_count = 0
secret_digits_to_match = {}
for digit in secret:
if digit in secret_digits_to_match:
secret_digits_to_match[digit] += 1
else:
secret_digits_to_match[digit] = 1
for i in range(0, len(secret)):
if secret[i] == guess[i]:
secret_digits_to_match[secret[i]] -= 1
bulls_count += 1
for j in range(0, len(guess)):
if secret[j] != guess[j] and guess[j] in secret_digits_to_match and (secret_digits_to_match[guess[j]] > 0):
secret_digits_to_match[guess[j]] -= 1
cows_count += 1
return str(bulls_count) + 'A' + str(cows_count) + 'B'
secret = '11'
guess = '10'
print(solution().getHint(secret, guess)) |
current = 0
def f():
global current
if current == 50:
return
print(current)
current += 1
f()
f()
| current = 0
def f():
global current
if current == 50:
return
print(current)
current += 1
f()
f() |
#factorial.py
n=int(input("enter number.."))
#calculating factorial of n
f=1
for i in range(1,n+1):
f=f*i
print ('factorial of {} = {}'.format(n,f))
| n = int(input('enter number..'))
f = 1
for i in range(1, n + 1):
f = f * i
print('factorial of {} = {}'.format(n, f)) |
def hitung():
umur=int(input("masukan umur kamu:"))
jj = umur *369* 24 * 60 * 60
print(f"kamu sudah hidup selama{jj}.detik")
print("Selamat datang di program hitung detik umur")
hitung()
| def hitung():
umur = int(input('masukan umur kamu:'))
jj = umur * 369 * 24 * 60 * 60
print(f'kamu sudah hidup selama{jj}.detik')
print('Selamat datang di program hitung detik umur')
hitung() |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.