ETH Price: $3,448.71 (-0.78%)
Gas: 3 Gwei

Token

DODO LFG (DODO)
 

Overview

Max Total Supply

420,000,000,000,000 DODO

Holders

68

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
bearbucksdeployer.eth
Balance
1,650,919,236,197.518110053230602289 DODO

Value
$0.00
0xea65a7e9378ec8bd8bc7c2eea327e251cb7d086a
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:
DODO

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-05-29
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Context.sol
// 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: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.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 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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @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);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;


/**
 * @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 {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead 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 Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 value {ERC20} uses, unless this function is
     * 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");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

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

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), 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);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// File: dodo.sol
pragma solidity ^0.8.0;


contract DODO is ERC20{
    
    address public  owner; 

    /**
     * @dev Constructor;
     * @param name for this token, name;
     * @param symbol for this token, symbol;
    */

    constructor(string memory name, string memory symbol, uint totalSupply) ERC20(name, symbol){
        owner = msg.sender;
        // tokenSupply = 420,000,000,000,000;
        _mint(owner, totalSupply*10**18); 
    }

    modifier checkOwner() {
        require(msg.sender == owner, "You are not the owner");
        _;
    }
     
     // Remove ownership;
     function changeOwner() external checkOwner {
        owner = 0x0000000000000000000000000000000000000000;
    }

    function burn(uint256 value) external  {
        _burn(msg.sender, value);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"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":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changeOwner","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":"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"}]

60806040523480156200001157600080fd5b5060405162001e8e38038062001e8e8339818101604052810190620000379190620003bc565b828281600390805190602001906200005192919062000283565b5080600490805190602001906200006a92919062000283565b50505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620000f7600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16670de0b6b3a764000083620000eb9190620005ab565b6200010060201b60201c565b50505062000729565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000173576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016a9062000497565b60405180910390fd5b62000187600083836200027960201b60201c565b80600260008282546200019b91906200054e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001f291906200054e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002599190620004b9565b60405180910390a362000275600083836200027e60201b60201c565b5050565b505050565b505050565b82805462000291906200064c565b90600052602060002090601f016020900481019282620002b5576000855562000301565b82601f10620002d057805160ff191683800117855562000301565b8280016001018555821562000301579182015b8281111562000300578251825591602001919060010190620002e3565b5b50905062000310919062000314565b5090565b5b808211156200032f57600081600090555060010162000315565b5090565b60006200034a62000344846200050a565b620004d6565b9050828152602081018484840111156200036357600080fd5b6200037084828562000616565b509392505050565b600082601f8301126200038a57600080fd5b81516200039c84826020860162000333565b91505092915050565b600081519050620003b6816200070f565b92915050565b600080600060608486031215620003d257600080fd5b600084015167ffffffffffffffff811115620003ed57600080fd5b620003fb8682870162000378565b935050602084015167ffffffffffffffff8111156200041957600080fd5b620004278682870162000378565b92505060406200043a86828701620003a5565b9150509250925092565b600062000453601f836200053d565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b62000491816200060c565b82525050565b60006020820190508181036000830152620004b28162000444565b9050919050565b6000602082019050620004d0600083018462000486565b92915050565b6000604051905081810181811067ffffffffffffffff821117156200050057620004ff620006e0565b5b8060405250919050565b600067ffffffffffffffff821115620005285762000527620006e0565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60006200055b826200060c565b915062000568836200060c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005a0576200059f62000682565b5b828201905092915050565b6000620005b8826200060c565b9150620005c5836200060c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000601576200060062000682565b5b828202905092915050565b6000819050919050565b60005b838110156200063657808201518184015260208101905062000619565b8381111562000646576000848401525b50505050565b600060028204905060018216806200066557607f821691505b602082108114156200067c576200067b620006b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200071a816200060c565b81146200072657600080fd5b50565b61175580620007396000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806362a094771161008c57806395d89b411161006657806395d89b411461024d578063a457c2d71461026b578063a9059cbb1461029b578063dd62ed3e146102cb576100ea565b806362a09477146101f557806370a08231146101ff5780638da5cb5b1461022f576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806342966c68146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b604051610104919061138a565b60405180910390f35b61012760048036038101906101229190610eca565b61038d565b604051610134919061136f565b60405180910390f35b6101456103b0565b60405161015291906114ec565b60405180910390f35b61017560048036038101906101709190610e7b565b6103ba565b604051610182919061136f565b60405180910390f35b6101936103e9565b6040516101a09190611507565b60405180910390f35b6101c360048036038101906101be9190610eca565b6103f2565b6040516101d0919061136f565b60405180910390f35b6101f360048036038101906101ee9190610f06565b610429565b005b6101fd610436565b005b61021960048036038101906102149190610e16565b61050a565b60405161022691906114ec565b60405180910390f35b610237610552565b6040516102449190611354565b60405180910390f35b610255610578565b604051610262919061138a565b60405180910390f35b61028560048036038101906102809190610eca565b61060a565b604051610292919061136f565b60405180910390f35b6102b560048036038101906102b09190610eca565b610681565b6040516102c2919061136f565b60405180910390f35b6102e560048036038101906102e09190610e3f565b6106a4565b6040516102f291906114ec565b60405180910390f35b60606003805461030a90611650565b80601f016020809104026020016040519081016040528092919081815260200182805461033690611650565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60008061039861072b565b90506103a5818585610733565b600191505092915050565b6000600254905090565b6000806103c561072b565b90506103d28582856108fe565b6103dd85858561098a565b60019150509392505050565b60006012905090565b6000806103fd61072b565b905061041e81858561040f85896106a4565b610419919061153e565b610733565b600191505092915050565b6104333382610c0b565b50565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104bd9061144c565b60405180910390fd5b6000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461058790611650565b80601f01602080910402602001604051908101604052809291908181526020018280546105b390611650565b80156106005780601f106105d557610100808354040283529160200191610600565b820191906000526020600020905b8154815290600101906020018083116105e357829003601f168201915b5050505050905090565b60008061061561072b565b9050600061062382866106a4565b905083811015610668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065f906114cc565b60405180910390fd5b6106758286868403610733565b60019250505092915050565b60008061068c61072b565b905061069981858561098a565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a906114ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080a906113ec565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108f191906114ec565b60405180910390a3505050565b600061090a84846106a4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109845781811015610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d9061140c565b60405180910390fd5b6109838484848403610733565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f19061148c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a61906113ac565b60405180910390fd5b610a75838383610de2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af29061142c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b8e919061153e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bf291906114ec565b60405180910390a3610c05848484610de7565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c729061146c565b60405180910390fd5b610c8782600083610de2565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906113cc565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610d649190611594565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dc991906114ec565b60405180910390a3610ddd83600084610de7565b505050565b505050565b505050565b600081359050610dfb816116f1565b92915050565b600081359050610e1081611708565b92915050565b600060208284031215610e2857600080fd5b6000610e3684828501610dec565b91505092915050565b60008060408385031215610e5257600080fd5b6000610e6085828601610dec565b9250506020610e7185828601610dec565b9150509250929050565b600080600060608486031215610e9057600080fd5b6000610e9e86828701610dec565b9350506020610eaf86828701610dec565b9250506040610ec086828701610e01565b9150509250925092565b60008060408385031215610edd57600080fd5b6000610eeb85828601610dec565b9250506020610efc85828601610e01565b9150509250929050565b600060208284031215610f1857600080fd5b6000610f2684828501610e01565b91505092915050565b610f38816115c8565b82525050565b610f47816115da565b82525050565b6000610f5882611522565b610f62818561152d565b9350610f7281856020860161161d565b610f7b816116e0565b840191505092915050565b6000610f9360238361152d565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ff960228361152d565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061105f60228361152d565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006110c5601d8361152d565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061110560268361152d565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061116b60158361152d565b91507f596f7520617265206e6f7420746865206f776e657200000000000000000000006000830152602082019050919050565b60006111ab60218361152d565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061121160258361152d565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061127760248361152d565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112dd60258361152d565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61133f81611606565b82525050565b61134e81611610565b82525050565b60006020820190506113696000830184610f2f565b92915050565b60006020820190506113846000830184610f3e565b92915050565b600060208201905081810360008301526113a48184610f4d565b905092915050565b600060208201905081810360008301526113c581610f86565b9050919050565b600060208201905081810360008301526113e581610fec565b9050919050565b6000602082019050818103600083015261140581611052565b9050919050565b60006020820190508181036000830152611425816110b8565b9050919050565b60006020820190508181036000830152611445816110f8565b9050919050565b600060208201905081810360008301526114658161115e565b9050919050565b600060208201905081810360008301526114858161119e565b9050919050565b600060208201905081810360008301526114a581611204565b9050919050565b600060208201905081810360008301526114c58161126a565b9050919050565b600060208201905081810360008301526114e5816112d0565b9050919050565b60006020820190506115016000830184611336565b92915050565b600060208201905061151c6000830184611345565b92915050565b600081519050919050565b600082825260208201905092915050565b600061154982611606565b915061155483611606565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561158957611588611682565b5b828201905092915050565b600061159f82611606565b91506115aa83611606565b9250828210156115bd576115bc611682565b5b828203905092915050565b60006115d3826115e6565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561163b578082015181840152602081019050611620565b8381111561164a576000848401525b50505050565b6000600282049050600182168061166857607f821691505b6020821081141561167c5761167b6116b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6116fa816115c8565b811461170557600080fd5b50565b61171181611606565b811461171c57600080fd5b5056fea26469706673582212204cd9647a68156842ef44a6bf3fbc8765e71b0aa2301ba13584ed37c0adf27bce64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000017dfcdece40000000000000000000000000000000000000000000000000000000000000000008444f444f204c46470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004444f444f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806362a094771161008c57806395d89b411161006657806395d89b411461024d578063a457c2d71461026b578063a9059cbb1461029b578063dd62ed3e146102cb576100ea565b806362a09477146101f557806370a08231146101ff5780638da5cb5b1461022f576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806342966c68146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b604051610104919061138a565b60405180910390f35b61012760048036038101906101229190610eca565b61038d565b604051610134919061136f565b60405180910390f35b6101456103b0565b60405161015291906114ec565b60405180910390f35b61017560048036038101906101709190610e7b565b6103ba565b604051610182919061136f565b60405180910390f35b6101936103e9565b6040516101a09190611507565b60405180910390f35b6101c360048036038101906101be9190610eca565b6103f2565b6040516101d0919061136f565b60405180910390f35b6101f360048036038101906101ee9190610f06565b610429565b005b6101fd610436565b005b61021960048036038101906102149190610e16565b61050a565b60405161022691906114ec565b60405180910390f35b610237610552565b6040516102449190611354565b60405180910390f35b610255610578565b604051610262919061138a565b60405180910390f35b61028560048036038101906102809190610eca565b61060a565b604051610292919061136f565b60405180910390f35b6102b560048036038101906102b09190610eca565b610681565b6040516102c2919061136f565b60405180910390f35b6102e560048036038101906102e09190610e3f565b6106a4565b6040516102f291906114ec565b60405180910390f35b60606003805461030a90611650565b80601f016020809104026020016040519081016040528092919081815260200182805461033690611650565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60008061039861072b565b90506103a5818585610733565b600191505092915050565b6000600254905090565b6000806103c561072b565b90506103d28582856108fe565b6103dd85858561098a565b60019150509392505050565b60006012905090565b6000806103fd61072b565b905061041e81858561040f85896106a4565b610419919061153e565b610733565b600191505092915050565b6104333382610c0b565b50565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104bd9061144c565b60405180910390fd5b6000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461058790611650565b80601f01602080910402602001604051908101604052809291908181526020018280546105b390611650565b80156106005780601f106105d557610100808354040283529160200191610600565b820191906000526020600020905b8154815290600101906020018083116105e357829003601f168201915b5050505050905090565b60008061061561072b565b9050600061062382866106a4565b905083811015610668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065f906114cc565b60405180910390fd5b6106758286868403610733565b60019250505092915050565b60008061068c61072b565b905061069981858561098a565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a906114ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080a906113ec565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108f191906114ec565b60405180910390a3505050565b600061090a84846106a4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109845781811015610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d9061140c565b60405180910390fd5b6109838484848403610733565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f19061148c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a61906113ac565b60405180910390fd5b610a75838383610de2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af29061142c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b8e919061153e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bf291906114ec565b60405180910390a3610c05848484610de7565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c729061146c565b60405180910390fd5b610c8782600083610de2565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906113cc565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610d649190611594565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dc991906114ec565b60405180910390a3610ddd83600084610de7565b505050565b505050565b505050565b600081359050610dfb816116f1565b92915050565b600081359050610e1081611708565b92915050565b600060208284031215610e2857600080fd5b6000610e3684828501610dec565b91505092915050565b60008060408385031215610e5257600080fd5b6000610e6085828601610dec565b9250506020610e7185828601610dec565b9150509250929050565b600080600060608486031215610e9057600080fd5b6000610e9e86828701610dec565b9350506020610eaf86828701610dec565b9250506040610ec086828701610e01565b9150509250925092565b60008060408385031215610edd57600080fd5b6000610eeb85828601610dec565b9250506020610efc85828601610e01565b9150509250929050565b600060208284031215610f1857600080fd5b6000610f2684828501610e01565b91505092915050565b610f38816115c8565b82525050565b610f47816115da565b82525050565b6000610f5882611522565b610f62818561152d565b9350610f7281856020860161161d565b610f7b816116e0565b840191505092915050565b6000610f9360238361152d565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ff960228361152d565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061105f60228361152d565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006110c5601d8361152d565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061110560268361152d565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061116b60158361152d565b91507f596f7520617265206e6f7420746865206f776e657200000000000000000000006000830152602082019050919050565b60006111ab60218361152d565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061121160258361152d565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061127760248361152d565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112dd60258361152d565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61133f81611606565b82525050565b61134e81611610565b82525050565b60006020820190506113696000830184610f2f565b92915050565b60006020820190506113846000830184610f3e565b92915050565b600060208201905081810360008301526113a48184610f4d565b905092915050565b600060208201905081810360008301526113c581610f86565b9050919050565b600060208201905081810360008301526113e581610fec565b9050919050565b6000602082019050818103600083015261140581611052565b9050919050565b60006020820190508181036000830152611425816110b8565b9050919050565b60006020820190508181036000830152611445816110f8565b9050919050565b600060208201905081810360008301526114658161115e565b9050919050565b600060208201905081810360008301526114858161119e565b9050919050565b600060208201905081810360008301526114a581611204565b9050919050565b600060208201905081810360008301526114c58161126a565b9050919050565b600060208201905081810360008301526114e5816112d0565b9050919050565b60006020820190506115016000830184611336565b92915050565b600060208201905061151c6000830184611345565b92915050565b600081519050919050565b600082825260208201905092915050565b600061154982611606565b915061155483611606565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561158957611588611682565b5b828201905092915050565b600061159f82611606565b91506115aa83611606565b9250828210156115bd576115bc611682565b5b828203905092915050565b60006115d3826115e6565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561163b578082015181840152602081019050611620565b8381111561164a576000848401525b50505050565b6000600282049050600182168061166857607f821691505b6020821081141561167c5761167b6116b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6116fa816115c8565b811461170557600080fd5b50565b61171181611606565b811461171c57600080fd5b5056fea26469706673582212204cd9647a68156842ef44a6bf3fbc8765e71b0aa2301ba13584ed37c0adf27bce64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000017dfcdece40000000000000000000000000000000000000000000000000000000000000000008444f444f204c46470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004444f444f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): DODO LFG
Arg [1] : symbol (string): DODO
Arg [2] : totalSupply (uint256): 420000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000017dfcdece4000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 444f444f204c4647000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 444f444f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

