ETH Price: $2,361.44 (+0.87%)

Token

VNDC (VNDC)
 

Overview

Max Total Supply

999,999,999,999 VNDC

Holders

4

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
999,997,999,999 VNDC

Value
$0.00
0x73de4d81d793c53d6823e6229bbdaf19b71d3d0c
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:
VNDCToken

Compiler Version
v0.4.11+commit.68ef5810

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-08-29
*/

/**
 * Math operations with safety checks
 */
library SafeMath {
  function mul(uint a, uint b) internal returns (uint) {
    uint c = a * b;
    assert(a == 0 || c / a == b);
    return c;
  }

  function div(uint a, uint b) internal returns (uint) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    uint c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
  }

  function sub(uint a, uint b) internal returns (uint) {
    assert(b <= a);
    return a - b;
  }

  function add(uint a, uint b) internal returns (uint) {
    uint c = a + b;
    assert(c >= a);
    return c;
  }

  function max64(uint64 a, uint64 b) internal constant returns (uint64) {
    return a >= b ? a : b;
  }

  function min64(uint64 a, uint64 b) internal constant returns (uint64) {
    return a < b ? a : b;
  }

  function max256(uint256 a, uint256 b) internal constant returns (uint256) {
    return a >= b ? a : b;
  }

  function min256(uint256 a, uint256 b) internal constant returns (uint256) {
    return a < b ? a : b;
  }

  function assert(bool assertion) internal {
    if (!assertion) {
      throw;
    }
  }
}


/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control 
 * functions, this simplifies the implementation of "user permissions". 
 */
contract Ownable {
  address public owner;


  /** 
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  function Ownable() {
    owner = msg.sender;
  }


  /**
   * @dev Throws if called by any account other than the owner. 
   */
  modifier onlyOwner() {
    if (msg.sender != owner) {
      throw;
    }
    _;
  }


  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to. 
   */
  function transferOwnership(address newOwner) onlyOwner {
    if (newOwner != address(0)) {
      owner = newOwner;
    }
  }

}

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
  event Pause();
  event Unpause();

  bool public paused = false;


  /**
   * @dev modifier to allow actions only when the contract IS paused
   */
  modifier whenNotPaused() {
    if (paused) throw;
    _;
  }

  /**
   * @dev modifier to allow actions only when the contract IS NOT paused
   */
  modifier whenPaused {
    if (!paused) throw;
    _;
  }

  /**
   * @dev called by the owner to pause, triggers stopped state
   */
  function pause() onlyOwner whenNotPaused returns (bool) {
    paused = true;
    Pause();
    return true;
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() onlyOwner whenPaused returns (bool) {
    paused = false;
    Unpause();
    return true;
  }
}

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20Basic {
  uint public _totalSupply;
  function totalSupply() constant returns (uint);
  function balanceOf(address who) constant returns (uint);
  function transfer(address to, uint value);
  event Transfer(address indexed from, address indexed to, uint value);
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) constant returns (uint);
  function transferFrom(address from, address to, uint value);
  function approve(address spender, uint value);
  event Approval(address indexed owner, address indexed spender, uint value);
}

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is Ownable, ERC20Basic {
  using SafeMath for uint;

  mapping(address => uint) balances;

  // additional variables for use if transaction fees ever became necessary
  uint public basisPointsRate = 0;
  uint public maximumFee = 0;

  /**
   * @dev Fix for the ERC20 short address attack.
   */
  modifier onlyPayloadSize(uint size) {
     if(msg.data.length < size + 4) {
       throw;
     }
     _;
  }

  /**
  * @dev transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint _value) onlyPayloadSize(2 * 32) {
    uint fee = (_value.mul(basisPointsRate)).div(10000);
    if (fee > maximumFee) {
      fee = maximumFee;
    }
    uint sendAmount = _value.sub(fee);
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(sendAmount);
    balances[owner] = balances[owner].add(fee);
    Transfer(msg.sender, _to, sendAmount);
    Transfer(msg.sender, owner, fee);
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) constant returns (uint balance) {
    return balances[_owner];
  }

}


/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is BasicToken, ERC20 {

  mapping (address => mapping (address => uint)) allowed;

  uint constant MAX_UINT = 2**256 - 1;

  /**
   * @dev Transfer tokens from one address to another
   * @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 uint the amount of tokens to be transferred
   */
  function transferFrom(address _from, address _to, uint _value) onlyPayloadSize(3 * 32) {
    var _allowance = allowed[_from][msg.sender];

    // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met
    // if (_value > _allowance) throw;

    uint fee = (_value.mul(basisPointsRate)).div(10000);
    if (fee > maximumFee) {
      fee = maximumFee;
    }
    uint sendAmount = _value.sub(fee);

    balances[_to] = balances[_to].add(sendAmount);
    balances[owner] = balances[owner].add(fee);
    balances[_from] = balances[_from].sub(_value);
    if (_allowance < MAX_UINT) {
      allowed[_from][msg.sender] = _allowance.sub(_value);
    }
    Transfer(_from, _to, sendAmount);
    Transfer(_from, owner, fee);
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint _value) onlyPayloadSize(2 * 32) {

    // To change the approve amount you first have to reduce the addresses`
    //  allowance to zero by calling `approve(_spender, 0)` if it is not
    //  already 0 to mitigate the race condition described here:
    //  https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
    if ((_value != 0) && (allowed[msg.sender][_spender] != 0)) throw;

    allowed[msg.sender][_spender] = _value;
    Approval(msg.sender, _spender, _value);
  }

  /**
   * @dev Function to check the amount of tokens than an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint specifying the amount of tokens still available for the spender.
   */
  function allowance(address _owner, address _spender) constant returns (uint remaining) {
    return allowed[_owner][_spender];
  }

}

contract UpgradedStandardToken is StandardToken{
        // those methods are called by the legacy contract
        // and they must ensure msg.sender to be the contract address
        function transferByLegacy(address from, address to, uint value);
        function transferFromByLegacy(address sender, address from, address spender, uint value);
        function approveByLegacy(address from, address spender, uint value);
}
 
/// VNDC Token Contract - vndc.io

