ETH Price: $3,488.79 (+2.04%)
Gas: 13 Gwei

Token

ef_lever_token (EF_LEV)
 

Overview

Max Total Supply

717.086854522279318541 EF_LEV

Holders

6

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
SmithBot : Executor
Balance
5.677763572287784213 EF_LEV

Value
$0.00
0x000000000000df8c944e775bde7af50300999283
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xE6e0Ab5e...5072d7596
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
ERC20Token

Compiler Version
v0.5.10+commit.5a6ea5b1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-24
*/

// File: contracts/utils/AddressArray.sol

pragma solidity >=0.4.21 <0.6.0;

library AddressArray{
  function exists(address[] memory self, address addr) public pure returns(bool){
    for (uint i = 0; i< self.length;i++){
      if (self[i]==addr){
        return true;
      }
    }
    return false;
  }

  function index_of(address[] memory self, address addr) public pure returns(uint){
    for (uint i = 0; i< self.length;i++){
      if (self[i]==addr){
        return i;
      }
    }
    require(false, "AddressArray:index_of, not exist");
  }

  function remove(address[] storage self, address addr) public returns(bool){
    uint index = index_of(self, addr);
    self[index] = self[self.length - 1];

    delete self[self.length-1];
    self.length--;
    return true;
  }
}

// File: contracts/erc20/ERC20Impl.sol

pragma solidity >=0.4.21 <0.6.0;


contract ApproveAndCallFallBack {
    function receiveApproval(
        address from,
        uint256 _amount,
        address _token,
        bytes memory _data
    ) public;
}
contract TransferEventCallBack{
  function onTransfer(address _from, address _to, uint256 _amount) public;
}

