ETH Price: $2,502.69 (-0.54%)

Token

FSJAL (FSJAL)
 

Overview

Max Total Supply

1,024 FSJAL

Holders

468

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FSJAL
0xb4997db7331bbfb6a0c940a340be68e0a22dcb02
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:
FSJAL

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-31
*/

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

// SPDX-License-Identifier: MIT

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// 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/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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


// File @openzeppelin/contracts/security/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}


// File @openzeppelin/contracts/utils/cryptography/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


// File erc721a/contracts/[email protected]

// Original license: SPDX_License_Identifier: MIT
// ERC721A Contracts v4.2.3
// 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();

    /**
     * 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 payable;

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

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

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

    /**
     * @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/[email protected]

// Original license: SPDX_License_Identifier: MIT
// ERC721A Contracts v4.2.3
// 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 {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    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 payable 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 {
        _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].value`.
        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 payable 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 payable 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 payable 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.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            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`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                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 str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}


// File contracts/FSJAL.sol

// Original license: SPDX_License_Identifier: MIT

pragma solidity >=0.7.0 <0.9.0;
contract FSJAL is ERC721A, Ownable, ReentrancyGuard  {


  string public baseURI;
  string public notRevealedUri;
  uint256 public cost = 0.03 ether;
  uint256 public wlcost = 0.02 ether;
  uint256 public maxSupply = 1024;
  uint256 public WlSupply = 950;
  uint256 public MaxperWallet = 2;
  uint256 public MaxWLMint = 2;
  bool public paused = true;
  bool public revealed = false;
  bool public preSale = true;
  bytes32 public merkleRoot;
  mapping (address => uint256) public PublicMintofUser;
  mapping (address => uint256) public WhitelistedMintofUser;

  constructor(
    string memory _initBaseURI,
    string memory _notRevealedUri
  ) ERC721A("FSJAL", "FSJAL") {
    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, "FSJAL: Contract is paused");
    require(!preSale, "FSJAL: Sale hasn't started yet");
    require(tokens <= MaxperWallet, "FSJAL: max mint amount per Tx exceeded");
    require(totalSupply() + tokens <= maxSupply, "FSJAL: Soldout");
    require(PublicMintofUser[_msgSenderERC721A()] + tokens <= MaxperWallet, "FSJAL: Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "FSJAL: insufficient funds");

       PublicMintofUser[_msgSenderERC721A()] += tokens;
      _safeMint(_msgSenderERC721A(), tokens);
    
  }
/// @dev presale mint for whitelisted
    function presalemint(uint256 tokens, bytes32[] calldata merkleProof) public payable nonReentrant {
    require(!paused, "FSJAL: Contract is paused");
    require(preSale, "FSJAL: Presale hasn't started yet");
    require(MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "FSJAL: You are not Whitelisted");
    require(WhitelistedMintofUser[_msgSenderERC721A()] + tokens <= MaxWLMint, "FSJAL: Max NFT Per Wallet exceeded");
    require(tokens <= MaxWLMint, "FSJAL: max mint per Tx exceeded");
    require(totalSupply() + tokens <= WlSupply, "FSJAL: Whitelist MaxSupply exceeded");
    require(msg.value >= wlcost * tokens, "FSJAL: insufficient funds");

       WhitelistedMintofUser[_msgSenderERC721A()] += tokens;
      _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, _toString(tokenId), ".json"))
        : "";
  }

     /// @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 merkle root for the whitelist phase
  function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

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

  /// @dev change the whitelist max per wallet
    function setWlMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxWLMint = _limit;
  }

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

   /// @dev change the whitelist price(amount need to be in wei)
    function setWlCost(uint256 _newWlCost) public onlyOwner {
    wlcost = _newWlCost;
  }

  /// @dev cut the supply if we don't sell out
    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }

 /// @dev cut the whitelist supply if we don't sell out
    function setwlsupply(uint256 _newsupply) public onlyOwner {
    WlSupply = _newsupply;
  }

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

   /// @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 activate whitelist sale(use booleans true or false)
    function togglePresale(bool _state) external onlyOwner {
        preSale = _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":"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":"MaxWLMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"PublicMintofUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WhitelistedMintofUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WlSupply","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"presalemint","outputs":[],"stateMutability":"payable","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":"payable","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":"payable","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":"_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":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWlCost","type":"uint256"}],"name":"setWlCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWlMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setwlsupply","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":"bool","name":"_state","type":"bool"}],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052666a94d74f430000600c5566470de4df820000600d55610400600e556103b6600f5560026010556002601155600160125f6101000a81548160ff0219169083151502179055505f601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff0219169083151502179055503480156200008b575f80fd5b5060405162004a4938038062004a498339818101604052810190620000b1919062000504565b6040518060400160405280600581526020017f46534a414c0000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f46534a414c00000000000000000000000000000000000000000000000000000081525081600290816200012e9190620007be565b508060039081620001409190620007be565b5062000151620001aa60201b60201c565b5f819055505050620001786200016c620001b260201b60201c565b620001b960201b60201c565b600160098190555062000191826200027c60201b60201c565b620001a281620002a160201b60201c565b505062000920565b5f6001905090565b5f33905090565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200028c620002c660201b60201c565b80600a90816200029d9190620007be565b5050565b620002b1620002c660201b60201c565b80600b9081620002c29190620007be565b5050565b620002d6620001b260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002fc6200035760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000355576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034c9062000900565b60405180910390fd5b565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620003e08262000398565b810181811067ffffffffffffffff82111715620004025762000401620003a8565b5b80604052505050565b5f620004166200037f565b9050620004248282620003d5565b919050565b5f67ffffffffffffffff821115620004465762000445620003a8565b5b620004518262000398565b9050602081019050919050565b5f5b838110156200047d57808201518184015260208101905062000460565b5f8484015250505050565b5f6200049e620004988462000429565b6200040b565b905082815260208101848484011115620004bd57620004bc62000394565b5b620004ca8482856200045e565b509392505050565b5f82601f830112620004e957620004e862000390565b5b8151620004fb84826020860162000488565b91505092915050565b5f80604083850312156200051d576200051c62000388565b5b5f83015167ffffffffffffffff8111156200053d576200053c6200038c565b5b6200054b85828601620004d2565b925050602083015167ffffffffffffffff8111156200056f576200056e6200038c565b5b6200057d85828601620004d2565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620005d657607f821691505b602082108103620005ec57620005eb62000591565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000613565b6200065c868362000613565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620006a6620006a06200069a8462000674565b6200067d565b62000674565b9050919050565b5f819050919050565b620006c18362000686565b620006d9620006d082620006ad565b8484546200061f565b825550505050565b5f90565b620006ef620006e1565b620006fc818484620006b6565b505050565b5b818110156200072357620007175f82620006e5565b60018101905062000702565b5050565b601f82111562000772576200073c81620005f2565b620007478462000604565b8101602085101562000757578190505b6200076f620007668562000604565b83018262000701565b50505b505050565b5f82821c905092915050565b5f620007945f198460080262000777565b1980831691505092915050565b5f620007ae838362000783565b9150826002028217905092915050565b620007c98262000587565b67ffffffffffffffff811115620007e557620007e4620003a8565b5b620007f18254620005be565b620007fe82828562000727565b5f60209050601f83116001811462000834575f84156200081f578287015190505b6200082b8582620007a1565b8655506200089a565b601f1984166200084486620005f2565b5f5b828110156200086d5784890151825560018201915060208501945060208101905062000846565b868310156200088d578489015162000889601f89168262000783565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f620008e8602083620008a2565b9150620008f582620008b2565b602082019050919050565b5f6020820190508181035f8301526200091981620008da565b9050919050565b61411b806200092e5f395ff3fe6080604052600436106102ad575f3560e01c80636c2d3c4f11610174578063b88d4fde116100db578063dc33e68111610094578063f12f6d5d1161006e578063f12f6d5d14610a15578063f2c4ce1e14610a3d578063f2fde38b14610a65578063fff8d2fc14610a8d576102ad565b8063dc33e68114610975578063e268e4d3146109b1578063e985e9c5146109d9576102ad565b8063b88d4fde14610879578063bc63f02e14610895578063bd7a1998146108bd578063bde0608a146108e7578063c87b56dd1461090f578063d5abeb011461094b576102ad565b80638da5cb5b1161012d5780638da5cb5b1461078f578063940cd05b146107b957806395d89b41146107e1578063a0712d681461080b578063a22cb46514610827578063aaec06491461084f576102ad565b80636c2d3c4f1461067357806370a082311461069d578063715018a6146106d95780637cb64759146106ef5780638462151c146107175780638b14966b14610753576102ad565b80632eb4a7ab1161021857806355f804b3116101d157806355f804b3146105695780635a7adf7f146105915780635c975abb146105bb5780636352211e146105e55780636b2ce7f1146106215780636c0360eb14610649576102ad565b80632eb4a7ab1461049f5780633ccfd60b146104c957806342842e0e146104d357806344a0d68a146104ef578063458c4f9e14610517578063518302271461053f576102ad565b8063095ea7b31161026a578063095ea7b3146103c15780630bddb613146103dd57806313faede614610407578063149835a01461043157806318160ddd1461045957806323b872dd14610483576102ad565b806301ffc9a7146102b157806302329a29146102ed578063036e4cb51461031557806306fdde0314610331578063081812fc1461035b578063081c8c4414610397575b5f80fd5b3480156102bc575f80fd5b506102d760048036038101906102d29190612be6565b610ac9565b6040516102e49190612c2b565b60405180910390f35b3480156102f8575f80fd5b50610313600480360381019061030e9190612c6e565b610b5a565b005b61032f600480360381019061032a9190612d2d565b610b7e565b005b34801561033c575f80fd5b50610345610ece565b6040516103529190612e14565b60405180910390f35b348015610366575f80fd5b50610381600480360381019061037c9190612e34565b610f5e565b60405161038e9190612e9e565b60405180910390f35b3480156103a2575f80fd5b506103ab610fd8565b6040516103b89190612e14565b60405180910390f35b6103db60048036038101906103d69190612ee1565b611064565b005b3480156103e8575f80fd5b506103f16111a3565b6040516103fe9190612f2e565b60405180910390f35b348015610412575f80fd5b5061041b6111a9565b6040516104289190612f2e565b60405180910390f35b34801561043c575f80fd5b5061045760048036038101906104529190612e34565b6111af565b005b348015610464575f80fd5b5061046d6111c1565b60405161047a9190612f2e565b60405180910390f35b61049d60048036038101906104989190612f47565b6111d6565b005b3480156104aa575f80fd5b506104b36114e4565b6040516104c09190612faf565b60405180910390f35b6104d16114ea565b005b6104ed60048036038101906104e89190612f47565b611554565b005b3480156104fa575f80fd5b5061051560048036038101906105109190612e34565b611573565b005b348015610522575f80fd5b5061053d60048036038101906105389190612e34565b611585565b005b34801561054a575f80fd5b50610553611597565b6040516105609190612c2b565b60405180910390f35b348015610574575f80fd5b5061058f600480360381019061058a91906130f0565b6115aa565b005b34801561059c575f80fd5b506105a56115c5565b6040516105b29190612c2b565b60405180910390f35b3480156105c6575f80fd5b506105cf6115d8565b6040516105dc9190612c2b565b60405180910390f35b3480156105f0575f80fd5b5061060b60048036038101906106069190612e34565b6115ea565b6040516106189190612e9e565b60405180910390f35b34801561062c575f80fd5b5061064760048036038101906106429190612c6e565b6115fb565b005b348015610654575f80fd5b5061065d611620565b60405161066a9190612e14565b60405180910390f35b34801561067e575f80fd5b506106876116ac565b6040516106949190612f2e565b60405180910390f35b3480156106a8575f80fd5b506106c360048036038101906106be9190613137565b6116b2565b6040516106d09190612f2e565b60405180910390f35b3480156106e4575f80fd5b506106ed611767565b005b3480156106fa575f80fd5b506107156004803603810190610710919061318c565b61177a565b005b348015610722575f80fd5b5061073d60048036038101906107389190613137565b61178c565b60405161074a919061326e565b60405180910390f35b34801561075e575f80fd5b5061077960048036038101906107749190613137565b6118c8565b6040516107869190612f2e565b60405180910390f35b34801561079a575f80fd5b506107a36118dd565b6040516107b09190612e9e565b60405180910390f35b3480156107c4575f80fd5b506107df60048036038101906107da9190612c6e565b611905565b005b3480156107ec575f80fd5b506107f561192a565b6040516108029190612e14565b60405180910390f35b61082560048036038101906108209190612e34565b6119ba565b005b348015610832575f80fd5b5061084d6004803603810190610848919061328e565b611c57565b005b34801561085a575f80fd5b50610863611d5d565b6040516108709190612f2e565b60405180910390f35b610893600480360381019061088e919061336a565b611d63565b005b3480156108a0575f80fd5b506108bb60048036038101906108b691906133ea565b611dd5565b005b3480156108c8575f80fd5b506108d1611e52565b6040516108de9190612f2e565b60405180910390f35b3480156108f2575f80fd5b5061090d60048036038101906109089190612e34565b611e58565b005b34801561091a575f80fd5b5061093560048036038101906109309190612e34565b611e6a565b6040516109429190612e14565b60405180910390f35b348015610956575f80fd5b5061095f611fb9565b60405161096c9190612f2e565b60405180910390f35b348015610980575f80fd5b5061099b60048036038101906109969190613137565b611fbf565b6040516109a89190612f2e565b60405180910390f35b3480156109bc575f80fd5b506109d760048036038101906109d29190612e34565b611fd0565b005b3480156109e4575f80fd5b506109ff60048036038101906109fa9190613428565b611fe2565b604051610a0c9190612c2b565b60405180910390f35b348015610a20575f80fd5b50610a3b6004803603810190610a369190612e34565b612070565b005b348015610a48575f80fd5b50610a636004803603810190610a5e91906130f0565b612082565b005b348015610a70575f80fd5b50610a8b6004803603810190610a869190613137565b61209d565b005b348015610a98575f80fd5b50610ab36004803603810190610aae9190613137565b61211f565b604051610ac09190612f2e565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b535750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610b62612134565b8060125f6101000a81548160ff02191690831515021790555050565b610b866121b2565b60125f9054906101000a900460ff1615610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc906134b0565b60405180910390fd5b601260029054906101000a900460ff16610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b9061353e565b60405180910390fd5b610c978282808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f8201169050808301925050505050505060135433604051602001610c7c91906135a1565b60405160208183030381529060405280519060200120612201565b610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd90613605565b60405180910390fd5b6011548360155f610ce5612217565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610d299190613650565b1115610d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d61906136f3565b60405180910390fd5b601154831115610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da69061375b565b60405180910390fd5b600f5483610dbb6111c1565b610dc59190613650565b1115610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd906137e9565b60405180910390fd5b82600d54610e149190613807565b341015610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90613892565b60405180910390fd5b8260155f610e62612217565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610ea99190613650565b92505081905550610ec1610ebb612217565b8461221e565b610ec961223b565b505050565b606060028054610edd906138dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610f09906138dd565b8015610f545780601f10610f2b57610100808354040283529160200191610f54565b820191905f5260205f20905b815481529060010190602001808311610f3757829003601f168201915b5050505050905090565b5f610f6882612245565b610f9e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610fe5906138dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611011906138dd565b801561105c5780601f106110335761010080835404028352916020019161105c565b820191905f5260205f20905b81548152906001019060200180831161103f57829003601f168201915b505050505081565b5f61106e826115ea565b90508073ffffffffffffffffffffffffffffffffffffffff1661108f612217565b73ffffffffffffffffffffffffffffffffffffffff16146110f2576110bb816110b6612217565b611fe2565b6110f1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b600c5481565b6111b7612134565b80600e8190555050565b5f6111ca61229f565b6001545f540303905090565b5f6111e0826122a7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611247576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f806112528461236a565b915091506112688187611263612217565b61238d565b6112b45761127d86611278612217565b611fe2565b6112b3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611319576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61132686868660016123d0565b8015611330575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055506113f8856113d48888876123d6565b7c0200000000000000000000000000000000000000000000000000000000176123fd565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611474575f6001850190505f60045f8381526020019081526020015f205403611472575f548114611471578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114dc8686866001612427565b505050505050565b60135481565b6114f2612134565b6114fa6121b2565b5f479050611506612217565b73ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611548573d5f803e3d5ffd5b505061155261223b565b565b61156e83838360405180602001604052805f815250611d63565b505050565b61157b612134565b80600c8190555050565b61158d612134565b80600f8190555050565b601260019054906101000a900460ff1681565b6115b2612134565b80600a90816115c19190613aaa565b5050565b601260029054906101000a900460ff1681565b60125f9054906101000a900460ff1681565b5f6115f4826122a7565b9050919050565b611603612134565b80601260026101000a81548160ff02191690831515021790555050565b600a805461162d906138dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611659906138dd565b80156116a45780601f1061167b576101008083540402835291602001916116a4565b820191905f5260205f20905b81548152906001019060200180831161168757829003601f168201915b505050505081565b600d5481565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611718576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b61176f612134565b6117785f61242d565b565b611782612134565b8060138190555050565b60605f805f61179a856116b2565b90505f8167ffffffffffffffff8111156117b7576117b6612fcc565b5b6040519080825280602002602001820160405280156117e55781602001602082028036833780820191505090505b5090506117f0612b35565b5f6117f961229f565b90505b8386146118ba5761180c816124f0565b915081604001516118af575f73ffffffffffffffffffffffffffffffffffffffff16825f015173ffffffffffffffffffffffffffffffffffffffff161461185457815f015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118ae57808387806001019850815181106118a1576118a0613b79565b5b6020026020010181815250505b5b8060010190506117fc565b508195505050505050919050565b6015602052805f5260405f205f915090505481565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61190d612134565b80601260016101000a81548160ff02191690831515021790555050565b606060038054611939906138dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611965906138dd565b80156119b05780601f10611987576101008083540402835291602001916119b0565b820191905f5260205f20905b81548152906001019060200180831161199357829003601f168201915b5050505050905090565b6119c26121b2565b60125f9054906101000a900460ff1615611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a08906134b0565b60405180910390fd5b601260029054906101000a900460ff1615611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890613bf0565b60405180910390fd5b601054811115611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90613c7e565b60405180910390fd5b600e5481611ab26111c1565b611abc9190613650565b1115611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490613ce6565b60405180910390fd5b6010548160145f611b0c612217565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b509190613650565b1115611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b88906136f3565b60405180910390fd5b80600c54611b9f9190613807565b341015611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd890613892565b60405180910390fd5b8060145f611bed612217565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611c349190613650565b92505081905550611c4c611c46612217565b8261221e565b611c5461223b565b50565b8060075f611c63612217565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d0c612217565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d519190612c2b565b60405180910390a35050565b60115481565b611d6e8484846111d6565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611dcf57611d9884848484612519565b611dce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611ddd612134565b611de56121b2565b600e5482611df16111c1565b611dfb9190613650565b1115611e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3390613d4e565b60405180910390fd5b611e46818361221e565b611e4e61223b565b5050565b60105481565b611e60612134565b8060118190555050565b6060611e7582612245565b611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab90613ddc565b60405180910390fd5b5f1515601260019054906101000a900460ff16151503611f5e57600b8054611edb906138dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611f07906138dd565b8015611f525780601f10611f2957610100808354040283529160200191611f52565b820191905f5260205f20905b815481529060010190602001808311611f3557829003601f168201915b50505050509050611fb4565b5f611f67612664565b90505f815111611f855760405180602001604052805f815250611fb0565b80611f8f846126f4565b604051602001611fa0929190613e7e565b6040516020818303038152906040525b9150505b919050565b600e5481565b5f611fc982612743565b9050919050565b611fd8612134565b8060108190555050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b612078612134565b80600d8190555050565b61208a612134565b80600b90816120999190613aaa565b5050565b6120a5612134565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210a90613f1c565b60405180910390fd5b61211c8161242d565b50565b6014602052805f5260405f205f915090505481565b61213c612797565b73ffffffffffffffffffffffffffffffffffffffff1661215a6118dd565b73ffffffffffffffffffffffffffffffffffffffff16146121b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a790613f84565b60405180910390fd5b565b6002600954036121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90613fec565b60405180910390fd5b6002600981905550565b5f8261220d858461279e565b1490509392505050565b5f33905090565b612237828260405180602001604052805f8152506127ec565b5050565b6001600981905550565b5f8161224f61229f565b1115801561225d57505f5482105b801561229857505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f6001905090565b5f80829050806122b561229f565b11612333575f54811015612332575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603612330575b5f81036123265760045f836001900393508381526020019081526020015f205490506122ff565b8092505050612365565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86123ec868684612883565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124f8612b35565b61251260045f8481526020019081526020015f205461288b565b9050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261253e612217565b8786866040518563ffffffff1660e01b8152600401612560949392919061405c565b6020604051808303815f875af192505050801561259b57506040513d601f19601f8201168201806040525081019061259891906140ba565b60015b612611573d805f81146125c9576040519150601f19603f3d011682016040523d82523d5f602084013e6125ce565b606091505b505f815103612609576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612673906138dd565b80601f016020809104026020016040519081016040528092919081815260200182805461269f906138dd565b80156126ea5780601f106126c1576101008083540402835291602001916126ea565b820191905f5260205f20905b8154815290600101906020018083116126cd57829003601f168201915b5050505050905090565b606060a060405101806040526020810391505f825281835b60011561272e57600184039350600a81066030018453600a810490508061270c575b50828103602084039350808452505050919050565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f33905090565b5f808290505f5b84518110156127e1576127d2828683815181106127c5576127c4613b79565b5b602002602001015161293f565b915080806001019150506127a5565b508091505092915050565b6127f68383612969565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461287e575f805490505f83820390505b6128325f868380600101945086612519565b612868576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061282057815f541461287b575f80fd5b50505b505050565b5f9392505050565b612893612b35565b81815f019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff16815250505f7c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b5f818310612956576129518284612b12565b612961565b6129608383612b12565b5b905092915050565b5f805490505f82036129a7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129b35f8483856123d0565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550612a2583612a165f865f6123d6565b612a1f85612b26565b176123fd565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114612abf5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050612a86565b505f8203612af9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050612b0d5f848385612427565b505050565b5f825f528160205260405f20905092915050565b5f6001821460e11b9050919050565b60405180608001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f151581526020015f62ffffff1681525090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612bc581612b91565b8114612bcf575f80fd5b50565b5f81359050612be081612bbc565b92915050565b5f60208284031215612bfb57612bfa612b89565b5b5f612c0884828501612bd2565b91505092915050565b5f8115159050919050565b612c2581612c11565b82525050565b5f602082019050612c3e5f830184612c1c565b92915050565b612c4d81612c11565b8114612c57575f80fd5b50565b5f81359050612c6881612c44565b92915050565b5f60208284031215612c8357612c82612b89565b5b5f612c9084828501612c5a565b91505092915050565b5f819050919050565b612cab81612c99565b8114612cb5575f80fd5b50565b5f81359050612cc681612ca2565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112612ced57612cec612ccc565b5b8235905067ffffffffffffffff811115612d0a57612d09612cd0565b5b602083019150836020820283011115612d2657612d25612cd4565b5b9250929050565b5f805f60408486031215612d4457612d43612b89565b5b5f612d5186828701612cb8565b935050602084013567ffffffffffffffff811115612d7257612d71612b8d565b5b612d7e86828701612cd8565b92509250509250925092565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612dc1578082015181840152602081019050612da6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612de682612d8a565b612df08185612d94565b9350612e00818560208601612da4565b612e0981612dcc565b840191505092915050565b5f6020820190508181035f830152612e2c8184612ddc565b905092915050565b5f60208284031215612e4957612e48612b89565b5b5f612e5684828501612cb8565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612e8882612e5f565b9050919050565b612e9881612e7e565b82525050565b5f602082019050612eb15f830184612e8f565b92915050565b612ec081612e7e565b8114612eca575f80fd5b50565b5f81359050612edb81612eb7565b92915050565b5f8060408385031215612ef757612ef6612b89565b5b5f612f0485828601612ecd565b9250506020612f1585828601612cb8565b9150509250929050565b612f2881612c99565b82525050565b5f602082019050612f415f830184612f1f565b92915050565b5f805f60608486031215612f5e57612f5d612b89565b5b5f612f6b86828701612ecd565b9350506020612f7c86828701612ecd565b9250506040612f8d86828701612cb8565b9150509250925092565b5f819050919050565b612fa981612f97565b82525050565b5f602082019050612fc25f830184612fa0565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61300282612dcc565b810181811067ffffffffffffffff8211171561302157613020612fcc565b5b80604052505050565b5f613033612b80565b905061303f8282612ff9565b919050565b5f67ffffffffffffffff82111561305e5761305d612fcc565b5b61306782612dcc565b9050602081019050919050565b828183375f83830152505050565b5f61309461308f84613044565b61302a565b9050828152602081018484840111156130b0576130af612fc8565b5b6130bb848285613074565b509392505050565b5f82601f8301126130d7576130d6612ccc565b5b81356130e7848260208601613082565b91505092915050565b5f6020828403121561310557613104612b89565b5b5f82013567ffffffffffffffff81111561312257613121612b8d565b5b61312e848285016130c3565b91505092915050565b5f6020828403121561314c5761314b612b89565b5b5f61315984828501612ecd565b91505092915050565b61316b81612f97565b8114613175575f80fd5b50565b5f8135905061318681613162565b92915050565b5f602082840312156131a1576131a0612b89565b5b5f6131ae84828501613178565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6131e981612c99565b82525050565b5f6131fa83836131e0565b60208301905092915050565b5f602082019050919050565b5f61321c826131b7565b61322681856131c1565b9350613231836131d1565b805f5b8381101561326157815161324888826131ef565b975061325383613206565b925050600181019050613234565b5085935050505092915050565b5f6020820190508181035f8301526132868184613212565b905092915050565b5f80604083850312156132a4576132a3612b89565b5b5f6132b185828601612ecd565b92505060206132c285828601612c5a565b9150509250929050565b5f67ffffffffffffffff8211156132e6576132e5612fcc565b5b6132ef82612dcc565b9050602081019050919050565b5f61330e613309846132cc565b61302a565b90508281526020810184848401111561332a57613329612fc8565b5b613335848285613074565b509392505050565b5f82601f83011261335157613350612ccc565b5b81356133618482602086016132fc565b91505092915050565b5f805f806080858703121561338257613381612b89565b5b5f61338f87828801612ecd565b94505060206133a087828801612ecd565b93505060406133b187828801612cb8565b925050606085013567ffffffffffffffff8111156133d2576133d1612b8d565b5b6133de8782880161333d565b91505092959194509250565b5f8060408385031215613400576133ff612b89565b5b5f61340d85828601612cb8565b925050602061341e85828601612ecd565b9150509250929050565b5f806040838503121561343e5761343d612b89565b5b5f61344b85828601612ecd565b925050602061345c85828601612ecd565b9150509250929050565b7f46534a414c3a20436f6e747261637420697320706175736564000000000000005f82015250565b5f61349a601983612d94565b91506134a582613466565b602082019050919050565b5f6020820190508181035f8301526134c78161348e565b9050919050565b7f46534a414c3a2050726573616c65206861736e277420737461727465642079655f8201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b5f613528602183612d94565b9150613533826134ce565b604082019050919050565b5f6020820190508181035f8301526135558161351c565b9050919050565b5f8160601b9050919050565b5f6135728261355c565b9050919050565b5f61358382613568565b9050919050565b61359b61359682612e7e565b613579565b82525050565b5f6135ac828461358a565b60148201915081905092915050565b7f46534a414c3a20596f7520617265206e6f742057686974656c697374656400005f82015250565b5f6135ef601e83612d94565b91506135fa826135bb565b602082019050919050565b5f6020820190508181035f83015261361c816135e3565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61365a82612c99565b915061366583612c99565b925082820190508082111561367d5761367c613623565b5b92915050565b7f46534a414c3a204d6178204e4654205065722057616c6c6574206578636565645f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f6136dd602283612d94565b91506136e882613683565b604082019050919050565b5f6020820190508181035f83015261370a816136d1565b9050919050565b7f46534a414c3a206d6178206d696e7420706572205478206578636565646564005f82015250565b5f613745601f83612d94565b915061375082613711565b602082019050919050565b5f6020820190508181035f83015261377281613739565b9050919050565b7f46534a414c3a2057686974656c697374204d6178537570706c792065786365655f8201527f6465640000000000000000000000000000000000000000000000000000000000602082015250565b5f6137d3602383612d94565b91506137de82613779565b604082019050919050565b5f6020820190508181035f830152613800816137c7565b9050919050565b5f61381182612c99565b915061381c83612c99565b925082820261382a81612c99565b9150828204841483151761384157613840613623565b5b5092915050565b7f46534a414c3a20696e73756666696369656e742066756e6473000000000000005f82015250565b5f61387c601983612d94565b915061388782613848565b602082019050919050565b5f6020820190508181035f8301526138a981613870565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806138f457607f821691505b602082108103613907576139066138b0565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026139697fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261392e565b613973868361392e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6139ae6139a96139a484612c99565b61398b565b612c99565b9050919050565b5f819050919050565b6139c783613994565b6139db6139d3826139b5565b84845461393a565b825550505050565b5f90565b6139ef6139e3565b6139fa8184846139be565b505050565b5b81811015613a1d57613a125f826139e7565b600181019050613a00565b5050565b601f821115613a6257613a338161390d565b613a3c8461391f565b81016020851015613a4b578190505b613a5f613a578561391f565b8301826139ff565b50505b505050565b5f82821c905092915050565b5f613a825f1984600802613a67565b1980831691505092915050565b5f613a9a8383613a73565b9150826002028217905092915050565b613ab382612d8a565b67ffffffffffffffff811115613acc57613acb612fcc565b5b613ad682546138dd565b613ae1828285613a21565b5f60209050601f831160018114613b12575f8415613b00578287015190505b613b0a8582613a8f565b865550613b71565b601f198416613b208661390d565b5f5b82811015613b4757848901518255600182019150602085019450602081019050613b22565b86831015613b645784890151613b60601f891682613a73565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f46534a414c3a2053616c65206861736e277420737461727465642079657400005f82015250565b5f613bda601e83612d94565b9150613be582613ba6565b602082019050919050565b5f6020820190508181035f830152613c0781613bce565b9050919050565b7f46534a414c3a206d6178206d696e7420616d6f756e74207065722054782065785f8201527f6365656465640000000000000000000000000000000000000000000000000000602082015250565b5f613c68602683612d94565b9150613c7382613c0e565b604082019050919050565b5f6020820190508181035f830152613c9581613c5c565b9050919050565b7f46534a414c3a20536f6c646f75740000000000000000000000000000000000005f82015250565b5f613cd0600e83612d94565b9150613cdb82613c9c565b602082019050919050565b5f6020820190508181035f830152613cfd81613cc4565b9050919050565b7f6d6178204e4654206c696d6974206578636565646564000000000000000000005f82015250565b5f613d38601683612d94565b9150613d4382613d04565b602082019050919050565b5f6020820190508181035f830152613d6581613d2c565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e5f8201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b5f613dc6603083612d94565b9150613dd182613d6c565b604082019050919050565b5f6020820190508181035f830152613df381613dba565b9050919050565b5f81905092915050565b5f613e0e82612d8a565b613e188185613dfa565b9350613e28818560208601612da4565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f613e68600583613dfa565b9150613e7382613e34565b600582019050919050565b5f613e898285613e04565b9150613e958284613e04565b9150613ea082613e5c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613f06602683612d94565b9150613f1182613eac565b604082019050919050565b5f6020820190508181035f830152613f3381613efa565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613f6e602083612d94565b9150613f7982613f3a565b602082019050919050565b5f6020820190508181035f830152613f9b81613f62565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f613fd6601f83612d94565b9150613fe182613fa2565b602082019050919050565b5f6020820190508181035f83015261400381613fca565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f61402e8261400a565b6140388185614014565b9350614048818560208601612da4565b61405181612dcc565b840191505092915050565b5f60808201905061406f5f830187612e8f565b61407c6020830186612e8f565b6140896040830185612f1f565b818103606083015261409b8184614024565b905095945050505050565b5f815190506140b481612bbc565b92915050565b5f602082840312156140cf576140ce612b89565b5b5f6140dc848285016140a6565b9150509291505056fea2646970667358221220f560ad2ff983587df1bfdb2b3155367ad600589511d2ea56bb3cdbef9ba1d48e64736f6c63430008160033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000006868747470733a2f2f626166796265696478696c64776c74656e6b73346666697a6e6c376d35747a357a646137323477697a626e6a686c667536656e696d3479756f77342e697066732e6e667473746f726167652e6c696e6b2f756e72657665616c65642e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ad575f3560e01c80636c2d3c4f11610174578063b88d4fde116100db578063dc33e68111610094578063f12f6d5d1161006e578063f12f6d5d14610a15578063f2c4ce1e14610a3d578063f2fde38b14610a65578063fff8d2fc14610a8d576102ad565b8063dc33e68114610975578063e268e4d3146109b1578063e985e9c5146109d9576102ad565b8063b88d4fde14610879578063bc63f02e14610895578063bd7a1998146108bd578063bde0608a146108e7578063c87b56dd1461090f578063d5abeb011461094b576102ad565b80638da5cb5b1161012d5780638da5cb5b1461078f578063940cd05b146107b957806395d89b41146107e1578063a0712d681461080b578063a22cb46514610827578063aaec06491461084f576102ad565b80636c2d3c4f1461067357806370a082311461069d578063715018a6146106d95780637cb64759146106ef5780638462151c146107175780638b14966b14610753576102ad565b80632eb4a7ab1161021857806355f804b3116101d157806355f804b3146105695780635a7adf7f146105915780635c975abb146105bb5780636352211e146105e55780636b2ce7f1146106215780636c0360eb14610649576102ad565b80632eb4a7ab1461049f5780633ccfd60b146104c957806342842e0e146104d357806344a0d68a146104ef578063458c4f9e14610517578063518302271461053f576102ad565b8063095ea7b31161026a578063095ea7b3146103c15780630bddb613146103dd57806313faede614610407578063149835a01461043157806318160ddd1461045957806323b872dd14610483576102ad565b806301ffc9a7146102b157806302329a29146102ed578063036e4cb51461031557806306fdde0314610331578063081812fc1461035b578063081c8c4414610397575b5f80fd5b3480156102bc575f80fd5b506102d760048036038101906102d29190612be6565b610ac9565b6040516102e49190612c2b565b60405180910390f35b3480156102f8575f80fd5b50610313600480360381019061030e9190612c6e565b610b5a565b005b61032f600480360381019061032a9190612d2d565b610b7e565b005b34801561033c575f80fd5b50610345610ece565b6040516103529190612e14565b60405180910390f35b348015610366575f80fd5b50610381600480360381019061037c9190612e34565b610f5e565b60405161038e9190612e9e565b60405180910390f35b3480156103a2575f80fd5b506103ab610fd8565b6040516103b89190612e14565b60405180910390f35b6103db60048036038101906103d69190612ee1565b611064565b005b3480156103e8575f80fd5b506103f16111a3565b6040516103fe9190612f2e565b60405180910390f35b348015610412575f80fd5b5061041b6111a9565b6040516104289190612f2e565b60405180910390f35b34801561043c575f80fd5b5061045760048036038101906104529190612e34565b6111af565b005b348015610464575f80fd5b5061046d6111c1565b60405161047a9190612f2e565b60405180910390f35b61049d60048036038101906104989190612f47565b6111d6565b005b3480156104aa575f80fd5b506104b36114e4565b6040516104c09190612faf565b60405180910390f35b6104d16114ea565b005b6104ed60048036038101906104e89190612f47565b611554565b005b3480156104fa575f80fd5b5061051560048036038101906105109190612e34565b611573565b005b348015610522575f80fd5b5061053d60048036038101906105389190612e34565b611585565b005b34801561054a575f80fd5b50610553611597565b6040516105609190612c2b565b60405180910390f35b348015610574575f80fd5b5061058f600480360381019061058a91906130f0565b6115aa565b005b34801561059c575f80fd5b506105a56115c5565b6040516105b29190612c2b565b60405180910390f35b3480156105c6575f80fd5b506105cf6115d8565b6040516105dc9190612c2b565b60405180910390f35b3480156105f0575f80fd5b5061060b60048036038101906106069190612e34565b6115ea565b6040516106189190612e9e565b60405180910390f35b34801561062c575f80fd5b5061064760048036038101906106429190612c6e565b6115fb565b005b348015610654575f80fd5b5061065d611620565b60405161066a9190612e14565b60405180910390f35b34801561067e575f80fd5b506106876116ac565b6040516106949190612f2e565b60405180910390f35b3480156106a8575f80fd5b506106c360048036038101906106be9190613137565b6116b2565b6040516106d09190612f2e565b60405180910390f35b3480156106e4575f80fd5b506106ed611767565b005b3480156106fa575f80fd5b506107156004803603810190610710919061318c565b61177a565b005b348015610722575f80fd5b5061073d60048036038101906107389190613137565b61178c565b60405161074a919061326e565b60405180910390f35b34801561075e575f80fd5b5061077960048036038101906107749190613137565b6118c8565b6040516107869190612f2e565b60405180910390f35b34801561079a575f80fd5b506107a36118dd565b6040516107b09190612e9e565b60405180910390f35b3480156107c4575f80fd5b506107df60048036038101906107da9190612c6e565b611905565b005b3480156107ec575f80fd5b506107f561192a565b6040516108029190612e14565b60405180910390f35b61082560048036038101906108209190612e34565b6119ba565b005b348015610832575f80fd5b5061084d6004803603810190610848919061328e565b611c57565b005b34801561085a575f80fd5b50610863611d5d565b6040516108709190612f2e565b60405180910390f35b610893600480360381019061088e919061336a565b611d63565b005b3480156108a0575f80fd5b506108bb60048036038101906108b691906133ea565b611dd5565b005b3480156108c8575f80fd5b506108d1611e52565b6040516108de9190612f2e565b60405180910390f35b3480156108f2575f80fd5b5061090d60048036038101906109089190612e34565b611e58565b005b34801561091a575f80fd5b5061093560048036038101906109309190612e34565b611e6a565b6040516109429190612e14565b60405180910390f35b348015610956575f80fd5b5061095f611fb9565b60405161096c9190612f2e565b60405180910390f35b348015610980575f80fd5b5061099b60048036038101906109969190613137565b611fbf565b6040516109a89190612f2e565b60405180910390f35b3480156109bc575f80fd5b506109d760048036038101906109d29190612e34565b611fd0565b005b3480156109e4575f80fd5b506109ff60048036038101906109fa9190613428565b611fe2565b604051610a0c9190612c2b565b60405180910390f35b348015610a20575f80fd5b50610a3b6004803603810190610a369190612e34565b612070565b005b348015610a48575f80fd5b50610a636004803603810190610a5e91906130f0565b612082565b005b348015610a70575f80fd5b50610a8b6004803603810190610a869190613137565b61209d565b005b348015610a98575f80fd5b50610ab36004803603810190610aae9190613137565b61211f565b604051610ac09190612f2e565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b535750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610b62612134565b8060125f6101000a81548160ff02191690831515021790555050565b610b866121b2565b60125f9054906101000a900460ff1615610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc906134b0565b60405180910390fd5b601260029054906101000a900460ff16610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b9061353e565b60405180910390fd5b610c978282808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f8201169050808301925050505050505060135433604051602001610c7c91906135a1565b60405160208183030381529060405280519060200120612201565b610cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccd90613605565b60405180910390fd5b6011548360155f610ce5612217565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610d299190613650565b1115610d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d61906136f3565b60405180910390fd5b601154831115610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da69061375b565b60405180910390fd5b600f5483610dbb6111c1565b610dc59190613650565b1115610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd906137e9565b60405180910390fd5b82600d54610e149190613807565b341015610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90613892565b60405180910390fd5b8260155f610e62612217565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610ea99190613650565b92505081905550610ec1610ebb612217565b8461221e565b610ec961223b565b505050565b606060028054610edd906138dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610f09906138dd565b8015610f545780601f10610f2b57610100808354040283529160200191610f54565b820191905f5260205f20905b815481529060010190602001808311610f3757829003601f168201915b5050505050905090565b5f610f6882612245565b610f9e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b8054610fe5906138dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611011906138dd565b801561105c5780601f106110335761010080835404028352916020019161105c565b820191905f5260205f20905b81548152906001019060200180831161103f57829003601f168201915b505050505081565b5f61106e826115ea565b90508073ffffffffffffffffffffffffffffffffffffffff1661108f612217565b73ffffffffffffffffffffffffffffffffffffffff16146110f2576110bb816110b6612217565b611fe2565b6110f1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600f5481565b600c5481565b6111b7612134565b80600e8190555050565b5f6111ca61229f565b6001545f540303905090565b5f6111e0826122a7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611247576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f806112528461236a565b915091506112688187611263612217565b61238d565b6112b45761127d86611278612217565b611fe2565b6112b3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611319576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61132686868660016123d0565b8015611330575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055506113f8856113d48888876123d6565b7c0200000000000000000000000000000000000000000000000000000000176123fd565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611474575f6001850190505f60045f8381526020019081526020015f205403611472575f548114611471578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114dc8686866001612427565b505050505050565b60135481565b6114f2612134565b6114fa6121b2565b5f479050611506612217565b73ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015611548573d5f803e3d5ffd5b505061155261223b565b565b61156e83838360405180602001604052805f815250611d63565b505050565b61157b612134565b80600c8190555050565b61158d612134565b80600f8190555050565b601260019054906101000a900460ff1681565b6115b2612134565b80600a90816115c19190613aaa565b5050565b601260029054906101000a900460ff1681565b60125f9054906101000a900460ff1681565b5f6115f4826122a7565b9050919050565b611603612134565b80601260026101000a81548160ff02191690831515021790555050565b600a805461162d906138dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611659906138dd565b80156116a45780601f1061167b576101008083540402835291602001916116a4565b820191905f5260205f20905b81548152906001019060200180831161168757829003601f168201915b505050505081565b600d5481565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611718576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b61176f612134565b6117785f61242d565b565b611782612134565b8060138190555050565b60605f805f61179a856116b2565b90505f8167ffffffffffffffff8111156117b7576117b6612fcc565b5b6040519080825280602002602001820160405280156117e55781602001602082028036833780820191505090505b5090506117f0612b35565b5f6117f961229f565b90505b8386146118ba5761180c816124f0565b915081604001516118af575f73ffffffffffffffffffffffffffffffffffffffff16825f015173ffffffffffffffffffffffffffffffffffffffff161461185457815f015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118ae57808387806001019850815181106118a1576118a0613b79565b5b6020026020010181815250505b5b8060010190506117fc565b508195505050505050919050565b6015602052805f5260405f205f915090505481565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61190d612134565b80601260016101000a81548160ff02191690831515021790555050565b606060038054611939906138dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611965906138dd565b80156119b05780601f10611987576101008083540402835291602001916119b0565b820191905f5260205f20905b81548152906001019060200180831161199357829003601f168201915b5050505050905090565b6119c26121b2565b60125f9054906101000a900460ff1615611a11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a08906134b0565b60405180910390fd5b601260029054906101000a900460ff1615611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890613bf0565b60405180910390fd5b601054811115611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d90613c7e565b60405180910390fd5b600e5481611ab26111c1565b611abc9190613650565b1115611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490613ce6565b60405180910390fd5b6010548160145f611b0c612217565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611b509190613650565b1115611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b88906136f3565b60405180910390fd5b80600c54611b9f9190613807565b341015611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd890613892565b60405180910390fd5b8060145f611bed612217565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611c349190613650565b92505081905550611c4c611c46612217565b8261221e565b611c5461223b565b50565b8060075f611c63612217565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d0c612217565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d519190612c2b565b60405180910390a35050565b60115481565b611d6e8484846111d6565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14611dcf57611d9884848484612519565b611dce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611ddd612134565b611de56121b2565b600e5482611df16111c1565b611dfb9190613650565b1115611e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3390613d4e565b60405180910390fd5b611e46818361221e565b611e4e61223b565b5050565b60105481565b611e60612134565b8060118190555050565b6060611e7582612245565b611eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eab90613ddc565b60405180910390fd5b5f1515601260019054906101000a900460ff16151503611f5e57600b8054611edb906138dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611f07906138dd565b8015611f525780601f10611f2957610100808354040283529160200191611f52565b820191905f5260205f20905b815481529060010190602001808311611f3557829003601f168201915b50505050509050611fb4565b5f611f67612664565b90505f815111611f855760405180602001604052805f815250611fb0565b80611f8f846126f4565b604051602001611fa0929190613e7e565b6040516020818303038152906040525b9150505b919050565b600e5481565b5f611fc982612743565b9050919050565b611fd8612134565b8060108190555050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b612078612134565b80600d8190555050565b61208a612134565b80600b90816120999190613aaa565b5050565b6120a5612134565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210a90613f1c565b60405180910390fd5b61211c8161242d565b50565b6014602052805f5260405f205f915090505481565b61213c612797565b73ffffffffffffffffffffffffffffffffffffffff1661215a6118dd565b73ffffffffffffffffffffffffffffffffffffffff16146121b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a790613f84565b60405180910390fd5b565b6002600954036121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90613fec565b60405180910390fd5b6002600981905550565b5f8261220d858461279e565b1490509392505050565b5f33905090565b612237828260405180602001604052805f8152506127ec565b5050565b6001600981905550565b5f8161224f61229f565b1115801561225d57505f5482105b801561229857505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f6001905090565b5f80829050806122b561229f565b11612333575f54811015612332575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603612330575b5f81036123265760045f836001900393508381526020019081526020015f205490506122ff565b8092505050612365565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86123ec868684612883565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124f8612b35565b61251260045f8481526020019081526020015f205461288b565b9050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261253e612217565b8786866040518563ffffffff1660e01b8152600401612560949392919061405c565b6020604051808303815f875af192505050801561259b57506040513d601f19601f8201168201806040525081019061259891906140ba565b60015b612611573d805f81146125c9576040519150601f19603f3d011682016040523d82523d5f602084013e6125ce565b606091505b505f815103612609576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612673906138dd565b80601f016020809104026020016040519081016040528092919081815260200182805461269f906138dd565b80156126ea5780601f106126c1576101008083540402835291602001916126ea565b820191905f5260205f20905b8154815290600101906020018083116126cd57829003601f168201915b5050505050905090565b606060a060405101806040526020810391505f825281835b60011561272e57600184039350600a81066030018453600a810490508061270c575b50828103602084039350808452505050919050565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f33905090565b5f808290505f5b84518110156127e1576127d2828683815181106127c5576127c4613b79565b5b602002602001015161293f565b915080806001019150506127a5565b508091505092915050565b6127f68383612969565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461287e575f805490505f83820390505b6128325f868380600101945086612519565b612868576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061282057815f541461287b575f80fd5b50505b505050565b5f9392505050565b612893612b35565b81815f019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff16815250505f7c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b5f818310612956576129518284612b12565b612961565b6129608383612b12565b5b905092915050565b5f805490505f82036129a7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129b35f8483856123d0565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550612a2583612a165f865f6123d6565b612a1f85612b26565b176123fd565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114612abf5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050612a86565b505f8203612af9576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050612b0d5f848385612427565b505050565b5f825f528160205260405f20905092915050565b5f6001821460e11b9050919050565b60405180608001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f67ffffffffffffffff1681526020015f151581526020015f62ffffff1681525090565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612bc581612b91565b8114612bcf575f80fd5b50565b5f81359050612be081612bbc565b92915050565b5f60208284031215612bfb57612bfa612b89565b5b5f612c0884828501612bd2565b91505092915050565b5f8115159050919050565b612c2581612c11565b82525050565b5f602082019050612c3e5f830184612c1c565b92915050565b612c4d81612c11565b8114612c57575f80fd5b50565b5f81359050612c6881612c44565b92915050565b5f60208284031215612c8357612c82612b89565b5b5f612c9084828501612c5a565b91505092915050565b5f819050919050565b612cab81612c99565b8114612cb5575f80fd5b50565b5f81359050612cc681612ca2565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f840112612ced57612cec612ccc565b5b8235905067ffffffffffffffff811115612d0a57612d09612cd0565b5b602083019150836020820283011115612d2657612d25612cd4565b5b9250929050565b5f805f60408486031215612d4457612d43612b89565b5b5f612d5186828701612cb8565b935050602084013567ffffffffffffffff811115612d7257612d71612b8d565b5b612d7e86828701612cd8565b92509250509250925092565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612dc1578082015181840152602081019050612da6565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612de682612d8a565b612df08185612d94565b9350612e00818560208601612da4565b612e0981612dcc565b840191505092915050565b5f6020820190508181035f830152612e2c8184612ddc565b905092915050565b5f60208284031215612e4957612e48612b89565b5b5f612e5684828501612cb8565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612e8882612e5f565b9050919050565b612e9881612e7e565b82525050565b5f602082019050612eb15f830184612e8f565b92915050565b612ec081612e7e565b8114612eca575f80fd5b50565b5f81359050612edb81612eb7565b92915050565b5f8060408385031215612ef757612ef6612b89565b5b5f612f0485828601612ecd565b9250506020612f1585828601612cb8565b9150509250929050565b612f2881612c99565b82525050565b5f602082019050612f415f830184612f1f565b92915050565b5f805f60608486031215612f5e57612f5d612b89565b5b5f612f6b86828701612ecd565b9350506020612f7c86828701612ecd565b9250506040612f8d86828701612cb8565b9150509250925092565b5f819050919050565b612fa981612f97565b82525050565b5f602082019050612fc25f830184612fa0565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61300282612dcc565b810181811067ffffffffffffffff8211171561302157613020612fcc565b5b80604052505050565b5f613033612b80565b905061303f8282612ff9565b919050565b5f67ffffffffffffffff82111561305e5761305d612fcc565b5b61306782612dcc565b9050602081019050919050565b828183375f83830152505050565b5f61309461308f84613044565b61302a565b9050828152602081018484840111156130b0576130af612fc8565b5b6130bb848285613074565b509392505050565b5f82601f8301126130d7576130d6612ccc565b5b81356130e7848260208601613082565b91505092915050565b5f6020828403121561310557613104612b89565b5b5f82013567ffffffffffffffff81111561312257613121612b8d565b5b61312e848285016130c3565b91505092915050565b5f6020828403121561314c5761314b612b89565b5b5f61315984828501612ecd565b91505092915050565b61316b81612f97565b8114613175575f80fd5b50565b5f8135905061318681613162565b92915050565b5f602082840312156131a1576131a0612b89565b5b5f6131ae84828501613178565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6131e981612c99565b82525050565b5f6131fa83836131e0565b60208301905092915050565b5f602082019050919050565b5f61321c826131b7565b61322681856131c1565b9350613231836131d1565b805f5b8381101561326157815161324888826131ef565b975061325383613206565b925050600181019050613234565b5085935050505092915050565b5f6020820190508181035f8301526132868184613212565b905092915050565b5f80604083850312156132a4576132a3612b89565b5b5f6132b185828601612ecd565b92505060206132c285828601612c5a565b9150509250929050565b5f67ffffffffffffffff8211156132e6576132e5612fcc565b5b6132ef82612dcc565b9050602081019050919050565b5f61330e613309846132cc565b61302a565b90508281526020810184848401111561332a57613329612fc8565b5b613335848285613074565b509392505050565b5f82601f83011261335157613350612ccc565b5b81356133618482602086016132fc565b91505092915050565b5f805f806080858703121561338257613381612b89565b5b5f61338f87828801612ecd565b94505060206133a087828801612ecd565b93505060406133b187828801612cb8565b925050606085013567ffffffffffffffff8111156133d2576133d1612b8d565b5b6133de8782880161333d565b91505092959194509250565b5f8060408385031215613400576133ff612b89565b5b5f61340d85828601612cb8565b925050602061341e85828601612ecd565b9150509250929050565b5f806040838503121561343e5761343d612b89565b5b5f61344b85828601612ecd565b925050602061345c85828601612ecd565b9150509250929050565b7f46534a414c3a20436f6e747261637420697320706175736564000000000000005f82015250565b5f61349a601983612d94565b91506134a582613466565b602082019050919050565b5f6020820190508181035f8301526134c78161348e565b9050919050565b7f46534a414c3a2050726573616c65206861736e277420737461727465642079655f8201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b5f613528602183612d94565b9150613533826134ce565b604082019050919050565b5f6020820190508181035f8301526135558161351c565b9050919050565b5f8160601b9050919050565b5f6135728261355c565b9050919050565b5f61358382613568565b9050919050565b61359b61359682612e7e565b613579565b82525050565b5f6135ac828461358a565b60148201915081905092915050565b7f46534a414c3a20596f7520617265206e6f742057686974656c697374656400005f82015250565b5f6135ef601e83612d94565b91506135fa826135bb565b602082019050919050565b5f6020820190508181035f83015261361c816135e3565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61365a82612c99565b915061366583612c99565b925082820190508082111561367d5761367c613623565b5b92915050565b7f46534a414c3a204d6178204e4654205065722057616c6c6574206578636565645f8201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b5f6136dd602283612d94565b91506136e882613683565b604082019050919050565b5f6020820190508181035f83015261370a816136d1565b9050919050565b7f46534a414c3a206d6178206d696e7420706572205478206578636565646564005f82015250565b5f613745601f83612d94565b915061375082613711565b602082019050919050565b5f6020820190508181035f83015261377281613739565b9050919050565b7f46534a414c3a2057686974656c697374204d6178537570706c792065786365655f8201527f6465640000000000000000000000000000000000000000000000000000000000602082015250565b5f6137d3602383612d94565b91506137de82613779565b604082019050919050565b5f6020820190508181035f830152613800816137c7565b9050919050565b5f61381182612c99565b915061381c83612c99565b925082820261382a81612c99565b9150828204841483151761384157613840613623565b5b5092915050565b7f46534a414c3a20696e73756666696369656e742066756e6473000000000000005f82015250565b5f61387c601983612d94565b915061388782613848565b602082019050919050565b5f6020820190508181035f8301526138a981613870565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806138f457607f821691505b602082108103613907576139066138b0565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026139697fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261392e565b613973868361392e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6139ae6139a96139a484612c99565b61398b565b612c99565b9050919050565b5f819050919050565b6139c783613994565b6139db6139d3826139b5565b84845461393a565b825550505050565b5f90565b6139ef6139e3565b6139fa8184846139be565b505050565b5b81811015613a1d57613a125f826139e7565b600181019050613a00565b5050565b601f821115613a6257613a338161390d565b613a3c8461391f565b81016020851015613a4b578190505b613a5f613a578561391f565b8301826139ff565b50505b505050565b5f82821c905092915050565b5f613a825f1984600802613a67565b1980831691505092915050565b5f613a9a8383613a73565b9150826002028217905092915050565b613ab382612d8a565b67ffffffffffffffff811115613acc57613acb612fcc565b5b613ad682546138dd565b613ae1828285613a21565b5f60209050601f831160018114613b12575f8415613b00578287015190505b613b0a8582613a8f565b865550613b71565b601f198416613b208661390d565b5f5b82811015613b4757848901518255600182019150602085019450602081019050613b22565b86831015613b645784890151613b60601f891682613a73565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f46534a414c3a2053616c65206861736e277420737461727465642079657400005f82015250565b5f613bda601e83612d94565b9150613be582613ba6565b602082019050919050565b5f6020820190508181035f830152613c0781613bce565b9050919050565b7f46534a414c3a206d6178206d696e7420616d6f756e74207065722054782065785f8201527f6365656465640000000000000000000000000000000000000000000000000000602082015250565b5f613c68602683612d94565b9150613c7382613c0e565b604082019050919050565b5f6020820190508181035f830152613c9581613c5c565b9050919050565b7f46534a414c3a20536f6c646f75740000000000000000000000000000000000005f82015250565b5f613cd0600e83612d94565b9150613cdb82613c9c565b602082019050919050565b5f6020820190508181035f830152613cfd81613cc4565b9050919050565b7f6d6178204e4654206c696d6974206578636565646564000000000000000000005f82015250565b5f613d38601683612d94565b9150613d4382613d04565b602082019050919050565b5f6020820190508181035f830152613d6581613d2c565b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e5f8201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b5f613dc6603083612d94565b9150613dd182613d6c565b604082019050919050565b5f6020820190508181035f830152613df381613dba565b9050919050565b5f81905092915050565b5f613e0e82612d8a565b613e188185613dfa565b9350613e28818560208601612da4565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f613e68600583613dfa565b9150613e7382613e34565b600582019050919050565b5f613e898285613e04565b9150613e958284613e04565b9150613ea082613e5c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613f06602683612d94565b9150613f1182613eac565b604082019050919050565b5f6020820190508181035f830152613f3381613efa565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613f6e602083612d94565b9150613f7982613f3a565b602082019050919050565b5f6020820190508181035f830152613f9b81613f62565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f613fd6601f83612d94565b9150613fe182613fa2565b602082019050919050565b5f6020820190508181035f83015261400381613fca565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f61402e8261400a565b6140388185614014565b9350614048818560208601612da4565b61405181612dcc565b840191505092915050565b5f60808201905061406f5f830187612e8f565b61407c6020830186612e8f565b6140896040830185612f1f565b818103606083015261409b8184614024565b905095945050505050565b5f815190506140b481612bbc565b92915050565b5f602082840312156140cf576140ce612b89565b5b5f6140dc848285016140a6565b9150509291505056fea2646970667358221220f560ad2ff983587df1bfdb2b3155367ad600589511d2ea56bb3cdbef9ba1d48e64736f6c63430008160033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000006868747470733a2f2f626166796265696478696c64776c74656e6b73346666697a6e6c376d35747a357a646137323477697a626e6a686c667536656e696d3479756f77342e697066732e6e667473746f726167652e6c696e6b2f756e72657665616c65642e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://bafybeidxildwltenks4ffiznl7m5tz5zda724wizbnjhlfu6enim4yuow4.ipfs.nftstorage.link/unrevealed.json
Arg [1] : _notRevealedUri (string):

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000068
Arg [3] : 68747470733a2f2f626166796265696478696c64776c74656e6b73346666697a
Arg [4] : 6e6c376d35747a357a646137323477697a626e6a686c667536656e696d347975
Arg [5] : 6f77342e697066732e6e667473746f726167652e6c696e6b2f756e7265766561
Arg [6] : 6c65642e6a736f6e000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

68707:6482:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35557:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74724:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70421:816;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36459:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42950:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68795:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42383:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68940:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68828:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74107:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32210:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46589:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69137:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75013:167;;;:::i;:::-;;49510:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73809:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74266:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69073:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74392:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69106:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69043:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37852:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74872:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68769:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68865:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33394:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2979:103;;;;;;;;;;;;;:::i;:::-;;73344:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72296:881;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69224:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2338:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73199:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36635:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69754:622;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43508:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69010:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50301:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71292:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68974:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73649:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71567:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68904:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72124:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73501:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43899:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73963:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74524:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3237:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69167:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35557:639;35642:4;35981:10;35966:25;;:11;:25;;;;:102;;;;36058:10;36043:25;;:11;:25;;;;35966:102;:179;;;;36135:10;36120:25;;:11;:25;;;;35966:179;35946:199;;35557:639;;;:::o;74724:73::-;2224:13;:11;:13::i;:::-;74785:6:::1;74776;;:15;;;;;;;;;;;;;;;;;;74724:73:::0;:::o;70421:816::-;6198:21;:19;:21::i;:::-;70534:6:::1;;;;;;;;;;;70533:7;70525:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;70585:7;;;;;;;;;;;70577:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;70645:84;70664:11;;70645:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70677:10;;70716;70699:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;70689:39;;;;;;70645:18;:84::i;:::-;70637:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;70834:9;;70824:6;70779:21;:42;70801:19;:17;:19::i;:::-;70779:42;;;;;;;;;;;;;;;;:51;;;;:::i;:::-;:64;;70771:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;70907:9;;70897:6;:19;;70889:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;70993:8;;70983:6;70967:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:34;;70959:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;71078:6;71069;;:15;;;;:::i;:::-;71056:9;:28;;71048:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;71172:6;71126:21;:42;71148:19;:17;:19::i;:::-;71126:42;;;;;;;;;;;;;;;;:52;;;;;;;:::i;:::-;;;;;;;;71187:38;71197:19;:17;:19::i;:::-;71218:6;71187:9;:38::i;:::-;6242:20:::0;:18;:20::i;:::-;70421:816;;;:::o;36459:100::-;36513:13;36546:5;36539:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36459:100;:::o;42950:218::-;43026:7;43051:16;43059:7;43051;:16::i;:::-;43046:64;;43076:34;;;;;;;;;;;;;;43046:64;43130:15;:24;43146:7;43130:24;;;;;;;;;;;:30;;;;;;;;;;;;43123:37;;42950:218;;;:::o;68795:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42383:408::-;42472:13;42488:16;42496:7;42488;:16::i;:::-;42472:32;;42544:5;42521:28;;:19;:17;:19::i;:::-;:28;;;42517:175;;42569:44;42586:5;42593:19;:17;:19::i;:::-;42569:16;:44::i;:::-;42564:128;;42641:35;;;;;;;;;;;;;;42564:128;42517:175;42737:2;42704:15;:24;42720:7;42704:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;42775:7;42771:2;42755:28;;42764:5;42755:28;;;;;;;;;;;;42461:330;42383:408;;:::o;68940:29::-;;;;:::o;68828:32::-;;;;:::o;74107:94::-;2224:13;:11;:13::i;:::-;74185:10:::1;74173:9;:22;;;;74107:94:::0;:::o;32210:323::-;32271:7;32499:15;:13;:15::i;:::-;32484:12;;32468:13;;:28;:46;32461:53;;32210:323;:::o;46589:2825::-;46731:27;46761;46780:7;46761:18;:27::i;:::-;46731:57;;46846:4;46805:45;;46821:19;46805:45;;;46801:86;;46859:28;;;;;;;;;;;;;;46801:86;46901:27;46930:23;46957:35;46984:7;46957:26;:35::i;:::-;46900:92;;;;47092:68;47117:15;47134:4;47140:19;:17;:19::i;:::-;47092:24;:68::i;:::-;47087:180;;47180:43;47197:4;47203:19;:17;:19::i;:::-;47180:16;:43::i;:::-;47175:92;;47232:35;;;;;;;;;;;;;;47175:92;47087:180;47298:1;47284:16;;:2;:16;;;47280:52;;47309:23;;;;;;;;;;;;;;47280:52;47345:43;47367:4;47373:2;47377:7;47386:1;47345:21;:43::i;:::-;47481:15;47478:160;;;47621:1;47600:19;47593:30;47478:160;48018:18;:24;48037:4;48018:24;;;;;;;;;;;;;;;;48016:26;;;;;;;;;;;;48087:18;:22;48106:2;48087:22;;;;;;;;;;;;;;;;48085:24;;;;;;;;;;;48409:146;48446:2;48495:45;48510:4;48516:2;48520:19;48495:14;:45::i;:::-;28609:8;48467:73;48409:18;:146::i;:::-;48380:17;:26;48398:7;48380:26;;;;;;;;;;;:175;;;;48726:1;28609:8;48675:19;:47;:52;48671:627;;48748:19;48780:1;48770:7;:11;48748:33;;48937:1;48903:17;:30;48921:11;48903:30;;;;;;;;;;;;:35;48899:384;;49041:13;;49026:11;:28;49022:242;;49221:19;49188:17;:30;49206:11;49188:30;;;;;;;;;;;:52;;;;49022:242;48899:384;48729:569;48671:627;49345:7;49341:2;49326:27;;49335:4;49326:27;;;;;;;;;;;;49364:42;49385:4;49391:2;49395:7;49404:1;49364:20;:42::i;:::-;46720:2694;;;46589:2825;;;:::o;69137:25::-;;;;:::o;75013:167::-;2224:13;:11;:13::i;:::-;6198:21:::1;:19;:21::i;:::-;75080:15:::2;75098:21;75080:39;;75136:19;:17;:19::i;:::-;75128:37;;:46;75166:7;75128:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;75071:109;6242:20:::1;:18;:20::i;:::-;75013:167::o:0;49510:193::-;49656:39;49673:4;49679:2;49683:7;49656:39;;;;;;;;;;;;:16;:39::i;:::-;49510:193;;;:::o;73809:80::-;2224:13;:11;:13::i;:::-;73875:8:::1;73868:4;:15;;;;73809:80:::0;:::o;74266:92::-;2224:13;:11;:13::i;:::-;74342:10:::1;74331:8;:21;;;;74266:92:::0;:::o;69073:28::-;;;;;;;;;;;;;:::o;74392:98::-;2224:13;:11;:13::i;:::-;74473:11:::1;74463:7;:21;;;;;;:::i;:::-;;74392:98:::0;:::o;69106:26::-;;;;;;;;;;;;;:::o;69043:25::-;;;;;;;;;;;;;:::o;37852:152::-;37924:7;37967:27;37986:7;37967:18;:27::i;:::-;37944:52;;37852:152;;;:::o;74872:90::-;2224:13;:11;:13::i;:::-;74948:6:::1;74938:7;;:16;;;;;;;;;;;;;;;;;;74872:90:::0;:::o;68769:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68865:34::-;;;;:::o;33394:233::-;33466:7;33507:1;33490:19;;:5;:19;;;33486:60;;33518:28;;;;;;;;;;;;;;33486:60;27553:13;33564:18;:25;33583:5;33564:25;;;;;;;;;;;;;;;;:55;33557:62;;33394:233;;;:::o;2979:103::-;2224:13;:11;:13::i;:::-;3044:30:::1;3071:1;3044:18;:30::i;:::-;2979:103::o:0;73344:106::-;2224:13;:11;:13::i;:::-;73431:11:::1;73418:10;:24;;;;73344:106:::0;:::o;72296:881::-;72355:16;72409:19;72443:25;72483:22;72508:16;72518:5;72508:9;:16::i;:::-;72483:41;;72539:25;72581:14;72567:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72539:57;;72611:31;;:::i;:::-;72662:9;72674:15;:13;:15::i;:::-;72662:27;;72657:472;72706:14;72691:11;:29;72657:472;;72758:15;72771:1;72758:12;:15::i;:::-;72746:27;;72796:9;:16;;;72837:8;72792:73;72913:1;72887:28;;:9;:14;;;:28;;;72883:111;;72960:9;:14;;;72940:34;;72883:111;73037:5;73016:26;;:17;:26;;;73012:102;;73093:1;73067:8;73076:13;;;;;;73067:23;;;;;;;;:::i;:::-;;;;;;;:27;;;;;73012:102;72657:472;72722:3;;;;;72657:472;;;;73150:8;73143:15;;;;;;;72296:881;;;:::o;69224:57::-;;;;;;;;;;;;;;;;;:::o;2338:87::-;2384:7;2411:6;;;;;;;;;;;2404:13;;2338:87;:::o;73199:78::-;2224:13;:11;:13::i;:::-;73265:6:::1;73254:8;;:17;;;;;;;;;;;;;;;;;;73199:78:::0;:::o;36635:104::-;36691:13;36724:7;36717:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36635:104;:::o;69754:622::-;6198:21;:19;:21::i;:::-;69828:6:::1;;;;;;;;;;;69827:7;69819:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;69880:7;;;;;;;;;;;69879:8;69871:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;69947:12;;69937:6;:22;;69929:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;70043:9;;70033:6;70017:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;70009:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;70136:12;;70126:6;70086:16;:37;70103:19;:17;:19::i;:::-;70086:37;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;:62;;70078:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;70222:6;70215:4;;:13;;;;:::i;:::-;70202:9;:26;;70194:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;70311:6;70270:16;:37;70287:19;:17;:19::i;:::-;70270:37;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;70326:38;70336:19;:17;:19::i;:::-;70357:6;70326:9;:38::i;:::-;6242:20:::0;:18;:20::i;:::-;69754:622;:::o;43508:234::-;43655:8;43603:18;:39;43622:19;:17;:19::i;:::-;43603:39;;;;;;;;;;;;;;;:49;43643:8;43603:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;43715:8;43679:55;;43694:19;:17;:19::i;:::-;43679:55;;;43725:8;43679:55;;;;;;:::i;:::-;;;;;;;;43508:234;;:::o;69010:28::-;;;;:::o;50301:407::-;50476:31;50489:4;50495:2;50499:7;50476:12;:31::i;:::-;50540:1;50522:2;:14;;;:19;50518:183;;50561:56;50592:4;50598:2;50602:7;50611:5;50561:30;:56::i;:::-;50556:145;;50645:40;;;;;;;;;;;;;;50556:145;50518:183;50301:407;;;;:::o;71292:223::-;2224:13;:11;:13::i;:::-;6198:21:::1;:19;:21::i;:::-;71427:9:::2;;71412:11;71396:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;71388:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;71474:35;71484:11;71497;71474:9;:35::i;:::-;6242:20:::1;:18;:20::i;:::-;71292:223:::0;;:::o;68974:31::-;;;;:::o;73649:91::-;2224:13;:11;:13::i;:::-;73728:6:::1;73716:9;:18;;;;73649:91:::0;:::o;71567:492::-;71665:13;71706:16;71714:7;71706;:16::i;:::-;71690:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;71816:5;71804:17;;:8;;;;;;;;;;;:17;;;71801:62;;71841:14;71834:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71801:62;71871:28;71902:10;:8;:10::i;:::-;71871:41;;71957:1;71932:14;71926:28;:32;:127;;;;;;;;;;;;;;;;;71994:14;72010:18;72020:7;72010:9;:18::i;:::-;71977:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71926:127;71919:134;;;71567:492;;;;:::o;68904:31::-;;;;:::o;72124:107::-;72182:7;72205:20;72219:5;72205:13;:20::i;:::-;72198:27;;72124:107;;;:::o;73501:92::-;2224:13;:11;:13::i;:::-;73581:6:::1;73566:12;:21;;;;73501:92:::0;:::o;43899:164::-;43996:4;44020:18;:25;44039:5;44020:25;;;;;;;;;;;;;;;:35;44046:8;44020:35;;;;;;;;;;;;;;;;;;;;;;;;;44013:42;;43899:164;;;;:::o;73963:88::-;2224:13;:11;:13::i;:::-;74035:10:::1;74026:6;:19;;;;73963:88:::0;:::o;74524:120::-;2224:13;:11;:13::i;:::-;74623:15:::1;74606:14;:32;;;;;;:::i;:::-;;74524:120:::0;:::o;3237:201::-;2224:13;:11;:13::i;:::-;3346:1:::1;3326:22;;:8;:22;;::::0;3318:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3402:28;3421:8;3402:18;:28::i;:::-;3237:201:::0;:::o;69167:52::-;;;;;;;;;;;;;;;;;:::o;2503:132::-;2578:12;:10;:12::i;:::-;2567:23;;:7;:5;:7::i;:::-;:23;;;2559:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2503:132::o;6278:293::-;5680:1;6412:7;;:19;6404:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;5680:1;6545:7;:18;;;;6278:293::o;8372:156::-;8463:4;8516;8487:25;8500:5;8507:4;8487:12;:25::i;:::-;:33;8480:40;;8372:156;;;;;:::o;66629:105::-;66689:7;66716:10;66709:17;;66629:105;:::o;60461:112::-;60538:27;60548:2;60552:8;60538:27;;;;;;;;;;;;:9;:27::i;:::-;60461:112;;:::o;6579:213::-;5636:1;6762:7;:22;;;;6579:213::o;44321:282::-;44386:4;44442:7;44423:15;:13;:15::i;:::-;:26;;:66;;;;;44476:13;;44466:7;:23;44423:66;:153;;;;;44575:1;28329:8;44527:17;:26;44545:7;44527:26;;;;;;;;;;;;:44;:49;44423:153;44403:173;;44321:282;;;:::o;69609:101::-;69674:7;69701:1;69694:8;;69609:101;:::o;39007:1275::-;39074:7;39094:12;39109:7;39094:22;;39177:4;39158:15;:13;:15::i;:::-;:23;39154:1061;;39211:13;;39204:4;:20;39200:1015;;;39249:14;39266:17;:23;39284:4;39266:23;;;;;;;;;;;;39249:40;;39383:1;28329:8;39355:6;:24;:29;39351:845;;40020:113;40037:1;40027:6;:11;40020:113;;40080:17;:25;40098:6;;;;;;;40080:25;;;;;;;;;;;;40071:34;;40020:113;;;40166:6;40159:13;;;;;;39351:845;39226:989;39200:1015;39154:1061;40243:31;;;;;;;;;;;;;;39007:1275;;;;:::o;45484:485::-;45586:27;45615:23;45656:38;45697:15;:24;45713:7;45697:24;;;;;;;;;;;45656:65;;45874:18;45851:41;;45931:19;45925:26;45906:45;;45836:126;45484:485;;;:::o;44712:659::-;44861:11;45026:16;45019:5;45015:28;45006:37;;45186:16;45175:9;45171:32;45158:45;;45336:15;45325:9;45322:30;45314:5;45303:9;45300:20;45297:56;45287:66;;44712:659;;;;;:::o;51370:159::-;;;;;:::o;65938:311::-;66073:7;66093:16;28733:3;66119:19;:41;;66093:68;;28733:3;66187:31;66198:4;66204:2;66208:9;66187:10;:31::i;:::-;66179:40;;:62;;66172:69;;;65938:311;;;;;:::o;40830:450::-;40910:14;41078:16;41071:5;41067:28;41058:37;;41255:5;41241:11;41216:23;41212:41;41209:52;41202:5;41199:63;41189:73;;40830:450;;;;:::o;52194:158::-;;;;;:::o;3598:191::-;3672:16;3691:6;;;;;;;;;;;3672:25;;3717:8;3708:6;;:17;;;;;;;;;;;;;;;;;;3772:8;3741:40;;3762:8;3741:40;;;;;;;;;;;;3661:128;3598:191;:::o;38455:161::-;38523:21;;:::i;:::-;38564:44;38583:17;:24;38601:5;38583:24;;;;;;;;;;;;38564:18;:44::i;:::-;38557:51;;38455:161;;;:::o;52792:716::-;52955:4;53001:2;52976:45;;;53022:19;:17;:19::i;:::-;53043:4;53049:7;53058:5;52976:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52972:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53276:1;53259:6;:13;:18;53255:235;;53305:40;;;;;;;;;;;;;;53255:235;53448:6;53442:13;53433:6;53429:2;53425:15;53418:38;52972:529;53145:54;;;53135:64;;;:6;:64;;;;53128:71;;;52792:716;;;;;;:::o;69499:102::-;69559:13;69588:7;69581:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69499:102;:::o;66836:1745::-;66901:17;67335:4;67328;67322:11;67318:22;67427:1;67421:4;67414:15;67502:4;67499:1;67495:12;67488:19;;67584:1;67579:3;67572:14;67688:3;67927:5;67909:428;67935:1;67909:428;;;67975:1;67970:3;67966:11;67959:18;;68146:2;68140:4;68136:13;68132:2;68128:22;68123:3;68115:36;68240:2;68234:4;68230:13;68222:21;;68307:4;67909:428;68297:25;67909:428;67913:21;68376:3;68371;68367:13;68491:4;68486:3;68482:14;68475:21;;68556:6;68551:3;68544:19;66940:1634;;;66836:1745;;;:::o;33709:178::-;33770:7;27553:13;27691:2;33798:18;:25;33817:5;33798:25;;;;;;;;;;;;;;;;:50;;33797:82;33790:89;;33709:178;;;:::o;834:98::-;887:7;914:10;907:17;;834:98;:::o;9171:296::-;9254:7;9274:20;9297:4;9274:27;;9317:9;9312:118;9336:5;:12;9332:1;:16;9312:118;;;9385:33;9395:12;9409:5;9415:1;9409:8;;;;;;;;:::i;:::-;;;;;;;;9385:9;:33::i;:::-;9370:48;;9350:3;;;;;;;9312:118;;;;9447:12;9440:19;;;9171:296;;;;:::o;59688:689::-;59819:19;59825:2;59829:8;59819:5;:19::i;:::-;59898:1;59880:2;:14;;;:19;59876:483;;59920:11;59934:13;;59920:27;;59966:13;59988:8;59982:3;:14;59966:30;;60015:233;60046:62;60085:1;60089:2;60093:7;;;;;;60102:5;60046:30;:62::i;:::-;60041:167;;60144:40;;;;;;;;;;;;;;60041:167;60243:3;60235:5;:11;60015:233;;60330:3;60313:13;;:20;60309:34;;60335:8;;;60309:34;59901:458;;59876:483;59688:689;;;:::o;65639:147::-;65776:6;65639:147;;;;;:::o;40381:366::-;40447:31;;:::i;:::-;40524:6;40491:9;:14;;:41;;;;;;;;;;;28212:3;40577:6;:33;;40543:9;:24;;:68;;;;;;;;;;;40669:1;28329:8;40641:6;:24;:29;;40622:9;:16;;:48;;;;;;;;;;;28733:3;40710:6;:28;;40681:9;:19;;:58;;;;;;;;;;;40381:366;;;:::o;16609:149::-;16672:7;16703:1;16699;:5;:51;;16730:20;16745:1;16748;16730:14;:20::i;:::-;16699:51;;;16707:20;16722:1;16725;16707:14;:20::i;:::-;16699:51;16692:58;;16609:149;;;;:::o;53970:2966::-;54043:20;54066:13;;54043:36;;54106:1;54094:8;:13;54090:44;;54116:18;;;;;;;;;;;;;;54090:44;54147:61;54177:1;54181:2;54185:12;54199:8;54147:21;:61::i;:::-;54691:1;27691:2;54661:1;:26;;54660:32;54648:8;:45;54622:18;:22;54641:2;54622:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;54970:139;55007:2;55061:33;55084:1;55088:2;55092:1;55061:14;:33::i;:::-;55028:30;55049:8;55028:20;:30::i;:::-;:66;54970:18;:139::i;:::-;54936:17;:31;54954:12;54936:31;;;;;;;;;;;:173;;;;55126:16;55157:11;55186:8;55171:12;:23;55157:37;;55707:16;55703:2;55699:25;55687:37;;56079:12;56039:8;55998:1;55936:25;55877:1;55816;55789:335;56450:1;56436:12;56432:20;56390:346;56491:3;56482:7;56479:16;56390:346;;56709:7;56699:8;56696:1;56669:25;56666:1;56663;56658:59;56544:1;56535:7;56531:15;56520:26;;56390:346;;;56394:77;56781:1;56769:8;:13;56765:45;;56791:19;;;;;;;;;;;;;;56765:45;56843:3;56827:13;:19;;;;54396:2462;;56868:60;56897:1;56901:2;56905:12;56919:8;56868:20;:60::i;:::-;54032:2904;53970:2966;;:::o;16766:268::-;16834:13;16941:1;16935:4;16928:15;16970:1;16964:4;16957:15;17011:4;17005;16995:21;16986:30;;16766:268;;;;:::o;41382:324::-;41452:14;41685:1;41675:8;41672:15;41646:24;41642:46;41632:56;;41382: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:77::-;2145:7;2174:5;2163:16;;2108:77;;;:::o;2191:122::-;2264:24;2282:5;2264:24;:::i;:::-;2257:5;2254:35;2244:63;;2303:1;2300;2293:12;2244:63;2191:122;:::o;2319:139::-;2365:5;2403:6;2390:20;2381:29;;2419:33;2446:5;2419:33;:::i;:::-;2319:139;;;;:::o;2464:117::-;2573:1;2570;2563:12;2587:117;2696:1;2693;2686:12;2710:117;2819:1;2816;2809:12;2850:568;2923:8;2933:6;2983:3;2976:4;2968:6;2964:17;2960:27;2950:122;;2991:79;;:::i;:::-;2950:122;3104:6;3091:20;3081:30;;3134:18;3126:6;3123:30;3120:117;;;3156:79;;:::i;:::-;3120:117;3270:4;3262:6;3258:17;3246:29;;3324:3;3316:4;3308:6;3304:17;3294:8;3290:32;3287:41;3284:128;;;3331:79;;:::i;:::-;3284:128;2850:568;;;;;:::o;3424:704::-;3519:6;3527;3535;3584:2;3572:9;3563:7;3559:23;3555:32;3552:119;;;3590:79;;:::i;:::-;3552:119;3710:1;3735:53;3780:7;3771:6;3760:9;3756:22;3735:53;:::i;:::-;3725:63;;3681:117;3865:2;3854:9;3850:18;3837:32;3896:18;3888:6;3885:30;3882:117;;;3918:79;;:::i;:::-;3882:117;4031:80;4103:7;4094:6;4083:9;4079:22;4031:80;:::i;:::-;4013:98;;;;3808:313;3424:704;;;;;:::o;4134:99::-;4186:6;4220:5;4214:12;4204:22;;4134:99;;;:::o;4239:169::-;4323:11;4357:6;4352:3;4345:19;4397:4;4392:3;4388:14;4373:29;;4239:169;;;;:::o;4414:246::-;4495:1;4505:113;4519:6;4516:1;4513:13;4505:113;;;4604:1;4599:3;4595:11;4589:18;4585:1;4580:3;4576:11;4569:39;4541:2;4538:1;4534:10;4529:15;;4505:113;;;4652:1;4643:6;4638:3;4634:16;4627:27;4476:184;4414:246;;;:::o;4666:102::-;4707:6;4758:2;4754:7;4749:2;4742:5;4738:14;4734:28;4724:38;;4666:102;;;:::o;4774:377::-;4862:3;4890:39;4923:5;4890:39;:::i;:::-;4945:71;5009:6;5004:3;4945:71;:::i;:::-;4938:78;;5025:65;5083:6;5078:3;5071:4;5064:5;5060:16;5025:65;:::i;:::-;5115:29;5137:6;5115:29;:::i;:::-;5110:3;5106:39;5099:46;;4866:285;4774:377;;;;:::o;5157:313::-;5270:4;5308:2;5297:9;5293:18;5285:26;;5357:9;5351:4;5347:20;5343:1;5332:9;5328:17;5321:47;5385:78;5458:4;5449:6;5385:78;:::i;:::-;5377:86;;5157:313;;;;:::o;5476:329::-;5535:6;5584:2;5572:9;5563:7;5559:23;5555:32;5552:119;;;5590:79;;:::i;:::-;5552:119;5710:1;5735:53;5780:7;5771:6;5760:9;5756:22;5735:53;:::i;:::-;5725:63;;5681:117;5476:329;;;;:::o;5811:126::-;5848:7;5888:42;5881:5;5877:54;5866:65;;5811:126;;;:::o;5943:96::-;5980:7;6009:24;6027:5;6009:24;:::i;:::-;5998:35;;5943:96;;;:::o;6045:118::-;6132:24;6150:5;6132:24;:::i;:::-;6127:3;6120:37;6045:118;;:::o;6169:222::-;6262:4;6300:2;6289:9;6285:18;6277:26;;6313:71;6381:1;6370:9;6366:17;6357:6;6313:71;:::i;:::-;6169:222;;;;:::o;6397:122::-;6470:24;6488:5;6470:24;:::i;:::-;6463:5;6460:35;6450:63;;6509:1;6506;6499:12;6450:63;6397:122;:::o;6525:139::-;6571:5;6609:6;6596:20;6587:29;;6625:33;6652:5;6625:33;:::i;:::-;6525:139;;;;:::o;6670:474::-;6738:6;6746;6795:2;6783:9;6774:7;6770:23;6766:32;6763:119;;;6801:79;;:::i;:::-;6763:119;6921:1;6946:53;6991:7;6982:6;6971:9;6967:22;6946:53;:::i;:::-;6936:63;;6892:117;7048:2;7074:53;7119:7;7110:6;7099:9;7095:22;7074:53;:::i;:::-;7064:63;;7019:118;6670:474;;;;;:::o;7150:118::-;7237:24;7255:5;7237:24;:::i;:::-;7232:3;7225:37;7150:118;;:::o;7274:222::-;7367:4;7405:2;7394:9;7390:18;7382:26;;7418:71;7486:1;7475:9;7471:17;7462:6;7418:71;:::i;:::-;7274:222;;;;:::o;7502:619::-;7579:6;7587;7595;7644:2;7632:9;7623:7;7619:23;7615:32;7612:119;;;7650:79;;:::i;:::-;7612:119;7770:1;7795:53;7840:7;7831:6;7820:9;7816:22;7795:53;:::i;:::-;7785:63;;7741:117;7897:2;7923:53;7968:7;7959:6;7948:9;7944:22;7923:53;:::i;:::-;7913:63;;7868:118;8025:2;8051:53;8096:7;8087:6;8076:9;8072:22;8051:53;:::i;:::-;8041:63;;7996:118;7502:619;;;;;:::o;8127:77::-;8164:7;8193:5;8182:16;;8127:77;;;:::o;8210:118::-;8297:24;8315:5;8297:24;:::i;:::-;8292:3;8285:37;8210:118;;:::o;8334:222::-;8427:4;8465:2;8454:9;8450:18;8442:26;;8478:71;8546:1;8535:9;8531:17;8522:6;8478:71;:::i;:::-;8334:222;;;;:::o;8562:117::-;8671:1;8668;8661:12;8685:180;8733:77;8730:1;8723:88;8830:4;8827:1;8820:15;8854:4;8851:1;8844:15;8871:281;8954:27;8976:4;8954:27;:::i;:::-;8946:6;8942:40;9084:6;9072:10;9069:22;9048:18;9036:10;9033:34;9030:62;9027:88;;;9095:18;;:::i;:::-;9027:88;9135:10;9131:2;9124:22;8914:238;8871:281;;:::o;9158:129::-;9192:6;9219:20;;:::i;:::-;9209:30;;9248:33;9276:4;9268:6;9248:33;:::i;:::-;9158:129;;;:::o;9293:308::-;9355:4;9445:18;9437:6;9434:30;9431:56;;;9467:18;;:::i;:::-;9431:56;9505:29;9527:6;9505:29;:::i;:::-;9497:37;;9589:4;9583;9579:15;9571:23;;9293:308;;;:::o;9607:146::-;9704:6;9699:3;9694;9681:30;9745:1;9736:6;9731:3;9727:16;9720:27;9607:146;;;:::o;9759:425::-;9837:5;9862:66;9878:49;9920:6;9878:49;:::i;:::-;9862:66;:::i;:::-;9853:75;;9951:6;9944:5;9937:21;9989:4;9982:5;9978:16;10027:3;10018:6;10013:3;10009:16;10006:25;10003:112;;;10034:79;;:::i;:::-;10003:112;10124:54;10171:6;10166:3;10161;10124:54;:::i;:::-;9843:341;9759:425;;;;;:::o;10204:340::-;10260:5;10309:3;10302:4;10294:6;10290:17;10286:27;10276:122;;10317:79;;:::i;:::-;10276:122;10434:6;10421:20;10459:79;10534:3;10526:6;10519:4;10511:6;10507:17;10459:79;:::i;:::-;10450:88;;10266:278;10204:340;;;;:::o;10550:509::-;10619:6;10668:2;10656:9;10647:7;10643:23;10639:32;10636:119;;;10674:79;;:::i;:::-;10636:119;10822:1;10811:9;10807:17;10794:31;10852:18;10844:6;10841:30;10838:117;;;10874:79;;:::i;:::-;10838:117;10979:63;11034:7;11025:6;11014:9;11010:22;10979:63;:::i;:::-;10969:73;;10765:287;10550:509;;;;:::o;11065:329::-;11124:6;11173:2;11161:9;11152:7;11148:23;11144:32;11141:119;;;11179:79;;:::i;:::-;11141:119;11299:1;11324:53;11369:7;11360:6;11349:9;11345:22;11324:53;:::i;:::-;11314:63;;11270:117;11065:329;;;;:::o;11400:122::-;11473:24;11491:5;11473:24;:::i;:::-;11466:5;11463:35;11453:63;;11512:1;11509;11502:12;11453:63;11400:122;:::o;11528:139::-;11574:5;11612:6;11599:20;11590:29;;11628:33;11655:5;11628:33;:::i;:::-;11528:139;;;;:::o;11673:329::-;11732:6;11781:2;11769:9;11760:7;11756:23;11752:32;11749:119;;;11787:79;;:::i;:::-;11749:119;11907:1;11932:53;11977:7;11968:6;11957:9;11953:22;11932:53;:::i;:::-;11922:63;;11878:117;11673:329;;;;:::o;12008:114::-;12075:6;12109:5;12103:12;12093:22;;12008:114;;;:::o;12128:184::-;12227:11;12261:6;12256:3;12249:19;12301:4;12296:3;12292:14;12277:29;;12128:184;;;;:::o;12318:132::-;12385:4;12408:3;12400:11;;12438:4;12433:3;12429:14;12421:22;;12318:132;;;:::o;12456:108::-;12533:24;12551:5;12533:24;:::i;:::-;12528:3;12521:37;12456:108;;:::o;12570:179::-;12639:10;12660:46;12702:3;12694:6;12660:46;:::i;:::-;12738:4;12733:3;12729:14;12715:28;;12570:179;;;;:::o;12755:113::-;12825:4;12857;12852:3;12848:14;12840:22;;12755:113;;;:::o;12904:732::-;13023:3;13052:54;13100:5;13052:54;:::i;:::-;13122:86;13201:6;13196:3;13122:86;:::i;:::-;13115:93;;13232:56;13282:5;13232:56;:::i;:::-;13311:7;13342:1;13327:284;13352:6;13349:1;13346:13;13327:284;;;13428:6;13422:13;13455:63;13514:3;13499:13;13455:63;:::i;:::-;13448:70;;13541:60;13594:6;13541:60;:::i;:::-;13531:70;;13387:224;13374:1;13371;13367:9;13362:14;;13327:284;;;13331:14;13627:3;13620:10;;13028:608;;;12904:732;;;;:::o;13642:373::-;13785:4;13823:2;13812:9;13808:18;13800:26;;13872:9;13866:4;13862:20;13858:1;13847:9;13843:17;13836:47;13900:108;14003:4;13994:6;13900:108;:::i;:::-;13892:116;;13642:373;;;;:::o;14021:468::-;14086:6;14094;14143:2;14131:9;14122:7;14118:23;14114:32;14111:119;;;14149:79;;:::i;:::-;14111:119;14269:1;14294:53;14339:7;14330:6;14319:9;14315:22;14294:53;:::i;:::-;14284:63;;14240:117;14396:2;14422:50;14464:7;14455:6;14444:9;14440:22;14422:50;:::i;:::-;14412:60;;14367:115;14021:468;;;;;:::o;14495:307::-;14556:4;14646:18;14638:6;14635:30;14632:56;;;14668:18;;:::i;:::-;14632:56;14706:29;14728:6;14706:29;:::i;:::-;14698:37;;14790:4;14784;14780:15;14772:23;;14495:307;;;:::o;14808:423::-;14885:5;14910:65;14926:48;14967:6;14926:48;:::i;:::-;14910:65;:::i;:::-;14901:74;;14998:6;14991:5;14984:21;15036:4;15029:5;15025:16;15074:3;15065:6;15060:3;15056:16;15053:25;15050:112;;;15081:79;;:::i;:::-;15050:112;15171:54;15218:6;15213:3;15208;15171:54;:::i;:::-;14891:340;14808:423;;;;;:::o;15250:338::-;15305:5;15354:3;15347:4;15339:6;15335:17;15331:27;15321:122;;15362:79;;:::i;:::-;15321:122;15479:6;15466:20;15504:78;15578:3;15570:6;15563:4;15555:6;15551:17;15504:78;:::i;:::-;15495:87;;15311:277;15250:338;;;;:::o;15594:943::-;15689:6;15697;15705;15713;15762:3;15750:9;15741:7;15737:23;15733:33;15730:120;;;15769:79;;:::i;:::-;15730:120;15889:1;15914:53;15959:7;15950:6;15939:9;15935:22;15914:53;:::i;:::-;15904:63;;15860:117;16016:2;16042:53;16087:7;16078:6;16067:9;16063:22;16042:53;:::i;:::-;16032:63;;15987:118;16144:2;16170:53;16215:7;16206:6;16195:9;16191:22;16170:53;:::i;:::-;16160:63;;16115:118;16300:2;16289:9;16285:18;16272:32;16331:18;16323:6;16320:30;16317:117;;;16353:79;;:::i;:::-;16317:117;16458:62;16512:7;16503:6;16492:9;16488:22;16458:62;:::i;:::-;16448:72;;16243:287;15594:943;;;;;;;:::o;16543:474::-;16611:6;16619;16668:2;16656:9;16647:7;16643:23;16639:32;16636:119;;;16674:79;;:::i;:::-;16636:119;16794:1;16819:53;16864:7;16855:6;16844:9;16840:22;16819:53;:::i;:::-;16809:63;;16765:117;16921:2;16947:53;16992:7;16983:6;16972:9;16968:22;16947:53;:::i;:::-;16937:63;;16892:118;16543:474;;;;;:::o;17023:::-;17091:6;17099;17148:2;17136:9;17127:7;17123:23;17119:32;17116:119;;;17154:79;;:::i;:::-;17116:119;17274:1;17299:53;17344:7;17335:6;17324:9;17320:22;17299:53;:::i;:::-;17289:63;;17245:117;17401:2;17427:53;17472:7;17463:6;17452:9;17448:22;17427:53;:::i;:::-;17417:63;;17372:118;17023:474;;;;;:::o;17503:175::-;17643:27;17639:1;17631:6;17627:14;17620:51;17503:175;:::o;17684:366::-;17826:3;17847:67;17911:2;17906:3;17847:67;:::i;:::-;17840:74;;17923:93;18012:3;17923:93;:::i;:::-;18041:2;18036:3;18032:12;18025:19;;17684:366;;;:::o;18056:419::-;18222:4;18260:2;18249:9;18245:18;18237:26;;18309:9;18303:4;18299:20;18295:1;18284:9;18280:17;18273:47;18337:131;18463:4;18337:131;:::i;:::-;18329:139;;18056:419;;;:::o;18481:220::-;18621:34;18617:1;18609:6;18605:14;18598:58;18690:3;18685:2;18677:6;18673:15;18666:28;18481:220;:::o;18707:366::-;18849:3;18870:67;18934:2;18929:3;18870:67;:::i;:::-;18863:74;;18946:93;19035:3;18946:93;:::i;:::-;19064:2;19059:3;19055:12;19048:19;;18707:366;;;:::o;19079:419::-;19245:4;19283:2;19272:9;19268:18;19260:26;;19332:9;19326:4;19322:20;19318:1;19307:9;19303:17;19296:47;19360:131;19486:4;19360:131;:::i;:::-;19352:139;;19079:419;;;:::o;19504:94::-;19537:8;19585:5;19581:2;19577:14;19556:35;;19504:94;;;:::o;19604:::-;19643:7;19672:20;19686:5;19672:20;:::i;:::-;19661:31;;19604:94;;;:::o;19704:100::-;19743:7;19772:26;19792:5;19772:26;:::i;:::-;19761:37;;19704:100;;;:::o;19810:157::-;19915:45;19935:24;19953:5;19935:24;:::i;:::-;19915:45;:::i;:::-;19910:3;19903:58;19810:157;;:::o;19973:256::-;20085:3;20100:75;20171:3;20162:6;20100:75;:::i;:::-;20200:2;20195:3;20191:12;20184:19;;20220:3;20213:10;;19973:256;;;;:::o;20235:180::-;20375:32;20371:1;20363:6;20359:14;20352:56;20235:180;:::o;20421:366::-;20563:3;20584:67;20648:2;20643:3;20584:67;:::i;:::-;20577:74;;20660:93;20749:3;20660:93;:::i;:::-;20778:2;20773:3;20769:12;20762:19;;20421:366;;;:::o;20793:419::-;20959:4;20997:2;20986:9;20982:18;20974:26;;21046:9;21040:4;21036:20;21032:1;21021:9;21017:17;21010:47;21074:131;21200:4;21074:131;:::i;:::-;21066:139;;20793:419;;;:::o;21218:180::-;21266:77;21263:1;21256:88;21363:4;21360:1;21353:15;21387:4;21384:1;21377:15;21404:191;21444:3;21463:20;21481:1;21463:20;:::i;:::-;21458:25;;21497:20;21515:1;21497:20;:::i;:::-;21492:25;;21540:1;21537;21533:9;21526:16;;21561:3;21558:1;21555:10;21552:36;;;21568:18;;:::i;:::-;21552:36;21404:191;;;;:::o;21601:221::-;21741:34;21737:1;21729:6;21725:14;21718:58;21810:4;21805:2;21797:6;21793:15;21786:29;21601:221;:::o;21828:366::-;21970:3;21991:67;22055:2;22050:3;21991:67;:::i;:::-;21984:74;;22067:93;22156:3;22067:93;:::i;:::-;22185:2;22180:3;22176:12;22169:19;;21828:366;;;:::o;22200:419::-;22366:4;22404:2;22393:9;22389:18;22381:26;;22453:9;22447:4;22443:20;22439:1;22428:9;22424:17;22417:47;22481:131;22607:4;22481:131;:::i;:::-;22473:139;;22200:419;;;:::o;22625:181::-;22765:33;22761:1;22753:6;22749:14;22742:57;22625:181;:::o;22812:366::-;22954:3;22975:67;23039:2;23034:3;22975:67;:::i;:::-;22968:74;;23051:93;23140:3;23051:93;:::i;:::-;23169:2;23164:3;23160:12;23153:19;;22812:366;;;:::o;23184:419::-;23350:4;23388:2;23377:9;23373:18;23365:26;;23437:9;23431:4;23427:20;23423:1;23412:9;23408:17;23401:47;23465:131;23591:4;23465:131;:::i;:::-;23457:139;;23184:419;;;:::o;23609:222::-;23749:34;23745:1;23737:6;23733:14;23726:58;23818:5;23813:2;23805:6;23801:15;23794:30;23609:222;:::o;23837:366::-;23979:3;24000:67;24064:2;24059:3;24000:67;:::i;:::-;23993:74;;24076:93;24165:3;24076:93;:::i;:::-;24194:2;24189:3;24185:12;24178:19;;23837:366;;;:::o;24209:419::-;24375:4;24413:2;24402:9;24398:18;24390:26;;24462:9;24456:4;24452:20;24448:1;24437:9;24433:17;24426:47;24490:131;24616:4;24490:131;:::i;:::-;24482:139;;24209:419;;;:::o;24634:410::-;24674:7;24697:20;24715:1;24697:20;:::i;:::-;24692:25;;24731:20;24749:1;24731:20;:::i;:::-;24726:25;;24786:1;24783;24779:9;24808:30;24826:11;24808:30;:::i;:::-;24797:41;;24987:1;24978:7;24974:15;24971:1;24968:22;24948:1;24941:9;24921:83;24898:139;;25017:18;;:::i;:::-;24898:139;24682:362;24634:410;;;;:::o;25050:175::-;25190:27;25186:1;25178:6;25174:14;25167:51;25050:175;:::o;25231:366::-;25373:3;25394:67;25458:2;25453:3;25394:67;:::i;:::-;25387:74;;25470:93;25559:3;25470:93;:::i;:::-;25588:2;25583:3;25579:12;25572:19;;25231:366;;;:::o;25603:419::-;25769:4;25807:2;25796:9;25792:18;25784:26;;25856:9;25850:4;25846:20;25842:1;25831:9;25827:17;25820:47;25884:131;26010:4;25884:131;:::i;:::-;25876:139;;25603:419;;;:::o;26028:180::-;26076:77;26073:1;26066:88;26173:4;26170:1;26163:15;26197:4;26194:1;26187:15;26214:320;26258:6;26295:1;26289:4;26285:12;26275:22;;26342:1;26336:4;26332:12;26363:18;26353:81;;26419:4;26411:6;26407:17;26397:27;;26353:81;26481:2;26473:6;26470:14;26450:18;26447:38;26444:84;;26500:18;;:::i;:::-;26444:84;26265:269;26214:320;;;:::o;26540:141::-;26589:4;26612:3;26604:11;;26635:3;26632:1;26625:14;26669:4;26666:1;26656:18;26648:26;;26540:141;;;:::o;26687:93::-;26724:6;26771:2;26766;26759:5;26755:14;26751:23;26741:33;;26687:93;;;:::o;26786:107::-;26830:8;26880:5;26874:4;26870:16;26849:37;;26786:107;;;;:::o;26899:393::-;26968:6;27018:1;27006:10;27002:18;27041:97;27071:66;27060:9;27041:97;:::i;:::-;27159:39;27189:8;27178:9;27159:39;:::i;:::-;27147:51;;27231:4;27227:9;27220:5;27216:21;27207:30;;27280:4;27270:8;27266:19;27259:5;27256:30;27246:40;;26975:317;;26899:393;;;;;:::o;27298:60::-;27326:3;27347:5;27340:12;;27298:60;;;:::o;27364:142::-;27414:9;27447:53;27465:34;27474:24;27492:5;27474:24;:::i;:::-;27465:34;:::i;:::-;27447:53;:::i;:::-;27434:66;;27364:142;;;:::o;27512:75::-;27555:3;27576:5;27569:12;;27512:75;;;:::o;27593:269::-;27703:39;27734:7;27703:39;:::i;:::-;27764:91;27813:41;27837:16;27813:41;:::i;:::-;27805:6;27798:4;27792:11;27764:91;:::i;:::-;27758:4;27751:105;27669:193;27593:269;;;:::o;27868:73::-;27913:3;27868:73;:::o;27947:189::-;28024:32;;:::i;:::-;28065:65;28123:6;28115;28109:4;28065:65;:::i;:::-;28000:136;27947:189;;:::o;28142:186::-;28202:120;28219:3;28212:5;28209:14;28202:120;;;28273:39;28310:1;28303:5;28273:39;:::i;:::-;28246:1;28239:5;28235:13;28226:22;;28202:120;;;28142:186;;:::o;28334:543::-;28435:2;28430:3;28427:11;28424:446;;;28469:38;28501:5;28469:38;:::i;:::-;28553:29;28571:10;28553:29;:::i;:::-;28543:8;28539:44;28736:2;28724:10;28721:18;28718:49;;;28757:8;28742:23;;28718:49;28780:80;28836:22;28854:3;28836:22;:::i;:::-;28826:8;28822:37;28809:11;28780:80;:::i;:::-;28439:431;;28424:446;28334:543;;;:::o;28883:117::-;28937:8;28987:5;28981:4;28977:16;28956:37;;28883:117;;;;:::o;29006:169::-;29050:6;29083:51;29131:1;29127:6;29119:5;29116:1;29112:13;29083:51;:::i;:::-;29079:56;29164:4;29158;29154:15;29144:25;;29057:118;29006:169;;;;:::o;29180:295::-;29256:4;29402:29;29427:3;29421:4;29402:29;:::i;:::-;29394:37;;29464:3;29461:1;29457:11;29451:4;29448:21;29440:29;;29180:295;;;;:::o;29480:1395::-;29597:37;29630:3;29597:37;:::i;:::-;29699:18;29691:6;29688:30;29685:56;;;29721:18;;:::i;:::-;29685:56;29765:38;29797:4;29791:11;29765:38;:::i;:::-;29850:67;29910:6;29902;29896:4;29850:67;:::i;:::-;29944:1;29968:4;29955:17;;30000:2;29992:6;29989:14;30017:1;30012:618;;;;30674:1;30691:6;30688:77;;;30740:9;30735:3;30731:19;30725:26;30716:35;;30688:77;30791:67;30851:6;30844:5;30791:67;:::i;:::-;30785:4;30778:81;30647:222;29982:887;;30012:618;30064:4;30060:9;30052:6;30048:22;30098:37;30130:4;30098:37;:::i;:::-;30157:1;30171:208;30185:7;30182:1;30179:14;30171:208;;;30264:9;30259:3;30255:19;30249:26;30241:6;30234:42;30315:1;30307:6;30303:14;30293:24;;30362:2;30351:9;30347:18;30334:31;;30208:4;30205:1;30201:12;30196:17;;30171:208;;;30407:6;30398:7;30395:19;30392:179;;;30465:9;30460:3;30456:19;30450:26;30508:48;30550:4;30542:6;30538:17;30527:9;30508:48;:::i;:::-;30500:6;30493:64;30415:156;30392:179;30617:1;30613;30605:6;30601:14;30597:22;30591:4;30584:36;30019:611;;;29982:887;;29572:1303;;;29480:1395;;:::o;30881:180::-;30929:77;30926:1;30919:88;31026:4;31023:1;31016:15;31050:4;31047:1;31040:15;31067:180;31207:32;31203:1;31195:6;31191:14;31184:56;31067:180;:::o;31253:366::-;31395:3;31416:67;31480:2;31475:3;31416:67;:::i;:::-;31409:74;;31492:93;31581:3;31492:93;:::i;:::-;31610:2;31605:3;31601:12;31594:19;;31253:366;;;:::o;31625:419::-;31791:4;31829:2;31818:9;31814:18;31806:26;;31878:9;31872:4;31868:20;31864:1;31853:9;31849:17;31842:47;31906:131;32032:4;31906:131;:::i;:::-;31898:139;;31625:419;;;:::o;32050:225::-;32190:34;32186:1;32178:6;32174:14;32167:58;32259:8;32254:2;32246:6;32242:15;32235:33;32050:225;:::o;32281:366::-;32423:3;32444:67;32508:2;32503:3;32444:67;:::i;:::-;32437:74;;32520:93;32609:3;32520:93;:::i;:::-;32638:2;32633:3;32629:12;32622:19;;32281:366;;;:::o;32653:419::-;32819:4;32857:2;32846:9;32842:18;32834:26;;32906:9;32900:4;32896:20;32892:1;32881:9;32877:17;32870:47;32934:131;33060:4;32934:131;:::i;:::-;32926:139;;32653:419;;;:::o;33078:164::-;33218:16;33214:1;33206:6;33202:14;33195:40;33078:164;:::o;33248:366::-;33390:3;33411:67;33475:2;33470:3;33411:67;:::i;:::-;33404:74;;33487:93;33576:3;33487:93;:::i;:::-;33605:2;33600:3;33596:12;33589:19;;33248:366;;;:::o;33620:419::-;33786:4;33824:2;33813:9;33809:18;33801:26;;33873:9;33867:4;33863:20;33859:1;33848:9;33844:17;33837:47;33901:131;34027:4;33901:131;:::i;:::-;33893:139;;33620:419;;;:::o;34045:172::-;34185:24;34181:1;34173:6;34169:14;34162:48;34045:172;:::o;34223:366::-;34365:3;34386:67;34450:2;34445:3;34386:67;:::i;:::-;34379:74;;34462:93;34551:3;34462:93;:::i;:::-;34580:2;34575:3;34571:12;34564:19;;34223:366;;;:::o;34595:419::-;34761:4;34799:2;34788:9;34784:18;34776:26;;34848:9;34842:4;34838:20;34834:1;34823:9;34819:17;34812:47;34876:131;35002:4;34876:131;:::i;:::-;34868:139;;34595:419;;;:::o;35020:235::-;35160:34;35156:1;35148:6;35144:14;35137:58;35229:18;35224:2;35216:6;35212:15;35205:43;35020:235;:::o;35261:366::-;35403:3;35424:67;35488:2;35483:3;35424:67;:::i;:::-;35417:74;;35500:93;35589:3;35500:93;:::i;:::-;35618:2;35613:3;35609:12;35602:19;;35261:366;;;:::o;35633:419::-;35799:4;35837:2;35826:9;35822:18;35814:26;;35886:9;35880:4;35876:20;35872:1;35861:9;35857:17;35850:47;35914:131;36040:4;35914:131;:::i;:::-;35906:139;;35633:419;;;:::o;36058:148::-;36160:11;36197:3;36182:18;;36058:148;;;;:::o;36212:390::-;36318:3;36346:39;36379:5;36346:39;:::i;:::-;36401:89;36483:6;36478:3;36401:89;:::i;:::-;36394:96;;36499:65;36557:6;36552:3;36545:4;36538:5;36534:16;36499:65;:::i;:::-;36589:6;36584:3;36580:16;36573:23;;36322:280;36212:390;;;;:::o;36608:155::-;36748:7;36744:1;36736:6;36732:14;36725:31;36608:155;:::o;36769:400::-;36929:3;36950:84;37032:1;37027:3;36950:84;:::i;:::-;36943:91;;37043:93;37132:3;37043:93;:::i;:::-;37161:1;37156:3;37152:11;37145:18;;36769:400;;;:::o;37175:701::-;37456:3;37478:95;37569:3;37560:6;37478:95;:::i;:::-;37471:102;;37590:95;37681:3;37672:6;37590:95;:::i;:::-;37583:102;;37702:148;37846:3;37702:148;:::i;:::-;37695:155;;37867:3;37860:10;;37175:701;;;;;:::o;37882:225::-;38022:34;38018:1;38010:6;38006:14;37999:58;38091:8;38086:2;38078:6;38074:15;38067:33;37882:225;:::o;38113:366::-;38255:3;38276:67;38340:2;38335:3;38276:67;:::i;:::-;38269:74;;38352:93;38441:3;38352:93;:::i;:::-;38470:2;38465:3;38461:12;38454:19;;38113:366;;;:::o;38485:419::-;38651:4;38689:2;38678:9;38674:18;38666:26;;38738:9;38732:4;38728:20;38724:1;38713:9;38709:17;38702:47;38766:131;38892:4;38766:131;:::i;:::-;38758:139;;38485:419;;;:::o;38910:182::-;39050:34;39046:1;39038:6;39034:14;39027:58;38910:182;:::o;39098:366::-;39240:3;39261:67;39325:2;39320:3;39261:67;:::i;:::-;39254:74;;39337:93;39426:3;39337:93;:::i;:::-;39455:2;39450:3;39446:12;39439:19;;39098:366;;;:::o;39470:419::-;39636:4;39674:2;39663:9;39659:18;39651:26;;39723:9;39717:4;39713:20;39709:1;39698:9;39694:17;39687:47;39751:131;39877:4;39751:131;:::i;:::-;39743:139;;39470:419;;;:::o;39895:181::-;40035:33;40031:1;40023:6;40019:14;40012:57;39895:181;:::o;40082:366::-;40224:3;40245:67;40309:2;40304:3;40245:67;:::i;:::-;40238:74;;40321:93;40410:3;40321:93;:::i;:::-;40439:2;40434:3;40430:12;40423:19;;40082:366;;;:::o;40454:419::-;40620:4;40658:2;40647:9;40643:18;40635:26;;40707:9;40701:4;40697:20;40693:1;40682:9;40678:17;40671:47;40735:131;40861:4;40735:131;:::i;:::-;40727:139;;40454:419;;;:::o;40879:98::-;40930:6;40964:5;40958:12;40948:22;;40879:98;;;:::o;40983:168::-;41066:11;41100:6;41095:3;41088:19;41140:4;41135:3;41131:14;41116:29;;40983:168;;;;:::o;41157:373::-;41243:3;41271:38;41303:5;41271:38;:::i;:::-;41325:70;41388:6;41383:3;41325:70;:::i;:::-;41318:77;;41404:65;41462:6;41457:3;41450:4;41443:5;41439:16;41404:65;:::i;:::-;41494:29;41516:6;41494:29;:::i;:::-;41489:3;41485:39;41478:46;;41247:283;41157:373;;;;:::o;41536:640::-;41731:4;41769:3;41758:9;41754:19;41746:27;;41783:71;41851:1;41840:9;41836:17;41827:6;41783:71;:::i;:::-;41864:72;41932:2;41921:9;41917:18;41908:6;41864:72;:::i;:::-;41946;42014:2;42003:9;41999:18;41990:6;41946:72;:::i;:::-;42065:9;42059:4;42055:20;42050:2;42039:9;42035:18;42028:48;42093:76;42164:4;42155:6;42093:76;:::i;:::-;42085:84;;41536:640;;;;;;;:::o;42182:141::-;42238:5;42269:6;42263:13;42254:22;;42285:32;42311:5;42285:32;:::i;:::-;42182:141;;;;:::o;42329:349::-;42398:6;42447:2;42435:9;42426:7;42422:23;42418:32;42415:119;;;42453:79;;:::i;:::-;42415:119;42573:1;42598:63;42653:7;42644:6;42633:9;42629:22;42598:63;:::i;:::-;42588:73;;42544:127;42329:349;;;;:::o

Swarm Source

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