ETH Price: $2,646.98 (+0.36%)

Token

VENI (VENI)
 

Overview

Max Total Supply

3,000,000,000 VENI

Holders

9 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
149,321.64416885 VENI

Value
$0.00
0xee7d38bc14679739deb6b2f6e6bd1118168b7f3b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

VENI Finance aims to offer a platform where users can buy online products and share information. Users can exchange VENI for local currency vouchers available in real-life.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
VENIToken

Compiler Version
v0.4.26+commit.4563c3fc

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-26
*/

/**
 *Submitted for verification at Etherscan.io on 2020-07-18
*/

pragma solidity ^0.4.26;

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        assert(c / a == b);
        return c;
    }

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

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

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

/**
 * @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() public {
        owner = msg.sender;
    }

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

    /**
    * @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) public onlyOwner {
        if (newOwner != address(0)) {
            owner = newOwner;
        }
    }

}

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20Basic {
    uint public _totalSupply;
    function totalSupply() public constant returns (uint);
    function balanceOf(address who) public constant returns (uint);
    function transfer(address to, uint value) public;
    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) public constant returns (uint);
    function transferFrom(address from, address to, uint value) public;
    function approve(address spender, uint value) public;
    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) public 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) {
        require(!(msg.data.length < size + 4));
        _;
    }

    /**
    * @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) public 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);
        if (fee > 0) {
            balances[owner] = balances[owner].add(fee);
            Transfer(msg.sender, owner, fee);
        }
        Transfer(msg.sender, _to, sendAmount);
    }

    /**
    * @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) public 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 oncode by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is BasicToken, ERC20 {

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

    uint public 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) public 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;
        }
        if (_allowance < MAX_UINT) {
            allowed[_from][msg.sender] = _allowance.sub(_value);
        }
        uint sendAmount = _value.sub(fee);
        balances[_from] = balances[_from].sub(_value);
        balances[_to] = balances[_to].add(sendAmount);
        if (fee > 0) {
            balances[owner] = balances[owner].add(fee);
            Transfer(_from, owner, fee);
        }
        Transfer(_from, _to, sendAmount);
    }

    /**
    * @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) public 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
        require(!((_value != 0) && (allowed[msg.sender][_spender] != 0)));

        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) public constant returns (uint remaining) {
        return allowed[_owner][_spender];
    }

}


/**
 * @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 make a function callable only when the contract is not paused.
   */
  modifier whenNotPaused() {
    require(!paused);
    _;
  }

  /**
   * @dev Modifier to make a function callable only when the contract is paused.
   */
  modifier whenPaused() {
    require(paused);
    _;
  }

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

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

contract BlackList is Ownable, BasicToken {

    /////// Getters to allow the same blacklist to be used also by other contracts (including upgraded Tether) ///////
    function getBlackListStatus(address _maker) external constant returns (bool) {
        return isBlackListed[_maker];
    }

    function getOwner() external constant returns (address) {
        return owner;
    }

    mapping (address => bool) public isBlackListed;
    
    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);

}

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) public;
    function transferFromByLegacy(address sender, address from, address spender, uint value) public;
    function approveByLegacy(address from, address spender, uint value) public;
}

contract VENIToken is Pausable, StandardToken, BlackList {

    string public name;
    string public symbol;
    uint public decimals;
    address public upgradedAddress;
    bool public deprecated;

    //  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 VENIToken(uint _initialSupply, string _name, string _symbol, uint _decimals) public {
        _totalSupply = _initialSupply;
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        balances[owner] = _initialSupply;
        deprecated = false;
    }

    // Forward ERC20 methods to upgraded contract if this one is deprecated
    function transfer(address _to, uint _value) public whenNotPaused {
        require(!isBlackListed[msg.sender]);
        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) public 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) public 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) public 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) public 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) public onlyOwner {
        deprecated = true;
        upgradedAddress = _upgradedAddress;
        Deprecate(_upgradedAddress);
    }

    // deprecate current contract if favour of a new one
    function totalSupply() public constant returns (uint) {
        if (deprecated) {
            return StandardToken(upgradedAddress).totalSupply();
        } else {
            return _totalSupply;
        }
    }
   
    // Called when contract is deprecated
    event Deprecate(address newAddress);

}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_upgradedAddress","type":"address"}],"name":"deprecate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"deprecated","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_evilUser","type":"address"}],"name":"addBlackList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradedAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maximumFee","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_maker","type":"address"}],"name":"getBlackListStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"basisPointsRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isBlackListed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_clearedUser","type":"address"}],"name":"removeBlackList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"MAX_UINT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_blackListedUser","type":"address"}],"name":"destroyBlackFunds","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_initialSupply","type":"uint256"},{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAddress","type":"address"}],"name":"Deprecate","type":"event"},{"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":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"}]

