ETH Price: $3,277.18 (-0.08%)
Gas: 13 Gwei

Token

EnreachDAO (NRCH)
 

Overview

Max Total Supply

10,000,000 NRCH

Holders

112

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
798.4 NRCH

Value
$0.00
0x677d4a619af2869b1ad63ae06232b1c22868913c
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Vyper_contract

Compiler Version
vyper:0.2.8

Optimization Enabled:
N/A

Other Settings:
GNU GPLv3 license

Contract Source Code (Vyper language format)

# @version ^0.2.8
# @dev Implementation of multi-layers space and time rebasing ERC-20 token standard.
# @dev copyright [email protected] and [email protected]
# based on https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md

from vyper.interfaces import ERC20

implements: ERC20

event Transfer:
    sender: indexed(address)
    receiver: indexed(address)
    value: uint256

event Approval:
    owner: indexed(address)
    spender: indexed(address)
    value: uint256

event ReceivedEther:
    sender: indexed(address)
    value: uint256

event OwnershipTransferred:
    previousOwner: indexed(address)
    newOwner: indexed(address)

# EIP-20 compliant name symbol and decimals
name: public(String[64])
symbol: public(String[32])
decimals: public(uint256)

# additional decimals used for calculations
scale: public(uint256)

# exponent
expanse: public(int128)
extent: public(uint256)
extent_max: public(uint256)

# temporal timer
initpulse: public(uint256)
nextpulse: public(uint256)

struct Account:
    amount: uint256
    lode: uint256
    expanse: int128


struct Lode:
    total: uint256
    total_e: uint256
    expanse: int128
    tax_id: uint256
    itaxfree: bool
    etaxfree: bool
   
NUM_OF_TEMPORAL_LODES: constant(uint256) = 25
STAKING_LODE: constant(uint256) = NUM_OF_TEMPORAL_LODES  # 25
FROZEN_LODE: constant(uint256) = STAKING_LODE + 1 #26
RESERVE_LODE: constant(uint256) = FROZEN_LODE + 1 #27
SAFE_LODE: constant(uint256) = RESERVE_LODE + 1 #28
RESERVED1_LODE: constant(uint256) = SAFE_LODE + 1 #29
NUM_OF_LODES: constant(uint256) = 32 
NUM_OF_TAX_POLICIES: constant(uint256) = 4


owner: address
lastBlockNumber: uint256
lastTxOrigin: address
currentLode: public(uint256)
transferLocked: public(bool)
taxOn: public(bool)
temporal_tax_num: public(uint256)
temporal_tax_num2: uint256
temporal_tax_den: public(uint256)
tax_numerators: public(uint256[NUM_OF_LODES][NUM_OF_TAX_POLICIES])
tax_denominator: public(uint256[NUM_OF_TAX_POLICIES])
lodes: Lode[NUM_OF_LODES]

accounts: HashMap[address, Account]
allowances: HashMap[address, HashMap[address, uint256]]
privileged: HashMap[address, bool]
arbtrust: HashMap[address, bool]
arbProtect: bool


@internal
def _deallocate0(_debtor: address) -> uint256:
    """
    @dev deallocate all funds from a wallet
    @param _debtor The address to deallocate all the funds from.
    @return An uint256 specifying the amount of scaled tokens remaining
    """
    debtor: Account = self.accounts[_debtor]
    slode: Lode = self.lodes[debtor.lode]
    amount_e: uint256 = debtor.amount
    if amount_e == 0:
        self.accounts[_debtor] = empty(Account)
        return 0
    if debtor.expanse != slode.expanse:
        amount_e = shift(debtor.amount, debtor.expanse - slode.expanse)
    amount_s: uint256 = amount_e * slode.total / slode.total_e
    self.accounts[_debtor] = empty(Account)
    self.lodes[debtor.lode].total -= amount_s
    self.lodes[debtor.lode].total_e -= amount_e
    return amount_s

@internal
def _deallocate(_debtor: address, _amount_s: uint256):
    """
    @dev deallocate funds from a wallet
    @param _debtor The address to deallocate the funds from.
    @param _amount_s scaled amount of funds.
    """
    debtor: Account = self.accounts[_debtor]
    slode: Lode = self.lodes[debtor.lode]
    if debtor.expanse != slode.expanse:
        self.accounts[_debtor].amount = shift(debtor.amount, debtor.expanse - slode.expanse)
        self.accounts[_debtor].expanse = slode.expanse
    amount_e: uint256 = _amount_s * slode.total_e / slode.total
    self.accounts[_debtor].amount -= amount_e
    if self.accounts[_debtor].amount < self.scale:
        amount_e += self.accounts[_debtor].amount
        self.accounts[_debtor].amount = 0
        amount_s: uint256 = amount_e * slode.total / slode.total_e
        self.lodes[debtor.lode].total -= amount_s
    else:
        self.lodes[debtor.lode].total -= _amount_s
    self.lodes[debtor.lode].total_e -= amount_e
    if self.accounts[_debtor].amount == 0:
        self.accounts[_debtor] = empty(Account)


@internal
def _allocate(_creditor: address, _amount_s: uint256):
    """
    @dev deallocate funds from a wallet and from a lode
    @param _creditor The address to allocate the funds to.
    @param _amount_s The address to allocate the scaled funds to.
    """
    creditor: Account = self.accounts[_creditor]
    if (creditor.amount ==0) and (creditor.lode ==0):
        if _creditor.is_contract:
            creditor.lode = FROZEN_LODE
            self.accounts[_creditor].lode = FROZEN_LODE
        else:
            creditor.lode = self.currentLode
            self.accounts[_creditor].lode = self.currentLode
    dlode: Lode = self.lodes[creditor.lode]
    if creditor.amount != 0:
        self.accounts[_creditor].amount = shift(creditor.amount, creditor.expanse - dlode.expanse)
    self.accounts[_creditor].expanse = dlode.expanse
    if dlode.total_e == 0:
        self.lodes[creditor.lode].total_e += _amount_s
        self.accounts[_creditor].amount += _amount_s
    else:
        amount_e: uint256 = _amount_s * dlode.total_e / dlode.total
        self.lodes[creditor.lode].total_e += amount_e
        self.accounts[_creditor].amount += amount_e
    self.lodes[creditor.lode].total += _amount_s



@external
def setLode(_wallet:address, _lode:uint256):
    """
    @dev set the lode of a wallet
    @param _wallet The address of the wallet
    @param _lode The lode to which to allocate the wallet
    """
    if (msg.sender == self.owner):
        assert (_lode < NUM_OF_LODES) #, "Out of bounds lode"
    elif (self.privileged[msg.sender] == True):
        assert _lode < NUM_OF_TEMPORAL_LODES #, "Out of bounds lode or access to priviledged lode"
    else:
        raise "Unauthorized"
    amount: uint256 = self._deallocate0(_wallet)
    self.accounts[_wallet].lode = _lode
    self._allocate(_wallet, amount)

@external
def setTaxStatus(_status: bool):
    """
    @dev tax Status (On->True or Off)
    @param _status status of tax
    """
    assert msg.sender == self.owner
    self.taxOn = _status

@external
def setTax(_tax_id:uint256, _tax_numerators:uint256[NUM_OF_LODES], _tax_denominator:uint256):
    """
    @dev set the taxes of a tax_id
    @param _tax_id the tax id 
    @param _tax_numerators Tax numerator per lode
    @param _tax_denominator Tax denominator
    """
    assert (msg.sender == self.owner)
    self.tax_numerators[_tax_id] = _tax_numerators
    self.tax_denominator[_tax_id] = _tax_denominator

@external
def setLodeTaxId(_lode:uint256, _tax_id:uint256):
    """
    @dev set the tax_id of a lode
    @param _lode the lode number
    @param _tax_id Tax id
    """
    assert (msg.sender == self.owner)
    self.lodes[_lode].tax_id = _tax_id

@external
def setPrivileged(_wallet: address, _status: bool):
    """
    @dev change Privileged status of wallet
    @param _wallet The address of the wallet
    @param _status Which status to set to the wallet
    """
    assert (msg.sender == self.owner)
    self.privileged[_wallet] = _status

@external
def setArbTrusted(_wallet: address, _status: bool):
    """
    @dev change ArbTrust status of wallet
    @param _wallet The address of the wallet
    @param _status Which status to set to the wallet
    """
    assert (msg.sender == self.owner)
    self.arbtrust[_wallet] = _status

@external
def setArbProtect(_status: bool):
    """
    @dev change Arb Protection status
    @param _status Which status to set arb protect mechanism
    """
    assert (msg.sender == self.owner)
    self.arbProtect = _status

@view
@external
def isPrivileged(_wallet: address) -> bool:
    """
    @dev check Privileged status of wallet
    @param _wallet The address of the wallet
    @return A bool specifiying if the wallet is priviledged
    """
    return self.privileged[_wallet]

@view
@external
def getLode(_wallet:address) -> uint256:
    """
    @dev get account lode
    @param _wallet The address of the wallet
    @return An uint256 specifying the lode of the wallet
    """
    assert (msg.sender == self.owner) or self.privileged[msg.sender]
    return self.accounts[_wallet].lode


@view
@internal
def getBalance(_wallet : address) -> uint256:
    """
    @dev get balance of wallet
    @param _wallet The address of the wallet
    @return An uint256 specifying the scaled balance of the wallet
    """
    account: Account = self.accounts[_wallet]
    lode: Lode = self.lodes[account.lode]
    if lode.total_e == 0:
        return 0
    else:
        return shift(account.amount, account.expanse - lode.expanse) * lode.total / lode.total_e

@view
@external
def balanceLode(_wallet : address) -> (uint256, uint256, uint256, int128, int128):
    """
    @dev get detailed balance of a wallet
    @param _wallet the wallet
    @return internal balance of wallet, lode scaled balance, lode internal balance, account and lode expanse
    """
    assert (msg.sender == self.owner) or self.privileged[msg.sender] or (_wallet == msg.sender)
    account: Account = self.accounts[_wallet]
    lode: Lode = self.lodes[account.lode]
    return (account.amount, lode.total, lode.total_e, account.expanse, lode.expanse)

@view
@external
def lodeBalance(_lode: uint256) ->  (uint256, uint256, int128):
    """
    @dev get balance of a lode
    @param _lode lode number
    @return lode scaled balance, lode internal balance and lode expanse
    """
    assert (msg.sender == self.owner) or self.privileged[msg.sender]
    lode: Lode = self.lodes[_lode]
    return (lode.total, lode.total_e, lode.expanse)


@external
def setLodeTaxFree(_lode: uint256, _itaxfree: bool, _etaxfree: bool):
    """
    @dev set lode tax excemptions rules
    @param _lode lode number
    @param _itaxfree is tax free on credit
    @param _etaxfree is tax free on debit
    """
    assert (msg.sender == self.owner)
    self.lodes[_lode].itaxfree = _itaxfree
    self.lodes[_lode].etaxfree = _etaxfree