contract VNDCToken is Pausable, StandardToken {

  string public name;
  string public symbol;
  uint public decimals;
  address public upgradedAddress;
  bool public deprecated;
  mapping (address => bool) public isBlackListed;
  
  
  //  The contract can be initialized with a number of tokens
  //  All the tokens are deposited to the owner address
  //
  // @param _balance Initial supply of the contract
  // @param _name Token Name
  // @param _symbol Token symbol
  // @param _decimals Token decimals
  function VNDCToken(){
      _totalSupply = 1000000000000 * 10**uint(decimals);
      name = "VNDC";
      symbol = "VNDC";
      balances[owner] = 1000000000000 * 10**uint(decimals);
      deprecated = false;
      
  }

  // Forward ERC20 methods to upgraded contract if this one is deprecated
  function transfer(address _to, uint _value) whenNotPaused   {
       require(!isBlackListed[_to]);
        if (deprecated) {
          return UpgradedStandardToken(upgradedAddress).transferByLegacy(msg.sender, _to, _value);
        } else {
          return super.transfer(_to, _value);
        }
         
     
  }

  // Forward ERC20 methods to upgraded contract if this one is deprecated
  function transferFrom(address _from, address _to, uint _value) whenNotPaused   {
    
    require(!isBlackListed[_from]);
    
    if (deprecated) {
      return UpgradedStandardToken(upgradedAddress).transferFromByLegacy(msg.sender, _from, _to, _value);
    } else {
      return super.transferFrom(_from, _to, _value);
    }
  }

  // Forward ERC20 methods to upgraded contract if this one is deprecated
  function balanceOf(address who) constant returns (uint){
    if (deprecated) {
      return UpgradedStandardToken(upgradedAddress).balanceOf(who);
    } else {
      return super.balanceOf(who);
    }
  }

  // Forward ERC20 methods to upgraded contract if this one is deprecated
  function approve(address _spender, uint _value) onlyPayloadSize(2 * 32) {
    if (deprecated) {
      return UpgradedStandardToken(upgradedAddress).approveByLegacy(msg.sender, _spender, _value);
    } else {
      return super.approve(_spender, _value);
    }
  }

  // Forward ERC20 methods to upgraded contract if this one is deprecated
  function allowance(address _owner, address _spender) constant returns (uint remaining) {
    if (deprecated) {
      return StandardToken(upgradedAddress).allowance(_owner, _spender);
    } else {
      return super.allowance(_owner, _spender);
    }
  }

  // deprecate current contract in favour of a new one
  function deprecate(address _upgradedAddress) onlyOwner {
    deprecated = true;
    upgradedAddress = _upgradedAddress;
    Deprecate(_upgradedAddress);
  }

  // deprecate current contract if favour of a new one
  function totalSupply() constant returns (uint){
    if (deprecated) {
      return StandardToken(upgradedAddress).totalSupply();
    } else {
      return _totalSupply;
    }
  }

  // Issue a new amount of tokens
  // these tokens are deposited into the owner address
  //
  // @param _amount Number of tokens to be issued
  function issue(uint amount) onlyOwner {
    if (_totalSupply + amount < _totalSupply) throw;
    if (balances[owner] + amount < balances[owner]) throw;

    balances[owner] += amount;
    _totalSupply += amount;
    Issue(amount);
  }

  // Burn tokens.
  // These tokens are burned from the owner address
  // @param _amount Number of tokens to be issued
  function burn(uint amount) onlyOwner {
      if (_totalSupply < amount) throw;
      if (balances[owner] < amount) throw;

      _totalSupply -= amount;
      balances[owner] -= amount;
      Burn(amount);
  }

  function setParams(uint newBasisPoints, uint newMaxFee) onlyOwner {
      // Ensure transparency by hardcoding limit beyond which fees can never be added
    
      basisPointsRate = newBasisPoints;
      maximumFee = newMaxFee.mul(10**decimals);

      Params(basisPointsRate, maximumFee);
  }
  
   function getBlackListStatus(address _maker) external constant returns (bool) {
        return isBlackListed[_maker];
    }


    
    function addBlackList (address _evilUser) public onlyOwner {
        isBlackListed[_evilUser] = true;
        AddedBlackList(_evilUser);
    }

    function removeBlackList (address _clearedUser) public onlyOwner {
        isBlackListed[_clearedUser] = false;
        RemovedBlackList(_clearedUser);
    }

    function destroyBlackFunds (address _blackListedUser) public onlyOwner {
        require(isBlackListed[_blackListedUser]);
        uint dirtyFunds = balanceOf(_blackListedUser);
        balances[_blackListedUser] = 0;
        _totalSupply -= dirtyFunds;
        DestroyedBlackFunds(_blackListedUser, dirtyFunds);
    }

    event DestroyedBlackFunds(address _blackListedUser, uint _balance);

    event AddedBlackList(address _user);

    event RemovedBlackList(address _user);
    

  // Called when new token are issued
  event Issue(uint amount);

  // Called when tokens are Burned
  event Burn(uint amount);

  // Called when contract is deprecated
  event Deprecate(address newAddress);

  // Called if contract ever adds fees
  event Params(uint feeBasisPoints, uint maxFee);
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_upgradedAddress","type":"address"}],"name":"deprecate","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"deprecated","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_evilUser","type":"address"}],"name":"addBlackList","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"upgradedAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"maximumFee","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_maker","type":"address"}],"name":"getBlackListStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newBasisPoints","type":"uint256"},{"name":"newMaxFee","type":"uint256"}],"name":"setParams","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"issue","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"basisPointsRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isBlackListed","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_clearedUser","type":"address"}],"name":"removeBlackList","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_blackListedUser","type":"address"}],"name":"destroyBlackFunds","outputs":[],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_blackListedUser","type":"address"},{"indexed":false,"name":"_balance","type":"uint256"}],"name":"DestroyedBlackFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_user","type":"address"}],"name":"AddedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_user","type":"address"}],"name":"RemovedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"Issue","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAddress","type":"address"}],"name":"Deprecate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"feeBasisPoints","type":"uint256"},{"indexed":false,"name":"maxFee","type":"uint256"}],"name":"Params","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"}]

