ETH Price: $3,263.04 (+4.48%)
Gas: 2 Gwei

Token

IronInside (IronInside)
 

Overview

Max Total Supply

2,854 IronInside

Holders

154

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 IronInside
0xfe5fc6c54468ca265c2e17a164788f7a36f2ce05
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:
IronInside

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-04
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
/*

██╗██████╗░░█████╗░███╗░░██╗██╗███╗░░██╗░██████╗██╗██████╗░███████╗
██║██╔══██╗██╔══██╗████╗░██║██║████╗░██║██╔════╝██║██╔══██╗██╔════╝
██║██████╔╝██║░░██║██╔██╗██║██║██╔██╗██║╚█████╗░██║██║░░██║█████╗░░
██║██╔══██╗██║░░██║██║╚████║██║██║╚████║░╚═══██╗██║██║░░██║██╔══╝░░
██║██║░░██║╚█████╔╝██║░╚███║██║██║░╚███║██████╔╝██║██████╔╝███████╗
╚═╝╚═╝░░╚═╝░╚════╝░╚═╝░░╚══╝╚═╝╚═╝░░╚══╝╚═════╝░╚═╝╚═════╝░╚══════╝
*/

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * 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.
 */
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 proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _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}
     *
     * _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 the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild 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 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 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 for 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) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild 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 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 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 for 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) {
            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: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

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

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

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

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

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

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

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

            // 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: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721AQueryable.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721AQueryable.
 *
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *
     * - `addr = address(0)`
     * - `startTimestamp = 0`
     * - `burned = false`
     * - `extraData = 0`
     *
     * If the `tokenId` is burned:
     *
     * - `addr = <Address of owner before token was burned>`
     * - `startTimestamp = <Timestamp when token was burned>`
     * - `burned = true`
     * - `extraData = <Extra data when token was burned>`
     *
     * Otherwise:
     *
     * - `addr = <Address of owner>`
     * - `startTimestamp = <Timestamp of start of ownership>`
     * - `burned = false`
     * - `extraData = <Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] calldata tokenIds)
        external
        view
        virtual
        override
        returns (TokenOwnership[] memory)
    {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start < stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view virtual override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(`totalSupply`) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K collections should be fine).
     */
    function tokensOfOwner(address owner) external view virtual override 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;
        }
    }
}

// File: contracts/IronInside.sol





pragma solidity >=0.8.9 <0.9.0;







contract IronInside is ERC721AQueryable, Ownable, ReentrancyGuard {
    using Strings for uint256;
    string public tokenName = "IronInside";
    string public tokenSymbol = "IronInside";
    uint256 public maxSupply = 10000;
    uint256 public maxReservedSupply = 200;
    uint256 public reservedSupplyMinted = 0;
    
    uint256 public freeMintSupply = 10000;
    uint256 public freeMintPrice = 0;

    uint256 public wlMintAmount = 1;
    uint256 public freeMaxMint = 3;

    bytes32 public merkleRoot;
    mapping(address => uint256) public usersMinted;

    bool public paused = false;
    bool public whitelistMintEnabled = true;
    bool public revealed = false;

    string public uriPrefix = '';
    string public uriSuffix = '.json';
    string public hiddenMetadataUri = "";

    constructor(string memory _hiddenMetadataUri) ERC721A(tokenName, tokenSymbol) {
        setHiddenMetadataUri(_hiddenMetadataUri);
    }

    modifier mintCompliance(uint256 _mintAmount) {
        uint256 currentSupply = totalSupply();
        if (currentSupply < freeMintSupply) {
            require(
                _mintAmount > 0 &&
                usersMinted[_msgSender()] + _mintAmount <= freeMaxMint,
                'Sold Out'
            );
        }
        _;
    }

    modifier whenWLActive() {
        require(whitelistMintEnabled == true, 'Whitelist disabled');
        _;
    }

    modifier whenPublicActive() {
        require(whitelistMintEnabled == false, 'Public disabled');
        _;
    }

    function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) whenPublicActive {
        require(!paused, 'The contract is paused!');
        require(totalSupply() + _mintAmount <= (maxSupply - maxReservedSupply + reservedSupplyMinted), 'Max supply exceeded!');

        usersMinted[_msgSender()] += _mintAmount;

        _safeMint(_msgSender(), _mintAmount);
    }

    function mintWhitelist(bytes32[] calldata _merkleProof) public whenWLActive {
        bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');

        require(!paused, 'The contract is paused!');
        require(usersMinted[_msgSender()] < wlMintAmount, 'You already minted WL');
        require(totalSupply() + 1 <= (maxSupply - maxReservedSupply + reservedSupplyMinted), 'Max supply exceeded!');

        usersMinted[_msgSender()] += wlMintAmount;

        _safeMint(_msgSender(), wlMintAmount);
    }

    function mintOwner(uint256 _mintAmount, address _receiver) public onlyOwner {
        require(reservedSupplyMinted + _mintAmount <= maxReservedSupply, 'Max reserved supply reached');
        require((totalSupply() + _mintAmount) <= maxSupply, 'Max supply exceeded!');
        
        reservedSupplyMinted += _mintAmount;

        _safeMint(_receiver, _mintAmount);
    }

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

        if (revealed == false) {
            return hiddenMetadataUri;
        }

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setfreeMintSupply(uint256 _value) public onlyOwner {
        require(_value + maxReservedSupply <= maxSupply, 'Max supply exceeded!');
        freeMintSupply = _value;
    }

    function setfreeMaxMint(uint256 _value) public onlyOwner {
        freeMaxMint = _value;
    }

    function setwlMintAmount(uint256 _value) public onlyOwner {
        wlMintAmount = _value;
    }

    function setfreeMintPrice(uint256 _value) public onlyOwner {
        freeMintPrice = _value;
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setMaxReservedSupply(uint256 _newMaxReservedSupply) public onlyOwner {
        require(_newMaxReservedSupply <= (maxSupply - totalSupply()), 'Max supply exceeded!');
        maxReservedSupply = _newMaxReservedSupply;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setWhitelistMintEnabled(bool _state) public onlyOwner {
        whitelistMintEnabled = _state;
    }

    function withdraw() public onlyOwner nonReentrant {
        (bool os, ) = payable(owner()).call{value: address(this).balance}('');
        require(os);
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return uriPrefix;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintSupply","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxReservedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedSupplyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxReservedSupply","type":"uint256"}],"name":"setMaxReservedSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setfreeMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setfreeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setfreeMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setwlMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSymbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"usersMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60c0604052600a60808190526949726f6e496e7369646560b01b60a09081526200002b91908162000389565b5060408051808201909152600a8082526949726f6e496e7369646560b01b60209092019182526200005f91600b9162000389565b50612710600c81905560c8600d556000600e819055600f919091556010819055600160115560036012556015805462ffffff1916610100179055604080516020810191829052829052620000b7916016919062000389565b5060408051808201909152600580825264173539b7b760d91b6020909201918252620000e69160179162000389565b50604080516020810191829052600090819052620001079160189162000389565b503480156200011557600080fd5b5060405162002f7138038062002f71833981016040819052620001389162000445565b600a8054620001479062000521565b80601f0160208091040260200160405190810160405280929190818152602001828054620001759062000521565b8015620001c65780601f106200019a57610100808354040283529160200191620001c6565b820191906000526020600020905b815481529060010190602001808311620001a857829003601f168201915b5050505050600b8054620001da9062000521565b80601f0160208091040260200160405190810160405280929190818152602001828054620002089062000521565b8015620002595780601f106200022d5761010080835404028352916020019162000259565b820191906000526020600020905b8154815290600101906020018083116200023b57829003601f168201915b505084516200027393506002925060208601915062000389565b5080516200028990600390602084019062000389565b50506001600055506200029c33620002b3565b6001600955620002ac8162000305565b506200055e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200030f62000328565b80516200032490601890602084019062000389565b5050565b6008546001600160a01b03163314620003875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054620003979062000521565b90600052602060002090601f016020900481019282620003bb576000855562000406565b82601f10620003d657805160ff191683800117855562000406565b8280016001018555821562000406579182015b8281111562000406578251825591602001919060010190620003e9565b506200041492915062000418565b5090565b5b8082111562000414576000815560010162000419565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200045957600080fd5b82516001600160401b03808211156200047157600080fd5b818501915085601f8301126200048657600080fd5b8151818111156200049b576200049b6200042f565b604051601f8201601f19908116603f01168101908382118183101715620004c657620004c66200042f565b816040528281528886848701011115620004df57600080fd5b600093505b82841015620005035784840186015181850187015292850192620004e4565b82841115620005155760008684830101525b98975050505050505050565b600181811c908216806200053657607f821691505b602082108114156200055857634e487b7160e01b600052602260045260246000fd5b50919050565b612a03806200056e6000396000f3fe6080604052600436106103355760003560e01c80637339e538116101ab578063ae709da3116100f7578063d5abeb0111610095578063e150007e1161006f578063e150007e14610938578063e985e9c51461094e578063f2fde38b14610997578063f737c47a146109b757600080fd5b8063d5abeb01146108ec578063ddefaea714610902578063e0a808531461091857600080fd5b8063c1fad42c116100d1578063c1fad42c14610869578063c23dc68f1461087f578063c4efae53146108ac578063c87b56dd146108cc57600080fd5b8063ae709da314610809578063b767a09814610829578063b88d4fde1461084957600080fd5b806395d89b4111610164578063a0712d681161013e578063a0712d68146107ab578063a22cb465146107be578063a31d99d8146107de578063a45ba8e7146107f457600080fd5b806395d89b411461075657806399a2557a1461076b5780639f15df121461078b57600080fd5b80637339e538146106965780637b61c320146106b65780637cb64759146106cb5780637ec4a659146106eb5780638462151c1461070b5780638da5cb5b1461073857600080fd5b806342842e0e1161028557806362b99ad4116102235780636c02a931116101fd5780636c02a9311461062d5780636caede3d1461064257806370a0823114610661578063715018a61461068157600080fd5b806362b99ad4146105d85780636352211e146105ed578063637bb58a1461060d57600080fd5b8063518302271161025f578063518302271461055c5780635503a0e81461057c5780635bbb2177146105915780635c975abb146105be57600080fd5b806342842e0e146104fc57806344d843811461051c5780634fdd43cb1461053c57600080fd5b8063180b4186116102f2578063271b2fcc116102cc578063271b2fcc1461049b5780632eb4a7ab146104bb57806337e8b1b3146104d15780633ccfd60b146104e757600080fd5b8063180b41861461042b57806318160ddd1461046657806323b872dd1461047b57600080fd5b806301ffc9a71461033a57806306fdde031461036f578063081812fc14610391578063095ea7b3146103c957806316ba10e0146103eb57806316c38b3c1461040b575b600080fd5b34801561034657600080fd5b5061035a6103553660046122d2565b6109cd565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b50610384610a1f565b6040516103669190612347565b34801561039d57600080fd5b506103b16103ac36600461235a565b610ab1565b6040516001600160a01b039091168152602001610366565b3480156103d557600080fd5b506103e96103e436600461238f565b610af5565b005b3480156103f757600080fd5b506103e9610406366004612445565b610b95565b34801561041757600080fd5b506103e961042636600461249e565b610bb4565b34801561043757600080fd5b506104586104463660046124b9565b60146020526000908152604090205481565b604051908152602001610366565b34801561047257600080fd5b50610458610bcf565b34801561048757600080fd5b506103e96104963660046124d4565b610bdd565b3480156104a757600080fd5b506103e96104b636600461235a565b610d6e565b3480156104c757600080fd5b5061045860135481565b3480156104dd57600080fd5b50610458600e5481565b3480156104f357600080fd5b506103e9610db8565b34801561050857600080fd5b506103e96105173660046124d4565b610e91565b34801561052857600080fd5b506103e961053736600461255c565b610eb1565b34801561054857600080fd5b506103e9610557366004612445565b6110e1565b34801561056857600080fd5b5060155461035a9062010000900460ff1681565b34801561058857600080fd5b506103846110fc565b34801561059d57600080fd5b506105b16105ac36600461255c565b61118a565b60405161036691906125db565b3480156105ca57600080fd5b5060155461035a9060ff1681565b3480156105e457600080fd5b50610384611256565b3480156105f957600080fd5b506103b161060836600461235a565b611263565b34801561061957600080fd5b506103e961062836600461235a565b61126e565b34801561063957600080fd5b5061038461127b565b34801561064e57600080fd5b5060155461035a90610100900460ff1681565b34801561066d57600080fd5b5061045861067c3660046124b9565b611288565b34801561068d57600080fd5b506103e96112d7565b3480156106a257600080fd5b506103e96106b136600461235a565b6112eb565b3480156106c257600080fd5b506103846112f8565b3480156106d757600080fd5b506103e96106e636600461235a565b611305565b3480156106f757600080fd5b506103e9610706366004612445565b611312565b34801561071757600080fd5b5061072b6107263660046124b9565b61132d565b604051610366919061261d565b34801561074457600080fd5b506008546001600160a01b03166103b1565b34801561076257600080fd5b5061038461143d565b34801561077757600080fd5b5061072b610786366004612655565b61144c565b34801561079757600080fd5b506103e96107a6366004612688565b6115d8565b6103e96107b936600461235a565b611695565b3480156107ca57600080fd5b506103e96107d93660046126b4565b611823565b3480156107ea57600080fd5b5061045860125481565b34801561080057600080fd5b506103846118b9565b34801561081557600080fd5b506103e961082436600461235a565b6118c6565b34801561083557600080fd5b506103e961084436600461249e565b6118d3565b34801561085557600080fd5b506103e96108643660046126de565b6118f5565b34801561087557600080fd5b50610458600d5481565b34801561088b57600080fd5b5061089f61089a36600461235a565b61193f565b604051610366919061275a565b3480156108b857600080fd5b506103e96108c736600461235a565b6119c7565b3480156108d857600080fd5b506103846108e736600461235a565b611a02565b3480156108f857600080fd5b50610458600c5481565b34801561090e57600080fd5b5061045860115481565b34801561092457600080fd5b506103e961093336600461249e565b611b71565b34801561094457600080fd5b50610458600f5481565b34801561095a57600080fd5b5061035a610969366004612768565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109a357600080fd5b506103e96109b23660046124b9565b611b95565b3480156109c357600080fd5b5061045860105481565b60006301ffc9a760e01b6001600160e01b0319831614806109fe57506380ac58cd60e01b6001600160e01b03198316145b80610a195750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610a2e90612792565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5a90612792565b8015610aa75780601f10610a7c57610100808354040283529160200191610aa7565b820191906000526020600020905b815481529060010190602001808311610a8a57829003601f168201915b5050505050905090565b6000610abc82611c0e565b610ad9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b0082611263565b9050336001600160a01b03821614610b3957610b1c8133610969565b610b39576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b9d611c43565b8051610bb0906017906020840190612223565b5050565b610bbc611c43565b6015805460ff1916911515919091179055565b600154600054036000190190565b6000610be882611c9d565b9050836001600160a01b0316816001600160a01b031614610c1b5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610c6857610c4b8633610969565b610c6857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610c8f57604051633a954ecd60e21b815260040160405180910390fd5b8015610c9a57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610d255760018401600081815260046020526040902054610d23576000548114610d235760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610d76611c43565b610d7e610bcf565b600c54610d8b91906127e3565b811115610db35760405162461bcd60e51b8152600401610daa906127fa565b60405180910390fd5b600d55565b610dc0611c43565b60026009541415610e135760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610daa565b60026009556000610e2c6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e76576040519150601f19603f3d011682016040523d82523d6000602084013e610e7b565b606091505b5050905080610e8957600080fd5b506001600955565b610eac838383604051806020016040528060008152506118f5565b505050565b60155460ff610100909104161515600114610f035760405162461bcd60e51b815260206004820152601260248201527115da1a5d195b1a5cdd08191a5cd8589b195960721b6044820152606401610daa565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f7d838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050611d06565b610fba5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610daa565b60155460ff16156110075760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610daa565b601154336000908152601460205260409020541061105f5760405162461bcd60e51b8152602060048201526015602482015274165bdd48185b1c9958591e481b5a5b9d19590815d3605a1b6044820152606401610daa565b600e54600d54600c5461107291906127e3565b61107c9190612828565b611084610bcf565b61108f906001612828565b11156110ad5760405162461bcd60e51b8152600401610daa906127fa565b60115433600090815260146020526040812080549091906110cf908490612828565b90915550610eac905033601154611d1c565b6110e9611c43565b8051610bb0906018906020840190612223565b6017805461110990612792565b80601f016020809104026020016040519081016040528092919081815260200182805461113590612792565b80156111825780601f1061115757610100808354040283529160200191611182565b820191906000526020600020905b81548152906001019060200180831161116557829003601f168201915b505050505081565b60608160008167ffffffffffffffff8111156111a8576111a86123b9565b6040519080825280602002602001820160405280156111fa57816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816111c65790505b50905060005b82811461124d5761122886868381811061121c5761121c612840565b9050602002013561193f565b82828151811061123a5761123a612840565b6020908102919091010152600101611200565b50949350505050565b6016805461110990612792565b6000610a1982611c9d565b611276611c43565b601055565b600a805461110990612792565b60006001600160a01b0382166112b1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6112df611c43565b6112e96000611d36565b565b6112f3611c43565b601155565b600b805461110990612792565b61130d611c43565b601355565b61131a611c43565b8051610bb0906016906020840190612223565b6060600080600061133d85611288565b905060008167ffffffffffffffff81111561135a5761135a6123b9565b604051908082528060200260200182016040528015611383578160200160208202803683370190505b5090506113b060408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614611431576113c381611d88565b91508160400151156113d457611429565b81516001600160a01b0316156113e957815194505b876001600160a01b0316856001600160a01b03161415611429578083878060010198508151811061141c5761141c612840565b6020026020010181815250505b6001016113b3565b50909695505050505050565b606060038054610a2e90612792565b606081831061146e57604051631960ccad60e11b815260040160405180910390fd5b60008061147a60005490565b9050600185101561148a57600194505b80841115611496578093505b60006114a187611288565b9050848610156114c057858503818110156114ba578091505b506114c4565b5060005b60008167ffffffffffffffff8111156114df576114df6123b9565b604051908082528060200260200182016040528015611508578160200160208202803683370190505b5090508161151b5793506115d192505050565b60006115268861193f565b905060008160400151611537575080515b885b8881141580156115495750848714155b156115c55761155781611d88565b9250826040015115611568576115bd565b82516001600160a01b03161561157d57825191505b8a6001600160a01b0316826001600160a01b031614156115bd57808488806001019950815181106115b0576115b0612840565b6020026020010181815250505b600101611539565b50505092835250909150505b9392505050565b6115e0611c43565b600d5482600e546115f19190612828565b111561163f5760405162461bcd60e51b815260206004820152601b60248201527f4d617820726573657276656420737570706c79207265616368656400000000006044820152606401610daa565b600c548261164b610bcf565b6116559190612828565b11156116735760405162461bcd60e51b8152600401610daa906127fa565b81600e60008282546116859190612828565b90915550610bb090508183611d1c565b8060006116a0610bcf565b9050600f5481101561170f576000821180156116d85750601254336000908152601460205260409020546116d5908490612828565b11155b61170f5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610daa565b601554610100900460ff16156117595760405162461bcd60e51b815260206004820152600f60248201526e141d589b1a58c8191a5cd8589b1959608a1b6044820152606401610daa565b60155460ff16156117a65760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610daa565b600e54600d54600c546117b991906127e3565b6117c39190612828565b836117cc610bcf565b6117d69190612828565b11156117f45760405162461bcd60e51b8152600401610daa906127fa565b3360009081526014602052604081208054859290611813908490612828565b90915550610eac90503384611d1c565b6001600160a01b03821633141561184d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6018805461110990612792565b6118ce611c43565b601255565b6118db611c43565b601580549115156101000261ff0019909216919091179055565b611900848484610bdd565b6001600160a01b0383163b156119395761191c84848484611dc4565b611939576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061199857506000548310155b156119a35792915050565b6119ac83611d88565b90508060400151156119be5792915050565b6115d183611ebc565b6119cf611c43565b600c54600d546119df9083612828565b11156119fd5760405162461bcd60e51b8152600401610daa906127fa565b600f55565b6060611a0d82611c0e565b611a715760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610daa565b60155462010000900460ff16611b135760188054611a8e90612792565b80601f0160208091040260200160405190810160405280929190818152602001828054611aba90612792565b8015611b075780601f10611adc57610100808354040283529160200191611b07565b820191906000526020600020905b815481529060010190602001808311611aea57829003601f168201915b50505050509050919050565b6000611b1d611ef1565b90506000815111611b3d57604051806020016040528060008152506115d1565b80611b4784611f00565b6017604051602001611b5b93929190612856565b6040516020818303038152906040529392505050565b611b79611c43565b60158054911515620100000262ff000019909216919091179055565b611b9d611c43565b6001600160a01b038116611c025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610daa565b611c0b81611d36565b50565b600081600111158015611c22575060005482105b8015610a19575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b031633146112e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610daa565b60008180600111611ced57600054811015611ced57600081815260046020526040902054600160e01b8116611ceb575b806115d1575060001901600081815260046020526040902054611ccd565b505b604051636f96cda160e11b815260040160405180910390fd5b600082611d138584611ffe565b14949350505050565b610bb082826040518060200160405280600081525061204b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610a19906120b8565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611df990339089908890889060040161291a565b602060405180830381600087803b158015611e1357600080fd5b505af1925050508015611e43575060408051601f3d908101601f19168201909252611e4091810190612957565b60015b611e9e573d808015611e71576040519150601f19603f3d011682016040523d82523d6000602084013e611e76565b606091505b508051611e96576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610a19611eec83611c9d565b6120b8565b606060168054610a2e90612792565b606081611f245750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f4e5780611f3881612974565b9150611f479050600a836129a5565b9150611f28565b60008167ffffffffffffffff811115611f6957611f696123b9565b6040519080825280601f01601f191660200182016040528015611f93576020820181803683370190505b5090505b8415611eb457611fa86001836127e3565b9150611fb5600a866129b9565b611fc0906030612828565b60f81b818381518110611fd557611fd5612840565b60200101906001600160f81b031916908160001a905350611ff7600a866129a5565b9450611f97565b600081815b84518110156120435761202f8286838151811061202257612022612840565b6020026020010151612100565b91508061203b81612974565b915050612003565b509392505050565b612055838361212c565b6001600160a01b0383163b15610eac576000548281035b61207f6000868380600101945086611dc4565b61209c576040516368d2bf6b60e11b815260040160405180910390fd5b81811061206c5781600054146120b157600080fd5b5050505050565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b600081831061211c5760008281526020849052604090206115d1565b5060009182526020526040902090565b6000548161214d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146121fc57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016121c4565b508161221a57604051622e076360e81b815260040160405180910390fd5b60005550505050565b82805461222f90612792565b90600052602060002090601f0160209004810192826122515760008555612297565b82601f1061226a57805160ff1916838001178555612297565b82800160010185558215612297579182015b8281111561229757825182559160200191906001019061227c565b506122a39291506122a7565b5090565b5b808211156122a357600081556001016122a8565b6001600160e01b031981168114611c0b57600080fd5b6000602082840312156122e457600080fd5b81356115d1816122bc565b60005b8381101561230a5781810151838201526020016122f2565b838111156119395750506000910152565b600081518084526123338160208601602086016122ef565b601f01601f19169290920160200192915050565b6020815260006115d1602083018461231b565b60006020828403121561236c57600080fd5b5035919050565b80356001600160a01b038116811461238a57600080fd5b919050565b600080604083850312156123a257600080fd5b6123ab83612373565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156123ea576123ea6123b9565b604051601f8501601f19908116603f01168101908282118183101715612412576124126123b9565b8160405280935085815286868601111561242b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561245757600080fd5b813567ffffffffffffffff81111561246e57600080fd5b8201601f8101841361247f57600080fd5b611eb4848235602084016123cf565b8035801515811461238a57600080fd5b6000602082840312156124b057600080fd5b6115d18261248e565b6000602082840312156124cb57600080fd5b6115d182612373565b6000806000606084860312156124e957600080fd5b6124f284612373565b925061250060208501612373565b9150604084013590509250925092565b60008083601f84011261252257600080fd5b50813567ffffffffffffffff81111561253a57600080fd5b6020830191508360208260051b850101111561255557600080fd5b9250929050565b6000806020838503121561256f57600080fd5b823567ffffffffffffffff81111561258657600080fd5b61259285828601612510565b90969095509350505050565b80516001600160a01b0316825260208082015167ffffffffffffffff169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b818110156114315761260a83855161259e565b92840192608092909201916001016125f7565b6020808252825182820181905260009190848201906040850190845b8181101561143157835183529284019291840191600101612639565b60008060006060848603121561266a57600080fd5b61267384612373565b95602085013595506040909401359392505050565b6000806040838503121561269b57600080fd5b823591506126ab60208401612373565b90509250929050565b600080604083850312156126c757600080fd5b6126d083612373565b91506126ab6020840161248e565b600080600080608085870312156126f457600080fd5b6126fd85612373565b935061270b60208601612373565b925060408501359150606085013567ffffffffffffffff81111561272e57600080fd5b8501601f8101871361273f57600080fd5b61274e878235602084016123cf565b91505092959194509250565b60808101610a19828461259e565b6000806040838503121561277b57600080fd5b61278483612373565b91506126ab60208401612373565b600181811c908216806127a657607f821691505b602082108114156127c757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156127f5576127f56127cd565b500390565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6000821982111561283b5761283b6127cd565b500190565b634e487b7160e01b600052603260045260246000fd5b6000845160206128698285838a016122ef565b85519184019161287c8184848a016122ef565b8554920191600090600181811c908083168061289957607f831692505b8583108114156128b757634e487b7160e01b85526022600452602485fd5b8080156128cb57600181146128dc57612909565b60ff19851688528388019550612909565b60008b81526020902060005b858110156129015781548a8201529084019088016128e8565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061294d9083018461231b565b9695505050505050565b60006020828403121561296957600080fd5b81516115d1816122bc565b6000600019821415612988576129886127cd565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826129b4576129b461298f565b500490565b6000826129c8576129c861298f565b50069056fea26469706673582212206399f76b1d80bd33b09e98f651160e4be657cddf9b19dcce90274fd2a33765a264736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63636b645a357631484658796e39514376597a74736e46356d4c6343544b745a4241694e6a4e5038577235342f00000000000000000000

Deployed Bytecode

0x6080604052600436106103355760003560e01c80637339e538116101ab578063ae709da3116100f7578063d5abeb0111610095578063e150007e1161006f578063e150007e14610938578063e985e9c51461094e578063f2fde38b14610997578063f737c47a146109b757600080fd5b8063d5abeb01146108ec578063ddefaea714610902578063e0a808531461091857600080fd5b8063c1fad42c116100d1578063c1fad42c14610869578063c23dc68f1461087f578063c4efae53146108ac578063c87b56dd146108cc57600080fd5b8063ae709da314610809578063b767a09814610829578063b88d4fde1461084957600080fd5b806395d89b4111610164578063a0712d681161013e578063a0712d68146107ab578063a22cb465146107be578063a31d99d8146107de578063a45ba8e7146107f457600080fd5b806395d89b411461075657806399a2557a1461076b5780639f15df121461078b57600080fd5b80637339e538146106965780637b61c320146106b65780637cb64759146106cb5780637ec4a659146106eb5780638462151c1461070b5780638da5cb5b1461073857600080fd5b806342842e0e1161028557806362b99ad4116102235780636c02a931116101fd5780636c02a9311461062d5780636caede3d1461064257806370a0823114610661578063715018a61461068157600080fd5b806362b99ad4146105d85780636352211e146105ed578063637bb58a1461060d57600080fd5b8063518302271161025f578063518302271461055c5780635503a0e81461057c5780635bbb2177146105915780635c975abb146105be57600080fd5b806342842e0e146104fc57806344d843811461051c5780634fdd43cb1461053c57600080fd5b8063180b4186116102f2578063271b2fcc116102cc578063271b2fcc1461049b5780632eb4a7ab146104bb57806337e8b1b3146104d15780633ccfd60b146104e757600080fd5b8063180b41861461042b57806318160ddd1461046657806323b872dd1461047b57600080fd5b806301ffc9a71461033a57806306fdde031461036f578063081812fc14610391578063095ea7b3146103c957806316ba10e0146103eb57806316c38b3c1461040b575b600080fd5b34801561034657600080fd5b5061035a6103553660046122d2565b6109cd565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b50610384610a1f565b6040516103669190612347565b34801561039d57600080fd5b506103b16103ac36600461235a565b610ab1565b6040516001600160a01b039091168152602001610366565b3480156103d557600080fd5b506103e96103e436600461238f565b610af5565b005b3480156103f757600080fd5b506103e9610406366004612445565b610b95565b34801561041757600080fd5b506103e961042636600461249e565b610bb4565b34801561043757600080fd5b506104586104463660046124b9565b60146020526000908152604090205481565b604051908152602001610366565b34801561047257600080fd5b50610458610bcf565b34801561048757600080fd5b506103e96104963660046124d4565b610bdd565b3480156104a757600080fd5b506103e96104b636600461235a565b610d6e565b3480156104c757600080fd5b5061045860135481565b3480156104dd57600080fd5b50610458600e5481565b3480156104f357600080fd5b506103e9610db8565b34801561050857600080fd5b506103e96105173660046124d4565b610e91565b34801561052857600080fd5b506103e961053736600461255c565b610eb1565b34801561054857600080fd5b506103e9610557366004612445565b6110e1565b34801561056857600080fd5b5060155461035a9062010000900460ff1681565b34801561058857600080fd5b506103846110fc565b34801561059d57600080fd5b506105b16105ac36600461255c565b61118a565b60405161036691906125db565b3480156105ca57600080fd5b5060155461035a9060ff1681565b3480156105e457600080fd5b50610384611256565b3480156105f957600080fd5b506103b161060836600461235a565b611263565b34801561061957600080fd5b506103e961062836600461235a565b61126e565b34801561063957600080fd5b5061038461127b565b34801561064e57600080fd5b5060155461035a90610100900460ff1681565b34801561066d57600080fd5b5061045861067c3660046124b9565b611288565b34801561068d57600080fd5b506103e96112d7565b3480156106a257600080fd5b506103e96106b136600461235a565b6112eb565b3480156106c257600080fd5b506103846112f8565b3480156106d757600080fd5b506103e96106e636600461235a565b611305565b3480156106f757600080fd5b506103e9610706366004612445565b611312565b34801561071757600080fd5b5061072b6107263660046124b9565b61132d565b604051610366919061261d565b34801561074457600080fd5b506008546001600160a01b03166103b1565b34801561076257600080fd5b5061038461143d565b34801561077757600080fd5b5061072b610786366004612655565b61144c565b34801561079757600080fd5b506103e96107a6366004612688565b6115d8565b6103e96107b936600461235a565b611695565b3480156107ca57600080fd5b506103e96107d93660046126b4565b611823565b3480156107ea57600080fd5b5061045860125481565b34801561080057600080fd5b506103846118b9565b34801561081557600080fd5b506103e961082436600461235a565b6118c6565b34801561083557600080fd5b506103e961084436600461249e565b6118d3565b34801561085557600080fd5b506103e96108643660046126de565b6118f5565b34801561087557600080fd5b50610458600d5481565b34801561088b57600080fd5b5061089f61089a36600461235a565b61193f565b604051610366919061275a565b3480156108b857600080fd5b506103e96108c736600461235a565b6119c7565b3480156108d857600080fd5b506103846108e736600461235a565b611a02565b3480156108f857600080fd5b50610458600c5481565b34801561090e57600080fd5b5061045860115481565b34801561092457600080fd5b506103e961093336600461249e565b611b71565b34801561094457600080fd5b50610458600f5481565b34801561095a57600080fd5b5061035a610969366004612768565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109a357600080fd5b506103e96109b23660046124b9565b611b95565b3480156109c357600080fd5b5061045860105481565b60006301ffc9a760e01b6001600160e01b0319831614806109fe57506380ac58cd60e01b6001600160e01b03198316145b80610a195750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610a2e90612792565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5a90612792565b8015610aa75780601f10610a7c57610100808354040283529160200191610aa7565b820191906000526020600020905b815481529060010190602001808311610a8a57829003601f168201915b5050505050905090565b6000610abc82611c0e565b610ad9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610b0082611263565b9050336001600160a01b03821614610b3957610b1c8133610969565b610b39576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610b9d611c43565b8051610bb0906017906020840190612223565b5050565b610bbc611c43565b6015805460ff1916911515919091179055565b600154600054036000190190565b6000610be882611c9d565b9050836001600160a01b0316816001600160a01b031614610c1b5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610c6857610c4b8633610969565b610c6857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610c8f57604051633a954ecd60e21b815260040160405180910390fd5b8015610c9a57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610d255760018401600081815260046020526040902054610d23576000548114610d235760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610d76611c43565b610d7e610bcf565b600c54610d8b91906127e3565b811115610db35760405162461bcd60e51b8152600401610daa906127fa565b60405180910390fd5b600d55565b610dc0611c43565b60026009541415610e135760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610daa565b60026009556000610e2c6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e76576040519150601f19603f3d011682016040523d82523d6000602084013e610e7b565b606091505b5050905080610e8957600080fd5b506001600955565b610eac838383604051806020016040528060008152506118f5565b505050565b60155460ff610100909104161515600114610f035760405162461bcd60e51b815260206004820152601260248201527115da1a5d195b1a5cdd08191a5cd8589b195960721b6044820152606401610daa565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f7d838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050611d06565b610fba5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610daa565b60155460ff16156110075760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610daa565b601154336000908152601460205260409020541061105f5760405162461bcd60e51b8152602060048201526015602482015274165bdd48185b1c9958591e481b5a5b9d19590815d3605a1b6044820152606401610daa565b600e54600d54600c5461107291906127e3565b61107c9190612828565b611084610bcf565b61108f906001612828565b11156110ad5760405162461bcd60e51b8152600401610daa906127fa565b60115433600090815260146020526040812080549091906110cf908490612828565b90915550610eac905033601154611d1c565b6110e9611c43565b8051610bb0906018906020840190612223565b6017805461110990612792565b80601f016020809104026020016040519081016040528092919081815260200182805461113590612792565b80156111825780601f1061115757610100808354040283529160200191611182565b820191906000526020600020905b81548152906001019060200180831161116557829003601f168201915b505050505081565b60608160008167ffffffffffffffff8111156111a8576111a86123b9565b6040519080825280602002602001820160405280156111fa57816020015b6040805160808101825260008082526020808301829052928201819052606082015282526000199092019101816111c65790505b50905060005b82811461124d5761122886868381811061121c5761121c612840565b9050602002013561193f565b82828151811061123a5761123a612840565b6020908102919091010152600101611200565b50949350505050565b6016805461110990612792565b6000610a1982611c9d565b611276611c43565b601055565b600a805461110990612792565b60006001600160a01b0382166112b1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6112df611c43565b6112e96000611d36565b565b6112f3611c43565b601155565b600b805461110990612792565b61130d611c43565b601355565b61131a611c43565b8051610bb0906016906020840190612223565b6060600080600061133d85611288565b905060008167ffffffffffffffff81111561135a5761135a6123b9565b604051908082528060200260200182016040528015611383578160200160208202803683370190505b5090506113b060408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614611431576113c381611d88565b91508160400151156113d457611429565b81516001600160a01b0316156113e957815194505b876001600160a01b0316856001600160a01b03161415611429578083878060010198508151811061141c5761141c612840565b6020026020010181815250505b6001016113b3565b50909695505050505050565b606060038054610a2e90612792565b606081831061146e57604051631960ccad60e11b815260040160405180910390fd5b60008061147a60005490565b9050600185101561148a57600194505b80841115611496578093505b60006114a187611288565b9050848610156114c057858503818110156114ba578091505b506114c4565b5060005b60008167ffffffffffffffff8111156114df576114df6123b9565b604051908082528060200260200182016040528015611508578160200160208202803683370190505b5090508161151b5793506115d192505050565b60006115268861193f565b905060008160400151611537575080515b885b8881141580156115495750848714155b156115c55761155781611d88565b9250826040015115611568576115bd565b82516001600160a01b03161561157d57825191505b8a6001600160a01b0316826001600160a01b031614156115bd57808488806001019950815181106115b0576115b0612840565b6020026020010181815250505b600101611539565b50505092835250909150505b9392505050565b6115e0611c43565b600d5482600e546115f19190612828565b111561163f5760405162461bcd60e51b815260206004820152601b60248201527f4d617820726573657276656420737570706c79207265616368656400000000006044820152606401610daa565b600c548261164b610bcf565b6116559190612828565b11156116735760405162461bcd60e51b8152600401610daa906127fa565b81600e60008282546116859190612828565b90915550610bb090508183611d1c565b8060006116a0610bcf565b9050600f5481101561170f576000821180156116d85750601254336000908152601460205260409020546116d5908490612828565b11155b61170f5760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610daa565b601554610100900460ff16156117595760405162461bcd60e51b815260206004820152600f60248201526e141d589b1a58c8191a5cd8589b1959608a1b6044820152606401610daa565b60155460ff16156117a65760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610daa565b600e54600d54600c546117b991906127e3565b6117c39190612828565b836117cc610bcf565b6117d69190612828565b11156117f45760405162461bcd60e51b8152600401610daa906127fa565b3360009081526014602052604081208054859290611813908490612828565b90915550610eac90503384611d1c565b6001600160a01b03821633141561184d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6018805461110990612792565b6118ce611c43565b601255565b6118db611c43565b601580549115156101000261ff0019909216919091179055565b611900848484610bdd565b6001600160a01b0383163b156119395761191c84848484611dc4565b611939576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604080516080810182526000808252602082018190529181018290526060810191909152604080516080810182526000808252602082018190529181018290526060810191909152600183108061199857506000548310155b156119a35792915050565b6119ac83611d88565b90508060400151156119be5792915050565b6115d183611ebc565b6119cf611c43565b600c54600d546119df9083612828565b11156119fd5760405162461bcd60e51b8152600401610daa906127fa565b600f55565b6060611a0d82611c0e565b611a715760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610daa565b60155462010000900460ff16611b135760188054611a8e90612792565b80601f0160208091040260200160405190810160405280929190818152602001828054611aba90612792565b8015611b075780601f10611adc57610100808354040283529160200191611b07565b820191906000526020600020905b815481529060010190602001808311611aea57829003601f168201915b50505050509050919050565b6000611b1d611ef1565b90506000815111611b3d57604051806020016040528060008152506115d1565b80611b4784611f00565b6017604051602001611b5b93929190612856565b6040516020818303038152906040529392505050565b611b79611c43565b60158054911515620100000262ff000019909216919091179055565b611b9d611c43565b6001600160a01b038116611c025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610daa565b611c0b81611d36565b50565b600081600111158015611c22575060005482105b8015610a19575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b031633146112e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610daa565b60008180600111611ced57600054811015611ced57600081815260046020526040902054600160e01b8116611ceb575b806115d1575060001901600081815260046020526040902054611ccd565b505b604051636f96cda160e11b815260040160405180910390fd5b600082611d138584611ffe565b14949350505050565b610bb082826040518060200160405280600081525061204b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516080810182526000808252602082018190529181018290526060810191909152600082815260046020526040902054610a19906120b8565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611df990339089908890889060040161291a565b602060405180830381600087803b158015611e1357600080fd5b505af1925050508015611e43575060408051601f3d908101601f19168201909252611e4091810190612957565b60015b611e9e573d808015611e71576040519150601f19603f3d011682016040523d82523d6000602084013e611e76565b606091505b508051611e96576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182526000808252602082018190529181018290526060810191909152610a19611eec83611c9d565b6120b8565b606060168054610a2e90612792565b606081611f245750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f4e5780611f3881612974565b9150611f479050600a836129a5565b9150611f28565b60008167ffffffffffffffff811115611f6957611f696123b9565b6040519080825280601f01601f191660200182016040528015611f93576020820181803683370190505b5090505b8415611eb457611fa86001836127e3565b9150611fb5600a866129b9565b611fc0906030612828565b60f81b818381518110611fd557611fd5612840565b60200101906001600160f81b031916908160001a905350611ff7600a866129a5565b9450611f97565b600081815b84518110156120435761202f8286838151811061202257612022612840565b6020026020010151612100565b91508061203b81612974565b915050612003565b509392505050565b612055838361212c565b6001600160a01b0383163b15610eac576000548281035b61207f6000868380600101945086611dc4565b61209c576040516368d2bf6b60e11b815260040160405180910390fd5b81811061206c5781600054146120b157600080fd5b5050505050565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b600081831061211c5760008281526020849052604090206115d1565b5060009182526020526040902090565b6000548161214d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146121fc57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016121c4565b508161221a57604051622e076360e81b815260040160405180910390fd5b60005550505050565b82805461222f90612792565b90600052602060002090601f0160209004810192826122515760008555612297565b82601f1061226a57805160ff1916838001178555612297565b82800160010185558215612297579182015b8281111561229757825182559160200191906001019061227c565b506122a39291506122a7565b5090565b5b808211156122a357600081556001016122a8565b6001600160e01b031981168114611c0b57600080fd5b6000602082840312156122e457600080fd5b81356115d1816122bc565b60005b8381101561230a5781810151838201526020016122f2565b838111156119395750506000910152565b600081518084526123338160208601602086016122ef565b601f01601f19169290920160200192915050565b6020815260006115d1602083018461231b565b60006020828403121561236c57600080fd5b5035919050565b80356001600160a01b038116811461238a57600080fd5b919050565b600080604083850312156123a257600080fd5b6123ab83612373565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156123ea576123ea6123b9565b604051601f8501601f19908116603f01168101908282118183101715612412576124126123b9565b8160405280935085815286868601111561242b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561245757600080fd5b813567ffffffffffffffff81111561246e57600080fd5b8201601f8101841361247f57600080fd5b611eb4848235602084016123cf565b8035801515811461238a57600080fd5b6000602082840312156124b057600080fd5b6115d18261248e565b6000602082840312156124cb57600080fd5b6115d182612373565b6000806000606084860312156124e957600080fd5b6124f284612373565b925061250060208501612373565b9150604084013590509250925092565b60008083601f84011261252257600080fd5b50813567ffffffffffffffff81111561253a57600080fd5b6020830191508360208260051b850101111561255557600080fd5b9250929050565b6000806020838503121561256f57600080fd5b823567ffffffffffffffff81111561258657600080fd5b61259285828601612510565b90969095509350505050565b80516001600160a01b0316825260208082015167ffffffffffffffff169083015260408082015115159083015260609081015162ffffff16910152565b6020808252825182820181905260009190848201906040850190845b818110156114315761260a83855161259e565b92840192608092909201916001016125f7565b6020808252825182820181905260009190848201906040850190845b8181101561143157835183529284019291840191600101612639565b60008060006060848603121561266a57600080fd5b61267384612373565b95602085013595506040909401359392505050565b6000806040838503121561269b57600080fd5b823591506126ab60208401612373565b90509250929050565b600080604083850312156126c757600080fd5b6126d083612373565b91506126ab6020840161248e565b600080600080608085870312156126f457600080fd5b6126fd85612373565b935061270b60208601612373565b925060408501359150606085013567ffffffffffffffff81111561272e57600080fd5b8501601f8101871361273f57600080fd5b61274e878235602084016123cf565b91505092959194509250565b60808101610a19828461259e565b6000806040838503121561277b57600080fd5b61278483612373565b91506126ab60208401612373565b600181811c908216806127a657607f821691505b602082108114156127c757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156127f5576127f56127cd565b500390565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6000821982111561283b5761283b6127cd565b500190565b634e487b7160e01b600052603260045260246000fd5b6000845160206128698285838a016122ef565b85519184019161287c8184848a016122ef565b8554920191600090600181811c908083168061289957607f831692505b8583108114156128b757634e487b7160e01b85526022600452602485fd5b8080156128cb57600181146128dc57612909565b60ff19851688528388019550612909565b60008b81526020902060005b858110156129015781548a8201529084019088016128e8565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061294d9083018461231b565b9695505050505050565b60006020828403121561296957600080fd5b81516115d1816122bc565b6000600019821415612988576129886127cd565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826129b4576129b461298f565b500490565b6000826129c8576129c861298f565b50069056fea26469706673582212206399f76b1d80bd33b09e98f651160e4be657cddf9b19dcce90274fd2a33765a264736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63636b645a357631484658796e39514376597a74736e46356d4c6343544b745a4241694e6a4e5038577235342f00000000000000000000

-----Decoded View---------------
Arg [0] : _hiddenMetadataUri (string): ipfs://QmcckdZ5v1HFXyn9QCvYztsnF5mLcCTKtZBAiNjNP8Wr54/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d63636b645a357631484658796e39514376597a74736e46
Arg [3] : 356d4c6343544b745a4241694e6a4e5038577235342f00000000000000000000


Deployed Bytecode Sourcemap

78726:5371:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37268:639;;;;;;;;;;-1:-1:-1;37268:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;37268:639:0;;;;;;;;38170:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44653:218::-;;;;;;;;;;-1:-1:-1;44653:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;44653:218:0;1528:203:1;44094:400:0;;;;;;;;;;-1:-1:-1;44094:400:0;;;;;:::i;:::-;;:::i;:::-;;83362:106;;;;;;;;;;-1:-1:-1;83362:106:0;;;;;:::i;:::-;;:::i;82163:83::-;;;;;;;;;;-1:-1:-1;82163:83:0;;;;;:::i;:::-;;:::i;79253:46::-;;;;;;;;;;-1:-1:-1;79253:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;4085:25:1;;;4073:2;4058:18;79253:46:0;3939:177:1;33921:323:0;;;;;;;;;;;;;:::i;48360:2817::-;;;;;;;;;;-1:-1:-1;48360:2817:0;;;;;:::i;:::-;;:::i;82860:234::-;;;;;;;;;;-1:-1:-1;82860:234:0;;;;;:::i;:::-;;:::i;79221:25::-;;;;;;;;;;;;;;;;79007:39;;;;;;;;;;;;;;;;83707:160;;;;;;;;;;;;;:::i;51273:185::-;;;;;;;;;;-1:-1:-1;51273:185:0;;;;;:::i;:::-;;:::i;80685:603::-;;;;;;;;;;-1:-1:-1;80685:603:0;;;;;:::i;:::-;;:::i;83102:138::-;;;;;;;;;;-1:-1:-1;83102:138:0;;;;;:::i;:::-;;:::i;79387:28::-;;;;;;;;;;-1:-1:-1;79387:28:0;;;;;;;;;;;79459:33;;;;;;;;;;;;;:::i;73851:528::-;;;;;;;;;;-1:-1:-1;73851:528:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;79308:26::-;;;;;;;;;;-1:-1:-1;79308:26:0;;;;;;;;79424:28;;;;;;;;;;;;;:::i;39563:152::-;;;;;;;;;;-1:-1:-1;39563:152:0;;;;;:::i;:::-;;:::i;82657:100::-;;;;;;;;;;-1:-1:-1;82657:100:0;;;;;:::i;:::-;;:::i;78831:38::-;;;;;;;;;;;;;:::i;79341:39::-;;;;;;;;;;-1:-1:-1;79341:39:0;;;;;;;;;;;35105:233;;;;;;;;;;-1:-1:-1;35105:233:0;;;;;:::i;:::-;;:::i;18016:103::-;;;;;;;;;;;;;:::i;82551:98::-;;;;;;;;;;-1:-1:-1;82551:98:0;;;;;:::i;:::-;;:::i;78876:40::-;;;;;;;;;;;;;:::i;83476:104::-;;;;;;;;;;-1:-1:-1;83476:104:0;;;;;:::i;:::-;;:::i;83248:106::-;;;;;;;;;;-1:-1:-1;83248:106:0;;;;;:::i;:::-;;:::i;77727:900::-;;;;;;;;;;-1:-1:-1;77727:900:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;17368:87::-;;;;;;;;;;-1:-1:-1;17441:6:0;;-1:-1:-1;;;;;17441:6:0;17368:87;;38346:104;;;;;;;;;;;;;:::i;74767:2513::-;;;;;;;;;;-1:-1:-1;74767:2513:0;;;;;:::i;:::-;;:::i;81296:378::-;;;;;;;;;;-1:-1:-1;81296:378:0;;;;;:::i;:::-;;:::i;80289:388::-;;;;;;:::i;:::-;;:::i;45211:308::-;;;;;;;;;;-1:-1:-1;45211:308:0;;;;;:::i;:::-;;:::i;79182:30::-;;;;;;;;;;;;;;;;79499:36;;;;;;;;;;;;;:::i;82447:96::-;;;;;;;;;;-1:-1:-1;82447:96:0;;;;;:::i;:::-;;:::i;83588:111::-;;;;;;;;;;-1:-1:-1;83588:111:0;;;;;:::i;:::-;;:::i;52056:399::-;;;;;;;;;;-1:-1:-1;52056:399:0;;;;;:::i;:::-;;:::i;78962:38::-;;;;;;;;;;;;;;;;73264:428;;;;;;;;;;-1:-1:-1;73264:428:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;82254:185::-;;;;;;;;;;-1:-1:-1;82254:185:0;;;;;:::i;:::-;;:::i;81682:473::-;;;;;;;;;;-1:-1:-1;81682:473:0;;;;;:::i;:::-;;:::i;78923:32::-;;;;;;;;;;;;;;;;79144:31;;;;;;;;;;;;;;;;82765:87;;;;;;;;;;-1:-1:-1;82765:87:0;;;;;:::i;:::-;;:::i;79059:37::-;;;;;;;;;;;;;;;;45676:164;;;;;;;;;;-1:-1:-1;45676:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;45797:25:0;;;45773:4;45797:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45676:164;18274:201;;;;;;;;;;-1:-1:-1;18274:201:0;;;;;:::i;:::-;;:::i;79103:32::-;;;;;;;;;;;;;;;;37268:639;37353:4;-1:-1:-1;;;;;;;;;37677:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;37754:25:0;;;37677:102;:179;;;-1:-1:-1;;;;;;;;;;37831:25:0;;;37677:179;37657:199;37268:639;-1:-1:-1;;37268:639:0:o;38170:100::-;38224:13;38257:5;38250:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38170:100;:::o;44653:218::-;44729:7;44754:16;44762:7;44754;:16::i;:::-;44749:64;;44779:34;;-1:-1:-1;;;44779:34:0;;;;;;;;;;;44749:64;-1:-1:-1;44833:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;44833:30:0;;44653:218::o;44094:400::-;44175:13;44191:16;44199:7;44191;:16::i;:::-;44175:32;-1:-1:-1;67951:10:0;-1:-1:-1;;;;;44224:28:0;;;44220:175;;44272:44;44289:5;67951:10;45676:164;:::i;44272:44::-;44267:128;;44344:35;;-1:-1:-1;;;44344:35:0;;;;;;;;;;;44267:128;44407:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;44407:35:0;-1:-1:-1;;;;;44407:35:0;;;;;;;;;44458:28;;44407:24;;44458:28;;;;;;;44164:330;44094:400;;:::o;83362:106::-;17254:13;:11;:13::i;:::-;83438:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;83362:106:::0;:::o;82163:83::-;17254:13;:11;:13::i;:::-;82223:6:::1;:15:::0;;-1:-1:-1;;82223:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;82163:83::o;33921:323::-;83967:1;34195:12;33982:7;34179:13;:28;-1:-1:-1;;34179:46:0;;33921:323::o;48360:2817::-;48494:27;48524;48543:7;48524:18;:27::i;:::-;48494:57;;48609:4;-1:-1:-1;;;;;48568:45:0;48584:19;-1:-1:-1;;;;;48568:45:0;;48564:86;;48622:28;;-1:-1:-1;;;48622:28:0;;;;;;;;;;;48564:86;48664:27;47474:24;;;:15;:24;;;;;47696:26;;67951:10;47099:30;;;-1:-1:-1;;;;;46792:28:0;;47077:20;;;47074:56;48850:180;;48943:43;48960:4;67951:10;45676:164;:::i;48943:43::-;48938:92;;48995:35;;-1:-1:-1;;;48995:35:0;;;;;;;;;;;48938:92;-1:-1:-1;;;;;49047:16:0;;49043:52;;49072:23;;-1:-1:-1;;;49072:23:0;;;;;;;;;;;49043:52;49244:15;49241:160;;;49384:1;49363:19;49356:30;49241:160;-1:-1:-1;;;;;49781:24:0;;;;;;;:18;:24;;;;;;49779:26;;-1:-1:-1;;49779:26:0;;;49850:22;;;;;;;;;49848:24;;-1:-1:-1;49848:24:0;;;42952:11;42927:23;42923:41;42910:63;-1:-1:-1;;;42910:63:0;50143:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;50438:47:0;;50434:627;;50543:1;50533:11;;50511:19;50666:30;;;:17;:30;;;;;;50662:384;;50804:13;;50789:11;:28;50785:242;;50951:30;;;;:17;:30;;;;;:52;;;50785:242;50492:569;50434:627;51108:7;51104:2;-1:-1:-1;;;;;51089:27:0;51098:4;-1:-1:-1;;;;;51089:27:0;;;;;;;;;;;48483:2694;;;48360:2817;;;:::o;82860:234::-;17254:13;:11;:13::i;:::-;82995::::1;:11;:13::i;:::-;82983:9;;:25;;;;:::i;:::-;82957:21;:52;;82949:85;;;;-1:-1:-1::0;;;82949:85:0::1;;;;;;;:::i;:::-;;;;;;;;;83045:17;:41:::0;82860:234::o;83707:160::-;17254:13;:11;:13::i;:::-;3071:1:::1;3669:7;;:19;;3661:63;;;::::0;-1:-1:-1;;;3661:63:0;;11046:2:1;3661:63:0::1;::::0;::::1;11028:21:1::0;11085:2;11065:18;;;11058:30;11124:33;11104:18;;;11097:61;11175:18;;3661:63:0::1;10844:355:1::0;3661:63:0::1;3071:1;3802:7;:18:::0;83769:7:::2;83790;17441:6:::0;;-1:-1:-1;;;;;17441:6:0;;17368:87;83790:7:::2;-1:-1:-1::0;;;;;83782:21:0::2;83811;83782:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83768:69;;;83856:2;83848:11;;;::::0;::::2;;-1:-1:-1::0;3027:1:0::1;3981:7;:22:::0;83707:160::o;51273:185::-;51411:39;51428:4;51434:2;51438:7;51411:39;;;;;;;;;;;;:16;:39::i;:::-;51273:185;;;:::o;80685:603::-;80086:20;;;;;;;;:28;;:20;:28;80078:59;;;;-1:-1:-1;;;80078:59:0;;11616:2:1;80078:59:0;;;11598:21:1;11655:2;11635:18;;;11628:30;-1:-1:-1;;;11674:18:1;;;11667:48;11732:18;;80078:59:0;11414:342:1;80078:59:0;80797:30:::1;::::0;-1:-1:-1;;67951:10:0;11910:2:1;11906:15;11902:53;80797:30:0::1;::::0;::::1;11890:66:1::0;80772:12:0::1;::::0;11972::1;;80797:30:0::1;;;;;;;;;;;;80787:41;;;;;;80772:56;;80847:50;80866:12;;80847:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;80880:10:0::1;::::0;;-1:-1:-1;80892:4:0;;-1:-1:-1;80847:18:0::1;:50::i;:::-;80839:77;;;::::0;-1:-1:-1;;;80839:77:0;;12197:2:1;80839:77:0::1;::::0;::::1;12179:21:1::0;12236:2;12216:18;;;12209:30;-1:-1:-1;;;12255:18:1;;;12248:44;12309:18;;80839:77:0::1;11995:338:1::0;80839:77:0::1;80938:6;::::0;::::1;;80937:7;80929:43;;;::::0;-1:-1:-1;;;80929:43:0;;12540:2:1;80929:43:0::1;::::0;::::1;12522:21:1::0;12579:2;12559:18;;;12552:30;-1:-1:-1;;;12598:18:1;;;12591:53;12661:18;;80929:43:0::1;12338:347:1::0;80929:43:0::1;81019:12;::::0;67951:10;80991:25:::1;::::0;;;:11:::1;:25;::::0;;;;;:40:::1;80983:74;;;::::0;-1:-1:-1;;;80983:74:0;;12892:2:1;80983:74:0::1;::::0;::::1;12874:21:1::0;12931:2;12911:18;;;12904:30;-1:-1:-1;;;12950:18:1;;;12943:51;13011:18;;80983:74:0::1;12690:345:1::0;80983:74:0::1;81130:20;;81110:17;;81098:9;;:29;;;;:::i;:::-;:52;;;;:::i;:::-;81076:13;:11;:13::i;:::-;:17;::::0;81092:1:::1;81076:17;:::i;:::-;:75;;81068:108;;;;-1:-1:-1::0;;;81068:108:0::1;;;;;;;:::i;:::-;81218:12;::::0;67951:10;81189:25:::1;::::0;;;:11:::1;:25;::::0;;;;:41;;:25;;;:41:::1;::::0;81218:12;;81189:41:::1;:::i;:::-;::::0;;;-1:-1:-1;81243:37:0::1;::::0;-1:-1:-1;67951:10:0;81267:12:::1;;81243:9;:37::i;83102:138::-:0;17254:13;:11;:13::i;:::-;83194:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;79459:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;73851:528::-;73995:23;74086:8;74061:22;74086:8;74153:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74153:36:0;;-1:-1:-1;;74153:36:0;;;;;;;;;;;;74116:73;;74209:9;74204:125;74225:14;74220:1;:19;74204:125;;74281:32;74301:8;;74310:1;74301:11;;;;;;;:::i;:::-;;;;;;;74281:19;:32::i;:::-;74265:10;74276:1;74265:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;74241:3;;74204:125;;;-1:-1:-1;74350:10:0;73851:528;-1:-1:-1;;;;73851:528:0:o;79424:28::-;;;;;;;:::i;39563:152::-;39635:7;39678:27;39697:7;39678:18;:27::i;82657:100::-;17254:13;:11;:13::i;:::-;82727::::1;:22:::0;82657:100::o;78831:38::-;;;;;;;:::i;35105:233::-;35177:7;-1:-1:-1;;;;;35201:19:0;;35197:60;;35229:28;;-1:-1:-1;;;35229:28:0;;;;;;;;;;;35197:60;-1:-1:-1;;;;;;35275:25:0;;;;;:18;:25;;;;;;29264:13;35275:55;;35105:233::o;18016:103::-;17254:13;:11;:13::i;:::-;18081:30:::1;18108:1;18081:18;:30::i;:::-;18016:103::o:0;82551:98::-;17254:13;:11;:13::i;:::-;82620:12:::1;:21:::0;82551:98::o;78876:40::-;;;;;;;:::i;83476:104::-;17254:13;:11;:13::i;:::-;83548:10:::1;:24:::0;83476:104::o;83248:106::-;17254:13;:11;:13::i;:::-;83324:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;77727:900::-:0;77805:16;77859:19;77893:25;77933:22;77958:16;77968:5;77958:9;:16::i;:::-;77933:41;;77989:25;78031:14;78017:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;78017:29:0;;77989:57;;78061:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78061:31:0;83967:1;78107:472;78156:14;78141:11;:29;78107:472;;78208:15;78221:1;78208:12;:15::i;:::-;78196:27;;78246:9;:16;;;78242:73;;;78287:8;;78242:73;78337:14;;-1:-1:-1;;;;;78337:28:0;;78333:111;;78410:14;;;-1:-1:-1;78333:111:0;78487:5;-1:-1:-1;;;;;78466:26:0;:17;-1:-1:-1;;;;;78466:26:0;;78462:102;;;78543:1;78517:8;78526:13;;;;;;78517:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;78462:102;78172:3;;78107:472;;;-1:-1:-1;78600:8:0;;77727:900;-1:-1:-1;;;;;;77727:900:0:o;38346:104::-;38402:13;38435:7;38428:14;;;;;:::i;74767:2513::-;74910:16;74977:4;74968:5;:13;74964:45;;74990:19;;-1:-1:-1;;;74990:19:0;;;;;;;;;;;74964:45;75024:19;75058:17;75078:14;33663:7;33690:13;;33608:103;75078:14;75058:34;-1:-1:-1;83967:1:0;75170:5;:23;75166:87;;;83967:1;75214:23;;75166:87;75329:9;75322:4;:16;75318:73;;;75366:9;75359:16;;75318:73;75405:25;75433:16;75443:5;75433:9;:16::i;:::-;75405:44;;75627:4;75619:5;:12;75615:278;;;75674:12;;;75709:31;;;75705:111;;;75785:11;75765:31;;75705:111;75633:198;75615:278;;;-1:-1:-1;75876:1:0;75615:278;75907:25;75949:17;75935:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;75935:32:0;-1:-1:-1;75907:60:0;-1:-1:-1;75986:22:0;75982:78;;76036:8;-1:-1:-1;76029:15:0;;-1:-1:-1;;;76029:15:0;75982:78;76204:31;76238:26;76258:5;76238:19;:26::i;:::-;76204:60;;76279:25;76524:9;:16;;;76519:92;;-1:-1:-1;76581:14:0;;76519:92;76642:5;76625:478;76654:4;76649:1;:9;;:45;;;;;76677:17;76662:11;:32;;76649:45;76625:478;;;76732:15;76745:1;76732:12;:15::i;:::-;76720:27;;76770:9;:16;;;76766:73;;;76811:8;;76766:73;76861:14;;-1:-1:-1;;;;;76861:28:0;;76857:111;;76934:14;;;-1:-1:-1;76857:111:0;77011:5;-1:-1:-1;;;;;76990:26:0;:17;-1:-1:-1;;;;;76990:26:0;;76986:102;;;77067:1;77041:8;77050:13;;;;;;77041:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;76986:102;76696:3;;76625:478;;;-1:-1:-1;;;77188:29:0;;;-1:-1:-1;77195:8:0;;-1:-1:-1;;74767:2513:0;;;;;;:::o;81296:378::-;17254:13;:11;:13::i;:::-;81429:17:::1;;81414:11;81391:20;;:34;;;;:::i;:::-;:55;;81383:95;;;::::0;-1:-1:-1;;;81383:95:0;;13507:2:1;81383:95:0::1;::::0;::::1;13489:21:1::0;13546:2;13526:18;;;13519:30;13585:29;13565:18;;;13558:57;13632:18;;81383:95:0::1;13305:351:1::0;81383:95:0::1;81530:9;;81514:11;81498:13;:11;:13::i;:::-;:27;;;;:::i;:::-;81497:42;;81489:75;;;;-1:-1:-1::0;;;81489:75:0::1;;;;;;;:::i;:::-;81609:11;81585:20;;:35;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;81633:33:0::1;::::0;-1:-1:-1;81643:9:0;81654:11;81633:9:::1;:33::i;80289:388::-:0;80354:11;79745:21;79769:13;:11;:13::i;:::-;79745:37;;79813:14;;79797:13;:30;79793:223;;;79884:1;79870:11;:15;:90;;;;-1:-1:-1;79949:11:0;;67951:10;79906:25;;;;:11;:25;;;;;;:39;;79934:11;;79906:39;:::i;:::-;:54;;79870:90;79844:160;;;;-1:-1:-1;;;79844:160:0;;13863:2:1;79844:160:0;;;13845:21:1;13902:1;13882:18;;;13875:29;-1:-1:-1;;;13920:18:1;;;13913:38;13968:18;;79844:160:0;13661:331:1;79844:160:0;80212:20:::1;::::0;::::1;::::0;::::1;;;:29;80204:57;;;::::0;-1:-1:-1;;;80204:57:0;;14199:2:1;80204:57:0::1;::::0;::::1;14181:21:1::0;14238:2;14218:18;;;14211:30;-1:-1:-1;;;14257:18:1;;;14250:45;14312:18;;80204:57:0::1;13997:339:1::0;80204:57:0::1;80404:6:::2;::::0;::::2;;80403:7;80395:43;;;::::0;-1:-1:-1;;;80395:43:0;;12540:2:1;80395:43:0::2;::::0;::::2;12522:21:1::0;12579:2;12559:18;;;12552:30;-1:-1:-1;;;12598:18:1;;;12591:53;12661:18;;80395:43:0::2;12338:347:1::0;80395:43:0::2;80521:20;;80501:17;;80489:9;;:29;;;;:::i;:::-;:52;;;;:::i;:::-;80473:11;80457:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:85;;80449:118;;;;-1:-1:-1::0;;;80449:118:0::2;;;;;;;:::i;:::-;67951:10:::0;80580:25:::2;::::0;;;:11:::2;:25;::::0;;;;:40;;80609:11;;80580:25;:40:::2;::::0;80609:11;;80580:40:::2;:::i;:::-;::::0;;;-1:-1:-1;80633:36:0::2;::::0;-1:-1:-1;67951:10:0;80657:11:::2;80633:9;:36::i;45211:308::-:0;-1:-1:-1;;;;;45310:31:0;;67951:10;45310:31;45306:61;;;45350:17;;-1:-1:-1;;;45350:17:0;;;;;;;;;;;45306:61;67951:10;45380:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;45380:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;45380:60:0;;;;;;;;;;45456:55;;540:41:1;;;45380:49:0;;67951:10;45456:55;;513:18:1;45456:55:0;;;;;;;45211:308;;:::o;79499:36::-;;;;;;;:::i;82447:96::-;17254:13;:11;:13::i;:::-;82515:11:::1;:20:::0;82447:96::o;83588:111::-;17254:13;:11;:13::i;:::-;83662:20:::1;:29:::0;;;::::1;;;;-1:-1:-1::0;;83662:29:0;;::::1;::::0;;;::::1;::::0;;83588:111::o;52056:399::-;52223:31;52236:4;52242:2;52246:7;52223:12;:31::i;:::-;-1:-1:-1;;;;;52269:14:0;;;:19;52265:183;;52308:56;52339:4;52345:2;52349:7;52358:5;52308:30;:56::i;:::-;52303:145;;52392:40;;-1:-1:-1;;;52392:40:0;;;;;;;;;;;52303:145;52056:399;;;;:::o;73264:428::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83967:1:0;73428:7;:25;:54;;;-1:-1:-1;33663:7:0;33690:13;73457:7;:25;;73428:54;73424:103;;;73506:9;73264:428;-1:-1:-1;;73264:428:0:o;73424:103::-;73549:21;73562:7;73549:12;:21::i;:::-;73537:33;;73585:9;:16;;;73581:65;;;73625:9;73264:428;-1:-1:-1;;73264:428:0:o;73581:65::-;73663:21;73676:7;73663:12;:21::i;82254:185::-;17254:13;:11;:13::i;:::-;82363:9:::1;::::0;82342:17:::1;::::0;82333:26:::1;::::0;:6;:26:::1;:::i;:::-;:39;;82325:72;;;;-1:-1:-1::0;;;82325:72:0::1;;;;;;;:::i;:::-;82408:14;:23:::0;82254:185::o;81682:473::-;81756:13;81790:17;81798:8;81790:7;:17::i;:::-;81782:77;;;;-1:-1:-1;;;81782:77:0;;14543:2:1;81782:77:0;;;14525:21:1;14582:2;14562:18;;;14555:30;14621:34;14601:18;;;14594:62;-1:-1:-1;;;14672:18:1;;;14665:45;14727:19;;81782:77:0;14341:411:1;81782:77:0;81876:8;;;;;;;81872:74;;81917:17;81910:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81682:473;;;:::o;81872:74::-;81958:28;81989:10;:8;:10::i;:::-;81958:41;;82048:1;82023:14;82017:28;:32;:130;;;;;;;;;;;;;;;;;82085:14;82101:19;:8;:17;:19::i;:::-;82122:9;82068:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;82010:137;81682:473;-1:-1:-1;;;81682:473:0:o;82765:87::-;17254:13;:11;:13::i;:::-;82827:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;82827:17:0;;::::1;::::0;;;::::1;::::0;;82765:87::o;18274:201::-;17254:13;:11;:13::i;:::-;-1:-1:-1;;;;;18363:22:0;::::1;18355:73;;;::::0;-1:-1:-1;;;18355:73:0;;16617:2:1;18355:73:0::1;::::0;::::1;16599:21:1::0;16656:2;16636:18;;;16629:30;16695:34;16675:18;;;16668:62;-1:-1:-1;;;16746:18:1;;;16739:36;16792:19;;18355:73:0::1;16415:402:1::0;18355:73:0::1;18439:28;18458:8;18439:18;:28::i;:::-;18274:201:::0;:::o;46098:282::-;46163:4;46219:7;83967:1;46200:26;;:66;;;;;46253:13;;46243:7;:23;46200:66;:153;;;;-1:-1:-1;;46304:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;46304:44:0;:49;;46098:282::o;17533:132::-;17441:6;;-1:-1:-1;;;;;17441:6:0;67951:10;17597:23;17589:68;;;;-1:-1:-1;;;17589:68:0;;17024:2:1;17589:68:0;;;17006:21:1;;;17043:18;;;17036:30;17102:34;17082:18;;;17075:62;17154:18;;17589:68:0;16822:356:1;40718:1275:0;40785:7;40820;;83967:1;40869:23;40865:1061;;40922:13;;40915:4;:20;40911:1015;;;40960:14;40977:23;;;:17;:23;;;;;;-1:-1:-1;;;41066:24:0;;41062:845;;41731:113;41738:11;41731:113;;-1:-1:-1;;;41809:6:0;41791:25;;;;:17;:25;;;;;;41731:113;;41062:845;40937:989;40911:1015;41954:31;;-1:-1:-1;;;41954:31:0;;;;;;;;;;;7734:190;7859:4;7912;7883:25;7896:5;7903:4;7883:12;:25::i;:::-;:33;;7734:190;-1:-1:-1;;;;7734:190:0:o;61696:112::-;61773:27;61783:2;61787:8;61773:27;;;;;;;;;;;;:9;:27::i;18635:191::-;18728:6;;;-1:-1:-1;;;;;18745:17:0;;;-1:-1:-1;;;;;;18745:17:0;;;;;;;18778:40;;18728:6;;;18745:17;18728:6;;18778:40;;18709:16;;18778:40;18698:128;18635:191;:::o;40166:161::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40294:24:0;;;;:17;:24;;;;;;40275:44;;:18;:44::i;54539:716::-;54723:88;;-1:-1:-1;;;54723:88:0;;54702:4;;-1:-1:-1;;;;;54723:45:0;;;;;:88;;67951:10;;54790:4;;54796:7;;54805:5;;54723:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54723:88:0;;;;;;;;-1:-1:-1;;54723:88:0;;;;;;;;;;;;:::i;:::-;;;54719:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55006:13:0;;55002:235;;55052:40;;-1:-1:-1;;;55052:40:0;;;;;;;;;;;55002:235;55195:6;55189:13;55180:6;55176:2;55172:15;55165:38;54719:529;-1:-1:-1;;;;;;54882:64:0;-1:-1:-1;;;54882:64:0;;-1:-1:-1;54719:529:0;54539:716;;;;;;:::o;39904:166::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40015:47:0;40034:27;40053:7;40034:18;:27::i;:::-;40015:18;:47::i;83984:110::-;84044:13;84077:9;84070:16;;;;;:::i;4448:723::-;4504:13;4725:10;4721:53;;-1:-1:-1;;4752:10:0;;;;;;;;;;;;-1:-1:-1;;;4752:10:0;;;;;4448:723::o;4721:53::-;4799:5;4784:12;4840:78;4847:9;;4840:78;;4873:8;;;;:::i;:::-;;-1:-1:-1;4896:10:0;;-1:-1:-1;4904:2:0;4896:10;;:::i;:::-;;;4840:78;;;4928:19;4960:6;4950:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4950:17:0;;4928:39;;4978:154;4985:10;;4978:154;;5012:11;5022:1;5012:11;;:::i;:::-;;-1:-1:-1;5081:10:0;5089:2;5081:5;:10;:::i;:::-;5068:24;;:2;:24;:::i;:::-;5055:39;;5038:6;5045;5038:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5038:56:0;;;;;;;;-1:-1:-1;5109:11:0;5118:2;5109:11;;:::i;:::-;;;4978:154;;8601:296;8684:7;8727:4;8684:7;8742:118;8766:5;:12;8762:1;:16;8742:118;;;8815:33;8825:12;8839:5;8845:1;8839:8;;;;;;;;:::i;:::-;;;;;;;8815:9;:33::i;:::-;8800:48;-1:-1:-1;8780:3:0;;;;:::i;:::-;;;;8742:118;;;-1:-1:-1;8877:12:0;8601:296;-1:-1:-1;;;8601:296:0:o;60923:689::-;61054:19;61060:2;61064:8;61054:5;:19::i;:::-;-1:-1:-1;;;;;61115:14:0;;;:19;61111:483;;61155:11;61169:13;61217:14;;;61250:233;61281:62;61320:1;61324:2;61328:7;;;;;;61337:5;61281:30;:62::i;:::-;61276:167;;61379:40;;-1:-1:-1;;;61379:40:0;;;;;;;;;;;61276:167;61478:3;61470:5;:11;61250:233;;61565:3;61548:13;;:20;61544:34;;61570:8;;;61544:34;61136:458;;60923:689;;;:::o;42092:366::-;-1:-1:-1;;;;;;;;;;;;;42202:41:0;;;;29923:3;42288:33;;;42254:68;;-1:-1:-1;;;42254:68:0;-1:-1:-1;;;42352:24:0;;:29;;-1:-1:-1;;;42333:48:0;;;;30444:3;42421:28;;;;-1:-1:-1;;;42392:58:0;-1:-1:-1;42092:366:0:o;14808:149::-;14871:7;14902:1;14898;:5;:51;;15033:13;15127:15;;;15163:4;15156:15;;;15210:4;15194:21;;14898:51;;;-1:-1:-1;15033:13:0;15127:15;;;15163:4;15156:15;15210:4;15194:21;;;14808:149::o;55717:2454::-;55790:20;55813:13;55841;55837:44;;55863:18;;-1:-1:-1;;;55863:18:0;;;;;;;;;;;55837:44;-1:-1:-1;;;;;56369:22:0;;;;;;:18;:22;;;;29402:2;56369:22;;;:71;;56407:32;56395:45;;56369:71;;;56683:31;;;:17;:31;;;;;-1:-1:-1;43383:15:0;;43357:24;43353:46;42952:11;42927:23;42923:41;42920:52;42910:63;;56683:173;;56918:23;;;;56683:31;;56369:22;;57417:25;56369:22;;57270:335;57685:1;57671:12;57667:20;57625:346;57726:3;57717:7;57714:16;57625:346;;57944:7;57934:8;57931:1;57904:25;57901:1;57898;57893:59;57779:1;57766:15;57625:346;;;-1:-1:-1;58004:13:0;58000:45;;58026:19;;-1:-1:-1;;;58026:19:0;;;;;;;;;;;58000:45;58062:13;:19;-1:-1:-1;51273:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:127::-;2234:10;2229:3;2225:20;2222:1;2215:31;2265:4;2262:1;2255:15;2289:4;2286:1;2279:15;2305:632;2370:5;2400:18;2441:2;2433:6;2430:14;2427:40;;;2447:18;;:::i;:::-;2522:2;2516:9;2490:2;2576:15;;-1:-1:-1;;2572:24:1;;;2598:2;2568:33;2564:42;2552:55;;;2622:18;;;2642:22;;;2619:46;2616:72;;;2668:18;;:::i;:::-;2708:10;2704:2;2697:22;2737:6;2728:15;;2767:6;2759;2752:22;2807:3;2798:6;2793:3;2789:16;2786:25;2783:45;;;2824:1;2821;2814:12;2783:45;2874:6;2869:3;2862:4;2854:6;2850:17;2837:44;2929:1;2922:4;2913:6;2905;2901:19;2897:30;2890:41;;;;2305:632;;;;;:::o;2942:451::-;3011:6;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3120:9;3107:23;3153:18;3145:6;3142:30;3139:50;;;3185:1;3182;3175:12;3139:50;3208:22;;3261:4;3253:13;;3249:27;-1:-1:-1;3239:55:1;;3290:1;3287;3280:12;3239:55;3313:74;3379:7;3374:2;3361:16;3356:2;3352;3348:11;3313:74;:::i;3398:160::-;3463:20;;3519:13;;3512:21;3502:32;;3492:60;;3548:1;3545;3538:12;3563:180;3619:6;3672:2;3660:9;3651:7;3647:23;3643:32;3640:52;;;3688:1;3685;3678:12;3640:52;3711:26;3727:9;3711:26;:::i;3748:186::-;3807:6;3860:2;3848:9;3839:7;3835:23;3831:32;3828:52;;;3876:1;3873;3866:12;3828:52;3899:29;3918:9;3899:29;:::i;4121:328::-;4198:6;4206;4214;4267:2;4255:9;4246:7;4242:23;4238:32;4235:52;;;4283:1;4280;4273:12;4235:52;4306:29;4325:9;4306:29;:::i;:::-;4296:39;;4354:38;4388:2;4377:9;4373:18;4354:38;:::i;:::-;4344:48;;4439:2;4428:9;4424:18;4411:32;4401:42;;4121:328;;;;;:::o;4636:367::-;4699:8;4709:6;4763:3;4756:4;4748:6;4744:17;4740:27;4730:55;;4781:1;4778;4771:12;4730:55;-1:-1:-1;4804:20:1;;4847:18;4836:30;;4833:50;;;4879:1;4876;4869:12;4833:50;4916:4;4908:6;4904:17;4892:29;;4976:3;4969:4;4959:6;4956:1;4952:14;4944:6;4940:27;4936:38;4933:47;4930:67;;;4993:1;4990;4983:12;4930:67;4636:367;;;;;:::o;5008:437::-;5094:6;5102;5155:2;5143:9;5134:7;5130:23;5126:32;5123:52;;;5171:1;5168;5161:12;5123:52;5211:9;5198:23;5244:18;5236:6;5233:30;5230:50;;;5276:1;5273;5266:12;5230:50;5315:70;5377:7;5368:6;5357:9;5353:22;5315:70;:::i;:::-;5404:8;;5289:96;;-1:-1:-1;5008:437:1;-1:-1:-1;;;;5008:437:1:o;5892:349::-;5976:12;;-1:-1:-1;;;;;5972:38:1;5960:51;;6064:4;6053:16;;;6047:23;6072:18;6043:48;6027:14;;;6020:72;6155:4;6144:16;;;6138:23;6131:31;6124:39;6108:14;;;6101:63;6217:4;6206:16;;;6200:23;6225:8;6196:38;6180:14;;6173:62;5892:349::o;6246:722::-;6479:2;6531:21;;;6601:13;;6504:18;;;6623:22;;;6450:4;;6479:2;6702:15;;;;6676:2;6661:18;;;6450:4;6745:197;6759:6;6756:1;6753:13;6745:197;;;6808:52;6856:3;6847:6;6841:13;6808:52;:::i;:::-;6917:15;;;;6889:4;6880:14;;;;;6781:1;6774:9;6745:197;;7158:632;7329:2;7381:21;;;7451:13;;7354:18;;;7473:22;;;7300:4;;7329:2;7552:15;;;;7526:2;7511:18;;;7300:4;7595:169;7609:6;7606:1;7603:13;7595:169;;;7670:13;;7658:26;;7739:15;;;;7704:12;;;;7631:1;7624:9;7595:169;;7795:322;7872:6;7880;7888;7941:2;7929:9;7920:7;7916:23;7912:32;7909:52;;;7957:1;7954;7947:12;7909:52;7980:29;7999:9;7980:29;:::i;:::-;7970:39;8056:2;8041:18;;8028:32;;-1:-1:-1;8107:2:1;8092:18;;;8079:32;;7795:322;-1:-1:-1;;;7795:322:1:o;8122:254::-;8190:6;8198;8251:2;8239:9;8230:7;8226:23;8222:32;8219:52;;;8267:1;8264;8257:12;8219:52;8303:9;8290:23;8280:33;;8332:38;8366:2;8355:9;8351:18;8332:38;:::i;:::-;8322:48;;8122:254;;;;;:::o;8381:::-;8446:6;8454;8507:2;8495:9;8486:7;8482:23;8478:32;8475:52;;;8523:1;8520;8513:12;8475:52;8546:29;8565:9;8546:29;:::i;:::-;8536:39;;8594:35;8625:2;8614:9;8610:18;8594:35;:::i;8640:667::-;8735:6;8743;8751;8759;8812:3;8800:9;8791:7;8787:23;8783:33;8780:53;;;8829:1;8826;8819:12;8780:53;8852:29;8871:9;8852:29;:::i;:::-;8842:39;;8900:38;8934:2;8923:9;8919:18;8900:38;:::i;:::-;8890:48;;8985:2;8974:9;8970:18;8957:32;8947:42;;9040:2;9029:9;9025:18;9012:32;9067:18;9059:6;9056:30;9053:50;;;9099:1;9096;9089:12;9053:50;9122:22;;9175:4;9167:13;;9163:27;-1:-1:-1;9153:55:1;;9204:1;9201;9194:12;9153:55;9227:74;9293:7;9288:2;9275:16;9270:2;9266;9262:11;9227:74;:::i;:::-;9217:84;;;8640:667;;;;;;;:::o;9312:266::-;9508:3;9493:19;;9521:51;9497:9;9554:6;9521:51;:::i;9583:260::-;9651:6;9659;9712:2;9700:9;9691:7;9687:23;9683:32;9680:52;;;9728:1;9725;9718:12;9680:52;9751:29;9770:9;9751:29;:::i;:::-;9741:39;;9799:38;9833:2;9822:9;9818:18;9799:38;:::i;9848:380::-;9927:1;9923:12;;;;9970;;;9991:61;;10045:4;10037:6;10033:17;10023:27;;9991:61;10098:2;10090:6;10087:14;10067:18;10064:38;10061:161;;;10144:10;10139:3;10135:20;10132:1;10125:31;10179:4;10176:1;10169:15;10207:4;10204:1;10197:15;10061:161;;9848:380;;;:::o;10233:127::-;10294:10;10289:3;10285:20;10282:1;10275:31;10325:4;10322:1;10315:15;10349:4;10346:1;10339:15;10365:125;10405:4;10433:1;10430;10427:8;10424:34;;;10438:18;;:::i;:::-;-1:-1:-1;10475:9:1;;10365:125::o;10495:344::-;10697:2;10679:21;;;10736:2;10716:18;;;10709:30;-1:-1:-1;;;10770:2:1;10755:18;;10748:50;10830:2;10815:18;;10495:344::o;13040:128::-;13080:3;13111:1;13107:6;13104:1;13101:13;13098:39;;;13117:18;;:::i;:::-;-1:-1:-1;13153:9:1;;13040:128::o;13173:127::-;13234:10;13229:3;13225:20;13222:1;13215:31;13265:4;13262:1;13255:15;13289:4;13286:1;13279:15;14883:1527;15107:3;15145:6;15139:13;15171:4;15184:51;15228:6;15223:3;15218:2;15210:6;15206:15;15184:51;:::i;:::-;15298:13;;15257:16;;;;15320:55;15298:13;15257:16;15342:15;;;15320:55;:::i;:::-;15464:13;;15397:20;;;15437:1;;15524;15546:18;;;;15599;;;;15626:93;;15704:4;15694:8;15690:19;15678:31;;15626:93;15767:2;15757:8;15754:16;15734:18;15731:40;15728:167;;;-1:-1:-1;;;15794:33:1;;15850:4;15847:1;15840:15;15880:4;15801:3;15868:17;15728:167;15911:18;15938:110;;;;16062:1;16057:328;;;;15904:481;;15938:110;-1:-1:-1;;15973:24:1;;15959:39;;16018:20;;;;-1:-1:-1;15938:110:1;;16057:328;14830:1;14823:14;;;14867:4;14854:18;;16152:1;16166:169;16180:8;16177:1;16174:15;16166:169;;;16262:14;;16247:13;;;16240:37;16305:16;;;;16197:10;;16166:169;;;16170:3;;16366:8;16359:5;16355:20;16348:27;;15904:481;-1:-1:-1;16401:3:1;;14883:1527;-1:-1:-1;;;;;;;;;;;14883:1527:1:o;17183:489::-;-1:-1:-1;;;;;17452:15:1;;;17434:34;;17504:15;;17499:2;17484:18;;17477:43;17551:2;17536:18;;17529:34;;;17599:3;17594:2;17579:18;;17572:31;;;17377:4;;17620:46;;17646:19;;17638:6;17620:46;:::i;:::-;17612:54;17183:489;-1:-1:-1;;;;;;17183:489:1:o;17677:249::-;17746:6;17799:2;17787:9;17778:7;17774:23;17770:32;17767:52;;;17815:1;17812;17805:12;17767:52;17847:9;17841:16;17866:30;17890:5;17866:30;:::i;17931:135::-;17970:3;-1:-1:-1;;17991:17:1;;17988:43;;;18011:18;;:::i;:::-;-1:-1:-1;18058:1:1;18047:13;;17931:135::o;18071:127::-;18132:10;18127:3;18123:20;18120:1;18113:31;18163:4;18160:1;18153:15;18187:4;18184:1;18177:15;18203:120;18243:1;18269;18259:35;;18274:18;;:::i;:::-;-1:-1:-1;18308:9:1;;18203:120::o;18328:112::-;18360:1;18386;18376:35;;18391:18;;:::i;:::-;-1:-1:-1;18425:9:1;;18328:112::o

Swarm Source

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