ETH Price: $3,187.77 (+2.28%)
Gas: 2 Gwei

Token

penguin (penguin)
 

Overview

Max Total Supply

413,600,000,000 penguin

Holders

480

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
famzy.eth
Balance
2,487,941.227598644226731582 penguin

Value
$0.00
0x8709A1e4CF079f49e918E172974655Bc124E0665
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:
ERC333

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-22
*/

// Sources flattened with hardhat v2.19.4 https://hardhat.org

// SPDX-License-Identifier: MIT

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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.
 *
 * By default, the owner account will be the one that deploys the contract. 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;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @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(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: 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 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/[email protected]

// Original license: SPDX_License_Identifier: MIT
// 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/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 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");
        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;
            // 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);

        _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 contracts/erc333/ERC333.sol

// Original license: SPDX_License_Identifier: MIT
// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.9;


contract ERC333 is ERC20, Ownable {

    uint256 public total;
    uint256 public singleSupply;

    uint256 public mint10Price;
    uint256 public mint100Price;

    modifier onlyEOA() {
    require(tx.origin == msg.sender, 'only EOA can call');
    _;
    }

    constructor(string memory name_, string memory symbol_, uint256 total_, uint256 singleSupply_, uint256 mint10Price_, uint256 mint100Price_)
        ERC20(name_, symbol_)
        Ownable()
    {
        total = total_;
        singleSupply = singleSupply_;
        mint10Price = mint10Price_;
        mint100Price = mint100Price_;
    }

    function mint() public onlyEOA {
        require(totalSupply() + singleSupply * 10 ** decimals() <= total * 10 ** decimals(), 'minted out');
        _mint(msg.sender, singleSupply * 10 ** decimals());
    }

    function mint10() public payable onlyEOA {
        require(totalSupply() + 10 * singleSupply * 10 ** decimals() <= total * 10 ** decimals(), 'minted out');
        require(msg.value >= mint10Price, 'not enough e');
        _mint(msg.sender, 10 * singleSupply * 10 ** decimals());
    }

    function mint100() public payable onlyEOA {
        require(totalSupply() + 100 * singleSupply * 10 ** decimals() <= total * 10 ** decimals(), 'minted out');
        require(msg.value >= mint100Price, 'not enough e');
        _mint(msg.sender, 100 * singleSupply * 10 ** decimals());
    }

    function setParams(uint256 total_, uint256 singleSupply_, uint256 mint10Price_, uint256 mint100Price_) public onlyOwner {
        total = total_;
        singleSupply = singleSupply_;
        mint10Price = mint10Price_;
        mint100Price = mint100Price_;
    }

    function mintLiquidity() public onlyOwner {
        _mint(msg.sender, total/5 * 10 ** decimals());
    }

    function transferBalance(address payable to, uint256 ammount) onlyOwner public{
        require(address(this).balance >= ammount);
        to.transfer(ammount);
    }

    function transferERC20Balance(address erc20ContractAddress, address payable to, uint256 ammount) onlyOwner public{
        IERC20(erc20ContractAddress).transfer(to, ammount);
    }

    function transferOwnership(address newOwner) public override onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"total_","type":"uint256"},{"internalType":"uint256","name":"singleSupply_","type":"uint256"},{"internalType":"uint256","name":"mint10Price_","type":"uint256"},{"internalType":"uint256","name":"mint100Price_","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mint10","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mint100","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mint100Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint10Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLiquidity","outputs":[],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"total_","type":"uint256"},{"internalType":"uint256","name":"singleSupply_","type":"uint256"},{"internalType":"uint256","name":"mint10Price_","type":"uint256"},{"internalType":"uint256","name":"mint100Price_","type":"uint256"}],"name":"setParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"singleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"total","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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 payable","name":"to","type":"address"},{"internalType":"uint256","name":"ammount","type":"uint256"}],"name":"transferBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"erc20ContractAddress","type":"address"},{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"ammount","type":"uint256"}],"name":"transferERC20Balance","outputs":[],"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620015b0380380620015b0833981016040819052620000349162000264565b8551869086906200004d906003906020850190620000f1565b50805162000063906004906020840190620000f1565b505050620000806200007a6200009b60201b60201c565b6200009f565b60069390935560079190915560085560095550620003309050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000ff90620002f3565b90600052602060002090601f0160209004810192826200012357600085556200016e565b82601f106200013e57805160ff19168380011785556200016e565b828001600101855582156200016e579182015b828111156200016e57825182559160200191906001019062000151565b506200017c92915062000180565b5090565b5b808211156200017c576000815560010162000181565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001bf57600080fd5b81516001600160401b0380821115620001dc57620001dc62000197565b604051601f8301601f19908116603f0116810190828211818310171562000207576200020762000197565b816040528381526020925086838588010111156200022457600080fd5b600091505b8382101562000248578582018301518183018401529082019062000229565b838211156200025a5760008385830101525b9695505050505050565b60008060008060008060c087890312156200027e57600080fd5b86516001600160401b03808211156200029657600080fd5b620002a48a838b01620001ad565b97506020890151915080821115620002bb57600080fd5b50620002ca89828a01620001ad565b95505060408701519350606087015192506080870151915060a087015190509295509295509295565b600181811c908216806200030857607f821691505b602082108114156200032a57634e487b7160e01b600052602260045260246000fd5b50919050565b61127080620003406000396000f3fe6080604052600436106101665760003560e01c806356a6d9ef116100d15780638da5cb5b1161008a578063a9059cbb11610064578063a9059cbb146103c7578063dd62ed3e146103e7578063f2fde38b14610407578063fbbcdcb91461042757600080fd5b80638da5cb5b1461036a57806395d89b4114610392578063a457c2d7146103a757600080fd5b806356a6d9ef146102c25780635e8c2c18146102e257806370a08231146102f7578063715018a61461032d57806375f4539c146103425780637ece45e81461034a57600080fd5b806329f61b081161012357806329f61b08146102325780632ddbd13a14610252578063313ce5671461026857806339509351146102845780633cd6e3aa146102a45780633f85880d146102ba57600080fd5b806302c9e88d1461016b57806306fdde0314610194578063095ea7b3146101b65780631249c58b146101e657806318160ddd146101fd57806323b872dd14610212575b600080fd5b34801561017757600080fd5b5061018160095481565b6040519081526020015b60405180910390f35b3480156101a057600080fd5b506101a961043d565b60405161018b9190610ec6565b3480156101c257600080fd5b506101d66101d1366004610f30565b6104cf565b604051901515815260200161018b565b3480156101f257600080fd5b506101fb6104e9565b005b34801561020957600080fd5b50600254610181565b34801561021e57600080fd5b506101d661022d366004610f5c565b610592565b34801561023e57600080fd5b506101fb61024d366004610f5c565b6105b6565b34801561025e57600080fd5b5061018160065481565b34801561027457600080fd5b506040516012815260200161018b565b34801561029057600080fd5b506101d661029f366004610f30565b610646565b3480156102b057600080fd5b5061018160085481565b6101fb610668565b3480156102ce57600080fd5b506101fb6102dd366004610f30565b610758565b3480156102ee57600080fd5b506101fb6107a8565b34801561030357600080fd5b50610181610312366004610f9d565b6001600160a01b031660009081526020819052604090205490565b34801561033957600080fd5b506101fb6107cf565b6101fb6107e1565b34801561035657600080fd5b506101fb610365366004610fc1565b6108c7565b34801561037657600080fd5b506005546040516001600160a01b03909116815260200161018b565b34801561039e57600080fd5b506101a96108e3565b3480156103b357600080fd5b506101d66103c2366004610f30565b6108f2565b3480156103d357600080fd5b506101d66103e2366004610f30565b61096d565b3480156103f357600080fd5b50610181610402366004610ff3565b61097b565b34801561041357600080fd5b506101fb610422366004610f9d565b6109a6565b34801561043357600080fd5b5061018160075481565b60606003805461044c9061102c565b80601f01602080910402602001604051908101604052809291908181526020018280546104789061102c565b80156104c55780601f1061049a576101008083540402835291602001916104c5565b820191906000526020600020905b8154815290600101906020018083116104a857829003601f168201915b5050505050905090565b6000336104dd818585610a1f565b60019150505b92915050565b3233146105115760405162461bcd60e51b815260040161050890611067565b60405180910390fd5b61051d6012600a61118c565b60065461052a919061119b565b6105366012600a61118c565b600754610543919061119b565b60025461055091906111ba565b111561056e5760405162461bcd60e51b8152600401610508906111d2565b6105903361057e6012600a61118c565b60075461058b919061119b565b610b43565b565b6000336105a0858285610c02565b6105ab858585610c76565b506001949350505050565b6105be610e1a565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb90604401602060405180830381600087803b15801561060857600080fd5b505af115801561061c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061064091906111f6565b50505050565b6000336104dd818585610659838361097b565b61066391906111ba565b610a1f565b3233146106875760405162461bcd60e51b815260040161050890611067565b6106936012600a61118c565b6006546106a0919061119b565b6106ac6012600a61118c565b6007546106ba90600a61119b565b6106c4919061119b565b6002546106d191906111ba565b11156106ef5760405162461bcd60e51b8152600401610508906111d2565b6008543410156107305760405162461bcd60e51b815260206004820152600c60248201526b6e6f7420656e6f756768206560a01b6044820152606401610508565b610590336107406012600a61118c565b60075461074e90600a61119b565b61058b919061119b565b610760610e1a565b8047101561076d57600080fd5b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156107a3573d6000803e3d6000fd5b505050565b6107b0610e1a565b610590336107c06012600a61118c565b600560065461074e9190611218565b6107d7610e1a565b6105906000610e74565b3233146108005760405162461bcd60e51b815260040161050890611067565b61080c6012600a61118c565b600654610819919061119b565b6108256012600a61118c565b60075461083390606461119b565b61083d919061119b565b60025461084a91906111ba565b11156108685760405162461bcd60e51b8152600401610508906111d2565b6009543410156108a95760405162461bcd60e51b815260206004820152600c60248201526b6e6f7420656e6f756768206560a01b6044820152606401610508565b610590336108b96012600a61118c565b60075461074e90606461119b565b6108cf610e1a565b600693909355600791909155600855600955565b60606004805461044c9061102c565b60003381610900828661097b565b9050838110156109605760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610508565b6105ab8286868403610a1f565b6000336104dd818585610c76565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109ae610e1a565b6001600160a01b038116610a135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610508565b610a1c81610e74565b50565b6001600160a01b038316610a815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610508565b6001600160a01b038216610ae25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610508565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216610b995760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610508565b8060026000828254610bab91906111ba565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000610c0e848461097b565b905060001981146106405781811015610c695760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610508565b6106408484848403610a1f565b6001600160a01b038316610cda5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610508565b6001600160a01b038216610d3c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610508565b6001600160a01b03831660009081526020819052604090205481811015610db45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610508565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610640565b6005546001600160a01b031633146105905760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610508565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610ef357858101830151858201604001528201610ed7565b81811115610f05576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610a1c57600080fd5b60008060408385031215610f4357600080fd5b8235610f4e81610f1b565b946020939093013593505050565b600080600060608486031215610f7157600080fd5b8335610f7c81610f1b565b92506020840135610f8c81610f1b565b929592945050506040919091013590565b600060208284031215610faf57600080fd5b8135610fba81610f1b565b9392505050565b60008060008060808587031215610fd757600080fd5b5050823594602084013594506040840135936060013592509050565b6000806040838503121561100657600080fd5b823561101181610f1b565b9150602083013561102181610f1b565b809150509250929050565b600181811c9082168061104057607f821691505b6020821081141561106157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601190820152701bdb9b1e481153d04818d85b8818d85b1b607a1b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156110e35781600019048211156110c9576110c9611092565b808516156110d657918102915b93841c93908002906110ad565b509250929050565b6000826110fa575060016104e3565b81611107575060006104e3565b816001811461111d576002811461112757611143565b60019150506104e3565b60ff84111561113857611138611092565b50506001821b6104e3565b5060208310610133831016604e8410600b8410161715611166575081810a6104e3565b61117083836110a8565b806000190482111561118457611184611092565b029392505050565b6000610fba60ff8416836110eb565b60008160001904831182151516156111b5576111b5611092565b500290565b600082198211156111cd576111cd611092565b500190565b6020808252600a90820152691b5a5b9d1959081bdd5d60b21b604082015260600190565b60006020828403121561120857600080fd5b81518015158114610fba57600080fd5b60008261123557634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220a8b23e01cf07ade2583bdb4f0184ce841610a512cc79a4b4a61db7d62b0ef82664736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000077359400000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000144936f9aae0000000000000000000000000000000000000000000000000000065409958194000000000000000000000000000000000000000000000000000000000000000000770656e6775696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000770656e6775696e00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101665760003560e01c806356a6d9ef116100d15780638da5cb5b1161008a578063a9059cbb11610064578063a9059cbb146103c7578063dd62ed3e146103e7578063f2fde38b14610407578063fbbcdcb91461042757600080fd5b80638da5cb5b1461036a57806395d89b4114610392578063a457c2d7146103a757600080fd5b806356a6d9ef146102c25780635e8c2c18146102e257806370a08231146102f7578063715018a61461032d57806375f4539c146103425780637ece45e81461034a57600080fd5b806329f61b081161012357806329f61b08146102325780632ddbd13a14610252578063313ce5671461026857806339509351146102845780633cd6e3aa146102a45780633f85880d146102ba57600080fd5b806302c9e88d1461016b57806306fdde0314610194578063095ea7b3146101b65780631249c58b146101e657806318160ddd146101fd57806323b872dd14610212575b600080fd5b34801561017757600080fd5b5061018160095481565b6040519081526020015b60405180910390f35b3480156101a057600080fd5b506101a961043d565b60405161018b9190610ec6565b3480156101c257600080fd5b506101d66101d1366004610f30565b6104cf565b604051901515815260200161018b565b3480156101f257600080fd5b506101fb6104e9565b005b34801561020957600080fd5b50600254610181565b34801561021e57600080fd5b506101d661022d366004610f5c565b610592565b34801561023e57600080fd5b506101fb61024d366004610f5c565b6105b6565b34801561025e57600080fd5b5061018160065481565b34801561027457600080fd5b506040516012815260200161018b565b34801561029057600080fd5b506101d661029f366004610f30565b610646565b3480156102b057600080fd5b5061018160085481565b6101fb610668565b3480156102ce57600080fd5b506101fb6102dd366004610f30565b610758565b3480156102ee57600080fd5b506101fb6107a8565b34801561030357600080fd5b50610181610312366004610f9d565b6001600160a01b031660009081526020819052604090205490565b34801561033957600080fd5b506101fb6107cf565b6101fb6107e1565b34801561035657600080fd5b506101fb610365366004610fc1565b6108c7565b34801561037657600080fd5b506005546040516001600160a01b03909116815260200161018b565b34801561039e57600080fd5b506101a96108e3565b3480156103b357600080fd5b506101d66103c2366004610f30565b6108f2565b3480156103d357600080fd5b506101d66103e2366004610f30565b61096d565b3480156103f357600080fd5b50610181610402366004610ff3565b61097b565b34801561041357600080fd5b506101fb610422366004610f9d565b6109a6565b34801561043357600080fd5b5061018160075481565b60606003805461044c9061102c565b80601f01602080910402602001604051908101604052809291908181526020018280546104789061102c565b80156104c55780601f1061049a576101008083540402835291602001916104c5565b820191906000526020600020905b8154815290600101906020018083116104a857829003601f168201915b5050505050905090565b6000336104dd818585610a1f565b60019150505b92915050565b3233146105115760405162461bcd60e51b815260040161050890611067565b60405180910390fd5b61051d6012600a61118c565b60065461052a919061119b565b6105366012600a61118c565b600754610543919061119b565b60025461055091906111ba565b111561056e5760405162461bcd60e51b8152600401610508906111d2565b6105903361057e6012600a61118c565b60075461058b919061119b565b610b43565b565b6000336105a0858285610c02565b6105ab858585610c76565b506001949350505050565b6105be610e1a565b60405163a9059cbb60e01b81526001600160a01b0383811660048301526024820183905284169063a9059cbb90604401602060405180830381600087803b15801561060857600080fd5b505af115801561061c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061064091906111f6565b50505050565b6000336104dd818585610659838361097b565b61066391906111ba565b610a1f565b3233146106875760405162461bcd60e51b815260040161050890611067565b6106936012600a61118c565b6006546106a0919061119b565b6106ac6012600a61118c565b6007546106ba90600a61119b565b6106c4919061119b565b6002546106d191906111ba565b11156106ef5760405162461bcd60e51b8152600401610508906111d2565b6008543410156107305760405162461bcd60e51b815260206004820152600c60248201526b6e6f7420656e6f756768206560a01b6044820152606401610508565b610590336107406012600a61118c565b60075461074e90600a61119b565b61058b919061119b565b610760610e1a565b8047101561076d57600080fd5b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156107a3573d6000803e3d6000fd5b505050565b6107b0610e1a565b610590336107c06012600a61118c565b600560065461074e9190611218565b6107d7610e1a565b6105906000610e74565b3233146108005760405162461bcd60e51b815260040161050890611067565b61080c6012600a61118c565b600654610819919061119b565b6108256012600a61118c565b60075461083390606461119b565b61083d919061119b565b60025461084a91906111ba565b11156108685760405162461bcd60e51b8152600401610508906111d2565b6009543410156108a95760405162461bcd60e51b815260206004820152600c60248201526b6e6f7420656e6f756768206560a01b6044820152606401610508565b610590336108b96012600a61118c565b60075461074e90606461119b565b6108cf610e1a565b600693909355600791909155600855600955565b60606004805461044c9061102c565b60003381610900828661097b565b9050838110156109605760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610508565b6105ab8286868403610a1f565b6000336104dd818585610c76565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109ae610e1a565b6001600160a01b038116610a135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610508565b610a1c81610e74565b50565b6001600160a01b038316610a815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610508565b6001600160a01b038216610ae25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610508565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216610b995760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610508565b8060026000828254610bab91906111ba565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000610c0e848461097b565b905060001981146106405781811015610c695760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610508565b6106408484848403610a1f565b6001600160a01b038316610cda5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610508565b6001600160a01b038216610d3c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610508565b6001600160a01b03831660009081526020819052604090205481811015610db45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610508565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610640565b6005546001600160a01b031633146105905760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610508565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610ef357858101830151858201604001528201610ed7565b81811115610f05576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610a1c57600080fd5b60008060408385031215610f4357600080fd5b8235610f4e81610f1b565b946020939093013593505050565b600080600060608486031215610f7157600080fd5b8335610f7c81610f1b565b92506020840135610f8c81610f1b565b929592945050506040919091013590565b600060208284031215610faf57600080fd5b8135610fba81610f1b565b9392505050565b60008060008060808587031215610fd757600080fd5b5050823594602084013594506040840135936060013592509050565b6000806040838503121561100657600080fd5b823561101181610f1b565b9150602083013561102181610f1b565b809150509250929050565b600181811c9082168061104057607f821691505b6020821081141561106157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601190820152701bdb9b1e481153d04818d85b8818d85b1b607a1b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156110e35781600019048211156110c9576110c9611092565b808516156110d657918102915b93841c93908002906110ad565b509250929050565b6000826110fa575060016104e3565b81611107575060006104e3565b816001811461111d576002811461112757611143565b60019150506104e3565b60ff84111561113857611138611092565b50506001821b6104e3565b5060208310610133831016604e8410600b8410161715611166575081810a6104e3565b61117083836110a8565b806000190482111561118457611184611092565b029392505050565b6000610fba60ff8416836110eb565b60008160001904831182151516156111b5576111b5611092565b500290565b600082198211156111cd576111cd611092565b500190565b6020808252600a90820152691b5a5b9d1959081bdd5d60b21b604082015260600190565b60006020828403121561120857600080fd5b81518015158114610fba57600080fd5b60008261123557634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220a8b23e01cf07ade2583bdb4f0184ce841610a512cc79a4b4a61db7d62b0ef82664736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000077359400000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000144936f9aae0000000000000000000000000000000000000000000000000000065409958194000000000000000000000000000000000000000000000000000000000000000000770656e6775696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000770656e6775696e00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): penguin
