ETH Price: $3,249.30 (+3.43%)
Gas: 4 Gwei

Token

Chill Pepe (CPEPE)
 

Overview

Max Total Supply

488 CPEPE

Holders

57

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cokeceo.eth
Balance
3 CPEPE
0xb807d3c907f3aebd0e9de7c148baa91098d6183d
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:
ChillPepe

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-07
*/

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "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] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // ==============================
    //        IERC721Metadata
    // ==============================

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID. 
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: contracts/Chill_Pepe.sol



//Developer : FazelPejmanfar , Twitter :@Pejmanfarfazel



pragma solidity >=0.7.0 <0.9.0;





contract ChillPepe is ERC721A, Ownable, ReentrancyGuard {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.001 ether;
  uint256 public maxSupply = 3333;
  uint256 public freemint = 3;
  bool public paused = false;
  bool public revealed = false;

  constructor(
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721A("Chill Pepe", "CPEPE") {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
      function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

  // public
  function mint(uint256 tokens) public payable nonReentrant {
    require(!paused, "MB: oops contract is paused");
    uint256 supply = totalSupply();
    require(tokens > 0, "MB: need to mint at least 1 NFT");
    require(supply + tokens <= maxSupply, "MB: We Soldout");
    
    if(numberMinted(msg.sender) >= freemint) {
    require(msg.value >= cost * tokens, "MB: insufficient funds");
    } else {
      require(msg.value >= cost * (tokens - freemint), "MB: insufficient funds");
    }
      _safeMint(_msgSender(), tokens);
    
  }

  /// @dev use it for giveaway and mint for yourself
     function gift(uint256 _mintAmount, address destination) public onlyOwner nonReentrant {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
    
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

    function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  //only owner
  function reveal(bool _state) public onlyOwner {
      revealed = _state;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }

      function setfreemint(uint256 _newsupply) public onlyOwner {
    freemint = _newsupply;
  }


  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
 
  function withdraw() public payable onlyOwner nonReentrant {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freemint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"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":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setfreemint","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200005192919062000430565b5066038d7ea4c68000600d55610d05600e556003600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff021916908315150217905550348015620000ab57600080fd5b50604051620043ad380380620043ad8339818101604052810190620000d191906200055e565b6040518060400160405280600a81526020017f4368696c6c2050657065000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f435045504500000000000000000000000000000000000000000000000000000081525081600290805190602001906200015592919062000430565b5080600390805190602001906200016e92919062000430565b506200017f620001d960201b60201c565b6000819055505050620001a76200019b620001e260201b60201c565b620001ea60201b60201c565b6001600981905550620001c082620002b060201b60201c565b620001d1816200035b60201b60201c565b5050620007ea565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002c0620001e260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e66200040660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200033f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000336906200060a565b60405180910390fd5b80600a90805190602001906200035792919062000430565b5050565b6200036b620001e260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003916200040660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e1906200060a565b60405180910390fd5b80600c90805190602001906200040292919062000430565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200043e90620006d2565b90600052602060002090601f016020900481019282620004625760008555620004ae565b82601f106200047d57805160ff1916838001178555620004ae565b82800160010185558215620004ae579182015b82811115620004ad57825182559160200191906001019062000490565b5b509050620004bd9190620004c1565b5090565b5b80821115620004dc576000816000905550600101620004c2565b5090565b6000620004f7620004f18462000655565b6200062c565b905082815260208101848484011115620005165762000515620007a1565b5b620005238482856200069c565b509392505050565b600082601f8301126200054357620005426200079c565b5b815162000555848260208601620004e0565b91505092915050565b60008060408385031215620005785762000577620007ab565b5b600083015167ffffffffffffffff811115620005995762000598620007a6565b5b620005a7858286016200052b565b925050602083015167ffffffffffffffff811115620005cb57620005ca620007a6565b5b620005d9858286016200052b565b9150509250929050565b6000620005f26020836200068b565b9150620005ff82620007c1565b602082019050919050565b600060208201905081810360008301526200062581620005e3565b9050919050565b6000620006386200064b565b905062000646828262000708565b919050565b6000604051905090565b600067ffffffffffffffff8211156200067357620006726200076d565b5b6200067e82620007b0565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006bc5780820151818401526020810190506200069f565b83811115620006cc576000848401525b50505050565b60006002820490506001821680620006eb57607f821691505b602082108114156200070257620007016200073e565b5b50919050565b6200071382620007b0565b810181811067ffffffffffffffff821117156200073557620007346200076d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613bb380620007fa6000396000f3fe60806040526004361061021a5760003560e01c80636c0360eb11610123578063b88d4fde116100ab578063dc33e6811161006f578063dc33e6811461077b578063e985e9c5146107b8578063f2c4ce1e146107f5578063f2fde38b1461081e578063f9cb63ac146108475761021a565b8063b88d4fde14610696578063c6682862146106bf578063c87b56dd146106ea578063d5abeb0114610727578063da3ef23f146107525761021a565b80638da5cb5b116100f25780638da5cb5b146105d2578063940cd05b146105fd57806395d89b4114610626578063a0712d6814610651578063a22cb4651461066d5761021a565b80636c0360eb1461052a57806370a0823114610555578063715018a61461059257806383a076be146105a95761021a565b806318160ddd116101a657806344a0d68a1161017557806344a0d68a14610445578063518302271461046e57806355f804b3146104995780635c975abb146104c25780636352211e146104ed5761021a565b806318160ddd146103be57806323b872dd146103e95780633ccfd60b1461041257806342842e0e1461041c5761021a565b8063081c8c44116101ed578063081c8c44146102ed578063090caf2a14610318578063095ea7b31461034157806313faede61461036a578063149835a0146103955761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612e71565b610872565b60405161025391906132fe565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190612e44565b610904565b005b34801561029157600080fd5b5061029a61099d565b6040516102a79190613319565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190612f14565b610a2f565b6040516102e49190613297565b60405180910390f35b3480156102f957600080fd5b50610302610aab565b60405161030f9190613319565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190612f14565b610b39565b005b34801561034d57600080fd5b5061036860048036038101906103639190612e04565b610bbf565b005b34801561037657600080fd5b5061037f610d66565b60405161038c919061347b565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b79190612f14565b610d6c565b005b3480156103ca57600080fd5b506103d3610df2565b6040516103e0919061347b565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190612cee565b610e09565b005b61041a610e19565b005b34801561042857600080fd5b50610443600480360381019061043e9190612cee565b610f64565b005b34801561045157600080fd5b5061046c60048036038101906104679190612f14565b610f84565b005b34801561047a57600080fd5b5061048361100a565b60405161049091906132fe565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190612ecb565b61101d565b005b3480156104ce57600080fd5b506104d76110b3565b6040516104e491906132fe565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f9190612f14565b6110c6565b6040516105219190613297565b60405180910390f35b34801561053657600080fd5b5061053f6110d8565b60405161054c9190613319565b60405180910390f35b34801561056157600080fd5b5061057c60048036038101906105779190612c81565b611166565b604051610589919061347b565b60405180910390f35b34801561059e57600080fd5b506105a761121f565b005b3480156105b557600080fd5b506105d060048036038101906105cb9190612f41565b6112a7565b005b3480156105de57600080fd5b506105e7611427565b6040516105f49190613297565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f9190612e44565b611451565b005b34801561063257600080fd5b5061063b6114ea565b6040516106489190613319565b60405180910390f35b61066b60048036038101906106669190612f14565b61157c565b005b34801561067957600080fd5b50610694600480360381019061068f9190612dc4565b61179a565b005b3480156106a257600080fd5b506106bd60048036038101906106b89190612d41565b611912565b005b3480156106cb57600080fd5b506106d4611985565b6040516106e19190613319565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c9190612f14565b611a13565b60405161071e9190613319565b60405180910390f35b34801561073357600080fd5b5061073c611b6c565b604051610749919061347b565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612ecb565b611b72565b005b34801561078757600080fd5b506107a2600480360381019061079d9190612c81565b611c08565b6040516107af919061347b565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da9190612cae565b611c1a565b6040516107ec91906132fe565b60405180910390f35b34801561080157600080fd5b5061081c60048036038101906108179190612ecb565b611cae565b005b34801561082a57600080fd5b5061084560048036038101906108409190612c81565b611d44565b005b34801561085357600080fd5b5061085c611e3c565b604051610869919061347b565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108cd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108fd5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61090c611e42565b73ffffffffffffffffffffffffffffffffffffffff1661092a611427565b73ffffffffffffffffffffffffffffffffffffffff1614610980576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610977906133db565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600280546109ac9061374b565b80601f01602080910402602001604051908101604052809291908181526020018280546109d89061374b565b8015610a255780601f106109fa57610100808354040283529160200191610a25565b820191906000526020600020905b815481529060010190602001808311610a0857829003601f168201915b5050505050905090565b6000610a3a82611e4a565b610a70576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610ab89061374b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae49061374b565b8015610b315780601f10610b0657610100808354040283529160200191610b31565b820191906000526020600020905b815481529060010190602001808311610b1457829003601f168201915b505050505081565b610b41611e42565b73ffffffffffffffffffffffffffffffffffffffff16610b5f611427565b73ffffffffffffffffffffffffffffffffffffffff1614610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac906133db565b60405180910390fd5b80600f8190555050565b6000610bca82611ea9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c32576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c51611f77565b73ffffffffffffffffffffffffffffffffffffffff1614610cb457610c7d81610c78611f77565b611c1a565b610cb3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610d74611e42565b73ffffffffffffffffffffffffffffffffffffffff16610d92611427565b73ffffffffffffffffffffffffffffffffffffffff1614610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf906133db565b60405180910390fd5b80600e8190555050565b6000610dfc611f7f565b6001546000540303905090565b610e14838383611f88565b505050565b610e21611e42565b73ffffffffffffffffffffffffffffffffffffffff16610e3f611427565b73ffffffffffffffffffffffffffffffffffffffff1614610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c906133db565b60405180910390fd5b60026009541415610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed29061343b565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610f0990613282565b60006040518083038185875af1925050503d8060008114610f46576040519150601f19603f3d011682016040523d82523d6000602084013e610f4b565b606091505b5050905080610f5957600080fd5b506001600981905550565b610f7f83838360405180602001604052806000815250611912565b505050565b610f8c611e42565b73ffffffffffffffffffffffffffffffffffffffff16610faa611427565b73ffffffffffffffffffffffffffffffffffffffff1614611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff7906133db565b60405180910390fd5b80600d8190555050565b601060019054906101000a900460ff1681565b611025611e42565b73ffffffffffffffffffffffffffffffffffffffff16611043611427565b73ffffffffffffffffffffffffffffffffffffffff1614611099576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611090906133db565b60405180910390fd5b80600a90805190602001906110af929190612a95565b5050565b601060009054906101000a900460ff1681565b60006110d182611ea9565b9050919050565b600a80546110e59061374b565b80601f01602080910402602001604051908101604052809291908181526020018280546111119061374b565b801561115e5780601f106111335761010080835404028352916020019161115e565b820191906000526020600020905b81548152906001019060200180831161114157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ce576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611227611e42565b73ffffffffffffffffffffffffffffffffffffffff16611245611427565b73ffffffffffffffffffffffffffffffffffffffff161461129b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611292906133db565b60405180910390fd5b6112a56000612332565b565b6112af611e42565b73ffffffffffffffffffffffffffffffffffffffff166112cd611427565b73ffffffffffffffffffffffffffffffffffffffff1614611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a906133db565b60405180910390fd5b60026009541415611369576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113609061343b565b60405180910390fd5b6002600981905550600082116113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab9061345b565b60405180910390fd5b60006113be610df2565b9050600e5483826113cf9190613580565b1115611410576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611407906133bb565b60405180910390fd5b61141a82846123f8565b5060016009819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611459611e42565b73ffffffffffffffffffffffffffffffffffffffff16611477611427565b73ffffffffffffffffffffffffffffffffffffffff16146114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c4906133db565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6060600380546114f99061374b565b80601f01602080910402602001604051908101604052809291908181526020018280546115259061374b565b80156115725780601f1061154757610100808354040283529160200191611572565b820191906000526020600020905b81548152906001019060200180831161155557829003601f168201915b5050505050905090565b600260095414156115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b99061343b565b60405180910390fd5b6002600981905550601060009054906101000a900460ff161561161a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116119061339b565b60405180910390fd5b6000611624610df2565b905060008211611669576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116609061335b565b60405180910390fd5b600e5482826116789190613580565b11156116b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b09061341b565b60405180910390fd5b600f546116c533611c08565b1061171f5781600d546116d89190613607565b34101561171a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611711906133fb565b60405180910390fd5b61177d565b600f548261172d9190613661565b600d5461173a9190613607565b34101561177c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611773906133fb565b60405180910390fd5b5b61178e611788611e42565b836123f8565b50600160098190555050565b6117a2611f77565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611807576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611814611f77565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118c1611f77565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161190691906132fe565b60405180910390a35050565b61191d848484611f88565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461197f5761194884848484612416565b61197e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b80546119929061374b565b80601f01602080910402602001604051908101604052809291908181526020018280546119be9061374b565b8015611a0b5780601f106119e057610100808354040283529160200191611a0b565b820191906000526020600020905b8154815290600101906020018083116119ee57829003601f168201915b505050505081565b6060611a1e82611e4a565b611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a549061333b565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611b0b57600c8054611a869061374b565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab29061374b565b8015611aff5780601f10611ad457610100808354040283529160200191611aff565b820191906000526020600020905b815481529060010190602001808311611ae257829003601f168201915b50505050509050611b67565b6000611b15612576565b90506000815111611b355760405180602001604052806000815250611b63565b80611b3f84612608565b600b604051602001611b5393929190613251565b6040516020818303038152906040525b9150505b919050565b600e5481565b611b7a611e42565b73ffffffffffffffffffffffffffffffffffffffff16611b98611427565b73ffffffffffffffffffffffffffffffffffffffff1614611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be5906133db565b60405180910390fd5b80600b9080519060200190611c04929190612a95565b5050565b6000611c1382612769565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cb6611e42565b73ffffffffffffffffffffffffffffffffffffffff16611cd4611427565b73ffffffffffffffffffffffffffffffffffffffff1614611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d21906133db565b60405180910390fd5b80600c9080519060200190611d40929190612a95565b5050565b611d4c611e42565b73ffffffffffffffffffffffffffffffffffffffff16611d6a611427565b73ffffffffffffffffffffffffffffffffffffffff1614611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db7906133db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e279061337b565b60405180910390fd5b611e3981612332565b50565b600f5481565b600033905090565b600081611e55611f7f565b11158015611e64575060005482105b8015611ea2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611eb8611f7f565b11611f4057600054811015611f3f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611f3d575b6000811415611f33576004600083600190039350838152602001908152602001600020549050611f08565b8092505050611f72565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611f9382611ea9565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ffa576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661201b611f77565b73ffffffffffffffffffffffffffffffffffffffff16148061204a575061204985612044611f77565b611c1a565b5b8061208f5750612058611f77565b73ffffffffffffffffffffffffffffffffffffffff1661207784610a2f565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806120c8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561212f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61213c85858560016127c0565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612239866127c6565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156122c35760006001840190506000600460008381526020019081526020016000205414156122c15760005481146122c0578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461232b85858560016127d0565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124128282604051806020016040528060008152506127d6565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261243c611f77565b8786866040518563ffffffff1660e01b815260040161245e94939291906132b2565b602060405180830381600087803b15801561247857600080fd5b505af19250505080156124a957506040513d601f19601f820116820180604052508101906124a69190612e9e565b60015b612523573d80600081146124d9576040519150601f19603f3d011682016040523d82523d6000602084013e6124de565b606091505b5060008151141561251b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546125859061374b565b80601f01602080910402602001604051908101604052809291908181526020018280546125b19061374b565b80156125fe5780601f106125d3576101008083540402835291602001916125fe565b820191906000526020600020905b8154815290600101906020018083116125e157829003601f168201915b5050505050905090565b60606000821415612650576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612764565b600082905060005b6000821461268257808061266b906137ae565b915050600a8261267b91906135d6565b9150612658565b60008167ffffffffffffffff81111561269e5761269d6138e4565b5b6040519080825280601f01601f1916602001820160405280156126d05781602001600182028036833780820191505090505b5090505b6000851461275d576001826126e99190613661565b9150600a856126f891906137f7565b60306127049190613580565b60f81b81838151811061271a576127196138b5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561275691906135d6565b94506126d4565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612843576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561287e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61288b60008583866127c0565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16128f060018514612a8b565b901b60a042901b612900866127c6565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612a04575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129b46000878480600101955087612416565b6129ea576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129455782600054146129ff57600080fd5b612a6f565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a05575b816000819055505050612a8560008583866127d0565b50505050565b6000819050919050565b828054612aa19061374b565b90600052602060002090601f016020900481019282612ac35760008555612b0a565b82601f10612adc57805160ff1916838001178555612b0a565b82800160010185558215612b0a579182015b82811115612b09578251825591602001919060010190612aee565b5b509050612b179190612b1b565b5090565b5b80821115612b34576000816000905550600101612b1c565b5090565b6000612b4b612b46846134bb565b613496565b905082815260208101848484011115612b6757612b66613918565b5b612b72848285613709565b509392505050565b6000612b8d612b88846134ec565b613496565b905082815260208101848484011115612ba957612ba8613918565b5b612bb4848285613709565b509392505050565b600081359050612bcb81613b21565b92915050565b600081359050612be081613b38565b92915050565b600081359050612bf581613b4f565b92915050565b600081519050612c0a81613b4f565b92915050565b600082601f830112612c2557612c24613913565b5b8135612c35848260208601612b38565b91505092915050565b600082601f830112612c5357612c52613913565b5b8135612c63848260208601612b7a565b91505092915050565b600081359050612c7b81613b66565b92915050565b600060208284031215612c9757612c96613922565b5b6000612ca584828501612bbc565b91505092915050565b60008060408385031215612cc557612cc4613922565b5b6000612cd385828601612bbc565b9250506020612ce485828601612bbc565b9150509250929050565b600080600060608486031215612d0757612d06613922565b5b6000612d1586828701612bbc565b9350506020612d2686828701612bbc565b9250506040612d3786828701612c6c565b9150509250925092565b60008060008060808587031215612d5b57612d5a613922565b5b6000612d6987828801612bbc565b9450506020612d7a87828801612bbc565b9350506040612d8b87828801612c6c565b925050606085013567ffffffffffffffff811115612dac57612dab61391d565b5b612db887828801612c10565b91505092959194509250565b60008060408385031215612ddb57612dda613922565b5b6000612de985828601612bbc565b9250506020612dfa85828601612bd1565b9150509250929050565b60008060408385031215612e1b57612e1a613922565b5b6000612e2985828601612bbc565b9250506020612e3a85828601612c6c565b9150509250929050565b600060208284031215612e5a57612e59613922565b5b6000612e6884828501612bd1565b91505092915050565b600060208284031215612e8757612e86613922565b5b6000612e9584828501612be6565b91505092915050565b600060208284031215612eb457612eb3613922565b5b6000612ec284828501612bfb565b91505092915050565b600060208284031215612ee157612ee0613922565b5b600082013567ffffffffffffffff811115612eff57612efe61391d565b5b612f0b84828501612c3e565b91505092915050565b600060208284031215612f2a57612f29613922565b5b6000612f3884828501612c6c565b91505092915050565b60008060408385031215612f5857612f57613922565b5b6000612f6685828601612c6c565b9250506020612f7785828601612bbc565b9150509250929050565b612f8a81613695565b82525050565b612f99816136a7565b82525050565b6000612faa82613532565b612fb48185613548565b9350612fc4818560208601613718565b612fcd81613927565b840191505092915050565b6000612fe38261353d565b612fed8185613564565b9350612ffd818560208601613718565b61300681613927565b840191505092915050565b600061301c8261353d565b6130268185613575565b9350613036818560208601613718565b80840191505092915050565b6000815461304f8161374b565b6130598186613575565b945060018216600081146130745760018114613085576130b8565b60ff198316865281860193506130b8565b61308e8561351d565b60005b838110156130b057815481890152600182019150602081019050613091565b838801955050505b50505092915050565b60006130ce603083613564565b91506130d982613938565b604082019050919050565b60006130f1601f83613564565b91506130fc82613987565b602082019050919050565b6000613114602683613564565b915061311f826139b0565b604082019050919050565b6000613137601b83613564565b9150613142826139ff565b602082019050919050565b600061315a601683613564565b915061316582613a28565b602082019050919050565b600061317d602083613564565b915061318882613a51565b602082019050919050565b60006131a0600083613559565b91506131ab82613a7a565b600082019050919050565b60006131c3601683613564565b91506131ce82613a7d565b602082019050919050565b60006131e6600e83613564565b91506131f182613aa6565b602082019050919050565b6000613209601f83613564565b915061321482613acf565b602082019050919050565b600061322c601b83613564565b915061323782613af8565b602082019050919050565b61324b816136ff565b82525050565b600061325d8286613011565b91506132698285613011565b91506132758284613042565b9150819050949350505050565b600061328d82613193565b9150819050919050565b60006020820190506132ac6000830184612f81565b92915050565b60006080820190506132c76000830187612f81565b6132d46020830186612f81565b6132e16040830185613242565b81810360608301526132f38184612f9f565b905095945050505050565b60006020820190506133136000830184612f90565b92915050565b600060208201905081810360008301526133338184612fd8565b905092915050565b60006020820190508181036000830152613354816130c1565b9050919050565b60006020820190508181036000830152613374816130e4565b9050919050565b6000602082019050818103600083015261339481613107565b9050919050565b600060208201905081810360008301526133b48161312a565b9050919050565b600060208201905081810360008301526133d48161314d565b9050919050565b600060208201905081810360008301526133f481613170565b9050919050565b60006020820190508181036000830152613414816131b6565b9050919050565b60006020820190508181036000830152613434816131d9565b9050919050565b60006020820190508181036000830152613454816131fc565b9050919050565b600060208201905081810360008301526134748161321f565b9050919050565b60006020820190506134906000830184613242565b92915050565b60006134a06134b1565b90506134ac828261377d565b919050565b6000604051905090565b600067ffffffffffffffff8211156134d6576134d56138e4565b5b6134df82613927565b9050602081019050919050565b600067ffffffffffffffff821115613507576135066138e4565b5b61351082613927565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061358b826136ff565b9150613596836136ff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135cb576135ca613828565b5b828201905092915050565b60006135e1826136ff565b91506135ec836136ff565b9250826135fc576135fb613857565b5b828204905092915050565b6000613612826136ff565b915061361d836136ff565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561365657613655613828565b5b828202905092915050565b600061366c826136ff565b9150613677836136ff565b92508282101561368a57613689613828565b5b828203905092915050565b60006136a0826136df565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561373657808201518184015260208101905061371b565b83811115613745576000848401525b50505050565b6000600282049050600182168061376357607f821691505b6020821081141561377757613776613886565b5b50919050565b61378682613927565b810181811067ffffffffffffffff821117156137a5576137a46138e4565b5b80604052505050565b60006137b9826136ff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137ec576137eb613828565b5b600182019050919050565b6000613802826136ff565b915061380d836136ff565b92508261381d5761381c613857565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4d423a206e65656420746f206d696e74206174206c656173742031204e465400600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d423a206f6f707320636f6e7472616374206973207061757365640000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f4d423a20696e73756666696369656e742066756e647300000000000000000000600082015250565b7f4d423a20576520536f6c646f7574000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b613b2a81613695565b8114613b3557600080fd5b50565b613b41816136a7565b8114613b4c57600080fd5b50565b613b58816136b3565b8114613b6357600080fd5b50565b613b6f816136ff565b8114613b7a57600080fd5b5056fea2646970667358221220444a2003e2f02ca058b7f230a9c8cd5f2bb6ca0d934fe9c20773dd19ef076cb764736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5546457a4e4745643878396738454d765255673858765558764e4648787772374d797446426561445a4356502f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5a55646277317a50785170686570416d3769666b315062513947474244794d41585a4d385348534b6d4463562f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636c0360eb11610123578063b88d4fde116100ab578063dc33e6811161006f578063dc33e6811461077b578063e985e9c5146107b8578063f2c4ce1e146107f5578063f2fde38b1461081e578063f9cb63ac146108475761021a565b8063b88d4fde14610696578063c6682862146106bf578063c87b56dd146106ea578063d5abeb0114610727578063da3ef23f146107525761021a565b80638da5cb5b116100f25780638da5cb5b146105d2578063940cd05b146105fd57806395d89b4114610626578063a0712d6814610651578063a22cb4651461066d5761021a565b80636c0360eb1461052a57806370a0823114610555578063715018a61461059257806383a076be146105a95761021a565b806318160ddd116101a657806344a0d68a1161017557806344a0d68a14610445578063518302271461046e57806355f804b3146104995780635c975abb146104c25780636352211e146104ed5761021a565b806318160ddd146103be57806323b872dd146103e95780633ccfd60b1461041257806342842e0e1461041c5761021a565b8063081c8c44116101ed578063081c8c44146102ed578063090caf2a14610318578063095ea7b31461034157806313faede61461036a578063149835a0146103955761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612e71565b610872565b60405161025391906132fe565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190612e44565b610904565b005b34801561029157600080fd5b5061029a61099d565b6040516102a79190613319565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190612f14565b610a2f565b6040516102e49190613297565b60405180910390f35b3480156102f957600080fd5b50610302610aab565b60405161030f9190613319565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190612f14565b610b39565b005b34801561034d57600080fd5b5061036860048036038101906103639190612e04565b610bbf565b005b34801561037657600080fd5b5061037f610d66565b60405161038c919061347b565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b79190612f14565b610d6c565b005b3480156103ca57600080fd5b506103d3610df2565b6040516103e0919061347b565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b9190612cee565b610e09565b005b61041a610e19565b005b34801561042857600080fd5b50610443600480360381019061043e9190612cee565b610f64565b005b34801561045157600080fd5b5061046c60048036038101906104679190612f14565b610f84565b005b34801561047a57600080fd5b5061048361100a565b60405161049091906132fe565b60405180910390f35b3480156104a557600080fd5b506104c060048036038101906104bb9190612ecb565b61101d565b005b3480156104ce57600080fd5b506104d76110b3565b6040516104e491906132fe565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f9190612f14565b6110c6565b6040516105219190613297565b60405180910390f35b34801561053657600080fd5b5061053f6110d8565b60405161054c9190613319565b60405180910390f35b34801561056157600080fd5b5061057c60048036038101906105779190612c81565b611166565b604051610589919061347b565b60405180910390f35b34801561059e57600080fd5b506105a761121f565b005b3480156105b557600080fd5b506105d060048036038101906105cb9190612f41565b6112a7565b005b3480156105de57600080fd5b506105e7611427565b6040516105f49190613297565b60405180910390f35b34801561060957600080fd5b50610624600480360381019061061f9190612e44565b611451565b005b34801561063257600080fd5b5061063b6114ea565b6040516106489190613319565b60405180910390f35b61066b60048036038101906106669190612f14565b61157c565b005b34801561067957600080fd5b50610694600480360381019061068f9190612dc4565b61179a565b005b3480156106a257600080fd5b506106bd60048036038101906106b89190612d41565b611912565b005b3480156106cb57600080fd5b506106d4611985565b6040516106e19190613319565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c9190612f14565b611a13565b60405161071e9190613319565b60405180910390f35b34801561073357600080fd5b5061073c611b6c565b604051610749919061347b565b60405180910390f35b34801561075e57600080fd5b5061077960048036038101906107749190612ecb565b611b72565b005b34801561078757600080fd5b506107a2600480360381019061079d9190612c81565b611c08565b6040516107af919061347b565b60405180910390f35b3480156107c457600080fd5b506107df60048036038101906107da9190612cae565b611c1a565b6040516107ec91906132fe565b60405180910390f35b34801561080157600080fd5b5061081c60048036038101906108179190612ecb565b611cae565b005b34801561082a57600080fd5b5061084560048036038101906108409190612c81565b611d44565b005b34801561085357600080fd5b5061085c611e3c565b604051610869919061347b565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108cd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108fd5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61090c611e42565b73ffffffffffffffffffffffffffffffffffffffff1661092a611427565b73ffffffffffffffffffffffffffffffffffffffff1614610980576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610977906133db565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6060600280546109ac9061374b565b80601f01602080910402602001604051908101604052809291908181526020018280546109d89061374b565b8015610a255780601f106109fa57610100808354040283529160200191610a25565b820191906000526020600020905b815481529060010190602001808311610a0857829003601f168201915b5050505050905090565b6000610a3a82611e4a565b610a70576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610ab89061374b565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae49061374b565b8015610b315780601f10610b0657610100808354040283529160200191610b31565b820191906000526020600020905b815481529060010190602001808311610b1457829003601f168201915b505050505081565b610b41611e42565b73ffffffffffffffffffffffffffffffffffffffff16610b5f611427565b73ffffffffffffffffffffffffffffffffffffffff1614610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac906133db565b60405180910390fd5b80600f8190555050565b6000610bca82611ea9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c32576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c51611f77565b73ffffffffffffffffffffffffffffffffffffffff1614610cb457610c7d81610c78611f77565b611c1a565b610cb3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610d74611e42565b73ffffffffffffffffffffffffffffffffffffffff16610d92611427565b73ffffffffffffffffffffffffffffffffffffffff1614610de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddf906133db565b60405180910390fd5b80600e8190555050565b6000610dfc611f7f565b6001546000540303905090565b610e14838383611f88565b505050565b610e21611e42565b73ffffffffffffffffffffffffffffffffffffffff16610e3f611427565b73ffffffffffffffffffffffffffffffffffffffff1614610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c906133db565b60405180910390fd5b60026009541415610edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed29061343b565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610f0990613282565b60006040518083038185875af1925050503d8060008114610f46576040519150601f19603f3d011682016040523d82523d6000602084013e610f4b565b606091505b5050905080610f5957600080fd5b506001600981905550565b610f7f83838360405180602001604052806000815250611912565b505050565b610f8c611e42565b73ffffffffffffffffffffffffffffffffffffffff16610faa611427565b73ffffffffffffffffffffffffffffffffffffffff1614611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff7906133db565b60405180910390fd5b80600d8190555050565b601060019054906101000a900460ff1681565b611025611e42565b73ffffffffffffffffffffffffffffffffffffffff16611043611427565b73ffffffffffffffffffffffffffffffffffffffff1614611099576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611090906133db565b60405180910390fd5b80600a90805190602001906110af929190612a95565b5050565b601060009054906101000a900460ff1681565b60006110d182611ea9565b9050919050565b600a80546110e59061374b565b80601f01602080910402602001604051908101604052809291908181526020018280546111119061374b565b801561115e5780601f106111335761010080835404028352916020019161115e565b820191906000526020600020905b81548152906001019060200180831161114157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ce576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611227611e42565b73ffffffffffffffffffffffffffffffffffffffff16611245611427565b73ffffffffffffffffffffffffffffffffffffffff161461129b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611292906133db565b60405180910390fd5b6112a56000612332565b565b6112af611e42565b73ffffffffffffffffffffffffffffffffffffffff166112cd611427565b73ffffffffffffffffffffffffffffffffffffffff1614611323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131a906133db565b60405180910390fd5b60026009541415611369576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113609061343b565b60405180910390fd5b6002600981905550600082116113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab9061345b565b60405180910390fd5b60006113be610df2565b9050600e5483826113cf9190613580565b1115611410576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611407906133bb565b60405180910390fd5b61141a82846123f8565b5060016009819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611459611e42565b73ffffffffffffffffffffffffffffffffffffffff16611477611427565b73ffffffffffffffffffffffffffffffffffffffff16146114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c4906133db565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6060600380546114f99061374b565b80601f01602080910402602001604051908101604052809291908181526020018280546115259061374b565b80156115725780601f1061154757610100808354040283529160200191611572565b820191906000526020600020905b81548152906001019060200180831161155557829003601f168201915b5050505050905090565b600260095414156115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b99061343b565b60405180910390fd5b6002600981905550601060009054906101000a900460ff161561161a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116119061339b565b60405180910390fd5b6000611624610df2565b905060008211611669576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116609061335b565b60405180910390fd5b600e5482826116789190613580565b11156116b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b09061341b565b60405180910390fd5b600f546116c533611c08565b1061171f5781600d546116d89190613607565b34101561171a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611711906133fb565b60405180910390fd5b61177d565b600f548261172d9190613661565b600d5461173a9190613607565b34101561177c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611773906133fb565b60405180910390fd5b5b61178e611788611e42565b836123f8565b50600160098190555050565b6117a2611f77565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611807576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611814611f77565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118c1611f77565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161190691906132fe565b60405180910390a35050565b61191d848484611f88565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461197f5761194884848484612416565b61197e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b80546119929061374b565b80601f01602080910402602001604051908101604052809291908181526020018280546119be9061374b565b8015611a0b5780601f106119e057610100808354040283529160200191611a0b565b820191906000526020600020905b8154815290600101906020018083116119ee57829003601f168201915b505050505081565b6060611a1e82611e4a565b611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a549061333b565b60405180910390fd5b60001515601060019054906101000a900460ff1615151415611b0b57600c8054611a869061374b565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab29061374b565b8015611aff5780601f10611ad457610100808354040283529160200191611aff565b820191906000526020600020905b815481529060010190602001808311611ae257829003601f168201915b50505050509050611b67565b6000611b15612576565b90506000815111611b355760405180602001604052806000815250611b63565b80611b3f84612608565b600b604051602001611b5393929190613251565b6040516020818303038152906040525b9150505b919050565b600e5481565b611b7a611e42565b73ffffffffffffffffffffffffffffffffffffffff16611b98611427565b73ffffffffffffffffffffffffffffffffffffffff1614611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be5906133db565b60405180910390fd5b80600b9080519060200190611c04929190612a95565b5050565b6000611c1382612769565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cb6611e42565b73ffffffffffffffffffffffffffffffffffffffff16611cd4611427565b73ffffffffffffffffffffffffffffffffffffffff1614611d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d21906133db565b60405180910390fd5b80600c9080519060200190611d40929190612a95565b5050565b611d4c611e42565b73ffffffffffffffffffffffffffffffffffffffff16611d6a611427565b73ffffffffffffffffffffffffffffffffffffffff1614611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db7906133db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e279061337b565b60405180910390fd5b611e3981612332565b50565b600f5481565b600033905090565b600081611e55611f7f565b11158015611e64575060005482105b8015611ea2575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611eb8611f7f565b11611f4057600054811015611f3f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611f3d575b6000811415611f33576004600083600190039350838152602001908152602001600020549050611f08565b8092505050611f72565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611f9382611ea9565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ffa576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661201b611f77565b73ffffffffffffffffffffffffffffffffffffffff16148061204a575061204985612044611f77565b611c1a565b5b8061208f5750612058611f77565b73ffffffffffffffffffffffffffffffffffffffff1661207784610a2f565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806120c8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561212f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61213c85858560016127c0565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612239866127c6565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156122c35760006001840190506000600460008381526020019081526020016000205414156122c15760005481146122c0578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461232b85858560016127d0565b5050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124128282604051806020016040528060008152506127d6565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261243c611f77565b8786866040518563ffffffff1660e01b815260040161245e94939291906132b2565b602060405180830381600087803b15801561247857600080fd5b505af19250505080156124a957506040513d601f19601f820116820180604052508101906124a69190612e9e565b60015b612523573d80600081146124d9576040519150601f19603f3d011682016040523d82523d6000602084013e6124de565b606091505b5060008151141561251b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546125859061374b565b80601f01602080910402602001604051908101604052809291908181526020018280546125b19061374b565b80156125fe5780601f106125d3576101008083540402835291602001916125fe565b820191906000526020600020905b8154815290600101906020018083116125e157829003601f168201915b5050505050905090565b60606000821415612650576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612764565b600082905060005b6000821461268257808061266b906137ae565b915050600a8261267b91906135d6565b9150612658565b60008167ffffffffffffffff81111561269e5761269d6138e4565b5b6040519080825280601f01601f1916602001820160405280156126d05781602001600182028036833780820191505090505b5090505b6000851461275d576001826126e99190613661565b9150600a856126f891906137f7565b60306127049190613580565b60f81b81838151811061271a576127196138b5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561275691906135d6565b94506126d4565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612843576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561287e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61288b60008583866127c0565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16128f060018514612a8b565b901b60a042901b612900866127c6565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612a04575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129b46000878480600101955087612416565b6129ea576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106129455782600054146129ff57600080fd5b612a6f565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a05575b816000819055505050612a8560008583866127d0565b50505050565b6000819050919050565b828054612aa19061374b565b90600052602060002090601f016020900481019282612ac35760008555612b0a565b82601f10612adc57805160ff1916838001178555612b0a565b82800160010185558215612b0a579182015b82811115612b09578251825591602001919060010190612aee565b5b509050612b179190612b1b565b5090565b5b80821115612b34576000816000905550600101612b1c565b5090565b6000612b4b612b46846134bb565b613496565b905082815260208101848484011115612b6757612b66613918565b5b612b72848285613709565b509392505050565b6000612b8d612b88846134ec565b613496565b905082815260208101848484011115612ba957612ba8613918565b5b612bb4848285613709565b509392505050565b600081359050612bcb81613b21565b92915050565b600081359050612be081613b38565b92915050565b600081359050612bf581613b4f565b92915050565b600081519050612c0a81613b4f565b92915050565b600082601f830112612c2557612c24613913565b5b8135612c35848260208601612b38565b91505092915050565b600082601f830112612c5357612c52613913565b5b8135612c63848260208601612b7a565b91505092915050565b600081359050612c7b81613b66565b92915050565b600060208284031215612c9757612c96613922565b5b6000612ca584828501612bbc565b91505092915050565b60008060408385031215612cc557612cc4613922565b5b6000612cd385828601612bbc565b9250506020612ce485828601612bbc565b9150509250929050565b600080600060608486031215612d0757612d06613922565b5b6000612d1586828701612bbc565b9350506020612d2686828701612bbc565b9250506040612d3786828701612c6c565b9150509250925092565b60008060008060808587031215612d5b57612d5a613922565b5b6000612d6987828801612bbc565b9450506020612d7a87828801612bbc565b9350506040612d8b87828801612c6c565b925050606085013567ffffffffffffffff811115612dac57612dab61391d565b5b612db887828801612c10565b91505092959194509250565b60008060408385031215612ddb57612dda613922565b5b6000612de985828601612bbc565b9250506020612dfa85828601612bd1565b9150509250929050565b60008060408385031215612e1b57612e1a613922565b5b6000612e2985828601612bbc565b9250506020612e3a85828601612c6c565b9150509250929050565b600060208284031215612e5a57612e59613922565b5b6000612e6884828501612bd1565b91505092915050565b600060208284031215612e8757612e86613922565b5b6000612e9584828501612be6565b91505092915050565b600060208284031215612eb457612eb3613922565b5b6000612ec284828501612bfb565b91505092915050565b600060208284031215612ee157612ee0613922565b5b600082013567ffffffffffffffff811115612eff57612efe61391d565b5b612f0b84828501612c3e565b91505092915050565b600060208284031215612f2a57612f29613922565b5b6000612f3884828501612c6c565b91505092915050565b60008060408385031215612f5857612f57613922565b5b6000612f6685828601612c6c565b9250506020612f7785828601612bbc565b9150509250929050565b612f8a81613695565b82525050565b612f99816136a7565b82525050565b6000612faa82613532565b612fb48185613548565b9350612fc4818560208601613718565b612fcd81613927565b840191505092915050565b6000612fe38261353d565b612fed8185613564565b9350612ffd818560208601613718565b61300681613927565b840191505092915050565b600061301c8261353d565b6130268185613575565b9350613036818560208601613718565b80840191505092915050565b6000815461304f8161374b565b6130598186613575565b945060018216600081146130745760018114613085576130b8565b60ff198316865281860193506130b8565b61308e8561351d565b60005b838110156130b057815481890152600182019150602081019050613091565b838801955050505b50505092915050565b60006130ce603083613564565b91506130d982613938565b604082019050919050565b60006130f1601f83613564565b91506130fc82613987565b602082019050919050565b6000613114602683613564565b915061311f826139b0565b604082019050919050565b6000613137601b83613564565b9150613142826139ff565b602082019050919050565b600061315a601683613564565b915061316582613a28565b602082019050919050565b600061317d602083613564565b915061318882613a51565b602082019050919050565b60006131a0600083613559565b91506131ab82613a7a565b600082019050919050565b60006131c3601683613564565b91506131ce82613a7d565b602082019050919050565b60006131e6600e83613564565b91506131f182613aa6565b602082019050919050565b6000613209601f83613564565b915061321482613acf565b602082019050919050565b600061322c601b83613564565b915061323782613af8565b602082019050919050565b61324b816136ff565b82525050565b600061325d8286613011565b91506132698285613011565b91506132758284613042565b9150819050949350505050565b600061328d82613193565b9150819050919050565b60006020820190506132ac6000830184612f81565b92915050565b60006080820190506132c76000830187612f81565b6132d46020830186612f81565b6132e16040830185613242565b81810360608301526132f38184612f9f565b905095945050505050565b60006020820190506133136000830184612f90565b92915050565b600060208201905081810360008301526133338184612fd8565b905092915050565b60006020820190508181036000830152613354816130c1565b9050919050565b60006020820190508181036000830152613374816130e4565b9050919050565b6000602082019050818103600083015261339481613107565b9050919050565b600060208201905081810360008301526133b48161312a565b9050919050565b600060208201905081810360008301526133d48161314d565b9050919050565b600060208201905081810360008301526133f481613170565b9050919050565b60006020820190508181036000830152613414816131b6565b9050919050565b60006020820190508181036000830152613434816131d9565b9050919050565b60006020820190508181036000830152613454816131fc565b9050919050565b600060208201905081810360008301526134748161321f565b9050919050565b60006020820190506134906000830184613242565b92915050565b60006134a06134b1565b90506134ac828261377d565b919050565b6000604051905090565b600067ffffffffffffffff8211156134d6576134d56138e4565b5b6134df82613927565b9050602081019050919050565b600067ffffffffffffffff821115613507576135066138e4565b5b61351082613927565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061358b826136ff565b9150613596836136ff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135cb576135ca613828565b5b828201905092915050565b60006135e1826136ff565b91506135ec836136ff565b9250826135fc576135fb613857565b5b828204905092915050565b6000613612826136ff565b915061361d836136ff565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561365657613655613828565b5b828202905092915050565b600061366c826136ff565b9150613677836136ff565b92508282101561368a57613689613828565b5b828203905092915050565b60006136a0826136df565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561373657808201518184015260208101905061371b565b83811115613745576000848401525b50505050565b6000600282049050600182168061376357607f821691505b6020821081141561377757613776613886565b5b50919050565b61378682613927565b810181811067ffffffffffffffff821117156137a5576137a46138e4565b5b80604052505050565b60006137b9826136ff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137ec576137eb613828565b5b600182019050919050565b6000613802826136ff565b915061380d836136ff565b92508261381d5761381c613857565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4d423a206e65656420746f206d696e74206174206c656173742031204e465400600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d423a206f6f707320636f6e7472616374206973207061757365640000000000600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f4d423a20696e73756666696369656e742066756e647300000000000000000000600082015250565b7f4d423a20576520536f6c646f7574000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b613b2a81613695565b8114613b3557600080fd5b50565b613b41816136a7565b8114613b4c57600080fd5b50565b613b58816136b3565b8114613b6357600080fd5b50565b613b6f816136ff565b8114613b7a57600080fd5b5056fea2646970667358221220444a2003e2f02ca058b7f230a9c8cd5f2bb6ca0d934fe9c20773dd19ef076cb764736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5546457a4e4745643878396738454d765255673858765558764e4648787772374d797446426561445a4356502f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d5a55646277317a50785170686570416d3769666b315062513947474244794d41585a4d385348534b6d4463562f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmUFEzNGEd8x9g8EMvRUg8XvUXvNFHxwr7MytFBeaDZCVP/
Arg [1] : _initNotRevealedUri (string): ipfs://QmZUdbw1zPxQphepAm7ifk1PbQ9GGBDyMAXZM8SHSKmDcV/hidden.json

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5546457a4e4745643878396738454d7652556738587655
Arg [4] : 58764e4648787772374d797446426561445a4356502f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [6] : 697066733a2f2f516d5a55646277317a50785170686570416d3769666b315062
Arg [7] : 513947474244794d41585a4d385348534b6d4463562f68696464656e2e6a736f
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46837:3388:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21416:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49967:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26429:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28497:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46998:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49507:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27957:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47031:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49403:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20470:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29383:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50051:171;;;:::i;:::-;;29624:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49315:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47168:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49607:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47137:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26218:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46930:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22095:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7526:103;;;;;;;;;;;;;:::i;:::-;;48270:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6875:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49229:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26598:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47657:550;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28773:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29880:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46956:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48594:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47069:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49711:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49100:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29152:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49841:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7784:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47105:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21416:615;21501:4;21816:10;21801:25;;:11;:25;;;;:102;;;;21893:10;21878:25;;:11;:25;;;;21801:102;:179;;;;21970:10;21955:25;;:11;:25;;;;21801:179;21781:199;;21416:615;;;:::o;49967:73::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50028:6:::1;50019;;:15;;;;;;;;;;;;;;;;;;49967:73:::0;:::o;26429:100::-;26483:13;26516:5;26509:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26429:100;:::o;28497:204::-;28565:7;28590:16;28598:7;28590;:16::i;:::-;28585:64;;28615:34;;;;;;;;;;;;;;28585:64;28669:15;:24;28685:7;28669:24;;;;;;;;;;;;;;;;;;;;;28662:31;;28497:204;;;:::o;46998:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49507:92::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49583:10:::1;49572:8;:21;;;;49507:92:::0;:::o;27957:474::-;28030:13;28062:27;28081:7;28062:18;:27::i;:::-;28030:61;;28112:5;28106:11;;:2;:11;;;28102:48;;;28126:24;;;;;;;;;;;;;;28102:48;28190:5;28167:28;;:19;:17;:19::i;:::-;:28;;;28163:175;;28215:44;28232:5;28239:19;:17;:19::i;:::-;28215:16;:44::i;:::-;28210:128;;28287:35;;;;;;;;;;;;;;28210:128;28163:175;28377:2;28350:15;:24;28366:7;28350:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28415:7;28411:2;28395:28;;28404:5;28395:28;;;;;;;;;;;;28019:412;27957:474;;:::o;47031:33::-;;;;:::o;49403:94::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49481:10:::1;49469:9;:22;;;;49403:94:::0;:::o;20470:315::-;20523:7;20751:15;:13;:15::i;:::-;20736:12;;20720:13;;:28;:46;20713:53;;20470:315;:::o;29383:170::-;29517:28;29527:4;29533:2;29537:7;29517:9;:28::i;:::-;29383:170;;;:::o;50051:171::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1:::1;2447:7;;:19;;2439:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1;2580:7;:18;;;;50117:12:::2;50143:10;50135:24;;50167:21;50135:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50116:77;;;50208:7;50200:16;;;::::0;::::2;;50109:113;1805:1:::1;2759:7;:22;;;;50051:171::o:0;29624:185::-;29762:39;29779:4;29785:2;29789:7;29762:39;;;;;;;;;;;;:16;:39::i;:::-;29624:185;;;:::o;49315:80::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49381:8:::1;49374:4;:15;;;;49315:80:::0;:::o;47168:28::-;;;;;;;;;;;;;:::o;49607:98::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49688:11:::1;49678:7;:21;;;;;;;;;;;;:::i;:::-;;49607:98:::0;:::o;47137:26::-;;;;;;;;;;;;;:::o;26218:144::-;26282:7;26325:27;26344:7;26325:18;:27::i;:::-;26302:52;;26218:144;;;:::o;46930:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22095:224::-;22159:7;22200:1;22183:19;;:5;:19;;;22179:60;;;22211:28;;;;;;;;;;;;;;22179:60;17434:13;22257:18;:25;22276:5;22257:25;;;;;;;;;;;;;;;;:54;22250:61;;22095:224;;;:::o;7526:103::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7591:30:::1;7618:1;7591:18;:30::i;:::-;7526:103::o:0;48270:318::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1:::1;2447:7;;:19;;2439:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1;2580:7;:18;;;;48385:1:::2;48371:11;:15;48363:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;48425:14;48442:13;:11;:13::i;:::-;48425:30;;48494:9;;48479:11;48470:6;:20;;;;:::i;:::-;:33;;48462:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48541:35;48551:11;48564;48541:9;:35::i;:::-;48356:232;1805:1:::1;2759:7;:22;;;;48270:318:::0;;:::o;6875:87::-;6921:7;6948:6;;;;;;;;;;;6941:13;;6875:87;:::o;49229:78::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49295:6:::1;49284:8;;:17;;;;;;;;;;;;;;;;;;49229:78:::0;:::o;26598:104::-;26654:13;26687:7;26680:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26598:104;:::o;47657:550::-;1849:1;2447:7;;:19;;2439:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1849:1;2580:7;:18;;;;47731:6:::1;;;;;;;;;;;47730:7;47722:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;47776:14;47793:13;:11;:13::i;:::-;47776:30;;47830:1;47821:6;:10;47813:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;47901:9;;47891:6;47882;:15;;;;:::i;:::-;:28;;47874:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;47973:8;;47945:24;47958:10;47945:12;:24::i;:::-;:36;47942:214;;48018:6;48011:4;;:13;;;;:::i;:::-;47998:9;:26;;47990:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;47942:214;;;48112:8;;48103:6;:17;;;;:::i;:::-;48095:4;;:26;;;;:::i;:::-;48082:9;:39;;48074:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;47942:214;48164:31;48174:12;:10;:12::i;:::-;48188:6;48164:9;:31::i;:::-;47715:492;1805:1:::0;2759:7;:22;;;;47657:550;:::o;28773:308::-;28884:19;:17;:19::i;:::-;28872:31;;:8;:31;;;28868:61;;;28912:17;;;;;;;;;;;;;;28868:61;28994:8;28942:18;:39;28961:19;:17;:19::i;:::-;28942:39;;;;;;;;;;;;;;;:49;28982:8;28942:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29054:8;29018:55;;29033:19;:17;:19::i;:::-;29018:55;;;29064:8;29018:55;;;;;;:::i;:::-;;;;;;;;28773:308;;:::o;29880:396::-;30047:28;30057:4;30063:2;30067:7;30047:9;:28::i;:::-;30108:1;30090:2;:14;;;:19;30086:183;;30129:56;30160:4;30166:2;30170:7;30179:5;30129:30;:56::i;:::-;30124:145;;30213:40;;;;;;;;;;;;;;30124:145;30086:183;29880:396;;;;:::o;46956:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48594:498::-;48692:13;48733:16;48741:7;48733;:16::i;:::-;48717:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;48843:5;48831:17;;:8;;;;;;;;;;;:17;;;48828:62;;;48868:14;48861:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48828:62;48898:28;48929:10;:8;:10::i;:::-;48898:41;;48984:1;48959:14;48953:28;:32;:133;;;;;;;;;;;;;;;;;49021:14;49037:18;:7;:16;:18::i;:::-;49057:13;49004:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48953:133;48946:140;;;48594:498;;;;:::o;47069:31::-;;;;:::o;49711:122::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49810:17:::1;49794:13;:33;;;;;;;;;;;;:::i;:::-;;49711:122:::0;:::o;49100:107::-;49158:7;49181:20;49195:5;49181:13;:20::i;:::-;49174:27;;49100:107;;;:::o;29152:164::-;29249:4;29273:18;:25;29292:5;29273:25;;;;;;;;;;;;;;;:35;29299:8;29273:35;;;;;;;;;;;;;;;;;;;;;;;;;29266:42;;29152:164;;;;:::o;49841:120::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49940:15:::1;49923:14;:32;;;;;;;;;;;;:::i;:::-;;49841:120:::0;:::o;7784:201::-;7106:12;:10;:12::i;:::-;7095:23;;:7;:5;:7::i;:::-;:23;;;7087:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7893:1:::1;7873:22;;:8;:22;;;;7865:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7949:28;7968:8;7949:18;:28::i;:::-;7784:201:::0;:::o;47105:27::-;;;;:::o;5599:98::-;5652:7;5679:10;5672:17;;5599:98;:::o;30531:273::-;30588:4;30644:7;30625:15;:13;:15::i;:::-;:26;;:66;;;;;30678:13;;30668:7;:23;30625:66;:152;;;;;30776:1;18204:8;30729:17;:26;30747:7;30729:26;;;;;;;;;;;;:43;:48;30625:152;30605:172;;30531:273;;;:::o;23733:1129::-;23800:7;23820:12;23835:7;23820:22;;23903:4;23884:15;:13;:15::i;:::-;:23;23880:915;;23937:13;;23930:4;:20;23926:869;;;23975:14;23992:17;:23;24010:4;23992:23;;;;;;;;;;;;23975:40;;24108:1;18204:8;24081:6;:23;:28;24077:699;;;24600:113;24617:1;24607:6;:11;24600:113;;;24660:17;:25;24678:6;;;;;;;24660:25;;;;;;;;;;;;24651:34;;24600:113;;;24746:6;24739:13;;;;;;24077:699;23952:843;23926:869;23880:915;24823:31;;;;;;;;;;;;;;23733:1129;;;;:::o;44513:105::-;44573:7;44600:10;44593:17;;44513:105;:::o;47537:101::-;47602:7;47629:1;47622:8;;47537:101;:::o;35770:2515::-;35885:27;35915;35934:7;35915:18;:27::i;:::-;35885:57;;36000:4;35959:45;;35975:19;35959:45;;;35955:86;;36013:28;;;;;;;;;;;;;;35955:86;36054:22;36103:4;36080:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;36124:43;36141:4;36147:19;:17;:19::i;:::-;36124:16;:43::i;:::-;36080:87;:147;;;;36208:19;:17;:19::i;:::-;36184:43;;:20;36196:7;36184:11;:20::i;:::-;:43;;;36080:147;36054:174;;36246:17;36241:66;;36272:35;;;;;;;;;;;;;;36241:66;36336:1;36322:16;;:2;:16;;;36318:52;;;36347:23;;;;;;;;;;;;;;36318:52;36383:43;36405:4;36411:2;36415:7;36424:1;36383:21;:43::i;:::-;36499:15;:24;36515:7;36499:24;;;;;;;;;;;;36492:31;;;;;;;;;;;36891:18;:24;36910:4;36891:24;;;;;;;;;;;;;;;;36889:26;;;;;;;;;;;;36960:18;:22;36979:2;36960:22;;;;;;;;;;;;;;;;36958:24;;;;;;;;;;;18486:8;18088:3;37341:15;:41;;37299:21;37317:2;37299:17;:21::i;:::-;:84;:128;37253:17;:26;37271:7;37253:26;;;;;;;;;;;:174;;;;37597:1;18486:8;37547:19;:46;:51;37543:626;;;37619:19;37651:1;37641:7;:11;37619:33;;37808:1;37774:17;:30;37792:11;37774:30;;;;;;;;;;;;:35;37770:384;;;37912:13;;37897:11;:28;37893:242;;38092:19;38059:17;:30;38077:11;38059:30;;;;;;;;;;;:52;;;;37893:242;37770:384;37600:569;37543:626;38216:7;38212:2;38197:27;;38206:4;38197:27;;;;;;;;;;;;38235:42;38256:4;38262:2;38266:7;38275:1;38235:20;:42::i;:::-;35874:2411;;35770:2515;;;:::o;8145:191::-;8219:16;8238:6;;;;;;;;;;;8219:25;;8264:8;8255:6;;:17;;;;;;;;;;;;;;;;;;8319:8;8288:40;;8309:8;8288:40;;;;;;;;;;;;8208:128;8145:191;:::o;30888:104::-;30957:27;30967:2;30971:8;30957:27;;;;;;;;;;;;:9;:27::i;:::-;30888:104;;:::o;41982:716::-;42145:4;42191:2;42166:45;;;42212:19;:17;:19::i;:::-;42233:4;42239:7;42248:5;42166:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42162:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42466:1;42449:6;:13;:18;42445:235;;;42495:40;;;;;;;;;;;;;;42445:235;42638:6;42632:13;42623:6;42619:2;42615:15;42608:38;42162:529;42335:54;;;42325:64;;;:6;:64;;;;42318:71;;;41982:716;;;;;;:::o;47427:102::-;47487:13;47516:7;47509:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47427:102;:::o;3161:723::-;3217:13;3447:1;3438:5;:10;3434:53;;;3465:10;;;;;;;;;;;;;;;;;;;;;3434:53;3497:12;3512:5;3497:20;;3528:14;3553:78;3568:1;3560:4;:9;3553:78;;3586:8;;;;;:::i;:::-;;;;3617:2;3609:10;;;;;:::i;:::-;;;3553:78;;;3641:19;3673:6;3663:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3641:39;;3691:154;3707:1;3698:5;:10;3691:154;;3735:1;3725:11;;;;;:::i;:::-;;;3802:2;3794:5;:10;;;;:::i;:::-;3781:2;:24;;;;:::i;:::-;3768:39;;3751:6;3758;3751:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3831:2;3822:11;;;;;:::i;:::-;;;3691:154;;;3869:6;3855:21;;;;;3161:723;;;;:::o;22401:176::-;22462:7;17434:13;17571:2;22490:18;:25;22509:5;22490:25;;;;;;;;;;;;;;;;:49;;22489:80;22482:87;;22401:176;;;:::o;43346:159::-;;;;;:::o;27518:148::-;27582:14;27643:5;27633:15;;27518:148;;;:::o;44164:158::-;;;;;:::o;31365:2236::-;31488:20;31511:13;;31488:36;;31553:1;31539:16;;:2;:16;;;31535:48;;;31564:19;;;;;;;;;;;;;;31535:48;31610:1;31598:8;:13;31594:44;;;31620:18;;;;;;;;;;;;;;31594:44;31651:61;31681:1;31685:2;31689:12;31703:8;31651:21;:61::i;:::-;32255:1;17571:2;32226:1;:25;;32225:31;32213:8;:44;32187:18;:22;32206:2;32187:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;18351:3;32656:29;32683:1;32671:8;:13;32656:14;:29::i;:::-;:56;;18088:3;32593:15;:41;;32551:21;32569:2;32551:17;:21::i;:::-;:84;:162;32500:17;:31;32518:12;32500:31;;;;;;;;;;;:213;;;;32730:20;32753:12;32730:35;;32780:11;32809:8;32794:12;:23;32780:37;;32856:1;32838:2;:14;;;:19;32834:635;;32878:313;32934:12;32930:2;32909:38;;32926:1;32909:38;;;;;;;;;;;;32975:69;33014:1;33018:2;33022:14;;;;;;33038:5;32975:30;:69::i;:::-;32970:174;;33080:40;;;;;;;;;;;;;;32970:174;33186:3;33171:12;:18;32878:313;;33272:12;33255:13;;:29;33251:43;;33286:8;;;33251:43;32834:635;;;33335:119;33391:14;;;;;;33387:2;33366:40;;33383:1;33366:40;;;;;;;;;;;;33449:3;33434:12;:18;33335:119;;32834:635;33499:12;33483:13;:28;;;;31964:1559;;33533:60;33562:1;33566:2;33570:12;33584:8;33533:20;:60::i;:::-;31477:2124;31365:2236;;;:::o;27753:142::-;27811:14;27872:5;27862:15;;27753:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9349:845::-;9452:3;9489:5;9483:12;9518:36;9544:9;9518:36;:::i;:::-;9570:89;9652:6;9647:3;9570:89;:::i;:::-;9563:96;;9690:1;9679:9;9675:17;9706:1;9701:137;;;;9852:1;9847:341;;;;9668:520;;9701:137;9785:4;9781:9;9770;9766:25;9761:3;9754:38;9821:6;9816:3;9812:16;9805:23;;9701:137;;9847:341;9914:38;9946:5;9914:38;:::i;:::-;9974:1;9988:154;10002:6;9999:1;9996:13;9988:154;;;10076:7;10070:14;10066:1;10061:3;10057:11;10050:35;10126:1;10117:7;10113:15;10102:26;;10024:4;10021:1;10017:12;10012:17;;9988:154;;;10171:6;10166:3;10162:16;10155:23;;9854:334;;9668:520;;9456:738;;9349:845;;;;:::o;10200:366::-;10342:3;10363:67;10427:2;10422:3;10363:67;:::i;:::-;10356:74;;10439:93;10528:3;10439:93;:::i;:::-;10557:2;10552:3;10548:12;10541:19;;10200:366;;;:::o;10572:::-;10714:3;10735:67;10799:2;10794:3;10735:67;:::i;:::-;10728:74;;10811:93;10900:3;10811:93;:::i;:::-;10929:2;10924:3;10920:12;10913:19;;10572:366;;;:::o;10944:::-;11086:3;11107:67;11171:2;11166:3;11107:67;:::i;:::-;11100:74;;11183:93;11272:3;11183:93;:::i;:::-;11301:2;11296:3;11292:12;11285:19;;10944:366;;;:::o;11316:::-;11458:3;11479:67;11543:2;11538:3;11479:67;:::i;:::-;11472:74;;11555:93;11644:3;11555:93;:::i;:::-;11673:2;11668:3;11664:12;11657:19;;11316:366;;;:::o;11688:::-;11830:3;11851:67;11915:2;11910:3;11851:67;:::i;:::-;11844:74;;11927:93;12016:3;11927:93;:::i;:::-;12045:2;12040:3;12036:12;12029:19;;11688:366;;;:::o;12060:::-;12202:3;12223:67;12287:2;12282:3;12223:67;:::i;:::-;12216:74;;12299:93;12388:3;12299:93;:::i;:::-;12417:2;12412:3;12408:12;12401:19;;12060:366;;;:::o;12432:398::-;12591:3;12612:83;12693:1;12688:3;12612:83;:::i;:::-;12605:90;;12704:93;12793:3;12704:93;:::i;:::-;12822:1;12817:3;12813:11;12806:18;;12432:398;;;:::o;12836:366::-;12978:3;12999:67;13063:2;13058:3;12999:67;:::i;:::-;12992:74;;13075:93;13164:3;13075:93;:::i;:::-;13193:2;13188:3;13184:12;13177:19;;12836:366;;;:::o;13208:::-;13350:3;13371:67;13435:2;13430:3;13371:67;:::i;:::-;13364:74;;13447:93;13536:3;13447:93;:::i;:::-;13565:2;13560:3;13556:12;13549:19;;13208:366;;;:::o;13580:::-;13722:3;13743:67;13807:2;13802:3;13743:67;:::i;:::-;13736:74;;13819:93;13908:3;13819:93;:::i;:::-;13937:2;13932:3;13928:12;13921:19;;13580:366;;;:::o;13952:::-;14094:3;14115:67;14179:2;14174:3;14115:67;:::i;:::-;14108:74;;14191:93;14280:3;14191:93;:::i;:::-;14309:2;14304:3;14300:12;14293:19;;13952:366;;;:::o;14324:118::-;14411:24;14429:5;14411:24;:::i;:::-;14406:3;14399:37;14324:118;;:::o;14448:589::-;14673:3;14695:95;14786:3;14777:6;14695:95;:::i;:::-;14688:102;;14807:95;14898:3;14889:6;14807:95;:::i;:::-;14800:102;;14919:92;15007:3;14998:6;14919:92;:::i;:::-;14912:99;;15028:3;15021:10;;14448:589;;;;;;:::o;15043:379::-;15227:3;15249:147;15392:3;15249:147;:::i;:::-;15242:154;;15413:3;15406:10;;15043:379;;;:::o;15428:222::-;15521:4;15559:2;15548:9;15544:18;15536:26;;15572:71;15640:1;15629:9;15625:17;15616:6;15572:71;:::i;:::-;15428:222;;;;:::o;15656:640::-;15851:4;15889:3;15878:9;15874:19;15866:27;;15903:71;15971:1;15960:9;15956:17;15947:6;15903:71;:::i;:::-;15984:72;16052:2;16041:9;16037:18;16028:6;15984:72;:::i;:::-;16066;16134:2;16123:9;16119:18;16110:6;16066:72;:::i;:::-;16185:9;16179:4;16175:20;16170:2;16159:9;16155:18;16148:48;16213:76;16284:4;16275:6;16213:76;:::i;:::-;16205:84;;15656:640;;;;;;;:::o;16302:210::-;16389:4;16427:2;16416:9;16412:18;16404:26;;16440:65;16502:1;16491:9;16487:17;16478:6;16440:65;:::i;:::-;16302:210;;;;:::o;16518:313::-;16631:4;16669:2;16658:9;16654:18;16646:26;;16718:9;16712:4;16708:20;16704:1;16693:9;16689:17;16682:47;16746:78;16819:4;16810:6;16746:78;:::i;:::-;16738:86;;16518:313;;;;:::o;16837:419::-;17003:4;17041:2;17030:9;17026:18;17018:26;;17090:9;17084:4;17080:20;17076:1;17065:9;17061:17;17054:47;17118:131;17244:4;17118:131;:::i;:::-;17110:139;;16837:419;;;:::o;17262:::-;17428:4;17466:2;17455:9;17451:18;17443:26;;17515:9;17509:4;17505:20;17501:1;17490:9;17486:17;17479:47;17543:131;17669:4;17543:131;:::i;:::-;17535:139;;17262:419;;;:::o;17687:::-;17853:4;17891:2;17880:9;17876:18;17868:26;;17940:9;17934:4;17930:20;17926:1;17915:9;17911:17;17904:47;17968:131;18094:4;17968:131;:::i;:::-;17960:139;;17687:419;;;:::o;18112:::-;18278:4;18316:2;18305:9;18301:18;18293:26;;18365:9;18359:4;18355:20;18351:1;18340:9;18336:17;18329:47;18393:131;18519:4;18393:131;:::i;:::-;18385:139;;18112:419;;;:::o;18537:::-;18703:4;18741:2;18730:9;18726:18;18718:26;;18790:9;18784:4;18780:20;18776:1;18765:9;18761:17;18754:47;18818:131;18944:4;18818:131;:::i;:::-;18810:139;;18537:419;;;:::o;18962:::-;19128:4;19166:2;19155:9;19151:18;19143:26;;19215:9;19209:4;19205:20;19201:1;19190:9;19186:17;19179:47;19243:131;19369:4;19243:131;:::i;:::-;19235:139;;18962:419;;;:::o;19387:::-;19553:4;19591:2;19580:9;19576:18;19568:26;;19640:9;19634:4;19630:20;19626:1;19615:9;19611:17;19604:47;19668:131;19794:4;19668:131;:::i;:::-;19660:139;;19387:419;;;:::o;19812:::-;19978:4;20016:2;20005:9;20001:18;19993:26;;20065:9;20059:4;20055:20;20051:1;20040:9;20036:17;20029:47;20093:131;20219:4;20093:131;:::i;:::-;20085:139;;19812:419;;;:::o;20237:::-;20403:4;20441:2;20430:9;20426:18;20418:26;;20490:9;20484:4;20480:20;20476:1;20465:9;20461:17;20454:47;20518:131;20644:4;20518:131;:::i;:::-;20510:139;;20237:419;;;:::o;20662:::-;20828:4;20866:2;20855:9;20851:18;20843:26;;20915:9;20909:4;20905:20;20901:1;20890:9;20886:17;20879:47;20943:131;21069:4;20943:131;:::i;:::-;20935:139;;20662:419;;;:::o;21087:222::-;21180:4;21218:2;21207:9;21203:18;21195:26;;21231:71;21299:1;21288:9;21284:17;21275:6;21231:71;:::i;:::-;21087:222;;;;:::o;21315:129::-;21349:6;21376:20;;:::i;:::-;21366:30;;21405:33;21433:4;21425:6;21405:33;:::i;:::-;21315:129;;;:::o;21450:75::-;21483:6;21516:2;21510:9;21500:19;;21450:75;:::o;21531:307::-;21592:4;21682:18;21674:6;21671:30;21668:56;;;21704:18;;:::i;:::-;21668:56;21742:29;21764:6;21742:29;:::i;:::-;21734:37;;21826:4;21820;21816:15;21808:23;;21531:307;;;:::o;21844:308::-;21906:4;21996:18;21988:6;21985:30;21982:56;;;22018:18;;:::i;:::-;21982:56;22056:29;22078:6;22056:29;:::i;:::-;22048:37;;22140:4;22134;22130:15;22122:23;;21844:308;;;:::o;22158:141::-;22207:4;22230:3;22222:11;;22253:3;22250:1;22243:14;22287:4;22284:1;22274:18;22266:26;;22158:141;;;:::o;22305:98::-;22356:6;22390:5;22384:12;22374:22;;22305:98;;;:::o;22409:99::-;22461:6;22495:5;22489:12;22479:22;;22409:99;;;:::o;22514:168::-;22597:11;22631:6;22626:3;22619:19;22671:4;22666:3;22662:14;22647:29;;22514:168;;;;:::o;22688:147::-;22789:11;22826:3;22811:18;;22688:147;;;;:::o;22841:169::-;22925:11;22959:6;22954:3;22947:19;22999:4;22994:3;22990:14;22975:29;;22841:169;;;;:::o;23016:148::-;23118:11;23155:3;23140:18;;23016:148;;;;:::o;23170:305::-;23210:3;23229:20;23247:1;23229:20;:::i;:::-;23224:25;;23263:20;23281:1;23263:20;:::i;:::-;23258:25;;23417:1;23349:66;23345:74;23342:1;23339:81;23336:107;;;23423:18;;:::i;:::-;23336:107;23467:1;23464;23460:9;23453:16;;23170:305;;;;:::o;23481:185::-;23521:1;23538:20;23556:1;23538:20;:::i;:::-;23533:25;;23572:20;23590:1;23572:20;:::i;:::-;23567:25;;23611:1;23601:35;;23616:18;;:::i;:::-;23601:35;23658:1;23655;23651:9;23646:14;;23481:185;;;;:::o;23672:348::-;23712:7;23735:20;23753:1;23735:20;:::i;:::-;23730:25;;23769:20;23787:1;23769:20;:::i;:::-;23764:25;;23957:1;23889:66;23885:74;23882:1;23879:81;23874:1;23867:9;23860:17;23856:105;23853:131;;;23964:18;;:::i;:::-;23853:131;24012:1;24009;24005:9;23994:20;;23672:348;;;;:::o;24026:191::-;24066:4;24086:20;24104:1;24086:20;:::i;:::-;24081:25;;24120:20;24138:1;24120:20;:::i;:::-;24115:25;;24159:1;24156;24153:8;24150:34;;;24164:18;;:::i;:::-;24150:34;24209:1;24206;24202:9;24194:17;;24026:191;;;;:::o;24223:96::-;24260:7;24289:24;24307:5;24289:24;:::i;:::-;24278:35;;24223:96;;;:::o;24325:90::-;24359:7;24402:5;24395:13;24388:21;24377:32;;24325:90;;;:::o;24421:149::-;24457:7;24497:66;24490:5;24486:78;24475:89;;24421:149;;;:::o;24576:126::-;24613:7;24653:42;24646:5;24642:54;24631:65;;24576:126;;;:::o;24708:77::-;24745:7;24774:5;24763:16;;24708:77;;;:::o;24791:154::-;24875:6;24870:3;24865;24852:30;24937:1;24928:6;24923:3;24919:16;24912:27;24791:154;;;:::o;24951:307::-;25019:1;25029:113;25043:6;25040:1;25037:13;25029:113;;;25128:1;25123:3;25119:11;25113:18;25109:1;25104:3;25100:11;25093:39;25065:2;25062:1;25058:10;25053:15;;25029:113;;;25160:6;25157:1;25154:13;25151:101;;;25240:1;25231:6;25226:3;25222:16;25215:27;25151:101;25000:258;24951:307;;;:::o;25264:320::-;25308:6;25345:1;25339:4;25335:12;25325:22;;25392:1;25386:4;25382:12;25413:18;25403:81;;25469:4;25461:6;25457:17;25447:27;;25403:81;25531:2;25523:6;25520:14;25500:18;25497:38;25494:84;;;25550:18;;:::i;:::-;25494:84;25315:269;25264:320;;;:::o;25590:281::-;25673:27;25695:4;25673:27;:::i;:::-;25665:6;25661:40;25803:6;25791:10;25788:22;25767:18;25755:10;25752:34;25749:62;25746:88;;;25814:18;;:::i;:::-;25746:88;25854:10;25850:2;25843:22;25633:238;25590:281;;:::o;25877:233::-;25916:3;25939:24;25957:5;25939:24;:::i;:::-;25930:33;;25985:66;25978:5;25975:77;25972:103;;;26055:18;;:::i;:::-;25972:103;26102:1;26095:5;26091:13;26084:20;;25877:233;;;:::o;26116:176::-;26148:1;26165:20;26183:1;26165:20;:::i;:::-;26160:25;;26199:20;26217:1;26199:20;:::i;:::-;26194:25;;26238:1;26228:35;;26243:18;;:::i;:::-;26228:35;26284:1;26281;26277:9;26272:14;;26116:176;;;;:::o;26298:180::-;26346:77;26343:1;26336:88;26443:4;26440:1;26433:15;26467:4;26464:1;26457:15;26484:180;26532:77;26529:1;26522:88;26629:4;26626:1;26619:15;26653:4;26650:1;26643:15;26670:180;26718:77;26715:1;26708:88;26815:4;26812:1;26805:15;26839:4;26836:1;26829:15;26856:180;26904:77;26901:1;26894:88;27001:4;26998:1;26991:15;27025:4;27022:1;27015:15;27042:180;27090:77;27087:1;27080:88;27187:4;27184:1;27177:15;27211:4;27208:1;27201:15;27228:117;27337:1;27334;27327:12;27351:117;27460:1;27457;27450:12;27474:117;27583:1;27580;27573:12;27597:117;27706:1;27703;27696:12;27720:102;27761:6;27812:2;27808:7;27803:2;27796:5;27792:14;27788:28;27778:38;;27720:102;;;:::o;27828:235::-;27968:34;27964:1;27956:6;27952:14;27945:58;28037:18;28032:2;28024:6;28020:15;28013:43;27828:235;:::o;28069:181::-;28209:33;28205:1;28197:6;28193:14;28186:57;28069:181;:::o;28256:225::-;28396:34;28392:1;28384:6;28380:14;28373:58;28465:8;28460:2;28452:6;28448:15;28441:33;28256:225;:::o;28487:177::-;28627:29;28623:1;28615:6;28611:14;28604:53;28487:177;:::o;28670:172::-;28810:24;28806:1;28798:6;28794:14;28787:48;28670:172;:::o;28848:182::-;28988:34;28984:1;28976:6;28972:14;28965:58;28848:182;:::o;29036:114::-;;:::o;29156:172::-;29296:24;29292:1;29284:6;29280:14;29273:48;29156:172;:::o;29334:164::-;29474:16;29470:1;29462:6;29458:14;29451:40;29334:164;:::o;29504:181::-;29644:33;29640:1;29632:6;29628:14;29621:57;29504:181;:::o;29691:177::-;29831:29;29827:1;29819:6;29815:14;29808:53;29691:177;:::o;29874:122::-;29947:24;29965:5;29947:24;:::i;:::-;29940:5;29937:35;29927:63;;29986:1;29983;29976:12;29927:63;29874:122;:::o;30002:116::-;30072:21;30087:5;30072:21;:::i;:::-;30065:5;30062:32;30052:60;;30108:1;30105;30098:12;30052:60;30002:116;:::o;30124:120::-;30196:23;30213:5;30196:23;:::i;:::-;30189:5;30186:34;30176:62;;30234:1;30231;30224:12;30176:62;30124:120;:::o;30250:122::-;30323:24;30341:5;30323:24;:::i;:::-;30316:5;30313:35;30303:63;;30362:1;30359;30352:12;30303:63;30250:122;:::o

Swarm Source

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