ETH Price: $2,369.34 (-2.91%)

Token

Pegasus (PEGA)
 

Overview

Max Total Supply

5,000,000,000,000 PEGA

Holders

30

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
PegasusToken

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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 {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/PEGASUS.sol


pragma solidity ^0.8.9;





contract PegasusToken is ERC20, ERC20Burnable, Pausable, Ownable {
    constructor() ERC20("Pegasus", "PEGA") {
        _mint(msg.sender, 5000000000000 * 10 ** decimals());
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, 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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":"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":[],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600781526020017f50656761737573000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f50454741000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000969291906200041d565b508060049080519060200190620000af9291906200041d565b5050506000600560006101000a81548160ff021916908315150217905550620000ed620000e16200013560201b60201c565b6200013d60201b60201c565b6200012f33620001026200020360201b60201c565b600a62000110919062000667565b65048c27395000620001239190620006b8565b6200020c60201b60201c565b620008fe565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200027f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000276906200077a565b60405180910390fd5b62000293600083836200037a60201b60201c565b8060026000828254620002a791906200079c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200035a91906200080a565b60405180910390a36200037660008383620003a760201b60201c565b5050565b6200038a620003ac60201b60201c565b620003a28383836200040160201b620008331760201c565b505050565b505050565b620003bc6200040660201b60201c565b15620003ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f69062000877565b60405180910390fd5b565b505050565b6000600560009054906101000a900460ff16905090565b8280546200042b90620008c8565b90600052602060002090601f0160209004810192826200044f57600085556200049b565b82601f106200046a57805160ff19168380011785556200049b565b828001600101855582156200049b579182015b828111156200049a5782518255916020019190600101906200047d565b5b509050620004aa9190620004ae565b5090565b5b80821115620004c9576000816000905550600101620004af565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200055b57808604811115620005335762000532620004cd565b5b6001851615620005435780820291505b80810290506200055385620004fc565b945062000513565b94509492505050565b60008262000576576001905062000649565b8162000586576000905062000649565b81600181146200059f5760028114620005aa57620005e0565b600191505062000649565b60ff841115620005bf57620005be620004cd565b5b8360020a915084821115620005d957620005d8620004cd565b5b5062000649565b5060208310610133831016604e8410600b84101617156200061a5782820a905083811115620006145762000613620004cd565b5b62000649565b62000629848484600162000509565b92509050818404811115620006435762000642620004cd565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620006748262000650565b915062000681836200065a565b9250620006b07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000564565b905092915050565b6000620006c58262000650565b9150620006d28362000650565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200070e576200070d620004cd565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000762601f8362000719565b91506200076f826200072a565b602082019050919050565b60006020820190508181036000830152620007958162000753565b9050919050565b6000620007a98262000650565b9150620007b68362000650565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620007ee57620007ed620004cd565b5b828201905092915050565b620008048162000650565b82525050565b6000602082019050620008216000830184620007f9565b92915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006200085f60108362000719565b91506200086c8262000827565b602082019050919050565b60006020820190508181036000830152620008928162000850565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008e157607f821691505b60208210811415620008f857620008f762000899565b5b50919050565b611e8a806200090e6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102f9578063a457c2d714610317578063a9059cbb14610347578063dd62ed3e14610377578063f2fde38b146103a75761012c565b806370a082311461027b578063715018a6146102ab57806379cc6790146102b55780638456cb59146102d15780638da5cb5b146102db5761012c565b806339509351116100f457806339509351146101eb5780633f4ba83a1461021b57806340c10f191461022557806342966c68146102415780635c975abb1461025d5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103c3565b6040516101469190611387565b60405180910390f35b61016960048036038101906101649190611442565b610455565b604051610176919061149d565b60405180910390f35b610187610478565b60405161019491906114c7565b60405180910390f35b6101b760048036038101906101b291906114e2565b610482565b6040516101c4919061149d565b60405180910390f35b6101d56104b1565b6040516101e29190611551565b60405180910390f35b61020560048036038101906102009190611442565b6104ba565b604051610212919061149d565b60405180910390f35b6102236104f1565b005b61023f600480360381019061023a9190611442565b610503565b005b61025b6004803603810190610256919061156c565b610519565b005b61026561052d565b604051610272919061149d565b60405180910390f35b61029560048036038101906102909190611599565b610544565b6040516102a291906114c7565b60405180910390f35b6102b361058c565b005b6102cf60048036038101906102ca9190611442565b6105a0565b005b6102d96105c0565b005b6102e36105d2565b6040516102f091906115d5565b60405180910390f35b6103016105fc565b60405161030e9190611387565b60405180910390f35b610331600480360381019061032c9190611442565b61068e565b60405161033e919061149d565b60405180910390f35b610361600480360381019061035c9190611442565b610705565b60405161036e919061149d565b60405180910390f35b610391600480360381019061038c91906115f0565b610728565b60405161039e91906114c7565b60405180910390f35b6103c160048036038101906103bc9190611599565b6107af565b005b6060600380546103d29061165f565b80601f01602080910402602001604051908101604052809291908181526020018280546103fe9061165f565b801561044b5780601f106104205761010080835404028352916020019161044b565b820191906000526020600020905b81548152906001019060200180831161042e57829003601f168201915b5050505050905090565b600080610460610838565b905061046d818585610840565b600191505092915050565b6000600254905090565b60008061048d610838565b905061049a858285610a0b565b6104a5858585610a97565b60019150509392505050565b60006012905090565b6000806104c5610838565b90506104e68185856104d78589610728565b6104e191906116c0565b610840565b600191505092915050565b6104f9610d0f565b610501610d8d565b565b61050b610d0f565b6105158282610df0565b5050565b61052a610524610838565b82610f47565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610594610d0f565b61059e6000611115565b565b6105b2826105ac610838565b83610a0b565b6105bc8282610f47565b5050565b6105c8610d0f565b6105d06111db565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461060b9061165f565b80601f01602080910402602001604051908101604052809291908181526020018280546106379061165f565b80156106845780601f1061065957610100808354040283529160200191610684565b820191906000526020600020905b81548152906001019060200180831161066757829003601f168201915b5050505050905090565b600080610699610838565b905060006106a78286610728565b9050838110156106ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e390611788565b60405180910390fd5b6106f98286868403610840565b60019250505092915050565b600080610710610838565b905061071d818585610a97565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107b7610d0f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081e9061181a565b60405180910390fd5b61083081611115565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a7906118ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610920576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109179061193e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109fe91906114c7565b60405180910390a3505050565b6000610a178484610728565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a915781811015610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a906119aa565b60405180910390fd5b610a908484848403610840565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90611a3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e90611ace565b60405180910390fd5b610b8283838361123e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90611b60565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cf691906114c7565b60405180910390a3610d09848484611256565b50505050565b610d17610838565b73ffffffffffffffffffffffffffffffffffffffff16610d356105d2565b73ffffffffffffffffffffffffffffffffffffffff1614610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290611bcc565b60405180910390fd5b565b610d9561125b565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610dd9610838565b604051610de691906115d5565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5790611c38565b60405180910390fd5b610e6c6000838361123e565b8060026000828254610e7e91906116c0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f2f91906114c7565b60405180910390a3610f4360008383611256565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae90611cca565b60405180910390fd5b610fc38260008361123e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090611d5c565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110fc91906114c7565b60405180910390a361111083600084611256565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6111e36112a4565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611227610838565b60405161123491906115d5565b60405180910390a1565b6112466112a4565b611251838383610833565b505050565b505050565b61126361052d565b6112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990611dc8565b60405180910390fd5b565b6112ac61052d565b156112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390611e34565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b8381101561132857808201518184015260208101905061130d565b83811115611337576000848401525b50505050565b6000601f19601f8301169050919050565b6000611359826112ee565b61136381856112f9565b935061137381856020860161130a565b61137c8161133d565b840191505092915050565b600060208201905081810360008301526113a1818461134e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113d9826113ae565b9050919050565b6113e9816113ce565b81146113f457600080fd5b50565b600081359050611406816113e0565b92915050565b6000819050919050565b61141f8161140c565b811461142a57600080fd5b50565b60008135905061143c81611416565b92915050565b60008060408385031215611459576114586113a9565b5b6000611467858286016113f7565b92505060206114788582860161142d565b9150509250929050565b60008115159050919050565b61149781611482565b82525050565b60006020820190506114b2600083018461148e565b92915050565b6114c18161140c565b82525050565b60006020820190506114dc60008301846114b8565b92915050565b6000806000606084860312156114fb576114fa6113a9565b5b6000611509868287016113f7565b935050602061151a868287016113f7565b925050604061152b8682870161142d565b9150509250925092565b600060ff82169050919050565b61154b81611535565b82525050565b60006020820190506115666000830184611542565b92915050565b600060208284031215611582576115816113a9565b5b60006115908482850161142d565b91505092915050565b6000602082840312156115af576115ae6113a9565b5b60006115bd848285016113f7565b91505092915050565b6115cf816113ce565b82525050565b60006020820190506115ea60008301846115c6565b92915050565b60008060408385031215611607576116066113a9565b5b6000611615858286016113f7565b9250506020611626858286016113f7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061167757607f821691505b6020821081141561168b5761168a611630565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116cb8261140c565b91506116d68361140c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561170b5761170a611691565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117726025836112f9565b915061177d82611716565b604082019050919050565b600060208201905081810360008301526117a181611765565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118046026836112f9565b915061180f826117a8565b604082019050919050565b60006020820190508181036000830152611833816117f7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118966024836112f9565b91506118a18261183a565b604082019050919050565b600060208201905081810360008301526118c581611889565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006119286022836112f9565b9150611933826118cc565b604082019050919050565b600060208201905081810360008301526119578161191b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611994601d836112f9565b915061199f8261195e565b602082019050919050565b600060208201905081810360008301526119c381611987565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a266025836112f9565b9150611a31826119ca565b604082019050919050565b60006020820190508181036000830152611a5581611a19565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ab86023836112f9565b9150611ac382611a5c565b604082019050919050565b60006020820190508181036000830152611ae781611aab565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b4a6026836112f9565b9150611b5582611aee565b604082019050919050565b60006020820190508181036000830152611b7981611b3d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611bb66020836112f9565b9150611bc182611b80565b602082019050919050565b60006020820190508181036000830152611be581611ba9565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611c22601f836112f9565b9150611c2d82611bec565b602082019050919050565b60006020820190508181036000830152611c5181611c15565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cb46021836112f9565b9150611cbf82611c58565b604082019050919050565b60006020820190508181036000830152611ce381611ca7565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d466022836112f9565b9150611d5182611cea565b604082019050919050565b60006020820190508181036000830152611d7581611d39565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000611db26014836112f9565b9150611dbd82611d7c565b602082019050919050565b60006020820190508181036000830152611de181611da5565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000611e1e6010836112f9565b9150611e2982611de8565b602082019050919050565b60006020820190508181036000830152611e4d81611e11565b905091905056fea2646970667358221220706a03d336bf9b9e78de159b82a3c0a28ebce9b5005d8fa331df7c480897e22564736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102f9578063a457c2d714610317578063a9059cbb14610347578063dd62ed3e14610377578063f2fde38b146103a75761012c565b806370a082311461027b578063715018a6146102ab57806379cc6790146102b55780638456cb59146102d15780638da5cb5b146102db5761012c565b806339509351116100f457806339509351146101eb5780633f4ba83a1461021b57806340c10f191461022557806342966c68146102415780635c975abb1461025d5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103c3565b6040516101469190611387565b60405180910390f35b61016960048036038101906101649190611442565b610455565b604051610176919061149d565b60405180910390f35b610187610478565b60405161019491906114c7565b60405180910390f35b6101b760048036038101906101b291906114e2565b610482565b6040516101c4919061149d565b60405180910390f35b6101d56104b1565b6040516101e29190611551565b60405180910390f35b61020560048036038101906102009190611442565b6104ba565b604051610212919061149d565b60405180910390f35b6102236104f1565b005b61023f600480360381019061023a9190611442565b610503565b005b61025b6004803603810190610256919061156c565b610519565b005b61026561052d565b604051610272919061149d565b60405180910390f35b61029560048036038101906102909190611599565b610544565b6040516102a291906114c7565b60405180910390f35b6102b361058c565b005b6102cf60048036038101906102ca9190611442565b6105a0565b005b6102d96105c0565b005b6102e36105d2565b6040516102f091906115d5565b60405180910390f35b6103016105fc565b60405161030e9190611387565b60405180910390f35b610331600480360381019061032c9190611442565b61068e565b60405161033e919061149d565b60405180910390f35b610361600480360381019061035c9190611442565b610705565b60405161036e919061149d565b60405180910390f35b610391600480360381019061038c91906115f0565b610728565b60405161039e91906114c7565b60405180910390f35b6103c160048036038101906103bc9190611599565b6107af565b005b6060600380546103d29061165f565b80601f01602080910402602001604051908101604052809291908181526020018280546103fe9061165f565b801561044b5780601f106104205761010080835404028352916020019161044b565b820191906000526020600020905b81548152906001019060200180831161042e57829003601f168201915b5050505050905090565b600080610460610838565b905061046d818585610840565b600191505092915050565b6000600254905090565b60008061048d610838565b905061049a858285610a0b565b6104a5858585610a97565b60019150509392505050565b60006012905090565b6000806104c5610838565b90506104e68185856104d78589610728565b6104e191906116c0565b610840565b600191505092915050565b6104f9610d0f565b610501610d8d565b565b61050b610d0f565b6105158282610df0565b5050565b61052a610524610838565b82610f47565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610594610d0f565b61059e6000611115565b565b6105b2826105ac610838565b83610a0b565b6105bc8282610f47565b5050565b6105c8610d0f565b6105d06111db565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461060b9061165f565b80601f01602080910402602001604051908101604052809291908181526020018280546106379061165f565b80156106845780601f1061065957610100808354040283529160200191610684565b820191906000526020600020905b81548152906001019060200180831161066757829003601f168201915b5050505050905090565b600080610699610838565b905060006106a78286610728565b9050838110156106ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e390611788565b60405180910390fd5b6106f98286868403610840565b60019250505092915050565b600080610710610838565b905061071d818585610a97565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107b7610d0f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081e9061181a565b60405180910390fd5b61083081611115565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a7906118ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610920576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109179061193e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109fe91906114c7565b60405180910390a3505050565b6000610a178484610728565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a915781811015610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a906119aa565b60405180910390fd5b610a908484848403610840565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe90611a3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6e90611ace565b60405180910390fd5b610b8283838361123e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90611b60565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cf691906114c7565b60405180910390a3610d09848484611256565b50505050565b610d17610838565b73ffffffffffffffffffffffffffffffffffffffff16610d356105d2565b73ffffffffffffffffffffffffffffffffffffffff1614610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290611bcc565b60405180910390fd5b565b610d9561125b565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610dd9610838565b604051610de691906115d5565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5790611c38565b60405180910390fd5b610e6c6000838361123e565b8060026000828254610e7e91906116c0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f2f91906114c7565b60405180910390a3610f4360008383611256565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae90611cca565b60405180910390fd5b610fc38260008361123e565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611049576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104090611d5c565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110fc91906114c7565b60405180910390a361111083600084611256565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6111e36112a4565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611227610838565b60405161123491906115d5565b60405180910390a1565b6112466112a4565b611251838383610833565b505050565b505050565b61126361052d565b6112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990611dc8565b60405180910390fd5b565b6112ac61052d565b156112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390611e34565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b8381101561132857808201518184015260208101905061130d565b83811115611337576000848401525b50505050565b6000601f19601f8301169050919050565b6000611359826112ee565b61136381856112f9565b935061137381856020860161130a565b61137c8161133d565b840191505092915050565b600060208201905081810360008301526113a1818461134e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113d9826113ae565b9050919050565b6113e9816113ce565b81146113f457600080fd5b50565b600081359050611406816113e0565b92915050565b6000819050919050565b61141f8161140c565b811461142a57600080fd5b50565b60008135905061143c81611416565b92915050565b60008060408385031215611459576114586113a9565b5b6000611467858286016113f7565b92505060206114788582860161142d565b9150509250929050565b60008115159050919050565b61149781611482565b82525050565b60006020820190506114b2600083018461148e565b92915050565b6114c18161140c565b82525050565b60006020820190506114dc60008301846114b8565b92915050565b6000806000606084860312156114fb576114fa6113a9565b5b6000611509868287016113f7565b935050602061151a868287016113f7565b925050604061152b8682870161142d565b9150509250925092565b600060ff82169050919050565b61154b81611535565b82525050565b60006020820190506115666000830184611542565b92915050565b600060208284031215611582576115816113a9565b5b60006115908482850161142d565b91505092915050565b6000602082840312156115af576115ae6113a9565b5b60006115bd848285016113f7565b91505092915050565b6115cf816113ce565b82525050565b60006020820190506115ea60008301846115c6565b92915050565b60008060408385031215611607576116066113a9565b5b6000611615858286016113f7565b9250506020611626858286016113f7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061167757607f821691505b6020821081141561168b5761168a611630565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116cb8261140c565b91506116d68361140c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561170b5761170a611691565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117726025836112f9565b915061177d82611716565b604082019050919050565b600060208201905081810360008301526117a181611765565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118046026836112f9565b915061180f826117a8565b604082019050919050565b60006020820190508181036000830152611833816117f7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118966024836112f9565b91506118a18261183a565b604082019050919050565b600060208201905081810360008301526118c581611889565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006119286022836112f9565b9150611933826118cc565b604082019050919050565b600060208201905081810360008301526119578161191b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611994601d836112f9565b915061199f8261195e565b602082019050919050565b600060208201905081810360008301526119c381611987565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a266025836112f9565b9150611a31826119ca565b604082019050919050565b60006020820190508181036000830152611a5581611a19565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ab86023836112f9565b9150611ac382611a5c565b604082019050919050565b60006020820190508181036000830152611ae781611aab565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b4a6026836112f9565b9150611b5582611aee565b604082019050919050565b60006020820190508181036000830152611b7981611b3d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611bb66020836112f9565b9150611bc182611b80565b602082019050919050565b60006020820190508181036000830152611be581611ba9565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611c22601f836112f9565b9150611c2d82611bec565b602082019050919050565b60006020820190508181036000830152611c5181611c15565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cb46021836112f9565b9150611cbf82611c58565b604082019050919050565b60006020820190508181036000830152611ce381611ca7565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d466022836112f9565b9150611d5182611cea565b604082019050919050565b60006020820190508181036000830152611d7581611d39565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000611db26014836112f9565b9150611dbd82611d7c565b602082019050919050565b60006020820190508181036000830152611de181611da5565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000611e1e6010836112f9565b9150611e2982611de8565b602082019050919050565b60006020820190508181036000830152611e4d81611e11565b905091905056fea2646970667358221220706a03d336bf9b9e78de159b82a3c0a28ebce9b5005d8fa331df7c480897e22564736f6c63430008090033

Deployed Bytecode Sourcemap

24462:636:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12039:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14390:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13159:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15171:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13001:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15875:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24720:65;;;:::i;:::-;;24793:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23810:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5299:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13330:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2809:103;;;:::i;:::-;;24220:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24651:61;;;:::i;:::-;;2161:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12258:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16616:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13663:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13919:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3067:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12039:100;12093:13;12126:5;12119:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12039:100;:::o;14390:201::-;14473:4;14490:13;14506:12;:10;:12::i;:::-;14490:28;;14529:32;14538:5;14545:7;14554:6;14529:8;:32::i;:::-;14579:4;14572:11;;;14390:201;;;;:::o;13159:108::-;13220:7;13247:12;;13240:19;;13159:108;:::o;15171:295::-;15302:4;15319:15;15337:12;:10;:12::i;:::-;15319:30;;15360:38;15376:4;15382:7;15391:6;15360:15;:38::i;:::-;15409:27;15419:4;15425:2;15429:6;15409:9;:27::i;:::-;15454:4;15447:11;;;15171:295;;;;;:::o;13001:93::-;13059:5;13084:2;13077:9;;13001:93;:::o;15875:238::-;15963:4;15980:13;15996:12;:10;:12::i;:::-;15980:28;;16019:64;16028:5;16035:7;16072:10;16044:25;16054:5;16061:7;16044:9;:25::i;:::-;:38;;;;:::i;:::-;16019:8;:64::i;:::-;16101:4;16094:11;;;15875:238;;;;:::o;24720:65::-;2047:13;:11;:13::i;:::-;24767:10:::1;:8;:10::i;:::-;24720:65::o:0;24793:95::-;2047:13;:11;:13::i;:::-;24863:17:::1;24869:2;24873:6;24863:5;:17::i;:::-;24793:95:::0;;:::o;23810:91::-;23866:27;23872:12;:10;:12::i;:::-;23886:6;23866:5;:27::i;:::-;23810:91;:::o;5299:86::-;5346:4;5370:7;;;;;;;;;;;5363:14;;5299:86;:::o;13330:127::-;13404:7;13431:9;:18;13441:7;13431:18;;;;;;;;;;;;;;;;13424:25;;13330:127;;;:::o;2809:103::-;2047:13;:11;:13::i;:::-;2874:30:::1;2901:1;2874:18;:30::i;:::-;2809:103::o:0;24220:164::-;24297:46;24313:7;24322:12;:10;:12::i;:::-;24336:6;24297:15;:46::i;:::-;24354:22;24360:7;24369:6;24354:5;:22::i;:::-;24220:164;;:::o;24651:61::-;2047:13;:11;:13::i;:::-;24696:8:::1;:6;:8::i;:::-;24651:61::o:0;2161:87::-;2207:7;2234:6;;;;;;;;;;;2227:13;;2161:87;:::o;12258:104::-;12314:13;12347:7;12340:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12258:104;:::o;16616:436::-;16709:4;16726:13;16742:12;:10;:12::i;:::-;16726:28;;16765:24;16792:25;16802:5;16809:7;16792:9;:25::i;:::-;16765:52;;16856:15;16836:16;:35;;16828:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16949:60;16958:5;16965:7;16993:15;16974:16;:34;16949:8;:60::i;:::-;17040:4;17033:11;;;;16616:436;;;;:::o;13663:193::-;13742:4;13759:13;13775:12;:10;:12::i;:::-;13759:28;;13798;13808:5;13815:2;13819:6;13798:9;:28::i;:::-;13844:4;13837:11;;;13663:193;;;;:::o;13919:151::-;14008:7;14035:11;:18;14047:5;14035:18;;;;;;;;;;;;;;;:27;14054:7;14035:27;;;;;;;;;;;;;;;;14028:34;;13919:151;;;;:::o;3067:201::-;2047:13;:11;:13::i;:::-;3176:1:::1;3156:22;;:8;:22;;;;3148:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3232:28;3251:8;3232:18;:28::i;:::-;3067:201:::0;:::o;22367:125::-;;;;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;20643:380::-;20796:1;20779:19;;:5;:19;;;;20771:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20877:1;20858:21;;:7;:21;;;;20850:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20961:6;20931:11;:18;20943:5;20931:18;;;;;;;;;;;;;;;:27;20950:7;20931:27;;;;;;;;;;;;;;;:36;;;;20999:7;20983:32;;20992:5;20983:32;;;21008:6;20983:32;;;;;;:::i;:::-;;;;;;;;20643:380;;;:::o;21314:453::-;21449:24;21476:25;21486:5;21493:7;21476:9;:25::i;:::-;21449:52;;21536:17;21516:16;:37;21512:248;;21598:6;21578:16;:26;;21570:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21682:51;21691:5;21698:7;21726:6;21707:16;:25;21682:8;:51::i;:::-;21512:248;21438:329;21314:453;;;:::o;17522:840::-;17669:1;17653:18;;:4;:18;;;;17645:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17746:1;17732:16;;:2;:16;;;;17724:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17801:38;17822:4;17828:2;17832:6;17801:20;:38::i;:::-;17852:19;17874:9;:15;17884:4;17874:15;;;;;;;;;;;;;;;;17852:37;;17923:6;17908:11;:21;;17900:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;18040:6;18026:11;:20;18008:9;:15;18018:4;18008:15;;;;;;;;;;;;;;;:38;;;;18243:6;18226:9;:13;18236:2;18226:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;18293:2;18278:26;;18287:4;18278:26;;;18297:6;18278:26;;;;;;:::i;:::-;;;;;;;;18317:37;18337:4;18343:2;18347:6;18317:19;:37::i;:::-;17634:728;17522:840;;;:::o;2326:132::-;2401:12;:10;:12::i;:::-;2390:23;;:7;:5;:7::i;:::-;:23;;;2382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2326:132::o;6154:120::-;5163:16;:14;:16::i;:::-;6223:5:::1;6213:7;;:15;;;;;;;;;;;;;;;;;;6244:22;6253:12;:10;:12::i;:::-;6244:22;;;;;;:::i;:::-;;;;;;;;6154:120::o:0;18649:548::-;18752:1;18733:21;;:7;:21;;;;18725:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;18803:49;18832:1;18836:7;18845:6;18803:20;:49::i;:::-;18881:6;18865:12;;:22;;;;;;;:::i;:::-;;;;;;;;19058:6;19036:9;:18;19046:7;19036:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;19112:7;19091:37;;19108:1;19091:37;;;19121:6;19091:37;;;;;;:::i;:::-;;;;;;;;19141:48;19169:1;19173:7;19182:6;19141:19;:48::i;:::-;18649:548;;:::o;19530:675::-;19633:1;19614:21;;:7;:21;;;;19606:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19686:49;19707:7;19724:1;19728:6;19686:20;:49::i;:::-;19748:22;19773:9;:18;19783:7;19773:18;;;;;;;;;;;;;;;;19748:43;;19828:6;19810:14;:24;;19802:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19947:6;19930:14;:23;19909:9;:18;19919:7;19909:18;;;;;;;;;;;;;;;:44;;;;20064:6;20048:12;;:22;;;;;;;;;;;20125:1;20099:37;;20108:7;20099:37;;;20129:6;20099:37;;;;;;:::i;:::-;;;;;;;;20149:48;20169:7;20186:1;20190:6;20149:19;:48::i;:::-;19595:610;19530:675;;:::o;3428:191::-;3502:16;3521:6;;;;;;;;;;;3502:25;;3547:8;3538:6;;:17;;;;;;;;;;;;;;;;;;3602:8;3571:40;;3592:8;3571:40;;;;;;;;;;;;3491:128;3428:191;:::o;5895:118::-;4904:19;:17;:19::i;:::-;5965:4:::1;5955:7;;:14;;;;;;;;;;;;;;;;;;5985:20;5992:12;:10;:12::i;:::-;5985:20;;;;;;:::i;:::-;;;;;;;;5895:118::o:0;24896:199::-;4904:19;:17;:19::i;:::-;25043:44:::1;25070:4;25076:2;25080:6;25043:26;:44::i;:::-;24896:199:::0;;;:::o;23096:124::-;;;;:::o;5643:108::-;5710:8;:6;:8::i;:::-;5702:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;5643:108::o;5458:::-;5529:8;:6;:8::i;:::-;5528:9;5520:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;5458:108::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:::-;5295:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:119;;;5350:79;;:::i;:::-;5312:119;5470:1;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5441:117;5236:329;;;;:::o;5571:118::-;5658:24;5676:5;5658:24;:::i;:::-;5653:3;5646:37;5571:118;;:::o;5695:222::-;5788:4;5826:2;5815:9;5811:18;5803:26;;5839:71;5907:1;5896:9;5892:17;5883:6;5839:71;:::i;:::-;5695:222;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:180::-;6963:77;6960:1;6953:88;7060:4;7057:1;7050:15;7084:4;7081:1;7074:15;7101:305;7141:3;7160:20;7178:1;7160:20;:::i;:::-;7155:25;;7194:20;7212:1;7194:20;:::i;:::-;7189:25;;7348:1;7280:66;7276:74;7273:1;7270:81;7267:107;;;7354:18;;:::i;:::-;7267:107;7398:1;7395;7391:9;7384:16;;7101:305;;;;:::o;7412:224::-;7552:34;7548:1;7540:6;7536:14;7529:58;7621:7;7616:2;7608:6;7604:15;7597:32;7412:224;:::o;7642:366::-;7784:3;7805:67;7869:2;7864:3;7805:67;:::i;:::-;7798:74;;7881:93;7970:3;7881:93;:::i;:::-;7999:2;7994:3;7990:12;7983:19;;7642:366;;;:::o;8014:419::-;8180:4;8218:2;8207:9;8203:18;8195:26;;8267:9;8261:4;8257:20;8253:1;8242:9;8238:17;8231:47;8295:131;8421:4;8295:131;:::i;:::-;8287:139;;8014:419;;;:::o;8439:225::-;8579:34;8575:1;8567:6;8563:14;8556:58;8648:8;8643:2;8635:6;8631:15;8624:33;8439:225;:::o;8670:366::-;8812:3;8833:67;8897:2;8892:3;8833:67;:::i;:::-;8826:74;;8909:93;8998:3;8909:93;:::i;:::-;9027:2;9022:3;9018:12;9011:19;;8670:366;;;:::o;9042:419::-;9208:4;9246:2;9235:9;9231:18;9223:26;;9295:9;9289:4;9285:20;9281:1;9270:9;9266:17;9259:47;9323:131;9449:4;9323:131;:::i;:::-;9315:139;;9042:419;;;:::o;9467:223::-;9607:34;9603:1;9595:6;9591:14;9584:58;9676:6;9671:2;9663:6;9659:15;9652:31;9467:223;:::o;9696:366::-;9838:3;9859:67;9923:2;9918:3;9859:67;:::i;:::-;9852:74;;9935:93;10024:3;9935:93;:::i;:::-;10053:2;10048:3;10044:12;10037:19;;9696:366;;;:::o;10068:419::-;10234:4;10272:2;10261:9;10257:18;10249:26;;10321:9;10315:4;10311:20;10307:1;10296:9;10292:17;10285:47;10349:131;10475:4;10349:131;:::i;:::-;10341:139;;10068:419;;;:::o;10493:221::-;10633:34;10629:1;10621:6;10617:14;10610:58;10702:4;10697:2;10689:6;10685:15;10678:29;10493:221;:::o;10720:366::-;10862:3;10883:67;10947:2;10942:3;10883:67;:::i;:::-;10876:74;;10959:93;11048:3;10959:93;:::i;:::-;11077:2;11072:3;11068:12;11061:19;;10720:366;;;:::o;11092:419::-;11258:4;11296:2;11285:9;11281:18;11273:26;;11345:9;11339:4;11335:20;11331:1;11320:9;11316:17;11309:47;11373:131;11499:4;11373:131;:::i;:::-;11365:139;;11092:419;;;:::o;11517:179::-;11657:31;11653:1;11645:6;11641:14;11634:55;11517:179;:::o;11702:366::-;11844:3;11865:67;11929:2;11924:3;11865:67;:::i;:::-;11858:74;;11941:93;12030:3;11941:93;:::i;:::-;12059:2;12054:3;12050:12;12043:19;;11702:366;;;:::o;12074:419::-;12240:4;12278:2;12267:9;12263:18;12255:26;;12327:9;12321:4;12317:20;12313:1;12302:9;12298:17;12291:47;12355:131;12481:4;12355:131;:::i;:::-;12347:139;;12074:419;;;:::o;12499:224::-;12639:34;12635:1;12627:6;12623:14;12616:58;12708:7;12703:2;12695:6;12691:15;12684:32;12499:224;:::o;12729:366::-;12871:3;12892:67;12956:2;12951:3;12892:67;:::i;:::-;12885:74;;12968:93;13057:3;12968:93;:::i;:::-;13086:2;13081:3;13077:12;13070:19;;12729:366;;;:::o;13101:419::-;13267:4;13305:2;13294:9;13290:18;13282:26;;13354:9;13348:4;13344:20;13340:1;13329:9;13325:17;13318:47;13382:131;13508:4;13382:131;:::i;:::-;13374:139;;13101:419;;;:::o;13526:222::-;13666:34;13662:1;13654:6;13650:14;13643:58;13735:5;13730:2;13722:6;13718:15;13711:30;13526:222;:::o;13754:366::-;13896:3;13917:67;13981:2;13976:3;13917:67;:::i;:::-;13910:74;;13993:93;14082:3;13993:93;:::i;:::-;14111:2;14106:3;14102:12;14095:19;;13754:366;;;:::o;14126:419::-;14292:4;14330:2;14319:9;14315:18;14307:26;;14379:9;14373:4;14369:20;14365:1;14354:9;14350:17;14343:47;14407:131;14533:4;14407:131;:::i;:::-;14399:139;;14126:419;;;:::o;14551:225::-;14691:34;14687:1;14679:6;14675:14;14668:58;14760:8;14755:2;14747:6;14743:15;14736:33;14551:225;:::o;14782:366::-;14924:3;14945:67;15009:2;15004:3;14945:67;:::i;:::-;14938:74;;15021:93;15110:3;15021:93;:::i;:::-;15139:2;15134:3;15130:12;15123:19;;14782:366;;;:::o;15154:419::-;15320:4;15358:2;15347:9;15343:18;15335:26;;15407:9;15401:4;15397:20;15393:1;15382:9;15378:17;15371:47;15435:131;15561:4;15435:131;:::i;:::-;15427:139;;15154:419;;;:::o;15579:182::-;15719:34;15715:1;15707:6;15703:14;15696:58;15579:182;:::o;15767:366::-;15909:3;15930:67;15994:2;15989:3;15930:67;:::i;:::-;15923:74;;16006:93;16095:3;16006:93;:::i;:::-;16124:2;16119:3;16115:12;16108:19;;15767:366;;;:::o;16139:419::-;16305:4;16343:2;16332:9;16328:18;16320:26;;16392:9;16386:4;16382:20;16378:1;16367:9;16363:17;16356:47;16420:131;16546:4;16420:131;:::i;:::-;16412:139;;16139:419;;;:::o;16564:181::-;16704:33;16700:1;16692:6;16688:14;16681:57;16564:181;:::o;16751:366::-;16893:3;16914:67;16978:2;16973:3;16914:67;:::i;:::-;16907:74;;16990:93;17079:3;16990:93;:::i;:::-;17108:2;17103:3;17099:12;17092:19;;16751:366;;;:::o;17123:419::-;17289:4;17327:2;17316:9;17312:18;17304:26;;17376:9;17370:4;17366:20;17362:1;17351:9;17347:17;17340:47;17404:131;17530:4;17404:131;:::i;:::-;17396:139;;17123:419;;;:::o;17548:220::-;17688:34;17684:1;17676:6;17672:14;17665:58;17757:3;17752:2;17744:6;17740:15;17733:28;17548:220;:::o;17774:366::-;17916:3;17937:67;18001:2;17996:3;17937:67;:::i;:::-;17930:74;;18013:93;18102:3;18013:93;:::i;:::-;18131:2;18126:3;18122:12;18115:19;;17774:366;;;:::o;18146:419::-;18312:4;18350:2;18339:9;18335:18;18327:26;;18399:9;18393:4;18389:20;18385:1;18374:9;18370:17;18363:47;18427:131;18553:4;18427:131;:::i;:::-;18419:139;;18146:419;;;:::o;18571:221::-;18711:34;18707:1;18699:6;18695:14;18688:58;18780:4;18775:2;18767:6;18763:15;18756:29;18571:221;:::o;18798:366::-;18940:3;18961:67;19025:2;19020:3;18961:67;:::i;:::-;18954:74;;19037:93;19126:3;19037:93;:::i;:::-;19155:2;19150:3;19146:12;19139:19;;18798:366;;;:::o;19170:419::-;19336:4;19374:2;19363:9;19359:18;19351:26;;19423:9;19417:4;19413:20;19409:1;19398:9;19394:17;19387:47;19451:131;19577:4;19451:131;:::i;:::-;19443:139;;19170:419;;;:::o;19595:170::-;19735:22;19731:1;19723:6;19719:14;19712:46;19595:170;:::o;19771:366::-;19913:3;19934:67;19998:2;19993:3;19934:67;:::i;:::-;19927:74;;20010:93;20099:3;20010:93;:::i;:::-;20128:2;20123:3;20119:12;20112:19;;19771:366;;;:::o;20143:419::-;20309:4;20347:2;20336:9;20332:18;20324:26;;20396:9;20390:4;20386:20;20382:1;20371:9;20367:17;20360:47;20424:131;20550:4;20424:131;:::i;:::-;20416:139;;20143:419;;;:::o;20568:166::-;20708:18;20704:1;20696:6;20692:14;20685:42;20568:166;:::o;20740:366::-;20882:3;20903:67;20967:2;20962:3;20903:67;:::i;:::-;20896:74;;20979:93;21068:3;20979:93;:::i;:::-;21097:2;21092:3;21088:12;21081:19;;20740:366;;;:::o;21112:419::-;21278:4;21316:2;21305:9;21301:18;21293:26;;21365:9;21359:4;21355:20;21351:1;21340:9;21336:17;21329:47;21393:131;21519:4;21393:131;:::i;:::-;21385:139;;21112:419;;;:::o

Swarm Source

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