ETH Price: $3,100.57 (-0.35%)
Gas: 2 Gwei

Token

PocketPals Office (Pocket)
 

Overview

Max Total Supply

3,275 Pocket

Holders

874

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 Pocket
0xec12e0c8cab703aac87e587b7b627af02b219025
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:
PocketPals

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

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

// 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 (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
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();

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` 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);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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`
    // - [232..255] `extraData`
    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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 auxiliary 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 auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

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

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev 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;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // 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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // 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++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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.
                // The ASCII index of the '0' character is 48.
                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: pal.sol



/**
  _____   ____   _____ _  ________ _______ _____        _       _____ 
 |  __ \ / __ \ / ____| |/ /  ____|__   __|  __ \ /\   | |     / ____|
 | |__) | |  | | |    | ' /| |__     | |  | |__) /  \  | |    | (___  
 |  ___/| |  | | |    |  < |  __|    | |  |  ___/ /\ \ | |     \___ \ 
 | |    | |__| | |____| . \| |____   | |  | |  / ____ \| |____ ____) |
 |_|     \____/ \_____|_|\_\______|  |_|  |_| /_/    \_\______|_____/ 
                                                                      
                                                                      

                             _   _ _____  
     /\   | \ | |  __ \ 
    /  \  |  \| | |  | |
   / /\ \ | . ` | |  | |
  / ____ \| |\  | |__| |
 /_/    \_\_| \_|_____/ 
                        
                        

    _  _____        _       _____ 
  | ||  __ \ /\   | |     / ____|
 / __) |__) /  \  | |    | (___  
 \__ \  ___/ /\ \ | |     \___ \ 
 (   / |  / ____ \| |____ ____) |
  |_||_| /_/    \_\______|_____/ 
                                 
                                                        
                                                                                                                                               
                                                                                                                                               
*/


pragma solidity >=0.7.0 <0.9.0;





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

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.005 ether;
  uint256 public maxSupply = 10000;
  uint256 public FreeSupply = 8000;
  uint256 public MaxperWallet = 10;
  uint256 public MaxperWalletFree = 2;
  bool public paused = false;
  bool public revealed = true;

  constructor(
    string memory _initBaseURI,
    string memory _notRevealedUri
  ) ERC721A("PocketPals Office", "Pocket") {  
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_notRevealedUri);
  }

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

  // public
  /// @dev Public mint 
  function mint(uint256 tokens) public payable nonReentrant {
    require(!paused, "oops contract is paused");
    require(tokens <= MaxperWallet, "max mint amount per tx exceeded");
    require(totalSupply() + tokens <= maxSupply, "We Soldout");
    require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWallet, "Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "insufficient funds");

      _safeMint(_msgSenderERC721A(), tokens);
  }
  