contract ERC20Base {
    string public name;                //The Token's name: e.g. GTToken
    uint8 public decimals;             //Number of decimals of the smallest unit
    string public symbol;              //An identifier: e.g. REP
    string public version = "AET_0.1"; //An arbitrary versioning scheme

    using AddressArray for address[];
    address[] public transferListeners;

////////////////
// Events
////////////////
    event Transfer(address indexed _from, address indexed _to, uint256 _amount);
    event Approval(
        address indexed _owner,
        address indexed _spender,
        uint256 _amount
        );

    event NewTransferListener(address _addr);
    event RemoveTransferListener(address _addr);

    /// @dev `Checkpoint` is the structure that attaches a block number to a
    ///  given value, the block number attached is the one that last changed the
    ///  value
    struct Checkpoint {
        // `fromBlock` is the block number that the value was generated from
        uint128 fromBlock;
        // `value` is the amount of tokens at a specific block number
        uint128 value;
    }

    // `parentToken` is the Token address that was cloned to produce this token;
    //  it will be 0x0 for a token that was not cloned
    ERC20Base public parentToken;

    // `parentSnapShotBlock` is the block number from the Parent Token that was
    //  used to determine the initial distribution of the Clone Token
    uint public parentSnapShotBlock;

    // `creationBlock` is the block number that the Clone Token was created
    uint public creationBlock;

    // `balances` is the map that tracks the balance of each address, in this
    //  contract when the balance changes the block number that the change
    //  occurred is also included in the map
    mapping (address => Checkpoint[]) public balances;

    // `allowed` tracks any extra transfer rights as in all ERC20 tokens
    mapping (address => mapping (address => uint256)) allowed;

    // Tracks the history of the `totalSupply` of the token
    Checkpoint[] public totalSupplyHistory;

    // Flag that determines if the token is transferable or not.
    bool public transfersEnabled;

////////////////
// Constructor
////////////////

    /// @notice Constructor to create a ERC20Base
    /// @param _parentToken Address of the parent token, set to 0x0 if it is a
    ///  new token
    /// @param _parentSnapShotBlock Block of the parent token that will
    ///  determine the initial distribution of the clone token, set to 0 if it
    ///  is a new token
    /// @param _tokenName Name of the new token
    /// @param _decimalUnits Number of decimals of the new token
    /// @param _tokenSymbol Token Symbol for the new token
    /// @param _transfersEnabled If true, tokens will be able to be transferred
    constructor(
        ERC20Base _parentToken,
        uint _parentSnapShotBlock,
        string memory _tokenName,
        uint8 _decimalUnits,
        string memory _tokenSymbol,
        bool _transfersEnabled
    )  public
    {
        name = _tokenName;                                 // Set the name
        decimals = _decimalUnits;                          // Set the decimals
        symbol = _tokenSymbol;                             // Set the symbol
        parentToken = _parentToken;
        parentSnapShotBlock = _parentSnapShotBlock;
        transfersEnabled = _transfersEnabled;
        creationBlock = block.number;
    }


///////////////////
// ERC20 Methods
///////////////////

    /// @notice Send `_amount` tokens to `_to` from `msg.sender`
    /// @param _to The address of the recipient
    /// @param _amount The amount of tokens to be transferred
    /// @return Whether the transfer was successful or not
    function transfer(address _to, uint256 _amount) public returns (bool success) {
        require(transfersEnabled);
        return doTransfer(msg.sender, _to, _amount);
    }

    /// @notice Send `_amount` tokens to `_to` from `_from` on the condition it
    ///  is approved by `_from`
    /// @param _from The address holding the tokens being transferred
    /// @param _to The address of the recipient
    /// @param _amount The amount of tokens to be transferred
    /// @return True if the transfer was successful
    function transferFrom(address _from, address _to, uint256 _amount) public returns (bool success) {
        require(transfersEnabled);

        // The standard ERC 20 transferFrom functionality
        if (allowed[_from][msg.sender] < _amount)
            return false;
        allowed[_from][msg.sender] -= _amount;
        return doTransfer(_from, _to, _amount);
    }

    /// @dev This is the actual transfer function in the token contract, it can
    ///  only be called by other functions in this contract.
    /// @param _from The address holding the tokens being transferred
    /// @param _to The address of the recipient
    /// @param _amount The amount of tokens to be transferred
    /// @return True if the transfer was successful
    function doTransfer(address _from, address _to, uint _amount) internal returns(bool) {
        if (_amount == 0) {
            return true;
        }
        require(parentSnapShotBlock < block.number);
        // Do not allow transfer to 0x0 or the token contract itself
        require((_to != address(0)) && (_to != address(this)));
        // If the amount being transfered is more than the balance of the
        //  account the transfer returns false
        uint256 previousBalanceFrom = balanceOfAt(_from, block.number);
        if (previousBalanceFrom < _amount) {
            return false;
        }
        // First update the balance array with the new value for the address
        //  sending the tokens
        updateValueAtNow(balances[_from], previousBalanceFrom - _amount);
        // Then update the balance array with the new value for the address
        //  receiving the tokens
        uint256 previousBalanceTo = balanceOfAt(_to, block.number);
        require(previousBalanceTo + _amount >= previousBalanceTo); // Check for overflow
        updateValueAtNow(balances[_to], previousBalanceTo + _amount);
        // An event to make the transfer easy to find on the blockchain
        emit Transfer(_from, _to, _amount);
        return true;
    }

    /// @param _owner The address that's balance is being requested
    /// @return The balance of `_owner` at the current block
    function balanceOf(address _owner) public view returns (uint256 balance) {
        return balanceOfAt(_owner, block.number);
    }

    /// @notice `msg.sender` approves `_spender` to spend `_amount` tokens on
    ///  its behalf. This is a modified version of the ERC20 approve function
    ///  to be a little bit safer
    /// @param _spender The address of the account able to transfer the tokens
    /// @param _amount The amount of tokens to be approved for transfer
    /// @return True if the approval was successful
    function approve(address _spender, uint256 _amount) public returns (bool success) {
        require(transfersEnabled);

        // 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((_amount == 0) || (allowed[msg.sender][_spender] == 0));

        allowed[msg.sender][_spender] = _amount;
        emit Approval(msg.sender, _spender, _amount);
        return true;
    }

    /// @dev This function makes it easy to read the `allowed[]` map
    /// @param _owner The address of the account that owns the token
    /// @param _spender The address of the account able to transfer the tokens
    /// @return Amount of remaining tokens of _owner that _spender is allowed
    ///  to spend
    function allowance(address _owner, address _spender) public view returns (uint256 remaining) {
        return allowed[_owner][_spender];
    }

    /// @notice `msg.sender` approves `_spender` to send `_amount` tokens on
    ///  its behalf, and then a function is triggered in the contract that is
    ///  being approved, `_spender`. This allows users to use their tokens to
    ///  interact with contracts in one function call instead of two
    /// @param _spender The address of the contract able to transfer the tokens
    /// @param _amount The amount of tokens to be approved for transfer
    /// @return True if the function call was successful
    function approveAndCall(ApproveAndCallFallBack _spender, uint256 _amount, bytes memory _extraData) public returns (bool success) {
        require(approve(address(_spender), _amount));

        _spender.receiveApproval(
            msg.sender,
            _amount,
            address(this),
            _extraData
        );

        return true;
    }

    /// @dev This function makes it easy to get the total number of tokens
    /// @return The total number of tokens
    function totalSupply() public view returns (uint) {
        return totalSupplyAt(block.number);
    }


////////////////
// Query balance and totalSupply in History
////////////////

    /// @dev Queries the balance of `_owner` at a specific `_blockNumber`
    /// @param _owner The address from which the balance will be retrieved
    /// @param _blockNumber The block number when the balance is queried
    /// @return The balance at `_blockNumber`
    function balanceOfAt(address _owner, uint _blockNumber) public view returns (uint) {

        // These next few lines are used when the balance of the token is
        //  requested before a check point was ever created for this token, it
        //  requires that the `parentToken.balanceOfAt` be queried at the
        //  genesis block for that token as this contains initial balance of
        //  this token
        if ((balances[_owner].length == 0) || (balances[_owner][0].fromBlock > _blockNumber)) {
            if (address(parentToken) != address(0)) {
                return parentToken.balanceOfAt(_owner, min(_blockNumber, parentSnapShotBlock));
            } else {
                // Has no parent
                return 0;
            }

        // This will return the expected balance during normal situations
        } else {
            return getValueAt(balances[_owner], _blockNumber);
        }
    }

    /// @notice Total amount of tokens at a specific `_blockNumber`.
    /// @param _blockNumber The block number when the totalSupply is queried
    /// @return The total amount of tokens at `_blockNumber`
    function totalSupplyAt(uint _blockNumber) public view returns(uint) {

        // These next few lines are used when the totalSupply of the token is
        //  requested before a check point was ever created for this token, it
        //  requires that the `parentToken.totalSupplyAt` be queried at the
        //  genesis block for this token as that contains totalSupply of this
        //  token at this block number.
        if ((totalSupplyHistory.length == 0) || (totalSupplyHistory[0].fromBlock > _blockNumber)) {
            if (address(parentToken) != address(0)) {
                return parentToken.totalSupplyAt(min(_blockNumber, parentSnapShotBlock));
            } else {
                return 0;
            }

        // This will return the expected totalSupply during normal situations
        } else {
            return getValueAt(totalSupplyHistory, _blockNumber);
        }
    }

////////////////
// Generate and destroy tokens
////////////////

    /// @notice Generates `_amount` tokens that are assigned to `_owner`
    /// @param _owner The address that will be assigned the new tokens
    /// @param _amount The quantity of tokens generated
    /// @return True if the tokens are generated correctly
    function _generateTokens(address _owner, uint _amount) internal returns (bool) {
        uint curTotalSupply = totalSupply();
        require(curTotalSupply + _amount >= curTotalSupply); // Check for overflow
        uint previousBalanceTo = balanceOf(_owner);
        require(previousBalanceTo + _amount >= previousBalanceTo); // Check for overflow
        updateValueAtNow(totalSupplyHistory, curTotalSupply + _amount);
        updateValueAtNow(balances[_owner], previousBalanceTo + _amount);
        emit Transfer(address(0), _owner, _amount);
        return true;
    }


    /// @notice Burns `_amount` tokens from `_owner`
    /// @param _owner The address that will lose the tokens
    /// @param _amount The quantity of tokens to burn
    /// @return True if the tokens are burned correctly
    function _destroyTokens(address _owner, uint _amount) internal returns (bool) {
        uint curTotalSupply = totalSupply();
        require(curTotalSupply >= _amount);
        uint previousBalanceFrom = balanceOf(_owner);
        require(previousBalanceFrom >= _amount);
        updateValueAtNow(totalSupplyHistory, curTotalSupply - _amount);
        updateValueAtNow(balances[_owner], previousBalanceFrom - _amount);
        emit Transfer(_owner, address(0), _amount);
        return true;
    }

////////////////
// Enable tokens transfers
////////////////


    /// @notice Enables token holders to transfer their tokens freely if true
    /// @param _transfersEnabled True if transfers are allowed in the clone
    function _enableTransfers(bool _transfersEnabled) internal {
        transfersEnabled = _transfersEnabled;
    }

////////////////
// Internal helper functions to query and set a value in a snapshot array
////////////////

    /// @dev `getValueAt` retrieves the number of tokens at a given block number
    /// @param checkpoints The history of values being queried
    /// @param _block The block number to retrieve the value at
    /// @return The number of tokens being queried
    function getValueAt(Checkpoint[] storage checkpoints, uint _block) internal view returns (uint) {
        if (checkpoints.length == 0)
            return 0;

        // Shortcut for the actual value
        if (_block >= checkpoints[checkpoints.length-1].fromBlock)
            return checkpoints[checkpoints.length-1].value;
        if (_block < checkpoints[0].fromBlock)
            return 0;

        // Binary search of the value in the array
        uint min = 0;
        uint max = checkpoints.length-1;
        while (max > min) {
            uint mid = (max + min + 1) / 2;
            if (checkpoints[mid].fromBlock<=_block) {
                min = mid;
            } else {
                max = mid-1;
            }
        }
        return checkpoints[min].value;
    }function getCheckPointAt(Checkpoint[] storage checkpoints, uint _block) internal view returns (uint) {
        if (checkpoints.length == 0)
            return 0;

        // Shortcut for the actual value
        if (_block >= checkpoints[checkpoints.length-1].fromBlock)
            return checkpoints[checkpoints.length-1].value;
        if (_block < checkpoints[0].fromBlock)
            return 0;

        // Binary search of the value in the array
        uint min = 0;
        uint max = checkpoints.length-1;
        while (max > min) {
            uint mid = (max + min + 1) / 2;
            if (checkpoints[mid].fromBlock<=_block) {
                min = mid;
            } else {
                max = mid-1;
            }
        }
        return min;
    }

    /// @dev `updateValueAtNow` used to update the `balances` map and the
    ///  `totalSupplyHistory`
    /// @param checkpoints The history of data being updated
    /// @param _value The new number of tokens
    function updateValueAtNow(Checkpoint[] storage checkpoints, uint _value) internal {
        if ((checkpoints.length == 0) || (checkpoints[checkpoints.length - 1].fromBlock < block.number)) {
            Checkpoint storage newCheckPoint = checkpoints[checkpoints.length++];
            newCheckPoint.fromBlock = uint128(block.number);
            newCheckPoint.value = uint128(_value);
        } else {
            Checkpoint storage oldCheckPoint = checkpoints[checkpoints.length - 1];
            oldCheckPoint.value = uint128(_value);
        }
    }

    function onTransferDone(address _from, address _to, uint256 _amount) internal {
      for(uint i = 0; i < transferListeners.length; i++){
        TransferEventCallBack t = TransferEventCallBack(transferListeners[i]);
        t.onTransfer(_from, _to, _amount);
      }
    }

    function _addTransferListener(address _addr) internal {
      transferListeners.push(_addr);
      emit NewTransferListener(_addr);
    }
    function _removeTransferListener(address _addr) internal{
      transferListeners.remove(_addr);
      emit RemoveTransferListener(_addr);
    }

    /// @dev Helper function to return a min betwen the two uints
    function min(uint a, uint b) pure internal returns (uint) {
        return a < b ? a : b;
    }

    //function () external payable {
        //require(false, "cannot transfer ether to this contract");
    //}
}