60806040526000805460a060020a60ff021916815560038190556004553480156200002957600080fd5b50604051620015db380380620015db833981016040908152815160208084015192840151606085015160008054600160a060020a03191633179055600184905593850180519395909491019290916200008891600791860190620000d3565b5081516200009e906008906020850190620000d3565b50600955505060008054600160a060020a0316815260026020526040902055600a805460a060020a60ff021916905562000178565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200011657805160ff191683800117855562000146565b8280016001018555821562000146579182015b828111156200014657825182559160200191906001019062000129565b506200015492915062000158565b5090565b6200017591905b808211156200015457600081556001016200015f565b90565b61145380620001886000396000f3006080604052600436106101745763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101795780630753c30c14610203578063095ea7b3146102265780630e136b191461024a5780630ecb93c01461027357806318160ddd1461029457806323b872dd146102bb57806326976e3f146102e557806327e235e314610316578063313ce56714610337578063353907141461034c5780633eaaf86b146103615780633f4ba83a1461037657806359bf1abe1461038b5780635c658165146103ac5780635c975abb146103d357806370a08231146103e85780638456cb5914610409578063893d20e81461041e5780638da5cb5b1461043357806395d89b4114610448578063a9059cbb1461045d578063dd62ed3e14610481578063dd644f72146104a8578063e47d6060146104bd578063e4997dc5146104de578063e5b5019a146104ff578063f2fde38b14610514578063f3bdc22814610535575b600080fd5b34801561018557600080fd5b5061018e610556565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101c85781810151838201526020016101b0565b50505050905090810190601f1680156101f55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020f57600080fd5b50610224600160a060020a03600435166105e4565b005b34801561023257600080fd5b50610224600160a060020a036004351660243561067c565b34801561025657600080fd5b5061025f61073e565b604080519115158252519081900360200190f35b34801561027f57600080fd5b50610224600160a060020a036004351661074e565b3480156102a057600080fd5b506102a96107c0565b60408051918252519081900360200190f35b3480156102c757600080fd5b50610224600160a060020a036004358116906024351660443561087c565b3480156102f157600080fd5b506102fa610952565b60408051600160a060020a039092168252519081900360200190f35b34801561032257600080fd5b506102a9600160a060020a0360043516610961565b34801561034357600080fd5b506102a9610973565b34801561035857600080fd5b506102a9610979565b34801561036d57600080fd5b506102a961097f565b34801561038257600080fd5b50610224610985565b34801561039757600080fd5b5061025f600160a060020a03600435166109fb565b3480156103b857600080fd5b506102a9600160a060020a0360043581169060243516610a1d565b3480156103df57600080fd5b5061025f610a3a565b3480156103f457600080fd5b506102a9600160a060020a0360043516610a4a565b34801561041557600080fd5b50610224610b0a565b34801561042a57600080fd5b506102fa610b85565b34801561043f57600080fd5b506102fa610b94565b34801561045457600080fd5b5061018e610ba3565b34801561046957600080fd5b50610224600160a060020a0360043516602435610bfe565b34801561048d57600080fd5b506102a9600160a060020a0360043581169060243516610ce3565b3480156104b457600080fd5b506102a9610dae565b3480156104c957600080fd5b5061025f600160a060020a0360043516610db4565b3480156104ea57600080fd5b50610224600160a060020a0360043516610dc9565b34801561050b57600080fd5b506102a9610e38565b34801561052057600080fd5b50610224600160a060020a0360043516610e3e565b34801561054157600080fd5b50610224600160a060020a0360043516610e90565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105dc5780601f106105b1576101008083540402835291602001916105dc565b820191906000526020600020905b8154815290600101906020018083116105bf57829003601f168201915b505050505081565b600054600160a060020a031633146105fb57600080fd5b600a805460a060020a74ff0000000000000000000000000000000000000000199091161773ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03831690811790915560408051918252517fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e916020908290030190a150565b6040604436101561068c57600080fd5b600a5460a060020a900460ff161561072f57600a54604080517faee92d33000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a038681166024830152604482018690529151919092169163aee92d3391606480830192600092919082900301818387803b15801561071257600080fd5b505af1158015610726573d6000803e3d6000fd5b50505050610739565b6107398383610f3c565b505050565b600a5460a060020a900460ff1681565b600054600160a060020a0316331461076557600080fd5b600160a060020a038116600081815260066020908152604091829020805460ff19166001179055815192835290517f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9281900390910190a150565b600a5460009060a060020a900460ff161561087457600a60009054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b15801561084157600080fd5b505af1158015610855573d6000803e3d6000fd5b505050506040513d602081101561086b57600080fd5b50519050610879565b506001545b90565b60005460a060020a900460ff161561089357600080fd5b600160a060020a03831660009081526006602052604090205460ff16156108b957600080fd5b600a5460a060020a900460ff161561094757600a54604080517f8b477adb000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a03868116602483015285811660448301526064820185905291519190921691638b477adb91608480830192600092919082900301818387803b15801561071257600080fd5b610739838383610fea565b600a54600160a060020a031681565b60026020526000908152604090205481565b60095481565b60045481565b60015481565b600054600160a060020a0316331461099c57600080fd5b60005460a060020a900460ff1615156109b457600080fd5b6000805474ff0000000000000000000000000000000000000000191681556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b339190a1565b600160a060020a03811660009081526006602052604090205460ff165b919050565b600560209081526000928352604080842090915290825290205481565b60005460a060020a900460ff1681565b600a5460009060a060020a900460ff1615610afa57600a54604080517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152915191909216916370a082319160248083019260209291908290030181600087803b158015610ac757600080fd5b505af1158015610adb573d6000803e3d6000fd5b505050506040513d6020811015610af157600080fd5b50519050610a18565b610b03826111e6565b9050610a18565b600054600160a060020a03163314610b2157600080fd5b60005460a060020a900460ff1615610b3857600080fd5b6000805474ff0000000000000000000000000000000000000000191660a060020a1781556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff6259190a1565b600054600160a060020a031690565b600054600160a060020a031681565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105dc5780601f106105b1576101008083540402835291602001916105dc565b60005460a060020a900460ff1615610c1557600080fd5b3360009081526006602052604090205460ff1615610c3257600080fd5b600a5460a060020a900460ff1615610cd557600a54604080517f6e18980a000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a0385811660248301526044820185905291519190921691636e18980a91606480830192600092919082900301818387803b158015610cb857600080fd5b505af1158015610ccc573d6000803e3d6000fd5b50505050610cdf565b610cdf8282611201565b5050565b600a5460009060a060020a900460ff1615610d9b57600a54604080517fdd62ed3e000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015285811660248301529151919092169163dd62ed3e9160448083019260209291908290030181600087803b158015610d6857600080fd5b505af1158015610d7c573d6000803e3d6000fd5b505050506040513d6020811015610d9257600080fd5b50519050610da8565b610da5838361136e565b90505b92915050565b60035481565b60066020526000908152604090205460ff1681565b600054600160a060020a03163314610de057600080fd5b600160a060020a038116600081815260066020908152604091829020805460ff19169055815192835290517fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9281900390910190a150565b60001981565b600054600160a060020a03163314610e5557600080fd5b600160a060020a03811615610e8d576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60008054600160a060020a03163314610ea857600080fd5b600160a060020a03821660009081526006602052604090205460ff161515610ecf57600080fd5b610ed882610a4a565b600160a060020a0383166000818152600260209081526040808320929092556001805485900390558151928352820183905280519293507f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c692918290030190a15050565b60406044361015610f4c57600080fd5b8115801590610f7d5750336000908152600560209081526040808320600160a060020a038716845290915290205415155b15610f8757600080fd5b336000818152600560209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3505050565b6000808060606064361015610ffe57600080fd5b600160a060020a038716600090815260056020908152604080832033845290915290205460035490945061104d906127109061104190889063ffffffff61139916565b9063ffffffff6113cf16565b925060045483111561105f5760045492505b60001984101561109e57611079848663ffffffff6113e616565b600160a060020a03881660009081526005602090815260408083203384529091529020555b6110ae858463ffffffff6113e616565b600160a060020a0388166000908152600260205260409020549092506110da908663ffffffff6113e616565b600160a060020a03808916600090815260026020526040808220939093559088168152205461110f908363ffffffff6113f816565b600160a060020a0387166000908152600260205260408120919091558311156111a45760008054600160a060020a031681526002602052604090205461115b908463ffffffff6113f816565b60008054600160a060020a0390811682526002602090815260408084209490945591548351878152935190821693918b1692600080516020611408833981519152928290030190a35b85600160a060020a031687600160a060020a0316600080516020611408833981519152846040518082815260200191505060405180910390a350505050505050565b600160a060020a031660009081526002602052604090205490565b6000806040604436101561121457600080fd5b61122f6127106110416003548761139990919063ffffffff16565b92506004548311156112415760045492505b611251848463ffffffff6113e616565b33600090815260026020526040902054909250611274908563ffffffff6113e616565b3360009081526002602052604080822092909255600160a060020a038716815220546112a6908363ffffffff6113f816565b600160a060020a0386166000908152600260205260408120919091558311156113395760008054600160a060020a03168152600260205260409020546112f2908463ffffffff6113f816565b60008054600160a060020a03908116825260026020908152604080842094909455915483518781529351911692339260008051602061140883398151915292918290030190a35b604080518381529051600160a060020a0387169133916000805160206114088339815191529181900360200190a35050505050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b6000808315156113ac57600091506113c8565b508282028284828115156113bc57fe5b04146113c457fe5b8091505b5092915050565b60008082848115156113dd57fe5b04949350505050565b6000828211156113f257fe5b50900390565b6000828201838110156113c457fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582018bf2b0647b3992050590d783b635c6c2c79302e59085a16f7dbc4cfddd775170029000000000000000000000000000000000000000009b18ab5df7180b6b8000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000456454e4900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000456454e4900000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101745763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146101795780630753c30c14610203578063095ea7b3146102265780630e136b191461024a5780630ecb93c01461027357806318160ddd1461029457806323b872dd146102bb57806326976e3f146102e557806327e235e314610316578063313ce56714610337578063353907141461034c5780633eaaf86b146103615780633f4ba83a1461037657806359bf1abe1461038b5780635c658165146103ac5780635c975abb146103d357806370a08231146103e85780638456cb5914610409578063893d20e81461041e5780638da5cb5b1461043357806395d89b4114610448578063a9059cbb1461045d578063dd62ed3e14610481578063dd644f72146104a8578063e47d6060146104bd578063e4997dc5146104de578063e5b5019a146104ff578063f2fde38b14610514578063f3bdc22814610535575b600080fd5b34801561018557600080fd5b5061018e610556565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101c85781810151838201526020016101b0565b50505050905090810190601f1680156101f55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020f57600080fd5b50610224600160a060020a03600435166105e4565b005b34801561023257600080fd5b50610224600160a060020a036004351660243561067c565b34801561025657600080fd5b5061025f61073e565b604080519115158252519081900360200190f35b34801561027f57600080fd5b50610224600160a060020a036004351661074e565b3480156102a057600080fd5b506102a96107c0565b60408051918252519081900360200190f35b3480156102c757600080fd5b50610224600160a060020a036004358116906024351660443561087c565b3480156102f157600080fd5b506102fa610952565b60408051600160a060020a039092168252519081900360200190f35b34801561032257600080fd5b506102a9600160a060020a0360043516610961565b34801561034357600080fd5b506102a9610973565b34801561035857600080fd5b506102a9610979565b34801561036d57600080fd5b506102a961097f565b34801561038257600080fd5b50610224610985565b34801561039757600080fd5b5061025f600160a060020a03600435166109fb565b3480156103b857600080fd5b506102a9600160a060020a0360043581169060243516610a1d565b3480156103df57600080fd5b5061025f610a3a565b3480156103f457600080fd5b506102a9600160a060020a0360043516610a4a565b34801561041557600080fd5b50610224610b0a565b34801561042a57600080fd5b506102fa610b85565b34801561043f57600080fd5b506102fa610b94565b34801561045457600080fd5b5061018e610ba3565b34801561046957600080fd5b50610224600160a060020a0360043516602435610bfe565b34801561048d57600080fd5b506102a9600160a060020a0360043581169060243516610ce3565b3480156104b457600080fd5b506102a9610dae565b3480156104c957600080fd5b5061025f600160a060020a0360043516610db4565b3480156104ea57600080fd5b50610224600160a060020a0360043516610dc9565b34801561050b57600080fd5b506102a9610e38565b34801561052057600080fd5b50610224600160a060020a0360043516610e3e565b34801561054157600080fd5b50610224600160a060020a0360043516610e90565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105dc5780601f106105b1576101008083540402835291602001916105dc565b820191906000526020600020905b8154815290600101906020018083116105bf57829003601f168201915b505050505081565b600054600160a060020a031633146105fb57600080fd5b600a805460a060020a74ff0000000000000000000000000000000000000000199091161773ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03831690811790915560408051918252517fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e916020908290030190a150565b6040604436101561068c57600080fd5b600a5460a060020a900460ff161561072f57600a54604080517faee92d33000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a038681166024830152604482018690529151919092169163aee92d3391606480830192600092919082900301818387803b15801561071257600080fd5b505af1158015610726573d6000803e3d6000fd5b50505050610739565b6107398383610f3c565b505050565b600a5460a060020a900460ff1681565b600054600160a060020a0316331461076557600080fd5b600160a060020a038116600081815260066020908152604091829020805460ff19166001179055815192835290517f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9281900390910190a150565b600a5460009060a060020a900460ff161561087457600a60009054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b15801561084157600080fd5b505af1158015610855573d6000803e3d6000fd5b505050506040513d602081101561086b57600080fd5b50519050610879565b506001545b90565b60005460a060020a900460ff161561089357600080fd5b600160a060020a03831660009081526006602052604090205460ff16156108b957600080fd5b600a5460a060020a900460ff161561094757600a54604080517f8b477adb000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a03868116602483015285811660448301526064820185905291519190921691638b477adb91608480830192600092919082900301818387803b15801561071257600080fd5b610739838383610fea565b600a54600160a060020a031681565b60026020526000908152604090205481565b60095481565b60045481565b60015481565b600054600160a060020a0316331461099c57600080fd5b60005460a060020a900460ff1615156109b457600080fd5b6000805474ff0000000000000000000000000000000000000000191681556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b339190a1565b600160a060020a03811660009081526006602052604090205460ff165b919050565b600560209081526000928352604080842090915290825290205481565b60005460a060020a900460ff1681565b600a5460009060a060020a900460ff1615610afa57600a54604080517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152915191909216916370a082319160248083019260209291908290030181600087803b158015610ac757600080fd5b505af1158015610adb573d6000803e3d6000fd5b505050506040513d6020811015610af157600080fd5b50519050610a18565b610b03826111e6565b9050610a18565b600054600160a060020a03163314610b2157600080fd5b60005460a060020a900460ff1615610b3857600080fd5b6000805474ff0000000000000000000000000000000000000000191660a060020a1781556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff6259190a1565b600054600160a060020a031690565b600054600160a060020a031681565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105dc5780601f106105b1576101008083540402835291602001916105dc565b60005460a060020a900460ff1615610c1557600080fd5b3360009081526006602052604090205460ff1615610c3257600080fd5b600a5460a060020a900460ff1615610cd557600a54604080517f6e18980a000000000000000000000000000000000000000000000000000000008152336004820152600160a060020a0385811660248301526044820185905291519190921691636e18980a91606480830192600092919082900301818387803b158015610cb857600080fd5b505af1158015610ccc573d6000803e3d6000fd5b50505050610cdf565b610cdf8282611201565b5050565b600a5460009060a060020a900460ff1615610d9b57600a54604080517fdd62ed3e000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015285811660248301529151919092169163dd62ed3e9160448083019260209291908290030181600087803b158015610d6857600080fd5b505af1158015610d7c573d6000803e3d6000fd5b505050506040513d6020811015610d9257600080fd5b50519050610da8565b610da5838361136e565b90505b92915050565b60035481565b60066020526000908152604090205460ff1681565b600054600160a060020a03163314610de057600080fd5b600160a060020a038116600081815260066020908152604091829020805460ff19169055815192835290517fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9281900390910190a150565b60001981565b600054600160a060020a03163314610e5557600080fd5b600160a060020a03811615610e8d576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b60008054600160a060020a03163314610ea857600080fd5b600160a060020a03821660009081526006602052604090205460ff161515610ecf57600080fd5b610ed882610a4a565b600160a060020a0383166000818152600260209081526040808320929092556001805485900390558151928352820183905280519293507f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c692918290030190a15050565b60406044361015610f4c57600080fd5b8115801590610f7d5750336000908152600560209081526040808320600160a060020a038716845290915290205415155b15610f8757600080fd5b336000818152600560209081526040808320600160a060020a03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a3505050565b6000808060606064361015610ffe57600080fd5b600160a060020a038716600090815260056020908152604080832033845290915290205460035490945061104d906127109061104190889063ffffffff61139916565b9063ffffffff6113cf16565b925060045483111561105f5760045492505b60001984101561109e57611079848663ffffffff6113e616565b600160a060020a03881660009081526005602090815260408083203384529091529020555b6110ae858463ffffffff6113e616565b600160a060020a0388166000908152600260205260409020549092506110da908663ffffffff6113e616565b600160a060020a03808916600090815260026020526040808220939093559088168152205461110f908363ffffffff6113f816565b600160a060020a0387166000908152600260205260408120919091558311156111a45760008054600160a060020a031681526002602052604090205461115b908463ffffffff6113f816565b60008054600160a060020a0390811682526002602090815260408084209490945591548351878152935190821693918b1692600080516020611408833981519152928290030190a35b85600160a060020a031687600160a060020a0316600080516020611408833981519152846040518082815260200191505060405180910390a350505050505050565b600160a060020a031660009081526002602052604090205490565b6000806040604436101561121457600080fd5b61122f6127106110416003548761139990919063ffffffff16565b92506004548311156112415760045492505b611251848463ffffffff6113e616565b33600090815260026020526040902054909250611274908563ffffffff6113e616565b3360009081526002602052604080822092909255600160a060020a038716815220546112a6908363ffffffff6113f816565b600160a060020a0386166000908152600260205260408120919091558311156113395760008054600160a060020a03168152600260205260409020546112f2908463ffffffff6113f816565b60008054600160a060020a03908116825260026020908152604080842094909455915483518781529351911692339260008051602061140883398151915292918290030190a35b604080518381529051600160a060020a0387169133916000805160206114088339815191529181900360200190a35050505050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b6000808315156113ac57600091506113c8565b508282028284828115156113bc57fe5b04146113c457fe5b8091505b5092915050565b60008082848115156113dd57fe5b04949350505050565b6000828211156113f257fe5b50900390565b6000828201838110156113c457fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a7230582018bf2b0647b3992050590d783b635c6c2c79302e59085a16f7dbc4cfddd775170029

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

