ETH Price: $3,389.23 (+1.63%)

Token

Play It Forward DAO (PIF)
 

Overview

Max Total Supply

1,000,000,000 PIF

Holders

2,189 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,778.065686869290394771 PIF

Value
$0.00
0x1f94a873a0ea1ab63d9d50cdc5e85fdc9b7cfe71
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Play It Forward DAO aims to broaden accessibility of Play-to-Earn via a guild management platform and large-scale guild operations.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PIFToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-31
*/

// 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/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

// 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 v4.4.1 (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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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 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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

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


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

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}

// File: contracts/PIFToken.sol


pragma solidity ^0.8.2;





contract PIFToken is ERC20, ERC20Burnable, ERC20Capped, Ownable {
    
    constructor() ERC20("Play It Forward DAO", "PIF") ERC20Capped(1_000_000_000 ether) {
        ERC20._mint(_msgSender(), 1_000_000_000 ether);
    }

    function mint(uint256 amount) external onlyOwner {
        _mint(_msgSender(), amount);
    }

    function mint(address to, uint256 amount) external onlyOwner {
        _mint(to, amount);
    }
    
    function _mint(address account, uint256 amount) internal override(ERC20, ERC20Capped)
    {
        ERC20Capped._mint(account, amount);
    }

   
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"}]

60a06040523480156200001157600080fd5b506b033b2e3c9fd0803ce80000006040518060400160405280601381526020017f506c617920497420466f72776172642044414f000000000000000000000000008152506040518060400160405280600381526020017f50494600000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000a3929190620003b7565b508060049080519060200190620000bc929190620003b7565b5050506000811162000105576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000fc90620004c6565b60405180910390fd5b8060808181525050506200012e620001226200016660201b60201c565b6200016e60201b60201c565b62000160620001426200016660201b60201c565b6b033b2e3c9fd0803ce80000006200023460201b62000c0c1760201c565b62000685565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200029e90620004e8565b60405180910390fd5b620002bb60008383620003ad60201b60201c565b8060026000828254620002cf919062000538565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000326919062000538565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200038d91906200050a565b60405180910390a3620003a960008383620003b260201b60201c565b5050565b505050565b505050565b828054620003c5906200059f565b90600052602060002090601f016020900481019282620003e9576000855562000435565b82601f106200040457805160ff191683800117855562000435565b8280016001018555821562000435579182015b828111156200043457825182559160200191906001019062000417565b5b50905062000444919062000448565b5090565b5b808211156200046357600081600090555060010162000449565b5090565b60006200047660158362000527565b9150620004838262000633565b602082019050919050565b60006200049d601f8362000527565b9150620004aa826200065c565b602082019050919050565b620004c08162000595565b82525050565b60006020820190508181036000830152620004e18162000467565b9050919050565b6000602082019050818103600083015262000503816200048e565b9050919050565b6000602082019050620005216000830184620004b5565b92915050565b600082825260208201905092915050565b6000620005458262000595565b9150620005528362000595565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200058a5762000589620005d5565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620005b857607f821691505b60208210811415620005cf57620005ce62000604565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6080516120fb620006a1600039600061057f01526120fb6000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a0712d6811610071578063a0712d68146102f8578063a457c2d714610314578063a9059cbb14610344578063dd62ed3e14610374578063f2fde38b146103a457610121565b806370a0823114610266578063715018a61461029657806379cc6790146102a05780638da5cb5b146102bc57806395d89b41146102da57610121565b8063313ce567116100f4578063313ce567146101c2578063355274ea146101e057806339509351146101fe57806340c10f191461022e57806342966c681461024a57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103c0565b60405161013b91906118cb565b60405180910390f35b61015e600480360381019061015991906115c9565b610452565b60405161016b91906118b0565b60405180910390f35b61017c610470565b6040516101899190611aad565b60405180910390f35b6101ac60048036038101906101a79190611576565b61047a565b6040516101b991906118b0565b60405180910390f35b6101ca610572565b6040516101d79190611ac8565b60405180910390f35b6101e861057b565b6040516101f59190611aad565b60405180910390f35b610218600480360381019061021391906115c9565b6105a3565b60405161022591906118b0565b60405180910390f35b610248600480360381019061024391906115c9565b61064f565b005b610264600480360381019061025f9190611609565b6106d9565b005b610280600480360381019061027b9190611509565b6106ed565b60405161028d9190611aad565b60405180910390f35b61029e610735565b005b6102ba60048036038101906102b591906115c9565b6107bd565b005b6102c4610838565b6040516102d19190611895565b60405180910390f35b6102e2610862565b6040516102ef91906118cb565b60405180910390f35b610312600480360381019061030d9190611609565b6108f4565b005b61032e600480360381019061032991906115c9565b610984565b60405161033b91906118b0565b60405180910390f35b61035e600480360381019061035991906115c9565b610a6f565b60405161036b91906118b0565b60405180910390f35b61038e60048036038101906103899190611536565b610a8d565b60405161039b9190611aad565b60405180910390f35b6103be60048036038101906103b99190611509565b610b14565b005b6060600380546103cf90611c11565b80601f01602080910402602001604051908101604052809291908181526020018280546103fb90611c11565b80156104485780601f1061041d57610100808354040283529160200191610448565b820191906000526020600020905b81548152906001019060200180831161042b57829003601f168201915b5050505050905090565b600061046661045f610d6c565b8484610d74565b6001905092915050565b6000600254905090565b6000610487848484610f3f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d2610d6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610552576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105499061198d565b60405180910390fd5b6105668561055e610d6c565b858403610d74565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60006106456105b0610d6c565b8484600160006105be610d6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106409190611aff565b610d74565b6001905092915050565b610657610d6c565b73ffffffffffffffffffffffffffffffffffffffff16610675610838565b73ffffffffffffffffffffffffffffffffffffffff16146106cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c2906119ad565b60405180910390fd5b6106d582826111c0565b5050565b6106ea6106e4610d6c565b826111ce565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61073d610d6c565b73ffffffffffffffffffffffffffffffffffffffff1661075b610838565b73ffffffffffffffffffffffffffffffffffffffff16146107b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a8906119ad565b60405180910390fd5b6107bb60006113a5565b565b60006107d0836107cb610d6c565b610a8d565b905081811015610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080c906119cd565b60405180910390fd5b61082983610821610d6c565b848403610d74565b61083383836111ce565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461087190611c11565b80601f016020809104026020016040519081016040528092919081815260200182805461089d90611c11565b80156108ea5780601f106108bf576101008083540402835291602001916108ea565b820191906000526020600020905b8154815290600101906020018083116108cd57829003601f168201915b5050505050905090565b6108fc610d6c565b73ffffffffffffffffffffffffffffffffffffffff1661091a610838565b73ffffffffffffffffffffffffffffffffffffffff1614610970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610967906119ad565b60405180910390fd5b61098161097b610d6c565b826111c0565b50565b60008060016000610993610d6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4790611a6d565b60405180910390fd5b610a64610a5b610d6c565b85858403610d74565b600191505092915050565b6000610a83610a7c610d6c565b8484610f3f565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b1c610d6c565b73ffffffffffffffffffffffffffffffffffffffff16610b3a610838565b73ffffffffffffffffffffffffffffffffffffffff1614610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b87906119ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf79061192d565b60405180910390fd5b610c09816113a5565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390611a8d565b60405180910390fd5b610c886000838361146b565b8060026000828254610c9a9190611aff565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cef9190611aff565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d549190611aad565b60405180910390a3610d6860008383611470565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90611a4d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b9061194d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f329190611aad565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa690611a0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561101f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611016906118ed565b60405180910390fd5b61102a83838361146b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a79061196d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111439190611aff565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111a79190611aad565b60405180910390a36111ba848484611470565b50505050565b6111ca8282611475565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611235906119ed565b60405180910390fd5b61124a8260008361146b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c79061190d565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113279190611b55565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161138c9190611aad565b60405180910390a36113a083600084611470565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b61147d61057b565b81611486610470565b6114909190611aff565b11156114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890611a2d565b60405180910390fd5b6114db8282610c0c565b5050565b6000813590506114ee81612097565b92915050565b600081359050611503816120ae565b92915050565b60006020828403121561151f5761151e611ca1565b5b600061152d848285016114df565b91505092915050565b6000806040838503121561154d5761154c611ca1565b5b600061155b858286016114df565b925050602061156c858286016114df565b9150509250929050565b60008060006060848603121561158f5761158e611ca1565b5b600061159d868287016114df565b93505060206115ae868287016114df565b92505060406115bf868287016114f4565b9150509250925092565b600080604083850312156115e0576115df611ca1565b5b60006115ee858286016114df565b92505060206115ff858286016114f4565b9150509250929050565b60006020828403121561161f5761161e611ca1565b5b600061162d848285016114f4565b91505092915050565b61163f81611b89565b82525050565b61164e81611b9b565b82525050565b600061165f82611ae3565b6116698185611aee565b9350611679818560208601611bde565b61168281611ca6565b840191505092915050565b600061169a602383611aee565b91506116a582611cb7565b604082019050919050565b60006116bd602283611aee565b91506116c882611d06565b604082019050919050565b60006116e0602683611aee565b91506116eb82611d55565b604082019050919050565b6000611703602283611aee565b915061170e82611da4565b604082019050919050565b6000611726602683611aee565b915061173182611df3565b604082019050919050565b6000611749602883611aee565b915061175482611e42565b604082019050919050565b600061176c602083611aee565b915061177782611e91565b602082019050919050565b600061178f602483611aee565b915061179a82611eba565b604082019050919050565b60006117b2602183611aee565b91506117bd82611f09565b604082019050919050565b60006117d5602583611aee565b91506117e082611f58565b604082019050919050565b60006117f8601983611aee565b915061180382611fa7565b602082019050919050565b600061181b602483611aee565b915061182682611fd0565b604082019050919050565b600061183e602583611aee565b91506118498261201f565b604082019050919050565b6000611861601f83611aee565b915061186c8261206e565b602082019050919050565b61188081611bc7565b82525050565b61188f81611bd1565b82525050565b60006020820190506118aa6000830184611636565b92915050565b60006020820190506118c56000830184611645565b92915050565b600060208201905081810360008301526118e58184611654565b905092915050565b600060208201905081810360008301526119068161168d565b9050919050565b60006020820190508181036000830152611926816116b0565b9050919050565b60006020820190508181036000830152611946816116d3565b9050919050565b60006020820190508181036000830152611966816116f6565b9050919050565b6000602082019050818103600083015261198681611719565b9050919050565b600060208201905081810360008301526119a68161173c565b9050919050565b600060208201905081810360008301526119c68161175f565b9050919050565b600060208201905081810360008301526119e681611782565b9050919050565b60006020820190508181036000830152611a06816117a5565b9050919050565b60006020820190508181036000830152611a26816117c8565b9050919050565b60006020820190508181036000830152611a46816117eb565b9050919050565b60006020820190508181036000830152611a668161180e565b9050919050565b60006020820190508181036000830152611a8681611831565b9050919050565b60006020820190508181036000830152611aa681611854565b9050919050565b6000602082019050611ac26000830184611877565b92915050565b6000602082019050611add6000830184611886565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b0a82611bc7565b9150611b1583611bc7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b4a57611b49611c43565b5b828201905092915050565b6000611b6082611bc7565b9150611b6b83611bc7565b925082821015611b7e57611b7d611c43565b5b828203905092915050565b6000611b9482611ba7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611bfc578082015181840152602081019050611be1565b83811115611c0b576000848401525b50505050565b60006002820490506001821680611c2957607f821691505b60208210811415611c3d57611c3c611c72565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6120a081611b89565b81146120ab57600080fd5b50565b6120b781611bc7565b81146120c257600080fd5b5056fea26469706673582212204e3e300a8d37ec9949e840958fefdc34505859ff4e10f9eec207336bb40be81964736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a0712d6811610071578063a0712d68146102f8578063a457c2d714610314578063a9059cbb14610344578063dd62ed3e14610374578063f2fde38b146103a457610121565b806370a0823114610266578063715018a61461029657806379cc6790146102a05780638da5cb5b146102bc57806395d89b41146102da57610121565b8063313ce567116100f4578063313ce567146101c2578063355274ea146101e057806339509351146101fe57806340c10f191461022e57806342966c681461024a57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103c0565b60405161013b91906118cb565b60405180910390f35b61015e600480360381019061015991906115c9565b610452565b60405161016b91906118b0565b60405180910390f35b61017c610470565b6040516101899190611aad565b60405180910390f35b6101ac60048036038101906101a79190611576565b61047a565b6040516101b991906118b0565b60405180910390f35b6101ca610572565b6040516101d79190611ac8565b60405180910390f35b6101e861057b565b6040516101f59190611aad565b60405180910390f35b610218600480360381019061021391906115c9565b6105a3565b60405161022591906118b0565b60405180910390f35b610248600480360381019061024391906115c9565b61064f565b005b610264600480360381019061025f9190611609565b6106d9565b005b610280600480360381019061027b9190611509565b6106ed565b60405161028d9190611aad565b60405180910390f35b61029e610735565b005b6102ba60048036038101906102b591906115c9565b6107bd565b005b6102c4610838565b6040516102d19190611895565b60405180910390f35b6102e2610862565b6040516102ef91906118cb565b60405180910390f35b610312600480360381019061030d9190611609565b6108f4565b005b61032e600480360381019061032991906115c9565b610984565b60405161033b91906118b0565b60405180910390f35b61035e600480360381019061035991906115c9565b610a6f565b60405161036b91906118b0565b60405180910390f35b61038e60048036038101906103899190611536565b610a8d565b60405161039b9190611aad565b60405180910390f35b6103be60048036038101906103b99190611509565b610b14565b005b6060600380546103cf90611c11565b80601f01602080910402602001604051908101604052809291908181526020018280546103fb90611c11565b80156104485780601f1061041d57610100808354040283529160200191610448565b820191906000526020600020905b81548152906001019060200180831161042b57829003601f168201915b5050505050905090565b600061046661045f610d6c565b8484610d74565b6001905092915050565b6000600254905090565b6000610487848484610f3f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d2610d6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610552576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105499061198d565b60405180910390fd5b6105668561055e610d6c565b858403610d74565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000905090565b60006106456105b0610d6c565b8484600160006105be610d6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106409190611aff565b610d74565b6001905092915050565b610657610d6c565b73ffffffffffffffffffffffffffffffffffffffff16610675610838565b73ffffffffffffffffffffffffffffffffffffffff16146106cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c2906119ad565b60405180910390fd5b6106d582826111c0565b5050565b6106ea6106e4610d6c565b826111ce565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61073d610d6c565b73ffffffffffffffffffffffffffffffffffffffff1661075b610838565b73ffffffffffffffffffffffffffffffffffffffff16146107b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a8906119ad565b60405180910390fd5b6107bb60006113a5565b565b60006107d0836107cb610d6c565b610a8d565b905081811015610815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080c906119cd565b60405180910390fd5b61082983610821610d6c565b848403610d74565b61083383836111ce565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461087190611c11565b80601f016020809104026020016040519081016040528092919081815260200182805461089d90611c11565b80156108ea5780601f106108bf576101008083540402835291602001916108ea565b820191906000526020600020905b8154815290600101906020018083116108cd57829003601f168201915b5050505050905090565b6108fc610d6c565b73ffffffffffffffffffffffffffffffffffffffff1661091a610838565b73ffffffffffffffffffffffffffffffffffffffff1614610970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610967906119ad565b60405180910390fd5b61098161097b610d6c565b826111c0565b50565b60008060016000610993610d6c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4790611a6d565b60405180910390fd5b610a64610a5b610d6c565b85858403610d74565b600191505092915050565b6000610a83610a7c610d6c565b8484610f3f565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b1c610d6c565b73ffffffffffffffffffffffffffffffffffffffff16610b3a610838565b73ffffffffffffffffffffffffffffffffffffffff1614610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b87906119ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf79061192d565b60405180910390fd5b610c09816113a5565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7390611a8d565b60405180910390fd5b610c886000838361146b565b8060026000828254610c9a9190611aff565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cef9190611aff565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d549190611aad565b60405180910390a3610d6860008383611470565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90611a4d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b9061194d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f329190611aad565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa690611a0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561101f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611016906118ed565b60405180910390fd5b61102a83838361146b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a79061196d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111439190611aff565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111a79190611aad565b60405180910390a36111ba848484611470565b50505050565b6111ca8282611475565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611235906119ed565b60405180910390fd5b61124a8260008361146b565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c79061190d565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113279190611b55565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161138c9190611aad565b60405180910390a36113a083600084611470565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b61147d61057b565b81611486610470565b6114909190611aff565b11156114d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c890611a2d565b60405180910390fd5b6114db8282610c0c565b5050565b6000813590506114ee81612097565b92915050565b600081359050611503816120ae565b92915050565b60006020828403121561151f5761151e611ca1565b5b600061152d848285016114df565b91505092915050565b6000806040838503121561154d5761154c611ca1565b5b600061155b858286016114df565b925050602061156c858286016114df565b9150509250929050565b60008060006060848603121561158f5761158e611ca1565b5b600061159d868287016114df565b93505060206115ae868287016114df565b92505060406115bf868287016114f4565b9150509250925092565b600080604083850312156115e0576115df611ca1565b5b60006115ee858286016114df565b92505060206115ff858286016114f4565b9150509250929050565b60006020828403121561161f5761161e611ca1565b5b600061162d848285016114f4565b91505092915050565b61163f81611b89565b82525050565b61164e81611b9b565b82525050565b600061165f82611ae3565b6116698185611aee565b9350611679818560208601611bde565b61168281611ca6565b840191505092915050565b600061169a602383611aee565b91506116a582611cb7565b604082019050919050565b60006116bd602283611aee565b91506116c882611d06565b604082019050919050565b60006116e0602683611aee565b91506116eb82611d55565b604082019050919050565b6000611703602283611aee565b915061170e82611da4565b604082019050919050565b6000611726602683611aee565b915061173182611df3565b604082019050919050565b6000611749602883611aee565b915061175482611e42565b604082019050919050565b600061176c602083611aee565b915061177782611e91565b602082019050919050565b600061178f602483611aee565b915061179a82611eba565b604082019050919050565b60006117b2602183611aee565b91506117bd82611f09565b604082019050919050565b60006117d5602583611aee565b91506117e082611f58565b604082019050919050565b60006117f8601983611aee565b915061180382611fa7565b602082019050919050565b600061181b602483611aee565b915061182682611fd0565b604082019050919050565b600061183e602583611aee565b91506118498261201f565b604082019050919050565b6000611861601f83611aee565b915061186c8261206e565b602082019050919050565b61188081611bc7565b82525050565b61188f81611bd1565b82525050565b60006020820190506118aa6000830184611636565b92915050565b60006020820190506118c56000830184611645565b92915050565b600060208201905081810360008301526118e58184611654565b905092915050565b600060208201905081810360008301526119068161168d565b9050919050565b60006020820190508181036000830152611926816116b0565b9050919050565b60006020820190508181036000830152611946816116d3565b9050919050565b60006020820190508181036000830152611966816116f6565b9050919050565b6000602082019050818103600083015261198681611719565b9050919050565b600060208201905081810360008301526119a68161173c565b9050919050565b600060208201905081810360008301526119c68161175f565b9050919050565b600060208201905081810360008301526119e681611782565b9050919050565b60006020820190508181036000830152611a06816117a5565b9050919050565b60006020820190508181036000830152611a26816117c8565b9050919050565b60006020820190508181036000830152611a46816117eb565b9050919050565b60006020820190508181036000830152611a668161180e565b9050919050565b60006020820190508181036000830152611a8681611831565b9050919050565b60006020820190508181036000830152611aa681611854565b9050919050565b6000602082019050611ac26000830184611877565b92915050565b6000602082019050611add6000830184611886565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b0a82611bc7565b9150611b1583611bc7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b4a57611b49611c43565b5b828201905092915050565b6000611b6082611bc7565b9150611b6b83611bc7565b925082821015611b7e57611b7d611c43565b5b828203905092915050565b6000611b9482611ba7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611bfc578082015181840152602081019050611be1565b83811115611c0b576000848401525b50505050565b60006002820490506001821680611c2957607f821691505b60208210811415611c3d57611c3c611c72565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6120a081611b89565b81146120ab57600080fd5b50565b6120b781611bc7565b81146120c257600080fd5b5056fea26469706673582212204e3e300a8d37ec9949e840958fefdc34505859ff4e10f9eec207336bb40be81964736f6c63430008070033

Deployed Bytecode Sourcemap

21606:599:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9185:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11352:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10305:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12003:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10147:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19826:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12904:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21942:97;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20749:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10476:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2606:103;;;:::i;:::-;;21159:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1955:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9404:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21839:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13622:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10816:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11054:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2864:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9185:100;9239:13;9272:5;9265:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9185:100;:::o;11352:169::-;11435:4;11452:39;11461:12;:10;:12::i;:::-;11475:7;11484:6;11452:8;:39::i;:::-;11509:4;11502:11;;11352:169;;;;:::o;10305:108::-;10366:7;10393:12;;10386:19;;10305:108;:::o;12003:492::-;12143:4;12160:36;12170:6;12178:9;12189:6;12160:9;:36::i;:::-;12209:24;12236:11;:19;12248:6;12236:19;;;;;;;;;;;;;;;:33;12256:12;:10;:12::i;:::-;12236:33;;;;;;;;;;;;;;;;12209:60;;12308:6;12288:16;:26;;12280:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12395:57;12404:6;12412:12;:10;:12::i;:::-;12445:6;12426:16;:25;12395:8;:57::i;:::-;12483:4;12476:11;;;12003:492;;;;;:::o;10147:93::-;10205:5;10230:2;10223:9;;10147:93;:::o;19826:83::-;19870:7;19897:4;19890:11;;19826:83;:::o;12904:215::-;12992:4;13009:80;13018:12;:10;:12::i;:::-;13032:7;13078:10;13041:11;:25;13053:12;:10;:12::i;:::-;13041:25;;;;;;;;;;;;;;;:34;13067:7;13041:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13009:8;:80::i;:::-;13107:4;13100:11;;12904:215;;;;:::o;21942:97::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22014:17:::1;22020:2;22024:6;22014:5;:17::i;:::-;21942:97:::0;;:::o;20749:91::-;20805:27;20811:12;:10;:12::i;:::-;20825:6;20805:5;:27::i;:::-;20749:91;:::o;10476:127::-;10550:7;10577:9;:18;10587:7;10577:18;;;;;;;;;;;;;;;;10570:25;;10476:127;;;:::o;2606:103::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;21159:368::-;21236:24;21263:32;21273:7;21282:12;:10;:12::i;:::-;21263:9;:32::i;:::-;21236:59;;21334:6;21314:16;:26;;21306:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;21417:58;21426:7;21435:12;:10;:12::i;:::-;21468:6;21449:16;:25;21417:8;:58::i;:::-;21497:22;21503:7;21512:6;21497:5;:22::i;:::-;21225:302;21159:368;;:::o;1955:87::-;2001:7;2028:6;;;;;;;;;;;2021:13;;1955:87;:::o;9404:104::-;9460:13;9493:7;9486:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9404:104;:::o;21839:95::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21899:27:::1;21905:12;:10;:12::i;:::-;21919:6;21899:5;:27::i;:::-;21839:95:::0;:::o;13622:413::-;13715:4;13732:24;13759:11;:25;13771:12;:10;:12::i;:::-;13759:25;;;;;;;;;;;;;;;:34;13785:7;13759:34;;;;;;;;;;;;;;;;13732:61;;13832:15;13812:16;:35;;13804:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13925:67;13934:12;:10;:12::i;:::-;13948:7;13976:15;13957:16;:34;13925:8;:67::i;:::-;14023:4;14016:11;;;13622:413;;;;:::o;10816:175::-;10902:4;10919:42;10929:12;:10;:12::i;:::-;10943:9;10954:6;10919:9;:42::i;:::-;10979:4;10972:11;;10816:175;;;;:::o;11054:151::-;11143:7;11170:11;:18;11182:5;11170:18;;;;;;;;;;;;;;;:27;11189:7;11170:27;;;;;;;;;;;;;;;;11163:34;;11054:151;;;;:::o;2864:201::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2973:1:::1;2953:22;;:8;:22;;;;2945:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3029:28;3048:8;3029:18;:28::i;:::-;2864:201:::0;:::o;15545:399::-;15648:1;15629:21;;:7;:21;;;;15621:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;15699:49;15728:1;15732:7;15741:6;15699:20;:49::i;:::-;15777:6;15761:12;;:22;;;;;;;:::i;:::-;;;;;;;;15816:6;15794:9;:18;15804:7;15794:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;15859:7;15838:37;;15855:1;15838:37;;;15868:6;15838:37;;;;;;:::i;:::-;;;;;;;;15888:48;15916:1;15920:7;15929:6;15888:19;:48::i;:::-;15545:399;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;17306:380::-;17459:1;17442:19;;:5;:19;;;;17434:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17540:1;17521:21;;:7;:21;;;;17513:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17624:6;17594:11;:18;17606:5;17594:18;;;;;;;;;;;;;;;:27;17613:7;17594:27;;;;;;;;;;;;;;;:36;;;;17662:7;17646:32;;17655:5;17646:32;;;17671:6;17646:32;;;;;;:::i;:::-;;;;;;;;17306:380;;;:::o;14525:733::-;14683:1;14665:20;;:6;:20;;;;14657:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14767:1;14746:23;;:9;:23;;;;14738:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14822:47;14843:6;14851:9;14862:6;14822:20;:47::i;:::-;14882:21;14906:9;:17;14916:6;14906:17;;;;;;;;;;;;;;;;14882:41;;14959:6;14942:13;:23;;14934:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15080:6;15064:13;:22;15044:9;:17;15054:6;15044:17;;;;;;;;;;;;;;;:42;;;;15132:6;15108:9;:20;15118:9;15108:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15173:9;15156:35;;15165:6;15156:35;;;15184:6;15156:35;;;;;;:::i;:::-;;;;;;;;15204:46;15224:6;15232:9;15243:6;15204:19;:46::i;:::-;14646:612;14525:733;;;:::o;22051:144::-;22153:34;22171:7;22180:6;22153:17;:34::i;:::-;22051:144;;:::o;16277:591::-;16380:1;16361:21;;:7;:21;;;;16353:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16433:49;16454:7;16471:1;16475:6;16433:20;:49::i;:::-;16495:22;16520:9;:18;16530:7;16520:18;;;;;;;;;;;;;;;;16495:43;;16575:6;16557:14;:24;;16549:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16694:6;16677:14;:23;16656:9;:18;16666:7;16656:18;;;;;;;;;;;;;;;:44;;;;16738:6;16722:12;;:22;;;;;;;:::i;:::-;;;;;;;;16788:1;16762:37;;16771:7;16762:37;;;16792:6;16762:37;;;;;;:::i;:::-;;;;;;;;16812:48;16832:7;16849:1;16853:6;16812:19;:48::i;:::-;16342:526;16277:591;;:::o;3225:191::-;3299:16;3318:6;;;;;;;;;;;3299:25;;3344:8;3335:6;;:17;;;;;;;;;;;;;;;;;;3399:8;3368:40;;3389:8;3368:40;;;;;;;;;;;;3288:128;3225:191;:::o;18286:125::-;;;;:::o;19015:124::-;;;;:::o;19967:207::-;20092:5;:3;:5::i;:::-;20082:6;20060:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;20052:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;20138:28;20150:7;20159:6;20138:11;:28::i;:::-;19967:207;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:329::-;2276:6;2325:2;2313:9;2304:7;2300:23;2296:32;2293:119;;;2331:79;;:::i;:::-;2293:119;2451:1;2476:53;2521:7;2512:6;2501:9;2497:22;2476:53;:::i;:::-;2466:63;;2422:117;2217:329;;;;:::o;2552:118::-;2639:24;2657:5;2639:24;:::i;:::-;2634:3;2627:37;2552:118;;:::o;2676:109::-;2757:21;2772:5;2757:21;:::i;:::-;2752:3;2745:34;2676:109;;:::o;2791:364::-;2879:3;2907:39;2940:5;2907:39;:::i;:::-;2962:71;3026:6;3021:3;2962:71;:::i;:::-;2955:78;;3042:52;3087:6;3082:3;3075:4;3068:5;3064:16;3042:52;:::i;:::-;3119:29;3141:6;3119:29;:::i;:::-;3114:3;3110:39;3103:46;;2883:272;2791:364;;;;:::o;3161:366::-;3303:3;3324:67;3388:2;3383:3;3324:67;:::i;:::-;3317:74;;3400:93;3489:3;3400:93;:::i;:::-;3518:2;3513:3;3509:12;3502:19;;3161:366;;;:::o;3533:::-;3675:3;3696:67;3760:2;3755:3;3696:67;:::i;:::-;3689:74;;3772:93;3861:3;3772:93;:::i;:::-;3890:2;3885:3;3881:12;3874:19;;3533:366;;;:::o;3905:::-;4047:3;4068:67;4132:2;4127:3;4068:67;:::i;:::-;4061:74;;4144:93;4233:3;4144:93;:::i;:::-;4262:2;4257:3;4253:12;4246:19;;3905:366;;;:::o;4277:::-;4419:3;4440:67;4504:2;4499:3;4440:67;:::i;:::-;4433:74;;4516:93;4605:3;4516:93;:::i;:::-;4634:2;4629:3;4625:12;4618:19;;4277:366;;;:::o;4649:::-;4791:3;4812:67;4876:2;4871:3;4812:67;:::i;:::-;4805:74;;4888:93;4977:3;4888:93;:::i;:::-;5006:2;5001:3;4997:12;4990:19;;4649:366;;;:::o;5021:::-;5163:3;5184:67;5248:2;5243:3;5184:67;:::i;:::-;5177:74;;5260:93;5349:3;5260:93;:::i;:::-;5378:2;5373:3;5369:12;5362:19;;5021:366;;;:::o;5393:::-;5535:3;5556:67;5620:2;5615:3;5556:67;:::i;:::-;5549:74;;5632:93;5721:3;5632:93;:::i;:::-;5750:2;5745:3;5741:12;5734:19;;5393:366;;;:::o;5765:::-;5907:3;5928:67;5992:2;5987:3;5928:67;:::i;:::-;5921:74;;6004:93;6093:3;6004:93;:::i;:::-;6122:2;6117:3;6113:12;6106:19;;5765:366;;;:::o;6137:::-;6279:3;6300:67;6364:2;6359:3;6300:67;:::i;:::-;6293:74;;6376:93;6465:3;6376:93;:::i;:::-;6494:2;6489:3;6485:12;6478:19;;6137:366;;;:::o;6509:::-;6651:3;6672:67;6736:2;6731:3;6672:67;:::i;:::-;6665:74;;6748:93;6837:3;6748:93;:::i;:::-;6866:2;6861:3;6857:12;6850:19;;6509:366;;;:::o;6881:::-;7023:3;7044:67;7108:2;7103:3;7044:67;:::i;:::-;7037:74;;7120:93;7209:3;7120:93;:::i;:::-;7238:2;7233:3;7229:12;7222:19;;6881:366;;;:::o;7253:::-;7395:3;7416:67;7480:2;7475:3;7416:67;:::i;:::-;7409:74;;7492:93;7581:3;7492:93;:::i;:::-;7610:2;7605:3;7601:12;7594:19;;7253:366;;;:::o;7625:::-;7767:3;7788:67;7852:2;7847:3;7788:67;:::i;:::-;7781:74;;7864:93;7953:3;7864:93;:::i;:::-;7982:2;7977:3;7973:12;7966:19;;7625:366;;;:::o;7997:::-;8139:3;8160:67;8224:2;8219:3;8160:67;:::i;:::-;8153:74;;8236:93;8325:3;8236:93;:::i;:::-;8354:2;8349:3;8345:12;8338:19;;7997:366;;;:::o;8369:118::-;8456:24;8474:5;8456:24;:::i;:::-;8451:3;8444:37;8369:118;;:::o;8493:112::-;8576:22;8592:5;8576:22;:::i;:::-;8571:3;8564:35;8493:112;;:::o;8611:222::-;8704:4;8742:2;8731:9;8727:18;8719:26;;8755:71;8823:1;8812:9;8808:17;8799:6;8755:71;:::i;:::-;8611:222;;;;:::o;8839:210::-;8926:4;8964:2;8953:9;8949:18;8941:26;;8977:65;9039:1;9028:9;9024:17;9015:6;8977:65;:::i;:::-;8839:210;;;;:::o;9055:313::-;9168:4;9206:2;9195:9;9191:18;9183:26;;9255:9;9249:4;9245:20;9241:1;9230:9;9226:17;9219:47;9283:78;9356:4;9347:6;9283:78;:::i;:::-;9275:86;;9055:313;;;;:::o;9374:419::-;9540:4;9578:2;9567:9;9563:18;9555:26;;9627:9;9621:4;9617:20;9613:1;9602:9;9598:17;9591:47;9655:131;9781:4;9655:131;:::i;:::-;9647:139;;9374:419;;;:::o;9799:::-;9965:4;10003:2;9992:9;9988:18;9980:26;;10052:9;10046:4;10042:20;10038:1;10027:9;10023:17;10016:47;10080:131;10206:4;10080:131;:::i;:::-;10072:139;;9799:419;;;:::o;10224:::-;10390:4;10428:2;10417:9;10413:18;10405:26;;10477:9;10471:4;10467:20;10463:1;10452:9;10448:17;10441:47;10505:131;10631:4;10505:131;:::i;:::-;10497:139;;10224:419;;;:::o;10649:::-;10815:4;10853:2;10842:9;10838:18;10830:26;;10902:9;10896:4;10892:20;10888:1;10877:9;10873:17;10866:47;10930:131;11056:4;10930:131;:::i;:::-;10922:139;;10649:419;;;:::o;11074:::-;11240:4;11278:2;11267:9;11263:18;11255:26;;11327:9;11321:4;11317:20;11313:1;11302:9;11298:17;11291:47;11355:131;11481:4;11355:131;:::i;:::-;11347:139;;11074:419;;;:::o;11499:::-;11665:4;11703:2;11692:9;11688:18;11680:26;;11752:9;11746:4;11742:20;11738:1;11727:9;11723:17;11716:47;11780:131;11906:4;11780:131;:::i;:::-;11772:139;;11499:419;;;:::o;11924:::-;12090:4;12128:2;12117:9;12113:18;12105:26;;12177:9;12171:4;12167:20;12163:1;12152:9;12148:17;12141:47;12205:131;12331:4;12205:131;:::i;:::-;12197:139;;11924:419;;;:::o;12349:::-;12515:4;12553:2;12542:9;12538:18;12530:26;;12602:9;12596:4;12592:20;12588:1;12577:9;12573:17;12566:47;12630:131;12756:4;12630:131;:::i;:::-;12622:139;;12349:419;;;:::o;12774:::-;12940:4;12978:2;12967:9;12963:18;12955:26;;13027:9;13021:4;13017:20;13013:1;13002:9;12998:17;12991:47;13055:131;13181:4;13055:131;:::i;:::-;13047:139;;12774:419;;;:::o;13199:::-;13365:4;13403:2;13392:9;13388:18;13380:26;;13452:9;13446:4;13442:20;13438:1;13427:9;13423:17;13416:47;13480:131;13606:4;13480:131;:::i;:::-;13472:139;;13199:419;;;:::o;13624:::-;13790:4;13828:2;13817:9;13813:18;13805:26;;13877:9;13871:4;13867:20;13863:1;13852:9;13848:17;13841:47;13905:131;14031:4;13905:131;:::i;:::-;13897:139;;13624:419;;;:::o;14049:::-;14215:4;14253:2;14242:9;14238:18;14230:26;;14302:9;14296:4;14292:20;14288:1;14277:9;14273:17;14266:47;14330:131;14456:4;14330:131;:::i;:::-;14322:139;;14049:419;;;:::o;14474:::-;14640:4;14678:2;14667:9;14663:18;14655:26;;14727:9;14721:4;14717:20;14713:1;14702:9;14698:17;14691:47;14755:131;14881:4;14755:131;:::i;:::-;14747:139;;14474:419;;;:::o;14899:::-;15065:4;15103:2;15092:9;15088:18;15080:26;;15152:9;15146:4;15142:20;15138:1;15127:9;15123:17;15116:47;15180:131;15306:4;15180:131;:::i;:::-;15172:139;;14899:419;;;:::o;15324:222::-;15417:4;15455:2;15444:9;15440:18;15432:26;;15468:71;15536:1;15525:9;15521:17;15512:6;15468:71;:::i;:::-;15324:222;;;;:::o;15552:214::-;15641:4;15679:2;15668:9;15664:18;15656:26;;15692:67;15756:1;15745:9;15741:17;15732:6;15692:67;:::i;:::-;15552:214;;;;:::o;15853:99::-;15905:6;15939:5;15933:12;15923:22;;15853:99;;;:::o;15958:169::-;16042:11;16076:6;16071:3;16064:19;16116:4;16111:3;16107:14;16092:29;;15958:169;;;;:::o;16133:305::-;16173:3;16192:20;16210:1;16192:20;:::i;:::-;16187:25;;16226:20;16244:1;16226:20;:::i;:::-;16221:25;;16380:1;16312:66;16308:74;16305:1;16302:81;16299:107;;;16386:18;;:::i;:::-;16299:107;16430:1;16427;16423:9;16416:16;;16133:305;;;;:::o;16444:191::-;16484:4;16504:20;16522:1;16504:20;:::i;:::-;16499:25;;16538:20;16556:1;16538:20;:::i;:::-;16533:25;;16577:1;16574;16571:8;16568:34;;;16582:18;;:::i;:::-;16568:34;16627:1;16624;16620:9;16612:17;;16444:191;;;;:::o;16641:96::-;16678:7;16707:24;16725:5;16707:24;:::i;:::-;16696:35;;16641:96;;;:::o;16743:90::-;16777:7;16820:5;16813:13;16806:21;16795:32;;16743:90;;;:::o;16839:126::-;16876:7;16916:42;16909:5;16905:54;16894:65;;16839:126;;;:::o;16971:77::-;17008:7;17037:5;17026:16;;16971:77;;;:::o;17054:86::-;17089:7;17129:4;17122:5;17118:16;17107:27;;17054:86;;;:::o;17146:307::-;17214:1;17224:113;17238:6;17235:1;17232:13;17224:113;;;17323:1;17318:3;17314:11;17308:18;17304:1;17299:3;17295:11;17288:39;17260:2;17257:1;17253:10;17248:15;;17224:113;;;17355:6;17352:1;17349:13;17346:101;;;17435:1;17426:6;17421:3;17417:16;17410:27;17346:101;17195:258;17146:307;;;:::o;17459:320::-;17503:6;17540:1;17534:4;17530:12;17520:22;;17587:1;17581:4;17577:12;17608:18;17598:81;;17664:4;17656:6;17652:17;17642:27;;17598:81;17726:2;17718:6;17715:14;17695:18;17692:38;17689:84;;;17745:18;;:::i;:::-;17689:84;17510:269;17459:320;;;:::o;17785:180::-;17833:77;17830:1;17823:88;17930:4;17927:1;17920:15;17954:4;17951:1;17944:15;17971:180;18019:77;18016:1;18009:88;18116:4;18113:1;18106:15;18140:4;18137:1;18130:15;18280:117;18389:1;18386;18379:12;18403:102;18444:6;18495:2;18491:7;18486:2;18479:5;18475:14;18471:28;18461:38;;18403:102;;;:::o;18511:222::-;18651:34;18647:1;18639:6;18635:14;18628:58;18720:5;18715:2;18707:6;18703:15;18696:30;18511:222;:::o;18739:221::-;18879:34;18875:1;18867:6;18863:14;18856:58;18948:4;18943:2;18935:6;18931:15;18924:29;18739:221;:::o;18966:225::-;19106:34;19102:1;19094:6;19090:14;19083:58;19175:8;19170:2;19162:6;19158:15;19151:33;18966:225;:::o;19197:221::-;19337:34;19333:1;19325:6;19321:14;19314:58;19406:4;19401:2;19393:6;19389:15;19382:29;19197:221;:::o;19424:225::-;19564:34;19560:1;19552:6;19548:14;19541:58;19633:8;19628:2;19620:6;19616:15;19609:33;19424:225;:::o;19655:227::-;19795:34;19791:1;19783:6;19779:14;19772:58;19864:10;19859:2;19851:6;19847:15;19840:35;19655:227;:::o;19888:182::-;20028:34;20024:1;20016:6;20012:14;20005:58;19888:182;:::o;20076:223::-;20216:34;20212:1;20204:6;20200:14;20193:58;20285:6;20280:2;20272:6;20268:15;20261:31;20076:223;:::o;20305:220::-;20445:34;20441:1;20433:6;20429:14;20422:58;20514:3;20509:2;20501:6;20497:15;20490:28;20305:220;:::o;20531:224::-;20671:34;20667:1;20659:6;20655:14;20648:58;20740:7;20735:2;20727:6;20723:15;20716:32;20531:224;:::o;20761:175::-;20901:27;20897:1;20889:6;20885:14;20878:51;20761:175;:::o;20942:223::-;21082:34;21078:1;21070:6;21066:14;21059:58;21151:6;21146:2;21138:6;21134:15;21127:31;20942:223;:::o;21171:224::-;21311:34;21307:1;21299:6;21295:14;21288:58;21380:7;21375:2;21367:6;21363:15;21356:32;21171:224;:::o;21401:181::-;21541:33;21537:1;21529:6;21525:14;21518:57;21401:181;:::o;21588:122::-;21661:24;21679:5;21661:24;:::i;:::-;21654:5;21651:35;21641:63;;21700:1;21697;21690:12;21641:63;21588:122;:::o;21716:::-;21789:24;21807:5;21789:24;:::i;:::-;21782:5;21779:35;21769:63;;21828:1;21825;21818:12;21769:63;21716:122;:::o

Swarm Source

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