ETH Price: $2,582.96 (-2.81%)
Gas: 1.06 Gwei

Token

PAPA COIN (PAPA)
 

Overview

Max Total Supply

420,690,000,000,000 PAPA

Holders

42

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,236,238,259,308.248101875295976775 PAPA

Value
$0.00
0x66D2353dCCCD743fbBfce843E52480b4fe441D20
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:
PAPA

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

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

// 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: Papa.sol 
pragma solidity ^0.8.0;


contract PAPA 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;
        _mint(owner, totalSupply*10**18); //Total supply 420,690,000,000,000.

        //remove ownership.
        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":"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"}]

60806040523480156200001157600080fd5b5060405162001e7b38038062001e7b83398181016040528101906200003791906200054d565b8282816003908051906020019062000051929190620002c5565b5080600490805190602001906200006a929190620002c5565b50505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620000f7600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16670de0b6b3a764000083620000eb919062000616565b6200014260201b60201c565b6000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050620007ea565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001ac90620006d8565b60405180910390fd5b620001c960008383620002bb60201b60201c565b8060026000828254620001dd9190620006fa565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002349190620006fa565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200029b919062000768565b60405180910390a3620002b760008383620002c060201b60201c565b5050565b505050565b505050565b828054620002d390620007b4565b90600052602060002090601f016020900481019282620002f7576000855562000343565b82601f106200031257805160ff191683800117855562000343565b8280016001018555821562000343579182015b828111156200034257825182559160200191906001019062000325565b5b50905062000352919062000356565b5090565b5b808211156200037157600081600090555060010162000357565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003de8262000393565b810181811067ffffffffffffffff821117156200040057620003ff620003a4565b5b80604052505050565b60006200041562000375565b9050620004238282620003d3565b919050565b600067ffffffffffffffff821115620004465762000445620003a4565b5b620004518262000393565b9050602081019050919050565b60005b838110156200047e57808201518184015260208101905062000461565b838111156200048e576000848401525b50505050565b6000620004ab620004a58462000428565b62000409565b905082815260208101848484011115620004ca57620004c96200038e565b5b620004d78482856200045e565b509392505050565b600082601f830112620004f757620004f662000389565b5b81516200050984826020860162000494565b91505092915050565b6000819050919050565b620005278162000512565b81146200053357600080fd5b50565b60008151905062000547816200051c565b92915050565b6000806000606084860312156200056957620005686200037f565b5b600084015167ffffffffffffffff8111156200058a576200058962000384565b5b6200059886828701620004df565b935050602084015167ffffffffffffffff811115620005bc57620005bb62000384565b5b620005ca86828701620004df565b9250506040620005dd8682870162000536565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620006238262000512565b9150620006308362000512565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200066c576200066b620005e7565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620006c0601f8362000677565b9150620006cd8262000688565b602082019050919050565b60006020820190508181036000830152620006f381620006b1565b9050919050565b6000620007078262000512565b9150620007148362000512565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200074c576200074b620005e7565b5b828201905092915050565b620007628162000512565b82525050565b60006020820190506200077f600083018462000757565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007cd57607f821691505b60208210811415620007e457620007e362000785565b5b50919050565b61168180620007fa6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b4114610228578063a457c2d714610246578063a9059cbb14610276578063dd62ed3e146102a6576100cf565b806342966c68146101be57806370a08231146101da5780638da5cb5b1461020a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102d6565b6040516100e99190610d8c565b60405180910390f35b61010c60048036038101906101079190610e47565b610368565b6040516101199190610ea2565b60405180910390f35b61012a61038b565b6040516101379190610ecc565b60405180910390f35b61015a60048036038101906101559190610ee7565b610395565b6040516101679190610ea2565b60405180910390f35b6101786103c4565b6040516101859190610f56565b60405180910390f35b6101a860048036038101906101a39190610e47565b6103cd565b6040516101b59190610ea2565b60405180910390f35b6101d860048036038101906101d39190610f71565b610404565b005b6101f460048036038101906101ef9190610f9e565b610411565b6040516102019190610ecc565b60405180910390f35b610212610459565b60405161021f9190610fda565b60405180910390f35b61023061047f565b60405161023d9190610d8c565b60405180910390f35b610260600480360381019061025b9190610e47565b610511565b60405161026d9190610ea2565b60405180910390f35b610290600480360381019061028b9190610e47565b610588565b60405161029d9190610ea2565b60405180910390f35b6102c060048036038101906102bb9190610ff5565b6105ab565b6040516102cd9190610ecc565b60405180910390f35b6060600380546102e590611064565b80601f016020809104026020016040519081016040528092919081815260200182805461031190611064565b801561035e5780601f106103335761010080835404028352916020019161035e565b820191906000526020600020905b81548152906001019060200180831161034157829003601f168201915b5050505050905090565b600080610373610632565b905061038081858561063a565b600191505092915050565b6000600254905090565b6000806103a0610632565b90506103ad858285610805565b6103b8858585610891565b60019150509392505050565b60006012905090565b6000806103d8610632565b90506103f98185856103ea85896105ab565b6103f491906110c5565b61063a565b600191505092915050565b61040e3382610b12565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461048e90611064565b80601f01602080910402602001604051908101604052809291908181526020018280546104ba90611064565b80156105075780601f106104dc57610100808354040283529160200191610507565b820191906000526020600020905b8154815290600101906020018083116104ea57829003601f168201915b5050505050905090565b60008061051c610632565b9050600061052a82866105ab565b90508381101561056f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105669061118d565b60405180910390fd5b61057c828686840361063a565b60019250505092915050565b600080610593610632565b90506105a0818585610891565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a19061121f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561071a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610711906112b1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107f89190610ecc565b60405180910390a3505050565b600061081184846105ab565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461088b578181101561087d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108749061131d565b60405180910390fd5b61088a848484840361063a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f8906113af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096890611441565b60405180910390fd5b61097c838383610ce9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f9906114d3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a9591906110c5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610af99190610ecc565b60405180910390a3610b0c848484610cee565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7990611565565b60405180910390fd5b610b8e82600083610ce9565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b906115f7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610c6b9190611617565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cd09190610ecc565b60405180910390a3610ce483600084610cee565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d2d578082015181840152602081019050610d12565b83811115610d3c576000848401525b50505050565b6000601f19601f8301169050919050565b6000610d5e82610cf3565b610d688185610cfe565b9350610d78818560208601610d0f565b610d8181610d42565b840191505092915050565b60006020820190508181036000830152610da68184610d53565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610dde82610db3565b9050919050565b610dee81610dd3565b8114610df957600080fd5b50565b600081359050610e0b81610de5565b92915050565b6000819050919050565b610e2481610e11565b8114610e2f57600080fd5b50565b600081359050610e4181610e1b565b92915050565b60008060408385031215610e5e57610e5d610dae565b5b6000610e6c85828601610dfc565b9250506020610e7d85828601610e32565b9150509250929050565b60008115159050919050565b610e9c81610e87565b82525050565b6000602082019050610eb76000830184610e93565b92915050565b610ec681610e11565b82525050565b6000602082019050610ee16000830184610ebd565b92915050565b600080600060608486031215610f0057610eff610dae565b5b6000610f0e86828701610dfc565b9350506020610f1f86828701610dfc565b9250506040610f3086828701610e32565b9150509250925092565b600060ff82169050919050565b610f5081610f3a565b82525050565b6000602082019050610f6b6000830184610f47565b92915050565b600060208284031215610f8757610f86610dae565b5b6000610f9584828501610e32565b91505092915050565b600060208284031215610fb457610fb3610dae565b5b6000610fc284828501610dfc565b91505092915050565b610fd481610dd3565b82525050565b6000602082019050610fef6000830184610fcb565b92915050565b6000806040838503121561100c5761100b610dae565b5b600061101a85828601610dfc565b925050602061102b85828601610dfc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061107c57607f821691505b602082108114156110905761108f611035565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006110d082610e11565b91506110db83610e11565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156111105761110f611096565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611177602583610cfe565b91506111828261111b565b604082019050919050565b600060208201905081810360008301526111a68161116a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611209602483610cfe565b9150611214826111ad565b604082019050919050565b60006020820190508181036000830152611238816111fc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061129b602283610cfe565b91506112a68261123f565b604082019050919050565b600060208201905081810360008301526112ca8161128e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611307601d83610cfe565b9150611312826112d1565b602082019050919050565b60006020820190508181036000830152611336816112fa565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611399602583610cfe565b91506113a48261133d565b604082019050919050565b600060208201905081810360008301526113c88161138c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061142b602383610cfe565b9150611436826113cf565b604082019050919050565b6000602082019050818103600083015261145a8161141e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006114bd602683610cfe565b91506114c882611461565b604082019050919050565b600060208201905081810360008301526114ec816114b0565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061154f602183610cfe565b915061155a826114f3565b604082019050919050565b6000602082019050818103600083015261157e81611542565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006115e1602283610cfe565b91506115ec82611585565b604082019050919050565b60006020820190508181036000830152611610816115d4565b9050919050565b600061162282610e11565b915061162d83610e11565b9250828210156116405761163f611096565b5b82820390509291505056fea2646970667358221220890c6525a7dc60e35e6475e0ef5ee927b4179ce8b1703229c29c4601071b175664736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000017e9d8602b40000000000000000000000000000000000000000000000000000000000000000095041504120434f494e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045041504100000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b4114610228578063a457c2d714610246578063a9059cbb14610276578063dd62ed3e146102a6576100cf565b806342966c68146101be57806370a08231146101da5780638da5cb5b1461020a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102d6565b6040516100e99190610d8c565b60405180910390f35b61010c60048036038101906101079190610e47565b610368565b6040516101199190610ea2565b60405180910390f35b61012a61038b565b6040516101379190610ecc565b60405180910390f35b61015a60048036038101906101559190610ee7565b610395565b6040516101679190610ea2565b60405180910390f35b6101786103c4565b6040516101859190610f56565b60405180910390f35b6101a860048036038101906101a39190610e47565b6103cd565b6040516101b59190610ea2565b60405180910390f35b6101d860048036038101906101d39190610f71565b610404565b005b6101f460048036038101906101ef9190610f9e565b610411565b6040516102019190610ecc565b60405180910390f35b610212610459565b60405161021f9190610fda565b60405180910390f35b61023061047f565b60405161023d9190610d8c565b60405180910390f35b610260600480360381019061025b9190610e47565b610511565b60405161026d9190610ea2565b60405180910390f35b610290600480360381019061028b9190610e47565b610588565b60405161029d9190610ea2565b60405180910390f35b6102c060048036038101906102bb9190610ff5565b6105ab565b6040516102cd9190610ecc565b60405180910390f35b6060600380546102e590611064565b80601f016020809104026020016040519081016040528092919081815260200182805461031190611064565b801561035e5780601f106103335761010080835404028352916020019161035e565b820191906000526020600020905b81548152906001019060200180831161034157829003601f168201915b5050505050905090565b600080610373610632565b905061038081858561063a565b600191505092915050565b6000600254905090565b6000806103a0610632565b90506103ad858285610805565b6103b8858585610891565b60019150509392505050565b60006012905090565b6000806103d8610632565b90506103f98185856103ea85896105ab565b6103f491906110c5565b61063a565b600191505092915050565b61040e3382610b12565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461048e90611064565b80601f01602080910402602001604051908101604052809291908181526020018280546104ba90611064565b80156105075780601f106104dc57610100808354040283529160200191610507565b820191906000526020600020905b8154815290600101906020018083116104ea57829003601f168201915b5050505050905090565b60008061051c610632565b9050600061052a82866105ab565b90508381101561056f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105669061118d565b60405180910390fd5b61057c828686840361063a565b60019250505092915050565b600080610593610632565b90506105a0818585610891565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a19061121f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561071a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610711906112b1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107f89190610ecc565b60405180910390a3505050565b600061081184846105ab565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461088b578181101561087d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108749061131d565b60405180910390fd5b61088a848484840361063a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f8906113af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096890611441565b60405180910390fd5b61097c838383610ce9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f9906114d3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a9591906110c5565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610af99190610ecc565b60405180910390a3610b0c848484610cee565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7990611565565b60405180910390fd5b610b8e82600083610ce9565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b906115f7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610c6b9190611617565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cd09190610ecc565b60405180910390a3610ce483600084610cee565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d2d578082015181840152602081019050610d12565b83811115610d3c576000848401525b50505050565b6000601f19601f8301169050919050565b6000610d5e82610cf3565b610d688185610cfe565b9350610d78818560208601610d0f565b610d8181610d42565b840191505092915050565b60006020820190508181036000830152610da68184610d53565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610dde82610db3565b9050919050565b610dee81610dd3565b8114610df957600080fd5b50565b600081359050610e0b81610de5565b92915050565b6000819050919050565b610e2481610e11565b8114610e2f57600080fd5b50565b600081359050610e4181610e1b565b92915050565b60008060408385031215610e5e57610e5d610dae565b5b6000610e6c85828601610dfc565b9250506020610e7d85828601610e32565b9150509250929050565b60008115159050919050565b610e9c81610e87565b82525050565b6000602082019050610eb76000830184610e93565b92915050565b610ec681610e11565b82525050565b6000602082019050610ee16000830184610ebd565b92915050565b600080600060608486031215610f0057610eff610dae565b5b6000610f0e86828701610dfc565b9350506020610f1f86828701610dfc565b9250506040610f3086828701610e32565b9150509250925092565b600060ff82169050919050565b610f5081610f3a565b82525050565b6000602082019050610f6b6000830184610f47565b92915050565b600060208284031215610f8757610f86610dae565b5b6000610f9584828501610e32565b91505092915050565b600060208284031215610fb457610fb3610dae565b5b6000610fc284828501610dfc565b91505092915050565b610fd481610dd3565b82525050565b6000602082019050610fef6000830184610fcb565b92915050565b6000806040838503121561100c5761100b610dae565b5b600061101a85828601610dfc565b925050602061102b85828601610dfc565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061107c57607f821691505b602082108114156110905761108f611035565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006110d082610e11565b91506110db83610e11565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156111105761110f611096565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611177602583610cfe565b91506111828261111b565b604082019050919050565b600060208201905081810360008301526111a68161116a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611209602483610cfe565b9150611214826111ad565b604082019050919050565b60006020820190508181036000830152611238816111fc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061129b602283610cfe565b91506112a68261123f565b604082019050919050565b600060208201905081810360008301526112ca8161128e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611307601d83610cfe565b9150611312826112d1565b602082019050919050565b60006020820190508181036000830152611336816112fa565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611399602583610cfe565b91506113a48261133d565b604082019050919050565b600060208201905081810360008301526113c88161138c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061142b602383610cfe565b9150611436826113cf565b604082019050919050565b6000602082019050818103600083015261145a8161141e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006114bd602683610cfe565b91506114c882611461565b604082019050919050565b600060208201905081810360008301526114ec816114b0565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061154f602183610cfe565b915061155a826114f3565b604082019050919050565b6000602082019050818103600083015261157e81611542565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006115e1602283610cfe565b91506115ec82611585565b604082019050919050565b60006020820190508181036000830152611610816115d4565b9050919050565b600061162282610e11565b915061162d83610e11565b9250828210156116405761163f611096565b5b82820390509291505056fea2646970667358221220890c6525a7dc60e35e6475e0ef5ee927b4179ce8b1703229c29c4601071b175664736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000017e9d8602b40000000000000000000000000000000000000000000000000000000000000000095041504120434f494e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045041504100000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): PAPA COIN
Arg [1] : symbol (string): PAPA
Arg [2] : totalSupply (uint256): 420690000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000017e9d8602b400
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 5041504120434f494e0000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5041504100000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