60606040526000805460a060020a60ff0219168155600381905560045534156200002557fe5b5b5b60008054600160a060020a03191633600160a060020a03161790555b600854600a0a64e8d4a51000026001556040805180820190915260048082527f564e4443000000000000000000000000000000000000000000000000000000006020909201918252620000999160069162000122565b506040805180820190915260048082527f564e4443000000000000000000000000000000000000000000000000000000006020909201918252620000e09160079162000122565b5060085460008054600160a060020a03168152600260205260409020600a9190910a64e8d4a510000290556009805460a060020a60ff02191690555b620001cc565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200016557805160ff191683800117855562000195565b8280016001018555821562000195579182015b828111156200019557825182559160200191906001019062000178565b5b50620001a4929150620001a8565b5090565b620001c991905b80821115620001a45760008155600101620001af565b5090565b90565b61175880620001dc6000396000f300606060405236156101675763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101695780630753c30c146101f9578063095ea7b3146102175780630e136b19146102385780630ecb93c01461025c57806318160ddd1461027a57806323b872dd1461029c57806326976e3f146102c3578063313ce567146102ef57806335390714146103115780633eaaf86b146103335780633f4ba83a1461035557806342966c681461037957806359bf1abe1461038e5780635c975abb146103be57806370a08231146103e25780638456cb59146104105780638da5cb5b1461043457806395d89b4114610460578063a9059cbb146104f0578063c0324c7714610511578063cc872b6614610529578063dd62ed3e1461053e578063dd644f7214610572578063e47d606014610594578063e4997dc5146105c4578063f2fde38b146105e2578063f3bdc22814610600575bfe5b341561017157fe5b61017961061e565b6040805160208082528351818301528351919283929083019185019080838382156101bf575b8051825260208311156101bf57601f19909201916020918201910161019f565b505050905090810190601f1680156101eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020157fe5b610215600160a060020a03600435166106ac565b005b341561021f57fe5b610215600160a060020a036004351660243561074b565b005b341561024057fe5b610248610808565b604080519115158252519081900360200190f35b341561026457fe5b610215600160a060020a0360043516610818565b005b341561028257fe5b61028a610891565b60408051918252519081900360200190f35b34156102a457fe5b610215600160a060020a0360043581169060243516604435610930565b005b34156102cb57fe5b6102d3610a28565b60408051600160a060020a039092168252519081900360200190f35b34156102f757fe5b61028a610a37565b60408051918252519081900360200190f35b341561031957fe5b61028a610a3d565b60408051918252519081900360200190f35b341561033b57fe5b61028a610a43565b60408051918252519081900360200190f35b341561035d57fe5b610248610a49565b604080519115158252519081900360200190f35b341561038157fe5b610215600435610acd565b005b341561039657fe5b610248600160a060020a0360043516610b82565b604080519115158252519081900360200190f35b34156103c657fe5b610248610ba4565b604080519115158252519081900360200190f35b34156103ea57fe5b61028a600160a060020a0360043516610bb4565b60408051918252519081900360200190f35b341561041857fe5b610248610c6a565b604080519115158252519081900360200190f35b341561043c57fe5b6102d3610cf3565b60408051600160a060020a039092168252519081900360200190f35b341561046857fe5b610179610d02565b6040805160208082528351818301528351919283929083019185019080838382156101bf575b8051825260208311156101bf57601f19909201916020918201910161019f565b505050905090810190601f1680156101eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156104f857fe5b610215600160a060020a0360043516602435610d90565b005b341561051957fe5b610215600435602435610e7a565b005b341561053157fe5b610215600435610efc565b005b341561054657fe5b61028a600160a060020a0360043581169060243516610fb2565b60408051918252519081900360200190f35b341561057a57fe5b61028a61106e565b60408051918252519081900360200190f35b341561059c57fe5b610248600160a060020a0360043516611074565b604080519115158252519081900360200190f35b34156105cc57fe5b610215600160a060020a0360043516611089565b005b34156105ea57fe5b610215600160a060020a03600435166110ff565b005b341561060857fe5b610215600160a060020a0360043516611158565b005b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106a45780601f10610679576101008083540402835291602001916106a4565b820191906000526020600020905b81548152906001019060200180831161068757829003601f168201915b505050505081565b60005433600160a060020a039081169116146106c85760006000fd5b6009805460a060020a74ff0000000000000000000000000000000000000000199091161773ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03831690811790915560408051918252517fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e916020908290030190a15b5b50565b6040604436101561075c5760006000fd5b60095460a060020a900460ff16156107f657600954604080517faee92d33000000000000000000000000000000000000000000000000000000008152600160a060020a0333811660048301528681166024830152604482018690529151919092169163aee92d3391606480830192600092919082900301818387803b15156107e057fe5b6102c65a03f115156107ee57fe5b505050610800565b610800838361120c565b5b5b5b505050565b60095460a060020a900460ff1681565b60005433600160a060020a039081169116146108345760006000fd5b600160a060020a0381166000818152600a6020908152604091829020805460ff19166001179055815192835290517f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9281900390910190a15b5b50565b60095460009060a060020a900460ff161561092757600954604080516000602091820181905282517f18160ddd0000000000000000000000000000000000000000000000000000000081529251600160a060020a03909416936318160ddd9360048082019493918390030190829087803b151561090a57fe5b6102c65a03f1151561091857fe5b505060405151915061092c9050565b506001545b5b90565b60005460a060020a900460ff16156109485760006000fd5b600160a060020a0383166000908152600a602052604090205460ff161561096f5760006000fd5b60095460a060020a900460ff1615610a1157600954604080517f8b477adb000000000000000000000000000000000000000000000000000000008152600160a060020a033381166004830152868116602483015285811660448301526064820185905291519190921691638b477adb91608480830192600092919082900301818387803b15156107e057fe5b6102c65a03f115156107ee57fe5b505050610800565b6108008383836112bf565b610800565b5b5b505050565b600954600160a060020a031681565b60085481565b60045481565b60015481565b6000805433600160a060020a03908116911614610a665760006000fd5b60005460a060020a900460ff161515610a7f5760006000fd5b6000805474ff0000000000000000000000000000000000000000191681556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b339190a15060015b5b5b90565b60005433600160a060020a03908116911614610ae95760006000fd5b806001541015610af95760006000fd5b60008054600160a060020a031681526002602052604090205481901015610b205760006000fd5b60018054829003905560008054600160a060020a031681526002602090815260409182902080548490039055815183815291517fb90306ad06b2a6ff86ddc9327db583062895ef6540e62dc50add009db5b356eb9281900390910190a15b5b50565b600160a060020a0381166000908152600a602052604090205460ff165b919050565b60005460a060020a900460ff1681565b60095460009060a060020a900460ff1615610c5457600954604080516000602091820181905282517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a038781166004830152935193909416936370a08231936024808301949391928390030190829087803b1515610c3757fe5b6102c65a03f11515610c4557fe5b5050604051519150610b9f9050565b610c5d826114b3565b9050610b9f565b5b919050565b6000805433600160a060020a03908116911614610c875760006000fd5b60005460a060020a900460ff1615610c9f5760006000fd5b6000805474ff0000000000000000000000000000000000000000191660a060020a1781556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff6259190a15060015b5b5b90565b600054600160a060020a031681565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106a45780601f10610679576101008083540402835291602001916106a4565b820191906000526020600020905b81548152906001019060200180831161068757829003601f168201915b505050505081565b60005460a060020a900460ff1615610da85760006000fd5b600160a060020a0382166000908152600a602052604090205460ff1615610dcf5760006000fd5b60095460a060020a900460ff1615610e6957600954604080517f6e18980a000000000000000000000000000000000000000000000000000000008152600160a060020a03338116600483015285811660248301526044820185905291519190921691636e18980a91606480830192600092919082900301818387803b1515610e5357fe5b6102c65a03f11515610e6157fe5b505050610e73565b610e7382826114d2565b5b5b5b5050565b60005433600160a060020a03908116911614610e965760006000fd5b6003829055600854610eb2908290600a0a63ffffffff61164d16565b600481905560035460408051918252602082019290925281517fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e929181900390910190a15b5b5050565b60005433600160a060020a03908116911614610f185760006000fd5b6001548181011015610f2a5760006000fd5b60008054600160a060020a03168152600260205260409020548181011015610f525760006000fd5b60008054600160a060020a03168152600260209081526040918290208054840190556001805484019055815183815291517fcb8241adb0c3fdb35b70c24ce35c5eb0c17af7431c99f827d44a445ca624176a9281900390910190a15b5b50565b60095460009060a060020a900460ff161561105a57600954604080516000602091820181905282517fdd62ed3e000000000000000000000000000000000000000000000000000000008152600160a060020a03888116600483015287811660248301529351939094169363dd62ed3e936044808301949391928390030190829087803b151561103d57fe5b6102c65a03f1151561104b57fe5b50506040515191506110679050565b611064838361167c565b90505b5b92915050565b60035481565b600a6020526000908152604090205460ff1681565b60005433600160a060020a039081169116146110a55760006000fd5b600160a060020a0381166000818152600a6020908152604091829020805460ff19169055815192835290517fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9281900390910190a15b5b50565b60005433600160a060020a0390811691161461111b5760006000fd5b600160a060020a03811615610747576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b6000805433600160a060020a039081169116146111755760006000fd5b600160a060020a0382166000908152600a602052604090205460ff16151561119d5760006000fd5b6111a682610bb4565b600160a060020a0383166000818152600260209081526040808320929092556001805485900390558151928352820183905280519293507f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c692918290030190a15b5b5050565b6040604436101561121d5760006000fd5b81158015906112505750600160a060020a0333811660009081526005602090815260408083209387168352929052205415155b1561125b5760006000fd5b600160a060020a03338116600081815260056020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35b5b505050565b60008080606060643610156112d45760006000fd5b600160a060020a0380881660009081526005602090815260408083203390941683529290522054600354909450611326906127109061131a90889063ffffffff61164d16565b9063ffffffff6116a916565b92506004548311156113385760045492505b611348858463ffffffff6116c616565b600160a060020a038716600090815260026020526040902054909250611374908363ffffffff6116df16565b600160a060020a03808816600090815260026020526040808220939093558054909116815220546113ab908463ffffffff6116df16565b60008054600160a060020a03908116825260026020526040808320939093558916815220546113e0908663ffffffff6116c616565b600160a060020a03881660009081526002602052604090205560001984101561143b57611413848663ffffffff6116c616565b600160a060020a03808916600090815260056020908152604080832033909416835292905220555b85600160a060020a031687600160a060020a031660008051602061170d833981519152846040518082815260200191505060405180910390a3600054604080518581529051600160a060020a03928316928a169160008051602061170d833981519152919081900360200190a35b5b50505050505050565b600160a060020a0381166000908152600260205260409020545b919050565b600080604060443610156114e65760006000fd5b61150d61271061131a6003548761164d90919063ffffffff16565b9063ffffffff6116a916565b925060045483111561151f5760045492505b61152f848463ffffffff6116c616565b600160a060020a03331660009081526002602052604090205490925061155b908563ffffffff6116c616565b600160a060020a033381166000908152600260205260408082209390935590871681522054611590908363ffffffff6116df16565b600160a060020a03808716600090815260026020526040808220939093558054909116815220546115c7908463ffffffff6116df16565b60008054600160a060020a03908116825260026020908152604092839020939093558151858152915188821693339092169260008051602061170d83398151915292908290030190a3600054604080518581529051600160a060020a039283169233169160008051602061170d833981519152919081900360200190a35b5b5050505050565b600082820261167184158061166c575083858381151561166957fe5b04145b6116fb565b8091505b5092915050565b600160a060020a038083166000908152600560209081526040808320938516835292905220545b92915050565b6000600082848115156116b857fe5b0490508091505b5092915050565b60006116d4838311156116fb565b508082035b92915050565b6000828201611671848210156116fb565b8091505b5092915050565b8015156107475760006000fd5b5b505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582086ad667112a67c3a0b539ebc1db25b041e710d36346c74bff5fb381f56f359280029