Arg [1] : symbol_ (string): penguin
Arg [2] : total_ (uint256): 2000000000
Arg [3] : singleSupply_ (uint256): 10000
Arg [4] : mint10Price_ (uint256): 5710000000000000
Arg [5] : mint100Price_ (uint256): 28500000000000000

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000077359400
Arg [3] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [4] : 00000000000000000000000000000000000000000000000000144936f9aae000
Arg [5] : 0000000000000000000000000000000000000000000000000065409958194000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 70656e6775696e00000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [9] : 70656e6775696e00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

20977:2408:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21116:27;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;21116:27:0;;;;;;;;9813:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;12173:201::-;;;;;;;;;;-1:-1:-1;12173:201:0;;;;;:::i;:::-;;:::i;:::-;;;1419:14:1;;1412:22;1394:41;;1382:2;1367:18;12173:201:0;1254:187:1;21606:209:0;;;;;;;;;;;;;:::i;:::-;;10942:108;;;;;;;;;;-1:-1:-1;11030:12:0;;10942:108;;12954:261;;;;;;;;;;-1:-1:-1;12954:261:0;;;;;:::i;:::-;;:::i;22988:182::-;;;;;;;;;;-1:-1:-1;22988:182:0;;;;;:::i;:::-;;:::i;21020:20::-;;;;;;;;;;;;;;;;10784:93;;;;;;;;;;-1:-1:-1;10784:93:0;;10867:2;2518:36:1;;2506:2;2491:18;10784:93:0;2376:184:1;13624:238:0;;;;;;;;;;-1:-1:-1;13624:238:0;;;;;:::i;:::-;;:::i;21083:26::-;;;;;;;;;;;;;;;;21823:289;;;:::i;22811:169::-;;;;;;;;;;-1:-1:-1;22811:169:0;;;;;:::i;:::-;;:::i;22697:106::-;;;;;;;;;;;;;:::i;11113:127::-;;;;;;;;;;-1:-1:-1;11113:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11214:18:0;11187:7;11214:18;;;;;;;;;;;;11113:127;3101:103;;;;;;;;;;;;;:::i;22120:293::-;;;:::i;22421:268::-;;;;;;;;;;-1:-1:-1;22421:268:0;;;;;:::i;:::-;;:::i;2460:87::-;;;;;;;;;;-1:-1:-1;2533:6:0;;2460:87;;-1:-1:-1;;;;;2533:6:0;;;3681:51:1;;3669:2;3654:18;2460:87:0;3535:203:1;10032:104:0;;;;;;;;;;;;;:::i;14365:436::-;;;;;;;;;;-1:-1:-1;14365:436:0;;;;;:::i;:::-;;:::i;11446:193::-;;;;;;;;;;-1:-1:-1;11446:193:0;;;;;:::i;:::-;;:::i;11702:151::-;;;;;;;;;;-1:-1:-1;11702:151:0;;;;;:::i;:::-;;:::i;23178:202::-;;;;;;;;;;-1:-1:-1;23178:202:0;;;;;:::i;:::-;;:::i;21047:27::-;;;;;;;;;;;;;;;;9813:100;9867:13;9900:5;9893:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9813:100;:::o;12173:201::-;12256:4;929:10;12312:32;929:10;12328:7;12337:6;12312:8;:32::i;:::-;12362:4;12355:11;;;12173:201;;;;;:::o;21606:209::-;21186:9;21199:10;21186:23;21178:53;;;;-1:-1:-1;;;21178:53:0;;;;;;;:::i;:::-;;;;;;;;;21715:16:::1;10867:2:::0;21715::::1;:16;:::i;:::-;21707:5;;:24;;;;:::i;:::-;21687:16;10867:2:::0;21687::::1;:16;:::i;:::-;21672:12;;:31;;;;:::i;:::-;11030:12:::0;;21656:47:::1;;;;:::i;:::-;:75;;21648:98;;;;-1:-1:-1::0;;;21648:98:0::1;;;;;;;:::i;:::-;21757:50;21763:10;21790:16;10867:2:::0;21790::::1;:16;:::i;:::-;21775:12;;:31;;;;:::i;:::-;21757:5;:50::i;:::-;21606:209::o:0;12954:261::-;13051:4;929:10;13109:38;13125:4;929:10;13140:6;13109:15;:38::i;:::-;13158:27;13168:4;13174:2;13178:6;13158:9;:27::i;:::-;-1:-1:-1;13203:4:0;;12954:261;-1:-1:-1;;;;12954:261:0:o;22988:182::-;2346:13;:11;:13::i;:::-;23112:50:::1;::::0;-1:-1:-1;;;23112:50:0;;-1:-1:-1;;;;;7227:32:1;;;23112:50:0::1;::::0;::::1;7209:51:1::0;7276:18;;;7269:34;;;23112:37:0;::::1;::::0;::::1;::::0;7182:18:1;;23112:50:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;22988:182:::0;;;:::o;13624:238::-;13712:4;929:10;13768:64;929:10;13784:7;13821:10;13793:25;929:10;13784:7;13793:9;:25::i;:::-;:38;;;;:::i;:::-;13768:8;:64::i;21823:289::-;21186:9;21199:10;21186:23;21178:53;;;;-1:-1:-1;;;21178:53:0;;;;;;;:::i;:::-;21947:16:::1;10867:2:::0;21947::::1;:16;:::i;:::-;21939:5;;:24;;;;:::i;:::-;21919:16;10867:2:::0;21919::::1;:16;:::i;:::-;21904:12;::::0;21899:17:::1;::::0;:2:::1;:17;:::i;:::-;:36;;;;:::i;:::-;11030:12:::0;;21883:52:::1;;;;:::i;:::-;:80;;21875:103;;;;-1:-1:-1::0;;;21875:103:0::1;;;;;;;:::i;:::-;22010:11;;21997:9;:24;;21989:49;;;::::0;-1:-1:-1;;;21989:49:0;;7798:2:1;21989:49:0::1;::::0;::::1;7780:21:1::0;7837:2;7817:18;;;7810:30;-1:-1:-1;;;7856:18:1;;;7849:42;7908:18;;21989:49:0::1;7596:336:1::0;21989:49:0::1;22049:55;22055:10;22087:16;10867:2:::0;22087::::1;:16;:::i;:::-;22072:12;::::0;22067:17:::1;::::0;:2:::1;:17;:::i;:::-;:36;;;;:::i;22811:169::-:0;2346:13;:11;:13::i;:::-;22933:7:::1;22908:21;:32;;22900:41;;;::::0;::::1;;22952:20;::::0;-1:-1:-1;;;;;22952:11:0;::::1;::::0;:20;::::1;;;::::0;22964:7;;22952:20:::1;::::0;;;22964:7;22952:11;:20;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;22811:169:::0;;:::o;22697:106::-;2346:13;:11;:13::i;:::-;22750:45:::1;22756:10;22778:16;10867:2:::0;22778::::1;:16;:::i;:::-;22774:1;22768:5;;:7;;;;:::i;3101:103::-:0;2346:13;:11;:13::i;:::-;3166:30:::1;3193:1;3166:18;:30::i;22120:293::-:0;21186:9;21199:10;21186:23;21178:53;;;;-1:-1:-1;;;21178:53:0;;;;;;;:::i;:::-;22246:16:::1;10867:2:::0;22246::::1;:16;:::i;:::-;22238:5;;:24;;;;:::i;:::-;22218:16;10867:2:::0;22218::::1;:16;:::i;:::-;22203:12;::::0;22197:18:::1;::::0;:3:::1;:18;:::i;:::-;:37;;;;:::i;:::-;11030:12:::0;;22181:53:::1;;;;:::i;:::-;:81;;22173:104;;;;-1:-1:-1::0;;;22173:104:0::1;;;;;;;:::i;:::-;22309:12;;22296:9;:25;;22288:50;;;::::0;-1:-1:-1;;;22288:50:0;;7798:2:1;22288:50:0::1;::::0;::::1;7780:21:1::0;7837:2;7817:18;;;7810:30;-1:-1:-1;;;7856:18:1;;;7849:42;7908:18;;22288:50:0::1;7596:336:1::0;22288:50:0::1;22349:56;22355:10;22388:16;10867:2:::0;22388::::1;:16;:::i;:::-;22373:12;::::0;22367:18:::1;::::0;:3:::1;:18;:::i;22421:268::-:0;2346:13;:11;:13::i;:::-;22552:5:::1;:14:::0;;;;22577:12:::1;:28:::0;;;;22616:11:::1;:26:::0;22653:12:::1;:28:::0;22421:268::o;10032:104::-;10088:13;10121:7;10114:14;;;;;:::i;14365:436::-;14458:4;929:10;14458:4;14541:25;929:10;14558:7;14541:9;:25::i;:::-;14514:52;;14605:15;14585:16;:35;;14577:85;;;;-1:-1:-1;;;14577:85:0;;8361:2:1;14577:85:0;;;8343:21:1;8400:2;8380:18;;;8373:30;8439:34;8419:18;;;8412:62;-1:-1:-1;;;8490:18:1;;;8483:35;8535:19;;14577:85:0;8159:401:1;14577:85:0;14698:60;14707:5;14714:7;14742:15;14723:16;:34;14698:8;:60::i;11446:193::-;11525:4;929:10;11581:28;929:10;11598:2;11602:6;11581:9;:28::i;11702:151::-;-1:-1:-1;;;;;11818:18:0;;;11791:7;11818:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11702:151::o;23178:202::-;2346:13;:11;:13::i;:::-;-1:-1:-1;;;;;23268:22:0;::::1;23260:73;;;::::0;-1:-1:-1;;;23260:73:0;;8767:2:1;23260:73:0::1;::::0;::::1;8749:21:1::0;8806:2;8786:18;;;8779:30;8845:34;8825:18;;;8818:62;-1:-1:-1;;;8896:18:1;;;8889:36;8942:19;;23260:73:0::1;8565:402:1::0;23260:73:0::1;23344:28;23363:8;23344:18;:28::i;:::-;23178:202:::0;:::o;18358:346::-;-1:-1:-1;;;;;18460:19:0;;18452:68;;;;-1:-1:-1;;;18452:68:0;;9174:2:1;18452:68:0;;;9156:21:1;9213:2;9193:18;;;9186:30;9252:34;9232:18;;;9225:62;-1:-1:-1;;;9303:18:1;;;9296:34;9347:19;;18452:68:0;8972:400:1;18452:68:0;-1:-1:-1;;;;;18539:21:0;;18531:68;;;;-1:-1:-1;;;18531:68:0;;9579:2:1;18531:68:0;;;9561:21:1;9618:2;9598:18;;;9591:30;9657:34;9637:18;;;9630:62;-1:-1:-1;;;9708:18:1;;;9701:32;9750:19;;18531:68:0;9377:398:1;18531:68:0;-1:-1:-1;;;;;18612:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18664:32;;160:25:1;;;18664:32:0;;133:18:1;18664:32:0;;;;;;;18358:346;;;:::o;16364:548::-;-1:-1:-1;;;;;16448:21:0;;16440:65;;;;-1:-1:-1;;;16440:65:0;;9982:2:1;16440:65:0;;;9964:21:1;10021:2;10001:18;;;9994:30;10060:33;10040:18;;;10033:61;10111:18;;16440:65:0;9780:355:1;16440:65:0;16596:6;16580:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;16751:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;16806:37;160:25:1;;;16806:37:0;;133:18:1;16806:37:0;;;;;;;16364:548;;:::o;18995:419::-;19096:24;19123:25;19133:5;19140:7;19123:9;:25::i;:::-;19096:52;;-1:-1:-1;;19163:16:0;:37;19159:248;;19245:6;19225:16;:26;;19217:68;;;;-1:-1:-1;;;19217:68:0;;10342:2:1;19217:68:0;;;10324:21:1;10381:2;10361:18;;;10354:30;10420:31;10400:18;;;10393:59;10469:18;;19217:68:0;10140:353:1;19217:68:0;19329:51;19338:5;19345:7;19373:6;19354:16;:25;19329:8;:51::i;15271:806::-;-1:-1:-1;;;;;15368:18:0;;15360:68;;;;-1:-1:-1;;;15360:68:0;;10700:2:1;15360:68:0;;;10682:21:1;10739:2;10719:18;;;10712:30;10778:34;10758:18;;;10751:62;-1:-1:-1;;;10829:18:1;;;10822:35;10874:19;;15360:68:0;10498:401:1;15360:68:0;-1:-1:-1;;;;;15447:16:0;;15439:64;;;;-1:-1:-1;;;15439:64:0;;11106:2:1;15439:64:0;;;11088:21:1;11145:2;11125:18;;;11118:30;11184:34;11164:18;;;11157:62;-1:-1:-1;;;11235:18:1;;;11228:33;11278:19;;15439:64:0;10904:399:1;15439:64:0;-1:-1:-1;;;;;15589:15:0;;15567:19;15589:15;;;;;;;;;;;15623:21;;;;15615:72;;;;-1:-1:-1;;;15615:72:0;;11510:2:1;15615:72:0;;;11492:21:1;11549:2;11529:18;;;11522:30;11588:34;11568:18;;;11561:62;-1:-1:-1;;;11639:18:1;;;11632:36;11685:19;;15615:72:0;11308:402:1;15615:72:0;-1:-1:-1;;;;;15723:15:0;;;:9;:15;;;;;;;;;;;15741:20;;;15723:38;;15941:13;;;;;;;;;;:23;;;;;;15993:26;;160:25:1;;;15941:13:0;;15993:26;;133:18:1;15993:26:0;;;;;;;16032:37;22811:169;2625:132;2533:6;;-1:-1:-1;;;;;2533:6:0;929:10;2689:23;2681:68;;;;-1:-1:-1;;;2681:68:0;;11917:2:1;2681:68:0;;;11899:21:1;;;11936:18;;;11929:30;11995:34;11975:18;;;11968:62;12047:18;;2681:68:0;11715:356:1;3720:191:0;3813:6;;;-1:-1:-1;;;;;3830:17:0;;;-1:-1:-1;;;;;;3830:17:0;;;;;;;3863:40;;3813:6;;;3830:17;3813:6;;3863:40;;3794:16;;3863:40;3783:128;3720:191;:::o;196:597:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;634:6;631:1;628:13;625:91;;;704:1;699:2;690:6;679:9;675:22;671:31;664:42;625:91;-1:-1:-1;777:2:1;756:15;-1:-1:-1;;752:29:1;737:45;;;;784:2;733:54;;196:597;-1:-1:-1;;;196:597:1:o;798:131::-;-1:-1:-1;;;;;873:31:1;;863:42;;853:70;;919:1;916;909:12;934:315;1002:6;1010;1063:2;1051:9;1042:7;1038:23;1034:32;1031:52;;;1079:1;1076;1069:12;1031:52;1118:9;1105:23;1137:31;1162:5;1137:31;:::i;:::-;1187:5;1239:2;1224:18;;;;1211:32;;-1:-1:-1;;;934:315:1:o;1446:456::-;1523:6;1531;1539;1592:2;1580:9;1571:7;1567:23;1563:32;1560:52;;;1608:1;1605;1598:12;1560:52;1647:9;1634:23;1666:31;1691:5;1666:31;:::i;:::-;1716:5;-1:-1:-1;1773:2:1;1758:18;;1745:32;1786:33;1745:32;1786:33;:::i;:::-;1446:456;;1838:7;;-1:-1:-1;;;1892:2:1;1877:18;;;;1864:32;;1446:456::o;2893:247::-;2952:6;3005:2;2993:9;2984:7;2980:23;2976:32;2973:52;;;3021:1;3018;3011:12;2973:52;3060:9;3047:23;3079:31;3104:5;3079:31;:::i;:::-;3129:5;2893:247;-1:-1:-1;;;2893:247:1:o;3145:385::-;3231:6;3239;3247;3255;3308:3;3296:9;3287:7;3283:23;3279:33;3276:53;;;3325:1;3322;3315:12;3276:53;-1:-1:-1;;3348:23:1;;;3418:2;3403:18;;3390:32;;-1:-1:-1;3469:2:1;3454:18;;3441:32;;3520:2;3505:18;3492:32;;-1:-1:-1;3145:385:1;-1:-1:-1;3145:385:1:o;3743:388::-;3811:6;3819;3872:2;3860:9;3851:7;3847:23;3843:32;3840:52;;;3888:1;3885;3878:12;3840:52;3927:9;3914:23;3946:31;3971:5;3946:31;:::i;:::-;3996:5;-1:-1:-1;4053:2:1;4038:18;;4025:32;4066:33;4025:32;4066:33;:::i;:::-;4118:7;4108:17;;;3743:388;;;;;:::o;4136:380::-;4215:1;4211:12;;;;4258;;;4279:61;;4333:4;4325:6;4321:17;4311:27;;4279:61;4386:2;4378:6;4375:14;4355:18;4352:38;4349:161;;;4432:10;4427:3;4423:20;4420:1;4413:31;4467:4;4464:1;4457:15;4495:4;4492:1;4485:15;4349:161;;4136:380;;;:::o;4521:341::-;4723:2;4705:21;;;4762:2;4742:18;;;4735:30;-1:-1:-1;;;4796:2:1;4781:18;;4774:47;4853:2;4838:18;;4521:341::o;4867:127::-;4928:10;4923:3;4919:20;4916:1;4909:31;4959:4;4956:1;4949:15;4983:4;4980:1;4973:15;4999:422;5088:1;5131:5;5088:1;5145:270;5166:7;5156:8;5153:21;5145:270;;;5225:4;5221:1;5217:6;5213:17;5207:4;5204:27;5201:53;;;5234:18;;:::i;:::-;5284:7;5274:8;5270:22;5267:55;;;5304:16;;;;5267:55;5383:22;;;;5343:15;;;;5145:270;;;5149:3;4999:422;;;;;:::o;5426:806::-;5475:5;5505:8;5495:80;;-1:-1:-1;5546:1:1;5560:5;;5495:80;5594:4;5584:76;;-1:-1:-1;5631:1:1;5645:5;;5584:76;5676:4;5694:1;5689:59;;;;5762:1;5757:130;;;;5669:218;;5689:59;5719:1;5710:10;;5733:5;;;5757:130;5794:3;5784:8;5781:17;5778:43;;;5801:18;;:::i;:::-;-1:-1:-1;;5857:1:1;5843:16;;5872:5;;5669:218;;5971:2;5961:8;5958:16;5952:3;5946:4;5943:13;5939:36;5933:2;5923:8;5920:16;5915:2;5909:4;5906:12;5902:35;5899:77;5896:159;;;-1:-1:-1;6008:19:1;;;6040:5;;5896:159;6087:34;6112:8;6106:4;6087:34;:::i;:::-;6157:6;6153:1;6149:6;6145:19;6136:7;6133:32;6130:58;;;6168:18;;:::i;:::-;6206:20;;5426:806;-1:-1:-1;;;5426:806:1:o;6237:140::-;6295:5;6324:47;6365:4;6355:8;6351:19;6345:4;6324:47;:::i;6382:168::-;6422:7;6488:1;6484;6480:6;6476:14;6473:1;6470:21;6465:1;6458:9;6451:17;6447:45;6444:71;;;6495:18;;:::i;:::-;-1:-1:-1;6535:9:1;;6382:168::o;6555:128::-;6595:3;6626:1;6622:6;6619:1;6616:13;6613:39;;;6632:18;;:::i;:::-;-1:-1:-1;6668:9:1;;6555:128::o;6688:334::-;6890:2;6872:21;;;6929:2;6909:18;;;6902:30;-1:-1:-1;;;6963:2:1;6948:18;;6941:40;7013:2;6998:18;;6688:334::o;7314:277::-;7381:6;7434:2;7422:9;7413:7;7409:23;7405:32;7402:52;;;7450:1;7447;7440:12;7402:52;7482:9;7476:16;7535:5;7528:13;7521:21;7514:5;7511:32;7501:60;;7557:1;7554;7547:12;7937:217;7977:1;8003;7993:132;;8047:10;8042:3;8038:20;8035:1;8028:31;8082:4;8079:1;8072:15;8110:4;8107:1;8100:15;7993:132;-1:-1:-1;8139:9:1;;7937:217::o

Swarm Source

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