ETH Price: $3,456.42 (+3.86%)

Token

CROCODILEKING.COM (EYB)
 

Overview

Max Total Supply

85,036,373,341.930768461615376923 EYB

Holders

133 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
38,810,000 EYB

Value
$0.00
0xbf3aeb96e164ae67e763d9e050ff124e7c3fdd28
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

CROCODILEKING is an ERC-20 token on Ethereum network.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TokenMintERC20Token

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-25
*/

/**
 *Submitted for verification at www.CrocodileKing.com on 2021-05-02
 * community https://t.me/CROCODILEPOOL
*/
// File: contracts\open-zeppelin-contracts\token\ERC20\IERC20.sol

pragma solidity =0.6.6;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see `ERC20Detailed`.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through `transferFrom`. This is
     * zero by default.
     *
     * This value changes when `approve` or `transferFrom` are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * > Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an `Approval` event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to `approve`. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: contracts\open-zeppelin-contracts\math\SafeMath.sol

pragma solidity =0.6.6;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}
// File: contracts\open-zeppelin-contracts\token\ERC20\ERC20.sol

pragma solidity =0.6.6;

/**
 * @dev Implementation of the `IERC20` interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using `_mint`.
 * For a generic mechanism see `ERC20Mintable`.
 *
 * *For a detailed writeup see our guide [How to implement supply
 * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an `Approval` event is emitted on calls to `transferFrom`.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard `decreaseAllowance` and `increaseAllowance`
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See `IERC20.approve`.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;
    //The total amount of issuance shall not exceed the limit
    uint256 private _maxSupply=1_000_000_000_00e18;
    uint256 private _totalSupply;
    /**
     * @dev See `IERC20.totalSupply`.
     */
    function totalSupply() public  view override returns (uint256) {
        return _totalSupply;
    }
    function maxSupply() public view returns (uint256) {
      return _maxSupply;
    }
    /**
     * @dev See `IERC20.balanceOf`.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See `IERC20.transfer`.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    /**
     * @dev See `IERC20.allowance`.
     */
    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public override returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev See `IERC20.transferFrom`.
     *
     * Emits an `Approval` event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of `ERC20`;
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to `approve` that can be used as a mitigation for
     * problems described in `IERC20.approve`.
     *
     * Emits an `Approval` event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to `transfer`, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a `Transfer` event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a `Transfer` event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");
        require(_totalSupply<=_maxSupply+amount,"The maximum supply cannot be exceeded");
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

     /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a `Transfer` event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an `Approval` event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @dev Destoys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See `_burn` and `_approve`.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
    }
}

// File: contracts\ERC20\TokenMintERC20Token.sol
interface IWETH {
    function deposit() external payable;
    function transfer(address to, uint value) external returns (bool);
    function withdraw(uint) external;
}
pragma solidity =0.6.6;