17517:595: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;:::-;;;;;;;;18024:83;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7971:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17552: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;18024:83::-;18075:24;18081:10;18093:5;18075;:24::i;:::-;18024:83;:::o;7971:127::-;8045:7;8072:9;:18;8082:7;8072:18;;;;;;;;;;;;;;;;8065:25;;7971:127;;;:::o;17552: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;15677:329;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;:::-;12275:559;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;:::-;13918:526;13853:591;;:::o;16606:125::-;;;;:::o;17335:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:::-;5295:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:119;;;5350:79;;:::i;:::-;5312:119;5470:1;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5441:117;5236:329;;;;:::o;5571:118::-;5658:24;5676:5;5658:24;:::i;:::-;5653:3;5646:37;5571:118;;:::o;5695:222::-;5788:4;5826:2;5815:9;5811:18;5803:26;;5839:71;5907:1;5896:9;5892:17;5883:6;5839:71;:::i;:::-;5695:222;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:180::-;6963:77;6960:1;6953:88;7060:4;7057:1;7050:15;7084:4;7081:1;7074:15;7101:305;7141:3;7160:20;7178:1;7160:20;:::i;:::-;7155:25;;7194:20;7212:1;7194:20;:::i;:::-;7189:25;;7348:1;7280:66;7276:74;7273:1;7270:81;7267:107;;;7354:18;;:::i;:::-;7267:107;7398:1;7395;7391:9;7384:16;;7101:305;;;;:::o;7412:224::-;7552:34;7548:1;7540:6;7536:14;7529:58;7621:7;7616:2;7608:6;7604:15;7597:32;7412:224;:::o;7642:366::-;7784:3;7805:67;7869:2;7864:3;7805:67;:::i;:::-;7798:74;;7881:93;7970:3;7881:93;:::i;:::-;7999:2;7994:3;7990:12;7983:19;;7642:366;;;:::o;8014:419::-;8180:4;8218:2;8207:9;8203:18;8195:26;;8267:9;8261:4;8257:20;8253:1;8242:9;8238:17;8231:47;8295:131;8421:4;8295:131;:::i;:::-;8287:139;;8014:419;;;:::o;8439:223::-;8579:34;8575:1;8567:6;8563:14;8556:58;8648:6;8643:2;8635:6;8631:15;8624:31;8439:223;:::o;8668:366::-;8810:3;8831:67;8895:2;8890:3;8831:67;:::i;:::-;8824:74;;8907:93;8996:3;8907:93;:::i;:::-;9025:2;9020:3;9016:12;9009:19;;8668:366;;;:::o;9040:419::-;9206:4;9244:2;9233:9;9229:18;9221:26;;9293:9;9287:4;9283:20;9279:1;9268:9;9264:17;9257:47;9321:131;9447:4;9321:131;:::i;:::-;9313:139;;9040:419;;;:::o;9465:221::-;9605:34;9601:1;9593:6;9589:14;9582:58;9674:4;9669:2;9661:6;9657:15;9650:29;9465:221;:::o;9692:366::-;9834:3;9855:67;9919:2;9914:3;9855:67;:::i;:::-;9848:74;;9931:93;10020:3;9931:93;:::i;:::-;10049:2;10044:3;10040:12;10033:19;;9692:366;;;:::o;10064:419::-;10230:4;10268:2;10257:9;10253:18;10245:26;;10317:9;10311:4;10307:20;10303:1;10292:9;10288:17;10281:47;10345:131;10471:4;10345:131;:::i;:::-;10337:139;;10064:419;;;:::o;10489:179::-;10629:31;10625:1;10617:6;10613:14;10606:55;10489:179;:::o;10674:366::-;10816:3;10837:67;10901:2;10896:3;10837:67;:::i;:::-;10830:74;;10913:93;11002:3;10913:93;:::i;:::-;11031:2;11026:3;11022:12;11015:19;;10674:366;;;:::o;11046:419::-;11212:4;11250:2;11239:9;11235:18;11227:26;;11299:9;11293:4;11289:20;11285:1;11274:9;11270:17;11263:47;11327:131;11453:4;11327:131;:::i;:::-;11319:139;;11046:419;;;:::o;11471:224::-;11611:34;11607:1;11599:6;11595:14;11588:58;11680:7;11675:2;11667:6;11663:15;11656:32;11471:224;:::o;11701:366::-;11843:3;11864:67;11928:2;11923:3;11864:67;:::i;:::-;11857:74;;11940:93;12029:3;11940:93;:::i;:::-;12058:2;12053:3;12049:12;12042:19;;11701:366;;;:::o;12073:419::-;12239:4;12277:2;12266:9;12262:18;12254:26;;12326:9;12320:4;12316:20;12312:1;12301:9;12297:17;12290:47;12354:131;12480:4;12354:131;:::i;:::-;12346:139;;12073:419;;;:::o;12498:222::-;12638:34;12634:1;12626:6;12622:14;12615:58;12707:5;12702:2;12694:6;12690:15;12683:30;12498:222;:::o;12726:366::-;12868:3;12889:67;12953:2;12948:3;12889:67;:::i;:::-;12882:74;;12965:93;13054:3;12965:93;:::i;:::-;13083:2;13078:3;13074:12;13067:19;;12726:366;;;:::o;13098:419::-;13264:4;13302:2;13291:9;13287:18;13279:26;;13351:9;13345:4;13341:20;13337:1;13326:9;13322:17;13315:47;13379:131;13505:4;13379:131;:::i;:::-;13371:139;;13098:419;;;:::o;13523:225::-;13663:34;13659:1;13651:6;13647:14;13640:58;13732:8;13727:2;13719:6;13715:15;13708:33;13523:225;:::o;13754:366::-;13896:3;13917:67;13981:2;13976:3;13917:67;:::i;:::-;13910:74;;13993:93;14082:3;13993:93;:::i;:::-;14111:2;14106:3;14102:12;14095:19;;13754:366;;;:::o;14126:419::-;14292:4;14330:2;14319:9;14315:18;14307:26;;14379:9;14373:4;14369:20;14365:1;14354:9;14350:17;14343:47;14407:131;14533:4;14407:131;:::i;:::-;14399:139;;14126:419;;;:::o;14551:220::-;14691:34;14687:1;14679:6;14675:14;14668:58;14760:3;14755:2;14747:6;14743:15;14736:28;14551:220;:::o;14777:366::-;14919:3;14940:67;15004:2;14999:3;14940:67;:::i;:::-;14933:74;;15016:93;15105:3;15016:93;:::i;:::-;15134:2;15129:3;15125:12;15118:19;;14777:366;;;:::o;15149:419::-;15315:4;15353:2;15342:9;15338:18;15330:26;;15402:9;15396:4;15392:20;15388:1;15377:9;15373:17;15366:47;15430:131;15556:4;15430:131;:::i;:::-;15422:139;;15149:419;;;:::o;15574:221::-;15714:34;15710:1;15702:6;15698:14;15691:58;15783:4;15778:2;15770:6;15766:15;15759:29;15574:221;:::o;15801:366::-;15943:3;15964:67;16028:2;16023:3;15964:67;:::i;:::-;15957:74;;16040:93;16129:3;16040:93;:::i;:::-;16158:2;16153:3;16149:12;16142:19;;15801:366;;;:::o;16173:419::-;16339:4;16377:2;16366:9;16362:18;16354:26;;16426:9;16420:4;16416:20;16412:1;16401:9;16397:17;16390:47;16454:131;16580:4;16454:131;:::i;:::-;16446:139;;16173:419;;;:::o;16598:191::-;16638:4;16658:20;16676:1;16658:20;:::i;:::-;16653:25;;16692:20;16710:1;16692:20;:::i;:::-;16687:25;;16731:1;16728;16725:8;16722:34;;;16736:18;;:::i;:::-;16722:34;16781:1;16778;16774:9;16766:17;;16598:191;;;;:::o

Swarm Source

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