ETH Price: $3,140.52 (+0.09%)
Gas: 7 Gwei

Token

Hydra Network (HYDRA)
 

Overview

Max Total Supply

30,000,000 HYDRA

Holders

9

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

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:
HYDRAToken

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-08-10
*/

pragma solidity ^0.4.17;

/**
 * @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 returns (bool);
    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 returns (bool);
    function approve(address spender, uint value) public returns (bool);
    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) returns (bool) {
        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);
        return true;
    }

    /**
    * @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) returns (bool) {
        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);
        return true;
    }

    /**
    * @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) returns (bool) {

        // 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);
        return true;
    }

    /**
    * @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 HYDRA) ///////
    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  returns (bool);
    function transferFromByLegacy(address sender, address from, address spender, uint value) public  returns (bool);
    function approveByLegacy(address from, address spender, uint value) public returns (bool);
}

contract HYDRAToken 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 HYDRAToken(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 returns (bool) {
        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 returns (bool) {
        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) returns (bool) {
        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;
        }
    }

    // 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) public onlyOwner {
        require(_totalSupply + amount > _totalSupply);
        require(balances[owner] + amount > balances[owner]);

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

    // Redeem tokens.
    // These tokens are withdrawn from the owner address
    // if the balance must be enough to cover the redeem
    // or the call will fail.
    // @param _amount Number of tokens to be issued
    function redeem(uint amount) public onlyOwner {
        require(_totalSupply >= amount);
        require(balances[owner] >= amount);

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

    function setParams(uint newBasisPoints, uint newMaxFee) public onlyOwner {
        // Ensure transparency by hardcoding limit beyond which fees can never be added
        require(newBasisPoints < 20);
        require(newMaxFee < 50);

        basisPointsRate = newBasisPoints;
        maximumFee = newMaxFee.mul(10**decimals);

        Params(basisPointsRate, maximumFee);
    }

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

    // Called when tokens are redeemed
    event Redeem(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,"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":[{"name":"","type":"bool"}],"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":[{"name":"","type":"bool"}],"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":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newBasisPoints","type":"uint256"},{"name":"newMaxFee","type":"uint256"}],"name":"setParams","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"issue","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"redeem","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":"amount","type":"uint256"}],"name":"Issue","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"Redeem","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":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"}]

60606040526000805460a060020a60ff0219168155600381905560045534156200002857600080fd5b6040516200181938038062001819833981016040528080519190602001805182019190602001805182019190602001805160008054600160a060020a03191633600160a060020a0316179055600186905591506007905083805162000092929160200190620000dd565b506008828051620000a8929160200190620000dd565b50600955505060008054600160a060020a0316815260026020526040902055600a805460a060020a60ff021916905562000182565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200012057805160ff191683800117855562000150565b8280016001018555821562000150579182015b828111156200015057825182559160200191906001019062000133565b506200015e92915062000162565b5090565b6200017f91905b808211156200015e576000815560010162000169565b90565b61168780620001926000396000f30060606040526004361061017c5763ffffffff60e060020a60003504166306fdde0381146101815780630753c30c1461020b578063095ea7b31461022c5780630e136b19146102625780630ecb93c01461027557806318160ddd1461029457806323b872dd146102b957806326976e3f146102e157806327e235e314610310578063313ce5671461032f57806335390714146103425780633eaaf86b146103555780633f4ba83a1461036857806359bf1abe1461037b5780635c6581651461039a5780635c975abb146103bf57806370a08231146103d25780638456cb59146103f1578063893d20e8146104045780638da5cb5b1461041757806395d89b411461042a578063a9059cbb1461043d578063c0324c771461045f578063cc872b6614610478578063db006a751461048e578063dd62ed3e146104a4578063dd644f72146104c9578063e47d6060146104dc578063e4997dc5146104fb578063e5b5019a1461051a578063f2fde38b1461052d578063f3bdc2281461054c575b600080fd5b341561018c57600080fd5b61019461056b565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101d05780820151838201526020016101b8565b50505050905090810190601f1680156101fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021657600080fd5b61022a600160a060020a0360043516610609565b005b341561023757600080fd5b61024e600160a060020a03600435166024356106ac565b604051901515815260200160405180910390f35b341561026d57600080fd5b61024e610772565b341561028057600080fd5b61022a600160a060020a0360043516610782565b341561029f57600080fd5b6102a7610802565b60405190815260200160405180910390f35b34156102c457600080fd5b61024e600160a060020a0360043581169060243516604435610889565b34156102ec57600080fd5b6102f4610983565b604051600160a060020a03909116815260200160405180910390f35b341561031b57600080fd5b6102a7600160a060020a0360043516610992565b341561033a57600080fd5b6102a76109a4565b341561034d57600080fd5b6102a76109aa565b341561036057600080fd5b6102a76109b0565b341561037357600080fd5b61022a6109b6565b341561038657600080fd5b61024e600160a060020a0360043516610a35565b34156103a557600080fd5b6102a7600160a060020a0360043581169060243516610a57565b34156103ca57600080fd5b61024e610a74565b34156103dd57600080fd5b6102a7600160a060020a0360043516610a84565b34156103fc57600080fd5b61022a610b24565b341561040f57600080fd5b6102f4610ba8565b341561042257600080fd5b6102f4610bb7565b341561043557600080fd5b610194610bc6565b341561044857600080fd5b61024e600160a060020a0360043516602435610c31565b341561046a57600080fd5b61022a600435602435610d22565b341561048357600080fd5b61022a600435610db8565b341561049957600080fd5b61022a600435610e67565b34156104af57600080fd5b6102a7600160a060020a0360043581169060243516610f18565b34156104d457600080fd5b6102a7610f98565b34156104e757600080fd5b61024e600160a060020a0360043516610f9e565b341561050657600080fd5b61022a600160a060020a0360043516610fb3565b341561052557600080fd5b6102a7611030565b341561053857600080fd5b61022a600160a060020a0360043516611036565b341561055757600080fd5b61022a600160a060020a036004351661108c565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106015780601f106105d657610100808354040283529160200191610601565b820191906000526020600020905b8154815290600101906020018083116105e457829003601f168201915b505050505081565b60005433600160a060020a0390811691161461062457600080fd5b600a805460a060020a74ff0000000000000000000000000000000000000000199091161773ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790557fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e81604051600160a060020a03909116815260200160405180910390a150565b6000604060443610156106be57600080fd5b600a5460a060020a900460ff161561075e57600a54600160a060020a031663aee92d3333868660006040516020015260405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401602060405180830381600087803b151561073c57600080fd5b6102c65a03f1151561074d57600080fd5b50505060405180519050915061076b565b610768848461114a565b91505b5092915050565b600a5460a060020a900460ff1681565b60005433600160a060020a0390811691161461079d57600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191660011790557f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc90829051600160a060020a03909116815260200160405180910390a150565b600a5460009060a060020a900460ff161561088157600a54600160a060020a03166318160ddd6000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b151561085f57600080fd5b6102c65a03f1151561087057600080fd5b505050604051805190509050610886565b506001545b90565b6000805460a060020a900460ff16156108a157600080fd5b600160a060020a03841660009081526006602052604090205460ff16156108c757600080fd5b600a5460a060020a900460ff161561096e57600a54600160a060020a0316638b477adb3386868660006040516020015260405160e060020a63ffffffff8716028152600160a060020a0394851660048201529284166024840152921660448201526064810191909152608401602060405180830381600087803b151561094c57600080fd5b6102c65a03f1151561095d57600080fd5b50505060405180519050905061097c565b610979848484611203565b90505b9392505050565b600a54600160a060020a031681565b60026020526000908152604090205481565b60095481565b60045481565b60015481565b60005433600160a060020a039081169116146109d157600080fd5b60005460a060020a900460ff1615156109e957600080fd5b6000805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b600160a060020a03811660009081526006602052604090205460ff165b919050565b600560209081526000928352604080842090915290825290205481565b60005460a060020a900460ff1681565b600a5460009060a060020a900460ff1615610b1457600a54600160a060020a03166370a082318360006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610af257600080fd5b6102c65a03f11515610b0357600080fd5b505050604051805190509050610a52565b610b1d82611408565b9050610a52565b60005433600160a060020a03908116911614610b3f57600080fd5b60005460a060020a900460ff1615610b5657600080fd5b6000805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600054600160a060020a031690565b600054600160a060020a031681565b60088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106015780601f106105d657610100808354040283529160200191610601565b6000805460a060020a900460ff1615610c4957600080fd5b600160a060020a03331660009081526006602052604090205460ff1615610c6f57600080fd5b600a5460a060020a900460ff1615610d0f57600a54600160a060020a0316636e18980a33858560006040516020015260405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401602060405180830381600087803b1515610ced57600080fd5b6102c65a03f11515610cfe57600080fd5b505050604051805190509050610d1c565b610d198383611423565b90505b92915050565b60005433600160a060020a03908116911614610d3d57600080fd5b60148210610d4a57600080fd5b60328110610d5757600080fd5b6003829055600954610d73908290600a0a63ffffffff6115ad16565b60048190556003547fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e9160405191825260208201526040908101905180910390a15050565b60005433600160a060020a03908116911614610dd357600080fd5b60015481810111610de357600080fd5b60008054600160a060020a031681526002602052604090205481810111610e0957600080fd5b60008054600160a060020a03168152600260205260409081902080548301905560018054830190557fcb8241adb0c3fdb35b70c24ce35c5eb0c17af7431c99f827d44a445ca624176a9082905190815260200160405180910390a150565b60005433600160a060020a03908116911614610e8257600080fd5b60015481901015610e9257600080fd5b60008054600160a060020a031681526002602052604090205481901015610eb857600080fd5b60018054829003905560008054600160a060020a031681526002602052604090819020805483900390557f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449082905190815260200160405180910390a150565b600a5460009060a060020a900460ff1615610f8e57600a54600160a060020a031663dd62ed3e848460006040516020015260405160e060020a63ffffffff8516028152600160a060020a03928316600482015291166024820152604401602060405180830381600087803b1515610ced57600080fd5b610d1983836115d8565b60035481565b60066020526000908152604090205460ff1681565b60005433600160a060020a03908116911614610fce57600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191690557fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c90829051600160a060020a03909116815260200160405180910390a150565b60001981565b60005433600160a060020a0390811691161461105157600080fd5b600160a060020a03811615611089576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b6000805433600160a060020a039081169116146110a857600080fd5b600160a060020a03821660009081526006602052604090205460ff1615156110cf57600080fd5b6110d882610a84565b600160a060020a038316600090815260026020526040808220919091556001805483900390559091507f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c6908390839051600160a060020a03909216825260208201526040908101905180910390a15050565b60006040604436101561115c57600080fd5b821580159061118f5750600160a060020a0333811660009081526005602090815260408083209388168352929052205415155b1561119957600080fd5b600160a060020a03338116600081815260056020908152604080832094891680845294909152908190208690557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259086905190815260200160405180910390a35060019392505050565b60008080806060606436101561121857600080fd5b600160a060020a038089166000908152600560209081526040808320339094168352929052205460035490945061126a906127109061125e90899063ffffffff6115ad16565b9063ffffffff61160316565b925060045483111561127c5760045492505b6000198410156112be57611296848763ffffffff61161a16565b600160a060020a03808a16600090815260056020908152604080832033909416835292905220555b6112ce868463ffffffff61161a16565b600160a060020a0389166000908152600260205260409020549092506112fa908763ffffffff61161a16565b600160a060020a03808a16600090815260026020526040808220939093559089168152205461132f908363ffffffff61162c16565b600160a060020a0388166000908152600260205260408120919091558311156113c55760008054600160a060020a031681526002602052604090205461137b908463ffffffff61162c16565b60008054600160a060020a03908116825260026020526040808320939093559054811691908a169060008051602061163c8339815191529086905190815260200160405180910390a35b86600160a060020a031688600160a060020a031660008051602061163c8339815191528460405190815260200160405180910390a3506001979650505050505050565b600160a060020a031660009081526002602052604090205490565b600080806040604436101561143757600080fd5b61145261271061125e600354886115ad90919063ffffffff16565b92506004548311156114645760045492505b611474858463ffffffff61161a16565b600160a060020a0333166000908152600260205260409020549092506114a0908663ffffffff61161a16565b600160a060020a0333811660009081526002602052604080822093909355908816815220546114d5908363ffffffff61162c16565b600160a060020a03871660009081526002602052604081209190915583111561156c5760008054600160a060020a0316815260026020526040902054611521908463ffffffff61162c16565b60008054600160a060020a03908116825260026020526040808320939093559054811691339091169060008051602061163c8339815191529086905190815260200160405180910390a35b85600160a060020a031633600160a060020a031660008051602061163c8339815191528460405190815260200160405180910390a350600195945050505050565b6000808315156115c0576000915061076b565b508282028284828115156115d057fe5b041461097c57fe5b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b600080828481151561161157fe5b04949350505050565b60008282111561162657fe5b50900390565b60008282018381101561097c57fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820f32ddf2b2748b5fa1f72f06562e0333cd9671c326db05cb4106ab301682b7f4c0029000000000000000000000000000000000000000000000000000aa87bee538000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000d4879647261204e6574776f726b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054859445241000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60606040526004361061017c5763ffffffff60e060020a60003504166306fdde0381146101815780630753c30c1461020b578063095ea7b31461022c5780630e136b19146102625780630ecb93c01461027557806318160ddd1461029457806323b872dd146102b957806326976e3f146102e157806327e235e314610310578063313ce5671461032f57806335390714146103425780633eaaf86b146103555780633f4ba83a1461036857806359bf1abe1461037b5780635c6581651461039a5780635c975abb146103bf57806370a08231146103d25780638456cb59146103f1578063893d20e8146104045780638da5cb5b1461041757806395d89b411461042a578063a9059cbb1461043d578063c0324c771461045f578063cc872b6614610478578063db006a751461048e578063dd62ed3e146104a4578063dd644f72146104c9578063e47d6060146104dc578063e4997dc5146104fb578063e5b5019a1461051a578063f2fde38b1461052d578063f3bdc2281461054c575b600080fd5b341561018c57600080fd5b61019461056b565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101d05780820151838201526020016101b8565b50505050905090810190601f1680156101fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561021657600080fd5b61022a600160a060020a0360043516610609565b005b341561023757600080fd5b61024e600160a060020a03600435166024356106ac565b604051901515815260200160405180910390f35b341561026d57600080fd5b61024e610772565b341561028057600080fd5b61022a600160a060020a0360043516610782565b341561029f57600080fd5b6102a7610802565b60405190815260200160405180910390f35b34156102c457600080fd5b61024e600160a060020a0360043581169060243516604435610889565b34156102ec57600080fd5b6102f4610983565b604051600160a060020a03909116815260200160405180910390f35b341561031b57600080fd5b6102a7600160a060020a0360043516610992565b341561033a57600080fd5b6102a76109a4565b341561034d57600080fd5b6102a76109aa565b341561036057600080fd5b6102a76109b0565b341561037357600080fd5b61022a6109b6565b341561038657600080fd5b61024e600160a060020a0360043516610a35565b34156103a557600080fd5b6102a7600160a060020a0360043581169060243516610a57565b34156103ca57600080fd5b61024e610a74565b34156103dd57600080fd5b6102a7600160a060020a0360043516610a84565b34156103fc57600080fd5b61022a610b24565b341561040f57600080fd5b6102f4610ba8565b341561042257600080fd5b6102f4610bb7565b341561043557600080fd5b610194610bc6565b341561044857600080fd5b61024e600160a060020a0360043516602435610c31565b341561046a57600080fd5b61022a600435602435610d22565b341561048357600080fd5b61022a600435610db8565b341561049957600080fd5b61022a600435610e67565b34156104af57600080fd5b6102a7600160a060020a0360043581169060243516610f18565b34156104d457600080fd5b6102a7610f98565b34156104e757600080fd5b61024e600160a060020a0360043516610f9e565b341561050657600080fd5b61022a600160a060020a0360043516610fb3565b341561052557600080fd5b6102a7611030565b341561053857600080fd5b61022a600160a060020a0360043516611036565b341561055757600080fd5b61022a600160a060020a036004351661108c565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106015780601f106105d657610100808354040283529160200191610601565b820191906000526020600020905b8154815290600101906020018083116105e457829003601f168201915b505050505081565b60005433600160a060020a0390811691161461062457600080fd5b600a805460a060020a74ff0000000000000000000000000000000000000000199091161773ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790557fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e81604051600160a060020a03909116815260200160405180910390a150565b6000604060443610156106be57600080fd5b600a5460a060020a900460ff161561075e57600a54600160a060020a031663aee92d3333868660006040516020015260405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401602060405180830381600087803b151561073c57600080fd5b6102c65a03f1151561074d57600080fd5b50505060405180519050915061076b565b610768848461114a565b91505b5092915050565b600a5460a060020a900460ff1681565b60005433600160a060020a0390811691161461079d57600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191660011790557f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc90829051600160a060020a03909116815260200160405180910390a150565b600a5460009060a060020a900460ff161561088157600a54600160a060020a03166318160ddd6000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b151561085f57600080fd5b6102c65a03f1151561087057600080fd5b505050604051805190509050610886565b506001545b90565b6000805460a060020a900460ff16156108a157600080fd5b600160a060020a03841660009081526006602052604090205460ff16156108c757600080fd5b600a5460a060020a900460ff161561096e57600a54600160a060020a0316638b477adb3386868660006040516020015260405160e060020a63ffffffff8716028152600160a060020a0394851660048201529284166024840152921660448201526064810191909152608401602060405180830381600087803b151561094c57600080fd5b6102c65a03f1151561095d57600080fd5b50505060405180519050905061097c565b610979848484611203565b90505b9392505050565b600a54600160a060020a031681565b60026020526000908152604090205481565b60095481565b60045481565b60015481565b60005433600160a060020a039081169116146109d157600080fd5b60005460a060020a900460ff1615156109e957600080fd5b6000805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b600160a060020a03811660009081526006602052604090205460ff165b919050565b600560209081526000928352604080842090915290825290205481565b60005460a060020a900460ff1681565b600a5460009060a060020a900460ff1615610b1457600a54600160a060020a03166370a082318360006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610af257600080fd5b6102c65a03f11515610b0357600080fd5b505050604051805190509050610a52565b610b1d82611408565b9050610a52565b60005433600160a060020a03908116911614610b3f57600080fd5b60005460a060020a900460ff1615610b5657600080fd5b6000805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600054600160a060020a031690565b600054600160a060020a031681565b60088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106015780601f106105d657610100808354040283529160200191610601565b6000805460a060020a900460ff1615610c4957600080fd5b600160a060020a03331660009081526006602052604090205460ff1615610c6f57600080fd5b600a5460a060020a900460ff1615610d0f57600a54600160a060020a0316636e18980a33858560006040516020015260405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401602060405180830381600087803b1515610ced57600080fd5b6102c65a03f11515610cfe57600080fd5b505050604051805190509050610d1c565b610d198383611423565b90505b92915050565b60005433600160a060020a03908116911614610d3d57600080fd5b60148210610d4a57600080fd5b60328110610d5757600080fd5b6003829055600954610d73908290600a0a63ffffffff6115ad16565b60048190556003547fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e9160405191825260208201526040908101905180910390a15050565b60005433600160a060020a03908116911614610dd357600080fd5b60015481810111610de357600080fd5b60008054600160a060020a031681526002602052604090205481810111610e0957600080fd5b60008054600160a060020a03168152600260205260409081902080548301905560018054830190557fcb8241adb0c3fdb35b70c24ce35c5eb0c17af7431c99f827d44a445ca624176a9082905190815260200160405180910390a150565b60005433600160a060020a03908116911614610e8257600080fd5b60015481901015610e9257600080fd5b60008054600160a060020a031681526002602052604090205481901015610eb857600080fd5b60018054829003905560008054600160a060020a031681526002602052604090819020805483900390557f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449082905190815260200160405180910390a150565b600a5460009060a060020a900460ff1615610f8e57600a54600160a060020a031663dd62ed3e848460006040516020015260405160e060020a63ffffffff8516028152600160a060020a03928316600482015291166024820152604401602060405180830381600087803b1515610ced57600080fd5b610d1983836115d8565b60035481565b60066020526000908152604090205460ff1681565b60005433600160a060020a03908116911614610fce57600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191690557fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c90829051600160a060020a03909116815260200160405180910390a150565b60001981565b60005433600160a060020a0390811691161461105157600080fd5b600160a060020a03811615611089576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b6000805433600160a060020a039081169116146110a857600080fd5b600160a060020a03821660009081526006602052604090205460ff1615156110cf57600080fd5b6110d882610a84565b600160a060020a038316600090815260026020526040808220919091556001805483900390559091507f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c6908390839051600160a060020a03909216825260208201526040908101905180910390a15050565b60006040604436101561115c57600080fd5b821580159061118f5750600160a060020a0333811660009081526005602090815260408083209388168352929052205415155b1561119957600080fd5b600160a060020a03338116600081815260056020908152604080832094891680845294909152908190208690557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259086905190815260200160405180910390a35060019392505050565b60008080806060606436101561121857600080fd5b600160a060020a038089166000908152600560209081526040808320339094168352929052205460035490945061126a906127109061125e90899063ffffffff6115ad16565b9063ffffffff61160316565b925060045483111561127c5760045492505b6000198410156112be57611296848763ffffffff61161a16565b600160a060020a03808a16600090815260056020908152604080832033909416835292905220555b6112ce868463ffffffff61161a16565b600160a060020a0389166000908152600260205260409020549092506112fa908763ffffffff61161a16565b600160a060020a03808a16600090815260026020526040808220939093559089168152205461132f908363ffffffff61162c16565b600160a060020a0388166000908152600260205260408120919091558311156113c55760008054600160a060020a031681526002602052604090205461137b908463ffffffff61162c16565b60008054600160a060020a03908116825260026020526040808320939093559054811691908a169060008051602061163c8339815191529086905190815260200160405180910390a35b86600160a060020a031688600160a060020a031660008051602061163c8339815191528460405190815260200160405180910390a3506001979650505050505050565b600160a060020a031660009081526002602052604090205490565b600080806040604436101561143757600080fd5b61145261271061125e600354886115ad90919063ffffffff16565b92506004548311156114645760045492505b611474858463ffffffff61161a16565b600160a060020a0333166000908152600260205260409020549092506114a0908663ffffffff61161a16565b600160a060020a0333811660009081526002602052604080822093909355908816815220546114d5908363ffffffff61162c16565b600160a060020a03871660009081526002602052604081209190915583111561156c5760008054600160a060020a0316815260026020526040902054611521908463ffffffff61162c16565b60008054600160a060020a03908116825260026020526040808320939093559054811691339091169060008051602061163c8339815191529086905190815260200160405180910390a35b85600160a060020a031633600160a060020a031660008051602061163c8339815191528460405190815260200160405180910390a350600195945050505050565b6000808315156115c0576000915061076b565b508282028284828115156115d057fe5b041461097c57fe5b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b600080828481151561161157fe5b04949350505050565b60008282111561162657fe5b50900390565b60008282018381101561097c57fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820f32ddf2b2748b5fa1f72f06562e0333cd9671c326db05cb4106ab301682b7f4c0029

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

000000000000000000000000000000000000000000000000000aa87bee538000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000d4879647261204e6574776f726b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054859445241000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 3000000000000000
Arg [1] : _name (string): Hydra Network
Arg [2] : _symbol (string): HYDRA
Arg [3] : _decimals (uint256): 8

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000aa87bee538000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 4879647261204e6574776f726b00000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4859445241000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

10173:4960:0:-;;;;;;;;;-1:-1:-1;;;10173:4960:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10240:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;71:3;;;64:6;52:2;45:3;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13040:181:0;;;;;;;;;;-1:-1:-1;;;;;13040:181:0;;;;;;;12279:317;;;;;;;;;;-1:-1:-1;;;;;12279:317:0;;;;;;;;;;;;;;;;;;;;;;;;10356:22;;;;;;;;;;;;8869:145;;;;;;;;;;-1:-1:-1;;;;;8869:145:0;;;;;13287:218;;;;;;;;;;;;;;;;;;;;;;;;;;;11488:377;;;;;;;;;;-1:-1:-1;;;;;11488:377:0;;;;;;;;;;;;10319:30;;;;;;;;;;;;;;;-1:-1:-1;;;;;10319:30:0;;;;;;;;;;;;;;2996:40;;;;;;;;;;-1:-1:-1;;;;;2996:40:0;;;;;10292:20;;;;;;;;;;;;3162:26;;;;;;;;;;;;2053:24;;;;;;;;;;;;8316:90;;;;;;;;;;;;8583:124;;;;;;;;;;-1:-1:-1;;;;;8583:124:0;;;;;4823:61;;;;;;;;;;-1:-1:-1;;;;;4823:61:0;;;;;;;;;;7700:26;;;;;;;;;;;;11950:244;;;;;;;;;;-1:-1:-1;;;;;11950:244:0;;;;;8141:88;;;;;;;;;;;;8715:87;;;;;;;;;;;;1162:20;;;;;;;;;;;;10265;;;;;;;;;;;;11062:341;;;;;;;;;;-1:-1:-1;;;;;11062:341:0;;;;;;;14411:387;;;;;;;;;;;;;;;;13669:266;;;;;;;;;;;;;;14166:237;;;;;;;;;;;;;;12681:293;;;;;;;;;;-1:-1:-1;;;;;12681:293:0;;;;;;;;;;3124:31;;;;;;;;;;;;8810:46;;;;;;;;;;-1:-1:-1;;;;;8810:46:0;;;;;9022:160;;;;;;;;;;-1:-1:-1;;;;;9022:160:0;;;;;4893:42;;;;;;;;;;;;1734:151;;;;;;;;;;-1:-1:-1;;;;;1734:151:0;;;;;9190:324;;;;;;;;;;-1:-1:-1;;;;;9190:324:0;;;;;10240:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13040:181::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;13113:10;:17;;-1:-1:-1;;;;;13113:17:0;;;;-1:-1:-1;;13141:34:0;-1:-1:-1;;;;;13141:34:0;;;;;13186:27;13141:34;13186:27;;-1:-1:-1;;;;;13186:27:0;;;;;;;;;;;;;;13040:181;:::o;12279:317::-;12367:4;12350:6;3341:8;3323;:26;3321:29;3313:38;;;;;;12388:10;;-1:-1:-1;;;12388:10:0;;;;12384:205;;;12444:15;;-1:-1:-1;;;;;12444:15:0;12422:54;12477:10;12489:8;12499:6;12444:15;12422:84;;;;;;;-1:-1:-1;;;12422:84:0;;;;;;-1:-1:-1;;;;;12422:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12415:91;;;;12384:205;12546:31;12560:8;12570:6;12546:13;:31::i;:::-;12539:38;;12384:205;12279:317;;;;;:::o;10356:22::-;;;-1:-1:-1;;;10356:22:0;;;;;:::o;8869:145::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;-1:-1:-1;;;;;8939:24:0;;;;;;:13;:24;;;;;;;:31;;-1:-1:-1;;8939:31:0;8966:4;8939:31;;;8981:25;;8953:9;;8981:25;-1:-1:-1;;;;;8981:25:0;;;;;;;;;;;;;;8869:145;:::o;13287:218::-;13356:10;;13335:4;;-1:-1:-1;;;13356:10:0;;;;13352:146;;;13404:15;;-1:-1:-1;;;;;13404:15:0;13390:42;13404:15;13390:44;;;;;;;;;;-1:-1:-1;;;13390:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13383:51;;;;13352:146;-1:-1:-1;13474:12:0;;13352:146;13287:218;:::o;11488:377::-;11581:4;7876:6;;-1:-1:-1;;;7876:6:0;;;;7875:7;7867:16;;;;;;-1:-1:-1;;;;;11607:20:0;;;;;;:13;:20;;;;;;;;11606:21;11598:30;;;;;;11643:10;;-1:-1:-1;;;11643:10:0;;;;11639:219;;;11699:15;;-1:-1:-1;;;;;11699:15:0;11677:59;11737:10;11749:5;11756:3;11761:6;11699:15;11677:91;;;;;;;-1:-1:-1;;;11677:91:0;;;;;;-1:-1:-1;;;;;11677:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11670:98;;;;11639:219;11808:38;11827:5;11834:3;11839:6;11808:18;:38::i;:::-;11801:45;;11639:219;11488:377;;;;;:::o;10319:30::-;;;-1:-1:-1;;;;;10319:30:0;;:::o;2996:40::-;;;;;;;;;;;;;:::o;10292:20::-;;;;:::o;3162:26::-;;;;:::o;2053:24::-;;;;:::o;8316:90::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;8036:6;;-1:-1:-1;;;8036:6:0;;;;8028:15;;;;;;;;8379:5;8370:14;;-1:-1:-1;;8370:14:0;;;8391:9;;;;;;;;;;8316:90::o;8583:124::-;-1:-1:-1;;;;;8678:21:0;;8654:4;8678:21;;;:13;:21;;;;;;;;8583:124;;;;:::o;4823:61::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;7700:26::-;;;-1:-1:-1;;;7700:26:0;;;;;:::o;11950:244::-;12028:10;;12007:4;;-1:-1:-1;;;12028:10:0;;;;12024:163;;;12084:15;;-1:-1:-1;;;;;12084:15:0;12062:48;12111:3;12084:15;12062:53;;;;;;;-1:-1:-1;;;12062:53:0;;;;;;-1:-1:-1;;;;;12062:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12055:60;;;;12024:163;12155:20;12171:3;12155:15;:20::i;:::-;12148:27;;;;8141:88;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;7876:6;;-1:-1:-1;;;7876:6:0;;;;7875:7;7867:16;;;;;;8196:6;:13;;-1:-1:-1;;8196:13:0;-1:-1:-1;;;8196:13:0;;;8216:7;;;;;;;;;;8141:88::o;8715:87::-;8762:7;8789:5;-1:-1:-1;;;;;8789:5:0;8715:87;:::o;1162:20::-;;;-1:-1:-1;;;;;1162:20:0;;:::o;10265:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11062:341;11136:4;7876:6;;-1:-1:-1;;;7876:6:0;;;;7875:7;7867:16;;;;;;-1:-1:-1;;;;;11176:10:0;11162:25;;;;;:13;:25;;;;;;;;11161:26;11153:35;;;;;;11203:10;;-1:-1:-1;;;11203:10:0;;;;11199:197;;;11259:15;;-1:-1:-1;;;;;11259:15:0;11237:55;11293:10;11305:3;11310:6;11259:15;11237:80;;;;;;;-1:-1:-1;;;11237:80:0;;;;;;-1:-1:-1;;;;;11237:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11230:87;;;;11199:197;11357:27;11372:3;11377:6;11357:14;:27::i;:::-;11350:34;;11199:197;11062:341;;;;:::o;14411:387::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;14609:2;14592:19;;14584:28;;;;;;14643:2;14631:14;;14623:23;;;;;;14659:15;:32;;;14733:8;;14715:27;;:9;;14729:2;:12;14715:27;:13;:27;:::i;:::-;14702:10;:40;;;14762:15;;14755:35;;;;;;;;;;;;;;;;;;;;;;14411:387;;:::o;13669:266::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;13757:12;;13733:21;;;:36;13725:45;;;;;;13816:15;13825:5;;-1:-1:-1;;;;;13825:5:0;13816:15;;:8;:15;;;;;;13789:24;;;:42;13781:51;;;;;;13845:15;13854:5;;-1:-1:-1;;;;;13854:5:0;13845:15;;:8;:15;;;;;;;:25;;;;;;13854:5;13881:22;;;;;;13914:13;;13864:6;;13914:13;;;;;;;;;;;;;13669:266;:::o;14166:237::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;14231:12;;:22;;;;14223:31;;;;;;14273:15;14282:5;;-1:-1:-1;;;;;14282:5:0;14273:15;;:8;:15;;;;;;:25;;;;14265:34;;;;;;14312:12;:22;;;;;;;:12;14354:5;;-1:-1:-1;;;;;14354:5:0;14345:15;;:8;:15;;;;;;;:25;;;;;;;14381:14;;14328:6;;14381:14;;;;;;;;;;;;;14166:237;:::o;12681:293::-;12790:10;;12759:14;;-1:-1:-1;;;12790:10:0;;;;12786:181;;;12838:15;;-1:-1:-1;;;;;12838:15:0;12824:40;12865:6;12873:8;12838:15;12824:58;;;;;;;-1:-1:-1;;;12824:58:0;;;;;;-1:-1:-1;;;;;12824:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12786:181;12922:33;12938:6;12946:8;12922:15;:33::i;3124:31::-;;;;:::o;8810:46::-;;;;;;;;;;;;;;;:::o;9022:160::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;-1:-1:-1;;;;;9098:27:0;;9128:5;9098:27;;;:13;:27;;;;;;;:35;;-1:-1:-1;;9098:35:0;;;9144:30;;9112:12;;9144:30;-1:-1:-1;;;;;9144:30:0;;;;;;;;;;;;;;9022:160;:::o;4893:42::-;-1:-1:-1;;4893:42:0;:::o;1734:151::-;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;-1:-1:-1;;;;;1811:22:0;;;1807:71;;1850:5;:16;;-1:-1:-1;;1850:16:0;-1:-1:-1;;;;;1850:16:0;;;;;1807:71;1734:151;:::o;9190:324::-;9323:15;1534:5;;1520:10;-1:-1:-1;;;;;1520:19:0;;;1534:5;;1520:19;1512:28;;;;;;-1:-1:-1;;;;;9280:31:0;;;;;;:13;:31;;;;;;;;9272:40;;;;;;;;9341:27;9351:16;9341:9;:27::i;:::-;-1:-1:-1;;;;;9379:26:0;;9408:1;9379:26;;;:8;:26;;;;;;:30;;;;9420:12;:26;;;;;;;9323:45;;-1:-1:-1;9457:49:0;;9388:16;;9323:45;;9457:49;-1:-1:-1;;;;;9457:49:0;;;;;;;;;;;;;;;;;;;;9190:324;;:::o;6410:610::-;6498:4;6481:6;3341:8;3323;:26;3321:29;3313:38;;;;;;6836:11;;;;;6835:53;;-1:-1:-1;;;;;;6861:10:0;6853:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;:34;;6835:53;6833:56;6825:65;;;;;;-1:-1:-1;;;;;6911:10:0;6903:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;;:38;;;6952;;6935:6;;6952:38;;;;;;;;;;;;;-1:-1:-1;7008:4:0;;6410:610;-1:-1:-1;;;6410:610:0:o;5225:938::-;5328:4;;;;5311:6;3341:8;3323;:26;3321:29;3313:38;;;;;;-1:-1:-1;;;;;5362:14:0;;;;;;;:7;:14;;;;;;;;5377:10;5362:26;;;;;;;;;;5582:15;;5362:26;;-1:-1:-1;5570:40:0;;5604:5;;5571:27;;:6;;:27;:10;:27;:::i;:::-;5570:33;:40;:33;:40;:::i;:::-;5559:51;;5631:10;;5625:3;:16;5621:65;;;5664:10;;5658:16;;5621:65;-1:-1:-1;;5700:10:0;:21;5696:105;;;5767:22;:10;5782:6;5767:22;:14;:22;:::i;:::-;-1:-1:-1;;;;;5738:14:0;;;;;;;:7;:14;;;;;;;;5753:10;5738:26;;;;;;;;;:51;5696:105;5829:15;:6;5840:3;5829:15;:10;:15;:::i;:::-;-1:-1:-1;;;;;5873:15:0;;;;;;:8;:15;;;;;;5811:33;;-1:-1:-1;5873:27:0;;5893:6;5873:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;5855:15:0;;;;;;;:8;:15;;;;;;:45;;;;5927:13;;;;;;;:29;;5945:10;5927:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;5911:13:0;;;;;;:8;:13;;;;;:45;;;;5971:7;;5967:124;;;6013:15;6022:5;;-1:-1:-1;;;;;6022:5:0;6013:15;;:8;:15;;;;;;:24;;6033:3;6013:24;:19;:24;:::i;:::-;5995:15;6004:5;;-1:-1:-1;;;;;6004:5:0;;;5995:15;;:8;:15;;;;;;:42;;;;6068:5;;;;;6052:27;;;;-1:-1:-1;;;;;;;;;;;6052:27:0;6075:3;;6052:27;;;;;;;;;;;;;5967:124;6117:3;-1:-1:-1;;;;;6101:32:0;6110:5;-1:-1:-1;;;;;6101:32:0;-1:-1:-1;;;;;;;;;;;6122:10:0;6101:32;;;;;;;;;;;;;;-1:-1:-1;6151:4:0;;5225:938;-1:-1:-1;;;;;;;5225:938:0:o;4372:116::-;-1:-1:-1;;;;;4464:16:0;4432:12;4464:16;;;:8;:16;;;;;;;4372:116::o;3544:610::-;3628:4;;;3611:6;3341:8;3323;:26;3321:29;3313:38;;;;;;3656:40;3690:5;3657:27;3668:15;;3657:6;:10;;:27;;;;:::i;3656:40::-;3645:51;;3717:10;;3711:3;:16;3707:65;;;3750:10;;3744:16;;3707:65;3800:15;:6;3811:3;3800:15;:10;:15;:::i;:::-;-1:-1:-1;;;;;3858:10:0;3849:20;;;;;:8;:20;;;;;;3782:33;;-1:-1:-1;3849:32:0;;3874:6;3849:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;3835:10:0;3826:20;;;;;;:8;:20;;;;;;:55;;;;3908:13;;;;;;;:29;;3926:10;3908:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;3892:13:0;;;;;;:8;:13;;;;;:45;;;;3952:7;;3948:129;;;3994:15;4003:5;;-1:-1:-1;;;;;4003:5:0;3994:15;;:8;:15;;;;;;:24;;4014:3;3994:24;:19;:24;:::i;:::-;3976:15;3985:5;;-1:-1:-1;;;;;3985:5:0;;;3976:15;;:8;:15;;;;;;:42;;;;4054:5;;;;;4042:10;4033:32;;;;-1:-1:-1;;;;;;;;;;;4033:32:0;4061:3;;4033:32;;;;;;;;;;;;;3948:129;4108:3;-1:-1:-1;;;;;4087:37:0;4096:10;-1:-1:-1;;;;;4087:37:0;-1:-1:-1;;;;;;;;;;;4113:10:0;4087:37;;;;;;;;;;;;;;-1:-1:-1;4142:4:0;;3544:610;-1:-1:-1;;;;;3544:610:0:o;146:208::-;204:7;;228:6;;224:47;;;258:1;251:8;;;;224:47;-1:-1:-1;293:5:0;;;297:1;293;:5;316;;;;;;;;:10;309:18;;;7353:145;-1:-1:-1;;;;;7465:15:0;;;7431:14;7465:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7353:145::o;362:288::-;420:7;519:9;535:1;531;:5;;;;;;;;;362:288;-1:-1:-1;;;;362:288:0:o;658:123::-;716:7;743:6;;;;736:14;;;;-1:-1:-1;768:5:0;;;658:123::o;789:147::-;847:7;879:5;;;902:6;;;;895:14;;

Swarm Source

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