17516:780:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6680:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9031:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7800:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9812:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7642:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10516:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18209:82;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18089:112;;;:::i;:::-;;7971:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17551:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6899:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11257:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8304:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8560:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6680:100;6734:13;6767:5;6760:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6680:100;:::o;9031:201::-;9114:4;9131:13;9147:12;:10;:12::i;:::-;9131:28;;9170:32;9179:5;9186:7;9195:6;9170:8;:32::i;:::-;9220:4;9213:11;;;9031:201;;;;:::o;7800:108::-;7861:7;7888:12;;7881:19;;7800:108;:::o;9812:295::-;9943:4;9960:15;9978:12;:10;:12::i;:::-;9960:30;;10001:38;10017:4;10023:7;10032:6;10001:15;:38::i;:::-;10050:27;10060:4;10066:2;10070:6;10050:9;:27::i;:::-;10095:4;10088:11;;;9812:295;;;;;:::o;7642:93::-;7700:5;7725:2;7718:9;;7642:93;:::o;10516:238::-;10604:4;10621:13;10637:12;:10;:12::i;:::-;10621:28;;10660:64;10669:5;10676:7;10713:10;10685:25;10695:5;10702:7;10685:9;:25::i;:::-;:38;;;;:::i;:::-;10660:8;:64::i;:::-;10742:4;10735:11;;;10516:238;;;;:::o;18209:82::-;18259:24;18265:10;18277:5;18259;:24::i;:::-;18209:82;:::o;18089:112::-;17997:5;;;;;;;;;;;17983:19;;:10;:19;;;17975:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;18151:42:::1;18143:5;;:50;;;;;;;;;;;;;;;;;;18089:112::o:0;7971:127::-;8045:7;8072:9;:18;8082:7;8072:18;;;;;;;;;;;;;;;;8065:25;;7971:127;;;:::o;17551:21::-;;;;;;;;;;;;;:::o;6899:104::-;6955:13;6988:7;6981:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6899:104;:::o;11257:436::-;11350:4;11367:13;11383:12;:10;:12::i;:::-;11367:28;;11406:24;11433:25;11443:5;11450:7;11433:9;:25::i;:::-;11406:52;;11497:15;11477:16;:35;;11469:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11590:60;11599:5;11606:7;11634:15;11615:16;:34;11590:8;:60::i;:::-;11681:4;11674:11;;;;11257:436;;;;:::o;8304:193::-;8383:4;8400:13;8416:12;:10;:12::i;:::-;8400:28;;8439;8449:5;8456:2;8460:6;8439:9;:28::i;:::-;8485:4;8478:11;;;8304:193;;;;:::o;8560:151::-;8649:7;8676:11;:18;8688:5;8676:18;;;;;;;;;;;;;;;:27;8695:7;8676:27;;;;;;;;;;;;;;;;8669:34;;8560:151;;;;:::o;710:98::-;763:7;790:10;783:17;;710:98;:::o;14882:380::-;15035:1;15018:19;;:5;:19;;;;15010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15116:1;15097:21;;:7;:21;;;;15089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15200:6;15170:11;:18;15182:5;15170:18;;;;;;;;;;;;;;;:27;15189:7;15170:27;;;;;;;;;;;;;;;:36;;;;15238:7;15222:32;;15231:5;15222:32;;;15247:6;15222:32;;;;;;:::i;:::-;;;;;;;;14882:380;;;:::o;15553:453::-;15688:24;15715:25;15725:5;15732:7;15715:9;:25::i;:::-;15688:52;;15775:17;15755:16;:37;15751:248;;15837:6;15817:16;:26;;15809:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15921:51;15930:5;15937:7;15965:6;15946:16;:25;15921:8;:51::i;:::-;15751:248;15553:453;;;;:::o;12163:671::-;12310:1;12294:18;;:4;:18;;;;12286:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12387:1;12373:16;;:2;:16;;;;12365:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12442:38;12463:4;12469:2;12473:6;12442:20;:38::i;:::-;12493:19;12515:9;:15;12525:4;12515:15;;;;;;;;;;;;;;;;12493:37;;12564:6;12549:11;:21;;12541:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12681:6;12667:11;:20;12649:9;:15;12659:4;12649:15;;;;;;;;;;;;;;;:38;;;;12726:6;12709:9;:13;12719:2;12709:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12765:2;12750:26;;12759:4;12750:26;;;12769:6;12750:26;;;;;;:::i;:::-;;;;;;;;12789:37;12809:4;12815:2;12819:6;12789:19;:37::i;:::-;12163:671;;;;:::o;13853:591::-;13956:1;13937:21;;:7;:21;;;;13929:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14009:49;14030:7;14047:1;14051:6;14009:20;:49::i;:::-;14071:22;14096:9;:18;14106:7;14096:18;;;;;;;;;;;;;;;;14071:43;;14151:6;14133:14;:24;;14125:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14270:6;14253:14;:23;14232:9;:18;14242:7;14232:18;;;;;;;;;;;;;;;:44;;;;14314:6;14298:12;;:22;;;;;;;:::i;:::-;;;;;;;;14364:1;14338:37;;14347:7;14338:37;;;14368:6;14338:37;;;;;;:::i;:::-;;;;;;;;14388:48;14408:7;14425:1;14429:6;14388:19;:48::i;:::-;13853:591;;;:::o;16606:125::-;;;;:::o;17335:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:366::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:34;3827:1;3822:3;3818:11;3811:55;3897:4;3892:2;3887:3;3883:12;3876:26;3928:2;3923:3;3919:12;3912:19;;3717:220;;;:::o;3943:327::-;;4106:67;4170:2;4165:3;4106:67;:::i;:::-;4099:74;;4203:31;4199:1;4194:3;4190:11;4183:52;4261:2;4256:3;4252:12;4245:19;;4089:181;;;:::o;4276:370::-;;4439:67;4503:2;4498:3;4439:67;:::i;:::-;4432:74;;4536:34;4532:1;4527:3;4523:11;4516:55;4602:8;4597:2;4592:3;4588:12;4581:30;4637:2;4632:3;4628:12;4621:19;;4422:224;;;:::o;4652:319::-;;4815:67;4879:2;4874:3;4815:67;:::i;:::-;4808:74;;4912:23;4908:1;4903:3;4899:11;4892:44;4962:2;4957:3;4953:12;4946:19;;4798:173;;;:::o;4977:365::-;;5140:67;5204:2;5199:3;5140:67;:::i;:::-;5133:74;;5237:34;5233:1;5228:3;5224:11;5217:55;5303:3;5298:2;5293:3;5289:12;5282:25;5333:2;5328:3;5324:12;5317:19;;5123:219;;;:::o;5348:369::-;;5511:67;5575:2;5570:3;5511:67;:::i;:::-;5504:74;;5608:34;5604:1;5599:3;5595:11;5588:55;5674:7;5669:2;5664:3;5660:12;5653:29;5708:2;5703:3;5699:12;5692:19;;5494:223;;;:::o;5723:368::-;;5886:67;5950:2;5945:3;5886:67;:::i;:::-;5879:74;;5983:34;5979:1;5974:3;5970:11;5963:55;6049:6;6044:2;6039:3;6035:12;6028:28;6082:2;6077:3;6073:12;6066:19;;5869:222;;;:::o;6097:369::-;;6260:67;6324:2;6319:3;6260:67;:::i;:::-;6253:74;;6357:34;6353:1;6348:3;6344:11;6337:55;6423:7;6418:2;6413:3;6409:12;6402:29;6457:2;6452:3;6448:12;6441:19;;6243:223;;;:::o;6472:118::-;6559:24;6577:5;6559:24;:::i;:::-;6554:3;6547:37;6537:53;;:::o;6596:112::-;6679:22;6695:5;6679:22;:::i;:::-;6674:3;6667:35;6657:51;;:::o;6714:222::-;;6845:2;6834:9;6830:18;6822:26;;6858:71;6926:1;6915:9;6911:17;6902:6;6858:71;:::i;:::-;6812:124;;;;:::o;6942:210::-;;7067:2;7056:9;7052:18;7044:26;;7080:65;7142:1;7131:9;7127:17;7118:6;7080:65;:::i;:::-;7034:118;;;;:::o;7158:313::-;;7309:2;7298:9;7294:18;7286:26;;7358:9;7352:4;7348:20;7344:1;7333:9;7329:17;7322:47;7386:78;7459:4;7450:6;7386:78;:::i;:::-;7378:86;;7276:195;;;;:::o;7477:419::-;;7681:2;7670:9;7666:18;7658:26;;7730:9;7724:4;7720:20;7716:1;7705:9;7701:17;7694:47;7758:131;7884:4;7758:131;:::i;:::-;7750:139;;7648:248;;;:::o;7902:419::-;;8106:2;8095:9;8091:18;8083:26;;8155:9;8149:4;8145:20;8141:1;8130:9;8126:17;8119:47;8183:131;8309:4;8183:131;:::i;:::-;8175:139;;8073:248;;;:::o;8327:419::-;;8531:2;8520:9;8516:18;8508:26;;8580:9;8574:4;8570:20;8566:1;8555:9;8551:17;8544:47;8608:131;8734:4;8608:131;:::i;:::-;8600:139;;8498:248;;;:::o;8752:419::-;;8956:2;8945:9;8941:18;8933:26;;9005:9;8999:4;8995:20;8991:1;8980:9;8976:17;8969:47;9033:131;9159:4;9033:131;:::i;:::-;9025:139;;8923:248;;;:::o;9177:419::-;;9381:2;9370:9;9366:18;9358:26;;9430:9;9424:4;9420:20;9416:1;9405:9;9401:17;9394:47;9458:131;9584:4;9458:131;:::i;:::-;9450:139;;9348:248;;;:::o;9602:419::-;;9806:2;9795:9;9791:18;9783:26;;9855:9;9849:4;9845:20;9841:1;9830:9;9826:17;9819:47;9883:131;10009:4;9883:131;:::i;:::-;9875:139;;9773:248;;;:::o;10027:419::-;;10231:2;10220:9;10216:18;10208:26;;10280:9;10274:4;10270:20;10266:1;10255:9;10251:17;10244:47;10308:131;10434:4;10308:131;:::i;:::-;10300:139;;10198:248;;;:::o;10452:419::-;;10656:2;10645:9;10641:18;10633:26;;10705:9;10699:4;10695:20;10691:1;10680:9;10676:17;10669:47;10733:131;10859:4;10733:131;:::i;:::-;10725:139;;10623:248;;;:::o;10877:419::-;;11081:2;11070:9;11066:18;11058:26;;11130:9;11124:4;11120:20;11116:1;11105:9;11101:17;11094:47;11158:131;11284:4;11158:131;:::i;:::-;11150:139;;11048:248;;;:::o;11302:419::-;;11506:2;11495:9;11491:18;11483:26;;11555:9;11549:4;11545:20;11541:1;11530:9;11526:17;11519:47;11583:131;11709:4;11583:131;:::i;:::-;11575:139;;11473:248;;;:::o;11727:222::-;;11858:2;11847:9;11843:18;11835:26;;11871:71;11939:1;11928:9;11924:17;11915:6;11871:71;:::i;:::-;11825:124;;;;:::o;11955:214::-;;12082:2;12071:9;12067:18;12059:26;;12095:67;12159:1;12148:9;12144:17;12135:6;12095:67;:::i;:::-;12049:120;;;;:::o;12175:99::-;;12261:5;12255:12;12245:22;;12234:40;;;:::o;12280:169::-;;12398:6;12393:3;12386:19;12438:4;12433:3;12429:14;12414:29;;12376:73;;;;:::o;12455:305::-;;12514:20;12532:1;12514:20;:::i;:::-;12509:25;;12548:20;12566:1;12548:20;:::i;:::-;12543:25;;12702:1;12634:66;12630:74;12627:1;12624:81;12621:2;;;12708:18;;:::i;:::-;12621:2;12752:1;12749;12745:9;12738:16;;12499:261;;;;:::o;12766:191::-;;12826:20;12844:1;12826:20;:::i;:::-;12821:25;;12860:20;12878:1;12860:20;:::i;:::-;12855:25;;12899:1;12896;12893:8;12890:2;;;12904:18;;:::i;:::-;12890:2;12949:1;12946;12942:9;12934:17;;12811:146;;;;:::o;12963:96::-;;13029:24;13047:5;13029:24;:::i;:::-;13018:35;;13008:51;;;:::o;13065:90::-;;13142:5;13135:13;13128:21;13117:32;;13107:48;;;:::o;13161:126::-;;13238:42;13231:5;13227:54;13216:65;;13206:81;;;:::o;13293:77::-;;13359:5;13348:16;;13338:32;;;:::o;13376:86::-;;13451:4;13444:5;13440:16;13429:27;;13419:43;;;:::o;13468:307::-;13536:1;13546:113;13560:6;13557:1;13554:13;13546:113;;;13645:1;13640:3;13636:11;13630:18;13626:1;13621:3;13617:11;13610:39;13582:2;13579:1;13575:10;13570:15;;13546:113;;;13677:6;13674:1;13671:13;13668:2;;;13757:1;13748:6;13743:3;13739:16;13732:27;13668:2;13517:258;;;;:::o;13781:320::-;;13862:1;13856:4;13852:12;13842:22;;13909:1;13903:4;13899:12;13930:18;13920:2;;13986:4;13978:6;13974:17;13964:27;;13920:2;14048;14040:6;14037:14;14017:18;14014:38;14011:2;;;14067:18;;:::i;:::-;14011:2;13832:269;;;;:::o;14107:180::-;14155:77;14152:1;14145:88;14252:4;14249:1;14242:15;14276:4;14273:1;14266:15;14293:180;14341:77;14338:1;14331:88;14438:4;14435:1;14428:15;14462:4;14459:1;14452:15;14479:102;;14571:2;14567:7;14562:2;14555:5;14551:14;14547:28;14537:38;;14527:54;;;:::o;14587:122::-;14660:24;14678:5;14660:24;:::i;:::-;14653:5;14650:35;14640:2;;14699:1;14696;14689:12;14640:2;14630:79;:::o;14715:122::-;14788:24;14806:5;14788:24;:::i;:::-;14781:5;14778:35;14768:2;;14827:1;14824;14817:12;14768:2;14758:79;:::o

Swarm Source

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