// File: contracts/erc20/IERC20.sol

pragma solidity >=0.4.21 <0.6.0;

interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

interface ERC20Property{
  function name() external view returns (string memory);
  function symbol() external view returns (string memory);
  function decimals() external view returns (uint8);
}

// File: contracts/utils/TokenClaimer.sol

pragma solidity >=0.4.21 <0.6.0;


contract TokenClaimer{

    event ClaimedTokens(address indexed _token, address indexed _to, uint _amount);
    /// @notice This method can be used by the controller to extract mistakenly
    ///  sent tokens to this contract.
    /// @param _token The address of the token contract that you want to recover
    ///  set to 0 in case you want to extract ether.
  function _claimStdTokens(address _token, address payable to) internal {
        if (_token == address(0x0)) {
            (bool status, ) = to.call.value(address(this).balance)("");
            require(status, "TokenClaimer transfer eth failed");
            return;
        }
        uint balance = IERC20(_token).balanceOf(address(this));

        (bool status,) = _token.call(abi.encodeWithSignature("transfer(address,uint256)", to, balance));
        require(status, "call failed");
        emit ClaimedTokens(_token, to, balance);
  }
}

// File: contracts/utils/Ownable.sol

pragma solidity >=0.4.21 <0.6.0;

contract Ownable {
    address private _contract_owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = msg.sender;
        _contract_owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _contract_owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_contract_owner == msg.sender, "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_contract_owner, newOwner);
        _contract_owner = newOwner;
    }
}

// File: contracts/TrustListTools.sol

pragma solidity >=0.4.21 <0.6.0;


contract TrustListInterface{
  function is_trusted(address addr) public returns(bool);
}
contract TrustListTools is Ownable{
  TrustListInterface public trustlist;

  modifier is_trusted(address addr){
    require(trustlist != TrustListInterface(0x0), "trustlist is 0x0");
    require(trustlist.is_trusted(addr), "not a trusted issuer");
    _;
  }

  event ChangeTrustList(address _old, address _new);
  function changeTrustList(address _addr) public onlyOwner{
    address old = address(trustlist);
    trustlist = TrustListInterface(_addr);
    emit ChangeTrustList(old, _addr);
  }

}

// File: contracts/erc20/ERC20Token.sol

pragma solidity >=0.4.21 <0.6.0;





contract ERC20Token is ERC20Base, Ownable, TrustListTools, TokenClaimer{

  ERC20TokenFactory public tokenFactory;

  event NewCloneToken(address indexed _cloneToken, uint _snapshotBlock);

  constructor(
        ERC20TokenFactory _tokenFactory,
        ERC20Base _parentToken,
        uint _parentSnapShotBlock,
        string memory _tokenName,
        uint8 _decimalUnits,
        string memory _tokenSymbol,
        bool _transfersEnabled)
    ERC20Base(_parentToken,
    _parentSnapShotBlock,
    _tokenName,
    _decimalUnits,
    _tokenSymbol,
    _transfersEnabled) public{
      tokenFactory = _tokenFactory;
    }

    function claimStdTokens(address _token, address payable to) public onlyOwner{
      _claimStdTokens(_token, to);
    }

    function createCloneToken(
        string memory _cloneTokenName,
        uint8 _cloneDecimalUnits,
        string memory _cloneTokenSymbol,
        uint _snapshotBlock,
        bool _transfersEnabled
    )public returns(ERC20Token){

        uint256 snapshot = _snapshotBlock == 0 ? block.number - 1 : _snapshotBlock;
        ERC20Token cloneToken = tokenFactory.createCloneToken(this, snapshot,
            _cloneTokenName,
            _cloneDecimalUnits,
            _cloneTokenSymbol,
            _transfersEnabled
          );
        emit NewCloneToken(address(cloneToken), snapshot);
        cloneToken.transferOwnership(msg.sender);
        return cloneToken;
    }

    function addTransferListener(address _addr) public onlyOwner{
      _addTransferListener(_addr);
    }
    function removeTransferListener(address _addr) public onlyOwner{
      _removeTransferListener(_addr);
    }

    function generateTokens(address _owner, uint _amount)
    public
    is_trusted(msg.sender)
    returns (bool){
      return _generateTokens(_owner, _amount);
    }

    function destroyTokens(address _owner, uint _amount)
    public
    is_trusted(msg.sender)
    returns (bool){
      return _destroyTokens(_owner, _amount);
    }

    function enableTransfers(bool _transfersEnabled)
    public onlyOwner
    {
      _enableTransfers(_transfersEnabled);
    }
}