Deployed Bytecode

0x606060405236156101675763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101695780630753c30c146101f9578063095ea7b3146102175780630e136b19146102385780630ecb93c01461025c57806318160ddd1461027a57806323b872dd1461029c57806326976e3f146102c3578063313ce567146102ef57806335390714146103115780633eaaf86b146103335780633f4ba83a1461035557806342966c681461037957806359bf1abe1461038e5780635c975abb146103be57806370a08231146103e25780638456cb59146104105780638da5cb5b1461043457806395d89b4114610460578063a9059cbb146104f0578063c0324c7714610511578063cc872b6614610529578063dd62ed3e1461053e578063dd644f7214610572578063e47d606014610594578063e4997dc5146105c4578063f2fde38b146105e2578063f3bdc22814610600575bfe5b341561017157fe5b61017961061e565b6040805160208082528351818301528351919283929083019185019080838382156101bf575b8051825260208311156101bf57601f19909201916020918201910161019f565b505050905090810190601f1680156101eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020157fe5b610215600160a060020a03600435166106ac565b005b341561021f57fe5b610215600160a060020a036004351660243561074b565b005b341561024057fe5b610248610808565b604080519115158252519081900360200190f35b341561026457fe5b610215600160a060020a0360043516610818565b005b341561028257fe5b61028a610891565b60408051918252519081900360200190f35b34156102a457fe5b610215600160a060020a0360043581169060243516604435610930565b005b34156102cb57fe5b6102d3610a28565b60408051600160a060020a039092168252519081900360200190f35b34156102f757fe5b61028a610a37565b60408051918252519081900360200190f35b341561031957fe5b61028a610a3d565b60408051918252519081900360200190f35b341561033b57fe5b61028a610a43565b60408051918252519081900360200190f35b341561035d57fe5b610248610a49565b604080519115158252519081900360200190f35b341561038157fe5b610215600435610acd565b005b341561039657fe5b610248600160a060020a0360043516610b82565b604080519115158252519081900360200190f35b34156103c657fe5b610248610ba4565b604080519115158252519081900360200190f35b34156103ea57fe5b61028a600160a060020a0360043516610bb4565b60408051918252519081900360200190f35b341561041857fe5b610248610c6a565b604080519115158252519081900360200190f35b341561043c57fe5b6102d3610cf3565b60408051600160a060020a039092168252519081900360200190f35b341561046857fe5b610179610d02565b6040805160208082528351818301528351919283929083019185019080838382156101bf575b8051825260208311156101bf57601f19909201916020918201910161019f565b505050905090810190601f1680156101eb5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156104f857fe5b610215600160a060020a0360043516602435610d90565b005b341561051957fe5b610215600435602435610e7a565b005b341561053157fe5b610215600435610efc565b005b341561054657fe5b61028a600160a060020a0360043581169060243516610fb2565b60408051918252519081900360200190f35b341561057a57fe5b61028a61106e565b60408051918252519081900360200190f35b341561059c57fe5b610248600160a060020a0360043516611074565b604080519115158252519081900360200190f35b34156105cc57fe5b610215600160a060020a0360043516611089565b005b34156105ea57fe5b610215600160a060020a03600435166110ff565b005b341561060857fe5b610215600160a060020a0360043516611158565b005b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106a45780601f10610679576101008083540402835291602001916106a4565b820191906000526020600020905b81548152906001019060200180831161068757829003601f168201915b505050505081565b60005433600160a060020a039081169116146106c85760006000fd5b6009805460a060020a74ff0000000000000000000000000000000000000000199091161773ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03831690811790915560408051918252517fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e916020908290030190a15b5b50565b6040604436101561075c5760006000fd5b60095460a060020a900460ff16156107f657600954604080517faee92d33000000000000000000000000000000000000000000000000000000008152600160a060020a0333811660048301528681166024830152604482018690529151919092169163aee92d3391606480830192600092919082900301818387803b15156107e057fe5b6102c65a03f115156107ee57fe5b505050610800565b610800838361120c565b5b5b5b505050565b60095460a060020a900460ff1681565b60005433600160a060020a039081169116146108345760006000fd5b600160a060020a0381166000818152600a6020908152604091829020805460ff19166001179055815192835290517f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9281900390910190a15b5b50565b60095460009060a060020a900460ff161561092757600954604080516000602091820181905282517f18160ddd0000000000000000000000000000000000000000000000000000000081529251600160a060020a03909416936318160ddd9360048082019493918390030190829087803b151561090a57fe5b6102c65a03f1151561091857fe5b505060405151915061092c9050565b506001545b5b90565b60005460a060020a900460ff16156109485760006000fd5b600160a060020a0383166000908152600a602052604090205460ff161561096f5760006000fd5b60095460a060020a900460ff1615610a1157600954604080517f8b477adb000000000000000000000000000000000000000000000000000000008152600160a060020a033381166004830152868116602483015285811660448301526064820185905291519190921691638b477adb91608480830192600092919082900301818387803b15156107e057fe5b6102c65a03f115156107ee57fe5b505050610800565b6108008383836112bf565b610800565b5b5b505050565b600954600160a060020a031681565b60085481565b60045481565b60015481565b6000805433600160a060020a03908116911614610a665760006000fd5b60005460a060020a900460ff161515610a7f5760006000fd5b6000805474ff0000000000000000000000000000000000000000191681556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b339190a15060015b5b5b90565b60005433600160a060020a03908116911614610ae95760006000fd5b806001541015610af95760006000fd5b60008054600160a060020a031681526002602052604090205481901015610b205760006000fd5b60018054829003905560008054600160a060020a031681526002602090815260409182902080548490039055815183815291517fb90306ad06b2a6ff86ddc9327db583062895ef6540e62dc50add009db5b356eb9281900390910190a15b5b50565b600160a060020a0381166000908152600a602052604090205460ff165b919050565b60005460a060020a900460ff1681565b60095460009060a060020a900460ff1615610c5457600954604080516000602091820181905282517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a038781166004830152935193909416936370a08231936024808301949391928390030190829087803b1515610c3757fe5b6102c65a03f11515610c4557fe5b5050604051519150610b9f9050565b610c5d826114b3565b9050610b9f565b5b919050565b6000805433600160a060020a03908116911614610c875760006000fd5b60005460a060020a900460ff1615610c9f5760006000fd5b6000805474ff0000000000000000000000000000000000000000191660a060020a1781556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff6259190a15060015b5b5b90565b600054600160a060020a031681565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106a45780601f10610679576101008083540402835291602001916106a4565b820191906000526020600020905b81548152906001019060200180831161068757829003601f168201915b505050505081565b60005460a060020a900460ff1615610da85760006000fd5b600160a060020a0382166000908152600a602052604090205460ff1615610dcf5760006000fd5b60095460a060020a900460ff1615610e6957600954604080517f6e18980a000000000000000000000000000000000000000000000000000000008152600160a060020a03338116600483015285811660248301526044820185905291519190921691636e18980a91606480830192600092919082900301818387803b1515610e5357fe5b6102c65a03f11515610e6157fe5b505050610e73565b610e7382826114d2565b5b5b5b5050565b60005433600160a060020a03908116911614610e965760006000fd5b6003829055600854610eb2908290600a0a63ffffffff61164d16565b600481905560035460408051918252602082019290925281517fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e929181900390910190a15b5b5050565b60005433600160a060020a03908116911614610f185760006000fd5b6001548181011015610f2a5760006000fd5b60008054600160a060020a03168152600260205260409020548181011015610f525760006000fd5b60008054600160a060020a03168152600260209081526040918290208054840190556001805484019055815183815291517fcb8241adb0c3fdb35b70c24ce35c5eb0c17af7431c99f827d44a445ca624176a9281900390910190a15b5b50565b60095460009060a060020a900460ff161561105a57600954604080516000602091820181905282517fdd62ed3e000000000000000000000000000000000000000000000000000000008152600160a060020a03888116600483015287811660248301529351939094169363dd62ed3e936044808301949391928390030190829087803b151561103d57fe5b6102c65a03f1151561104b57fe5b50506040515191506110679050565b611064838361167c565b90505b5b92915050565b60035481565b600a6020526000908152604090205460ff1681565b60005433600160a060020a039081169116146110a55760006000fd5b600160a060020a0381166000818152600a6020908152604091829020805460ff19169055815192835290517fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9281900390910190a15b5b50565b60005433600160a060020a0390811691161461111b5760006000fd5b600160a060020a03811615610747576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b5b5b50565b6000805433600160a060020a039081169116146111755760006000fd5b600160a060020a0382166000908152600a602052604090205460ff16151561119d5760006000fd5b6111a682610bb4565b600160a060020a0383166000818152600260209081526040808320929092556001805485900390558151928352820183905280519293507f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c692918290030190a15b5b5050565b6040604436101561121d5760006000fd5b81158015906112505750600160a060020a0333811660009081526005602090815260408083209387168352929052205415155b1561125b5760006000fd5b600160a060020a03338116600081815260056020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a35b5b505050565b60008080606060643610156112d45760006000fd5b600160a060020a0380881660009081526005602090815260408083203390941683529290522054600354909450611326906127109061131a90889063ffffffff61164d16565b9063ffffffff6116a916565b92506004548311156113385760045492505b611348858463ffffffff6116c616565b600160a060020a038716600090815260026020526040902054909250611374908363ffffffff6116df16565b600160a060020a03808816600090815260026020526040808220939093558054909116815220546113ab908463ffffffff6116df16565b60008054600160a060020a03908116825260026020526040808320939093558916815220546113e0908663ffffffff6116c616565b600160a060020a03881660009081526002602052604090205560001984101561143b57611413848663ffffffff6116c616565b600160a060020a03808916600090815260056020908152604080832033909416835292905220555b85600160a060020a031687600160a060020a031660008051602061170d833981519152846040518082815260200191505060405180910390a3600054604080518581529051600160a060020a03928316928a169160008051602061170d833981519152919081900360200190a35b5b50505050505050565b600160a060020a0381166000908152600260205260409020545b919050565b600080604060443610156114e65760006000fd5b61150d61271061131a6003548761164d90919063ffffffff16565b9063ffffffff6116a916565b925060045483111561151f5760045492505b61152f848463ffffffff6116c616565b600160a060020a03331660009081526002602052604090205490925061155b908563ffffffff6116c616565b600160a060020a033381166000908152600260205260408082209390935590871681522054611590908363ffffffff6116df16565b600160a060020a03808716600090815260026020526040808220939093558054909116815220546115c7908463ffffffff6116df16565b60008054600160a060020a03908116825260026020908152604092839020939093558151858152915188821693339092169260008051602061170d83398151915292908290030190a3600054604080518581529051600160a060020a039283169233169160008051602061170d833981519152919081900360200190a35b5b5050505050565b600082820261167184158061166c575083858381151561166957fe5b04145b6116fb565b8091505b5092915050565b600160a060020a038083166000908152600560209081526040808320938516835292905220545b92915050565b6000600082848115156116b857fe5b0490508091505b5092915050565b60006116d4838311156116fb565b508082035b92915050565b6000828201611671848210156116fb565b8091505b5092915050565b8015156107475760006000fd5b5b505600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582086ad667112a67c3a0b539ebc1db25b041e710d36346c74bff5fb381f56f359280029

