ETH Price: $2,990.53 (+3.64%)
Gas: 6 Gwei

Token

PUSSY token (PUSSY)
 

Overview

Max Total Supply

420,000,000,000 PUSSY

Holders

6,484 ( -0.015%)

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH (+3.82%)

Onchain Market Cap

$2,847,600.00

Circulating Supply Market Cap

$1,481,539.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

An open-source, decentralized software hosted on the Ethereum blockchain in the form of smart contracts.

Market

Volume (24H):$745.80
Market Capitalization:$1,481,539.00
Circulating Supply:218,398,529,553.00 PUSSY
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
meowToken

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2021-04-22
*/

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

// File contracts/openzeppelin-contracts/contracts/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 contracts/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol


pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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 contracts/openzeppelin-contracts/contracts/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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File contracts/openzeppelin-contracts/contracts/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 guidelines: functions revert instead
 * of 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 defaut 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");
        _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");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(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:
     *
     * - `to` 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);
    }

    /**
     * @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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

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

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

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

    /**
     * @dev 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 to 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 { }
}


// File contracts/openzeppelin-contracts/contracts/utils/Strings.sol


pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}


// File contracts/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol


pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}


// File contracts/openzeppelin-contracts/contracts/utils/introspection/ERC165.sol


pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}


// File contracts/openzeppelin-contracts/contracts/access/AccessControl.sol


pragma solidity ^0.8.0;



/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping (address => bool) members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId
            || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if(!hasRole(role, account)) {
            revert(string(abi.encodePacked(
                "AccessControl: account ",
                Strings.toHexString(uint160(account), 20),
                " is missing role ",
                Strings.toHexString(uint256(role), 32)
            )));
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}


// File contracts/openzeppelin-contracts/contracts/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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


// File contracts/openzeppelin-contracts/contracts/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 Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

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

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        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 contracts/openzeppelin-contracts/contracts/token/ERC20/extensions/ERC20Pausable.sol


pragma solidity ^0.8.0;


/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}


// File contracts/uni-v2.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;




contract meowToken is ERC20, AccessControl, Ownable, Pausable {

    constructor() ERC20("PUSSY token", "PUSSY") {
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _mint(msg.sender, 420e27);
    }

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

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

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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252600b81526a282aa9a9ac903a37b5b2b760a91b602080830191825283518085019094526005845264505553535960d81b9084015281519192916200006291600391620002b8565b50805162000078906004906020840190620002b8565b50505060006200008d6200011460201b60201c565b600680546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506006805460ff60a01b19169055620000f560003362000118565b6200010e336c054d17db76321263eca000000062000128565b62000400565b3390565b620001248282620001fc565b5050565b6001600160a01b0382166200015a5760405162461bcd60e51b815260040162000151906200035e565b60405180910390fd5b620001686000838362000288565b80600260008282546200017c91906200039e565b90915550506001600160a01b03821660009081526020819052604081208054839290620001ab9084906200039e565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90620001f090859062000395565b60405180910390a35050565b6200020882826200028d565b620001245760008281526005602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200024462000114565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b505050565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b828054620002c690620003c3565b90600052602060002090601f016020900481019282620002ea576000855562000335565b82601f106200030557805160ff191683800117855562000335565b8280016001018555821562000335579182015b828111156200033557825182559160200191906001019062000318565b506200034392915062000347565b5090565b5b8082111562000343576000815560010162000348565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620003be57634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620003d857607f821691505b60208210811415620003fa57634e487b7160e01b600052602260045260246000fd5b50919050565b6114d880620004106000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a217fddf1161007c578063a217fddf1461029c578063a457c2d7146102a4578063a9059cbb146102b7578063d547741f146102ca578063dd62ed3e146102dd578063f2fde38b146102f057610158565b806370a0823114610249578063715018a61461025c5780638456cb59146102645780638da5cb5b1461026c57806391d148541461028157806395d89b411461029457610158565b80632f2ff15d116101155780632f2ff15d146101e9578063313ce567146101fe57806336568abe1461021357806339509351146102265780633f4ba83a146102395780635c975abb1461024157610158565b806301ffc9a71461015d57806306fdde0314610186578063095ea7b31461019b57806318160ddd146101ae57806323b872dd146101c3578063248a9ca3146101d6575b600080fd5b61017061016b366004610f7e565b610303565b60405161017d919061102f565b60405180910390f35b61018e610330565b60405161017d9190611043565b6101706101a9366004610f1b565b6103c2565b6101b66103df565b60405161017d919061103a565b6101706101d1366004610ee0565b6103e5565b6101b66101e4366004610f44565b610485565b6101fc6101f7366004610f5c565b61049a565b005b6102066104c3565b60405161017d91906113ae565b6101fc610221366004610f5c565b6104c8565b610170610234366004610f1b565b61050e565b6101fc61055d565b6101706105a6565b6101b6610257366004610e94565b6105b6565b6101fc6105d1565b6101fc61065a565b6102746106a1565b60405161017d919061101b565b61017061028f366004610f5c565b6106b0565b61018e6106db565b6101b66106ea565b6101706102b2366004610f1b565b6106ef565b6101706102c5366004610f1b565b61076a565b6101fc6102d8366004610f5c565b61077e565b6101b66102eb366004610eae565b61079d565b6101fc6102fe366004610e94565b6107c8565b60006001600160e01b03198216637965db0b60e01b1480610328575061032882610889565b90505b919050565b60606003805461033f90611451565b80601f016020809104026020016040519081016040528092919081815260200182805461036b90611451565b80156103b85780601f1061038d576101008083540402835291602001916103b8565b820191906000526020600020905b81548152906001019060200180831161039b57829003601f168201915b5050505050905090565b60006103d66103cf6108a2565b84846108a6565b50600192915050565b60025490565b60006103f284848461095a565b6001600160a01b0384166000908152600160205260408120816104136108a2565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561045f5760405162461bcd60e51b815260040161045690611214565b60405180910390fd5b61047a8561046b6108a2565b61047586856113f3565b6108a6565b506001949350505050565b60009081526005602052604090206001015490565b6104a382610485565b6104b4816104af6108a2565b610a82565b6104be8383610ae6565b505050565b601290565b6104d06108a2565b6001600160a01b0316816001600160a01b0316146105005760405162461bcd60e51b81526004016104569061135f565b61050a8282610b6d565b5050565b60006103d661051b6108a2565b8484600160006105296108a2565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461047591906113bc565b6105656108a2565b6001600160a01b03166105766106a1565b6001600160a01b03161461059c5760405162461bcd60e51b81526004016104569061125c565b6105a4610bf2565b565b600654600160a01b900460ff1690565b6001600160a01b031660009081526020819052604090205490565b6105d96108a2565b6001600160a01b03166105ea6106a1565b6001600160a01b0316146106105760405162461bcd60e51b81526004016104569061125c565b6006546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6106626108a2565b6001600160a01b03166106736106a1565b6001600160a01b0316146106995760405162461bcd60e51b81526004016104569061125c565b6105a4610c63565b6006546001600160a01b031690565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461033f90611451565b600081565b600080600160006106fe6108a2565b6001600160a01b039081168252602080830193909352604091820160009081209188168152925290205490508281101561074a5760405162461bcd60e51b81526004016104569061131a565b6107606107556108a2565b8561047586856113f3565b5060019392505050565b60006103d66107776108a2565b848461095a565b61078782610485565b610793816104af6108a2565b6104be8383610b6d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6107d06108a2565b6001600160a01b03166107e16106a1565b6001600160a01b0316146108075760405162461bcd60e51b81526004016104569061125c565b6001600160a01b03811661082d5760405162461bcd60e51b81526004016104569061111c565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6001600160a01b0383166108cc5760405162461bcd60e51b8152600401610456906112d6565b6001600160a01b0382166108f25760405162461bcd60e51b815260040161045690611162565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061094d90859061103a565b60405180910390a3505050565b6001600160a01b0383166109805760405162461bcd60e51b815260040161045690611291565b6001600160a01b0382166109a65760405162461bcd60e51b8152600401610456906110ab565b6109b18383836104be565b6001600160a01b038316600090815260208190526040902054818110156109ea5760405162461bcd60e51b8152600401610456906111a4565b6109f482826113f3565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610a2a9084906113bc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a74919061103a565b60405180910390a350505050565b610a8c82826106b0565b61050a57610aa4816001600160a01b03166014610cc4565b610aaf836020610cc4565b604051602001610ac0929190610fa6565b60408051601f198184030181529082905262461bcd60e51b825261045691600401611043565b610af082826106b0565b61050a5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610b296108a2565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610b7782826106b0565b1561050a5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19169055610bae6108a2565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b610bfa6105a6565b610c165760405162461bcd60e51b8152600401610456906110ee565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610c4c6108a2565b604051610c59919061101b565b60405180910390a1565b610c6b6105a6565b15610c885760405162461bcd60e51b8152600401610456906111ea565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610c4c6108a2565b60606000610cd38360026113d4565b610cde9060026113bc565b67ffffffffffffffff811115610d0457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610d2e576020820181803683370190505b509050600360fc1b81600081518110610d5757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610d9457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000610db88460026113d4565b610dc39060016113bc565b90505b6001811115610e57576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610e0557634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110610e2957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93610e508161143a565b9050610dc6565b508315610e765760405162461bcd60e51b815260040161045690611076565b9392505050565b80356001600160a01b038116811461032b57600080fd5b600060208284031215610ea5578081fd5b610e7682610e7d565b60008060408385031215610ec0578081fd5b610ec983610e7d565b9150610ed760208401610e7d565b90509250929050565b600080600060608486031215610ef4578081fd5b610efd84610e7d565b9250610f0b60208501610e7d565b9150604084013590509250925092565b60008060408385031215610f2d578182fd5b610f3683610e7d565b946020939093013593505050565b600060208284031215610f55578081fd5b5035919050565b60008060408385031215610f6e578182fd5b82359150610ed760208401610e7d565b600060208284031215610f8f578081fd5b81356001600160e01b031981168114610e76578182fd5b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351610fde81601785016020880161140a565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161100f81602884016020880161140a565b01602801949350505050565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b600060208252825180602084015261106281604085016020870161140a565b601f01601f19169190910160400192915050565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b60ff91909116815260200190565b600082198211156113cf576113cf61148c565b500190565b60008160001904831182151516156113ee576113ee61148c565b500290565b6000828210156114055761140561148c565b500390565b60005b8381101561142557818101518382015260200161140d565b83811115611434576000848401525b50505050565b6000816114495761144961148c565b506000190190565b60028104600182168061146557607f821691505b6020821081141561148657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220cb4b84587dd7b5f0e7dc76ffdd8dbced003485aa6969ed53c715f270616a4ed964736f6c63430008010033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c3578063a217fddf1161007c578063a217fddf1461029c578063a457c2d7146102a4578063a9059cbb146102b7578063d547741f146102ca578063dd62ed3e146102dd578063f2fde38b146102f057610158565b806370a0823114610249578063715018a61461025c5780638456cb59146102645780638da5cb5b1461026c57806391d148541461028157806395d89b411461029457610158565b80632f2ff15d116101155780632f2ff15d146101e9578063313ce567146101fe57806336568abe1461021357806339509351146102265780633f4ba83a146102395780635c975abb1461024157610158565b806301ffc9a71461015d57806306fdde0314610186578063095ea7b31461019b57806318160ddd146101ae57806323b872dd146101c3578063248a9ca3146101d6575b600080fd5b61017061016b366004610f7e565b610303565b60405161017d919061102f565b60405180910390f35b61018e610330565b60405161017d9190611043565b6101706101a9366004610f1b565b6103c2565b6101b66103df565b60405161017d919061103a565b6101706101d1366004610ee0565b6103e5565b6101b66101e4366004610f44565b610485565b6101fc6101f7366004610f5c565b61049a565b005b6102066104c3565b60405161017d91906113ae565b6101fc610221366004610f5c565b6104c8565b610170610234366004610f1b565b61050e565b6101fc61055d565b6101706105a6565b6101b6610257366004610e94565b6105b6565b6101fc6105d1565b6101fc61065a565b6102746106a1565b60405161017d919061101b565b61017061028f366004610f5c565b6106b0565b61018e6106db565b6101b66106ea565b6101706102b2366004610f1b565b6106ef565b6101706102c5366004610f1b565b61076a565b6101fc6102d8366004610f5c565b61077e565b6101b66102eb366004610eae565b61079d565b6101fc6102fe366004610e94565b6107c8565b60006001600160e01b03198216637965db0b60e01b1480610328575061032882610889565b90505b919050565b60606003805461033f90611451565b80601f016020809104026020016040519081016040528092919081815260200182805461036b90611451565b80156103b85780601f1061038d576101008083540402835291602001916103b8565b820191906000526020600020905b81548152906001019060200180831161039b57829003601f168201915b5050505050905090565b60006103d66103cf6108a2565b84846108a6565b50600192915050565b60025490565b60006103f284848461095a565b6001600160a01b0384166000908152600160205260408120816104136108a2565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561045f5760405162461bcd60e51b815260040161045690611214565b60405180910390fd5b61047a8561046b6108a2565b61047586856113f3565b6108a6565b506001949350505050565b60009081526005602052604090206001015490565b6104a382610485565b6104b4816104af6108a2565b610a82565b6104be8383610ae6565b505050565b601290565b6104d06108a2565b6001600160a01b0316816001600160a01b0316146105005760405162461bcd60e51b81526004016104569061135f565b61050a8282610b6d565b5050565b60006103d661051b6108a2565b8484600160006105296108a2565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461047591906113bc565b6105656108a2565b6001600160a01b03166105766106a1565b6001600160a01b03161461059c5760405162461bcd60e51b81526004016104569061125c565b6105a4610bf2565b565b600654600160a01b900460ff1690565b6001600160a01b031660009081526020819052604090205490565b6105d96108a2565b6001600160a01b03166105ea6106a1565b6001600160a01b0316146106105760405162461bcd60e51b81526004016104569061125c565b6006546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6106626108a2565b6001600160a01b03166106736106a1565b6001600160a01b0316146106995760405162461bcd60e51b81526004016104569061125c565b6105a4610c63565b6006546001600160a01b031690565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461033f90611451565b600081565b600080600160006106fe6108a2565b6001600160a01b039081168252602080830193909352604091820160009081209188168152925290205490508281101561074a5760405162461bcd60e51b81526004016104569061131a565b6107606107556108a2565b8561047586856113f3565b5060019392505050565b60006103d66107776108a2565b848461095a565b61078782610485565b610793816104af6108a2565b6104be8383610b6d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6107d06108a2565b6001600160a01b03166107e16106a1565b6001600160a01b0316146108075760405162461bcd60e51b81526004016104569061125c565b6001600160a01b03811661082d5760405162461bcd60e51b81526004016104569061111c565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6001600160a01b0383166108cc5760405162461bcd60e51b8152600401610456906112d6565b6001600160a01b0382166108f25760405162461bcd60e51b815260040161045690611162565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061094d90859061103a565b60405180910390a3505050565b6001600160a01b0383166109805760405162461bcd60e51b815260040161045690611291565b6001600160a01b0382166109a65760405162461bcd60e51b8152600401610456906110ab565b6109b18383836104be565b6001600160a01b038316600090815260208190526040902054818110156109ea5760405162461bcd60e51b8152600401610456906111a4565b6109f482826113f3565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610a2a9084906113bc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a74919061103a565b60405180910390a350505050565b610a8c82826106b0565b61050a57610aa4816001600160a01b03166014610cc4565b610aaf836020610cc4565b604051602001610ac0929190610fa6565b60408051601f198184030181529082905262461bcd60e51b825261045691600401611043565b610af082826106b0565b61050a5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610b296108a2565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610b7782826106b0565b1561050a5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19169055610bae6108a2565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b610bfa6105a6565b610c165760405162461bcd60e51b8152600401610456906110ee565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610c4c6108a2565b604051610c59919061101b565b60405180910390a1565b610c6b6105a6565b15610c885760405162461bcd60e51b8152600401610456906111ea565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610c4c6108a2565b60606000610cd38360026113d4565b610cde9060026113bc565b67ffffffffffffffff811115610d0457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610d2e576020820181803683370190505b509050600360fc1b81600081518110610d5757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110610d9457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000610db88460026113d4565b610dc39060016113bc565b90505b6001811115610e57576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110610e0557634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110610e2957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93610e508161143a565b9050610dc6565b508315610e765760405162461bcd60e51b815260040161045690611076565b9392505050565b80356001600160a01b038116811461032b57600080fd5b600060208284031215610ea5578081fd5b610e7682610e7d565b60008060408385031215610ec0578081fd5b610ec983610e7d565b9150610ed760208401610e7d565b90509250929050565b600080600060608486031215610ef4578081fd5b610efd84610e7d565b9250610f0b60208501610e7d565b9150604084013590509250925092565b60008060408385031215610f2d578182fd5b610f3683610e7d565b946020939093013593505050565b600060208284031215610f55578081fd5b5035919050565b60008060408385031215610f6e578182fd5b82359150610ed760208401610e7d565b600060208284031215610f8f578081fd5b81356001600160e01b031981168114610e76578182fd5b60007f416363657373436f6e74726f6c3a206163636f756e742000000000000000000082528351610fde81601785016020880161140a565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161100f81602884016020880161140a565b01602801949350505050565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b600060208252825180602084015261106281604085016020870161140a565b601f01601f19169190910160400192915050565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b60ff91909116815260200190565b600082198211156113cf576113cf61148c565b500190565b60008160001904831182151516156113ee576113ee61148c565b500290565b6000828210156114055761140561148c565b500390565b60005b8381101561142557818101518382015260200161140d565b83811115611434576000848401525b50505050565b6000816114495761144961148c565b506000190190565b60028104600182168061146557607f821691505b6020821081141561148657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220cb4b84587dd7b5f0e7dc76ffdd8dbced003485aa6969ed53c715f270616a4ed964736f6c63430008010033

Deployed Bytecode Sourcemap

33464:355:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23450:217;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6666:100;;;:::i;:::-;;;;;;;:::i;8833:169::-;;;;;;:::i;:::-;;:::i;7786:108::-;;;:::i;:::-;;;;;;;:::i;9484:422::-;;;;;;:::i;:::-;;:::i;24761:123::-;;;;;;:::i;:::-;;:::i;25146:147::-;;;;;;:::i;:::-;;:::i;:::-;;7628:93;;;:::i;:::-;;;;;;;:::i;26194:218::-;;;;;;:::i;:::-;;:::i;10315:215::-;;;;;;:::i;:::-;;:::i;33752:64::-;;;:::i;31324:86::-;;;:::i;7957:127::-;;;;;;:::i;:::-;;:::i;29679:148::-;;;:::i;33684:60::-;;;:::i;29028:87::-;;;:::i;:::-;;;;;;;:::i;23759:139::-;;;;;;:::i;:::-;;:::i;6885:104::-;;;:::i;21764:49::-;;;:::i;11033:377::-;;;;;;:::i;:::-;;:::i;8297:175::-;;;;;;:::i;:::-;;:::i;25538:149::-;;;;;;:::i;:::-;;:::i;8535:151::-;;;;;;:::i;:::-;;:::i;29982:244::-;;;;;;:::i;:::-;;:::i;23450:217::-;23535:4;-1:-1:-1;;;;;;23559:47:0;;-1:-1:-1;;;23559:47:0;;:100;;;23623:36;23647:11;23623:23;:36::i;:::-;23552:107;;23450:217;;;;:::o;6666:100::-;6720:13;6753:5;6746:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6666:100;:::o;8833:169::-;8916:4;8933:39;8942:12;:10;:12::i;:::-;8956:7;8965:6;8933:8;:39::i;:::-;-1:-1:-1;8990:4:0;8833:169;;;;:::o;7786:108::-;7874:12;;7786:108;:::o;9484:422::-;9590:4;9607:36;9617:6;9625:9;9636:6;9607:9;:36::i;:::-;-1:-1:-1;;;;;9683:19:0;;9656:24;9683:19;;;:11;:19;;;;;9656:24;9703:12;:10;:12::i;:::-;-1:-1:-1;;;;;9683:33:0;-1:-1:-1;;;;;9683:33:0;;;;;;;;;;;;;9656:60;;9755:6;9735:16;:26;;9727:79;;;;-1:-1:-1;;;9727:79:0;;;;;;;:::i;:::-;;;;;;;;;9817:57;9826:6;9834:12;:10;:12::i;:::-;9848:25;9867:6;9848:16;:25;:::i;:::-;9817:8;:57::i;:::-;-1:-1:-1;9894:4:0;;9484:422;-1:-1:-1;;;;9484:422:0:o;24761:123::-;24827:7;24854:12;;;:6;:12;;;;;:22;;;;24761:123::o;25146:147::-;25229:18;25242:4;25229:12;:18::i;:::-;23328:30;23339:4;23345:12;:10;:12::i;:::-;23328:10;:30::i;:::-;25260:25:::1;25271:4;25277:7;25260:10;:25::i;:::-;25146:147:::0;;;:::o;7628:93::-;7711:2;7628:93;:::o;26194:218::-;26301:12;:10;:12::i;:::-;-1:-1:-1;;;;;26290:23:0;:7;-1:-1:-1;;;;;26290:23:0;;26282:83;;;;-1:-1:-1;;;26282:83:0;;;;;;;:::i;:::-;26378:26;26390:4;26396:7;26378:11;:26::i;:::-;26194:218;;:::o;10315:215::-;10403:4;10420:80;10429:12;:10;:12::i;:::-;10443:7;10489:10;10452:11;:25;10464:12;:10;:12::i;:::-;-1:-1:-1;;;;;10452:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10452:25:0;;;:34;;;;;;;;;;:47;;;;:::i;33752:64::-;29259:12;:10;:12::i;:::-;-1:-1:-1;;;;;29248:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29248:23:0;;29240:68;;;;-1:-1:-1;;;29240:68:0;;;;;;;:::i;:::-;33798:10:::1;:8;:10::i;:::-;33752:64::o:0;31324:86::-;31395:7;;-1:-1:-1;;;31395:7:0;;;;;31324:86::o;7957:127::-;-1:-1:-1;;;;;8058:18:0;8031:7;8058:18;;;;;;;;;;;;7957:127::o;29679:148::-;29259:12;:10;:12::i;:::-;-1:-1:-1;;;;;29248:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29248:23:0;;29240:68;;;;-1:-1:-1;;;29240:68:0;;;;;;;:::i;:::-;29770:6:::1;::::0;29749:40:::1;::::0;29786:1:::1;::::0;-1:-1:-1;;;;;29770:6:0::1;::::0;29749:40:::1;::::0;29786:1;;29749:40:::1;29800:6;:19:::0;;-1:-1:-1;;;;;;29800:19:0::1;::::0;;29679:148::o;33684:60::-;29259:12;:10;:12::i;:::-;-1:-1:-1;;;;;29248:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29248:23:0;;29240:68;;;;-1:-1:-1;;;29240:68:0;;;;;;;:::i;:::-;33728:8:::1;:6;:8::i;29028:87::-:0;29101:6;;-1:-1:-1;;;;;29101:6:0;29028:87;:::o;23759:139::-;23837:4;23861:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;23861:29:0;;;;;;;;;;;;;;;23759:139::o;6885:104::-;6941:13;6974:7;6967:14;;;;;:::i;21764:49::-;21809:4;21764:49;:::o;11033:377::-;11126:4;11143:24;11170:11;:25;11182:12;:10;:12::i;:::-;-1:-1:-1;;;;;11170:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;11170:25:0;;;:34;;;;;;;;;;;-1:-1:-1;11223:35:0;;;;11215:85;;;;-1:-1:-1;;;11215:85:0;;;;;;;:::i;:::-;11311:67;11320:12;:10;:12::i;:::-;11334:7;11343:34;11362:15;11343:16;:34;:::i;11311:67::-;-1:-1:-1;11398:4:0;;11033:377;-1:-1:-1;;;11033:377:0:o;8297:175::-;8383:4;8400:42;8410:12;:10;:12::i;:::-;8424:9;8435:6;8400:9;:42::i;25538:149::-;25622:18;25635:4;25622:12;:18::i;:::-;23328:30;23339:4;23345:12;:10;:12::i;23328:30::-;25653:26:::1;25665:4;25671:7;25653:11;:26::i;8535:151::-:0;-1:-1:-1;;;;;8651:18:0;;;8624:7;8651:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8535:151::o;29982:244::-;29259:12;:10;:12::i;:::-;-1:-1:-1;;;;;29248:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29248:23:0;;29240:68;;;;-1:-1:-1;;;29240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30071:22:0;::::1;30063:73;;;;-1:-1:-1::0;;;30063:73:0::1;;;;;;;:::i;:::-;30173:6;::::0;30152:38:::1;::::0;-1:-1:-1;;;;;30152:38:0;;::::1;::::0;30173:6:::1;::::0;30152:38:::1;::::0;30173:6:::1;::::0;30152:38:::1;30201:6;:17:::0;;-1:-1:-1;;;;;;30201:17:0::1;-1:-1:-1::0;;;;;30201:17:0;;;::::1;::::0;;;::::1;::::0;;29982:244::o;19200:157::-;-1:-1:-1;;;;;;19309:40:0;;-1:-1:-1;;;19309:40:0;19200:157;;;:::o;4237:98::-;4317:10;4237:98;:::o;14389:346::-;-1:-1:-1;;;;;14491:19:0;;14483:68;;;;-1:-1:-1;;;14483:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14570:21:0;;14562:68;;;;-1:-1:-1;;;14562:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14643:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;14695:32;;;;;14673:6;;14695:32;:::i;:::-;;;;;;;;14389:346;;;:::o;11900:604::-;-1:-1:-1;;;;;12006:20:0;;11998:70;;;;-1:-1:-1;;;11998:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12087:23:0;;12079:71;;;;-1:-1:-1;;;12079:71:0;;;;;;;:::i;:::-;12163:47;12184:6;12192:9;12203:6;12163:20;:47::i;:::-;-1:-1:-1;;;;;12247:17:0;;12223:21;12247:17;;;;;;;;;;;12283:23;;;;12275:74;;;;-1:-1:-1;;;12275:74:0;;;;;;;:::i;:::-;12380:22;12396:6;12380:13;:22;:::i;:::-;-1:-1:-1;;;;;12360:17:0;;;:9;:17;;;;;;;;;;;:42;;;;12413:20;;;;;;;;:30;;12437:6;;12360:9;12413:30;;12437:6;;12413:30;:::i;:::-;;;;;;;;12478:9;-1:-1:-1;;;;;12461:35:0;12470:6;-1:-1:-1;;;;;12461:35:0;;12489:6;12461:35;;;;;;:::i;:::-;;;;;;;;11900:604;;;;:::o;24188:384::-;24268:22;24276:4;24282:7;24268;:22::i;:::-;24264:301;;24400:41;24428:7;-1:-1:-1;;;;;24400:41:0;24438:2;24400:19;:41::i;:::-;24498:38;24526:4;24533:2;24498:19;:38::i;:::-;24321:230;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;24321:230:0;;;;;;;;;;-1:-1:-1;;;24307:246:0;;;;;;;:::i;27442:229::-;27517:22;27525:4;27531:7;27517;:22::i;:::-;27512:152;;27556:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;27556:29:0;;;;;;;;;:36;;-1:-1:-1;;27556:36:0;27588:4;27556:36;;;27639:12;:10;:12::i;:::-;-1:-1:-1;;;;;27612:40:0;27630:7;-1:-1:-1;;;;;27612:40:0;27624:4;27612:40;;;;;;;;;;27442:229;;:::o;27679:230::-;27754:22;27762:4;27768:7;27754;:22::i;:::-;27750:152;;;27825:5;27793:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;27793:29:0;;;;;;;;;:37;;-1:-1:-1;;27793:37:0;;;27877:12;:10;:12::i;:::-;-1:-1:-1;;;;;27850:40:0;27868:7;-1:-1:-1;;;;;27850:40:0;27862:4;27850:40;;;;;;;;;;27679:230;;:::o;32383:120::-;31927:8;:6;:8::i;:::-;31919:41;;;;-1:-1:-1;;;31919:41:0;;;;;;;:::i;:::-;32442:7:::1;:15:::0;;-1:-1:-1;;;;32442:15:0::1;::::0;;32473:22:::1;32482:12;:10;:12::i;:::-;32473:22;;;;;;:::i;:::-;;;;;;;;32383:120::o:0;32124:118::-;31650:8;:6;:8::i;:::-;31649:9;31641:38;;;;-1:-1:-1;;;31641:38:0;;;;;;;:::i;:::-;32184:7:::1;:14:::0;;-1:-1:-1;;;;32184:14:0::1;-1:-1:-1::0;;;32184:14:0::1;::::0;;32214:20:::1;32221:12;:10;:12::i;17063:447::-:0;17138:13;17164:19;17196:10;17200:6;17196:1;:10;:::i;:::-;:14;;17209:1;17196:14;:::i;:::-;17186:25;;;;;;-1:-1:-1;;;17186:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17186:25:0;;17164:47;;-1:-1:-1;;;17222:6:0;17229:1;17222:9;;;;;;-1:-1:-1;;;17222:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;17222:15:0;;;;;;;;;-1:-1:-1;;;17248:6:0;17255:1;17248:9;;;;;;-1:-1:-1;;;17248:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;17248:15:0;;;;;;;;-1:-1:-1;17279:9:0;17291:10;17295:6;17291:1;:10;:::i;:::-;:14;;17304:1;17291:14;:::i;:::-;17279:26;;17274:131;17311:1;17307;:5;17274:131;;;-1:-1:-1;;;17355:5:0;17363:3;17355:11;17346:21;;;;;-1:-1:-1;;;17346:21:0;;;;;;;;;;;;17334:6;17341:1;17334:9;;;;;;-1:-1:-1;;;17334:9:0;;;;;;;;;;;;:33;-1:-1:-1;;;;;17334:33:0;;;;;;;;-1:-1:-1;17392:1:0;17382:11;;;;;17314:3;;;:::i;:::-;;;17274:131;;;-1:-1:-1;17423:10:0;;17415:55;;;;-1:-1:-1;;;17415:55:0;;;;;;;:::i;:::-;17495:6;17063:447;-1:-1:-1;;;17063:447:0:o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:266::-;;;1618:2;1606:9;1597:7;1593:23;1589:32;1586:2;;;1639:6;1631;1624:22;1586:2;1680:9;1667:23;1657:33;;1709:40;1745:2;1734:9;1730:18;1709:40;:::i;1760:306::-;;1871:2;1859:9;1850:7;1846:23;1842:32;1839:2;;;1892:6;1884;1877:22;1839:2;1923:23;;-1:-1:-1;;;;;;1975:32:1;;1965:43;;1955:2;;2027:6;2019;2012:22;2071:786;;2482:25;2477:3;2470:38;2537:6;2531:13;2553:62;2608:6;2603:2;2598:3;2594:12;2587:4;2579:6;2575:17;2553:62;:::i;:::-;-1:-1:-1;;;2674:2:1;2634:16;;;2666:11;;;2659:40;2724:13;;2746:63;2724:13;2795:2;2787:11;;2780:4;2768:17;;2746:63;:::i;:::-;2829:17;2848:2;2825:26;;2460:397;-1:-1:-1;;;;2460:397:1:o;2862:203::-;-1:-1:-1;;;;;3026:32:1;;;;3008:51;;2996:2;2981:18;;2963:102::o;3070:187::-;3235:14;;3228:22;3210:41;;3198:2;3183:18;;3165:92::o;3262:177::-;3408:25;;;3396:2;3381:18;;3363:76::o;3444:383::-;;3593:2;3582:9;3575:21;3625:6;3619:13;3668:6;3663:2;3652:9;3648:18;3641:34;3684:66;3743:6;3738:2;3727:9;3723:18;3718:2;3710:6;3706:15;3684:66;:::i;:::-;3811:2;3790:15;-1:-1:-1;;3786:29:1;3771:45;;;;3818:2;3767:54;;3565:262;-1:-1:-1;;3565:262:1:o;3832:356::-;4034:2;4016:21;;;4053:18;;;4046:30;4112:34;4107:2;4092:18;;4085:62;4179:2;4164:18;;4006:182::o;4193:399::-;4395:2;4377:21;;;4434:2;4414:18;;;4407:30;4473:34;4468:2;4453:18;;4446:62;-1:-1:-1;;;4539:2:1;4524:18;;4517:33;4582:3;4567:19;;4367:225::o;4597:344::-;4799:2;4781:21;;;4838:2;4818:18;;;4811:30;-1:-1:-1;;;4872:2:1;4857:18;;4850:50;4932:2;4917:18;;4771:170::o;4946:402::-;5148:2;5130:21;;;5187:2;5167:18;;;5160:30;5226:34;5221:2;5206:18;;5199:62;-1:-1:-1;;;5292:2:1;5277:18;;5270:36;5338:3;5323:19;;5120:228::o;5353:398::-;5555:2;5537:21;;;5594:2;5574:18;;;5567:30;5633:34;5628:2;5613:18;;5606:62;-1:-1:-1;;;5699:2:1;5684:18;;5677:32;5741:3;5726:19;;5527:224::o;5756:402::-;5958:2;5940:21;;;5997:2;5977:18;;;5970:30;6036:34;6031:2;6016:18;;6009:62;-1:-1:-1;;;6102:2:1;6087:18;;6080:36;6148:3;6133:19;;5930:228::o;6163:340::-;6365:2;6347:21;;;6404:2;6384:18;;;6377:30;-1:-1:-1;;;6438:2:1;6423:18;;6416:46;6494:2;6479:18;;6337:166::o;6508:404::-;6710:2;6692:21;;;6749:2;6729:18;;;6722:30;6788:34;6783:2;6768:18;;6761:62;-1:-1:-1;;;6854:2:1;6839:18;;6832:38;6902:3;6887:19;;6682:230::o;6917:356::-;7119:2;7101:21;;;7138:18;;;7131:30;7197:34;7192:2;7177:18;;7170:62;7264:2;7249:18;;7091:182::o;7278:401::-;7480:2;7462:21;;;7519:2;7499:18;;;7492:30;7558:34;7553:2;7538:18;;7531:62;-1:-1:-1;;;7624:2:1;7609:18;;7602:35;7669:3;7654:19;;7452:227::o;7684:400::-;7886:2;7868:21;;;7925:2;7905:18;;;7898:30;7964:34;7959:2;7944:18;;7937:62;-1:-1:-1;;;8030:2:1;8015:18;;8008:34;8074:3;8059:19;;7858:226::o;8089:401::-;8291:2;8273:21;;;8330:2;8310:18;;;8303:30;8369:34;8364:2;8349:18;;8342:62;-1:-1:-1;;;8435:2:1;8420:18;;8413:35;8480:3;8465:19;;8263:227::o;8495:411::-;8697:2;8679:21;;;8736:2;8716:18;;;8709:30;8775:34;8770:2;8755:18;;8748:62;-1:-1:-1;;;8841:2:1;8826:18;;8819:45;8896:3;8881:19;;8669:237::o;9093:184::-;9265:4;9253:17;;;;9235:36;;9223:2;9208:18;;9190:87::o;9282:128::-;;9353:1;9349:6;9346:1;9343:13;9340:2;;;9359:18;;:::i;:::-;-1:-1:-1;9395:9:1;;9330:80::o;9415:168::-;;9521:1;9517;9513:6;9509:14;9506:1;9503:21;9498:1;9491:9;9484:17;9480:45;9477:2;;;9528:18;;:::i;:::-;-1:-1:-1;9568:9:1;;9467:116::o;9588:125::-;;9656:1;9653;9650:8;9647:2;;;9661:18;;:::i;:::-;-1:-1:-1;9698:9:1;;9637:76::o;9718:258::-;9790:1;9800:113;9814:6;9811:1;9808:13;9800:113;;;9890:11;;;9884:18;9871:11;;;9864:39;9836:2;9829:10;9800:113;;;9931:6;9928:1;9925:13;9922:2;;;9966:1;9957:6;9952:3;9948:16;9941:27;9922:2;;9771:205;;;:::o;9981:136::-;;10048:5;10038:2;;10057:18;;:::i;:::-;-1:-1:-1;;;10093:18:1;;10028:89::o;10122:380::-;10207:1;10197:12;;10254:1;10244:12;;;10265:2;;10319:4;10311:6;10307:17;10297:27;;10265:2;10372;10364:6;10361:14;10341:18;10338:38;10335:2;;;10418:10;10413:3;10409:20;10406:1;10399:31;10453:4;10450:1;10443:15;10481:4;10478:1;10471:15;10335:2;;10177:325;;;:::o;10507:127::-;10568:10;10563:3;10559:20;10556:1;10549:31;10599:4;10596:1;10589:15;10623:4;10620:1;10613:15

Swarm Source

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