/// @dev This contract is used to generate clone contracts from a contract.
///  In solidity this is the way to create a contract from a contract of the
///  same class
contract ERC20TokenFactory {
  event NewToken(address indexed _cloneToken, uint _snapshotBlock);

    /// @notice Update the DApp by creating a new token with new functionalities
    ///  the msg.sender becomes the controller of this clone token
    /// @param _parentToken Address of the token being cloned
    /// @param _snapshotBlock Block of the parent token that will
    ///  determine the initial distribution of the clone token
    /// @param _tokenName Name of the new token
    /// @param _decimalUnits Number of decimals of the new token
    /// @param _tokenSymbol Token Symbol for the new token
    /// @param _transfersEnabled If true, tokens will be able to be transferred
    /// @return The address of the new token contract
    function createCloneToken(
        ERC20Token _parentToken,
        uint _snapshotBlock,
        string memory _tokenName,
        uint8 _decimalUnits,
        string memory _tokenSymbol,
        bool _transfersEnabled
    ) public returns (ERC20Token)
    {
        ERC20Token newToken = new ERC20Token(
            this,
            _parentToken,
            _snapshotBlock,
            _tokenName,
            _decimalUnits,
            _tokenSymbol,
            _transfersEnabled
        );
        emit NewToken(address(newToken), _snapshotBlock);

        newToken.transferOwnership(msg.sender);

        return newToken;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"},{"name":"to","type":"address"}],"name":"claimStdTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"creationBlock","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":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_blockNumber","type":"uint256"}],"name":"balanceOfAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_cloneTokenName","type":"string"},{"name":"_cloneDecimalUnits","type":"uint8"},{"name":"_cloneTokenSymbol","type":"string"},{"name":"_snapshotBlock","type":"uint256"},{"name":"_transfersEnabled","type":"bool"}],"name":"createCloneToken","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"totalSupplyHistory","outputs":[{"name":"fromBlock","type":"uint128"},{"name":"value","type":"uint128"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"transferListeners","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"changeTrustList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"parentToken","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"generateTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[{"name":"_blockNumber","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"removeTransferListener","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"trustlist","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"parentSnapShotBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"balances","outputs":[{"name":"fromBlock","type":"uint128"},{"name":"value","type":"uint128"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"destroyTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"addTransferListener","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":"tokenFactory","outputs":[{"name":"","type":"address"}],"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":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_tokenFactory","type":"address"},{"name":"_parentToken","type":"address"},{"name":"_parentSnapShotBlock","type":"uint256"},{"name":"_tokenName","type":"string"},{"name":"_decimalUnits","type":"uint8"},{"name":"_tokenSymbol","type":"string"},{"name":"_transfersEnabled","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_cloneToken","type":"address"},{"indexed":false,"name":"_snapshotBlock","type":"uint256"}],"name":"NewCloneToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_old","type":"address"},{"indexed":false,"name":"_new","type":"address"}],"name":"ChangeTrustList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_addr","type":"address"}],"name":"NewTransferListener","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_addr","type":"address"}],"name":"RemoveTransferListener","type":"event"}]