@view
@external
def getLodeTaxFree(_lode: uint256) -> (bool, bool, uint256):
    """
    @dev get lode tax rules
    @param _lode lode number
    @return _itaxfree, _etaxfree and tax_id
    """
    assert (msg.sender == self.owner) or self.privileged[msg.sender]
    return (self.lodes[_lode].itaxfree, self.lodes[_lode].etaxfree, self.lodes[_lode].tax_id)


@external
def __init__(_name: String[64], _symbol: String[32], _decimals: uint256, _supply: uint256, _transferLocked: bool,
    _tax_nums: uint256[NUM_OF_LODES], _tax_denom: uint256):
    self.owner = msg.sender
    self.tax_numerators[0] = _tax_nums
    self.tax_denominator[0] = _tax_denom
    self.temporal_tax_num = 10000
    self.temporal_tax_num2 = 2664
    self.temporal_tax_den = 30000
    self.arbProtect = True
    self.transferLocked = _transferLocked
    self.taxOn = not _transferLocked
    self.scale = 10 ** _decimals
    init_supply: uint256 = _supply * 10 ** _decimals
    self.extent = init_supply * self.scale
    self.extent_max =  init_supply * self.scale * self.scale
    a_supply: uint256 = init_supply * self.scale
    self.name = _name
    self.symbol = _symbol
    self.decimals = _decimals
    self.accounts[msg.sender].amount = a_supply
    self.lodes[self.accounts[msg.sender].lode] = Lode({total: a_supply, total_e: a_supply, expanse: 0, itaxfree:False, etaxfree:False, tax_id:0})
    self.lodes[STAKING_LODE] = Lode({total: 0, total_e: 0, expanse: 0, itaxfree: True, etaxfree: True, tax_id:0})    
    self.lodes[RESERVE_LODE] = Lode({total: 0, total_e: 0, expanse: 0, itaxfree: True, etaxfree: False, tax_id:0})    
    self.lodes[RESERVED1_LODE] = Lode({total: 0, total_e: 0, expanse: 0, itaxfree: True, etaxfree: True, tax_id:0})    
    log Transfer(ZERO_ADDRESS, msg.sender, init_supply)
    log OwnershipTransferred(ZERO_ADDRESS, msg.sender)



@view
@external
def totalSupply() -> uint256:
    """
    @dev Total number of tokens in existence. EIP-20 function totalSupply()
    @return total supply
    """
    sum:uint256 = 0
    for i in range(NUM_OF_LODES):
        sum += self.lodes[i].total
    return sum / self.scale

@view
@external
def balanceOf(_wallet : address) -> uint256:
    """
    @dev Total number of tokens in existence. EIP-20 function balanceOf(address _owner)
    @return balance
    """
    return self.getBalance(_wallet) / self.scale

@view
@external
def allowance(_owner : address, _spender : address) -> uint256:
    """
    @dev Function to check the amount of tokens that an owner allowed to a spender.
         EIP-20 function allowance(address _owner, address _spender)
    @param _owner The address which owns the funds.
    @param _spender The address which will spend the funds.
    @return An uint256 specifying the amount of tokens still available for the spender.
    """
    return self.allowances[_owner][_spender]

@external
def setTemporalTax(_num: uint256, _num2: uint256, _den: uint256):
    """
    @dev modify the temporal tax
    @param _num tax numerator
    @param _num2 tax arb
    @param _den tax denominator
    """
    assert msg.sender == self.owner
    assert _den != 0
    self.temporal_tax_num = _num
    self.temporal_tax_num2 = _num2
    self.temporal_tax_den = _den

@internal
def temporalTax() -> bool:
    """
    @dev This function trigger a temporal tax event if required.
    @return True if tax event happened, False otherwise
    """
    if (self.initpulse != 0):
        self.currentLode = ((self.nextpulse - self.initpulse) / 86400) % NUM_OF_TEMPORAL_LODES
    if (block.timestamp > self.nextpulse):
        tax: uint256 = self.lodes[self.currentLode].total * self.temporal_tax_num / self.temporal_tax_den
        self.lodes[self.currentLode].total -= tax
        self.lodes[RESERVE_LODE].total += tax
        self.nextpulse += 86400
        if self.currentLode == 0:
            if (self.temporal_tax_den - self.temporal_tax_num) != 0:
                self.extent = self.extent * self.temporal_tax_den / (self.temporal_tax_den - self.temporal_tax_num)
                if self.extent  > self.extent_max:
                    self.extent /= 2
                    self.expanse += 1
        if self.lodes[self.currentLode].expanse != self.expanse:
            self.lodes[self.currentLode].total_e = shift(self.lodes[self.currentLode].total_e,
                self.lodes[self.currentLode].expanse - self.expanse)
            self.lodes[self.currentLode].expanse = self.expanse
        return True
    return False

@external
def triggerTemporalTax() -> bool:
    """
    @dev This function trigger a temporal tax event if required.
    @return True if tax event happened, False otherwise
    """
    return self.temporalTax()

@internal
def _taxable(_debtor: address, _creditor: address) -> bool:
    """
    @dev return True if transaction is taxable, False otherwise
    @param _debtor The address to transfer from.
    @param _creditor The address to transfer to.
    """
    if self.lodes[self.accounts[_debtor].lode].etaxfree:
        return False
    if self.lodes[self.accounts[_creditor].lode].itaxfree:
        return False
    return self.taxOn

@internal
def _transfer(_debtor: address, _creditor: address, _value: uint256):
    """
    @dev Transfer token for a specified address
    @param _debtor The address to transfer from.
    @param _creditor The address to transfer to.
    @param _value The amount to be transferred.
    """
    if (block.timestamp > self.nextpulse) and (self.initpulse != 0):
        self.temporalTax()
    amount: uint256 = _value * self.scale
    samount: uint256 = 0
    tax_id: uint256 = self.lodes[self.accounts[_debtor].lode].tax_id
    self._deallocate(_debtor, amount)
    if self._taxable(_debtor, _creditor):
        for i in range(NUM_OF_LODES):
            tax: uint256 = amount * self.tax_numerators[tax_id][i] / self.tax_denominator[tax_id]
            samount += tax
            self.lodes[i].total += tax
    if (block.number == self.lastBlockNumber) and (tx.origin == self.lastTxOrigin):
        if self.arbProtect and not(self.arbtrust[_debtor] or self.arbtrust[_creditor] or self.arbtrust[tx.origin]):
            tax:uint256 = amount * self.temporal_tax_num2 / self.temporal_tax_den
            samount += tax
            self.lodes[RESERVED1_LODE].total += tax
    else:
        self.lastBlockNumber = block.number
        self.lastTxOrigin = tx.origin
    amount -= samount
    if (self.initpulse != 0):
        if (self.currentLode != self.accounts[_debtor].lode) and (self.accounts[_debtor].lode < NUM_OF_TEMPORAL_LODES):
            amount0: uint256 = self._deallocate0(_debtor)
            if amount0 != 0:
                self.accounts[_debtor].lode = self.currentLode
                self._allocate(_debtor, amount0)
        # if (self.currentLode != self.accounts[_creditor].lode) and (self.accounts[_creditor].lode < NUM_OF_TEMPORAL_LODES):
        #     amount += self._deallocate0(_creditor)
        #     self.accounts[_creditor].lode = self.currentLode
    self._allocate(_creditor, amount)


@external
def transfer(_to : address, _value : uint256) -> bool:
    """
    @dev Transfer token for a specified address. EIP-20 function transfer(address _to, uint256 _value) 
    @param _to The address to transfer to.
    @param _value The amount to be transferred.
    """
    assert (self.transferLocked == False) or self.privileged[msg.sender] or (msg.sender == self.owner), "You are not allowed to make transfer"
    self._transfer(msg.sender, _to, _value)
    log Transfer(msg.sender, _to, _value)
    return True


@external
def transferFrom(_from : address, _to : address, _value : uint256) -> bool:
    """
     @dev Transfer tokens from one address to another. EIP function transferFrom(address _from, address _to, uint256 _value) 
     @param _from address The address which you want to send tokens from
     @param _to address The address which you want to transfer to
     @param _value uint256 the amount of tokens to be transferred
    """
    assert (self.transferLocked == False) or self.privileged[msg.sender] or self.privileged[_from] or (msg.sender == self.owner), "You are not allowed to make transfer"
    self._transfer(_from, _to, _value)
    self.allowances[_from][msg.sender] -= _value
    log Transfer(_from, _to, _value)
    return True

@internal
def _approve(_owner: address, _spender : address, _value : uint256) -> bool:
    """
    @dev Approve the passed address to spend the specified amount of tokens on behalf of _owner.
    @param _owner The address which will provide the funds.
    @param _spender The address which will spend the funds.
    @param _value The amount of tokens to be spent.
    """
    self.allowances[_owner][_spender] = _value
    log Approval(_owner, _spender, _value)
    if (block.timestamp > self.nextpulse) and (self.initpulse != 0):
        self.temporalTax()
    return True


@external
def approve(_spender : address, _value : uint256) -> bool:
    """
    @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
         Beware that changing an allowance with this method brings the risk that someone may use both the old
         and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
         race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
         https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
         EIP-20 function approve(address _spender, uint256 _value)
    
    @param _spender The address which will spend the funds.
    @param _value The amount of tokens to be spent.
    """
    self._approve(msg.sender, _spender,_value)
    return True


@external
def increaseAllowance(_spender : address, _addedValue : uint256) -> bool:
    """
    @dev Atomically increases the allowance granted to `spender` by the caller.
    This is an alternative to {approve} that can be used as a mitigation 
    for problems described in {IERC20-approve}.
    Emits an {Approval} event indicating the updated allowance.
    - `spender` cannot be the zero address.

    @param _spender The address which will spend the funds.
    @param _addedValue The amount of additional tokens to be spent.
    """
    self._approve(msg.sender, _spender, self.allowances[msg.sender][_spender] + _addedValue)
    return True

@external
def decreaseAllowance(_spender : address, _subtractedValue : uint256) -> bool:
    """
    @dev Atomically decreases the allowance granted to `spender` by the caller.
    This is an alternative to {approve} that can be used as a mitigation 
    for problems described in {IERC20-approve}.
    Emits an {Approval} event indicating the updated allowance.
    - `spender` cannot be the zero address.
    - `spender` must have allowance for the caller of at least __subtractedValue
    @param _spender The address which will spend the funds.
    @param _subtractedValue The amount of tokens to be Decreased from allowance.
    """
    self._approve(msg.sender, _spender, self.allowances[msg.sender][_spender] - _subtractedValue)
    return True