/**
 * @title TokenMintERC20Token
 * @author TokenMint (visit https://tokenmint.io)
 *
 * @dev Standard ERC20 token with burning and optional functions implemented.
 * For full specification of ERC-20 standard see:
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 */
contract TokenMintERC20Token is ERC20 {

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    address public  WETH;
    address public  onwer;
    //ICO price 1 EYB=0.00000013 ether;
    uint256 public Price=0.00000013 ether;
    mapping(uint256=>address)public team;
    /**
     * @dev Constructor.
     * @param name name of the token
     * @param symbol symbol of the token, 3-4 chars is recommended
     * @param decimals number of decimal places of one token unit, 18 is widely used
     * @param totalSupply total supply of tokens in lowest units (depending on decimals)
     * @param tokenOwnerAddress address that gets 100% of token supply
     */
    constructor(address payable _WETH,string memory name, string memory symbol, uint8 decimals, uint256 totalSupply, address payable feeReceiver, address tokenOwnerAddress) public payable {
      _name = name;
      _symbol = symbol;
      _decimals = decimals;
      WETH=_WETH;
      onwer=feeReceiver;
      // set tokenOwnerAddress as owner of all tokens
      //_mint(tokenOwnerAddress, totalSupply);

      // pay the service fee for contract deployment
      feeReceiver.transfer(msg.value);
    }
    receive() external payable {
        assert(msg.sender == WETH); // only accept ETH via fallback from the WETH contract
    }
    /**
     * @dev Burns a specific amount of tokens.
     * @param value The amount of lowest token units to be burned.
     */
    function burn(uint256 value) public {
      _burn(msg.sender, value);
    }

    // optional functions from ERC20 stardard

    /**
     * @return the name of the token.
     */
    function name() public view returns (string memory) {
      return _name;
    }

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
      return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
      return _decimals;
    }
    function CreateContract(uint256 _num)public payable{
        require(msg.value>0,"Amount must be greater than 0");
        uint256 _value=msg.value.mul(60).div(100);
        IWETH(WETH).deposit{value: msg.value}();
        if(team[_num]==address(0)){
            IWETH(WETH).withdraw(_value);
            TransferHelper.safeTransferETH(onwer, _value);
        }else{
           IWETH(WETH).withdraw(_value);
           TransferHelper.safeTransferETH(team[_num], _value); 
        }
        uint256 _EYB=msg.value.mul(1 ether).div(Price);
        _mint(msg.sender, _EYB);
        Price=Price.add(getPrice(msg.value));
        
    }
    function ContractWithdrawal(address to,uint amountETH)public{
        require(msg.sender==onwer,"No permission to issue additional EYB");
        IWETH(WETH).withdraw(amountETH);
        TransferHelper.safeTransferETH(to, amountETH);
    }
    //Airdrop EYB
    function issueToken(address[] memory addr,uint value)public{
        require(msg.sender==onwer,"No permission to issue additional EYB");
        if(value>0){
            for(uint i=0;i<addr.length;i++){
            _mint(addr[i], value);
           }
        }else{
            for(uint h=0;h<addr.length;h++){
                uint256 _value=randomw(now+h);
                _mint(addr[h], _value);
            }
        }
    }
    function getPrice(uint256 _value)public view returns(uint){
        uint Amount=_value.mul(1 ether).div(100 ether);
        return Price.mul(Amount).div(1 ether);
    }
    function randomw(uint256 randomyType) public view returns(uint) {
        uint256 random = uint256(keccak256(abi.encodePacked(block.difficulty, now,randomyType)));
        uint AAA=random%999999*10**18;
        
    return AAA;
    }
    function setTeam(address addr,uint256 _num)public{
       require(msg.sender==onwer,"No permission to issue additional EYB");
       team[_num]=addr;
    }

}
 library TransferHelper {
    function safeTransferETH(address to, uint value) internal {
        (bool success,) = to.call{value:value}(new bytes(0));
        require(success, 'TransferHelper: ETH_TRANSFER_FAILED');
    }
 }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"_WETH","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"address payable","name":"feeReceiver","type":"address"},{"internalType":"address","name":"tokenOwnerAddress","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amountETH","type":"uint256"}],"name":"ContractWithdrawal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"CreateContract","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"issueToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onwer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"randomyType","type":"uint256"}],"name":"randomw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"setTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"team","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526c01431e0fae6d7217caa0000000600255641e449a94006008556040516200195938038062001959833981810160405260e08110156200004357600080fd5b8151602083018051604051929492938301929190846401000000008211156200006b57600080fd5b9083019060208201858111156200008157600080fd5b82516401000000008111828201881017156200009c57600080fd5b82525081516020918201929091019080838360005b83811015620000cb578181015183820152602001620000b1565b50505050905090810190601f168015620000f95780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011d57600080fd5b9083019060208201858111156200013357600080fd5b82516401000000008111828201881017156200014e57600080fd5b82525081516020918201929091019080838360005b838110156200017d57818101518382015260200162000163565b50505050905090810190601f168015620001ab5780820380516001836020036101000a031916815260200191505b506040908152602082810151918301516060840151608090940151885193965090945091620001e191600491908901906200027b565b508451620001f79060059060208801906200027b565b506006805460ff191660ff861617610100600160a81b0319166101006001600160a01b038a81169190910291909117909155600780546001600160a01b03191691841691821790556040516108fc34801591909102916000818181858888f193505050501580156200026d573d6000803e3d6000fd5b505050505050505062000320565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002be57805160ff1916838001178555620002ee565b82800160010185558215620002ee579182015b82811115620002ee578251825591602001919060010190620002d1565b50620002fc92915062000300565b5090565b6200031d91905b80821115620002fc576000815560010162000307565b90565b61162980620003306000396000f3fe6080604052600436106101445760003560e01c8063767f87bb116100b6578063ad5c46481161006f578063ad5c46481461056a578063bc14edcf1461057f578063d5abeb01146105b8578063dd62ed3e146105cd578063e757223014610608578063f032e6911461063257610164565b8063767f87bb1461047857806387c10bef1461049557806395d89b41146104ce5780639dfde201146104e3578063a457c2d7146104f8578063a9059cbb1461053157610164565b8063313ce56711610108578063313ce567146102f05780633433edd91461031b578063395093511461033057806342966c6814610369578063467f8de31461039357806370a082311461044557610164565b806306fdde0314610169578063095ea7b3146101f357806318160ddd14610240578063197ebd531461026757806323b872dd146102ad57610164565b366101645760065461010090046001600160a01b0316331461016257fe5b005b600080fd5b34801561017557600080fd5b5061017e61065c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b85781810151838201526020016101a0565b50505050905090810190601f1680156101e55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ff57600080fd5b5061022c6004803603604081101561021657600080fd5b506001600160a01b0381351690602001356106f2565b604080519115158252519081900360200190f35b34801561024c57600080fd5b50610255610709565b60408051918252519081900360200190f35b34801561027357600080fd5b506102916004803603602081101561028a57600080fd5b503561070f565b604080516001600160a01b039092168252519081900360200190f35b3480156102b957600080fd5b5061022c600480360360608110156102d057600080fd5b506001600160a01b0381358116916020810135909116906040013561072a565b3480156102fc57600080fd5b50610305610781565b6040805160ff9092168252519081900360200190f35b34801561032757600080fd5b5061029161078a565b34801561033c57600080fd5b5061022c6004803603604081101561035357600080fd5b506001600160a01b038135169060200135610799565b34801561037557600080fd5b506101626004803603602081101561038c57600080fd5b50356107d5565b34801561039f57600080fd5b50610162600480360360408110156103b657600080fd5b8101906020810181356401000000008111156103d157600080fd5b8201836020820111156103e357600080fd5b8035906020019184602083028401116401000000008311171561040557600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955050913592506107e2915050565b34801561045157600080fd5b506102556004803603602081101561046857600080fd5b50356001600160a01b03166108af565b6101626004803603602081101561048e57600080fd5b50356108ca565b3480156104a157600080fd5b50610162600480360360408110156104b857600080fd5b506001600160a01b038135169060200135610b43565b3480156104da57600080fd5b5061017e610c09565b3480156104ef57600080fd5b50610255610c6a565b34801561050457600080fd5b5061022c6004803603604081101561051b57600080fd5b506001600160a01b038135169060200135610c70565b34801561053d57600080fd5b5061022c6004803603604081101561055457600080fd5b506001600160a01b038135169060200135610cac565b34801561057657600080fd5b50610291610cb9565b34801561058b57600080fd5b50610162600480360360408110156105a257600080fd5b506001600160a01b038135169060200135610ccd565b3480156105c457600080fd5b50610255610d44565b3480156105d957600080fd5b50610255600480360360408110156105f057600080fd5b506001600160a01b0381358116916020013516610d4a565b34801561061457600080fd5b506102556004803603602081101561062b57600080fd5b5035610d75565b34801561063e57600080fd5b506102556004803603602081101561065557600080fd5b5035610dc7565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106e85780601f106106bd576101008083540402835291602001916106e8565b820191906000526020600020905b8154815290600101906020018083116106cb57829003601f168201915b5050505050905090565b60006106ff338484610e0d565b5060015b92915050565b60035490565b6009602052600090815260409020546001600160a01b031681565b6000610737848484610ef9565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610777918691610772908663ffffffff61103b16565b610e0d565b5060019392505050565b60065460ff1690565b6007546001600160a01b031681565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106ff918590610772908663ffffffff61109816565b6107df33826110f2565b50565b6007546001600160a01b0316331461082b5760405162461bcd60e51b81526004018080602001828103825260258152602001806114da6025913960400191505060405180910390fd5b80156108685760005b82518110156108625761085a83828151811061084c57fe5b6020026020010151836111cb565b600101610834565b506108ab565b60005b82518110156108a9576000610881824201610dc7565b90506108a084838151811061089257fe5b6020026020010151826111cb565b5060010161086b565b505b5050565b6001600160a01b031660009081526020819052604090205490565b6000341161091f576040805162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e2030000000604482015290519081900360640190fd5b6000610943606461093734603c63ffffffff61130016565b9063ffffffff61135916565b9050600660019054906101000a90046001600160a01b03166001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b15801561099557600080fd5b505af11580156109a9573d6000803e3d6000fd5b5050506000848152600960205260409020546001600160a01b031615159150610a5d905057600660019054906101000a90046001600160a01b03166001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610a2957600080fd5b505af1158015610a3d573d6000803e3d6000fd5b5050600754610a5892506001600160a01b03169050826113c3565b610af2565b600660019054906101000a90046001600160a01b03166001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610ab857600080fd5b505af1158015610acc573d6000803e3d6000fd5b505050600083815260096020526040902054610af291506001600160a01b0316826113c3565b600854600090610b149061093734670de0b6b3a764000063ffffffff61130016565b9050610b2033826111cb565b610b3b610b2c34610d75565b6008549063ffffffff61109816565b600855505050565b6007546001600160a01b03163314610b8c5760405162461bcd60e51b81526004018080602001828103825260258152602001806114da6025913960400191505060405180910390fd5b600660019054906101000a90046001600160a01b03166001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610be757600080fd5b505af1158015610bfb573d6000803e3d6000fd5b505050506108ab82826113c3565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106e85780601f106106bd576101008083540402835291602001916106e8565b60085481565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106ff918590610772908663ffffffff61103b16565b60006106ff338484610ef9565b60065461010090046001600160a01b031681565b6007546001600160a01b03163314610d165760405162461bcd60e51b81526004018080602001828103825260258152602001806114da6025913960400191505060405180910390fd5b600090815260096020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b60025490565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600080610d9d68056bc75e2d6310000061093785670de0b6b3a764000063ffffffff61130016565b9050610dc0670de0b6b3a76400006109378360085461130090919063ffffffff16565b9392505050565b604080514460208083019190915242828401526060808301949094528251808303909401845260809091019091528151910120620f423f9006670de0b6b3a76400000290565b6001600160a01b038316610e525760405162461bcd60e51b81526004018080602001828103825260248152602001806115886024913960400191505060405180910390fd5b6001600160a01b038216610e975760405162461bcd60e51b81526004018080602001828103825260228152602001806114ff6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610f3e5760405162461bcd60e51b81526004018080602001828103825260258152602001806115636025913960400191505060405180910390fd5b6001600160a01b038216610f835760405162461bcd60e51b81526004018080602001828103825260238152602001806114b76023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054610fac908263ffffffff61103b16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610fe1908263ffffffff61109816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115611092576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610dc0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166111375760405162461bcd60e51b81526004018080602001828103825260218152602001806115426021913960400191505060405180910390fd5b60035461114a908263ffffffff61103b16565b6003556001600160a01b038216600090815260208190526040902054611176908263ffffffff61103b16565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6001600160a01b038216611226576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b8060025401600354111561126b5760405162461bcd60e51b81526004018080602001828103825260258152602001806115cf6025913960400191505060405180910390fd5b60035461127e908263ffffffff61109816565b6003556001600160a01b0382166000908152602081905260409020546112aa908263ffffffff61109816565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008261130f57506000610703565b8282028284828161131c57fe5b0414610dc05760405162461bcd60e51b81526004018080602001828103825260218152602001806115216021913960400191505060405180910390fd5b60008082116113af576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b60008284816113ba57fe5b04949350505050565b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b6020831061140f5780518252601f1990920191602091820191016113f0565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611471576040519150601f19603f3d011682016040523d82523d6000602084013e611476565b606091505b50509050806108a95760405162461bcd60e51b81526004018080602001828103825260238152602001806115ac6023913960400191505060405180910390fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734e6f207065726d697373696f6e20746f206973737565206164646974696f6e616c2045594245524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735472616e7366657248656c7065723a204554485f5452414e534645525f4641494c4544546865206d6178696d756d20737570706c792063616e6e6f74206265206578636565646564a26469706673582212204f06860c22c0f7fffaf801cff57d7dae5435d196fcbf5e00ac4058a0c91180c064736f6c63430006060033000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000825618f77d170825391b4358b5c74299792c883b000000000000000000000000825618f77d170825391b4358b5c74299792c883b000000000000000000000000000000000000000000000000000000000000001143524f434f44494c454b494e472e434f4d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034559420000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101445760003560e01c8063767f87bb116100b6578063ad5c46481161006f578063ad5c46481461056a578063bc14edcf1461057f578063d5abeb01146105b8578063dd62ed3e146105cd578063e757223014610608578063f032e6911461063257610164565b8063767f87bb1461047857806387c10bef1461049557806395d89b41146104ce5780639dfde201146104e3578063a457c2d7146104f8578063a9059cbb1461053157610164565b8063313ce56711610108578063313ce567146102f05780633433edd91461031b578063395093511461033057806342966c6814610369578063467f8de31461039357806370a082311461044557610164565b806306fdde0314610169578063095ea7b3146101f357806318160ddd14610240578063197ebd531461026757806323b872dd146102ad57610164565b366101645760065461010090046001600160a01b0316331461016257fe5b005b600080fd5b34801561017557600080fd5b5061017e61065c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101b85781810151838201526020016101a0565b50505050905090810190601f1680156101e55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101ff57600080fd5b5061022c6004803603604081101561021657600080fd5b506001600160a01b0381351690602001356106f2565b604080519115158252519081900360200190f35b34801561024c57600080fd5b50610255610709565b60408051918252519081900360200190f35b34801561027357600080fd5b506102916004803603602081101561028a57600080fd5b503561070f565b604080516001600160a01b039092168252519081900360200190f35b3480156102b957600080fd5b5061022c600480360360608110156102d057600080fd5b506001600160a01b0381358116916020810135909116906040013561072a565b3480156102fc57600080fd5b50610305610781565b6040805160ff9092168252519081900360200190f35b34801561032757600080fd5b5061029161078a565b34801561033c57600080fd5b5061022c6004803603604081101561035357600080fd5b506001600160a01b038135169060200135610799565b34801561037557600080fd5b506101626004803603602081101561038c57600080fd5b50356107d5565b34801561039f57600080fd5b50610162600480360360408110156103b657600080fd5b8101906020810181356401000000008111156103d157600080fd5b8201836020820111156103e357600080fd5b8035906020019184602083028401116401000000008311171561040557600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955050913592506107e2915050565b34801561045157600080fd5b506102556004803603602081101561046857600080fd5b50356001600160a01b03166108af565b6101626004803603602081101561048e57600080fd5b50356108ca565b3480156104a157600080fd5b50610162600480360360408110156104b857600080fd5b506001600160a01b038135169060200135610b43565b3480156104da57600080fd5b5061017e610c09565b3480156104ef57600080fd5b50610255610c6a565b34801561050457600080fd5b5061022c6004803603604081101561051b57600080fd5b506001600160a01b038135169060200135610c70565b34801561053d57600080fd5b5061022c6004803603604081101561055457600080fd5b506001600160a01b038135169060200135610cac565b34801561057657600080fd5b50610291610cb9565b34801561058b57600080fd5b50610162600480360360408110156105a257600080fd5b506001600160a01b038135169060200135610ccd565b3480156105c457600080fd5b50610255610d44565b3480156105d957600080fd5b50610255600480360360408110156105f057600080fd5b506001600160a01b0381358116916020013516610d4a565b34801561061457600080fd5b506102556004803603602081101561062b57600080fd5b5035610d75565b34801561063e57600080fd5b506102556004803603602081101561065557600080fd5b5035610dc7565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106e85780601f106106bd576101008083540402835291602001916106e8565b820191906000526020600020905b8154815290600101906020018083116106cb57829003601f168201915b5050505050905090565b60006106ff338484610e0d565b5060015b92915050565b60035490565b6009602052600090815260409020546001600160a01b031681565b6000610737848484610ef9565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610777918691610772908663ffffffff61103b16565b610e0d565b5060019392505050565b60065460ff1690565b6007546001600160a01b031681565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106ff918590610772908663ffffffff61109816565b6107df33826110f2565b50565b6007546001600160a01b0316331461082b5760405162461bcd60e51b81526004018080602001828103825260258152602001806114da6025913960400191505060405180910390fd5b80156108685760005b82518110156108625761085a83828151811061084c57fe5b6020026020010151836111cb565b600101610834565b506108ab565b60005b82518110156108a9576000610881824201610dc7565b90506108a084838151811061089257fe5b6020026020010151826111cb565b5060010161086b565b505b5050565b6001600160a01b031660009081526020819052604090205490565b6000341161091f576040805162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e2030000000604482015290519081900360640190fd5b6000610943606461093734603c63ffffffff61130016565b9063ffffffff61135916565b9050600660019054906101000a90046001600160a01b03166001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b15801561099557600080fd5b505af11580156109a9573d6000803e3d6000fd5b5050506000848152600960205260409020546001600160a01b031615159150610a5d905057600660019054906101000a90046001600160a01b03166001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610a2957600080fd5b505af1158015610a3d573d6000803e3d6000fd5b5050600754610a5892506001600160a01b03169050826113c3565b610af2565b600660019054906101000a90046001600160a01b03166001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610ab857600080fd5b505af1158015610acc573d6000803e3d6000fd5b505050600083815260096020526040902054610af291506001600160a01b0316826113c3565b600854600090610b149061093734670de0b6b3a764000063ffffffff61130016565b9050610b2033826111cb565b610b3b610b2c34610d75565b6008549063ffffffff61109816565b600855505050565b6007546001600160a01b03163314610b8c5760405162461bcd60e51b81526004018080602001828103825260258152602001806114da6025913960400191505060405180910390fd5b600660019054906101000a90046001600160a01b03166001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610be757600080fd5b505af1158015610bfb573d6000803e3d6000fd5b505050506108ab82826113c3565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106e85780601f106106bd576101008083540402835291602001916106e8565b60085481565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106ff918590610772908663ffffffff61103b16565b60006106ff338484610ef9565b60065461010090046001600160a01b031681565b6007546001600160a01b03163314610d165760405162461bcd60e51b81526004018080602001828103825260258152602001806114da6025913960400191505060405180910390fd5b600090815260096020526040902080546001600160a01b0319166001600160a01b0392909216919091179055565b60025490565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600080610d9d68056bc75e2d6310000061093785670de0b6b3a764000063ffffffff61130016565b9050610dc0670de0b6b3a76400006109378360085461130090919063ffffffff16565b9392505050565b604080514460208083019190915242828401526060808301949094528251808303909401845260809091019091528151910120620f423f9006670de0b6b3a76400000290565b6001600160a01b038316610e525760405162461bcd60e51b81526004018080602001828103825260248152602001806115886024913960400191505060405180910390fd5b6001600160a01b038216610e975760405162461bcd60e51b81526004018080602001828103825260228152602001806114ff6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610f3e5760405162461bcd60e51b81526004018080602001828103825260258152602001806115636025913960400191505060405180910390fd5b6001600160a01b038216610f835760405162461bcd60e51b81526004018080602001828103825260238152602001806114b76023913960400191505060405180910390fd5b6001600160a01b038316600090815260208190526040902054610fac908263ffffffff61103b16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610fe1908263ffffffff61109816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115611092576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610dc0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166111375760405162461bcd60e51b81526004018080602001828103825260218152602001806115426021913960400191505060405180910390fd5b60035461114a908263ffffffff61103b16565b6003556001600160a01b038216600090815260208190526040902054611176908263ffffffff61103b16565b6001600160a01b038316600081815260208181526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b6001600160a01b038216611226576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b8060025401600354111561126b5760405162461bcd60e51b81526004018080602001828103825260258152602001806115cf6025913960400191505060405180910390fd5b60035461127e908263ffffffff61109816565b6003556001600160a01b0382166000908152602081905260409020546112aa908263ffffffff61109816565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b60008261130f57506000610703565b8282028284828161131c57fe5b0414610dc05760405162461bcd60e51b81526004018080602001828103825260218152602001806115216021913960400191505060405180910390fd5b60008082116113af576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b60008284816113ba57fe5b04949350505050565b604080516000808252602082019092526001600160a01b0384169083906040518082805190602001908083835b6020831061140f5780518252601f1990920191602091820191016113f0565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611471576040519150601f19603f3d011682016040523d82523d6000602084013e611476565b606091505b50509050806108a95760405162461bcd60e51b81526004018080602001828103825260238152602001806115ac6023913960400191505060405180910390fdfe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734e6f207065726d697373696f6e20746f206973737565206164646974696f6e616c2045594245524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735472616e7366657248656c7065723a204554485f5452414e534645525f4641494c4544546865206d6178696d756d20737570706c792063616e6e6f74206265206578636565646564a26469706673582212204f06860c22c0f7fffaf801cff57d7dae5435d196fcbf5e00ac4058a0c91180c064736f6c63430006060033

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