60c0604052600760808190527f4145545f302e310000000000000000000000000000000000000000000000000060a09081526200004091600391906200022a565b503480156200004e57600080fd5b506040516200234038038062002340833981810160405260e08110156200007457600080fd5b8151602083015160408401516060850180519395929491939183019291640100000000811115620000a457600080fd5b82016020810184811115620000b857600080fd5b8151640100000000811182820187101715620000d357600080fd5b50506020820151604090920180519194929391640100000000811115620000f957600080fd5b820160208101848111156200010d57600080fd5b81516401000000008111828201871017156200012857600080fd5b5050602091820151865191945092508791879187918791879187916200015591600091908701906200022a565b506001805460ff191660ff851617905581516200017a9060029060208501906200022a565b50600580546001600160a01b0319166001600160a01b039790971696909617909555505050600655600b80544360075560ff191691151591909117610100600160a81b031916610100339081029190911790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35050600d80546001600160a01b0319166001600160a01b03979097169690961790955550620002cf9350505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200026d57805160ff19168380011785556200029d565b828001600101855582156200029d579182015b828111156200029d57825182559160200191906001019062000280565b50620002ab929150620002af565b5090565b620002cc91905b80821115620002ab5760008155600101620002b6565b90565b61206180620002df6000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80638da5cb5b1161010f578063cae9ca51116100a2578063dd62ed3e11610071578063dd62ed3e14610797578063e77772fe146107c5578063f2fde38b146107cd578063f41e60c5146107f3576101f0565b8063cae9ca511461065e578063cbf1304d14610719578063d3ce77fe14610745578063d9a1b5c414610771576101f0565b8063a21efbda116100de578063a21efbda1461061a578063a9059cbb14610622578063bef97c871461064e578063c5bcc4f114610656576101f0565b80638da5cb5b146105c757806395d89b41146105cf578063981b24d0146105d75780639cfba85a146105f4576101f0565b806354fd4d501161018757806370a082311161015657806370a082311461054757806373cb542f1461056d57806380a5400114610593578063827f32c01461059b576101f0565b806354fd4d50146103845780636638c0871461038c5780636641d9a0146104e75780636aaa6a861461052a576101f0565b806318160ddd116101c357806318160ddd146102fc57806323b872dd14610304578063313ce5671461033a5780634ee2cd7e14610358576101f0565b806306fdde03146101f5578063095ea7b314610272578063128873dd146102b257806317634514146102e2575b600080fd5b6101fd610812565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561023757818101518382015260200161021f565b50505050905090810190601f1680156102645780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61029e6004803603604081101561028857600080fd5b506001600160a01b0381351690602001356108a0565b604080519115158252519081900360200190f35b6102e0600480360360408110156102c857600080fd5b506001600160a01b0381358116916020013516610951565b005b6102ea6109b1565b60408051918252519081900360200190f35b6102ea6109b7565b61029e6004803603606081101561031a57600080fd5b506001600160a01b038135811691602081013590911690604001356109c8565b610342610a4c565b6040805160ff9092168252519081900360200190f35b6102ea6004803603604081101561036e57600080fd5b506001600160a01b038135169060200135610a55565b6101fd610b9b565b6104cb600480360360a08110156103a257600080fd5b8101906020810181356401000000008111156103bd57600080fd5b8201836020820111156103cf57600080fd5b803590602001918460018302840111640100000000831117156103f157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929560ff85351695909490935060408101925060200135905064010000000081111561044f57600080fd5b82018360208201111561046157600080fd5b8035906020019184600183028401116401000000008311171561048357600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955050823593505050602001351515610bf6565b604080516001600160a01b039092168252519081900360200190f35b610504600480360360208110156104fd57600080fd5b5035610e46565b604080516001600160801b03938416815291909216602082015281519081900390910190f35b6104cb6004803603602081101561054057600080fd5b5035610e78565b6102ea6004803603602081101561055d57600080fd5b50356001600160a01b0316610e9f565b6102e06004803603602081101561058357600080fd5b50356001600160a01b0316610eb3565b6104cb610f68565b61029e600480360360408110156105b157600080fd5b506001600160a01b038135169060200135610f77565b6104cb6110a1565b6101fd6110b5565b6102ea600480360360208110156105ed57600080fd5b503561110d565b6102e06004803603602081101561060a57600080fd5b50356001600160a01b03166111fa565b6104cb611258565b61029e6004803603604081101561063857600080fd5b506001600160a01b038135169060200135611267565b61029e611284565b6102ea61128d565b61029e6004803603606081101561067457600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156106a457600080fd5b8201836020820111156106b657600080fd5b803590602001918460018302840111640100000000831117156106d857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611293945050505050565b6105046004803603604081101561072f57600080fd5b506001600160a01b038135169060200135611393565b61029e6004803603604081101561075b57600080fd5b506001600160a01b0381351690602001356113d3565b6102e06004803603602081101561078757600080fd5b50356001600160a01b03166114f5565b6102ea600480360360408110156107ad57600080fd5b506001600160a01b0381358116916020013516611550565b6104cb61157b565b6102e0600480360360208110156107e357600080fd5b50356001600160a01b031661158a565b6102e06004803603602081101561080957600080fd5b503515156115e5565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108985780601f1061086d57610100808354040283529160200191610898565b820191906000526020600020905b81548152906001019060200180831161087b57829003601f168201915b505050505081565b600b5460009060ff166108b257600080fd5b8115806108e057503360009081526009602090815260408083206001600160a01b0387168452909152902054155b6108e957600080fd5b3360008181526009602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600b5461010090046001600160a01b031633146109a3576040805162461bcd60e51b8152602060048201819052602482015260008051602061200d833981519152604482015290519081900360640190fd5b6109ad8282611640565b5050565b60075481565b60006109c24361110d565b90505b90565b600b5460009060ff166109da57600080fd5b6001600160a01b0384166000908152600960209081526040808320338452909152902054821115610a0d57506000610a45565b6001600160a01b0384166000908152600960209081526040808320338452909152902080548390039055610a428484846118ea565b90505b9392505050565b60015460ff1681565b6001600160a01b0382166000908152600860205260408120541580610aaf57506001600160a01b03831660009081526008602052604081208054849290610a9857fe5b6000918252602090912001546001600160801b0316115b15610b72576005546001600160a01b031615610b6a576005546006546001600160a01b0390911690634ee2cd7e908590610aea908690611a0d565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b031681526020018281526020019250505060206040518083038186803b158015610b3757600080fd5b505afa158015610b4b573d6000803e3d6000fd5b505050506040513d6020811015610b6157600080fd5b5051905061094b565b50600061094b565b6001600160a01b0383166000908152600860205260409020610b949083611a23565b905061094b565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108985780601f1061086d57610100808354040283529160200191610898565b6000808315610c055783610c0a565b600143035b90506000600d60009054906101000a90046001600160a01b03166001600160a01b0316635b7b72c130848b8b8b8a6040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001868152602001806020018560ff1660ff1681526020018060200184151515158152602001838103835287818151815260200191508051906020019080838360005b83811015610cbc578181015183820152602001610ca4565b50505050905090810190601f168015610ce95780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b83811015610d1c578181015183820152602001610d04565b50505050905090810190601f168015610d495780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015610d6e57600080fd5b505af1158015610d82573d6000803e3d6000fd5b505050506040513d6020811015610d9857600080fd5b50516040805184815290519192506001600160a01b038316917f086c875b377f900b07ce03575813022f05dd10ed7640b5282cf6d3c3fc352ade9181900360200190a26040805163f2fde38b60e01b815233600482015290516001600160a01b0383169163f2fde38b91602480830192600092919082900301818387803b158015610e2257600080fd5b505af1158015610e36573d6000803e3d6000fd5b50929a9950505050505050505050565b600a8181548110610e5357fe5b6000918252602090912001546001600160801b038082169250600160801b9091041682565b60048181548110610e8557fe5b6000918252602090912001546001600160a01b0316905081565b6000610eab8243610a55565b90505b919050565b600b5461010090046001600160a01b03163314610f05576040805162461bcd60e51b8152602060048201819052602482015260008051602061200d833981519152604482015290519081900360640190fd5b600c80546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517fe19afe89fcee2a079df148700e97f00ef22536af2f5d98861ab7186c6c271070929181900390910190a15050565b6005546001600160a01b031681565b600c5460009033906001600160a01b0316610fcc576040805162461bcd60e51b815260206004820152601060248201526f074727573746c697374206973203078360841b604482015290519081900360640190fd5b600c5460408051632153522560e11b81526001600160a01b038481166004830152915191909216916342a6a44a9160248083019260209291908290030181600087803b15801561101b57600080fd5b505af115801561102f573d6000803e3d6000fd5b505050506040513d602081101561104557600080fd5b505161108f576040805162461bcd60e51b81526020600482015260146024820152733737ba1030903a393ab9ba32b21034b9b9bab2b960611b604482015290519081900360640190fd5b6110998484611b53565b949350505050565b600b5461010090046001600160a01b031690565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156108985780601f1061086d57610100808354040283529160200191610898565b600a546000901580611140575081600a60008154811061112957fe5b6000918252602090912001546001600160801b0316115b156111e8576005546001600160a01b0316156111e0576005546006546001600160a01b039091169063981b24d090611179908590611a0d565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156111ad57600080fd5b505afa1580156111c1573d6000803e3d6000fd5b505050506040513d60208110156111d757600080fd5b50519050610eae565b506000610eae565b6111f3600a83611a23565b9050610eae565b600b5461010090046001600160a01b0316331461124c576040805162461bcd60e51b8152602060048201819052602482015260008051602061200d833981519152604482015290519081900360640190fd5b61125581611c08565b50565b600c546001600160a01b031681565b600b5460009060ff1661127957600080fd5b610a453384846118ea565b600b5460ff1681565b60065481565b600061129f84846108a0565b6112a857600080fd5b604051638f4ffcb160e01b815233600482018181526024830186905230604484018190526080606485019081528651608486015286516001600160a01b038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b8381101561132257818101518382015260200161130a565b50505050905090810190601f16801561134f5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561137157600080fd5b505af1158015611385573d6000803e3d6000fd5b506001979650505050505050565b600860205281600052604060002081815481106113ac57fe5b6000918252602090912001546001600160801b038082169350600160801b90910416905082565b600c5460009033906001600160a01b0316611428576040805162461bcd60e51b815260206004820152601060248201526f074727573746c697374206973203078360841b604482015290519081900360640190fd5b600c5460408051632153522560e11b81526001600160a01b038481166004830152915191909216916342a6a44a9160248083019260209291908290030181600087803b15801561147757600080fd5b505af115801561148b573d6000803e3d6000fd5b505050506040513d60208110156114a157600080fd5b50516114eb576040805162461bcd60e51b81526020600482015260146024820152733737ba1030903a393ab9ba32b21034b9b9bab2b960611b604482015290519081900360640190fd5b6110998484611cd3565b600b5461010090046001600160a01b03163314611547576040805162461bcd60e51b8152602060048201819052602482015260008051602061200d833981519152604482015290519081900360640190fd5b61125581611d84565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205490565b600d546001600160a01b031681565b600b5461010090046001600160a01b031633146115dc576040805162461bcd60e51b8152602060048201819052602482015260008051602061200d833981519152604482015290519081900360640190fd5b61125581611e08565b600b5461010090046001600160a01b03163314611637576040805162461bcd60e51b8152602060048201819052602482015260008051602061200d833981519152604482015290519081900360640190fd5b61125581611eb4565b6001600160a01b0382166116fb576040516000906001600160a01b038316903031908381818185875af1925050503d806000811461169a576040519150601f19603f3d011682016040523d82523d6000602084013e61169f565b606091505b50509050806116f5576040805162461bcd60e51b815260206004820181905260248201527f546f6b656e436c61696d6572207472616e7366657220657468206661696c6564604482015290519081900360640190fd5b506109ad565b604080516370a0823160e01b815230600482015290516000916001600160a01b038516916370a0823191602480820192602092909190829003018186803b15801561174557600080fd5b505afa158015611759573d6000803e3d6000fd5b505050506040513d602081101561176f57600080fd5b5051604080516001600160a01b038581166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b178152925182519495506000949188169390918291908083835b602083106117ee5780518252601f1990920191602091820191016117cf565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611850576040519150601f19603f3d011682016040523d82523d6000602084013e611855565b606091505b5050905080611899576040805162461bcd60e51b815260206004820152600b60248201526a18d85b1b0819985a5b195960aa1b604482015290519081900360640190fd5b826001600160a01b0316846001600160a01b03167ff931edb47c50b4b4104c187b5814a9aef5f709e17e2ecf9617e860cacade929c846040518082815260200191505060405180910390a350505050565b6000816118f957506001610a45565b436006541061190757600080fd5b6001600160a01b0383161580159061192857506001600160a01b0383163014155b61193157600080fd5b600061193d8543610a55565b905082811015611951576000915050610a45565b6001600160a01b038516600090815260086020526040902061197590848303611ec7565b60006119818543610a55565b905080848201101561199257600080fd5b6001600160a01b03851660009081526008602052604090206119b690828601611ec7565b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a350600195945050505050565b6000818310611a1c5781610a45565b5090919050565b8154600090611a345750600061094b565b825483906000198101908110611a4657fe5b6000918252602090912001546001600160801b03168210611a9657825483906000198101908110611a7357fe5b600091825260209091200154600160801b90046001600160801b0316905061094b565b82600081548110611aa357fe5b6000918252602090912001546001600160801b0316821015611ac75750600061094b565b8254600090600019015b81811115611b22576000600260018385010104905084868281548110611af357fe5b6000918252602090912001546001600160801b031611611b1557809250611b1c565b6001810391505b50611ad1565b848281548110611b2e57fe5b600091825260209091200154600160801b90046001600160801b031695945050505050565b600080611b5e6109b7565b9050808382011015611b6f57600080fd5b6000611b7a85610e9f565b9050808482011015611b8b57600080fd5b611b98600a858401611ec7565b6001600160a01b0385166000908152600860205260409020611bbc90828601611ec7565b6040805185815290516001600160a01b038716916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3506001949350505050565b6040805163edefe12d60e01b81526004818101526001600160a01b0383166024820152905173d942f306075a0f7bc375328db822fcc3103b32689163edefe12d916044808301926020929190829003018186803b158015611c6857600080fd5b505af4158015611c7c573d6000803e3d6000fd5b505050506040513d6020811015611c9257600080fd5b5050604080516001600160a01b038316815290517fd6c3db22a16cf1fea7bafab76301eff159ad29dc37339df6f33eb122cf0ffe369181900360200190a150565b600080611cde6109b7565b905082811015611ced57600080fd5b6000611cf885610e9f565b905083811015611d0757600080fd5b611d14600a858403611ec7565b6001600160a01b0385166000908152600860205260409020611d3890858303611ec7565b6040805185815290516000916001600160a01b038816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3506001949350505050565b600480546001810182556000919091527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0383166001600160a01b0319909116811790915560408051918252517fb39818ecfe00151406f56d9c97659598c71791d1dfd011e5778a4ce2294842f19181900360200190a150565b6001600160a01b038116611e4d5760405162461bcd60e51b8152600401808060200182810382526026815260200180611fe76026913960400191505060405180910390fd5b600b546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600b805460ff1916911515919091179055565b81541580611efb57508154439083906000198101908110611ee457fe5b6000918252602090912001546001600160801b0316105b15611f625781546000908390611f148260018301611f9f565b81548110611f1e57fe5b600091825260209091200180546001600160801b03848116600160801b024382166fffffffffffffffffffffffffffffffff199093169290921716179055506109ad565b815460009083906000198101908110611f7757fe5b600091825260209091200180546001600160801b03808516600160801b029116179055505050565b815481835581811115611fc357600083815260209020611fc3918101908301611fc8565b505050565b6109c591905b80821115611fe25760008155600101611fce565b509056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a265627a7a72305820d5d1dd46e5a27f31676226833807b23c768fba28d48ddb702a1de78aac4da25b64736f6c634300050a00320000000000000000000000007b6349f9d8c8899004e6a4bddca9393792d9f2a60000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000e65665f6c657665725f746f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000645465f4c45560000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101f05760003560e01c80638da5cb5b1161010f578063cae9ca51116100a2578063dd62ed3e11610071578063dd62ed3e14610797578063e77772fe146107c5578063f2fde38b146107cd578063f41e60c5146107f3576101f0565b8063cae9ca511461065e578063cbf1304d14610719578063d3ce77fe14610745578063d9a1b5c414610771576101f0565b8063a21efbda116100de578063a21efbda1461061a578063a9059cbb14610622578063bef97c871461064e578063c5bcc4f114610656576101f0565b80638da5cb5b146105c757806395d89b41146105cf578063981b24d0146105d75780639cfba85a146105f4576101f0565b806354fd4d501161018757806370a082311161015657806370a082311461054757806373cb542f1461056d57806380a5400114610593578063827f32c01461059b576101f0565b806354fd4d50146103845780636638c0871461038c5780636641d9a0146104e75780636aaa6a861461052a576101f0565b806318160ddd116101c357806318160ddd146102fc57806323b872dd14610304578063313ce5671461033a5780634ee2cd7e14610358576101f0565b806306fdde03146101f5578063095ea7b314610272578063128873dd146102b257806317634514146102e2575b600080fd5b6101fd610812565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561023757818101518382015260200161021f565b50505050905090810190601f1680156102645780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61029e6004803603604081101561028857600080fd5b506001600160a01b0381351690602001356108a0565b604080519115158252519081900360200190f35b6102e0600480360360408110156102c857600080fd5b506001600160a01b0381358116916020013516610951565b005b6102ea6109b1565b60408051918252519081900360200190f35b6102ea6109b7565b61029e6004803603606081101561031a57600080fd5b506001600160a01b038135811691602081013590911690604001356109c8565b610342610a4c565b6040805160ff9092168252519081900360200190f35b6102ea6004803603604081101561036e57600080fd5b506001600160a01b038135169060200135610a55565b6101fd610b9b565b6104cb600480360360a08110156103a257600080fd5b8101906020810181356401000000008111156103bd57600080fd5b8201836020820111156103cf57600080fd5b803590602001918460018302840111640100000000831117156103f157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929560ff85351695909490935060408101925060200135905064010000000081111561044f57600080fd5b82018360208201111561046157600080fd5b8035906020019184600183028401116401000000008311171561048357600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092955050823593505050602001351515610bf6565b604080516001600160a01b039092168252519081900360200190f35b610504600480360360208110156104fd57600080fd5b5035610e46565b604080516001600160801b03938416815291909216602082015281519081900390910190f35b6104cb6004803603602081101561054057600080fd5b5035610e78565b6102ea6004803603602081101561055d57600080fd5b50356001600160a01b0316610e9f565b6102e06004803603602081101561058357600080fd5b50356001600160a01b0316610eb3565b6104cb610f68565b61029e600480360360408110156105b157600080fd5b506001600160a01b038135169060200135610f77565b6104cb6110a1565b6101fd6110b5565b6102ea600480360360208110156105ed57600080fd5b503561110d565b6102e06004803603602081101561060a57600080fd5b50356001600160a01b03166111fa565b6104cb611258565b61029e6004803603604081101561063857600080fd5b506001600160a01b038135169060200135611267565b61029e611284565b6102ea61128d565b61029e6004803603606081101561067457600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156106a457600080fd5b8201836020820111156106b657600080fd5b803590602001918460018302840111640100000000831117156106d857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611293945050505050565b6105046004803603604081101561072f57600080fd5b506001600160a01b038135169060200135611393565b61029e6004803603604081101561075b57600080fd5b506001600160a01b0381351690602001356113d3565b6102e06004803603602081101561078757600080fd5b50356001600160a01b03166114f5565b6102ea600480360360408110156107ad57600080fd5b506001600160a01b0381358116916020013516611550565b6104cb61157b565b6102e0600480360360208110156107e357600080fd5b50356001600160a01b031661158a565b6102e06004803603602081101561080957600080fd5b503515156115e5565b6000805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108985780601f1061086d57610100808354040283529160200191610898565b820191906000526020600020905b81548152906001019060200180831161087b57829003601f168201915b505050505081565b600b5460009060ff166108b257600080fd5b8115806108e057503360009081526009602090815260408083206001600160a01b0387168452909152902054155b6108e957600080fd5b3360008181526009602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060015b92915050565b600b5461010090046001600160a01b031633146109a3576040805162461bcd60e51b8152602060048201819052602482015260008051602061200d833981519152604482015290519081900360640190fd5b6109ad8282611640565b5050565b60075481565b60006109c24361110d565b90505b90565b600b5460009060ff166109da57600080fd5b6001600160a01b0384166000908152600960209081526040808320338452909152902054821115610a0d57506000610a45565b6001600160a01b0384166000908152600960209081526040808320338452909152902080548390039055610a428484846118ea565b90505b9392505050565b60015460ff1681565b6001600160a01b0382166000908152600860205260408120541580610aaf57506001600160a01b03831660009081526008602052604081208054849290610a9857fe5b6000918252602090912001546001600160801b0316115b15610b72576005546001600160a01b031615610b6a576005546006546001600160a01b0390911690634ee2cd7e908590610aea908690611a0d565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b031681526020018281526020019250505060206040518083038186803b158015610b3757600080fd5b505afa158015610b4b573d6000803e3d6000fd5b505050506040513d6020811015610b6157600080fd5b5051905061094b565b50600061094b565b6001600160a01b0383166000908152600860205260409020610b949083611a23565b905061094b565b6003805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156108985780601f1061086d57610100808354040283529160200191610898565b6000808315610c055783610c0a565b600143035b90506000600d60009054906101000a90046001600160a01b03166001600160a01b0316635b7b72c130848b8b8b8a6040518763ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001868152602001806020018560ff1660ff1681526020018060200184151515158152602001838103835287818151815260200191508051906020019080838360005b83811015610cbc578181015183820152602001610ca4565b50505050905090810190601f168015610ce95780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b83811015610d1c578181015183820152602001610d04565b50505050905090810190601f168015610d495780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015610d6e57600080fd5b505af1158015610d82573d6000803e3d6000fd5b505050506040513d6020811015610d9857600080fd5b50516040805184815290519192506001600160a01b038316917f086c875b377f900b07ce03575813022f05dd10ed7640b5282cf6d3c3fc352ade9181900360200190a26040805163f2fde38b60e01b815233600482015290516001600160a01b0383169163f2fde38b91602480830192600092919082900301818387803b158015610e2257600080fd5b505af1158015610e36573d6000803e3d6000fd5b50929a9950505050505050505050565b600a8181548110610e5357fe5b6000918252602090912001546001600160801b038082169250600160801b9091041682565b60048181548110610e8557fe5b6000918252602090912001546001600160a01b0316905081565b6000610eab8243610a55565b90505b919050565b600b5461010090046001600160a01b03163314610f05576040805162461bcd60e51b8152602060048201819052602482015260008051602061200d833981519152604482015290519081900360640190fd5b600c80546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517fe19afe89fcee2a079df148700e97f00ef22536af2f5d98861ab7186c6c271070929181900390910190a15050565b6005546001600160a01b031681565b600c5460009033906001600160a01b0316610fcc576040805162461bcd60e51b815260206004820152601060248201526f074727573746c697374206973203078360841b604482015290519081900360640190fd5b600c5460408051632153522560e11b81526001600160a01b038481166004830152915191909216916342a6a44a9160248083019260209291908290030181600087803b15801561101b57600080fd5b505af115801561102f573d6000803e3d6000fd5b505050506040513d602081101561104557600080fd5b505161108f576040805162461bcd60e51b81526020600482015260146024820152733737ba1030903a393ab9ba32b21034b9b9bab2b960611b604482015290519081900360640190fd5b6110998484611b53565b949350505050565b600b5461010090046001600160a01b031690565b6002805460408051602060018416156101000260001901909316849004601f810184900484028201840190925281815292918301828280156108985780601f1061086d57610100808354040283529160200191610898565b600a546000901580611140575081600a60008154811061112957fe5b6000918252602090912001546001600160801b0316115b156111e8576005546001600160a01b0316156111e0576005546006546001600160a01b039091169063981b24d090611179908590611a0d565b6040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b1580156111ad57600080fd5b505afa1580156111c1573d6000803e3d6000fd5b505050506040513d60208110156111d757600080fd5b50519050610eae565b506000610eae565b6111f3600a83611a23565b9050610eae565b600b5461010090046001600160a01b0316331461124c576040805162461bcd60e51b8152602060048201819052602482015260008051602061200d833981519152604482015290519081900360640190fd5b61125581611c08565b50565b600c546001600160a01b031681565b600b5460009060ff1661127957600080fd5b610a453384846118ea565b600b5460ff1681565b60065481565b600061129f84846108a0565b6112a857600080fd5b604051638f4ffcb160e01b815233600482018181526024830186905230604484018190526080606485019081528651608486015286516001600160a01b038a1695638f4ffcb195948a94938a939192909160a490910190602085019080838360005b8381101561132257818101518382015260200161130a565b50505050905090810190601f16801561134f5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561137157600080fd5b505af1158015611385573d6000803e3d6000fd5b506001979650505050505050565b600860205281600052604060002081815481106113ac57fe5b6000918252602090912001546001600160801b038082169350600160801b90910416905082565b600c5460009033906001600160a01b0316611428576040805162461bcd60e51b815260206004820152601060248201526f074727573746c697374206973203078360841b604482015290519081900360640190fd5b600c5460408051632153522560e11b81526001600160a01b038481166004830152915191909216916342a6a44a9160248083019260209291908290030181600087803b15801561147757600080fd5b505af115801561148b573d6000803e3d6000fd5b505050506040513d60208110156114a157600080fd5b50516114eb576040805162461bcd60e51b81526020600482015260146024820152733737ba1030903a393ab9ba32b21034b9b9bab2b960611b604482015290519081900360640190fd5b6110998484611cd3565b600b5461010090046001600160a01b03163314611547576040805162461bcd60e51b8152602060048201819052602482015260008051602061200d833981519152604482015290519081900360640190fd5b61125581611d84565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205490565b600d546001600160a01b031681565b600b5461010090046001600160a01b031633146115dc576040805162461bcd60e51b8152602060048201819052602482015260008051602061200d833981519152604482015290519081900360640190fd5b61125581611e08565b600b5461010090046001600160a01b03163314611637576040805162461bcd60e51b8152602060048201819052602482015260008051602061200d833981519152604482015290519081900360640190fd5b61125581611eb4565b6001600160a01b0382166116fb576040516000906001600160a01b038316903031908381818185875af1925050503d806000811461169a576040519150601f19603f3d011682016040523d82523d6000602084013e61169f565b606091505b50509050806116f5576040805162461bcd60e51b815260206004820181905260248201527f546f6b656e436c61696d6572207472616e7366657220657468206661696c6564604482015290519081900360640190fd5b506109ad565b604080516370a0823160e01b815230600482015290516000916001600160a01b038516916370a0823191602480820192602092909190829003018186803b15801561174557600080fd5b505afa158015611759573d6000803e3d6000fd5b505050506040513d602081101561176f57600080fd5b5051604080516001600160a01b038581166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b178152925182519495506000949188169390918291908083835b602083106117ee5780518252601f1990920191602091820191016117cf565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611850576040519150601f19603f3d011682016040523d82523d6000602084013e611855565b606091505b5050905080611899576040805162461bcd60e51b815260206004820152600b60248201526a18d85b1b0819985a5b195960aa1b604482015290519081900360640190fd5b826001600160a01b0316846001600160a01b03167ff931edb47c50b4b4104c187b5814a9aef5f709e17e2ecf9617e860cacade929c846040518082815260200191505060405180910390a350505050565b6000816118f957506001610a45565b436006541061190757600080fd5b6001600160a01b0383161580159061192857506001600160a01b0383163014155b61193157600080fd5b600061193d8543610a55565b905082811015611951576000915050610a45565b6001600160a01b038516600090815260086020526040902061197590848303611ec7565b60006119818543610a55565b905080848201101561199257600080fd5b6001600160a01b03851660009081526008602052604090206119b690828601611ec7565b846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a350600195945050505050565b6000818310611a1c5781610a45565b5090919050565b8154600090611a345750600061094b565b825483906000198101908110611a4657fe5b6000918252602090912001546001600160801b03168210611a9657825483906000198101908110611a7357fe5b600091825260209091200154600160801b90046001600160801b0316905061094b565b82600081548110611aa357fe5b6000918252602090912001546001600160801b0316821015611ac75750600061094b565b8254600090600019015b81811115611b22576000600260018385010104905084868281548110611af357fe5b6000918252602090912001546001600160801b031611611b1557809250611b1c565b6001810391505b50611ad1565b848281548110611b2e57fe5b600091825260209091200154600160801b90046001600160801b031695945050505050565b600080611b5e6109b7565b9050808382011015611b6f57600080fd5b6000611b7a85610e9f565b9050808482011015611b8b57600080fd5b611b98600a858401611ec7565b6001600160a01b0385166000908152600860205260409020611bbc90828601611ec7565b6040805185815290516001600160a01b038716916000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3506001949350505050565b6040805163edefe12d60e01b81526004818101526001600160a01b0383166024820152905173d942f306075a0f7bc375328db822fcc3103b32689163edefe12d916044808301926020929190829003018186803b158015611c6857600080fd5b505af4158015611c7c573d6000803e3d6000fd5b505050506040513d6020811015611c9257600080fd5b5050604080516001600160a01b038316815290517fd6c3db22a16cf1fea7bafab76301eff159ad29dc37339df6f33eb122cf0ffe369181900360200190a150565b600080611cde6109b7565b905082811015611ced57600080fd5b6000611cf885610e9f565b905083811015611d0757600080fd5b611d14600a858403611ec7565b6001600160a01b0385166000908152600860205260409020611d3890858303611ec7565b6040805185815290516000916001600160a01b038816917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3506001949350505050565b600480546001810182556000919091527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0383166001600160a01b0319909116811790915560408051918252517fb39818ecfe00151406f56d9c97659598c71791d1dfd011e5778a4ce2294842f19181900360200190a150565b6001600160a01b038116611e4d5760405162461bcd60e51b8152600401808060200182810382526026815260200180611fe76026913960400191505060405180910390fd5b600b546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600b805460ff1916911515919091179055565b81541580611efb57508154439083906000198101908110611ee457fe5b6000918252602090912001546001600160801b0316105b15611f625781546000908390611f148260018301611f9f565b81548110611f1e57fe5b600091825260209091200180546001600160801b03848116600160801b024382166fffffffffffffffffffffffffffffffff199093169290921716179055506109ad565b815460009083906000198101908110611f7757fe5b600091825260209091200180546001600160801b03808516600160801b029116179055505050565b815481835581811115611fc357600083815260209020611fc3918101908301611fc8565b505050565b6109c591905b80821115611fe25760008155600101611fce565b509056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a265627a7a72305820d5d1dd46e5a27f31676226833807b23c768fba28d48ddb702a1de78aac4da25b64736f6c634300050a0032

Libraries Used


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.