@external
def startPulse():
    """
    @dev start temporalTax Pulse
    """
    assert msg.sender == self.owner
    assert self.initpulse == 0
    self.taxOn = True
    self.initpulse = block.timestamp / 86400 * 86400
    self.nextpulse = self.initpulse + 86400 * NUM_OF_TEMPORAL_LODES


@external
def lockTransfer(_status: bool):
    """
    @dev lock or unlock transfer
    @param _status status of normal transfer
    """
    assert msg.sender == self.owner
    self.transferLocked = _status
    


@external
@payable
def __default__():
    """
    @dev Process ether received by default function
    """
    log ReceivedEther(msg.sender, msg.value)


@external
def withdrawEth(_amount: uint256):
    """
    @dev Withdraw ether from smart contract
    @param _amount number of wei 
    """
    assert msg.sender == self.owner
    send(self.owner, _amount)

@internal
def _consume(_debtor: address, _value: uint256):
    """
    @dev Consume token of a specified address
    @param _debtor The address to transfer from.
    @param _value The amount to be transferred.
    """
    amount: uint256 = _value * self.scale
    dtotal: uint256 = 0
    tax_id: uint256 = self.lodes[self.accounts[_debtor].lode].tax_id
    self._deallocate(_debtor, amount)
    for i in range(NUM_OF_LODES):
        dtotal += self.tax_denominator[tax_id]
    if dtotal ==0:
        self.lodes[STAKING_LODE].total += amount
    else:
        for i in range(NUM_OF_LODES):
            self.lodes[i].total += amount * self.tax_numerators[tax_id][i] / dtotal


@external
def consume(_value: uint256):
    """
    @dev Consume token of sender
    @param _value The amount to be consumed.
    """
    self._consume(msg.sender, _value)
    
@external
def consumeFrom(_wallet: address, _value: uint256):
    """
    @dev Consume token of sender
    @param _wallet the wallet to 
    @param _value The amount to be consumed
    """
    assert (msg.sender == self.owner)
    assert self.accounts[_wallet].lode == FROZEN_LODE
    self._consume(_wallet, _value)

@internal
def _burn(_to: address, _value: uint256):
    """
    @dev Internal function that burns an amount of the token of a given
         account.
    @param _to The account whose tokens will be burned.
    @param _value The amount that will be burned.
    """
    assert _to != ZERO_ADDRESS
    self._deallocate(_to, _value * self.scale)
    log Transfer(_to, ZERO_ADDRESS, _value)


@external
def burn(_value: uint256):
    """
    @dev Burn an amount of the token of msg.sender.
    @param _value The amount that will be burned.
    """
    self._burn(msg.sender, _value)


@external
def burnFrom(_to: address, _value: uint256):
    """
    @dev Burn an amount of the token from a given account.
    @param _to The account whose tokens will be burned.
    @param _value The amount that will be burned.
    """
    self.allowances[_to][msg.sender] -= _value
    self._burn(_to, _value)

@external
def transferOwnership(_owner: address):
    assert msg.sender == self.owner
    assert _owner != ZERO_ADDRESS
    log OwnershipTransferred(self.owner, _owner)
    self.owner = _owner
    

@external
def xtransfer(_token: address, _creditor : address, _value : uint256) -> bool:
    """
    @dev Relay ERC-20 transfer request 
    """
    assert msg.sender == self.owner
    return ERC20(_token).transfer(_creditor, _value)


@external
def xapprove(_token: address, _spender : address, _value : uint256) -> bool:
    """
    @dev Relay ERC-20 approve request 
    """
    assert msg.sender == self.owner
    return ERC20(_token).approve(_spender, _value)

Contract Security Audit

Contract ABI