/// @dev free mint
    function freemint(uint256 tokens) public nonReentrant {
    require(!paused, "oops contract is paused");
    require(_numberMinted(_msgSenderERC721A()) + tokens <= MaxperWalletFree, "Max NFT Per Wallet exceeded");
    require(tokens <= MaxperWalletFree, "max free mint per Tx exceeded");
    require(totalSupply() + tokens <= FreeSupply, "Whitelist MaxSupply exceeded");

      _safeMint(_msgSenderERC721A(), tokens);
    
  }

  /// @dev use it for giveaway and team mint
     function airdrop(uint256 _mintAmount, address destination) public onlyOwner nonReentrant {
    require(totalSupply() + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
  }

/// @notice returns metadata link of tokenid
  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))
        : "";
  }

     /// @notice return the number minted by an address
    function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    /// @notice return the tokens owned by an address
      function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }

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

  /// @dev change the public max per wallet
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

  /// @dev change the free max per wallet
    function setFreeMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWalletFree = _limit;
  }

   /// @dev change the public price(amount need to be in wei)
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  /// @dev cut the supply if we dont sold out
    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }

 /// @dev cut the free supply
    function setFreesupply(uint256 _newsupply) public onlyOwner {
    FreeSupply = _newsupply;
  }

 /// @dev set your baseuri
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  /// @dev set base extension(default is .json)
  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

   /// @dev set hidden uri
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

 /// @dev to pause and unpause your contract(use booleans true or false)
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  /// @dev withdraw funds from contract
  function withdraw() public payable onlyOwner nonReentrant {
      uint256 balance = address(this).balance;
      payable(_msgSenderERC721A()).transfer(balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":[],"name":"FreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"freemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"_limit","type":"uint256"}],"name":"setFreeMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setFreesupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","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":"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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90816200004a919062000625565b506611c37937e08000600d55612710600e55611f40600f55600a60105560026011556000601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff021916908315150217905550348015620000af57600080fd5b50604051620047ee380380620047ee8339818101604052810190620000d591906200087a565b6040518060400160405280601181526020017f506f636b657450616c73204f66666963650000000000000000000000000000008152506040518060400160405280600681526020017f506f636b65740000000000000000000000000000000000000000000000000000815250816002908162000152919062000625565b50806003908162000164919062000625565b5062000175620001cf60201b60201c565b60008190555050506200019d62000191620001d860201b60201c565b620001e060201b60201c565b6001600981905550620001b682620002a660201b60201c565b620001c781620002cb60201b60201c565b505062000982565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002b6620002f060201b60201c565b80600a9081620002c7919062000625565b5050565b620002db620002f060201b60201c565b80600c9081620002ec919062000625565b5050565b62000300620001d860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003266200038160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200037f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003769062000960565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200042d57607f821691505b602082108103620004435762000442620003e5565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004ad7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200046e565b620004b986836200046e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200050662000500620004fa84620004d1565b620004db565b620004d1565b9050919050565b6000819050919050565b6200052283620004e5565b6200053a62000531826200050d565b8484546200047b565b825550505050565b600090565b6200055162000542565b6200055e81848462000517565b505050565b5b8181101562000586576200057a60008262000547565b60018101905062000564565b5050565b601f821115620005d5576200059f8162000449565b620005aa846200045e565b81016020851015620005ba578190505b620005d2620005c9856200045e565b83018262000563565b50505b505050565b600082821c905092915050565b6000620005fa60001984600802620005da565b1980831691505092915050565b6000620006158383620005e7565b9150826002028217905092915050565b6200063082620003ab565b67ffffffffffffffff8111156200064c576200064b620003b6565b5b62000658825462000414565b620006658282856200058a565b600060209050601f8311600181146200069d576000841562000688578287015190505b62000694858262000607565b86555062000704565b601f198416620006ad8662000449565b60005b82811015620006d757848901518255600182019150602085019450602081019050620006b0565b86831015620006f75784890151620006f3601f891682620005e7565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b62000746826200072a565b810181811067ffffffffffffffff82111715620007685762000767620003b6565b5b80604052505050565b60006200077d6200070c565b90506200078b82826200073b565b919050565b600067ffffffffffffffff821115620007ae57620007ad620003b6565b5b620007b9826200072a565b9050602081019050919050565b60005b83811015620007e6578082015181840152602081019050620007c9565b83811115620007f6576000848401525b50505050565b6000620008136200080d8462000790565b62000771565b90508281526020810184848401111562000832576200083162000725565b5b6200083f848285620007c6565b509392505050565b600082601f8301126200085f576200085e62000720565b5b815162000871848260208601620007fc565b91505092915050565b6000806040838503121562000894576200089362000716565b5b600083015167ffffffffffffffff811115620008b557620008b46200071b565b5b620008c38582860162000847565b925050602083015167ffffffffffffffff811115620008e757620008e66200071b565b5b620008f58582860162000847565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000948602083620008ff565b9150620009558262000910565b602082019050919050565b600060208201905081810360008301526200097b8162000939565b9050919050565b613e5c80620009926000396000f3fe60806040526004361061025c5760003560e01c80636c0360eb11610144578063bd7a1998116100b6578063dc33e6811161007a578063dc33e681146108a4578063e1cf8baa146108e1578063e268e4d31461090a578063e985e9c514610933578063f2c4ce1e14610970578063f2fde38b146109995761025c565b8063bd7a1998146107bd578063c6682862146107e8578063c87b56dd14610813578063d5abeb0114610850578063da3ef23f1461087b5761025c565b8063940cd05b11610108578063940cd05b146106d257806395d89b41146106fb578063a0712d6814610726578063a22cb46514610742578063b88d4fde1461076b578063bc63f02e146107945761025c565b80636c0360eb146105eb57806370a0823114610616578063715018a6146106535780638462151c1461066a5780638da5cb5b146106a75761025c565b806323b872dd116101dd57806350839bef116101a157806350839bef146104d9578063518302271461050457806355f804b31461052f5780635c975abb14610558578063624208ae146105835780636352211e146105ae5761025c565b806323b872dd1461042b578063351de26e146104545780633ccfd60b1461047d57806342842e0e1461048757806344a0d68a146104b05761025c565b8063095ea7b311610224578063095ea7b31461035a5780630fbe4fe21461038357806313faede6146103ac578063149835a0146103d757806318160ddd146104005761025c565b806301ffc9a71461026157806302329a291461029e57806306fdde03146102c7578063081812fc146102f2578063081c8c441461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612a70565b6109c2565b6040516102959190612ab8565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190612aff565b610a54565b005b3480156102d357600080fd5b506102dc610a79565b6040516102e99190612bc5565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190612c1d565b610b0b565b6040516103269190612c8b565b60405180910390f35b34801561033b57600080fd5b50610344610b8a565b6040516103519190612bc5565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190612cd2565b610c18565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190612c1d565b610d5c565b005b3480156103b857600080fd5b506103c1610f10565b6040516103ce9190612d21565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190612c1d565b610f16565b005b34801561040c57600080fd5b50610415610f28565b6040516104229190612d21565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190612d3c565b610f3f565b005b34801561046057600080fd5b5061047b60048036038101906104769190612c1d565b611261565b005b610485611273565b005b34801561049357600080fd5b506104ae60048036038101906104a99190612d3c565b611326565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190612c1d565b611346565b005b3480156104e557600080fd5b506104ee611358565b6040516104fb9190612d21565b60405180910390f35b34801561051057600080fd5b5061051961135e565b6040516105269190612ab8565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190612ec4565b611371565b005b34801561056457600080fd5b5061056d61138c565b60405161057a9190612ab8565b60405180910390f35b34801561058f57600080fd5b5061059861139f565b6040516105a59190612d21565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190612c1d565b6113a5565b6040516105e29190612c8b565b60405180910390f35b3480156105f757600080fd5b506106006113b7565b60405161060d9190612bc5565b60405180910390f35b34801561062257600080fd5b5061063d60048036038101906106389190612f0d565b611445565b60405161064a9190612d21565b60405180910390f35b34801561065f57600080fd5b506106686114fd565b005b34801561067657600080fd5b50610691600480360381019061068c9190612f0d565b611511565b60405161069e9190612ff8565b60405180910390f35b3480156106b357600080fd5b506106bc611654565b6040516106c99190612c8b565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f49190612aff565b61167e565b005b34801561070757600080fd5b506107106116a3565b60405161071d9190612bc5565b60405180910390f35b610740600480360381019061073b9190612c1d565b611735565b005b34801561074e57600080fd5b506107696004803603810190610764919061301a565b611939565b005b34801561077757600080fd5b50610792600480360381019061078d91906130fb565b611ab0565b005b3480156107a057600080fd5b506107bb60048036038101906107b6919061317e565b611b23565b005b3480156107c957600080fd5b506107d2611be5565b6040516107df9190612d21565b60405180910390f35b3480156107f457600080fd5b506107fd611beb565b60405161080a9190612bc5565b60405180910390f35b34801561081f57600080fd5b5061083a60048036038101906108359190612c1d565b611c79565b6040516108479190612bc5565b60405180910390f35b34801561085c57600080fd5b50610865611dd1565b6040516108729190612d21565b60405180910390f35b34801561088757600080fd5b506108a2600480360381019061089d9190612ec4565b611dd7565b005b3480156108b057600080fd5b506108cb60048036038101906108c69190612f0d565b611df2565b6040516108d89190612d21565b60405180910390f35b3480156108ed57600080fd5b5061090860048036038101906109039190612c1d565b611e04565b005b34801561091657600080fd5b50610931600480360381019061092c9190612c1d565b611e16565b005b34801561093f57600080fd5b5061095a600480360381019061095591906131be565b611e28565b6040516109679190612ab8565b60405180910390f35b34801561097c57600080fd5b5061099760048036038101906109929190612ec4565b611ebc565b005b3480156109a557600080fd5b506109c060048036038101906109bb9190612f0d565b611ed7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a5c611f5a565b80601260006101000a81548160ff02191690831515021790555050565b606060028054610a889061322d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab49061322d565b8015610b015780601f10610ad657610100808354040283529160200191610b01565b820191906000526020600020905b815481529060010190602001808311610ae457829003601f168201915b5050505050905090565b6000610b1682611fd8565b610b4c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610b979061322d565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc39061322d565b8015610c105780601f10610be557610100808354040283529160200191610c10565b820191906000526020600020905b815481529060010190602001808311610bf357829003601f168201915b505050505081565b6000610c23826113a5565b90508073ffffffffffffffffffffffffffffffffffffffff16610c44612037565b73ffffffffffffffffffffffffffffffffffffffff1614610ca757610c7081610c6b612037565b611e28565b610ca6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600260095403610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d98906132aa565b60405180910390fd5b6002600981905550601260009054906101000a900460ff1615610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df090613316565b60405180910390fd5b60115481610e0d610e08612037565b61203f565b610e179190613365565b1115610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90613407565b60405180910390fd5b601154811115610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490613473565b60405180910390fd5b600f5481610ea9610f28565b610eb39190613365565b1115610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb906134df565b60405180910390fd5b610f05610eff612037565b82612096565b600160098190555050565b600d5481565b610f1e611f5a565b80600e8190555050565b6000610f326120b4565b6001546000540303905090565b6000610f4a826120bd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fb1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610fbd84612189565b91509150610fd38187610fce612037565b6121b0565b61101f57610fe886610fe3612037565b611e28565b61101e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611085576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61109286868660016121f4565b801561109d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061116b856111478888876121fa565b7c020000000000000000000000000000000000000000000000000000000017612222565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111f157600060018501905060006004600083815260200190815260200160002054036111ef5760005481146111ee578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611259868686600161224d565b505050505050565b611269611f5a565b8060118190555050565b61127b611f5a565b6002600954036112c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b7906132aa565b60405180910390fd5b600260098190555060004790506112d5612037565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561131a573d6000803e3d6000fd5b50506001600981905550565b61134183838360405180602001604052806000815250611ab0565b505050565b61134e611f5a565b80600d8190555050565b600f5481565b601260019054906101000a900460ff1681565b611379611f5a565b80600a908161138891906136ab565b5050565b601260009054906101000a900460ff1681565b60115481565b60006113b0826120bd565b9050919050565b600a80546113c49061322d565b80601f01602080910402602001604051908101604052809291908181526020018280546113f09061322d565b801561143d5780601f106114125761010080835404028352916020019161143d565b820191906000526020600020905b81548152906001019060200180831161142057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ac576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611505611f5a565b61150f6000612253565b565b6060600080600061152185611445565b905060008167ffffffffffffffff81111561153f5761153e612d99565b5b60405190808252806020026020018201604052801561156d5781602001602082028036833780820191505090505b5090506115786129b5565b60006115826120b4565b90505b8386146116465761159581612319565b9150816040015161163b57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146115e057816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361163a578083878060010198508151811061162d5761162c61377d565b5b6020026020010181815250505b5b806001019050611585565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611686611f5a565b80601260016101000a81548160ff02191690831515021790555050565b6060600380546116b29061322d565b80601f01602080910402602001604051908101604052809291908181526020018280546116de9061322d565b801561172b5780601f106117005761010080835404028352916020019161172b565b820191906000526020600020905b81548152906001019060200180831161170e57829003601f168201915b5050505050905090565b60026009540361177a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611771906132aa565b60405180910390fd5b6002600981905550601260009054906101000a900460ff16156117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990613316565b60405180910390fd5b601054811115611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e906137f8565b60405180910390fd5b600e5481611823610f28565b61182d9190613365565b111561186e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186590613864565b60405180910390fd5b6010548161188261187d612037565b61203f565b61188c9190613365565b11156118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c490613407565b60405180910390fd5b80600d546118db9190613884565b34101561191d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119149061392a565b60405180910390fd5b61192e611928612037565b82612096565b600160098190555050565b611941612037565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119a5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119b2612037565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5f612037565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aa49190612ab8565b60405180910390a35050565b611abb848484610f3f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b1d57611ae684848484612344565b611b1c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611b2b611f5a565b600260095403611b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b67906132aa565b60405180910390fd5b6002600981905550600e5482611b84610f28565b611b8e9190613365565b1115611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc690613996565b60405180910390fd5b611bd98183612096565b60016009819055505050565b60105481565b600b8054611bf89061322d565b80601f0160208091040260200160405190810160405280929190818152602001828054611c249061322d565b8015611c715780601f10611c4657610100808354040283529160200191611c71565b820191906000526020600020905b815481529060010190602001808311611c5457829003601f168201915b505050505081565b6060611c8482611fd8565b611cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cba90613a28565b60405180910390fd5b60001515601260019054906101000a900460ff16151503611d7057600c8054611ceb9061322d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d179061322d565b8015611d645780601f10611d3957610100808354040283529160200191611d64565b820191906000526020600020905b815481529060010190602001808311611d4757829003601f168201915b50505050509050611dcc565b6000611d7a612494565b90506000815111611d9a5760405180602001604052806000815250611dc8565b80611da484612526565b600b604051602001611db893929190613b07565b6040516020818303038152906040525b9150505b919050565b600e5481565b611ddf611f5a565b80600b9081611dee91906136ab565b5050565b6000611dfd8261203f565b9050919050565b611e0c611f5a565b80600f8190555050565b611e1e611f5a565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ec4611f5a565b80600c9081611ed391906136ab565b5050565b611edf611f5a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4590613baa565b60405180910390fd5b611f5781612253565b50565b611f62612686565b73ffffffffffffffffffffffffffffffffffffffff16611f80611654565b73ffffffffffffffffffffffffffffffffffffffff1614611fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcd90613c16565b60405180910390fd5b565b600081611fe36120b4565b11158015611ff2575060005482105b8015612030575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6120b082826040518060200160405280600081525061268e565b5050565b60006001905090565b600080829050806120cc6120b4565b11612152576000548110156121515760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361214f575b6000810361214557600460008360019003935083815260200190815260200160002054905061211b565b8092505050612184565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861221186868461272b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123216129b5565b61233d6004600084815260200190815260200160002054612734565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261236a612037565b8786866040518563ffffffff1660e01b815260040161238c9493929190613c8b565b6020604051808303816000875af19250505080156123c857506040513d601f19601f820116820180604052508101906123c59190613cec565b60015b612441573d80600081146123f8576040519150601f19603f3d011682016040523d82523d6000602084013e6123fd565b606091505b506000815103612439576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546124a39061322d565b80601f01602080910402602001604051908101604052809291908181526020018280546124cf9061322d565b801561251c5780601f106124f15761010080835404028352916020019161251c565b820191906000526020600020905b8154815290600101906020018083116124ff57829003601f168201915b5050505050905090565b60606000820361256d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612681565b600082905060005b6000821461259f57808061258890613d19565b915050600a826125989190613d90565b9150612575565b60008167ffffffffffffffff8111156125bb576125ba612d99565b5b6040519080825280601f01601f1916602001820160405280156125ed5781602001600182028036833780820191505090505b5090505b6000851461267a576001826126069190613dc1565b9150600a856126159190613df5565b60306126219190613365565b60f81b8183815181106126375761263661377d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126739190613d90565b94506125f1565b8093505050505b919050565b600033905090565b61269883836127ea565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461272657600080549050600083820390505b6126d86000868380600101945086612344565b61270e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106126c557816000541461272357600080fd5b50505b505050565b60009392505050565b61273c6129b5565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6000805490506000820361282a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61283760008483856121f4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128ae8361289f60008660006121fa565b6128a8856129a5565b17612222565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461294f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612914565b506000820361298a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506129a0600084838561224d565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a4d81612a18565b8114612a5857600080fd5b50565b600081359050612a6a81612a44565b92915050565b600060208284031215612a8657612a85612a0e565b5b6000612a9484828501612a5b565b91505092915050565b60008115159050919050565b612ab281612a9d565b82525050565b6000602082019050612acd6000830184612aa9565b92915050565b612adc81612a9d565b8114612ae757600080fd5b50565b600081359050612af981612ad3565b92915050565b600060208284031215612b1557612b14612a0e565b5b6000612b2384828501612aea565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b66578082015181840152602081019050612b4b565b83811115612b75576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b9782612b2c565b612ba18185612b37565b9350612bb1818560208601612b48565b612bba81612b7b565b840191505092915050565b60006020820190508181036000830152612bdf8184612b8c565b905092915050565b6000819050919050565b612bfa81612be7565b8114612c0557600080fd5b50565b600081359050612c1781612bf1565b92915050565b600060208284031215612c3357612c32612a0e565b5b6000612c4184828501612c08565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c7582612c4a565b9050919050565b612c8581612c6a565b82525050565b6000602082019050612ca06000830184612c7c565b92915050565b612caf81612c6a565b8114612cba57600080fd5b50565b600081359050612ccc81612ca6565b92915050565b60008060408385031215612ce957612ce8612a0e565b5b6000612cf785828601612cbd565b9250506020612d0885828601612c08565b9150509250929050565b612d1b81612be7565b82525050565b6000602082019050612d366000830184612d12565b92915050565b600080600060608486031215612d5557612d54612a0e565b5b6000612d6386828701612cbd565b9350506020612d7486828701612cbd565b9250506040612d8586828701612c08565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612dd182612b7b565b810181811067ffffffffffffffff82111715612df057612def612d99565b5b80604052505050565b6000612e03612a04565b9050612e0f8282612dc8565b919050565b600067ffffffffffffffff821115612e2f57612e2e612d99565b5b612e3882612b7b565b9050602081019050919050565b82818337600083830152505050565b6000612e67612e6284612e14565b612df9565b905082815260208101848484011115612e8357612e82612d94565b5b612e8e848285612e45565b509392505050565b600082601f830112612eab57612eaa612d8f565b5b8135612ebb848260208601612e54565b91505092915050565b600060208284031215612eda57612ed9612a0e565b5b600082013567ffffffffffffffff811115612ef857612ef7612a13565b5b612f0484828501612e96565b91505092915050565b600060208284031215612f2357612f22612a0e565b5b6000612f3184828501612cbd565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f6f81612be7565b82525050565b6000612f818383612f66565b60208301905092915050565b6000602082019050919050565b6000612fa582612f3a565b612faf8185612f45565b9350612fba83612f56565b8060005b83811015612feb578151612fd28882612f75565b9750612fdd83612f8d565b925050600181019050612fbe565b5085935050505092915050565b600060208201905081810360008301526130128184612f9a565b905092915050565b6000806040838503121561303157613030612a0e565b5b600061303f85828601612cbd565b925050602061305085828601612aea565b9150509250929050565b600067ffffffffffffffff82111561307557613074612d99565b5b61307e82612b7b565b9050602081019050919050565b600061309e6130998461305a565b612df9565b9050828152602081018484840111156130ba576130b9612d94565b5b6130c5848285612e45565b509392505050565b600082601f8301126130e2576130e1612d8f565b5b81356130f284826020860161308b565b91505092915050565b6000806000806080858703121561311557613114612a0e565b5b600061312387828801612cbd565b945050602061313487828801612cbd565b935050604061314587828801612c08565b925050606085013567ffffffffffffffff81111561316657613165612a13565b5b613172878288016130cd565b91505092959194509250565b6000806040838503121561319557613194612a0e565b5b60006131a385828601612c08565b92505060206131b485828601612cbd565b9150509250929050565b600080604083850312156131d5576131d4612a0e565b5b60006131e385828601612cbd565b92505060206131f485828601612cbd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061324557607f821691505b602082108103613258576132576131fe565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613294601f83612b37565b915061329f8261325e565b602082019050919050565b600060208201905081810360008301526132c381613287565b9050919050565b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b6000613300601783612b37565b915061330b826132ca565b602082019050919050565b6000602082019050818103600083015261332f816132f3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061337082612be7565b915061337b83612be7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133b0576133af613336565b5b828201905092915050565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b60006133f1601b83612b37565b91506133fc826133bb565b602082019050919050565b60006020820190508181036000830152613420816133e4565b9050919050565b7f6d61782066726565206d696e7420706572205478206578636565646564000000600082015250565b600061345d601d83612b37565b915061346882613427565b602082019050919050565b6000602082019050818103600083015261348c81613450565b9050919050565b7f57686974656c697374204d6178537570706c7920657863656564656400000000600082015250565b60006134c9601c83612b37565b91506134d482613493565b602082019050919050565b600060208201905081810360008301526134f8816134bc565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135617fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613524565b61356b8683613524565b95508019841693508086168417925050509392505050565b6000819050919050565b60006135a86135a361359e84612be7565b613583565b612be7565b9050919050565b6000819050919050565b6135c28361358d565b6135d66135ce826135af565b848454613531565b825550505050565b600090565b6135eb6135de565b6135f68184846135b9565b505050565b5b8181101561361a5761360f6000826135e3565b6001810190506135fc565b5050565b601f82111561365f57613630816134ff565b61363984613514565b81016020851015613648578190505b61365c61365485613514565b8301826135fb565b50505b505050565b600082821c905092915050565b600061368260001984600802613664565b1980831691505092915050565b600061369b8383613671565b9150826002028217905092915050565b6136b482612b2c565b67ffffffffffffffff8111156136cd576136cc612d99565b5b6136d7825461322d565b6136e282828561361e565b600060209050601f8311600181146137155760008415613703578287015190505b61370d858261368f565b865550613775565b601f198416613723866134ff565b60005b8281101561374b57848901518255600182019150602085019450602081019050613726565b868310156137685784890151613764601f891682613671565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b60006137e2601f83612b37565b91506137ed826137ac565b602082019050919050565b60006020820190508181036000830152613811816137d5565b9050919050565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b600061384e600a83612b37565b915061385982613818565b602082019050919050565b6000602082019050818103600083015261387d81613841565b9050919050565b600061388f82612be7565b915061389a83612be7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138d3576138d2613336565b5b828202905092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613914601283612b37565b915061391f826138de565b602082019050919050565b6000602082019050818103600083015261394381613907565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613980601683612b37565b915061398b8261394a565b602082019050919050565b600060208201905081810360008301526139af81613973565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000613a12603083612b37565b9150613a1d826139b6565b604082019050919050565b60006020820190508181036000830152613a4181613a05565b9050919050565b600081905092915050565b6000613a5e82612b2c565b613a688185613a48565b9350613a78818560208601612b48565b80840191505092915050565b60008154613a918161322d565b613a9b8186613a48565b94506001821660008114613ab65760018114613acb57613afe565b60ff1983168652811515820286019350613afe565b613ad4856134ff565b60005b83811015613af657815481890152600182019150602081019050613ad7565b838801955050505b50505092915050565b6000613b138286613a53565b9150613b1f8285613a53565b9150613b2b8284613a84565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b94602683612b37565b9150613b9f82613b38565b604082019050919050565b60006020820190508181036000830152613bc381613b87565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c00602083612b37565b9150613c0b82613bca565b602082019050919050565b60006020820190508181036000830152613c2f81613bf3565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c5d82613c36565b613c678185613c41565b9350613c77818560208601612b48565b613c8081612b7b565b840191505092915050565b6000608082019050613ca06000830187612c7c565b613cad6020830186612c7c565b613cba6040830185612d12565b8181036060830152613ccc8184613c52565b905095945050505050565b600081519050613ce681612a44565b92915050565b600060208284031215613d0257613d01612a0e565b5b6000613d1084828501613cd7565b91505092915050565b6000613d2482612be7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d5657613d55613336565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d9b82612be7565b9150613da683612be7565b925082613db657613db5613d61565b5b828204905092915050565b6000613dcc82612be7565b9150613dd783612be7565b925082821015613dea57613de9613336565b5b828203905092915050565b6000613e0082612be7565b9150613e0b83612be7565b925082613e1b57613e1a613d61565b5b82820690509291505056fea26469706673582212203cac3419f8e3ed473464f6481295ebb0657db6c268e0e6f83adc7374c7a847fa64736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52655342434872376f576475313157697a4176667565706d525865326d344b457a7a6551335154485a6637592f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80636c0360eb11610144578063bd7a1998116100b6578063dc33e6811161007a578063dc33e681146108a4578063e1cf8baa146108e1578063e268e4d31461090a578063e985e9c514610933578063f2c4ce1e14610970578063f2fde38b146109995761025c565b8063bd7a1998146107bd578063c6682862146107e8578063c87b56dd14610813578063d5abeb0114610850578063da3ef23f1461087b5761025c565b8063940cd05b11610108578063940cd05b146106d257806395d89b41146106fb578063a0712d6814610726578063a22cb46514610742578063b88d4fde1461076b578063bc63f02e146107945761025c565b80636c0360eb146105eb57806370a0823114610616578063715018a6146106535780638462151c1461066a5780638da5cb5b146106a75761025c565b806323b872dd116101dd57806350839bef116101a157806350839bef146104d9578063518302271461050457806355f804b31461052f5780635c975abb14610558578063624208ae146105835780636352211e146105ae5761025c565b806323b872dd1461042b578063351de26e146104545780633ccfd60b1461047d57806342842e0e1461048757806344a0d68a146104b05761025c565b8063095ea7b311610224578063095ea7b31461035a5780630fbe4fe21461038357806313faede6146103ac578063149835a0146103d757806318160ddd146104005761025c565b806301ffc9a71461026157806302329a291461029e57806306fdde03146102c7578063081812fc146102f2578063081c8c441461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612a70565b6109c2565b6040516102959190612ab8565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190612aff565b610a54565b005b3480156102d357600080fd5b506102dc610a79565b6040516102e99190612bc5565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190612c1d565b610b0b565b6040516103269190612c8b565b60405180910390f35b34801561033b57600080fd5b50610344610b8a565b6040516103519190612bc5565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190612cd2565b610c18565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190612c1d565b610d5c565b005b3480156103b857600080fd5b506103c1610f10565b6040516103ce9190612d21565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190612c1d565b610f16565b005b34801561040c57600080fd5b50610415610f28565b6040516104229190612d21565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190612d3c565b610f3f565b005b34801561046057600080fd5b5061047b60048036038101906104769190612c1d565b611261565b005b610485611273565b005b34801561049357600080fd5b506104ae60048036038101906104a99190612d3c565b611326565b005b3480156104bc57600080fd5b506104d760048036038101906104d29190612c1d565b611346565b005b3480156104e557600080fd5b506104ee611358565b6040516104fb9190612d21565b60405180910390f35b34801561051057600080fd5b5061051961135e565b6040516105269190612ab8565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190612ec4565b611371565b005b34801561056457600080fd5b5061056d61138c565b60405161057a9190612ab8565b60405180910390f35b34801561058f57600080fd5b5061059861139f565b6040516105a59190612d21565b60405180910390f35b3480156105ba57600080fd5b506105d560048036038101906105d09190612c1d565b6113a5565b6040516105e29190612c8b565b60405180910390f35b3480156105f757600080fd5b506106006113b7565b60405161060d9190612bc5565b60405180910390f35b34801561062257600080fd5b5061063d60048036038101906106389190612f0d565b611445565b60405161064a9190612d21565b60405180910390f35b34801561065f57600080fd5b506106686114fd565b005b34801561067657600080fd5b50610691600480360381019061068c9190612f0d565b611511565b60405161069e9190612ff8565b60405180910390f35b3480156106b357600080fd5b506106bc611654565b6040516106c99190612c8b565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f49190612aff565b61167e565b005b34801561070757600080fd5b506107106116a3565b60405161071d9190612bc5565b60405180910390f35b610740600480360381019061073b9190612c1d565b611735565b005b34801561074e57600080fd5b506107696004803603810190610764919061301a565b611939565b005b34801561077757600080fd5b50610792600480360381019061078d91906130fb565b611ab0565b005b3480156107a057600080fd5b506107bb60048036038101906107b6919061317e565b611b23565b005b3480156107c957600080fd5b506107d2611be5565b6040516107df9190612d21565b60405180910390f35b3480156107f457600080fd5b506107fd611beb565b60405161080a9190612bc5565b60405180910390f35b34801561081f57600080fd5b5061083a60048036038101906108359190612c1d565b611c79565b6040516108479190612bc5565b60405180910390f35b34801561085c57600080fd5b50610865611dd1565b6040516108729190612d21565b60405180910390f35b34801561088757600080fd5b506108a2600480360381019061089d9190612ec4565b611dd7565b005b3480156108b057600080fd5b506108cb60048036038101906108c69190612f0d565b611df2565b6040516108d89190612d21565b60405180910390f35b3480156108ed57600080fd5b5061090860048036038101906109039190612c1d565b611e04565b005b34801561091657600080fd5b50610931600480360381019061092c9190612c1d565b611e16565b005b34801561093f57600080fd5b5061095a600480360381019061095591906131be565b611e28565b6040516109679190612ab8565b60405180910390f35b34801561097c57600080fd5b5061099760048036038101906109929190612ec4565b611ebc565b005b3480156109a557600080fd5b506109c060048036038101906109bb9190612f0d565b611ed7565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a5c611f5a565b80601260006101000a81548160ff02191690831515021790555050565b606060028054610a889061322d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab49061322d565b8015610b015780601f10610ad657610100808354040283529160200191610b01565b820191906000526020600020905b815481529060010190602001808311610ae457829003601f168201915b5050505050905090565b6000610b1682611fd8565b610b4c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610b979061322d565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc39061322d565b8015610c105780601f10610be557610100808354040283529160200191610c10565b820191906000526020600020905b815481529060010190602001808311610bf357829003601f168201915b505050505081565b6000610c23826113a5565b90508073ffffffffffffffffffffffffffffffffffffffff16610c44612037565b73ffffffffffffffffffffffffffffffffffffffff1614610ca757610c7081610c6b612037565b611e28565b610ca6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600260095403610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d98906132aa565b60405180910390fd5b6002600981905550601260009054906101000a900460ff1615610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df090613316565b60405180910390fd5b60115481610e0d610e08612037565b61203f565b610e179190613365565b1115610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90613407565b60405180910390fd5b601154811115610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490613473565b60405180910390fd5b600f5481610ea9610f28565b610eb39190613365565b1115610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb906134df565b60405180910390fd5b610f05610eff612037565b82612096565b600160098190555050565b600d5481565b610f1e611f5a565b80600e8190555050565b6000610f326120b4565b6001546000540303905090565b6000610f4a826120bd565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fb1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610fbd84612189565b91509150610fd38187610fce612037565b6121b0565b61101f57610fe886610fe3612037565b611e28565b61101e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611085576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61109286868660016121f4565b801561109d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061116b856111478888876121fa565b7c020000000000000000000000000000000000000000000000000000000017612222565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111f157600060018501905060006004600083815260200190815260200160002054036111ef5760005481146111ee578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611259868686600161224d565b505050505050565b611269611f5a565b8060118190555050565b61127b611f5a565b6002600954036112c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b7906132aa565b60405180910390fd5b600260098190555060004790506112d5612037565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561131a573d6000803e3d6000fd5b50506001600981905550565b61134183838360405180602001604052806000815250611ab0565b505050565b61134e611f5a565b80600d8190555050565b600f5481565b601260019054906101000a900460ff1681565b611379611f5a565b80600a908161138891906136ab565b5050565b601260009054906101000a900460ff1681565b60115481565b60006113b0826120bd565b9050919050565b600a80546113c49061322d565b80601f01602080910402602001604051908101604052809291908181526020018280546113f09061322d565b801561143d5780601f106114125761010080835404028352916020019161143d565b820191906000526020600020905b81548152906001019060200180831161142057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ac576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611505611f5a565b61150f6000612253565b565b6060600080600061152185611445565b905060008167ffffffffffffffff81111561153f5761153e612d99565b5b60405190808252806020026020018201604052801561156d5781602001602082028036833780820191505090505b5090506115786129b5565b60006115826120b4565b90505b8386146116465761159581612319565b9150816040015161163b57600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146115e057816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361163a578083878060010198508151811061162d5761162c61377d565b5b6020026020010181815250505b5b806001019050611585565b508195505050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611686611f5a565b80601260016101000a81548160ff02191690831515021790555050565b6060600380546116b29061322d565b80601f01602080910402602001604051908101604052809291908181526020018280546116de9061322d565b801561172b5780601f106117005761010080835404028352916020019161172b565b820191906000526020600020905b81548152906001019060200180831161170e57829003601f168201915b5050505050905090565b60026009540361177a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611771906132aa565b60405180910390fd5b6002600981905550601260009054906101000a900460ff16156117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990613316565b60405180910390fd5b601054811115611817576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180e906137f8565b60405180910390fd5b600e5481611823610f28565b61182d9190613365565b111561186e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186590613864565b60405180910390fd5b6010548161188261187d612037565b61203f565b61188c9190613365565b11156118cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c490613407565b60405180910390fd5b80600d546118db9190613884565b34101561191d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119149061392a565b60405180910390fd5b61192e611928612037565b82612096565b600160098190555050565b611941612037565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119a5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119b2612037565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5f612037565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aa49190612ab8565b60405180910390a35050565b611abb848484610f3f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b1d57611ae684848484612344565b611b1c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611b2b611f5a565b600260095403611b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b67906132aa565b60405180910390fd5b6002600981905550600e5482611b84610f28565b611b8e9190613365565b1115611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc690613996565b60405180910390fd5b611bd98183612096565b60016009819055505050565b60105481565b600b8054611bf89061322d565b80601f0160208091040260200160405190810160405280929190818152602001828054611c249061322d565b8015611c715780601f10611c4657610100808354040283529160200191611c71565b820191906000526020600020905b815481529060010190602001808311611c5457829003601f168201915b505050505081565b6060611c8482611fd8565b611cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cba90613a28565b60405180910390fd5b60001515601260019054906101000a900460ff16151503611d7057600c8054611ceb9061322d565b80601f0160208091040260200160405190810160405280929190818152602001828054611d179061322d565b8015611d645780601f10611d3957610100808354040283529160200191611d64565b820191906000526020600020905b815481529060010190602001808311611d4757829003601f168201915b50505050509050611dcc565b6000611d7a612494565b90506000815111611d9a5760405180602001604052806000815250611dc8565b80611da484612526565b600b604051602001611db893929190613b07565b6040516020818303038152906040525b9150505b919050565b600e5481565b611ddf611f5a565b80600b9081611dee91906136ab565b5050565b6000611dfd8261203f565b9050919050565b611e0c611f5a565b80600f8190555050565b611e1e611f5a565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ec4611f5a565b80600c9081611ed391906136ab565b5050565b611edf611f5a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4590613baa565b60405180910390fd5b611f5781612253565b50565b611f62612686565b73ffffffffffffffffffffffffffffffffffffffff16611f80611654565b73ffffffffffffffffffffffffffffffffffffffff1614611fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcd90613c16565b60405180910390fd5b565b600081611fe36120b4565b11158015611ff2575060005482105b8015612030575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6120b082826040518060200160405280600081525061268e565b5050565b60006001905090565b600080829050806120cc6120b4565b11612152576000548110156121515760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361214f575b6000810361214557600460008360019003935083815260200190815260200160002054905061211b565b8092505050612184565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861221186868461272b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123216129b5565b61233d6004600084815260200190815260200160002054612734565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261236a612037565b8786866040518563ffffffff1660e01b815260040161238c9493929190613c8b565b6020604051808303816000875af19250505080156123c857506040513d601f19601f820116820180604052508101906123c59190613cec565b60015b612441573d80600081146123f8576040519150601f19603f3d011682016040523d82523d6000602084013e6123fd565b606091505b506000815103612439576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546124a39061322d565b80601f01602080910402602001604051908101604052809291908181526020018280546124cf9061322d565b801561251c5780601f106124f15761010080835404028352916020019161251c565b820191906000526020600020905b8154815290600101906020018083116124ff57829003601f168201915b5050505050905090565b60606000820361256d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612681565b600082905060005b6000821461259f57808061258890613d19565b915050600a826125989190613d90565b9150612575565b60008167ffffffffffffffff8111156125bb576125ba612d99565b5b6040519080825280601f01601f1916602001820160405280156125ed5781602001600182028036833780820191505090505b5090505b6000851461267a576001826126069190613dc1565b9150600a856126159190613df5565b60306126219190613365565b60f81b8183815181106126375761263661377d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126739190613d90565b94506125f1565b8093505050505b919050565b600033905090565b61269883836127ea565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461272657600080549050600083820390505b6126d86000868380600101945086612344565b61270e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106126c557816000541461272357600080fd5b50505b505050565b60009392505050565b61273c6129b5565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b6000805490506000820361282a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61283760008483856121f4565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128ae8361289f60008660006121fa565b6128a8856129a5565b17612222565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461294f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612914565b506000820361298a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506129a0600084838561224d565b505050565b60006001821460e11b9050919050565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a4d81612a18565b8114612a5857600080fd5b50565b600081359050612a6a81612a44565b92915050565b600060208284031215612a8657612a85612a0e565b5b6000612a9484828501612a5b565b91505092915050565b60008115159050919050565b612ab281612a9d565b82525050565b6000602082019050612acd6000830184612aa9565b92915050565b612adc81612a9d565b8114612ae757600080fd5b50565b600081359050612af981612ad3565b92915050565b600060208284031215612b1557612b14612a0e565b5b6000612b2384828501612aea565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b66578082015181840152602081019050612b4b565b83811115612b75576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b9782612b2c565b612ba18185612b37565b9350612bb1818560208601612b48565b612bba81612b7b565b840191505092915050565b60006020820190508181036000830152612bdf8184612b8c565b905092915050565b6000819050919050565b612bfa81612be7565b8114612c0557600080fd5b50565b600081359050612c1781612bf1565b92915050565b600060208284031215612c3357612c32612a0e565b5b6000612c4184828501612c08565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c7582612c4a565b9050919050565b612c8581612c6a565b82525050565b6000602082019050612ca06000830184612c7c565b92915050565b612caf81612c6a565b8114612cba57600080fd5b50565b600081359050612ccc81612ca6565b92915050565b60008060408385031215612ce957612ce8612a0e565b5b6000612cf785828601612cbd565b9250506020612d0885828601612c08565b9150509250929050565b612d1b81612be7565b82525050565b6000602082019050612d366000830184612d12565b92915050565b600080600060608486031215612d5557612d54612a0e565b5b6000612d6386828701612cbd565b9350506020612d7486828701612cbd565b9250506040612d8586828701612c08565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612dd182612b7b565b810181811067ffffffffffffffff82111715612df057612def612d99565b5b80604052505050565b6000612e03612a04565b9050612e0f8282612dc8565b919050565b600067ffffffffffffffff821115612e2f57612e2e612d99565b5b612e3882612b7b565b9050602081019050919050565b82818337600083830152505050565b6000612e67612e6284612e14565b612df9565b905082815260208101848484011115612e8357612e82612d94565b5b612e8e848285612e45565b509392505050565b600082601f830112612eab57612eaa612d8f565b5b8135612ebb848260208601612e54565b91505092915050565b600060208284031215612eda57612ed9612a0e565b5b600082013567ffffffffffffffff811115612ef857612ef7612a13565b5b612f0484828501612e96565b91505092915050565b600060208284031215612f2357612f22612a0e565b5b6000612f3184828501612cbd565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f6f81612be7565b82525050565b6000612f818383612f66565b60208301905092915050565b6000602082019050919050565b6000612fa582612f3a565b612faf8185612f45565b9350612fba83612f56565b8060005b83811015612feb578151612fd28882612f75565b9750612fdd83612f8d565b925050600181019050612fbe565b5085935050505092915050565b600060208201905081810360008301526130128184612f9a565b905092915050565b6000806040838503121561303157613030612a0e565b5b600061303f85828601612cbd565b925050602061305085828601612aea565b9150509250929050565b600067ffffffffffffffff82111561307557613074612d99565b5b61307e82612b7b565b9050602081019050919050565b600061309e6130998461305a565b612df9565b9050828152602081018484840111156130ba576130b9612d94565b5b6130c5848285612e45565b509392505050565b600082601f8301126130e2576130e1612d8f565b5b81356130f284826020860161308b565b91505092915050565b6000806000806080858703121561311557613114612a0e565b5b600061312387828801612cbd565b945050602061313487828801612cbd565b935050604061314587828801612c08565b925050606085013567ffffffffffffffff81111561316657613165612a13565b5b613172878288016130cd565b91505092959194509250565b6000806040838503121561319557613194612a0e565b5b60006131a385828601612c08565b92505060206131b485828601612cbd565b9150509250929050565b600080604083850312156131d5576131d4612a0e565b5b60006131e385828601612cbd565b92505060206131f485828601612cbd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061324557607f821691505b602082108103613258576132576131fe565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613294601f83612b37565b915061329f8261325e565b602082019050919050565b600060208201905081810360008301526132c381613287565b9050919050565b7f6f6f707320636f6e747261637420697320706175736564000000000000000000600082015250565b6000613300601783612b37565b915061330b826132ca565b602082019050919050565b6000602082019050818103600083015261332f816132f3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061337082612be7565b915061337b83612be7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133b0576133af613336565b5b828201905092915050565b7f4d6178204e4654205065722057616c6c65742065786365656465640000000000600082015250565b60006133f1601b83612b37565b91506133fc826133bb565b602082019050919050565b60006020820190508181036000830152613420816133e4565b9050919050565b7f6d61782066726565206d696e7420706572205478206578636565646564000000600082015250565b600061345d601d83612b37565b915061346882613427565b602082019050919050565b6000602082019050818103600083015261348c81613450565b9050919050565b7f57686974656c697374204d6178537570706c7920657863656564656400000000600082015250565b60006134c9601c83612b37565b91506134d482613493565b602082019050919050565b600060208201905081810360008301526134f8816134bc565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026135617fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613524565b61356b8683613524565b95508019841693508086168417925050509392505050565b6000819050919050565b60006135a86135a361359e84612be7565b613583565b612be7565b9050919050565b6000819050919050565b6135c28361358d565b6135d66135ce826135af565b848454613531565b825550505050565b600090565b6135eb6135de565b6135f68184846135b9565b505050565b5b8181101561361a5761360f6000826135e3565b6001810190506135fc565b5050565b601f82111561365f57613630816134ff565b61363984613514565b81016020851015613648578190505b61365c61365485613514565b8301826135fb565b50505b505050565b600082821c905092915050565b600061368260001984600802613664565b1980831691505092915050565b600061369b8383613671565b9150826002028217905092915050565b6136b482612b2c565b67ffffffffffffffff8111156136cd576136cc612d99565b5b6136d7825461322d565b6136e282828561361e565b600060209050601f8311600181146137155760008415613703578287015190505b61370d858261368f565b865550613775565b601f198416613723866134ff565b60005b8281101561374b57848901518255600182019150602085019450602081019050613726565b868310156137685784890151613764601f891682613671565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6d6178206d696e7420616d6f756e742070657220747820657863656564656400600082015250565b60006137e2601f83612b37565b91506137ed826137ac565b602082019050919050565b60006020820190508181036000830152613811816137d5565b9050919050565b7f576520536f6c646f757400000000000000000000000000000000000000000000600082015250565b600061384e600a83612b37565b915061385982613818565b602082019050919050565b6000602082019050818103600083015261387d81613841565b9050919050565b600061388f82612be7565b915061389a83612be7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156138d3576138d2613336565b5b828202905092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613914601283612b37565b915061391f826138de565b602082019050919050565b6000602082019050818103600083015261394381613907565b9050919050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000613980601683612b37565b915061398b8261394a565b602082019050919050565b600060208201905081810360008301526139af81613973565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b6000613a12603083612b37565b9150613a1d826139b6565b604082019050919050565b60006020820190508181036000830152613a4181613a05565b9050919050565b600081905092915050565b6000613a5e82612b2c565b613a688185613a48565b9350613a78818560208601612b48565b80840191505092915050565b60008154613a918161322d565b613a9b8186613a48565b94506001821660008114613ab65760018114613acb57613afe565b60ff1983168652811515820286019350613afe565b613ad4856134ff565b60005b83811015613af657815481890152600182019150602081019050613ad7565b838801955050505b50505092915050565b6000613b138286613a53565b9150613b1f8285613a53565b9150613b2b8284613a84565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b94602683612b37565b9150613b9f82613b38565b604082019050919050565b60006020820190508181036000830152613bc381613b87565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c00602083612b37565b9150613c0b82613bca565b602082019050919050565b60006020820190508181036000830152613c2f81613bf3565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613c5d82613c36565b613c678185613c41565b9350613c77818560208601612b48565b613c8081612b7b565b840191505092915050565b6000608082019050613ca06000830187612c7c565b613cad6020830186612c7c565b613cba6040830185612d12565b8181036060830152613ccc8184613c52565b905095945050505050565b600081519050613ce681612a44565b92915050565b600060208284031215613d0257613d01612a0e565b5b6000613d1084828501613cd7565b91505092915050565b6000613d2482612be7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d5657613d55613336565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613d9b82612be7565b9150613da683612be7565b925082613db657613db5613d61565b5b828204905092915050565b6000613dcc82612be7565b9150613dd783612be7565b925082821015613dea57613de9613336565b5b828203905092915050565b6000613e0082612be7565b9150613e0b83612be7565b925082613e1b57613e1a613d61565b5b82820690509291505056fea26469706673582212203cac3419f8e3ed473464f6481295ebb0657db6c268e0e6f83adc7374c7a847fa64736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52655342434872376f576475313157697a4176667565706d525865326d344b457a7a6551335154485a6637592f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmReSBCHr7oWdu11WizAvfuepmRXe2m4KEzzeQ3QTHZf7Y/
Arg [1] : _notRevealedUri (string):

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d52655342434872376f576475313157697a417666756570
Arg [4] : 6d525865326d344b457a7a6551335154485a6637592f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

61576:5473:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27284:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66757:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28186:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34669:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61738:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34110:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63007:434;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61771:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65985:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23937:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38376:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65681:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66879:167;;;:::i;:::-;;41289:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65850:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61846:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61991:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66248:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61960:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61920:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29579:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61670:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25121:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8032:103;;;;;;;;;;;;;:::i;:::-;;64506:881;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7384:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65409:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28362:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62506:471;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35227:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42072:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63496:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61883:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61696:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63771:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61809:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66401:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64334:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66118:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65538:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35692:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66557:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8290:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27284:639;27369:4;27708:10;27693:25;;:11;:25;;;;:102;;;;27785:10;27770:25;;:11;:25;;;;27693:102;:179;;;;27862:10;27847:25;;:11;:25;;;;27693:179;27673:199;;27284:639;;;:::o;66757:73::-;7270:13;:11;:13::i;:::-;66818:6:::1;66809;;:15;;;;;;;;;;;;;;;;;;66757:73:::0;:::o;28186:100::-;28240:13;28273:5;28266:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28186:100;:::o;34669:218::-;34745:7;34770:16;34778:7;34770;:16::i;:::-;34765:64;;34795:34;;;;;;;;;;;;;;34765:64;34849:15;:24;34865:7;34849:24;;;;;;;;;;;:30;;;;;;;;;;;;34842:37;;34669:218;;;:::o;61738:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34110:400::-;34191:13;34207:16;34215:7;34207;:16::i;:::-;34191:32;;34263:5;34240:28;;:19;:17;:19::i;:::-;:28;;;34236:175;;34288:44;34305:5;34312:19;:17;:19::i;:::-;34288:16;:44::i;:::-;34283:128;;34360:35;;;;;;;;;;;;;;34283:128;34236:175;34456:2;34423:15;:24;34439:7;34423:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34494:7;34490:2;34474:28;;34483:5;34474:28;;;;;;;;;;;;34180:330;34110:400;;:::o;63007:434::-;1812:1;2410:7;;:19;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;63077:6:::1;;;;;;;;;;;63076:7;63068:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;63173:16;;63163:6;63126:34;63140:19;:17;:19::i;:::-;63126:13;:34::i;:::-;:43;;;;:::i;:::-;:63;;63118:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;63246:16;;63236:6;:26;;63228:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63337:10;;63327:6;63311:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;63303:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;63391:38;63401:19;:17;:19::i;:::-;63422:6;63391:9;:38::i;:::-;1768:1:::0;2722:7;:22;;;;63007:434;:::o;61771:33::-;;;;:::o;65985:94::-;7270:13;:11;:13::i;:::-;66063:10:::1;66051:9;:22;;;;65985:94:::0;:::o;23937:323::-;23998:7;24226:15;:13;:15::i;:::-;24211:12;;24195:13;;:28;:46;24188:53;;23937:323;:::o;38376:2817::-;38510:27;38540;38559:7;38540:18;:27::i;:::-;38510:57;;38625:4;38584:45;;38600:19;38584:45;;;38580:86;;38638:28;;;;;;;;;;;;;;38580:86;38680:27;38709:23;38736:35;38763:7;38736:26;:35::i;:::-;38679:92;;;;38871:68;38896:15;38913:4;38919:19;:17;:19::i;:::-;38871:24;:68::i;:::-;38866:180;;38959:43;38976:4;38982:19;:17;:19::i;:::-;38959:16;:43::i;:::-;38954:92;;39011:35;;;;;;;;;;;;;;38954:92;38866:180;39077:1;39063:16;;:2;:16;;;39059:52;;39088:23;;;;;;;;;;;;;;39059:52;39124:43;39146:4;39152:2;39156:7;39165:1;39124:21;:43::i;:::-;39260:15;39257:160;;;39400:1;39379:19;39372:30;39257:160;39797:18;:24;39816:4;39797:24;;;;;;;;;;;;;;;;39795:26;;;;;;;;;;;;39866:18;:22;39885:2;39866:22;;;;;;;;;;;;;;;;39864:24;;;;;;;;;;;40188:146;40225:2;40274:45;40289:4;40295:2;40299:19;40274:14;:45::i;:::-;20336:8;40246:73;40188:18;:146::i;:::-;40159:17;:26;40177:7;40159:26;;;;;;;;;;;:175;;;;40505:1;20336:8;40454:19;:47;:52;40450:627;;40527:19;40559:1;40549:7;:11;40527:33;;40716:1;40682:17;:30;40700:11;40682:30;;;;;;;;;;;;:35;40678:384;;40820:13;;40805:11;:28;40801:242;;41000:19;40967:17;:30;40985:11;40967:30;;;;;;;;;;;:52;;;;40801:242;40678:384;40508:569;40450:627;41124:7;41120:2;41105:27;;41114:4;41105:27;;;;;;;;;;;;41143:42;41164:4;41170:2;41174:7;41183:1;41143:20;:42::i;:::-;38499:2694;;;38376:2817;;;:::o;65681:100::-;7270:13;:11;:13::i;:::-;65769:6:::1;65750:16;:25;;;;65681:100:::0;:::o;66879:167::-;7270:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19:::0;2402:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;66946:15:::2;66964:21;66946:39;;67002:19;:17;:19::i;:::-;66994:37;;:46;67032:7;66994:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;66937:109;1768:1:::1;2722:7;:22;;;;66879:167::o:0;41289:185::-;41427:39;41444:4;41450:2;41454:7;41427:39;;;;;;;;;;;;:16;:39::i;:::-;41289:185;;;:::o;65850:80::-;7270:13;:11;:13::i;:::-;65916:8:::1;65909:4;:15;;;;65850:80:::0;:::o;61846:32::-;;;;:::o;61991:27::-;;;;;;;;;;;;;:::o;66248:98::-;7270:13;:11;:13::i;:::-;66329:11:::1;66319:7;:21;;;;;;:::i;:::-;;66248:98:::0;:::o;61960:26::-;;;;;;;;;;;;;:::o;61920:35::-;;;;:::o;29579:152::-;29651:7;29694:27;29713:7;29694:18;:27::i;:::-;29671:52;;29579:152;;;:::o;61670:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25121:233::-;25193:7;25234:1;25217:19;;:5;:19;;;25213:60;;25245:28;;;;;;;;;;;;;;25213:60;19280:13;25291:18;:25;25310:5;25291:25;;;;;;;;;;;;;;;;:55;25284:62;;25121:233;;;:::o;8032:103::-;7270:13;:11;:13::i;:::-;8097:30:::1;8124:1;8097:18;:30::i;:::-;8032:103::o:0;64506:881::-;64565:16;64619:19;64653:25;64693:22;64718:16;64728:5;64718:9;:16::i;:::-;64693:41;;64749:25;64791:14;64777:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64749:57;;64821:31;;:::i;:::-;64872:9;64884:15;:13;:15::i;:::-;64872:27;;64867:472;64916:14;64901:11;:29;64867:472;;64968:15;64981:1;64968:12;:15::i;:::-;64956:27;;65006:9;:16;;;65047:8;65002:73;65123:1;65097:28;;:9;:14;;;:28;;;65093:111;;65170:9;:14;;;65150:34;;65093:111;65247:5;65226:26;;:17;:26;;;65222:102;;65303:1;65277:8;65286:13;;;;;;65277:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;65222:102;64867:472;64932:3;;;;;64867:472;;;;65360:8;65353:15;;;;;;;64506:881;;;:::o;7384:87::-;7430:7;7457:6;;;;;;;;;;;7450:13;;7384:87;:::o;65409:78::-;7270:13;:11;:13::i;:::-;65475:6:::1;65464:8;;:17;;;;;;;;;;;;;;;;;;65409:78:::0;:::o;28362:104::-;28418:13;28451:7;28444:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28362:104;:::o;62506:471::-;1812:1;2410:7;;:19;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;62580:6:::1;;;;;;;;;;;62579:7;62571:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;62639:12;;62629:6;:22;;62621:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;62728:9;;62718:6;62702:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;62694:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;62814:12;;62804:6;62767:34;62781:19;:17;:19::i;:::-;62767:13;:34::i;:::-;:43;;;;:::i;:::-;:59;;62759:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;62893:6;62886:4;;:13;;;;:::i;:::-;62873:9;:26;;62865:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;62933:38;62943:19;:17;:19::i;:::-;62964:6;62933:9;:38::i;:::-;1768:1:::0;2722:7;:22;;;;62506:471;:::o;35227:308::-;35338:19;:17;:19::i;:::-;35326:31;;:8;:31;;;35322:61;;35366:17;;;;;;;;;;;;;;35322:61;35448:8;35396:18;:39;35415:19;:17;:19::i;:::-;35396:39;;;;;;;;;;;;;;;:49;35436:8;35396:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35508:8;35472:55;;35487:19;:17;:19::i;:::-;35472:55;;;35518:8;35472:55;;;;;;:::i;:::-;;;;;;;;35227:308;;:::o;42072:399::-;42239:31;42252:4;42258:2;42262:7;42239:12;:31::i;:::-;42303:1;42285:2;:14;;;:19;42281:183;;42324:56;42355:4;42361:2;42365:7;42374:5;42324:30;:56::i;:::-;42319:145;;42408:40;;;;;;;;;;;;;;42319:145;42281:183;42072:399;;;;:::o;63496:223::-;7270:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19:::0;2402:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;63631:9:::2;;63616:11;63600:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;63592:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;63678:35;63688:11;63701;63678:9;:35::i;:::-;1768:1:::1;2722:7;:22;;;;63496:223:::0;;:::o;61883:32::-;;;;:::o;61696:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63771:498::-;63869:13;63910:16;63918:7;63910;:16::i;:::-;63894:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;64020:5;64008:17;;:8;;;;;;;;;;;:17;;;64005:62;;64045:14;64038:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64005:62;64075:28;64106:10;:8;:10::i;:::-;64075:41;;64161:1;64136:14;64130:28;:32;:133;;;;;;;;;;;;;;;;;64198:14;64214:18;:7;:16;:18::i;:::-;64234:13;64181:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64130:133;64123:140;;;63771:498;;;;:::o;61809:32::-;;;;:::o;66401:122::-;7270:13;:11;:13::i;:::-;66500:17:::1;66484:13;:33;;;;;;:::i;:::-;;66401:122:::0;:::o;64334:107::-;64392:7;64415:20;64429:5;64415:13;:20::i;:::-;64408:27;;64334:107;;;:::o;66118:96::-;7270:13;:11;:13::i;:::-;66198:10:::1;66185;:23;;;;66118:96:::0;:::o;65538:92::-;7270:13;:11;:13::i;:::-;65618:6:::1;65603:12;:21;;;;65538:92:::0;:::o;35692:164::-;35789:4;35813:18;:25;35832:5;35813:25;;;;;;;;;;;;;;;:35;35839:8;35813:35;;;;;;;;;;;;;;;;;;;;;;;;;35806:42;;35692:164;;;;:::o;66557:120::-;7270:13;:11;:13::i;:::-;66656:15:::1;66639:14;:32;;;;;;:::i;:::-;;66557:120:::0;:::o;8290:201::-;7270:13;:11;:13::i;:::-;8399:1:::1;8379:22;;:8;:22;;::::0;8371:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8455:28;8474:8;8455:18;:28::i;:::-;8290:201:::0;:::o;7549:132::-;7624:12;:10;:12::i;:::-;7613:23;;:7;:5;:7::i;:::-;:23;;;7605:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7549:132::o;36114:282::-;36179:4;36235:7;36216:15;:13;:15::i;:::-;:26;;:66;;;;;36269:13;;36259:7;:23;36216:66;:153;;;;;36368:1;20056:8;36320:17;:26;36338:7;36320:26;;;;;;;;;;;;:44;:49;36216:153;36196:173;;36114:282;;;:::o;57880:105::-;57940:7;57967:10;57960:17;;57880:105;:::o;25436:178::-;25497:7;19280:13;19418:2;25525:18;:25;25544:5;25525:25;;;;;;;;;;;;;;;;:50;;25524:82;25517:89;;25436:178;;;:::o;51712:112::-;51789:27;51799:2;51803:8;51789:27;;;;;;;;;;;;:9;:27::i;:::-;51712:112;;:::o;62361:101::-;62426:7;62453:1;62446:8;;62361:101;:::o;30734:1275::-;30801:7;30821:12;30836:7;30821:22;;30904:4;30885:15;:13;:15::i;:::-;:23;30881:1061;;30938:13;;30931:4;:20;30927:1015;;;30976:14;30993:17;:23;31011:4;30993:23;;;;;;;;;;;;30976:40;;31110:1;20056:8;31082:6;:24;:29;31078:845;;31747:113;31764:1;31754:6;:11;31747:113;;31807:17;:25;31825:6;;;;;;;31807:25;;;;;;;;;;;;31798:34;;31747:113;;;31893:6;31886:13;;;;;;31078:845;30953:989;30927:1015;30881:1061;31970:31;;;;;;;;;;;;;;30734:1275;;;;:::o;37277:479::-;37379:27;37408:23;37449:38;37490:15;:24;37506:7;37490:24;;;;;;;;;;;37449:65;;37661:18;37638:41;;37718:19;37712:26;37693:45;;37623:126;37277:479;;;:::o;36505:659::-;36654:11;36819:16;36812:5;36808:28;36799:37;;36979:16;36968:9;36964:32;36951:45;;37129:15;37118:9;37115:30;37107:5;37096:9;37093:20;37090:56;37080:66;;36505:659;;;;;:::o;43133:159::-;;;;;:::o;57189:311::-;57324:7;57344:16;20460:3;57370:19;:41;;57344:68;;20460:3;57438:31;57449:4;57455:2;57459:9;57438:10;:31::i;:::-;57430:40;;:62;;57423:69;;;57189:311;;;;;:::o;32557:450::-;32637:14;32805:16;32798:5;32794:28;32785:37;;32982:5;32968:11;32943:23;32939:41;32936:52;32929:5;32926:63;32916:73;;32557:450;;;;:::o;43957:158::-;;;;;:::o;8651:191::-;8725:16;8744:6;;;;;;;;;;;8725:25;;8770:8;8761:6;;:17;;;;;;;;;;;;;;;;;;8825:8;8794:40;;8815:8;8794:40;;;;;;;;;;;;8714:128;8651:191;:::o;30182:161::-;30250:21;;:::i;:::-;30291:44;30310:17;:24;30328:5;30310:24;;;;;;;;;;;;30291:18;:44::i;:::-;30284:51;;30182:161;;;:::o;44555:716::-;44718:4;44764:2;44739:45;;;44785:19;:17;:19::i;:::-;44806:4;44812:7;44821:5;44739:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44735:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45039:1;45022:6;:13;:18;45018:235;;45068:40;;;;;;;;;;;;;;45018:235;45211:6;45205:13;45196:6;45192:2;45188:15;45181:38;44735:529;44908:54;;;44898:64;;;:6;:64;;;;44891:71;;;44555:716;;;;;;:::o;62251:102::-;62311:13;62340:7;62333:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62251:102;:::o;3189:723::-;3245:13;3475:1;3466:5;:10;3462:53;;3493:10;;;;;;;;;;;;;;;;;;;;;3462:53;3525:12;3540:5;3525:20;;3556:14;3581:78;3596:1;3588:4;:9;3581:78;;3614:8;;;;;:::i;:::-;;;;3645:2;3637:10;;;;;:::i;:::-;;;3581:78;;;3669:19;3701:6;3691:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3669:39;;3719:154;3735:1;3726:5;:10;3719:154;;3763:1;3753:11;;;;;:::i;:::-;;;3830:2;3822:5;:10;;;;:::i;:::-;3809:2;:24;;;;:::i;:::-;3796:39;;3779:6;3786;3779:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3859:2;3850:11;;;;;:::i;:::-;;;3719:154;;;3897:6;3883:21;;;;;3189:723;;;;:::o;5935:98::-;5988:7;6015:10;6008:17;;5935:98;:::o;50939:689::-;51070:19;51076:2;51080:8;51070:5;:19::i;:::-;51149:1;51131:2;:14;;;:19;51127:483;;51171:11;51185:13;;51171:27;;51217:13;51239:8;51233:3;:14;51217:30;;51266:233;51297:62;51336:1;51340:2;51344:7;;;;;;51353:5;51297:30;:62::i;:::-;51292:167;;51395:40;;;;;;;;;;;;;;51292:167;51494:3;51486:5;:11;51266:233;;51581:3;51564:13;;:20;51560:34;;51586:8;;;51560:34;51152:458;;51127:483;50939:689;;;:::o;56890:147::-;57027:6;56890:147;;;;;:::o;32108:366::-;32174:31;;:::i;:::-;32251:6;32218:9;:14;;:41;;;;;;;;;;;19939:3;32304:6;:33;;32270:9;:24;;:68;;;;;;;;;;;32396:1;20056:8;32368:6;:24;:29;;32349:9;:16;;:48;;;;;;;;;;;20460:3;32437:6;:28;;32408:9;:19;;:58;;;;;;;;;;;32108:366;;;:::o;45733:2454::-;45806:20;45829:13;;45806:36;;45869:1;45857:8;:13;45853:44;;45879:18;;;;;;;;;;;;;;45853:44;45910:61;45940:1;45944:2;45948:12;45962:8;45910:21;:61::i;:::-;46454:1;19418:2;46424:1;:26;;46423:32;46411:8;:45;46385:18;:22;46404:2;46385:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46733:139;46770:2;46824:33;46847:1;46851:2;46855:1;46824:14;:33::i;:::-;46791:30;46812:8;46791:20;:30::i;:::-;:66;46733:18;:139::i;:::-;46699:17;:31;46717:12;46699:31;;;;;;;;;;;:173;;;;46889:16;46920:11;46949:8;46934:12;:23;46920:37;;47204:16;47200:2;47196:25;47184:37;;47576:12;47536:8;47495:1;47433:25;47374:1;47313;47286:335;47701:1;47687:12;47683:20;47641:346;47742:3;47733:7;47730:16;47641:346;;47960:7;47950:8;47947:1;47920:25;47917:1;47914;47909:59;47795:1;47786:7;47782:15;47771:26;;47641:346;;;47645:77;48032:1;48020:8;:13;48016:45;;48042:19;;;;;;;;;;;;;;48016:45;48094:3;48078:13;:19;;;;46159:1950;;48119:60;48148:1;48152:2;48156:12;48170:8;48119:20;:60::i;:::-;45795:2392;45733:2454;;:::o;33109:324::-;33179:14;33412:1;33402:8;33399:15;33373:24;33369:46;33359:56;;33109:324;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:114::-;9528:6;9562:5;9556:12;9546:22;;9461:114;;;:::o;9581:184::-;9680:11;9714:6;9709:3;9702:19;9754:4;9749:3;9745:14;9730:29;;9581:184;;;;:::o;9771:132::-;9838:4;9861:3;9853:11;;9891:4;9886:3;9882:14;9874:22;;9771:132;;;:::o;9909:108::-;9986:24;10004:5;9986:24;:::i;:::-;9981:3;9974:37;9909:108;;:::o;10023:179::-;10092:10;10113:46;10155:3;10147:6;10113:46;:::i;:::-;10191:4;10186:3;10182:14;10168:28;;10023:179;;;;:::o;10208:113::-;10278:4;10310;10305:3;10301:14;10293:22;;10208:113;;;:::o;10357:732::-;10476:3;10505:54;10553:5;10505:54;:::i;:::-;10575:86;10654:6;10649:3;10575:86;:::i;:::-;10568:93;;10685:56;10735:5;10685:56;:::i;:::-;10764:7;10795:1;10780:284;10805:6;10802:1;10799:13;10780:284;;;10881:6;10875:13;10908:63;10967:3;10952:13;10908:63;:::i;:::-;10901:70;;10994:60;11047:6;10994:60;:::i;:::-;10984:70;;10840:224;10827:1;10824;10820:9;10815:14;;10780:284;;;10784:14;11080:3;11073:10;;10481:608;;;10357:732;;;;:::o;11095:373::-;11238:4;11276:2;11265:9;11261:18;11253:26;;11325:9;11319:4;11315:20;11311:1;11300:9;11296:17;11289:47;11353:108;11456:4;11447:6;11353:108;:::i;:::-;11345:116;;11095:373;;;;:::o;11474:468::-;11539:6;11547;11596:2;11584:9;11575:7;11571:23;11567:32;11564:119;;;11602:79;;:::i;:::-;11564:119;11722:1;11747:53;11792:7;11783:6;11772:9;11768:22;11747:53;:::i;:::-;11737:63;;11693:117;11849:2;11875:50;11917:7;11908:6;11897:9;11893:22;11875:50;:::i;:::-;11865:60;;11820:115;11474:468;;;;;:::o;11948:307::-;12009:4;12099:18;12091:6;12088:30;12085:56;;;12121:18;;:::i;:::-;12085:56;12159:29;12181:6;12159:29;:::i;:::-;12151:37;;12243:4;12237;12233:15;12225:23;;11948:307;;;:::o;12261:410::-;12338:5;12363:65;12379:48;12420:6;12379:48;:::i;:::-;12363:65;:::i;:::-;12354:74;;12451:6;12444:5;12437:21;12489:4;12482:5;12478:16;12527:3;12518:6;12513:3;12509:16;12506:25;12503:112;;;12534:79;;:::i;:::-;12503:112;12624:41;12658:6;12653:3;12648;12624:41;:::i;:::-;12344:327;12261:410;;;;;:::o;12690:338::-;12745:5;12794:3;12787:4;12779:6;12775:17;12771:27;12761:122;;12802:79;;:::i;:::-;12761:122;12919:6;12906:20;12944:78;13018:3;13010:6;13003:4;12995:6;12991:17;12944:78;:::i;:::-;12935:87;;12751:277;12690:338;;;;:::o;13034:943::-;13129:6;13137;13145;13153;13202:3;13190:9;13181:7;13177:23;13173:33;13170:120;;;13209:79;;:::i;:::-;13170:120;13329:1;13354:53;13399:7;13390:6;13379:9;13375:22;13354:53;:::i;:::-;13344:63;;13300:117;13456:2;13482:53;13527:7;13518:6;13507:9;13503:22;13482:53;:::i;:::-;13472:63;;13427:118;13584:2;13610:53;13655:7;13646:6;13635:9;13631:22;13610:53;:::i;:::-;13600:63;;13555:118;13740:2;13729:9;13725:18;13712:32;13771:18;13763:6;13760:30;13757:117;;;13793:79;;:::i;:::-;13757:117;13898:62;13952:7;13943:6;13932:9;13928:22;13898:62;:::i;:::-;13888:72;;13683:287;13034:943;;;;;;;:::o;13983:474::-;14051:6;14059;14108:2;14096:9;14087:7;14083:23;14079:32;14076:119;;;14114:79;;:::i;:::-;14076:119;14234:1;14259:53;14304:7;14295:6;14284:9;14280:22;14259:53;:::i;:::-;14249:63;;14205:117;14361:2;14387:53;14432:7;14423:6;14412:9;14408:22;14387:53;:::i;:::-;14377:63;;14332:118;13983:474;;;;;:::o;14463:::-;14531:6;14539;14588:2;14576:9;14567:7;14563:23;14559:32;14556:119;;;14594:79;;:::i;:::-;14556:119;14714:1;14739:53;14784:7;14775:6;14764:9;14760:22;14739:53;:::i;:::-;14729:63;;14685:117;14841:2;14867:53;14912:7;14903:6;14892:9;14888:22;14867:53;:::i;:::-;14857:63;;14812:118;14463:474;;;;;:::o;14943:180::-;14991:77;14988:1;14981:88;15088:4;15085:1;15078:15;15112:4;15109:1;15102:15;15129:320;15173:6;15210:1;15204:4;15200:12;15190:22;;15257:1;15251:4;15247:12;15278:18;15268:81;;15334:4;15326:6;15322:17;15312:27;;15268:81;15396:2;15388:6;15385:14;15365:18;15362:38;15359:84;;15415:18;;:::i;:::-;15359:84;15180:269;15129:320;;;:::o;15455:181::-;15595:33;15591:1;15583:6;15579:14;15572:57;15455:181;:::o;15642:366::-;15784:3;15805:67;15869:2;15864:3;15805:67;:::i;:::-;15798:74;;15881:93;15970:3;15881:93;:::i;:::-;15999:2;15994:3;15990:12;15983:19;;15642:366;;;:::o;16014:419::-;16180:4;16218:2;16207:9;16203:18;16195:26;;16267:9;16261:4;16257:20;16253:1;16242:9;16238:17;16231:47;16295:131;16421:4;16295:131;:::i;:::-;16287:139;;16014:419;;;:::o;16439:173::-;16579:25;16575:1;16567:6;16563:14;16556:49;16439:173;:::o;16618:366::-;16760:3;16781:67;16845:2;16840:3;16781:67;:::i;:::-;16774:74;;16857:93;16946:3;16857:93;:::i;:::-;16975:2;16970:3;16966:12;16959:19;;16618:366;;;:::o;16990:419::-;17156:4;17194:2;17183:9;17179:18;17171:26;;17243:9;17237:4;17233:20;17229:1;17218:9;17214:17;17207:47;17271:131;17397:4;17271:131;:::i;:::-;17263:139;;16990:419;;;:::o;17415:180::-;17463:77;17460:1;17453:88;17560:4;17557:1;17550:15;17584:4;17581:1;17574:15;17601:305;17641:3;17660:20;17678:1;17660:20;:::i;:::-;17655:25;;17694:20;17712:1;17694:20;:::i;:::-;17689:25;;17848:1;17780:66;17776:74;17773:1;17770:81;17767:107;;;17854:18;;:::i;:::-;17767:107;17898:1;17895;17891:9;17884:16;;17601:305;;;;:::o;17912:177::-;18052:29;18048:1;18040:6;18036:14;18029:53;17912:177;:::o;18095:366::-;18237:3;18258:67;18322:2;18317:3;18258:67;:::i;:::-;18251:74;;18334:93;18423:3;18334:93;:::i;:::-;18452:2;18447:3;18443:12;18436:19;;18095:366;;;:::o;18467:419::-;18633:4;18671:2;18660:9;18656:18;18648:26;;18720:9;18714:4;18710:20;18706:1;18695:9;18691:17;18684:47;18748:131;18874:4;18748:131;:::i;:::-;18740:139;;18467:419;;;:::o;18892:179::-;19032:31;19028:1;19020:6;19016:14;19009:55;18892:179;:::o;19077:366::-;19219:3;19240:67;19304:2;19299:3;19240:67;:::i;:::-;19233:74;;19316:93;19405:3;19316:93;:::i;:::-;19434:2;19429:3;19425:12;19418:19;;19077:366;;;:::o;19449:419::-;19615:4;19653:2;19642:9;19638:18;19630:26;;19702:9;19696:4;19692:20;19688:1;19677:9;19673:17;19666:47;19730:131;19856:4;19730:131;:::i;:::-;19722:139;;19449:419;;;:::o;19874:178::-;20014:30;20010:1;20002:6;19998:14;19991:54;19874:178;:::o;20058:366::-;20200:3;20221:67;20285:2;20280:3;20221:67;:::i;:::-;20214:74;;20297:93;20386:3;20297:93;:::i;:::-;20415:2;20410:3;20406:12;20399:19;;20058:366;;;:::o;20430:419::-;20596:4;20634:2;20623:9;20619:18;20611:26;;20683:9;20677:4;20673:20;20669:1;20658:9;20654:17;20647:47;20711:131;20837:4;20711:131;:::i;:::-;20703:139;;20430:419;;;:::o;20855:141::-;20904:4;20927:3;20919:11;;20950:3;20947:1;20940:14;20984:4;20981:1;20971:18;20963:26;;20855:141;;;:::o;21002:93::-;21039:6;21086:2;21081;21074:5;21070:14;21066:23;21056:33;;21002:93;;;:::o;21101:107::-;21145:8;21195:5;21189:4;21185:16;21164:37;;21101:107;;;;:::o;21214:393::-;21283:6;21333:1;21321:10;21317:18;21356:97;21386:66;21375:9;21356:97;:::i;:::-;21474:39;21504:8;21493:9;21474:39;:::i;:::-;21462:51;;21546:4;21542:9;21535:5;21531:21;21522:30;;21595:4;21585:8;21581:19;21574:5;21571:30;21561:40;;21290:317;;21214:393;;;;;:::o;21613:60::-;21641:3;21662:5;21655:12;;21613:60;;;:::o;21679:142::-;21729:9;21762:53;21780:34;21789:24;21807:5;21789:24;:::i;:::-;21780:34;:::i;:::-;21762:53;:::i;:::-;21749:66;;21679:142;;;:::o;21827:75::-;21870:3;21891:5;21884:12;;21827:75;;;:::o;21908:269::-;22018:39;22049:7;22018:39;:::i;:::-;22079:91;22128:41;22152:16;22128:41;:::i;:::-;22120:6;22113:4;22107:11;22079:91;:::i;:::-;22073:4;22066:105;21984:193;21908:269;;;:::o;22183:73::-;22228:3;22183:73;:::o;22262:189::-;22339:32;;:::i;:::-;22380:65;22438:6;22430;22424:4;22380:65;:::i;:::-;22315:136;22262:189;;:::o;22457:186::-;22517:120;22534:3;22527:5;22524:14;22517:120;;;22588:39;22625:1;22618:5;22588:39;:::i;:::-;22561:1;22554:5;22550:13;22541:22;;22517:120;;;22457:186;;:::o;22649:543::-;22750:2;22745:3;22742:11;22739:446;;;22784:38;22816:5;22784:38;:::i;:::-;22868:29;22886:10;22868:29;:::i;:::-;22858:8;22854:44;23051:2;23039:10;23036:18;23033:49;;;23072:8;23057:23;;23033:49;23095:80;23151:22;23169:3;23151:22;:::i;:::-;23141:8;23137:37;23124:11;23095:80;:::i;:::-;22754:431;;22739:446;22649:543;;;:::o;23198:117::-;23252:8;23302:5;23296:4;23292:16;23271:37;;23198:117;;;;:::o;23321:169::-;23365:6;23398:51;23446:1;23442:6;23434:5;23431:1;23427:13;23398:51;:::i;:::-;23394:56;23479:4;23473;23469:15;23459:25;;23372:118;23321:169;;;;:::o;23495:295::-;23571:4;23717:29;23742:3;23736:4;23717:29;:::i;:::-;23709:37;;23779:3;23776:1;23772:11;23766:4;23763:21;23755:29;;23495:295;;;;:::o;23795:1395::-;23912:37;23945:3;23912:37;:::i;:::-;24014:18;24006:6;24003:30;24000:56;;;24036:18;;:::i;:::-;24000:56;24080:38;24112:4;24106:11;24080:38;:::i;:::-;24165:67;24225:6;24217;24211:4;24165:67;:::i;:::-;24259:1;24283:4;24270:17;;24315:2;24307:6;24304:14;24332:1;24327:618;;;;24989:1;25006:6;25003:77;;;25055:9;25050:3;25046:19;25040:26;25031:35;;25003:77;25106:67;25166:6;25159:5;25106:67;:::i;:::-;25100:4;25093:81;24962:222;24297:887;;24327:618;24379:4;24375:9;24367:6;24363:22;24413:37;24445:4;24413:37;:::i;:::-;24472:1;24486:208;24500:7;24497:1;24494:14;24486:208;;;24579:9;24574:3;24570:19;24564:26;24556:6;24549:42;24630:1;24622:6;24618:14;24608:24;;24677:2;24666:9;24662:18;24649:31;;24523:4;24520:1;24516:12;24511:17;;24486:208;;;24722:6;24713:7;24710:19;24707:179;;;24780:9;24775:3;24771:19;24765:26;24823:48;24865:4;24857:6;24853:17;24842:9;24823:48;:::i;:::-;24815:6;24808:64;24730:156;24707:179;24932:1;24928;24920:6;24916:14;24912:22;24906:4;24899:36;24334:611;;;24297:887;;23887:1303;;;23795:1395;;:::o;25196:180::-;25244:77;25241:1;25234:88;25341:4;25338:1;25331:15;25365:4;25362:1;25355:15;25382:181;25522:33;25518:1;25510:6;25506:14;25499:57;25382:181;:::o;25569:366::-;25711:3;25732:67;25796:2;25791:3;25732:67;:::i;:::-;25725:74;;25808:93;25897:3;25808:93;:::i;:::-;25926:2;25921:3;25917:12;25910:19;;25569:366;;;:::o;25941:419::-;26107:4;26145:2;26134:9;26130:18;26122:26;;26194:9;26188:4;26184:20;26180:1;26169:9;26165:17;26158:47;26222:131;26348:4;26222:131;:::i;:::-;26214:139;;25941:419;;;:::o;26366:160::-;26506:12;26502:1;26494:6;26490:14;26483:36;26366:160;:::o;26532:366::-;26674:3;26695:67;26759:2;26754:3;26695:67;:::i;:::-;26688:74;;26771:93;26860:3;26771:93;:::i;:::-;26889:2;26884:3;26880:12;26873:19;;26532:366;;;:::o;26904:419::-;27070:4;27108:2;27097:9;27093:18;27085:26;;27157:9;27151:4;27147:20;27143:1;27132:9;27128:17;27121:47;27185:131;27311:4;27185:131;:::i;:::-;27177:139;;26904:419;;;:::o;27329:348::-;27369:7;27392:20;27410:1;27392:20;:::i;:::-;27387:25;;27426:20;27444:1;27426:20;:::i;:::-;27421:25;;27614:1;27546:66;27542:74;27539:1;27536:81;27531:1;27524:9;27517:17;27513:105;27510:131;;;27621:18;;:::i;:::-;27510:131;27669:1;27666;27662:9;27651:20;;27329:348;;;;:::o;27683:168::-;27823:20;27819:1;27811:6;27807:14;27800:44;27683:168;:::o;27857:366::-;27999:3;28020:67;28084:2;28079:3;28020:67;:::i;:::-;28013:74;;28096:93;28185:3;28096:93;:::i;:::-;28214:2;28209:3;28205:12;28198:19;;27857:366;;;:::o;28229:419::-;28395:4;28433:2;28422:9;28418:18;28410:26;;28482:9;28476:4;28472:20;28468:1;28457:9;28453:17;28446:47;28510:131;28636:4;28510:131;:::i;:::-;28502:139;;28229:419;;;:::o;28654:172::-;28794:24;28790:1;28782:6;28778:14;28771:48;28654:172;:::o;28832:366::-;28974:3;28995:67;29059:2;29054:3;28995:67;:::i;:::-;28988:74;;29071:93;29160:3;29071:93;:::i;:::-;29189:2;29184:3;29180:12;29173:19;;28832:366;;;:::o;29204:419::-;29370:4;29408:2;29397:9;29393:18;29385:26;;29457:9;29451:4;29447:20;29443:1;29432:9;29428:17;29421:47;29485:131;29611:4;29485:131;:::i;:::-;29477:139;;29204:419;;;:::o;29629:235::-;29769:34;29765:1;29757:6;29753:14;29746:58;29838:18;29833:2;29825:6;29821:15;29814:43;29629:235;:::o;29870:366::-;30012:3;30033:67;30097:2;30092:3;30033:67;:::i;:::-;30026:74;;30109:93;30198:3;30109:93;:::i;:::-;30227:2;30222:3;30218:12;30211:19;;29870:366;;;:::o;30242:419::-;30408:4;30446:2;30435:9;30431:18;30423:26;;30495:9;30489:4;30485:20;30481:1;30470:9;30466:17;30459:47;30523:131;30649:4;30523:131;:::i;:::-;30515:139;;30242:419;;;:::o;30667:148::-;30769:11;30806:3;30791:18;;30667:148;;;;:::o;30821:377::-;30927:3;30955:39;30988:5;30955:39;:::i;:::-;31010:89;31092:6;31087:3;31010:89;:::i;:::-;31003:96;;31108:52;31153:6;31148:3;31141:4;31134:5;31130:16;31108:52;:::i;:::-;31185:6;31180:3;31176:16;31169:23;;30931:267;30821:377;;;;:::o;31228:874::-;31331:3;31368:5;31362:12;31397:36;31423:9;31397:36;:::i;:::-;31449:89;31531:6;31526:3;31449:89;:::i;:::-;31442:96;;31569:1;31558:9;31554:17;31585:1;31580:166;;;;31760:1;31755:341;;;;31547:549;;31580:166;31664:4;31660:9;31649;31645:25;31640:3;31633:38;31726:6;31719:14;31712:22;31704:6;31700:35;31695:3;31691:45;31684:52;;31580:166;;31755:341;31822:38;31854:5;31822:38;:::i;:::-;31882:1;31896:154;31910:6;31907:1;31904:13;31896:154;;;31984:7;31978:14;31974:1;31969:3;31965:11;31958:35;32034:1;32025:7;32021:15;32010:26;;31932:4;31929:1;31925:12;31920:17;;31896:154;;;32079:6;32074:3;32070:16;32063:23;;31762:334;;31547:549;;31335:767;;31228:874;;;;:::o;32108:589::-;32333:3;32355:95;32446:3;32437:6;32355:95;:::i;:::-;32348:102;;32467:95;32558:3;32549:6;32467:95;:::i;:::-;32460:102;;32579:92;32667:3;32658:6;32579:92;:::i;:::-;32572:99;;32688:3;32681:10;;32108:589;;;;;;:::o;32703:225::-;32843:34;32839:1;32831:6;32827:14;32820:58;32912:8;32907:2;32899:6;32895:15;32888:33;32703:225;:::o;32934:366::-;33076:3;33097:67;33161:2;33156:3;33097:67;:::i;:::-;33090:74;;33173:93;33262:3;33173:93;:::i;:::-;33291:2;33286:3;33282:12;33275:19;;32934:366;;;:::o;33306:419::-;33472:4;33510:2;33499:9;33495:18;33487:26;;33559:9;33553:4;33549:20;33545:1;33534:9;33530:17;33523:47;33587:131;33713:4;33587:131;:::i;:::-;33579:139;;33306:419;;;:::o;33731:182::-;33871:34;33867:1;33859:6;33855:14;33848:58;33731:182;:::o;33919:366::-;34061:3;34082:67;34146:2;34141:3;34082:67;:::i;:::-;34075:74;;34158:93;34247:3;34158:93;:::i;:::-;34276:2;34271:3;34267:12;34260:19;;33919:366;;;:::o;34291:419::-;34457:4;34495:2;34484:9;34480:18;34472:26;;34544:9;34538:4;34534:20;34530:1;34519:9;34515:17;34508:47;34572:131;34698:4;34572:131;:::i;:::-;34564:139;;34291:419;;;:::o;34716:98::-;34767:6;34801:5;34795:12;34785:22;;34716:98;;;:::o;34820:168::-;34903:11;34937:6;34932:3;34925:19;34977:4;34972:3;34968:14;34953:29;;34820:168;;;;:::o;34994:360::-;35080:3;35108:38;35140:5;35108:38;:::i;:::-;35162:70;35225:6;35220:3;35162:70;:::i;:::-;35155:77;;35241:52;35286:6;35281:3;35274:4;35267:5;35263:16;35241:52;:::i;:::-;35318:29;35340:6;35318:29;:::i;:::-;35313:3;35309:39;35302:46;;35084:270;34994:360;;;;:::o;35360:640::-;35555:4;35593:3;35582:9;35578:19;35570:27;;35607:71;35675:1;35664:9;35660:17;35651:6;35607:71;:::i;:::-;35688:72;35756:2;35745:9;35741:18;35732:6;35688:72;:::i;:::-;35770;35838:2;35827:9;35823:18;35814:6;35770:72;:::i;:::-;35889:9;35883:4;35879:20;35874:2;35863:9;35859:18;35852:48;35917:76;35988:4;35979:6;35917:76;:::i;:::-;35909:84;;35360:640;;;;;;;:::o;36006:141::-;36062:5;36093:6;36087:13;36078:22;;36109:32;36135:5;36109:32;:::i;:::-;36006:141;;;;:::o;36153:349::-;36222:6;36271:2;36259:9;36250:7;36246:23;36242:32;36239:119;;;36277:79;;:::i;:::-;36239:119;36397:1;36422:63;36477:7;36468:6;36457:9;36453:22;36422:63;:::i;:::-;36412:73;;36368:127;36153:349;;;;:::o;36508:233::-;36547:3;36570:24;36588:5;36570:24;:::i;:::-;36561:33;;36616:66;36609:5;36606:77;36603:103;;36686:18;;:::i;:::-;36603:103;36733:1;36726:5;36722:13;36715:20;;36508:233;;;:::o;36747:180::-;36795:77;36792:1;36785:88;36892:4;36889:1;36882:15;36916:4;36913:1;36906:15;36933:185;36973:1;36990:20;37008:1;36990:20;:::i;:::-;36985:25;;37024:20;37042:1;37024:20;:::i;:::-;37019:25;;37063:1;37053:35;;37068:18;;:::i;:::-;37053:35;37110:1;37107;37103:9;37098:14;;36933:185;;;;:::o;37124:191::-;37164:4;37184:20;37202:1;37184:20;:::i;:::-;37179:25;;37218:20;37236:1;37218:20;:::i;:::-;37213:25;;37257:1;37254;37251:8;37248:34;;;37262:18;;:::i;:::-;37248:34;37307:1;37304;37300:9;37292:17;;37124:191;;;;:::o;37321:176::-;37353:1;37370:20;37388:1;37370:20;:::i;:::-;37365:25;;37404:20;37422:1;37404:20;:::i;:::-;37399:25;;37443:1;37433:35;;37448:18;;:::i;:::-;37433:35;37489:1;37486;37482:9;37477:14;;37321:176;;;;:::o

Swarm Source

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