000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000000000000000000000000000825618f77d170825391b4358b5c74299792c883b000000000000000000000000825618f77d170825391b4358b5c74299792c883b000000000000000000000000000000000000000000000000000000000000001143524f434f44494c454b494e472e434f4d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034559420000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _WETH (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [1] : name (string): CROCODILEKING.COM
Arg [2] : symbol (string): EYB
Arg [3] : decimals (uint8): 18
Arg [4] : totalSupply (uint256): 0
Arg [5] : feeReceiver (address): 0x825618f77d170825391B4358B5C74299792C883B
Arg [6] : tokenOwnerAddress (address): 0x825618f77d170825391B4358B5C74299792C883B

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000825618f77d170825391b4358b5c74299792c883b
Arg [6] : 000000000000000000000000825618f77d170825391b4358b5c74299792c883b
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [8] : 43524f434f44494c454b494e472e434f4d000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [10] : 4559420000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

15637:4037:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16927:4;;;;;-1:-1:-1;;;;;16927:4:0;16913:10;:18;16906:26;;;;15637:4037;;12:1:-1;9;2:12;17326:81:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17326:81:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;17326:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9475:157;;5:9:-1;2:2;;;27:1;24;17:12;2:2;9475:157:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;9475:157:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;8372:101;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8372:101:0;;;:::i;:::-;;;;;;;;;;;;;;;;15910:36;;5:9:-1;2:2;;;27:1;24;17:12;2:2;15910:36:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;15910:36:0;;:::i;:::-;;;;-1:-1:-1;;;;;15910:36:0;;;;;;;;;;;;;;10103:265;;5:9:-1;2:2;;;27:1;24;17:12;2:2;10103:265:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;10103:265:0;;;;;;;;;;;;;;;;;:::i;17638:81::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17638:81:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15797:21;;5:9:-1;2:2;;;27:1;24;17:12;2:2;15797:21:0;;;:::i;10777:206::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;10777:206:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;10777:206:0;;;;;;;;:::i;17135:77::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17135:77:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;17135:77:0;;:::i;18645:439::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18645:439:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;18645:439:0;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;18645:439:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;18645:439:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;18645:439:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;18645:439:0;;-1:-1:-1;;18645:439:0;;;-1:-1:-1;18645:439:0;;-1:-1:-1;;18645:439:0:i;8625:119::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8625:119:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;8625:119:0;-1:-1:-1;;;;;8625:119:0;;:::i;17725:646::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;17725:646:0;;:::i;18377:243::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18377:243:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;18377:243:0;;;;;;;;:::i;17474:85::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17474:85:0;;;:::i;15866:37::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;15866:37:0;;;:::i;11486:216::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;11486:216:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;11486:216:0;;;;;;;;:::i;8957:165::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8957:165:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;8957:165:0;;;;;;;;:::i;15770:20::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;15770:20:0;;;:::i;19511:158::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19511:158:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19511:158:0;;;;;;;;:::i;8479:85::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;8479:85:0;;;:::i;9185:143::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;9185:143:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;9185:143:0;;;;;;;;;;:::i;19090:171::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19090:171:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19090:171:0;;:::i;19267:238::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19267:238:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;19267:238:0;;:::i;17326:81::-;17394:5;17387:12;;;;;;;;-1:-1:-1;;17387:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17363:13;;17387:12;;17394:5;;17387:12;;17394:5;17387:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17326:81;:::o;9475:157::-;9549:4;9566:36;9575:10;9587:7;9596:5;9566:8;:36::i;:::-;-1:-1:-1;9620:4:0;9475:157;;;;;:::o;8372:101::-;8453:12;;8372:101;:::o;15910:36::-;;;;;;;;;;;;-1:-1:-1;;;;;15910:36:0;;:::o;10103:265::-;10201:4;10218:36;10228:6;10236:9;10247:6;10218:9;:36::i;:::-;-1:-1:-1;;;;;10294:19:0;;;;;;:11;:19;;;;;;;;10282:10;10294:31;;;;;;;;;10265:73;;10274:6;;10294:43;;10330:6;10294:43;:35;:43;:::i;:::-;10265:8;:73::i;:::-;-1:-1:-1;10356:4:0;10103:265;;;;;:::o;17638:81::-;17702:9;;;;17638:81;:::o;15797:21::-;;;-1:-1:-1;;;;;15797:21:0;;:::o;10777:206::-;10883:10;10857:4;10904:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10904:32:0;;;;;;;;;;10857:4;;10874:79;;10895:7;;10904:48;;10941:10;10904:48;:36;:48;:::i;17135:77::-;17180:24;17186:10;17198:5;17180;:24::i;:::-;17135:77;:::o;18645:439::-;18735:5;;-1:-1:-1;;;;;18735:5:0;18723:10;:17;18715:66;;;;-1:-1:-1;;;18715:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18795:7;;18792:285;;18822:6;18818:82;18833:4;:11;18831:1;:13;18818:82;;;18864:21;18870:4;18875:1;18870:7;;;;;;;;;;;;;;18879:5;18864;:21::i;:::-;18845:3;;18818:82;;;;18792:285;;;18934:6;18930:136;18945:4;:11;18943:1;:13;18930:136;;;18980:14;18995;19007:1;19003:3;:5;18995:7;:14::i;:::-;18980:29;;19028:22;19034:4;19039:1;19034:7;;;;;;;;;;;;;;19043:6;19028:5;:22::i;:::-;-1:-1:-1;18957:3:0;;18930:136;;;;18792:285;18645:439;;:::o;8625:119::-;-1:-1:-1;;;;;8718:18:0;8691:7;8718:18;;;;;;;;;;;;8625:119::o;17725:646::-;17805:1;17795:9;:11;17787:52;;;;;-1:-1:-1;;;17787:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17850:14;17865:26;17887:3;17865:17;:9;17879:2;17865:17;:13;:17;:::i;:::-;:21;:26;:21;:26;:::i;:::-;17850:41;;17908:4;;;;;;;;;-1:-1:-1;;;;;17908:4:0;-1:-1:-1;;;;;17902:19:0;;17929:9;17902:39;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17902:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;;17975:1:0;17955:10;;;:4;:10;;;;;;-1:-1:-1;;;;;17955:10:0;:22;17952:264;;-1:-1:-1;17952:264:0;;-1:-1:-1;17952:264:0;17999:4;;;;;;;;;-1:-1:-1;;;;;17999:4:0;-1:-1:-1;;;;;17993:20:0;;18014:6;17993:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17993:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;18067:5:0;;18036:45;;-1:-1:-1;;;;;;18067:5:0;;-1:-1:-1;18074:6:0;18036:30;:45::i;:::-;17952:264;;;18117:4;;;;;;;;;-1:-1:-1;;;;;18117:4:0;-1:-1:-1;;;;;18111:20:0;;18132:6;18111:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18111:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;;18184:10:0;;;;:4;:10;;;;;;18153:50;;-1:-1:-1;;;;;;18184:10:0;18196:6;18153:30;:50::i;:::-;18266:5;;18226:12;;18239:33;;:22;:9;18253:7;18239:22;:13;:22;:::i;:33::-;18226:46;;18283:23;18289:10;18301:4;18283:5;:23::i;:::-;18323:30;18333:19;18342:9;18333:8;:19::i;:::-;18323:5;;;:30;:9;:30;:::i;:::-;18317:5;:36;-1:-1:-1;;;17725:646:0:o;18377:243::-;18468:5;;-1:-1:-1;;;;;18468:5:0;18456:10;:17;18448:66;;;;-1:-1:-1;;;18448:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18531:4;;;;;;;;;-1:-1:-1;;;;;18531:4:0;-1:-1:-1;;;;;18525:20:0;;18546:9;18525:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;18525:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;18525:31:0;;;;18567:45;18598:2;18602:9;18567:30;:45::i;17474:85::-;17544:7;17537:14;;;;;;;;-1:-1:-1;;17537:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17513:13;;17537:14;;17544:7;;17537:14;;17544:7;17537:14;;;;;;;;;;;;;;;;;;;;;;;;15866:37;;;;:::o;11486:216::-;11597:10;11571:4;11618:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;11618:32:0;;;;;;;;;;11571:4;;11588:84;;11609:7;;11618:53;;11655:15;11618:53;:36;:53;:::i;8957:165::-;9035:4;9052:40;9062:10;9074:9;9085:6;9052:9;:40::i;15770:20::-;;;;;;-1:-1:-1;;;;;15770:20:0;;:::o;19511:158::-;19590:5;;-1:-1:-1;;;;;19590:5:0;19578:10;:17;19570:66;;;;-1:-1:-1;;;19570:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19646:10;;;;:4;:10;;;;;:15;;-1:-1:-1;;;;;;19646:15:0;-1:-1:-1;;;;;19646:15:0;;;;;;;;;;19511:158::o;8479:85::-;8546:10;;8479:85;:::o;9185:143::-;-1:-1:-1;;;;;9293:18:0;;;9266:7;9293:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9185:143::o;19090:171::-;19143:4;;19171:34;19195:9;19171:19;:6;19182:7;19171:19;:10;:19;:::i;:34::-;19159:46;;19223:30;19245:7;19223:17;19233:6;19223:5;;:9;;:17;;;;:::i;:30::-;19216:37;19090:171;-1:-1:-1;;;19090:171:0:o;19267:238::-;19377:51;;;19394:16;19377:51;;;;;;;;19412:3;19377:51;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;19377:51:0;;;;;;;19367:62;;;;;19457:6;19450:13;;19464:6;19450:20;;19267:238::o;14378:335::-;-1:-1:-1;;;;;14471:19:0;;14463:68;;;;-1:-1:-1;;;14463:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14550:21:0;;14542:68;;;;-1:-1:-1;;;14542:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14623:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;14674:31;;;;;;;;;;;;;;;;;14378:335;;;:::o;12192:429::-;-1:-1:-1;;;;;12290:20:0;;12282:70;;;;-1:-1:-1;;;12282:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12371:23:0;;12363:71;;;;-1:-1:-1;;;12363:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12467:17:0;;:9;:17;;;;;;;;;;;:29;;12489:6;12467:29;:21;:29;:::i;:::-;-1:-1:-1;;;;;12447:17:0;;;:9;:17;;;;;;;;;;;:49;;;;12530:20;;;;;;;:32;;12555:6;12530:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;12507:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;12578:35;;;;;;;12507:20;;12578:35;;;;;;;;;;;;;12192:429;;;:::o;4379:184::-;4437:7;4470:1;4465;:6;;4457:49;;;;;-1:-1:-1;;;4457:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4529:5:0;;;4379:184::o;3923:181::-;3981:7;4013:5;;;4037:6;;;;4029:46;;;;;-1:-1:-1;;;4029:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;13632:306;-1:-1:-1;;;;;13707:21:0;;13699:67;;;;-1:-1:-1;;;13699:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13794:12;;:23;;13811:5;13794:23;:16;:23;:::i;:::-;13779:12;:38;-1:-1:-1;;;;;13849:18:0;;:9;:18;;;;;;;;;;;:29;;13872:5;13849:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;13828:18:0;;:9;:18;;;;;;;;;;;:50;;;;13894:36;;;;;;;13828:9;;13894:36;;;;;;;;;;;13632:306;;:::o;12902:397::-;-1:-1:-1;;;;;12978:21:0;;12970:65;;;;;-1:-1:-1;;;12970:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;13079:6;13068:10;;:17;13054:12;;:31;;13046:80;;;;-1:-1:-1;;;13046:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13152:12;;:24;;13169:6;13152:24;:16;:24;:::i;:::-;13137:12;:39;-1:-1:-1;;;;;13208:18:0;;:9;:18;;;;;;;;;;;:30;;13231:6;13208:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;13187:18:0;;:9;:18;;;;;;;;;;;:51;;;;13254:37;;;;;;;13187:18;;:9;;13254:37;;;;;;;;;;12902:397;;:::o;4814:470::-;4872:7;5116:6;5112:47;;-1:-1:-1;5146:1:0;5139:8;;5112:47;5183:5;;;5187:1;5183;:5;:1;5207:5;;;;;:10;5199:56;;;;-1:-1:-1;;;5199:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5752:333;5810:7;5909:1;5905;:5;5897:44;;;;;-1:-1:-1;;;5897:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5952:9;5968:1;5964;:5;;;;;;;5752:333;-1:-1:-1;;;;5752:333:0:o;19707:195::-;19815:12;;;19777;19815;;;;;;;;;-1:-1:-1;;;;;19794:7:0;;;19808:5;;19794:34;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;19794:34:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;19776:52:0;;;19847:7;19839:55;;;;-1:-1:-1;;;19839:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

ipfs://4f06860c22c0f7fffaf801cff57d7dae5435d196fcbf5e00ac4058a0c91180c0
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.