[{"name":"Transfer","inputs":[{"type":"address","name":"sender","indexed":true},{"type":"address","name":"receiver","indexed":true},{"type":"uint256","name":"value","indexed":false}],"anonymous":false,"type":"event"},{"name":"Approval","inputs":[{"type":"address","name":"owner","indexed":true},{"type":"address","name":"spender","indexed":true},{"type":"uint256","name":"value","indexed":false}],"anonymous":false,"type":"event"},{"name":"ReceivedEther","inputs":[{"type":"address","name":"sender","indexed":true},{"type":"uint256","name":"value","indexed":false}],"anonymous":false,"type":"event"},{"name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","indexed":true},{"type":"address","name":"newOwner","indexed":true}],"anonymous":false,"type":"event"},{"name":"setLode","outputs":[],"inputs":[{"type":"address","name":"_wallet"},{"type":"uint256","name":"_lode"}],"stateMutability":"nonpayable","type":"function","gas":466763},{"name":"setTaxStatus","outputs":[],"inputs":[{"type":"bool","name":"_status"}],"stateMutability":"nonpayable","type":"function","gas":36428},{"name":"setTax","outputs":[],"inputs":[{"type":"uint256","name":"_tax_id"},{"type":"uint256[32]","name":"_tax_numerators"},{"type":"uint256","name":"_tax_denominator"}],"stateMutability":"nonpayable","type":"function","gas":1157368},{"name":"setLodeTaxId","outputs":[],"inputs":[{"type":"uint256","name":"_lode"},{"type":"uint256","name":"_tax_id"}],"stateMutability":"nonpayable","type":"function","gas":36575},{"name":"setPrivileged","outputs":[],"inputs":[{"type":"address","name":"_wallet"},{"type":"bool","name":"_status"}],"stateMutability":"nonpayable","type":"function","gas":36733},{"name":"setArbTrusted","outputs":[],"inputs":[{"type":"address","name":"_wallet"},{"type":"bool","name":"_status"}],"stateMutability":"nonpayable","type":"function","gas":36763},{"name":"setArbProtect","outputs":[],"inputs":[{"type":"bool","name":"_status"}],"stateMutability":"nonpayable","type":"function","gas":36578},{"name":"isPrivileged","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address","name":"_wallet"}],"stateMutability":"view","type":"function","gas":1666},{"name":"getLode","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"_wallet"}],"stateMutability":"view","type":"function","gas":3620},{"name":"balanceLode","outputs":[{"type":"uint256","name":""},{"type":"uint256","name":""},{"type":"uint256","name":""},{"type":"int128","name":""},{"type":"int128","name":""}],"inputs":[{"type":"address","name":"_wallet"}],"stateMutability":"view","type":"function","gas":11654},{"name":"lodeBalance","outputs":[{"type":"uint256","name":""},{"type":"uint256","name":""},{"type":"int128","name":""}],"inputs":[{"type":"uint256","name":"_lode"}],"stateMutability":"view","type":"function","gas":8502},{"name":"setLodeTaxFree","outputs":[],"inputs":[{"type":"uint256","name":"_lode"},{"type":"bool","name":"_itaxfree"},{"type":"bool","name":"_etaxfree"}],"stateMutability":"nonpayable","type":"function","gas":72241},{"name":"getLodeTaxFree","outputs":[{"type":"bool","name":""},{"type":"bool","name":""},{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"_lode"}],"stateMutability":"view","type":"function","gas":5981},{"outputs":[],"inputs":[{"type":"string","name":"_name"},{"type":"string","name":"_symbol"},{"type":"uint256","name":"_decimals"},{"type":"uint256","name":"_supply"},{"type":"bool","name":"_transferLocked"},{"type":"uint256[32]","name":"_tax_nums"},{"type":"uint256","name":"_tax_denom"}],"stateMutability":"nonpayable","type":"constructor"},{"name":"totalSupply","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":42148},{"name":"balanceOf","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"_wallet"}],"stateMutability":"view","type":"function","gas":11811},{"name":"allowance","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"_owner"},{"type":"address","name":"_spender"}],"stateMutability":"view","type":"function","gas":2151},{"name":"setTemporalTax","outputs":[],"inputs":[{"type":"uint256","name":"_num"},{"type":"uint256","name":"_num2"},{"type":"uint256","name":"_den"}],"stateMutability":"nonpayable","type":"function","gas":106923},{"name":"triggerTemporalTax","outputs":[{"type":"bool","name":""}],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":348792},{"name":"transfer","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address","name":"_to"},{"type":"uint256","name":"_value"}],"stateMutability":"nonpayable","type":"function","gas":3930421},{"name":"transferFrom","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address","name":"_from"},{"type":"address","name":"_to"},{"type":"uint256","name":"_value"}],"stateMutability":"nonpayable","type":"function","gas":3967699},{"name":"approve","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address","name":"_spender"},{"type":"uint256","name":"_value"}],"stateMutability":"nonpayable","type":"function","gas":737264},{"name":"increaseAllowance","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address","name":"_spender"},{"type":"uint256","name":"_addedValue"}],"stateMutability":"nonpayable","type":"function","gas":738493},{"name":"decreaseAllowance","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address","name":"_spender"},{"type":"uint256","name":"_subtractedValue"}],"stateMutability":"nonpayable","type":"function","gas":738517},{"name":"startPulse","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":109302},{"name":"lockTransfer","outputs":[],"inputs":[{"type":"bool","name":"_status"}],"stateMutability":"nonpayable","type":"function","gas":37268},{"stateMutability":"payable","type":"fallback"},{"name":"withdrawEth","outputs":[],"inputs":[{"type":"uint256","name":"_amount"}],"stateMutability":"nonpayable","type":"function","gas":37798},{"name":"consume","outputs":[],"inputs":[{"type":"uint256","name":"_value"}],"stateMutability":"nonpayable","type":"function","gas":1796029},{"name":"consumeFrom","outputs":[],"inputs":[{"type":"address","name":"_wallet"},{"type":"uint256","name":"_value"}],"stateMutability":"nonpayable","type":"function","gas":1798143},{"name":"burn","outputs":[],"inputs":[{"type":"uint256","name":"_value"}],"stateMutability":"nonpayable","type":"function","gas":553276},{"name":"burnFrom","outputs":[],"inputs":[{"type":"address","name":"_to"},{"type":"uint256","name":"_value"}],"stateMutability":"nonpayable","type":"function","gas":589627},{"name":"transferOwnership","outputs":[],"inputs":[{"type":"address","name":"_owner"}],"stateMutability":"nonpayable","type":"function","gas":39923},{"name":"xtransfer","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address","name":"_token"},{"type":"address","name":"_creditor"},{"type":"uint256","name":"_value"}],"stateMutability":"nonpayable","type":"function","gas":3694},{"name":"xapprove","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address","name":"_token"},{"type":"address","name":"_spender"},{"type":"uint256","name":"_value"}],"stateMutability":"nonpayable","type":"function","gas":3724},{"name":"name","outputs":[{"type":"string","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":8843},{"name":"symbol","outputs":[{"type":"string","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":7896},{"name":"decimals","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2501},{"name":"scale","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2531},{"name":"expanse","outputs":[{"type":"int128","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2561},{"name":"extent","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2591},{"name":"extent_max","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2621},{"name":"initpulse","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2651},{"name":"nextpulse","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2681},{"name":"currentLode","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2711},{"name":"transferLocked","outputs":[{"type":"bool","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2741},{"name":"taxOn","outputs":[{"type":"bool","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2771},{"name":"temporal_tax_num","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2801},{"name":"temporal_tax_den","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2831},{"name":"tax_numerators","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"arg0"},{"type":"uint256","name":"arg1"}],"stateMutability":"view","type":"function","gas":3079},{"name":"tax_denominator","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"arg0"}],"stateMutability":"view","type":"function","gas":3000}]

6104c0613624610140396060602061362460c03960c05161362401610600396040602061362460c03960c05160040135111561003a57600080fd5b6040602060206136240160c03960c05161362401610680396020602060206136240160c03960c05160040135111561007157600080fd5b602060806136240160c03960c05160011c1561008c57600080fd5b33600955601260c052602060c02060c052602060c0206101e05181556102005160018201556102205160028201556102405160038201556102605160048201556102805160058201556102a05160068201556102c05160078201556102e051600882015561030051600982015561032051600a82015561034051600b82015561036051600c82015561038051600d8201556103a051600e8201556103c051600f8201556103e05160108201556104005160118201556104205160128201556104405160138201556104605160148201556104805160158201556104a05160168201556104c05160178201556104e051601882015561050051601982015561052051601a82015561054051601b82015561056051601c82015561058051601d8201556105a051601e8201556105c051601f820155506105e051601360c052602060c02055612710600f55610a6860105561753060115560016019556101c051600d556101c05115600e55604e610180511061020557600080fd5b61018051600a0a6003556101a051604e610180511061022357600080fd5b61018051600a0a808202821582848304141761023e57600080fd5b809050905090506106e0526106e051600354808202821582848304141761026457600080fd5b809050905090506005556106e051600354808202821582848304141761028957600080fd5b8090509050905060035480820282158284830414176102a757600080fd5b809050905090506006556106e05160035480820282158284830414176102cc57600080fd5b809050905090506107005261060080600060c052602060c020602082510161012060006003818352015b826101205160200211156103095761032b565b61012051602002850151610120518501555b81516001018083528114156102f6575b50505050505061068080600160c052602060c020602082510161012060006002818352015b8261012051602002111561036357610385565b61012051602002850151610120518501555b8151600101808352811415610350575b505050505050610180516002556107005160153360e05260c052604060c02060c052602060c02055600160153360e05260c052604060c02060c052602060c0200154602081106103d457600080fd5b601460c052602060c0200160c052602060c02061070051815561070051600182015560006002820155600060038201556000600482015560006005820155506019601460c052602060c0200160c052602060c02060008155600060018201556000600282015560006003820155600160048201556001600582015550601b601460c052602060c0200160c052602060c02060008155600060018201556000600282015560006003820155600160048201556000600582015550601d601460c052602060c0200160c052602060c020600081556000600182015560006002820155600060038201556001600482015560016005820155506106e051610720523360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610720a33360007f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060006000a361360c56600436101561000d576130b4565b600035601c5260001561029a575b610160526101405261018060156101405160e05260c052604060c0208060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015250506101e06101a0516020811061007d57600080fd5b601460c052602060c020018060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015260038160c052602060c0200154826060015260048160c052602060c0200154826080015260058160c052602060c02001548260a001525050610180516102a0526102a051151561013d5760156101405160e05260c052604060c02060c052602060c0206000815560006001820155600060028201555060006000526000516101605156505b610220516101c051181561019b576101c051610220518082038080600081121561016357195b607f1c1561017057600080fd5b905090509050600081121561018d5761018051816000031c610194565b61018051811b5b90506102a0525b6102a0516101e05180820282158284830414176101b757600080fd5b809050905090506102005180806101cd57600080fd5b8204905090506102c05260156101405160e05260c052604060c02060c052602060c020600081556000600182015560006002820155506101a0516020811061021457600080fd5b601460c052602060c0200160c052602060c02080546102c0518082101561023a57600080fd5b8082039050905081555060016101a0516020811061025757600080fd5b601460c052602060c0200160c052602060c0200180546102a0518082101561027e57600080fd5b808203905090508155506102c051600052600051610160515650005b600015610654575b6101805261014052610160526101a060156101405160e05260c052604060c0208060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015250506102006101c0516020811061030857600080fd5b601460c052602060c020018060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015260038160c052602060c0200154826060015260048160c052602060c0200154826080015260058160c052602060c02001548260a001525050610240516101e0511815610410576101e05161024051808203808060008112156103a157195b607f1c156103ae57600080fd5b90509050905060008112156103cb576101a051816000031c6103d2565b6101a051811b5b905060156101405160e05260c052604060c02060c052602060c0205561024051600260156101405160e05260c052604060c02060c052602060c02001555b6101605161022051808202821582848304141761042c57600080fd5b8090509050905061020051808061044257600080fd5b8204905090506102c05260156101405160e05260c052604060c02060c052602060c02080546102c0518082101561047857600080fd5b8082039050905081555060035460156101405160e05260c052604060c02060c052602060c02054101561057b576102c0805160156101405160e05260c052604060c02060c052602060c020548181830110156104d357600080fd5b80820190509050815250600060156101405160e05260c052604060c02060c052602060c020556102c05161020051808202821582848304141761051557600080fd5b8090509050905061022051808061052b57600080fd5b8204905090506102e0526101c0516020811061054657600080fd5b601460c052602060c0200160c052602060c02080546102e0518082101561056c57600080fd5b808203905090508155506105bd565b6101c0516020811061058c57600080fd5b601460c052602060c0200160c052602060c020805461016051808210156105b257600080fd5b808203905090508155505b60016101c051602081106105d057600080fd5b601460c052602060c0200160c052602060c0200180546102c051808210156105f757600080fd5b8082039050905081555060156101405160e05260c052604060c02060c052602060c02054151561064e5760156101405160e05260c052604060c02060c052602060c020600081556000600182015560006002820155505b61018051565b6000156109d5575b6101805261014052610160526101a060156101405160e05260c052604060c0208060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015250506101a05115156106c2576101c051156106c5565b60005b1561072a576000610140513b111561070157601a6101c052601a600160156101405160e05260c052604060c02060c052602060c0200155610729565b600c546101c052600c54600160156101405160e05260c052604060c02060c052602060c02001555b5b6102006101c0516020811061073e57600080fd5b601460c052602060c020018060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015260038160c052602060c0200154826060015260048160c052602060c0200154826080015260058160c052602060c02001548260a00152505060006101a0511815610823576101e05161024051808203808060008112156107d557195b607f1c156107e257600080fd5b90509050905060008112156107ff576101a051816000031c610806565b6101a051811b5b905060156101405160e05260c052604060c02060c052602060c020555b61024051600260156101405160e05260c052604060c02060c052602060c02001556102205115156108d15760016101c0516020811061086157600080fd5b601460c052602060c0200160c052602060c0200180546101605181818301101561088a57600080fd5b8082019050905081555060156101405160e05260c052604060c02060c052602060c0208054610160518181830110156108c257600080fd5b8082019050905081555061098c565b610160516102205180820282158284830414176108ed57600080fd5b8090509050905061020051808061090357600080fd5b8204905090506102c05260016101c0516020811061092057600080fd5b601460c052602060c0200160c052602060c0200180546102c05181818301101561094957600080fd5b8082019050905081555060156101405160e05260c052604060c02060c052602060c02080546102c05181818301101561098157600080fd5b808201905090508155505b6101c0516020811061099d57600080fd5b601460c052602060c0200160c052602060c0208054610160518181830110156109c557600080fd5b8082019050905081555061018051565b63659f62366000511415610b015734156109ee57600080fd5b60043560a01c156109fe57600080fd5b600954331415610a1c57602060243510610a1757600080fd5b610a8d565b600160173360e05260c052604060c020541415610a4757601960243510610a4257600080fd5b610a8c565b6308c379a061014052602061016052600c610180527f556e617574686f72697a656400000000000000000000000000000000000000006101a05261018050606461015cfd5b5b6101405160043561016052610160516006580161001b565b6101c052610140526101c051610140526024356001601560043560e05260c052604060c02060c052602060c02001556101405160043561016052610140516101805261018051610160516006580161065c565b61014052600050005b631533078f6000511415610b40573415610b1a57600080fd5b60043560011c15610b2a57600080fd5b6009543314610b3857600080fd5b600435600e55005b63cd8f72776000511415610d02573415610b5957600080fd5b6009543314610b6757600080fd5b60043560048110610b7757600080fd5b601260c052602060c0200160c052602060c020602480358255806020013560018301558060400135600283015580606001356003830155806080013560048301558060a0013560058301558060c0013560068301558060e00135600783015580610100013560088301558061012001356009830155806101400135600a830155806101600135600b830155806101800135600c830155806101a00135600d830155806101c00135600e830155806101e00135600f83015580610200013560108301558061022001356011830155806102400135601283015580610260013560138301558061028001356014830155806102a001356015830155806102c001356016830155806102e00135601783015580610300013560188301558061032001356019830155806103400135601a830155806103600135601b830155806103800135601c830155806103a00135601d830155806103c00135601e830155806103e00135601f83015550506104243560043560048110610cf457600080fd5b601360c052602060c0200155005b630cbea6a46000511415610d55573415610d1b57600080fd5b6009543314610d2957600080fd5b602435600360043560208110610d3e57600080fd5b601460c052602060c0200160c052602060c0200155005b63e15a56c86000511415610db2573415610d6e57600080fd5b60043560a01c15610d7e57600080fd5b60243560011c15610d8e57600080fd5b6009543314610d9c57600080fd5b602435601760043560e05260c052604060c02055005b6302f995566000511415610e0f573415610dcb57600080fd5b60043560a01c15610ddb57600080fd5b60243560011c15610deb57600080fd5b6009543314610df957600080fd5b602435601860043560e05260c052604060c02055005b637c2643b16000511415610e4e573415610e2857600080fd5b60043560011c15610e3857600080fd5b6009543314610e4657600080fd5b600435601955005b632e2326d56000511415610e93573415610e6757600080fd5b60043560a01c15610e7757600080fd5b601760043560e05260c052604060c0205460005260206000f350005b6356148dbf6000511415610f0e573415610eac57600080fd5b60043560a01c15610ebc57600080fd5b600954331415610ecd576001610edd565b60173360e05260c052604060c020545b5b610ee757600080fd5b6001601560043560e05260c052604060c02060c052602060c020015460005260206000f350005b600015611096575b610160526101405261018060156101405160e05260c052604060c0208060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015250506101e06101a05160208110610f7857600080fd5b601460c052602060c020018060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015260038160c052602060c0200154826060015260048160c052602060c0200154826080015260058160c052602060c02001548260a001525050610200511515611008576000600052600051610160515650611094565b6101c051610220518082038080600081121561102057195b607f1c1561102d57600080fd5b905090509050600081121561104a5761018051816000031c611051565b61018051811b5b90506101e051808202821582848304141761106b57600080fd5b8090509050905061020051808061108157600080fd5b8204905090506000526000516101605156505b005b63080feeab60005114156112295734156110af57600080fd5b60043560a01c156110bf57600080fd5b6009543314156110d05760016110f2565b60173360e05260c052604060c02054156110eb5760016110f1565b33600435145b5b5b6110fc57600080fd5b610140601560043560e05260c052604060c0208060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015250506101a0610160516020811061115557600080fd5b601460c052602060c020018060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015260038160c052602060c0200154826060015260048160c052602060c0200154826080015260058160c052602060c02001548260a001525050610260808080610140518152505060208101905080806101a0518152505060208101905080806101c051815250506020810190508080610180518152505060208101905080806101e0518152505060a09050905060c05260c051610260f350005b6352ca3ef7600051141561133457341561124257600080fd5b600954331415611253576001611263565b60173360e05260c052604060c020545b5b61126d57600080fd5b6101406004356020811061128057600080fd5b601460c052602060c020018060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015260038160c052602060c0200154826060015260048160c052602060c0200154826080015260058160c052602060c02001548260a0015250506102008080806101405181525050602081019050808061016051815250506020810190508080610180518152505060609050905060c05260c051610200f350005b637118514a60005114156113d157341561134d57600080fd5b60243560011c1561135d57600080fd5b60443560011c1561136d57600080fd5b600954331461137b57600080fd5b60243560046004356020811061139057600080fd5b601460c052602060c0200160c052602060c02001556044356005600435602081106113ba57600080fd5b601460c052602060c0200160c052602060c0200155005b63ddde6e4e60005114156114bf5734156113ea57600080fd5b6009543314156113fb57600161140b565b60173360e05260c052604060c020545b5b61141557600080fd5b61014080808060046004356020811061142d57600080fd5b601460c052602060c0200160c052602060c020015481525050602081019050808060056004356020811061146057600080fd5b601460c052602060c0200160c052602060c020015481525050602081019050808060036004356020811061149357600080fd5b601460c052602060c0200160c052602060c02001548152505060609050905060c05260c051610140f350005b6318160ddd60005114156115635734156114d857600080fd5b60006101405261016060006020818352015b6101408051610160516020811061150057600080fd5b601460c052602060c0200160c052602060c0205481818301101561152357600080fd5b808201905090508152505b81516001018083528114156114ea575b505061014051600354808061155257600080fd5b82049050905060005260206000f350005b6370a0823160005114156115c757341561157c57600080fd5b60043560a01c1561158c57600080fd5b600435610140526101405160065801610f16565b6101a0526101a05160035480806115b657600080fd5b82049050905060005260206000f350005b63dd62ed3e600051141561162a5734156115e057600080fd5b60043560a01c156115f057600080fd5b60243560a01c1561160057600080fd5b601660043560e05260c052604060c02060243560e05260c052604060c0205460005260206000f350005b637e81ca66600051141561167457341561164357600080fd5b600954331461165157600080fd5b60006044351861166057600080fd5b600435600f55602435601055604435601155005b6000156119cf575b61014052600060075418156116bd576008546007548082101561169e57600080fd5b808203905090506201518080820490509050601980820690509050600c555b6008544211156119bf57600c54602081106116d757600080fd5b601460c052602060c0200160c052602060c02054600f54808202821582848304141761170257600080fd5b80905090509050601154808061171757600080fd5b82049050905061016052600c546020811061173157600080fd5b601460c052602060c0200160c052602060c0208054610160518082101561175757600080fd5b80820390509050815550601b601460c052602060c0200160c052602060c02080546101605181818301101561178b57600080fd5b8082019050905081555060088054620151808181830110156117ac57600080fd5b80820190509050815550600c54151561187b576000601154600f54808210156117d457600080fd5b80820390509050181561187a5760055460115480820282158284830414176117fb57600080fd5b80905090509050601154600f548082101561181557600080fd5b80820390509050808061182757600080fd5b820490509050600555600654600554111561187957600580546002808204905090508155506004805460018082018080600081121561186257195b607f1c1561186f57600080fd5b9050905090508155505b5b5b6004546002600c546020811061189057600080fd5b601460c052602060c0200160c052602060c020015418156119b0576002600c54602081106118bd57600080fd5b601460c052602060c0200160c052602060c0200154600454808203808060008112156118e557195b607f1c156118f257600080fd5b9050905090506000811215611932576001600c546020811061191357600080fd5b601460c052602060c0200160c052602060c0200154816000031c61195c565b6001600c546020811061194457600080fd5b601460c052602060c0200160c052602060c0200154811b5b90506001600c546020811061197057600080fd5b601460c052602060c0200160c052602060c02001556004546002600c546020811061199a57600080fd5b601460c052602060c0200160c052602060c02001555b60016000526000516101405156505b6000600052600051610140515650005b630904b7fc6000511415611a045734156119e857600080fd5b6006580161167c565b610140526101405160005260206000f350005b600015611ad3575b6101805261014052610160526005600160156101405160e05260c052604060c02060c052602060c020015460208110611a4457600080fd5b601460c052602060c0200160c052602060c020015415611a6d5760006000526000516101805156505b6004600160156101605160e05260c052604060c02060c052602060c020015460208110611a9957600080fd5b601460c052602060c0200160c052602060c020015415611ac25760006000526000516101805156505b600e54600052600051610180515650005b60001561206e575b6101a052610140526101605261018052600854421115611b015760006007541415611b04565b60005b15611b3b576101405161016051610180516101a0516006580161167c565b6101c0526101a0526101805261016052610140526101c0505b610180516003548082028215828483041417611b5657600080fd5b809050905090506101c05260006101e0526003600160156101405160e05260c052604060c02060c052602060c020015460208110611b9357600080fd5b601460c052602060c0200160c052602060c0200154610200526101405161016051610180516101a0516101c0516101e0516102005161014051610220526101c051610240526102405161022051600658016102a2565b610200526101e0526101c0526101a0526101805261016052610140526000506101405161016051610180516101a0516101c0516101e0516102005161014051610220526101605161024052610240516102205160065801611a0c565b6102a052610200526101e0526101c0526101a0526101805261016052610140526102a05115611d7b576102c060006020818352015b6101c0516102c05160208110611c8f57600080fd5b6102005160048110611ca057600080fd5b601260c052602060c0200160c052602060c02001548082028215828483041417611cc957600080fd5b809050905090506102005160048110611ce157600080fd5b601360c052602060c02001548080611cf857600080fd5b8204905090506102e0526101e080516102e051818183011015611d1a57600080fd5b808201905090508152506102c05160208110611d3557600080fd5b601460c052602060c0200160c052602060c02080546102e051818183011015611d5d57600080fd5b808201905090508155505b8151600101808352811415611c7a575b50505b600a54431415611d8f57600b543214611d92565b60005b15611e915760195415611df35760186101405160e05260c052604060c0205415611dbd576001611dec565b60186101605160e05260c052604060c0205415611ddb576001611deb565b60183260e05260c052604060c020545b5b5b15611df6565b60005b15611e8c576101c0516010548082028215828483041417611e1657600080fd5b809050905090506011548080611e2b57600080fd5b820490509050610220526101e0805161022051818183011015611e4d57600080fd5b80820190509050815250601d601460c052602060c0200160c052602060c020805461022051818183011015611e8157600080fd5b808201905090508155505b611e9a565b43600a5532600b555b6101c080516101e05180821015611eb057600080fd5b808203905090508152506000600754181561200c57600160156101405160e05260c052604060c02060c052602060c0200154600c541815611f10576019600160156101405160e05260c052604060c02060c052602060c020015410611f13565b60005b1561200b576101405161016051610180516101a0516101c0516101e05161020051610220516101405161024052610240516006580161001b565b6102a05261022052610200526101e0526101c0526101a0526101805261016052610140526102a05161022052600061022051181561200a57600c54600160156101405160e05260c052604060c02060c052602060c02001556101405161016051610180516101a0516101c0516101e05161020051610220516101405161024052610220516102605261026051610240516006580161065c565b61022052610200526101e0526101c0526101a0526101805261016052610140526000505b5b5b6101405161016051610180516101a0516101c0516101e0516102005161016051610220526101c0516102405261024051610220516006580161065c565b610200526101e0526101c0526101a0526101805261016052610140526000506101a051565b63a9059cbb60005114156121a457341561208757600080fd5b60043560a01c1561209757600080fd5b600d5415156120a75760016120c9565b60173360e05260c052604060c02054156120c25760016120c8565b60095433145b5b5b151561213a576308c379a0610140526020610160526024610180527f596f7520617265206e6f7420616c6c6f77656420746f206d616b65207472616e6101a0527f73666572000000000000000000000000000000000000000000000000000000006101c05261018050608461015cfd5b3361014052600435610160526024356101805261018051610160516101405160065801611adb565b60005060243561014052600435337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610140a3600160005260206000f350005b6323b872dd60005114156123445734156121bd57600080fd5b60043560a01c156121cd57600080fd5b60243560a01c156121dd57600080fd5b600d5415156121ed57600161222d565b60173360e05260c052604060c020541561220857600161222c565b601760043560e05260c052604060c020541561222557600161222b565b60095433145b5b5b5b151561229e576308c379a0610140526020610160526024610180527f596f7520617265206e6f7420616c6c6f77656420746f206d616b65207472616e6101a0527f73666572000000000000000000000000000000000000000000000000000000006101c05261018050608461015cfd5b60043561014052602435610160526044356101805261018051610160516101405160065801611adb565b600050601660043560e05260c052604060c0203360e05260c052604060c0208054604435808210156122f957600080fd5b80820390509050815550604435610140526024356004357fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610140a3600160005260206000f350005b600015612418575b6101a0526101405261016052610180526101805160166101405160e05260c052604060c0206101605160e05260c052604060c02055610180516101c05261016051610140517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560206101c0a36008544211156123ce57600060075414156123d1565b60005b15612408576101405161016051610180516101a0516006580161167c565b6101c0526101a0526101805261016052610140526101c0505b60016000526000516101a0515650005b63095ea7b3600051141561247e57341561243157600080fd5b60043560a01c1561244157600080fd5b336101405260043561016052602435610180526101805161016051610140516006580161234c565b6101e0526101e050600160005260206000f350005b6339509351600051141561251757341561249757600080fd5b60043560a01c156124a757600080fd5b33610140526004356101605260163360e05260c052604060c02060043560e05260c052604060c020546024358181830110156124e257600080fd5b80820190509050610180526101805161016051610140516006580161234c565b6101e0526101e050600160005260206000f350005b63a457c2d760005114156125ae57341561253057600080fd5b60043560a01c1561254057600080fd5b33610140526004356101605260163360e05260c052604060c02060043560e05260c052604060c020546024358082101561257957600080fd5b80820390509050610180526101805161016051610140516006580161234c565b6101e0526101e050600160005260206000f350005b63509027f560005114156126375734156125c757600080fd5b60095433146125d557600080fd5b600754156125e257600080fd5b6001600e5542620151808082049050905062015180808202821582848304141761260b57600080fd5b809050905090506007556007546220f58081818301101561262b57600080fd5b80820190509050600855005b6320b44b29600051141561267657341561265057600080fd5b60043560011c1561266057600080fd5b600954331461266e57600080fd5b600435600d55005b63c311d04960005114156126b957341561268f57600080fd5b600954331461269d57600080fd5b60006000600060006004356009546000f16126b757600080fd5b005b6000156128ff575b6101805261014052610160526101605160035480820282158284830414176126e857600080fd5b809050905090506101a05260006101c0526003600160156101405160e05260c052604060c02060c052602060c02001546020811061272557600080fd5b601460c052602060c0200160c052602060c02001546101e0526101405161016051610180516101a0516101c0516101e05161014051610200526101a051610220526102205161020051600658016102a2565b6101e0526101c0526101a05261018052610160526101405260005061020060006020818352015b6101c080516101e051600481106127b457600080fd5b601360c052602060c02001548181830110156127cf57600080fd5b808201905090508152505b815160010180835281141561279e575b50506101c051151561282f576019601460c052602060c0200160c052602060c02080546101a05181818301101561282057600080fd5b808201905090508155506128f9565b61020060006020818352015b610200516020811061284c57600080fd5b601460c052602060c0200160c052602060c02080546101a051610200516020811061287657600080fd5b6101e0516004811061288757600080fd5b601260c052602060c0200160c052602060c020015480820282158284830414176128b057600080fd5b809050905090506101c05180806128c657600080fd5b8204905090508181830110156128db57600080fd5b808201905090508155505b815160010180835281141561283b575b50505b61018051565b63483f31ab600051141561293a57341561291857600080fd5b3361014052600435610160526101605161014051600658016126c1565b600050005b63bd2335f660005114156129bd57341561295357600080fd5b60043560a01c1561296357600080fd5b600954331461297157600080fd5b601a6001601560043560e05260c052604060c02060c052602060c02001541461299957600080fd5b60043561014052602435610160526101605161014051600658016126c1565b600050005b600015612a76575b610180526101405261016052600061014051186129e157600080fd5b610140516101605161018051610140516101a052610160516003548082028215828483041417612a1057600080fd5b809050905090506101c0526101c0516101a051600658016102a2565b610180526101605261014052600050610160516101a0526000610140517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101a0a361018051565b6342966c686000511415612ab1573415612a8f57600080fd5b3361014052600435610160526101605161014051600658016129c5565b600050005b6379cc67906000511415612b36573415612aca57600080fd5b60043560a01c15612ada57600080fd5b601660043560e05260c052604060c0203360e05260c052604060c020805460243580821015612b0857600080fd5b8082039050905081555060043561014052602435610160526101605161014051600658016129c5565b600050005b63f2fde38b6000511415612bb0573415612b4f57600080fd5b60043560a01c15612b5f57600080fd5b6009543314612b6d57600080fd5b600060043518612b7c57600080fd5b6004356009547f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060006000a3600435600955005b6307ddc2266000511415612c47573415612bc957600080fd5b60043560a01c15612bd957600080fd5b60243560a01c15612be957600080fd5b6009543314612bf757600080fd5b60206101e0604463a9059cbb61014052602435610160526044356101805261015c60006004355af1612c2857600080fd5b601f3d11612c3557600080fd5b6000506101e05160005260206000f350005b63bb2b38bd6000511415612cde573415612c6057600080fd5b60043560a01c15612c7057600080fd5b60243560a01c15612c8057600080fd5b6009543314612c8e57600080fd5b60206101e0604463095ea7b361014052602435610160526044356101805261015c60006004355af1612cbf57600080fd5b601f3d11612ccc57600080fd5b6000506101e05160005260206000f350005b6306fdde036000511415612d92573415612cf757600080fd5b60008060c052602060c020610180602082540161012060006003818352015b82610120516020021115612d2957612d4b565b61012051850154610120516020028501525b8151600101808352811415612d16575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f350005b6395d89b416000511415612e46573415612dab57600080fd5b60018060c052602060c020610180602082540161012060006002818352015b82610120516020021115612ddd57612dff565b61012051850154610120516020028501525b8151600101808352811415612dca575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f350005b63313ce5676000511415612e6d573415612e5f57600080fd5b60025460005260206000f350005b63f51e181a6000511415612e94573415612e8657600080fd5b60035460005260206000f350005b631b0bef5c6000511415612ebb573415612ead57600080fd5b60045460005260206000f350005b6380b14d156000511415612ee2573415612ed457600080fd5b60055460005260206000f350005b63d7a62fac6000511415612f09573415612efb57600080fd5b60065460005260206000f350005b6310fac3e16000511415612f30573415612f2257600080fd5b60075460005260206000f350005b6319f5d7606000511415612f57573415612f4957600080fd5b60085460005260206000f350005b63e0a8e16c6000511415612f7e573415612f7057600080fd5b600c5460005260206000f350005b6312686aae6000511415612fa5573415612f9757600080fd5b600d5460005260206000f350005b630bff5d1a6000511415612fcc573415612fbe57600080fd5b600e5460005260206000f350005b63d7e670c76000511415612ff3573415612fe557600080fd5b600f5460005260206000f350005b634578da39600051141561301a57341561300c57600080fd5b60115460005260206000f350005b63fb79cf90600051141561307357341561303357600080fd5b6024356020811061304357600080fd5b6004356004811061305357600080fd5b601260c052602060c0200160c052602060c020015460005260206000f350005b633314f0e560005114156130b357341561308c57600080fd5b6004356004811061309c57600080fd5b601360c052602060c020015460005260206000f350005b5b3461014052337fa419615bc8fda4c87663805ee2a3597a6d71c1d476911d9892f340d965bc7bf16020610140a25b61052a61360c0361052a60003961052a61360c036000f300000000000000000000000000000000000000000000000000000000000004c00000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000009896800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000a456e726561636844414f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044e52434800000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x600436101561000d576130b4565b600035601c5260001561029a575b610160526101405261018060156101405160e05260c052604060c0208060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015250506101e06101a0516020811061007d57600080fd5b601460c052602060c020018060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015260038160c052602060c0200154826060015260048160c052602060c0200154826080015260058160c052602060c02001548260a001525050610180516102a0526102a051151561013d5760156101405160e05260c052604060c02060c052602060c0206000815560006001820155600060028201555060006000526000516101605156505b610220516101c051181561019b576101c051610220518082038080600081121561016357195b607f1c1561017057600080fd5b905090509050600081121561018d5761018051816000031c610194565b61018051811b5b90506102a0525b6102a0516101e05180820282158284830414176101b757600080fd5b809050905090506102005180806101cd57600080fd5b8204905090506102c05260156101405160e05260c052604060c02060c052602060c020600081556000600182015560006002820155506101a0516020811061021457600080fd5b601460c052602060c0200160c052602060c02080546102c0518082101561023a57600080fd5b8082039050905081555060016101a0516020811061025757600080fd5b601460c052602060c0200160c052602060c0200180546102a0518082101561027e57600080fd5b808203905090508155506102c051600052600051610160515650005b600015610654575b6101805261014052610160526101a060156101405160e05260c052604060c0208060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015250506102006101c0516020811061030857600080fd5b601460c052602060c020018060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015260038160c052602060c0200154826060015260048160c052602060c0200154826080015260058160c052602060c02001548260a001525050610240516101e0511815610410576101e05161024051808203808060008112156103a157195b607f1c156103ae57600080fd5b90509050905060008112156103cb576101a051816000031c6103d2565b6101a051811b5b905060156101405160e05260c052604060c02060c052602060c0205561024051600260156101405160e05260c052604060c02060c052602060c02001555b6101605161022051808202821582848304141761042c57600080fd5b8090509050905061020051808061044257600080fd5b8204905090506102c05260156101405160e05260c052604060c02060c052602060c02080546102c0518082101561047857600080fd5b8082039050905081555060035460156101405160e05260c052604060c02060c052602060c02054101561057b576102c0805160156101405160e05260c052604060c02060c052602060c020548181830110156104d357600080fd5b80820190509050815250600060156101405160e05260c052604060c02060c052602060c020556102c05161020051808202821582848304141761051557600080fd5b8090509050905061022051808061052b57600080fd5b8204905090506102e0526101c0516020811061054657600080fd5b601460c052602060c0200160c052602060c02080546102e0518082101561056c57600080fd5b808203905090508155506105bd565b6101c0516020811061058c57600080fd5b601460c052602060c0200160c052602060c020805461016051808210156105b257600080fd5b808203905090508155505b60016101c051602081106105d057600080fd5b601460c052602060c0200160c052602060c0200180546102c051808210156105f757600080fd5b8082039050905081555060156101405160e05260c052604060c02060c052602060c02054151561064e5760156101405160e05260c052604060c02060c052602060c020600081556000600182015560006002820155505b61018051565b6000156109d5575b6101805261014052610160526101a060156101405160e05260c052604060c0208060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015250506101a05115156106c2576101c051156106c5565b60005b1561072a576000610140513b111561070157601a6101c052601a600160156101405160e05260c052604060c02060c052602060c0200155610729565b600c546101c052600c54600160156101405160e05260c052604060c02060c052602060c02001555b5b6102006101c0516020811061073e57600080fd5b601460c052602060c020018060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015260038160c052602060c0200154826060015260048160c052602060c0200154826080015260058160c052602060c02001548260a00152505060006101a0511815610823576101e05161024051808203808060008112156107d557195b607f1c156107e257600080fd5b90509050905060008112156107ff576101a051816000031c610806565b6101a051811b5b905060156101405160e05260c052604060c02060c052602060c020555b61024051600260156101405160e05260c052604060c02060c052602060c02001556102205115156108d15760016101c0516020811061086157600080fd5b601460c052602060c0200160c052602060c0200180546101605181818301101561088a57600080fd5b8082019050905081555060156101405160e05260c052604060c02060c052602060c0208054610160518181830110156108c257600080fd5b8082019050905081555061098c565b610160516102205180820282158284830414176108ed57600080fd5b8090509050905061020051808061090357600080fd5b8204905090506102c05260016101c0516020811061092057600080fd5b601460c052602060c0200160c052602060c0200180546102c05181818301101561094957600080fd5b8082019050905081555060156101405160e05260c052604060c02060c052602060c02080546102c05181818301101561098157600080fd5b808201905090508155505b6101c0516020811061099d57600080fd5b601460c052602060c0200160c052602060c0208054610160518181830110156109c557600080fd5b8082019050905081555061018051565b63659f62366000511415610b015734156109ee57600080fd5b60043560a01c156109fe57600080fd5b600954331415610a1c57602060243510610a1757600080fd5b610a8d565b600160173360e05260c052604060c020541415610a4757601960243510610a4257600080fd5b610a8c565b6308c379a061014052602061016052600c610180527f556e617574686f72697a656400000000000000000000000000000000000000006101a05261018050606461015cfd5b5b6101405160043561016052610160516006580161001b565b6101c052610140526101c051610140526024356001601560043560e05260c052604060c02060c052602060c02001556101405160043561016052610140516101805261018051610160516006580161065c565b61014052600050005b631533078f6000511415610b40573415610b1a57600080fd5b60043560011c15610b2a57600080fd5b6009543314610b3857600080fd5b600435600e55005b63cd8f72776000511415610d02573415610b5957600080fd5b6009543314610b6757600080fd5b60043560048110610b7757600080fd5b601260c052602060c0200160c052602060c020602480358255806020013560018301558060400135600283015580606001356003830155806080013560048301558060a0013560058301558060c0013560068301558060e00135600783015580610100013560088301558061012001356009830155806101400135600a830155806101600135600b830155806101800135600c830155806101a00135600d830155806101c00135600e830155806101e00135600f83015580610200013560108301558061022001356011830155806102400135601283015580610260013560138301558061028001356014830155806102a001356015830155806102c001356016830155806102e00135601783015580610300013560188301558061032001356019830155806103400135601a830155806103600135601b830155806103800135601c830155806103a00135601d830155806103c00135601e830155806103e00135601f83015550506104243560043560048110610cf457600080fd5b601360c052602060c0200155005b630cbea6a46000511415610d55573415610d1b57600080fd5b6009543314610d2957600080fd5b602435600360043560208110610d3e57600080fd5b601460c052602060c0200160c052602060c0200155005b63e15a56c86000511415610db2573415610d6e57600080fd5b60043560a01c15610d7e57600080fd5b60243560011c15610d8e57600080fd5b6009543314610d9c57600080fd5b602435601760043560e05260c052604060c02055005b6302f995566000511415610e0f573415610dcb57600080fd5b60043560a01c15610ddb57600080fd5b60243560011c15610deb57600080fd5b6009543314610df957600080fd5b602435601860043560e05260c052604060c02055005b637c2643b16000511415610e4e573415610e2857600080fd5b60043560011c15610e3857600080fd5b6009543314610e4657600080fd5b600435601955005b632e2326d56000511415610e93573415610e6757600080fd5b60043560a01c15610e7757600080fd5b601760043560e05260c052604060c0205460005260206000f350005b6356148dbf6000511415610f0e573415610eac57600080fd5b60043560a01c15610ebc57600080fd5b600954331415610ecd576001610edd565b60173360e05260c052604060c020545b5b610ee757600080fd5b6001601560043560e05260c052604060c02060c052602060c020015460005260206000f350005b600015611096575b610160526101405261018060156101405160e05260c052604060c0208060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015250506101e06101a05160208110610f7857600080fd5b601460c052602060c020018060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015260038160c052602060c0200154826060015260048160c052602060c0200154826080015260058160c052602060c02001548260a001525050610200511515611008576000600052600051610160515650611094565b6101c051610220518082038080600081121561102057195b607f1c1561102d57600080fd5b905090509050600081121561104a5761018051816000031c611051565b61018051811b5b90506101e051808202821582848304141761106b57600080fd5b8090509050905061020051808061108157600080fd5b8204905090506000526000516101605156505b005b63080feeab60005114156112295734156110af57600080fd5b60043560a01c156110bf57600080fd5b6009543314156110d05760016110f2565b60173360e05260c052604060c02054156110eb5760016110f1565b33600435145b5b5b6110fc57600080fd5b610140601560043560e05260c052604060c0208060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015250506101a0610160516020811061115557600080fd5b601460c052602060c020018060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015260038160c052602060c0200154826060015260048160c052602060c0200154826080015260058160c052602060c02001548260a001525050610260808080610140518152505060208101905080806101a0518152505060208101905080806101c051815250506020810190508080610180518152505060208101905080806101e0518152505060a09050905060c05260c051610260f350005b6352ca3ef7600051141561133457341561124257600080fd5b600954331415611253576001611263565b60173360e05260c052604060c020545b5b61126d57600080fd5b6101406004356020811061128057600080fd5b601460c052602060c020018060c052602060c02054825260018160c052602060c0200154826020015260028160c052602060c0200154826040015260038160c052602060c0200154826060015260048160c052602060c0200154826080015260058160c052602060c02001548260a0015250506102008080806101405181525050602081019050808061016051815250506020810190508080610180518152505060609050905060c05260c051610200f350005b637118514a60005114156113d157341561134d57600080fd5b60243560011c1561135d57600080fd5b60443560011c1561136d57600080fd5b600954331461137b57600080fd5b60243560046004356020811061139057600080fd5b601460c052602060c0200160c052602060c02001556044356005600435602081106113ba57600080fd5b601460c052602060c0200160c052602060c0200155005b63ddde6e4e60005114156114bf5734156113ea57600080fd5b6009543314156113fb57600161140b565b60173360e05260c052604060c020545b5b61141557600080fd5b61014080808060046004356020811061142d57600080fd5b601460c052602060c0200160c052602060c020015481525050602081019050808060056004356020811061146057600080fd5b601460c052602060c0200160c052602060c020015481525050602081019050808060036004356020811061149357600080fd5b601460c052602060c0200160c052602060c02001548152505060609050905060c05260c051610140f350005b6318160ddd60005114156115635734156114d857600080fd5b60006101405261016060006020818352015b6101408051610160516020811061150057600080fd5b601460c052602060c0200160c052602060c0205481818301101561152357600080fd5b808201905090508152505b81516001018083528114156114ea575b505061014051600354808061155257600080fd5b82049050905060005260206000f350005b6370a0823160005114156115c757341561157c57600080fd5b60043560a01c1561158c57600080fd5b600435610140526101405160065801610f16565b6101a0526101a05160035480806115b657600080fd5b82049050905060005260206000f350005b63dd62ed3e600051141561162a5734156115e057600080fd5b60043560a01c156115f057600080fd5b60243560a01c1561160057600080fd5b601660043560e05260c052604060c02060243560e05260c052604060c0205460005260206000f350005b637e81ca66600051141561167457341561164357600080fd5b600954331461165157600080fd5b60006044351861166057600080fd5b600435600f55602435601055604435601155005b6000156119cf575b61014052600060075418156116bd576008546007548082101561169e57600080fd5b808203905090506201518080820490509050601980820690509050600c555b6008544211156119bf57600c54602081106116d757600080fd5b601460c052602060c0200160c052602060c02054600f54808202821582848304141761170257600080fd5b80905090509050601154808061171757600080fd5b82049050905061016052600c546020811061173157600080fd5b601460c052602060c0200160c052602060c0208054610160518082101561175757600080fd5b80820390509050815550601b601460c052602060c0200160c052602060c02080546101605181818301101561178b57600080fd5b8082019050905081555060088054620151808181830110156117ac57600080fd5b80820190509050815550600c54151561187b576000601154600f54808210156117d457600080fd5b80820390509050181561187a5760055460115480820282158284830414176117fb57600080fd5b80905090509050601154600f548082101561181557600080fd5b80820390509050808061182757600080fd5b820490509050600555600654600554111561187957600580546002808204905090508155506004805460018082018080600081121561186257195b607f1c1561186f57600080fd5b9050905090508155505b5b5b6004546002600c546020811061189057600080fd5b601460c052602060c0200160c052602060c020015418156119b0576002600c54602081106118bd57600080fd5b601460c052602060c0200160c052602060c0200154600454808203808060008112156118e557195b607f1c156118f257600080fd5b9050905090506000811215611932576001600c546020811061191357600080fd5b601460c052602060c0200160c052602060c0200154816000031c61195c565b6001600c546020811061194457600080fd5b601460c052602060c0200160c052602060c0200154811b5b90506001600c546020811061197057600080fd5b601460c052602060c0200160c052602060c02001556004546002600c546020811061199a57600080fd5b601460c052602060c0200160c052602060c02001555b60016000526000516101405156505b6000600052600051610140515650005b630904b7fc6000511415611a045734156119e857600080fd5b6006580161167c565b610140526101405160005260206000f350005b600015611ad3575b6101805261014052610160526005600160156101405160e05260c052604060c02060c052602060c020015460208110611a4457600080fd5b601460c052602060c0200160c052602060c020015415611a6d5760006000526000516101805156505b6004600160156101605160e05260c052604060c02060c052602060c020015460208110611a9957600080fd5b601460c052602060c0200160c052602060c020015415611ac25760006000526000516101805156505b600e54600052600051610180515650005b60001561206e575b6101a052610140526101605261018052600854421115611b015760006007541415611b04565b60005b15611b3b576101405161016051610180516101a0516006580161167c565b6101c0526101a0526101805261016052610140526101c0505b610180516003548082028215828483041417611b5657600080fd5b809050905090506101c05260006101e0526003600160156101405160e05260c052604060c02060c052602060c020015460208110611b9357600080fd5b601460c052602060c0200160c052602060c0200154610200526101405161016051610180516101a0516101c0516101e0516102005161014051610220526101c051610240526102405161022051600658016102a2565b610200526101e0526101c0526101a0526101805261016052610140526000506101405161016051610180516101a0516101c0516101e0516102005161014051610220526101605161024052610240516102205160065801611a0c565b6102a052610200526101e0526101c0526101a0526101805261016052610140526102a05115611d7b576102c060006020818352015b6101c0516102c05160208110611c8f57600080fd5b6102005160048110611ca057600080fd5b601260c052602060c0200160c052602060c02001548082028215828483041417611cc957600080fd5b809050905090506102005160048110611ce157600080fd5b601360c052602060c02001548080611cf857600080fd5b8204905090506102e0526101e080516102e051818183011015611d1a57600080fd5b808201905090508152506102c05160208110611d3557600080fd5b601460c052602060c0200160c052602060c02080546102e051818183011015611d5d57600080fd5b808201905090508155505b8151600101808352811415611c7a575b50505b600a54431415611d8f57600b543214611d92565b60005b15611e915760195415611df35760186101405160e05260c052604060c0205415611dbd576001611dec565b60186101605160e05260c052604060c0205415611ddb576001611deb565b60183260e05260c052604060c020545b5b5b15611df6565b60005b15611e8c576101c0516010548082028215828483041417611e1657600080fd5b809050905090506011548080611e2b57600080fd5b820490509050610220526101e0805161022051818183011015611e4d57600080fd5b80820190509050815250601d601460c052602060c0200160c052602060c020805461022051818183011015611e8157600080fd5b808201905090508155505b611e9a565b43600a5532600b555b6101c080516101e05180821015611eb057600080fd5b808203905090508152506000600754181561200c57600160156101405160e05260c052604060c02060c052602060c0200154600c541815611f10576019600160156101405160e05260c052604060c02060c052602060c020015410611f13565b60005b1561200b576101405161016051610180516101a0516101c0516101e05161020051610220516101405161024052610240516006580161001b565b6102a05261022052610200526101e0526101c0526101a0526101805261016052610140526102a05161022052600061022051181561200a57600c54600160156101405160e05260c052604060c02060c052602060c02001556101405161016051610180516101a0516101c0516101e05161020051610220516101405161024052610220516102605261026051610240516006580161065c565b61022052610200526101e0526101c0526101a0526101805261016052610140526000505b5b5b6101405161016051610180516101a0516101c0516101e0516102005161016051610220526101c0516102405261024051610220516006580161065c565b610200526101e0526101c0526101a0526101805261016052610140526000506101a051565b63a9059cbb60005114156121a457341561208757600080fd5b60043560a01c1561209757600080fd5b600d5415156120a75760016120c9565b60173360e05260c052604060c02054156120c25760016120c8565b60095433145b5b5b151561213a576308c379a0610140526020610160526024610180527f596f7520617265206e6f7420616c6c6f77656420746f206d616b65207472616e6101a0527f73666572000000000000000000000000000000000000000000000000000000006101c05261018050608461015cfd5b3361014052600435610160526024356101805261018051610160516101405160065801611adb565b60005060243561014052600435337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610140a3600160005260206000f350005b6323b872dd60005114156123445734156121bd57600080fd5b60043560a01c156121cd57600080fd5b60243560a01c156121dd57600080fd5b600d5415156121ed57600161222d565b60173360e05260c052604060c020541561220857600161222c565b601760043560e05260c052604060c020541561222557600161222b565b60095433145b5b5b5b151561229e576308c379a0610140526020610160526024610180527f596f7520617265206e6f7420616c6c6f77656420746f206d616b65207472616e6101a0527f73666572000000000000000000000000000000000000000000000000000000006101c05261018050608461015cfd5b60043561014052602435610160526044356101805261018051610160516101405160065801611adb565b600050601660043560e05260c052604060c0203360e05260c052604060c0208054604435808210156122f957600080fd5b80820390509050815550604435610140526024356004357fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610140a3600160005260206000f350005b600015612418575b6101a0526101405261016052610180526101805160166101405160e05260c052604060c0206101605160e05260c052604060c02055610180516101c05261016051610140517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560206101c0a36008544211156123ce57600060075414156123d1565b60005b15612408576101405161016051610180516101a0516006580161167c565b6101c0526101a0526101805261016052610140526101c0505b60016000526000516101a0515650005b63095ea7b3600051141561247e57341561243157600080fd5b60043560a01c1561244157600080fd5b336101405260043561016052602435610180526101805161016051610140516006580161234c565b6101e0526101e050600160005260206000f350005b6339509351600051141561251757341561249757600080fd5b60043560a01c156124a757600080fd5b33610140526004356101605260163360e05260c052604060c02060043560e05260c052604060c020546024358181830110156124e257600080fd5b80820190509050610180526101805161016051610140516006580161234c565b6101e0526101e050600160005260206000f350005b63a457c2d760005114156125ae57341561253057600080fd5b60043560a01c1561254057600080fd5b33610140526004356101605260163360e05260c052604060c02060043560e05260c052604060c020546024358082101561257957600080fd5b80820390509050610180526101805161016051610140516006580161234c565b6101e0526101e050600160005260206000f350005b63509027f560005114156126375734156125c757600080fd5b60095433146125d557600080fd5b600754156125e257600080fd5b6001600e5542620151808082049050905062015180808202821582848304141761260b57600080fd5b809050905090506007556007546220f58081818301101561262b57600080fd5b80820190509050600855005b6320b44b29600051141561267657341561265057600080fd5b60043560011c1561266057600080fd5b600954331461266e57600080fd5b600435600d55005b63c311d04960005114156126b957341561268f57600080fd5b600954331461269d57600080fd5b60006000600060006004356009546000f16126b757600080fd5b005b6000156128ff575b6101805261014052610160526101605160035480820282158284830414176126e857600080fd5b809050905090506101a05260006101c0526003600160156101405160e05260c052604060c02060c052602060c02001546020811061272557600080fd5b601460c052602060c0200160c052602060c02001546101e0526101405161016051610180516101a0516101c0516101e05161014051610200526101a051610220526102205161020051600658016102a2565b6101e0526101c0526101a05261018052610160526101405260005061020060006020818352015b6101c080516101e051600481106127b457600080fd5b601360c052602060c02001548181830110156127cf57600080fd5b808201905090508152505b815160010180835281141561279e575b50506101c051151561282f576019601460c052602060c0200160c052602060c02080546101a05181818301101561282057600080fd5b808201905090508155506128f9565b61020060006020818352015b610200516020811061284c57600080fd5b601460c052602060c0200160c052602060c02080546101a051610200516020811061287657600080fd5b6101e0516004811061288757600080fd5b601260c052602060c0200160c052602060c020015480820282158284830414176128b057600080fd5b809050905090506101c05180806128c657600080fd5b8204905090508181830110156128db57600080fd5b808201905090508155505b815160010180835281141561283b575b50505b61018051565b63483f31ab600051141561293a57341561291857600080fd5b3361014052600435610160526101605161014051600658016126c1565b600050005b63bd2335f660005114156129bd57341561295357600080fd5b60043560a01c1561296357600080fd5b600954331461297157600080fd5b601a6001601560043560e05260c052604060c02060c052602060c02001541461299957600080fd5b60043561014052602435610160526101605161014051600658016126c1565b600050005b600015612a76575b610180526101405261016052600061014051186129e157600080fd5b610140516101605161018051610140516101a052610160516003548082028215828483041417612a1057600080fd5b809050905090506101c0526101c0516101a051600658016102a2565b610180526101605261014052600050610160516101a0526000610140517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101a0a361018051565b6342966c686000511415612ab1573415612a8f57600080fd5b3361014052600435610160526101605161014051600658016129c5565b600050005b6379cc67906000511415612b36573415612aca57600080fd5b60043560a01c15612ada57600080fd5b601660043560e05260c052604060c0203360e05260c052604060c020805460243580821015612b0857600080fd5b8082039050905081555060043561014052602435610160526101605161014051600658016129c5565b600050005b63f2fde38b6000511415612bb0573415612b4f57600080fd5b60043560a01c15612b5f57600080fd5b6009543314612b6d57600080fd5b600060043518612b7c57600080fd5b6004356009547f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060006000a3600435600955005b6307ddc2266000511415612c47573415612bc957600080fd5b60043560a01c15612bd957600080fd5b60243560a01c15612be957600080fd5b6009543314612bf757600080fd5b60206101e0604463a9059cbb61014052602435610160526044356101805261015c60006004355af1612c2857600080fd5b601f3d11612c3557600080fd5b6000506101e05160005260206000f350005b63bb2b38bd6000511415612cde573415612c6057600080fd5b60043560a01c15612c7057600080fd5b60243560a01c15612c8057600080fd5b6009543314612c8e57600080fd5b60206101e0604463095ea7b361014052602435610160526044356101805261015c60006004355af1612cbf57600080fd5b601f3d11612ccc57600080fd5b6000506101e05160005260206000f350005b6306fdde036000511415612d92573415612cf757600080fd5b60008060c052602060c020610180602082540161012060006003818352015b82610120516020021115612d2957612d4b565b61012051850154610120516020028501525b8151600101808352811415612d16575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f350005b6395d89b416000511415612e46573415612dab57600080fd5b60018060c052602060c020610180602082540161012060006002818352015b82610120516020021115612ddd57612dff565b61012051850154610120516020028501525b8151600101808352811415612dca575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f350005b63313ce5676000511415612e6d573415612e5f57600080fd5b60025460005260206000f350005b63f51e181a6000511415612e94573415612e8657600080fd5b60035460005260206000f350005b631b0bef5c6000511415612ebb573415612ead57600080fd5b60045460005260206000f350005b6380b14d156000511415612ee2573415612ed457600080fd5b60055460005260206000f350005b63d7a62fac6000511415612f09573415612efb57600080fd5b60065460005260206000f350005b6310fac3e16000511415612f30573415612f2257600080fd5b60075460005260206000f350005b6319f5d7606000511415612f57573415612f4957600080fd5b60085460005260206000f350005b63e0a8e16c6000511415612f7e573415612f7057600080fd5b600c5460005260206000f350005b6312686aae6000511415612fa5573415612f9757600080fd5b600d5460005260206000f350005b630bff5d1a6000511415612fcc573415612fbe57600080fd5b600e5460005260206000f350005b63d7e670c76000511415612ff3573415612fe557600080fd5b600f5460005260206000f350005b634578da39600051141561301a57341561300c57600080fd5b60115460005260206000f350005b63fb79cf90600051141561307357341561303357600080fd5b6024356020811061304357600080fd5b6004356004811061305357600080fd5b601260c052602060c0200160c052602060c020015460005260206000f350005b633314f0e560005114156130b357341561308c57600080fd5b6004356004811061309c57600080fd5b601360c052602060c020015460005260206000f350005b5b3461014052337fa419615bc8fda4c87663805ee2a3597a6d71c1d476911d9892f340d965bc7bf16020610140a2

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000004c00000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000009896800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000a456e726561636844414f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044e52434800000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): EnreachDAO
Arg [1] : _symbol (string): NRCH
Arg [2] : _decimals (uint256): 9
Arg [3] : _supply (uint256): 10000000
Arg [4] : _transferLocked (bool): True
Arg [5] : _tax_nums (uint256[32]): 4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,100,0,0,0,0,0,0
Arg [6] : _tax_denom (uint256): 10000

-----Encoded View---------------
42 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000004c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000500
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 0000000000000000000000000000000000000000000000000000000000989680
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [21] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [22] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [23] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [24] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [25] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [27] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [28] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [29] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [30] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [31] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [32] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [33] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [34] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [35] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [36] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [37] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [38] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [39] : 456e726561636844414f00000000000000000000000000000000000000000000
Arg [40] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [41] : 4e52434800000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.