000000000000000000000000000000000000000009b18ab5df7180b6b8000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000456454e4900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000456454e4900000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 3000000000000000000000000000
Arg [1] : _name (string): VENI
Arg [2] : _symbol (string): VENI
Arg [3] : _decimals (uint256): 18

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000009b18ab5df7180b6b8000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 56454e4900000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 56454e4900000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

10042:3380:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10108:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10108:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;10108:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12862:181;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12862:181:0;-1:-1:-1;;;;;12862:181:0;;;;;;;12116:302;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12116:302:0;-1:-1:-1;;;;;12116:302:0;;;;;;;10224:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10224:22:0;;;;;;;;;;;;;;;;;;;;;;8785:145;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8785:145:0;-1:-1:-1;;;;;8785:145:0;;;;;13109:218;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13109:218:0;;;;;;;;;;;;;;;;;;;;11340:362;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11340:362:0;-1:-1:-1;;;;;11340:362:0;;;;;;;;;;;;10187:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10187:30:0;;;;;;;;-1:-1:-1;;;;;10187:30:0;;;;;;;;;;;;;;3022:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;3022:40:0;-1:-1:-1;;;;;3022:40:0;;;;;10160:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10160:20:0;;;;3188:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3188:26:0;;;;2124:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2124:24:0;;;;8231:90;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8231:90:0;;;;8499:124;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8499:124:0;-1:-1:-1;;;;;8499:124:0;;;;;4812:61;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;4812:61:0;-1:-1:-1;;;;;4812:61:0;;;;;;;;;;7615:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7615:26:0;;;;11787:244;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;11787:244:0;-1:-1:-1;;;;;11787:244:0;;;;;8056:88;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8056:88:0;;;;8631:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8631:87:0;;;;1233:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1233:20:0;;;;10133;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10133:20:0;;;;10929:326;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;10929:326:0;-1:-1:-1;;;;;10929:326:0;;;;;;;12503:293;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;12503:293:0;-1:-1:-1;;;;;12503:293:0;;;;;;;;;;3150:31;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3150:31:0;;;;8726:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8726:46:0;-1:-1:-1;;;;;8726:46:0;;;;;8938:160;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8938:160:0;-1:-1:-1;;;;;8938:160:0;;;;;4882:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4882:42:0;;;;1805:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;1805:151:0;-1:-1:-1;;;;;1805:151:0;;;;;9106:324;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9106:324:0;-1:-1:-1;;;;;9106:324:0;;;;;10108:18;;;;;;;;;;;;;;;-1:-1:-1;;10108:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12862:181::-;1605:5;;-1:-1:-1;;;;;1605:5:0;1591:10;:19;1583:28;;;;;;12935:10;:17;;-1:-1:-1;;;;;12935:17:0;;;;-1:-1:-1;;12963:34:0;-1:-1:-1;;;;;12963:34:0;;;;;;;;13008:27;;;;;;;;;;;;;;;;;12862:181;:::o;12116:302::-;12187:6;3367:8;3349;:26;3347:29;3339:38;;;;;;12210:10;;-1:-1:-1;;;12210:10:0;;;;12206:205;;;12266:15;;12244:84;;;;;;12299:10;12244:84;;;;-1:-1:-1;;;;;12244:84:0;;;;;;;;;;;;;;;12266:15;;;;;12244:54;;:84;;;;;12266:15;;12244:84;;;;;;;12266:15;;12244:84;;;5:2:-1;;;;30:1;27;20:12;5:2;12244:84:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12244:84:0;;;;12237:91;;12206:205;12368:31;12382:8;12392:6;12368:13;:31::i;:::-;12116:302;;;:::o;10224:22::-;;;-1:-1:-1;;;10224:22:0;;;;;:::o;8785:145::-;1605:5;;-1:-1:-1;;;;;1605:5:0;1591:10;:19;1583:28;;;;;;-1:-1:-1;;;;;8855:24:0;;;;;;:13;:24;;;;;;;;;:31;;-1:-1:-1;;8855:31:0;8882:4;8855:31;;;8897:25;;;;;;;;;;;;;;;;;8785:145;:::o;13109:218::-;13178:10;;13157:4;;-1:-1:-1;;;13178:10:0;;;;13174:146;;;13226:15;;;;;;;;;-1:-1:-1;;;;;13226:15:0;-1:-1:-1;;;;;13212:42:0;;:44;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13212:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;13212:44:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13212:44:0;;-1:-1:-1;13205:51:0;;13174:146;-1:-1:-1;13296:12:0;;13174:146;13109:218;:::o;11340:362::-;7791:6;;-1:-1:-1;;;7791:6:0;;;;7790:7;7782:16;;;;;;-1:-1:-1;;;;;11444:20:0;;;;;;:13;:20;;;;;;;;11443:21;11435:30;;;;;;11480:10;;-1:-1:-1;;;11480:10:0;;;;11476:219;;;11536:15;;11514:91;;;;;;11574:10;11514:91;;;;-1:-1:-1;;;;;11514:91:0;;;;;;;;;;;;;;;;;;;;;;11536:15;;;;;11514:59;;:91;;;;;11536:15;;11514:91;;;;;;;11536:15;;11514:91;;;5:2:-1;;;;30:1;27;20:12;11476:219:0;11645:38;11664:5;11671:3;11676:6;11645:18;:38::i;10187:30::-;;;-1:-1:-1;;;;;10187:30:0;;:::o;3022:40::-;;;;;;;;;;;;;:::o;10160:20::-;;;;:::o;3188:26::-;;;;:::o;2124:24::-;;;;:::o;8231:90::-;1605:5;;-1:-1:-1;;;;;1605:5:0;1591:10;:19;1583:28;;;;;;7951:6;;-1:-1:-1;;;7951:6:0;;;;7943:15;;;;;;;;8294:5;8285:14;;-1:-1:-1;;8285:14:0;;;8306:9;;;;8294:5;8306:9;8231:90::o;8499:124::-;-1:-1:-1;;;;;8594:21:0;;8570:4;8594:21;;;:13;:21;;;;;;;;8499:124;;;;:::o;4812:61::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;7615:26::-;;;-1:-1:-1;;;7615:26:0;;;;;:::o;11787:244::-;11865:10;;11844:4;;-1:-1:-1;;;11865:10:0;;;;11861:163;;;11921:15;;11899:53;;;;;;-1:-1:-1;;;;;11899:53:0;;;;;;;;;11921:15;;;;;11899:48;;:53;;;;;;;;;;;;;;11921:15;;11899:53;;;5:2:-1;;;;30:1;27;20:12;5:2;11899:53:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;11899:53:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11899:53:0;;-1:-1:-1;11892:60:0;;11861:163;11992:20;12008:3;11992:15;:20::i;:::-;11985:27;;;;8056:88;1605:5;;-1:-1:-1;;;;;1605:5:0;1591:10;:19;1583:28;;;;;;7791:6;;-1:-1:-1;;;7791:6:0;;;;7790:7;7782:16;;;;;;8111:6;:13;;-1:-1:-1;;8111:13:0;-1:-1:-1;;;8111:13:0;;;8131:7;;;;8111:6;8131:7;8056:88::o;8631:87::-;8678:7;8705:5;-1:-1:-1;;;;;8705:5:0;8631:87;:::o;1233:20::-;;;-1:-1:-1;;;;;1233:20:0;;:::o;10133:::-;;;;;;;;;;;;;;;-1:-1:-1;;10133:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10929:326;7791:6;;-1:-1:-1;;;7791:6:0;;;;7790:7;7782:16;;;;;;11028:10;11014:25;;;;:13;:25;;;;;;;;11013:26;11005:35;;;;;;11055:10;;-1:-1:-1;;;11055:10:0;;;;11051:197;;;11111:15;;11089:80;;;;;;11145:10;11089:80;;;;-1:-1:-1;;;;;11089:80:0;;;;;;;;;;;;;;;11111:15;;;;;11089:55;;:80;;;;;11111:15;;11089:80;;;;;;;11111:15;;11089:80;;;5:2:-1;;;;30:1;27;20:12;5:2;11089:80:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;11089:80:0;;;;11082:87;;11051:197;11209:27;11224:3;11229:6;11209:14;:27::i;:::-;10929:326;;:::o;12503:293::-;12612:10;;12581:14;;-1:-1:-1;;;12612:10:0;;;;12608:181;;;12660:15;;12646:58;;;;;;-1:-1:-1;;;;;12646:58:0;;;;;;;;;;;;;;;;12660:15;;;;;12646:40;;:58;;;;;;;;;;;;;;12660:15;;12646:58;;;5:2:-1;;;;30:1;27;20:12;5:2;12646:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12646:58:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12646:58:0;;-1:-1:-1;12639:65:0;;12608:181;12744:33;12760:6;12768:8;12744:15;:33::i;:::-;12737:40;;12608:181;12503:293;;;;:::o;3150:31::-;;;;:::o;8726:46::-;;;;;;;;;;;;;;;:::o;8938:160::-;1605:5;;-1:-1:-1;;;;;1605:5:0;1591:10;:19;1583:28;;;;;;-1:-1:-1;;;;;9014:27:0;;9044:5;9014:27;;;:13;:27;;;;;;;;;:35;;-1:-1:-1;;9014:35:0;;;9060:30;;;;;;;;;;;;;;;;;8938:160;:::o;4882:42::-;-1:-1:-1;;4882:42:0;:::o;1805:151::-;1605:5;;-1:-1:-1;;;;;1605:5:0;1591:10;:19;1583:28;;;;;;-1:-1:-1;;;;;1882:22:0;;;1878:71;;1921:5;:16;;-1:-1:-1;;1921:16:0;-1:-1:-1;;;;;1921:16:0;;;;;1878:71;1805:151;:::o;9106:324::-;9239:15;1605:5;;-1:-1:-1;;;;;1605:5:0;1591:10;:19;1583:28;;;;;;-1:-1:-1;;;;;9196:31:0;;;;;;:13;:31;;;;;;;;9188:40;;;;;;;;9257:27;9267:16;9257:9;:27::i;:::-;-1:-1:-1;;;;;9295:26:0;;9324:1;9295:26;;;:8;:26;;;;;;;;:30;;;;9336:12;:26;;;;;;;9373:49;;;;;;;;;;;;9239:45;;-1:-1:-1;9373:49:0;;;;;;;;;9106:324;;:::o;6362:573::-;6433:6;3367:8;3349;:26;3347:29;3339:38;;;;;;6773:11;;;;;6772:53;;-1:-1:-1;6798:10:0;6790:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6790:29:0;;;;;;;;;;:34;;6772:53;6770:56;6762:65;;;;;;6848:10;6840:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;6840:29:0;;;;;;;;;;;;:38;;;6889;;;;;;;6840:29;;6848:10;6889:38;;;;;;;;;;;6362:573;;;:::o;5214:901::-;5319:14;;;5300:6;3367:8;3349;:26;3347:29;3339:38;;;;;;-1:-1:-1;;;;;5336:14:0;;;;;;:7;:14;;;;;;;;5351:10;5336:26;;;;;;;;5556:15;;5336:26;;-1:-1:-1;5544:40:0;;5578:5;;5545:27;;:6;;:27;:10;:27;:::i;:::-;5544:33;:40;:33;:40;:::i;:::-;5533:51;;5605:10;;5599:3;:16;5595:65;;;5638:10;;5632:16;;5595:65;-1:-1:-1;;5674:10:0;:21;5670:105;;;5741:22;:10;5756:6;5741:22;:14;:22;:::i;:::-;-1:-1:-1;;;;;5712:14:0;;;;;;:7;:14;;;;;;;;5727:10;5712:26;;;;;;;:51;5670:105;5803:15;:6;5814:3;5803:15;:10;:15;:::i;:::-;-1:-1:-1;;;;;5847:15:0;;;;;;:8;:15;;;;;;5785:33;;-1:-1:-1;5847:27:0;;5867:6;5847:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;5829:15:0;;;;;;;:8;:15;;;;;;:45;;;;5901:13;;;;;;;:29;;5919:10;5901:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;5885:13:0;;;;;;:8;:13;;;;;:45;;;;5945:7;;5941:124;;;5987:15;5996:5;;-1:-1:-1;;;;;5996:5:0;5987:15;;:8;:15;;;;;;:24;;6007:3;5987:24;:19;:24;:::i;:::-;5969:15;5978:5;;-1:-1:-1;;;;;5978:5:0;;;5969:15;;:8;:15;;;;;;;;:42;;;;6042:5;;6026:27;;;;;;;6042:5;;;;6026:27;;;;-1:-1:-1;;;;;;;;;;;6026:27:0;;;;;;;5941:124;6091:3;-1:-1:-1;;;;;6075:32:0;6084:5;-1:-1:-1;;;;;6075:32:0;-1:-1:-1;;;;;;;;;;;6096:10:0;6075:32;;;;;;;;;;;;;;;;;;5214:901;;;;;;;:::o;4361:116::-;-1:-1:-1;;;;;4453:16:0;4421:12;4453:16;;;:8;:16;;;;;;;4361:116::o;3570:573::-;3656:8;;3637:6;3367:8;3349;:26;3347:29;3339:38;;;;;;3667:40;3701:5;3668:27;3679:15;;3668:6;:10;;:27;;;;:::i;3667:40::-;3656:51;;3728:10;;3722:3;:16;3718:65;;;3761:10;;3755:16;;3718:65;3811:15;:6;3822:3;3811:15;:10;:15;:::i;:::-;3869:10;3860:20;;;;:8;:20;;;;;;3793:33;;-1:-1:-1;3860:32:0;;3885:6;3860:32;:24;:32;:::i;:::-;3846:10;3837:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;3919:13:0;;;;;;:29;;3937:10;3919:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;3903:13:0;;;;;;:8;:13;;;;;:45;;;;3963:7;;3959:129;;;4005:15;4014:5;;-1:-1:-1;;;;;4014:5:0;4005:15;;:8;:15;;;;;;:24;;4025:3;4005:24;:19;:24;:::i;:::-;3987:15;3996:5;;-1:-1:-1;;;;;3996:5:0;;;3987:15;;:8;:15;;;;;;;;:42;;;;4065:5;;4044:32;;;;;;;4065:5;;;4053:10;;-1:-1:-1;;;;;;;;;;;4044:32:0;;;;;;;;3959:129;4098:37;;;;;;;;-1:-1:-1;;;;;4098:37:0;;;4107:10;;-1:-1:-1;;;;;;;;;;;4098:37:0;;;;;;;;3570:573;;;;;:::o;7268:145::-;-1:-1:-1;;;;;7380:15:0;;;7346:14;7380:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7268:145::o;217:208::-;275:7;;299:6;;295:47;;;329:1;322:8;;;;295:47;-1:-1:-1;364:5:0;;;368:1;364;:5;387;;;;;;;;:10;380:18;;;;416:1;409:8;;217:208;;;;;;:::o;433:288::-;491:7;590:9;606:1;602;:5;;;;;;;;;433:288;-1:-1:-1;;;;433:288:0:o;729:123::-;787:7;814:6;;;;807:14;;;;-1:-1:-1;839:5:0;;;729:123::o;860:147::-;918:7;950:5;;;973:6;;;;966:14;;

Swarm Source

bzzr://18bf2b0647b3992050590d783b635c6c2c79302e59085a16f7dbc4cfddd77517
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.