Deployed Bytecode Sourcemap

8591:5357:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8644:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18:2:-1;;13:3;7:5;32;59:3;53:5;48:3;41:6;93:2;88:3;85:2;78:6;73:3;67:5;-1:-1;;152:3;;;;117:2;108:3;;;;130;172:5;167:4;181:3;3:186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11215:160:0;;;;;;;;-1:-1:-1;;;;;11215:160:0;;;;;;;10543:269;;;;;;;;-1:-1:-1;;;;;10543:269:0;;;;;;;;;8752:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;12817:145;;;;;;;;-1:-1:-1;;;;;12817:145:0;;;;;;;11437:184;;;;;;;;;;;;;;;;;;;;;;;;;;9832:339;;;;;;;;-1:-1:-1;;;;;9832:339:0;;;;;;;;;;;;;;8717:30;;;;;;;;;;;;;;-1:-1:-1;;;;;8717:30:0;;;;;;;;;;;;;;8692:20;;;;;;;;;;;;;;;;;;;;;;;;;;4221:26;;;;;;;;;;;;;;;;;;;;;;;;;;3232:24;;;;;;;;;;;;;;;;;;;;;;;;;;2952:116;;;;;;;;;;;;;;;;;;;;;;;;;;;;12145:216;;;;;;;;;;;;;;12677:124;;;;;;;;-1:-1:-1;;;;;12677:124:0;;;;;;;;;;;;;;;;;;;;;;;2332:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;10252:210;;;;;;;;-1:-1:-1;;;;;10252:210:0;;;;;;;;;;;;;;;;;;;;;2751:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;1458:20;;;;;;;;;;;;;;-1:-1:-1;;;;;1458:20:0;;;;;;;;;;;;;;8667;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18:2:-1;;13:3;7:5;32;59:3;53:5;48:3;41:6;93:2;88:3;85:2;78:6;73:3;67:5;-1:-1;;152:3;;;;117:2;108:3;;;;130;172:5;167:4;181:3;3:186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9426:325:0;;;;;;;;-1:-1:-1;;;;;9426:325:0;;;;;;;;;12367:301;;;;;;;;;;;;;;;;11775:241;;;;;;;;;;;;;;10893:260;;;;;;;;-1:-1:-1;;;;;10893:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;4185:31;;;;;;;;;;;;;;;;;;;;;;;;;;8779:46;;;;;;;;-1:-1:-1;;;;;8779:46:0;;;;;;;;;;;;;;;;;;;;;;;12970:160;;;;;;;;-1:-1:-1;;;;;12970:160:0;;;;;;;2004:128;;;;;;;;-1:-1:-1;;;;;2004:128:0;;;;;;;13138:324;;;;;;;;-1:-1:-1;;;;;13138:324:0;;;;;;;8644:18;;;;;;;;;;;;;;;-1:-1:-1;;8644:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11215:160::-;1792:5;;1778:10;-1:-1:-1;;;;;1778:19:0;;;1792:5;;1778:19;1774:47;;1808:5;;;1774:47;11277:10;:17;;-1:-1:-1;;;;;11277:17:0;;;;-1:-1:-1;;11301:34:0;-1:-1:-1;;;;;11301:34:0;;;;;;;;11342:27;;;;;;;;;;;;;;;;;1827:1;11215:160;;:::o;10543:269::-;10607:6;4384:8;4366;:26;4363:55;;;4404:5;;;4363:55;10626:10;;-1:-1:-1;;;10626:10:0;;;;10622:185;;;10676:15;;10654:84;;;;;;-1:-1:-1;;;;;10709:10:0;10654:84;;;;;;;;;;;;;;;;;;;;;10676:15;;;;;10654:54;;:84;;;;;-1:-1:-1;;10654:84:0;;;;;;;-1:-1:-1;10676:15:0;10654:84;;;;;;;;;;;;;;;;;;;;;10647:91;;10622:185;10768:31;10782:8;10792:6;10768:13;:31::i;:::-;10622:185;4425:1;10543:269;;;;:::o;8752:22::-;;;-1:-1:-1;;;8752:22:0;;;;;:::o;12817:145::-;1792:5;;1778:10;-1:-1:-1;;;;;1778:19:0;;;1792:5;;1778:19;1774:47;;1808:5;;;1774:47;-1:-1:-1;;;;;12887:24:0;;;;;;:13;:24;;;;;;;;;:31;;-1:-1:-1;;12887:31:0;12914:4;12887:31;;;12929:25;;;;;;;;;;;;;;;;;1827:1;12817:145;;:::o;11437:184::-;11494:10;;11478:4;;-1:-1:-1;;;11494:10:0;;;;11490:126;;;11536:15;;11522:44;;;11536:15;11522:44;;;;;;;;;;;;;;-1:-1:-1;;;;;11536:15:0;;;;11522:42;;:44;;;;;;;;;;;;;;11536:15;11522:44;;;;;;;;;;;;;;;;;;-1:-1:-1;;11522:44:0;;;;-1:-1:-1;11515:51:0;;-1:-1:-1;11515:51:0;11490:126;-1:-1:-1;11596:12:0;;11490:126;11437:184;;:::o;9832:339::-;2487:6;;-1:-1:-1;;;2487:6:0;;;;2483:17;;;2495:5;;;2483:17;-1:-1:-1;;;;;9933:20:0;;;;;;:13;:20;;;;;;;;9932:21;9924:30;;;;;;9971:10;;-1:-1:-1;;;9971:10:0;;;;9967:199;;;10021:15;;9999:91;;;;;;-1:-1:-1;;;;;10059:10:0;9999:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;10021:15;;;;;9999:59;;:91;;;;;-1:-1:-1;;9999:91:0;;;;;;;-1:-1:-1;10021:15:0;9999:91;;;;;;;;;;;;;;;;;;;;;9992:98;;9967:199;10120:38;10139:5;10146:3;10151:6;10120:18;:38::i;:::-;10113:45;;9967:199;2507:1;9832:339;;;;:::o;8717:30::-;;;-1:-1:-1;;;;;8717:30:0;;:::o;8692:20::-;;;;:::o;4221:26::-;;;;:::o;3232:24::-;;;;:::o;2952:116::-;3001:4;1792:5;;1778:10;-1:-1:-1;;;;;1778:19:0;;;1792:5;;1778:19;1774:47;;1808:5;;;1774:47;2640:6;;-1:-1:-1;;;2640:6:0;;;;2639:7;2635:18;;;2648:5;;;2635:18;3023:5;3014:14;;-1:-1:-1;;3014:14:0;;;3035:9;;;;3023:5;3035:9;-1:-1:-1;3058:4:0;2660:1;1827;2952:116;;:::o;12145:216::-;1792:5;;1778:10;-1:-1:-1;;;;;1778:19:0;;;1792:5;;1778:19;1774:47;;1808:5;;;1774:47;12210:6;12195:12;;:21;12191:32;;;12218:5;;;12191:32;12236:15;12245:5;;-1:-1:-1;;;;;12245:5:0;12236:15;;:8;:15;;;;;;:24;;;12232:35;;;12262:5;;;12232:35;12278:12;:22;;;;;;;:12;12318:5;;-1:-1:-1;;;;;12318:5:0;12309:15;;:8;:15;;;;;;;;;:25;;;;;;;12343:12;;;;;;;;;;;;;;;;;1827:1;12145:216;;:::o;12677:124::-;-1:-1:-1;;;;;12772:21:0;;12748:4;12772:21;;;:13;:21;;;;;;;;12677:124;;;;:::o;2332:26::-;;;-1:-1:-1;;;2332:26:0;;;;;:::o;10252:210::-;10318:10;;10302:4;;-1:-1:-1;;;10318:10:0;;;;10314:143;;;10368:15;;10346:53;;;10368:15;10346:53;;;;;;;;;;;;-1:-1:-1;;;;;10346:53:0;;;;;;;;;10368:15;;;;;10346:48;;:53;;;;;;;;;;;;;;;10368:15;10346:53;;;;;;;;;;;;;;;;;;-1:-1:-1;;10346:53:0;;;;-1:-1:-1;10339:60:0;;-1:-1:-1;10339:60:0;10314:143;10429:20;10445:3;10429:15;:20::i;:::-;10422:27;;;;10314:143;10252:210;;;;:::o;2751:114::-;2801:4;1792:5;;1778:10;-1:-1:-1;;;;;1778:19:0;;;1792:5;;1778:19;1774:47;;1808:5;;;1774:47;2487:6;;-1:-1:-1;;;2487:6:0;;;;2483:17;;;2495:5;;;2483:17;2814:6;:13;;-1:-1:-1;;2814:13:0;-1:-1:-1;;;2814:13:0;;;2834:7;;;;2814:6;2834:7;-1:-1:-1;2855:4:0;2507:1;1827;2751:114;;:::o;1458:20::-;;;-1:-1:-1;;;;;1458:20:0;;:::o;8667:::-;;;;;;;;;;;;;;;-1:-1:-1;;8667:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9426:325::-;2487:6;;-1:-1:-1;;;2487:6:0;;;;2483:17;;;2495:5;;;2483:17;-1:-1:-1;;;;;9505:18:0;;;;;;:13;:18;;;;;;;;9504:19;9496:28;;;;;;9539:10;;-1:-1:-1;;;9539:10:0;;;;9535:193;;;9593:15;;9571:80;;;;;;-1:-1:-1;;;;;9627:10:0;9571:80;;;;;;;;;;;;;;;;;;;;;9593:15;;;;;9571:55;;:80;;;;;-1:-1:-1;;9571:80:0;;;;;;;-1:-1:-1;9593:15:0;9571:80;;;;;;;;;;;;;;;;;;;;;9564:87;;9535:193;9689:27;9704:3;9709:6;9689:14;:27::i;:::-;9535:193;2507:1;9426:325;;;:::o;12367:301::-;1792:5;;1778:10;-1:-1:-1;;;;;1778:19:0;;;1792:5;;1778:19;1774:47;;1808:5;;;1774:47;12535:15;:32;;;12607:8;;12589:27;;:9;;12603:2;:12;12589:27;:13;:27;:::i;:::-;12576:10;:40;;;12634:15;;12627:35;;;;;;;;;;;;;;;;;;;;;;;;;;1827:1;12367:301;;;:::o;11775:241::-;1792:5;;1778:10;-1:-1:-1;;;;;1778:19:0;;;1792:5;;1778:19;1774:47;;1808:5;;;1774:47;11848:12;;11824:21;;;:36;11820:47;;;11862:5;;;11820:47;11905:15;11914:5;;-1:-1:-1;;;;;11914:5:0;11905:15;;:8;:15;;;;;;11878:24;;;:42;11874:53;;;11922:5;;;11874:53;11936:15;11945:5;;-1:-1:-1;;;;;11945:5:0;11936:15;;:8;:15;;;;;;;;;:25;;;;;;11945:5;11968:22;;;;;;11997:13;;;;;;;;;;;;;;;;;1827:1;11775:241;;:::o;10893:260::-;10991:10;;10964:14;;-1:-1:-1;;;10991:10:0;;;;10987:161;;;11033:15;;11019:58;;;11033:15;11019:58;;;;;;;;;;;;-1:-1:-1;;;;;11019:58:0;;;;;;;;;;;;;;;;11033:15;;;;;11019:40;;:58;;;;;;;;;;;;;;;11033:15;11019:58;;;;;;;;;;;;;;;;;;-1:-1:-1;;11019:58:0;;;;-1:-1:-1;11012:65:0;;-1:-1:-1;11012:65:0;10987:161;11107:33;11123:6;11131:8;11107:15;:33::i;:::-;11100:40;;10987:161;10893:260;;;;;:::o;4185:31::-;;;;:::o;8779:46::-;;;;;;;;;;;;;;;:::o;12970:160::-;1792:5;;1778:10;-1:-1:-1;;;;;1778:19:0;;;1792:5;;1778:19;1774:47;;1808:5;;;1774:47;-1:-1:-1;;;;;13046:27:0;;13076:5;13046:27;;;:13;:27;;;;;;;;;:35;;-1:-1:-1;;13046:35:0;;;13092:30;;;;;;;;;;;;;;;;;1827:1;12970:160;;:::o;2004:128::-;1792:5;;1778:10;-1:-1:-1;;;;;1778:19:0;;;1792:5;;1778:19;1774:47;;1808:5;;;1774:47;-1:-1:-1;;;;;2070:22:0;;;2066:61;;2103:5;:16;;-1:-1:-1;;2103:16:0;-1:-1:-1;;;;;2103:16:0;;;;;2066:61;1827:1;2004:128;;:::o;13138:324::-;13271:15;1792:5;;1778:10;-1:-1:-1;;;;;1778:19:0;;;1792:5;;1778:19;1774:47;;1808:5;;;1774:47;-1:-1:-1;;;;;13228:31:0;;;;;;:13;:31;;;;;;;;13220:40;;;;;;;;13289:27;13299:16;13289:9;:27::i;:::-;-1:-1:-1;;;;;13327:26:0;;13356:1;13327:26;;;:8;:26;;;;;;;;:30;;;;13368:12;:26;;;;;;;13405:49;;;;;;;;;;;;13271:45;;-1:-1:-1;13405:49:0;;;;;;;;;1827:1;13138:324;;;:::o;7116:535::-;7180:6;4384:8;4366;:26;4363:55;;;4404:5;;;4363:55;7494:11;;;;;7493:53;;-1:-1:-1;;;;;;7519:10:0;7511:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;:34;;7493:53;7489:64;;;7548:5;;;7489:64;-1:-1:-1;;;;;7570:10:0;7562:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;:38;;;7607;;;;;;;;;;;;;;;;;4425:1;7116:535;;;;:::o;6094:783::-;6188:14;;;6173:6;4384:8;4366;:26;4363:55;;;4404:5;;;4363:55;-1:-1:-1;;;;;6205:14:0;;;;;;;:7;:14;;;;;;;;6220:10;6205:26;;;;;;;;;;6413:15;;6205:26;;-1:-1:-1;6401:40:0;;6435:5;;6402:27;;:6;;:27;:10;:27;:::i;:::-;6401:33;:40;:33;:40;:::i;:::-;6390:51;;6458:10;;6452:3;:16;6448:55;;;6485:10;;6479:16;;6448:55;6527:15;:6;6538:3;6527:15;:10;:15;:::i;:::-;-1:-1:-1;;;;;6567:13:0;;;;;;:8;:13;;;;;;6509:33;;-1:-1:-1;6567:29:0;;6509:33;6567:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;6551:13:0;;;;;;;:8;:13;;;;;;:45;;;;6630:5;;;;;6621:15;;;;:24;;6641:3;6621:24;:19;:24;:::i;:::-;6603:15;6612:5;;-1:-1:-1;;;;;6612:5:0;;;6603:15;;:8;:15;;;;;;:42;;;;6670:15;;;;;;:27;;6690:6;6670:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;6652:15:0;;;;;;:8;:15;;;;;:45;-1:-1:-1;;6708:21:0;;6704:95;;;6769:22;:10;6784:6;6769:22;:14;:22;:::i;:::-;-1:-1:-1;;;;;6740:14:0;;;;;;;:7;:14;;;;;;;;6755:10;6740:26;;;;;;;;;:51;6704:95;6821:3;-1:-1:-1;;;;;6805:32:0;6814:5;-1:-1:-1;;;;;6805:32:0;-1:-1:-1;;;;;;;;;;;6826:10:0;6805:32;;;;;;;;;;;;;;;;;;6860:5;;6844:27;;;;;;;;-1:-1:-1;;;;;6860:5:0;;;;6844:27;;;-1:-1:-1;;;;;;;;;;;6844:27:0;;;;;;;;;4425:1;6094:783;;;;;;;;:::o;5278:103::-;-1:-1:-1;;;;;5359:16:0;;5331:12;5359:16;;;:8;:16;;;;;;5278:103;;;;:::o;4593:479::-;4668:8;;4653:6;4384:8;4366;:26;4363:55;;;4404:5;;;4363:55;4679:40;4713:5;4680:27;4691:15;;4680:6;:10;;:27;;;;:::i;:::-;4679:33;:40;:33;:40;:::i;:::-;4668:51;;4736:10;;4730:3;:16;4726:55;;;4763:10;;4757:16;;4726:55;4805:15;:6;4816:3;4805:15;:10;:15;:::i;:::-;-1:-1:-1;;;;;4859:10:0;4850:20;;;;;:8;:20;;;;;;4787:33;;-1:-1:-1;4850:32:0;;4875:6;4850:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;4836:10:0;4827:20;;;;;;:8;:20;;;;;;:55;;;;4905:13;;;;;;;:29;;4923:10;4905:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;4889:13:0;;;;;;;:8;:13;;;;;;:45;;;;4968:5;;;;;4959:15;;;;:24;;4979:3;4959:24;:19;:24;:::i;:::-;4941:15;4950:5;;-1:-1:-1;;;;;4950:5:0;;;4941:15;;:8;:15;;;;;;;;;:42;;;;4990:37;;;;;;;;;;;4999:10;4990:37;;;;-1:-1:-1;;;;;;;;;;;4990:37:0;;;;;;;;5055:5;;5034:32;;;;;;;;-1:-1:-1;;;;;5055:5:0;;;;5043:10;5034:32;;-1:-1:-1;;;;;;;;;;;5034:32:0;;;;;;;;;4425:1;4593:479;;;;;;:::o;71:130::-;118:4;140:5;;;152:28;159:6;;;:20;;;178:1;173;169;:5;;;;;;;;:10;159:20;152:6;:28::i;:::-;194:1;187:8;;71:130;;;;;;:::o;7975:132::-;-1:-1:-1;;;;;8076:15:0;;;8046:14;8076:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;7975:132;;;;;:::o;207:253::-;254:4;342:6;355:1;351;:5;;;;;;;;342:14;;453:1;446:8;;207:253;;;;;;:::o;466:99::-;513:4;526:14;538:1;533;:6;;526;:14::i;:::-;-1:-1:-1;554:5:0;;;466:99;;;;;:::o;571:116::-;618:4;640:5;;;652:14;659:6;;;;652;:14::i;:::-;680:1;673:8;;571:116;;;;;;:::o;1139:91::-;1192:9;1191:10;1187:38;;;1212:5;;;1187:38;1139:91;;:::o

Swarm Source

bzzr://86ad667112a67c3a0b539ebc1db25b041e710d36346c74bff5fb381f56f35928
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.