ETH Price: $2,366.06 (+1.63%)

Token

Steel Duck Universe Club (SteelDuck)
 

Overview

Max Total Supply

128 SteelDuck

Holders

127

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SteelDuck
0xf59f283dd78e41f9dba45a13ce5f64119ecc4030
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:
SteelDuck

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-03
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

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

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

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

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

// File: @openzeppelin/contracts/utils/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.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

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

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

// File: contracts/SteelDuck.sol



pragma solidity ^0.8.4;





/**
 * ______________________________________________________________________
 * |  ___    _____  ___    ___    _         ___    _   _  ___    _   _  |
 * | (  _`\ (_   _)(  _`\ (  _`\ ( )       (  _`\ ( ) ( )(  _`\ ( ) ( ) |
 * | | (_(_)  | |  | (_(_)| (_(_)| |       | | ) || | | || ( (_)| |/'/' |
 * | `\__ \   | |  |  _)_ |  _)_ | |  _    | | | )| | | || |  _ | , <   |
 * | ( )_) |  | |  | (_( )| (_( )| |_( )   | |_) || (_) || (_( )| |\`\  |
 * | `\____)  (_)  (____/'(____/'(____/'   (____/'(_____)(____/'(_) (_) |
 * |____________________________________________________________________|
 */

contract SteelDuck is ERC721A, Ownable, ReentrancyGuard {
  struct SaleInfo {
    uint256 saleStartTime;
    uint256 saleRoundCount;
    uint256 saleRoundMaxCount;
    uint256 saleWhiteListPrice;
    uint256 salePublicPrice;
  }

  SaleInfo public salesInfo;

  string private nftName;
  string private nftSymbol;

  string public baseURI;
  address public realOwnerAddress;

  uint256 public immutable maxSupply;
  uint256 public marketingMaxSupply;
  uint256 public maxPerTx;
  uint256 public maxPerWallet;

  bool public isMintEnabled;

  bytes32 public whiteListMerkleRoot;

  event MaxPerTxEvent(uint256 maxPerTx);
  event MaxPerWalletEvent(uint256 maxPerWallet);
  event SaleInfoEvent(SaleInfo salesInfo);
  event MarketingMaxSupplyEvent(uint256 marketingMaxSupply);
  event ContractBalanceEvent(uint256 contractBalance);
  event TotalSupplyEvent(uint256 totalSupply);
  event isMintEnabledEvent(bool isMintEnabled);

  constructor(
    string memory _name,
    string memory _symbol,
    uint256 _maxSupply
  ) ERC721A(_name, _symbol) {
    nftName = _name;
    nftSymbol = _symbol;
    maxSupply = _maxSupply;
  }

  modifier onlyRealOwner() {
    require(realOwnerAddress == msg.sender, "Not permission");
    _;
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

  function setSaleInfo(
    uint256 _startTime,
    uint256 _saleRoundCount,
    uint256 _saleRoundMaxCount,
    uint256 _saleWhiteListPrice,
    uint256 _salePublicPrice
  ) external onlyRealOwner {
    salesInfo = SaleInfo(
      _startTime,
      _saleRoundCount,
      _saleRoundMaxCount,
      _saleWhiteListPrice,
      _salePublicPrice
    );

    isMintEnabled = true;
    emit SaleInfoEvent(salesInfo);
  }

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

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

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

  function setRealOwnerAddress(address _address) external onlyOwner {
    realOwnerAddress = _address;
  }

  function setIsPubilcMintEnabled(bool _isMintEnabled) external onlyRealOwner {
    isMintEnabled = _isMintEnabled;

    emit isMintEnabledEvent(isMintEnabled);
  }

  function getOwnedNFTCount() public view returns (uint256) {
    return balanceOf(msg.sender);
  }

  function setMarketingMaxSupply(
    uint256 _marketingMaxSupply
  ) external onlyRealOwner {
    marketingMaxSupply = _marketingMaxSupply;

    emit MarketingMaxSupplyEvent(marketingMaxSupply);
  }

  function setMaxPerMint(uint256 _maxPerMint) external onlyRealOwner {
    maxPerTx = _maxPerMint;

    emit MaxPerTxEvent(maxPerTx);
  }

  function setMaxPerWallet(uint256 _maxPerWallet) external onlyRealOwner {
    maxPerWallet = _maxPerWallet;

    emit MaxPerWalletEvent(maxPerWallet);
  }

  function setWhiteListMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
    whiteListMerkleRoot = _merkleRoot;
  }

  function getContractBalance() external view returns (uint256) {
    return address(this).balance;
  }

  function isStartTime(uint256 _saleStartTime) public view returns (bool) {
    return block.timestamp >= _saleStartTime;
  }

  function isOverMaxSupply(uint256 _quantity) public view returns (bool) {
    return
      totalSupply() + _quantity <= maxSupply &&
      salesInfo.saleRoundCount + _quantity <= salesInfo.saleRoundMaxCount;
  }

  function addressingMint(
    address to,
    uint256 _quantity
  ) external onlyRealOwner {
    require(totalSupply() + _quantity <= maxSupply, "Amount exceeds supply");

    _safeMint(to, _quantity);
    emit TotalSupplyEvent(totalSupply());
  }

  function marketingMint(uint256 _quantity) external onlyRealOwner {
    require(totalSupply() + _quantity <= maxSupply, "Amount exceeds supply");
    require(_quantity <= marketingMaxSupply, "Exceed possible quantity");
    require(marketingMaxSupply - _quantity >= 0, "excess amount");

    require(_quantity % 5 == 0, "can only mint a multiple of adminBatchSize");

    uint256 numChunks = _quantity / 5;
    for (uint256 i = 0; i < numChunks; i++) {
      _safeMint(msg.sender, 5);
    }

    marketingMaxSupply -= _quantity;
    emit TotalSupplyEvent(totalSupply());
  }

  function whiteListMint(
    uint256 _quantity,
    bytes32[] calldata _merkleProof
  ) external payable callerIsUser {
    require(isMintEnabled, "minting not enabled");
    require(isWhiteListed(msg.sender, _merkleProof), "Not whitelisted");
    uint256 _saleWhiteListPrice = uint256(salesInfo.saleWhiteListPrice);
    uint256 _saleStartTime = uint256(salesInfo.saleStartTime);
    require(isStartTime(_saleStartTime), "Not sale time yet");
    require(
      getOwnedNFTCount() + _quantity <= maxPerWallet,
      "Exceeding allowance per wallet"
    );
    require(
      _saleWhiteListPrice * _quantity == msg.value,
      "ETH sent not equal to cost."
    );

    _safeMint(msg.sender, _quantity);

    salesInfo.saleRoundCount += _quantity;

    emit ContractBalanceEvent(address(this).balance);
    emit TotalSupplyEvent(totalSupply());
    emit SaleInfoEvent(salesInfo);
  }

  function isWhiteListed(
    address _account,
    bytes32[] calldata _merkleProof
  ) internal view returns (bool) {
    return _verifyWL(leaf(_account), _merkleProof);
  }

  function leaf(address _account) internal pure returns (bytes32) {
    return keccak256(abi.encodePacked(_account));
  }

  function _verifyWL(
    bytes32 _leaf,
    bytes32[] memory _merkleProof
  ) internal view returns (bool) {
    return MerkleProof.verify(_merkleProof, whiteListMerkleRoot, _leaf);
  }

  function mint(uint256 _quantity) external payable callerIsUser {
    uint256 _salePublicPrice = uint256(salesInfo.salePublicPrice);
    uint256 _saleStartTime = uint256(salesInfo.saleStartTime);
    require(isMintEnabled, "minting not enabled");
    require(isStartTime(_saleStartTime), "Not sale time yet");
    require(isOverMaxSupply(_quantity), "Amount exceeds supply");
    require(
      getOwnedNFTCount() + _quantity <= maxPerWallet,
      "Exceeding allowance per wallet"
    );
    require(
      _salePublicPrice * _quantity == msg.value,
      "ETH sent not equal to cost."
    );
    require(_quantity <= maxPerTx, "Exceeds transaction limit.");

    _safeMint(msg.sender, _quantity);

    salesInfo.saleRoundCount += _quantity;

    emit ContractBalanceEvent(address(this).balance);
    emit TotalSupplyEvent(totalSupply());
    emit SaleInfoEvent(salesInfo);
  }

  function withdraw(uint256 _quantity) external nonReentrant {
    require(
      msg.sender == realOwnerAddress,
      "Only realOwnerAddress can call this function."
    );
    require(_quantity > 0, "Invalid withdrawal amount.");
    require(
      _quantity <= address(this).balance,
      "Insufficient contract balance."
    );

    (bool success, ) = realOwnerAddress.call{ value: _quantity }("");
    require(success, "Withdrawal failed.");

    emit ContractBalanceEvent(address(this).balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"contractBalance","type":"uint256"}],"name":"ContractBalanceEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"marketingMaxSupply","type":"uint256"}],"name":"MarketingMaxSupplyEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxPerTx","type":"uint256"}],"name":"MaxPerTxEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"name":"MaxPerWalletEvent","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":[{"components":[{"internalType":"uint256","name":"saleStartTime","type":"uint256"},{"internalType":"uint256","name":"saleRoundCount","type":"uint256"},{"internalType":"uint256","name":"saleRoundMaxCount","type":"uint256"},{"internalType":"uint256","name":"saleWhiteListPrice","type":"uint256"},{"internalType":"uint256","name":"salePublicPrice","type":"uint256"}],"indexed":false,"internalType":"struct SteelDuck.SaleInfo","name":"salesInfo","type":"tuple"}],"name":"SaleInfoEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"TotalSupplyEvent","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isMintEnabled","type":"bool"}],"name":"isMintEnabledEvent","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"addressingMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwnedNFTCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"isOverMaxSupply","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStartTime","type":"uint256"}],"name":"isStartTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"marketingMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"realOwnerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"salesInfo","outputs":[{"internalType":"uint256","name":"saleStartTime","type":"uint256"},{"internalType":"uint256","name":"saleRoundCount","type":"uint256"},{"internalType":"uint256","name":"saleRoundMaxCount","type":"uint256"},{"internalType":"uint256","name":"saleWhiteListPrice","type":"uint256"},{"internalType":"uint256","name":"salePublicPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isMintEnabled","type":"bool"}],"name":"setIsPubilcMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingMaxSupply","type":"uint256"}],"name":"setMarketingMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerMint","type":"uint256"}],"name":"setMaxPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setRealOwnerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_saleRoundCount","type":"uint256"},{"internalType":"uint256","name":"_saleRoundMaxCount","type":"uint256"},{"internalType":"uint256","name":"_saleWhiteListPrice","type":"uint256"},{"internalType":"uint256","name":"_salePublicPrice","type":"uint256"}],"name":"setSaleInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhiteListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whiteListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b5060405162004de738038062004de78339818101604052810190620000379190620002fe565b8282816002908051906020019062000051929190620001c5565b5080600390805190602001906200006a929190620001c5565b506200007b620000ee60201b60201c565b6000819055505050620000a362000097620000f760201b60201c565b620000ff60201b60201c565b600160098190555082600f9080519060200190620000c3929190620001c5565b508160109080519060200190620000dc929190620001c5565b5080608081815250505050506200051a565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d39062000425565b90600052602060002090601f016020900481019282620001f7576000855562000243565b82601f106200021257805160ff191683800117855562000243565b8280016001018555821562000243579182015b828111156200024257825182559160200191906001019062000225565b5b50905062000252919062000256565b5090565b5b808211156200027157600081600090555060010162000257565b5090565b60006200028c6200028684620003af565b62000386565b905082815260208101848484011115620002a557600080fd5b620002b2848285620003ef565b509392505050565b600082601f830112620002cc57600080fd5b8151620002de84826020860162000275565b91505092915050565b600081519050620002f88162000500565b92915050565b6000806000606084860312156200031457600080fd5b600084015167ffffffffffffffff8111156200032f57600080fd5b6200033d86828701620002ba565b935050602084015167ffffffffffffffff8111156200035b57600080fd5b6200036986828701620002ba565b92505060406200037c86828701620002e7565b9150509250925092565b600062000392620003a5565b9050620003a082826200045b565b919050565b6000604051905090565b600067ffffffffffffffff821115620003cd57620003cc620004c0565b5b620003d882620004ef565b9050602081019050919050565b6000819050919050565b60005b838110156200040f578082015181840152602081019050620003f2565b838111156200041f576000848401525b50505050565b600060028204905060018216806200043e57607f821691505b6020821081141562000455576200045462000491565b5b50919050565b6200046682620004ef565b810181811067ffffffffffffffff82111715620004885762000487620004c0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200050b81620003e5565b81146200051757600080fd5b50565b60805161489c6200054b60003960008181610aca0152818161196101528181611cdc01526124a4015261489c6000f3fe60806040526004361061025c5760003560e01c80636c0360eb11610144578063ad0b27e2116100b6578063db6242c31161007a578063db6242c31461089a578063e08e65ea146108c3578063e268e4d3146108ec578063e985e9c514610915578063f2fde38b14610952578063f968adbe1461097b5761025c565b8063ad0b27e2146107c2578063b88d4fde146107ed578063bd1b0d1c14610809578063c87b56dd14610832578063d5abeb011461086f5761025c565b80638da5cb5b116101085780638da5cb5b146106c157806395d89b41146106ec5780639cae395d14610717578063a0712d6814610754578063a22cb46514610770578063abd3c6e9146107995761025c565b80636c0360eb146105ee5780636f9fb98a1461061957806370707d511461064457806370a082311461066d578063715018a6146106aa5761025c565b80632e1a7d4d116101dd578063453c2310116101a1578063453c2310146104da5780634764204d146105055780634b86ea431461052e57806355d1be4c1461055957806355f804b3146105885780636352211e146105b15761025c565b80632e1a7d4d14610416578063346de50a1461043f57806334b6ab1a1461046a5780633541894b1461049557806342842e0e146104be5761025c565b80631187687511610224578063118768751461034b57806318160ddd146103675780631c94cd351461039257806323b872dd146103bd5780632cf3a1c8146103d95761025c565b806301ffc9a71461026157806302a1a1951461029e57806306fdde03146102c7578063081812fc146102f2578063095ea7b31461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906135d4565b6109a6565b6040516102959190613c7c565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190613546565b610a38565b005b3480156102d357600080fd5b506102dc610b89565b6040516102e99190613cb2565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190613667565b610c1b565b6040516103269190613c15565b60405180910390f35b61034960048036038101906103449190613546565b610c9a565b005b61036560048036038101906103609190613690565b610dde565b005b34801561037357600080fd5b5061037c6110bf565b6040516103899190613f4f565b60405180910390f35b34801561039e57600080fd5b506103a76110d6565b6040516103b49190613c15565b60405180910390f35b6103d760048036038101906103d29190613440565b6110fc565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190613667565b611421565b60405161040d9190613c7c565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190613667565b61142e565b005b34801561044b57600080fd5b5061045461165d565b6040516104619190613c7c565b60405180910390f35b34801561047657600080fd5b5061047f611670565b60405161048c9190613c97565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190613582565b611676565b005b6104d860048036038101906104d39190613440565b611769565b005b3480156104e657600080fd5b506104ef611789565b6040516104fc9190613f4f565b60405180910390f35b34801561051157600080fd5b5061052c600480360381019061052791906133db565b61178f565b005b34801561053a57600080fd5b506105436117db565b6040516105509190613f4f565b60405180910390f35b34801561056557600080fd5b5061056e6117e1565b60405161057f959493929190613f6a565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613626565b611805565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190613667565b611827565b6040516105e59190613c15565b60405180910390f35b3480156105fa57600080fd5b50610603611839565b6040516106109190613cb2565b60405180910390f35b34801561062557600080fd5b5061062e6118c7565b60405161063b9190613f4f565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190613667565b6118cf565b005b34801561067957600080fd5b50610694600480360381019061068f91906133db565b611b4f565b6040516106a19190613f4f565b60405180910390f35b3480156106b657600080fd5b506106bf611c08565b005b3480156106cd57600080fd5b506106d6611c1c565b6040516106e39190613c15565b60405180910390f35b3480156106f857600080fd5b50610701611c46565b60405161070e9190613cb2565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190613667565b611cd8565b60405161074b9190613c7c565b60405180910390f35b61076e60048036038101906107699190613667565b611d38565b005b34801561077c57600080fd5b506107976004803603810190610792919061350a565b61205a565b005b3480156107a557600080fd5b506107c060048036038101906107bb91906136e8565b612165565b005b3480156107ce57600080fd5b506107d76122ad565b6040516107e49190613f4f565b60405180910390f35b6108076004803603810190610802919061348f565b6122bd565b005b34801561081557600080fd5b50610830600480360381019061082b9190613667565b612330565b005b34801561083e57600080fd5b5061085960048036038101906108549190613667565b612403565b6040516108669190613cb2565b60405180910390f35b34801561087b57600080fd5b506108846124a2565b6040516108919190613f4f565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc9190613667565b6124c6565b005b3480156108cf57600080fd5b506108ea60048036038101906108e591906135ab565b612599565b005b3480156108f857600080fd5b50610913600480360381019061090e9190613667565b6125ab565b005b34801561092157600080fd5b5061093c60048036038101906109379190613404565b61267e565b6040516109499190613c7c565b60405180910390f35b34801561095e57600080fd5b50610979600480360381019061097491906133db565b612712565b005b34801561098757600080fd5b50610990612796565b60405161099d9190613f4f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a315750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf90613e94565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081610af26110bf565b610afc9190614092565b1115610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490613e34565b60405180910390fd5b610b47828261279c565b7f0dbc345dcde34126ef59c8a36967853804ca963be872a1938cc367cc9da3a1e8610b706110bf565b604051610b7d9190613f4f565b60405180910390a15050565b606060028054610b9890614271565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc490614271565b8015610c115780601f10610be657610100808354040283529160200191610c11565b820191906000526020600020905b815481529060010190602001808311610bf457829003601f168201915b5050505050905090565b6000610c26826127ba565b610c5c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca582611827565b90508073ffffffffffffffffffffffffffffffffffffffff16610cc6612819565b73ffffffffffffffffffffffffffffffffffffffff1614610d2957610cf281610ced612819565b61267e565b610d28576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390613dd4565b60405180910390fd5b601660009054906101000a900460ff16610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290613d14565b60405180910390fd5b610ea6338383612821565b610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90613df4565b60405180910390fd5b6000600a6003015490506000600a600001549050610f0281611421565b610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890613ed4565b60405180910390fd5b60155485610f4d6122ad565b610f579190614092565b1115610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f90613f14565b60405180910390fd5b348583610fa59190614119565b14610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc90613cd4565b60405180910390fd5b610fef338661279c565b84600a60010160008282546110049190614092565b925050819055507fa8d2e886d3364c299f9a229ac75d9c90053c5997056a77ec4e1b8ba7941c8d9d4760405161103a9190613f4f565b60405180910390a17f0dbc345dcde34126ef59c8a36967853804ca963be872a1938cc367cc9da3a1e861106b6110bf565b6040516110789190613f4f565b60405180910390a17fcf00948f615ad60218dd3d176d1f30be6aa855b079b5af7e93c08d6763ab0a05600a6040516110b09190613f34565b60405180910390a15050505050565b60006110c961287f565b6001546000540303905090565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061110782612888565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461116e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061117a84612956565b91509150611190818761118b612819565b61297d565b6111dc576111a5866111a0612819565b61267e565b6111db576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611243576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61125086868660016129c1565b801561125b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611329856113058888876129c7565b7c0200000000000000000000000000000000000000000000000000000000176129ef565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156113b15760006001850190506000600460008381526020019081526020016000205414156113af5760005481146113ae578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114198686866001612a1a565b505050505050565b6000814210159050919050565b611436612a20565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bd90613db4565b60405180910390fd5b60008111611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150090613e54565b60405180910390fd5b4781111561154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390613e14565b60405180910390fd5b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161159490613c00565b60006040518083038185875af1925050503d80600081146115d1576040519150601f19603f3d011682016040523d82523d6000602084013e6115d6565b606091505b505090508061161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190613d94565b60405180910390fd5b7fa8d2e886d3364c299f9a229ac75d9c90053c5997056a77ec4e1b8ba7941c8d9d476040516116499190613f4f565b60405180910390a15061165a612a70565b50565b601660009054906101000a900460ff1681565b60175481565b3373ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd90613e94565b60405180910390fd5b80601660006101000a81548160ff0219169083151502179055507f9ce90309819efaced4a70cd6748e09513aa30450d0eae0f51d0a338482fa3526601660009054906101000a900460ff1660405161175e9190613c7c565b60405180910390a150565b611784838383604051806020016040528060008152506122bd565b505050565b60155481565b611797612a7a565b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b600a8060000154908060010154908060020154908060030154908060040154905085565b61180d612a7a565b80601190805190602001906118239291906131a0565b5050565b600061183282612888565b9050919050565b6011805461184690614271565b80601f016020809104026020016040519081016040528092919081815260200182805461187290614271565b80156118bf5780601f10611894576101008083540402835291602001916118bf565b820191906000526020600020905b8154815290600101906020018083116118a257829003601f168201915b505050505081565b600047905090565b3373ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690613e94565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000816119896110bf565b6119939190614092565b11156119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cb90613e34565b60405180910390fd5b601354811115611a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1090613cf4565b60405180910390fd5b600081601354611a299190614173565b1015611a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6190613eb4565b60405180910390fd5b6000600582611a79919061435b565b14611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab090613d34565b60405180910390fd5b6000600582611ac891906140e8565b905060005b81811015611af357611ae033600561279c565b8080611aeb906142ee565b915050611acd565b508160136000828254611b069190614173565b925050819055507f0dbc345dcde34126ef59c8a36967853804ca963be872a1938cc367cc9da3a1e8611b366110bf565b604051611b439190613f4f565b60405180910390a15050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bb7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611c10612a7a565b611c1a6000612af8565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611c5590614271565b80601f0160208091040260200160405190810160405280929190818152602001828054611c8190614271565b8015611cce5780601f10611ca357610100808354040283529160200191611cce565b820191906000526020600020905b815481529060010190602001808311611cb157829003601f168201915b5050505050905090565b60007f000000000000000000000000000000000000000000000000000000000000000082611d046110bf565b611d0e9190614092565b11158015611d315750600a6002015482600a60010154611d2e9190614092565b11155b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d90613dd4565b60405180910390fd5b6000600a6004015490506000600a600001549050601660009054906101000a900460ff16611e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0090613d14565b60405180910390fd5b611e1281611421565b611e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4890613ed4565b60405180910390fd5b611e5a83611cd8565b611e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9090613e34565b60405180910390fd5b60155483611ea56122ad565b611eaf9190614092565b1115611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790613f14565b60405180910390fd5b348383611efd9190614119565b14611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3490613cd4565b60405180910390fd5b601454831115611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7990613d74565b60405180910390fd5b611f8c338461279c565b82600a6001016000828254611fa19190614092565b925050819055507fa8d2e886d3364c299f9a229ac75d9c90053c5997056a77ec4e1b8ba7941c8d9d47604051611fd79190613f4f565b60405180910390a17f0dbc345dcde34126ef59c8a36967853804ca963be872a1938cc367cc9da3a1e86120086110bf565b6040516120159190613f4f565b60405180910390a17fcf00948f615ad60218dd3d176d1f30be6aa855b079b5af7e93c08d6763ab0a05600a60405161204d9190613f34565b60405180910390a1505050565b8060076000612067612819565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612114612819565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121599190613c7c565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ec90613e94565b60405180910390fd5b6040518060a0016040528086815260200185815260200184815260200183815260200182815250600a60008201518160000155602082015181600101556040820151816002015560608201518160030155608082015181600401559050506001601660006101000a81548160ff0219169083151502179055507fcf00948f615ad60218dd3d176d1f30be6aa855b079b5af7e93c08d6763ab0a05600a60405161229e9190613f34565b60405180910390a15050505050565b60006122b833611b4f565b905090565b6122c88484846110fc565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461232a576122f384848484612bbe565b612329576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b790613e94565b60405180910390fd5b806013819055507fd7c013d1525cec443dc8b22fa6fc6eb7c718dd73b0cd02fa38f88dc25ddf014b6013546040516123f89190613f4f565b60405180910390a150565b606061240e826127ba565b612444576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061244e612d1e565b905060008151141561246f576040518060200160405280600081525061249a565b8061247984612db0565b60405160200161248a929190613bdc565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b3373ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254d90613e94565b60405180910390fd5b806014819055507f9e7a1b90f59e2f21effe2160ebdad94bb5656e95c83878d41a726364b241441060145460405161258e9190613f4f565b60405180910390a150565b6125a1612a7a565b8060178190555050565b3373ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461263b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263290613e94565b60405180910390fd5b806015819055507f1618d116da03edc22c1e900e6d3d219f9eb4536f9ea98ff728ff1295626e72ce6015546040516126739190613f4f565b60405180910390a150565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61271a612a7a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561278a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278190613d54565b60405180910390fd5b61279381612af8565b50565b60145481565b6127b6828260405180602001604052806000815250612e09565b5050565b6000816127c561287f565b111580156127d4575060005482105b8015612812575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600061287661282f85612ea6565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612ed6565b90509392505050565b60006001905090565b6000808290508061289761287f565b1161291f5760005481101561291e5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561291c575b60008114156129125760046000836001900393508381526020019081526020016000205490506128e7565b8092505050612951565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86129de868684612eed565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60026009541415612a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5d90613ef4565b60405180910390fd5b6002600981905550565b6001600981905550565b612a82612ef6565b73ffffffffffffffffffffffffffffffffffffffff16612aa0611c1c565b73ffffffffffffffffffffffffffffffffffffffff1614612af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aed90613e74565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612be4612819565b8786866040518563ffffffff1660e01b8152600401612c069493929190613c30565b602060405180830381600087803b158015612c2057600080fd5b505af1925050508015612c5157506040513d601f19601f82011682018060405250810190612c4e91906135fd565b60015b612ccb573d8060008114612c81576040519150601f19603f3d011682016040523d82523d6000602084013e612c86565b606091505b50600081511415612cc3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060118054612d2d90614271565b80601f0160208091040260200160405190810160405280929190818152602001828054612d5990614271565b8015612da65780601f10612d7b57610100808354040283529160200191612da6565b820191906000526020600020905b815481529060010190602001808311612d8957829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612df457600184039350600a81066030018453600a8104905080612def57612df4565b612dc9565b50828103602084039350808452505050919050565b612e138383612efe565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612ea157600080549050600083820390505b612e536000868380600101945086612bbe565b612e89576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612e40578160005414612e9e57600080fd5b50505b505050565b600081604051602001612eb99190613bc1565b604051602081830303815290604052805190602001209050919050565b6000612ee582601754856130bb565b905092915050565b60009392505050565b600033905090565b6000805490506000821415612f3f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f4c60008483856129c1565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612fc383612fb460008660006129c7565b612fbd856130d2565b176129ef565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461306457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613029565b5060008214156130a0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506130b66000848385612a1a565b505050565b6000826130c885846130e2565b1490509392505050565b60006001821460e11b9050919050565b60008082905060005b84518110156131535761313e82868381518110613131577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161315e565b9150808061314b906142ee565b9150506130eb565b508091505092915050565b6000818310613176576131718284613189565b613181565b6131808383613189565b5b905092915050565b600082600052816020526040600020905092915050565b8280546131ac90614271565b90600052602060002090601f0160209004810192826131ce5760008555613215565b82601f106131e757805160ff1916838001178555613215565b82800160010185558215613215579182015b828111156132145782518255916020019190600101906131f9565b5b5090506132229190613226565b5090565b5b8082111561323f576000816000905550600101613227565b5090565b600061325661325184613fe2565b613fbd565b90508281526020810184848401111561326e57600080fd5b61327984828561422f565b509392505050565b600061329461328f84614013565b613fbd565b9050828152602081018484840111156132ac57600080fd5b6132b784828561422f565b509392505050565b6000813590506132ce816147f3565b92915050565b60008083601f8401126132e657600080fd5b8235905067ffffffffffffffff8111156132ff57600080fd5b60208301915083602082028301111561331757600080fd5b9250929050565b60008135905061332d8161480a565b92915050565b60008135905061334281614821565b92915050565b60008135905061335781614838565b92915050565b60008151905061336c81614838565b92915050565b600082601f83011261338357600080fd5b8135613393848260208601613243565b91505092915050565b600082601f8301126133ad57600080fd5b81356133bd848260208601613281565b91505092915050565b6000813590506133d58161484f565b92915050565b6000602082840312156133ed57600080fd5b60006133fb848285016132bf565b91505092915050565b6000806040838503121561341757600080fd5b6000613425858286016132bf565b9250506020613436858286016132bf565b9150509250929050565b60008060006060848603121561345557600080fd5b6000613463868287016132bf565b9350506020613474868287016132bf565b9250506040613485868287016133c6565b9150509250925092565b600080600080608085870312156134a557600080fd5b60006134b3878288016132bf565b94505060206134c4878288016132bf565b93505060406134d5878288016133c6565b925050606085013567ffffffffffffffff8111156134f257600080fd5b6134fe87828801613372565b91505092959194509250565b6000806040838503121561351d57600080fd5b600061352b858286016132bf565b925050602061353c8582860161331e565b9150509250929050565b6000806040838503121561355957600080fd5b6000613567858286016132bf565b9250506020613578858286016133c6565b9150509250929050565b60006020828403121561359457600080fd5b60006135a28482850161331e565b91505092915050565b6000602082840312156135bd57600080fd5b60006135cb84828501613333565b91505092915050565b6000602082840312156135e657600080fd5b60006135f484828501613348565b91505092915050565b60006020828403121561360f57600080fd5b600061361d8482850161335d565b91505092915050565b60006020828403121561363857600080fd5b600082013567ffffffffffffffff81111561365257600080fd5b61365e8482850161339c565b91505092915050565b60006020828403121561367957600080fd5b6000613687848285016133c6565b91505092915050565b6000806000604084860312156136a557600080fd5b60006136b3868287016133c6565b935050602084013567ffffffffffffffff8111156136d057600080fd5b6136dc868287016132d4565b92509250509250925092565b600080600080600060a0868803121561370057600080fd5b600061370e888289016133c6565b955050602061371f888289016133c6565b9450506040613730888289016133c6565b9350506060613741888289016133c6565b9250506080613752888289016133c6565b9150509295509295909350565b613768816141b1565b82525050565b61377f61377a826141b1565b614337565b82525050565b61378e816141c3565b82525050565b61379d816141cf565b82525050565b60006137ae82614044565b6137b8818561405a565b93506137c881856020860161423e565b6137d181614448565b840191505092915050565b60006137e78261404f565b6137f18185614076565b935061380181856020860161423e565b61380a81614448565b840191505092915050565b60006138208261404f565b61382a8185614087565b935061383a81856020860161423e565b80840191505092915050565b6000613853601b83614076565b915061385e82614473565b602082019050919050565b6000613876601883614076565b91506138818261449c565b602082019050919050565b6000613899601383614076565b91506138a4826144c5565b602082019050919050565b60006138bc602a83614076565b91506138c7826144ee565b604082019050919050565b60006138df602683614076565b91506138ea8261453d565b604082019050919050565b6000613902601a83614076565b915061390d8261458c565b602082019050919050565b6000613925601283614076565b9150613930826145b5565b602082019050919050565b6000613948602d83614076565b9150613953826145de565b604082019050919050565b600061396b601e83614076565b91506139768261462d565b602082019050919050565b600061398e600f83614076565b915061399982614656565b602082019050919050565b60006139b1601e83614076565b91506139bc8261467f565b602082019050919050565b60006139d4601583614076565b91506139df826146a8565b602082019050919050565b60006139f7601a83614076565b9150613a02826146d1565b602082019050919050565b6000613a1a602083614076565b9150613a25826146fa565b602082019050919050565b6000613a3d600e83614076565b9150613a4882614723565b602082019050919050565b6000613a60600d83614076565b9150613a6b8261474c565b602082019050919050565b6000613a83601183614076565b9150613a8e82614775565b602082019050919050565b6000613aa660008361406b565b9150613ab18261479e565b600082019050919050565b6000613ac9601f83614076565b9150613ad4826147a1565b602082019050919050565b6000613aec601e83614076565b9150613af7826147ca565b602082019050919050565b60a082016000808301549050613b17816142a3565b613b246000860182613ba3565b5060018301549050613b35816142a3565b613b426020860182613ba3565b5060028301549050613b53816142a3565b613b606040860182613ba3565b5060038301549050613b71816142a3565b613b7e6060860182613ba3565b5060048301549050613b8f816142a3565b613b9c6080860182613ba3565b5050505050565b613bac81614225565b82525050565b613bbb81614225565b82525050565b6000613bcd828461376e565b60148201915081905092915050565b6000613be88285613815565b9150613bf48284613815565b91508190509392505050565b6000613c0b82613a99565b9150819050919050565b6000602082019050613c2a600083018461375f565b92915050565b6000608082019050613c45600083018761375f565b613c52602083018661375f565b613c5f6040830185613bb2565b8181036060830152613c7181846137a3565b905095945050505050565b6000602082019050613c916000830184613785565b92915050565b6000602082019050613cac6000830184613794565b92915050565b60006020820190508181036000830152613ccc81846137dc565b905092915050565b60006020820190508181036000830152613ced81613846565b9050919050565b60006020820190508181036000830152613d0d81613869565b9050919050565b60006020820190508181036000830152613d2d8161388c565b9050919050565b60006020820190508181036000830152613d4d816138af565b9050919050565b60006020820190508181036000830152613d6d816138d2565b9050919050565b60006020820190508181036000830152613d8d816138f5565b9050919050565b60006020820190508181036000830152613dad81613918565b9050919050565b60006020820190508181036000830152613dcd8161393b565b9050919050565b60006020820190508181036000830152613ded8161395e565b9050919050565b60006020820190508181036000830152613e0d81613981565b9050919050565b60006020820190508181036000830152613e2d816139a4565b9050919050565b60006020820190508181036000830152613e4d816139c7565b9050919050565b60006020820190508181036000830152613e6d816139ea565b9050919050565b60006020820190508181036000830152613e8d81613a0d565b9050919050565b60006020820190508181036000830152613ead81613a30565b9050919050565b60006020820190508181036000830152613ecd81613a53565b9050919050565b60006020820190508181036000830152613eed81613a76565b9050919050565b60006020820190508181036000830152613f0d81613abc565b9050919050565b60006020820190508181036000830152613f2d81613adf565b9050919050565b600060a082019050613f496000830184613b02565b92915050565b6000602082019050613f646000830184613bb2565b92915050565b600060a082019050613f7f6000830188613bb2565b613f8c6020830187613bb2565b613f996040830186613bb2565b613fa66060830185613bb2565b613fb36080830184613bb2565b9695505050505050565b6000613fc7613fd8565b9050613fd382826142bd565b919050565b6000604051905090565b600067ffffffffffffffff821115613ffd57613ffc614419565b5b61400682614448565b9050602081019050919050565b600067ffffffffffffffff82111561402e5761402d614419565b5b61403782614448565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061409d82614225565b91506140a883614225565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140dd576140dc61438c565b5b828201905092915050565b60006140f382614225565b91506140fe83614225565b92508261410e5761410d6143bb565b5b828204905092915050565b600061412482614225565b915061412f83614225565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141685761416761438c565b5b828202905092915050565b600061417e82614225565b915061418983614225565b92508282101561419c5761419b61438c565b5b828203905092915050565b6000819050919050565b60006141bc82614205565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561425c578082015181840152602081019050614241565b8381111561426b576000848401525b50505050565b6000600282049050600182168061428957607f821691505b6020821081141561429d5761429c6143ea565b5b50919050565b60006142b66142b183614466565b6141a7565b9050919050565b6142c682614448565b810181811067ffffffffffffffff821117156142e5576142e4614419565b5b80604052505050565b60006142f982614225565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561432c5761432b61438c565b5b600182019050919050565b600061434282614349565b9050919050565b600061435482614459565b9050919050565b600061436682614225565b915061437183614225565b925082614381576143806143bb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160001c9050919050565b7f4554482073656e74206e6f7420657175616c20746f20636f73742e0000000000600082015250565b7f45786365656420706f737369626c65207175616e746974790000000000000000600082015250565b7f6d696e74696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f662061646d6960008201527f6e426174636853697a6500000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473207472616e73616374696f6e206c696d69742e000000000000600082015250565b7f5769746864726177616c206661696c65642e0000000000000000000000000000600082015250565b7f4f6e6c79207265616c4f776e6572416464726573732063616e2063616c6c207460008201527f6869732066756e6374696f6e2e00000000000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f496e73756666696369656e7420636f6e74726163742062616c616e63652e0000600082015250565b7f416d6f756e74206578636565647320737570706c790000000000000000000000600082015250565b7f496e76616c6964207769746864726177616c20616d6f756e742e000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f74207065726d697373696f6e000000000000000000000000000000000000600082015250565b7f65786365737320616d6f756e7400000000000000000000000000000000000000600082015250565b7f4e6f742073616c652074696d6520796574000000000000000000000000000000600082015250565b50565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f457863656564696e6720616c6c6f77616e6365207065722077616c6c65740000600082015250565b6147fc816141b1565b811461480757600080fd5b50565b614813816141c3565b811461481e57600080fd5b50565b61482a816141cf565b811461483557600080fd5b50565b614841816141d9565b811461484c57600080fd5b50565b61485881614225565b811461486357600080fd5b5056fea264697066735822122063cb66f01d9670c7366cc1f1dbec485d774947c38a004f190a0b70f1a82c179364736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000030730000000000000000000000000000000000000000000000000000000000000018537465656c204475636b20556e69766572736520436c756200000000000000000000000000000000000000000000000000000000000000000000000000000009537465656c4475636b0000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80636c0360eb11610144578063ad0b27e2116100b6578063db6242c31161007a578063db6242c31461089a578063e08e65ea146108c3578063e268e4d3146108ec578063e985e9c514610915578063f2fde38b14610952578063f968adbe1461097b5761025c565b8063ad0b27e2146107c2578063b88d4fde146107ed578063bd1b0d1c14610809578063c87b56dd14610832578063d5abeb011461086f5761025c565b80638da5cb5b116101085780638da5cb5b146106c157806395d89b41146106ec5780639cae395d14610717578063a0712d6814610754578063a22cb46514610770578063abd3c6e9146107995761025c565b80636c0360eb146105ee5780636f9fb98a1461061957806370707d511461064457806370a082311461066d578063715018a6146106aa5761025c565b80632e1a7d4d116101dd578063453c2310116101a1578063453c2310146104da5780634764204d146105055780634b86ea431461052e57806355d1be4c1461055957806355f804b3146105885780636352211e146105b15761025c565b80632e1a7d4d14610416578063346de50a1461043f57806334b6ab1a1461046a5780633541894b1461049557806342842e0e146104be5761025c565b80631187687511610224578063118768751461034b57806318160ddd146103675780631c94cd351461039257806323b872dd146103bd5780632cf3a1c8146103d95761025c565b806301ffc9a71461026157806302a1a1951461029e57806306fdde03146102c7578063081812fc146102f2578063095ea7b31461032f575b600080fd5b34801561026d57600080fd5b50610288600480360381019061028391906135d4565b6109a6565b6040516102959190613c7c565b60405180910390f35b3480156102aa57600080fd5b506102c560048036038101906102c09190613546565b610a38565b005b3480156102d357600080fd5b506102dc610b89565b6040516102e99190613cb2565b60405180910390f35b3480156102fe57600080fd5b5061031960048036038101906103149190613667565b610c1b565b6040516103269190613c15565b60405180910390f35b61034960048036038101906103449190613546565b610c9a565b005b61036560048036038101906103609190613690565b610dde565b005b34801561037357600080fd5b5061037c6110bf565b6040516103899190613f4f565b60405180910390f35b34801561039e57600080fd5b506103a76110d6565b6040516103b49190613c15565b60405180910390f35b6103d760048036038101906103d29190613440565b6110fc565b005b3480156103e557600080fd5b5061040060048036038101906103fb9190613667565b611421565b60405161040d9190613c7c565b60405180910390f35b34801561042257600080fd5b5061043d60048036038101906104389190613667565b61142e565b005b34801561044b57600080fd5b5061045461165d565b6040516104619190613c7c565b60405180910390f35b34801561047657600080fd5b5061047f611670565b60405161048c9190613c97565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190613582565b611676565b005b6104d860048036038101906104d39190613440565b611769565b005b3480156104e657600080fd5b506104ef611789565b6040516104fc9190613f4f565b60405180910390f35b34801561051157600080fd5b5061052c600480360381019061052791906133db565b61178f565b005b34801561053a57600080fd5b506105436117db565b6040516105509190613f4f565b60405180910390f35b34801561056557600080fd5b5061056e6117e1565b60405161057f959493929190613f6a565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613626565b611805565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190613667565b611827565b6040516105e59190613c15565b60405180910390f35b3480156105fa57600080fd5b50610603611839565b6040516106109190613cb2565b60405180910390f35b34801561062557600080fd5b5061062e6118c7565b60405161063b9190613f4f565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190613667565b6118cf565b005b34801561067957600080fd5b50610694600480360381019061068f91906133db565b611b4f565b6040516106a19190613f4f565b60405180910390f35b3480156106b657600080fd5b506106bf611c08565b005b3480156106cd57600080fd5b506106d6611c1c565b6040516106e39190613c15565b60405180910390f35b3480156106f857600080fd5b50610701611c46565b60405161070e9190613cb2565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190613667565b611cd8565b60405161074b9190613c7c565b60405180910390f35b61076e60048036038101906107699190613667565b611d38565b005b34801561077c57600080fd5b506107976004803603810190610792919061350a565b61205a565b005b3480156107a557600080fd5b506107c060048036038101906107bb91906136e8565b612165565b005b3480156107ce57600080fd5b506107d76122ad565b6040516107e49190613f4f565b60405180910390f35b6108076004803603810190610802919061348f565b6122bd565b005b34801561081557600080fd5b50610830600480360381019061082b9190613667565b612330565b005b34801561083e57600080fd5b5061085960048036038101906108549190613667565b612403565b6040516108669190613cb2565b60405180910390f35b34801561087b57600080fd5b506108846124a2565b6040516108919190613f4f565b60405180910390f35b3480156108a657600080fd5b506108c160048036038101906108bc9190613667565b6124c6565b005b3480156108cf57600080fd5b506108ea60048036038101906108e591906135ab565b612599565b005b3480156108f857600080fd5b50610913600480360381019061090e9190613667565b6125ab565b005b34801561092157600080fd5b5061093c60048036038101906109379190613404565b61267e565b6040516109499190613c7c565b60405180910390f35b34801561095e57600080fd5b50610979600480360381019061097491906133db565b612712565b005b34801561098757600080fd5b50610990612796565b60405161099d9190613f4f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a0157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a315750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf90613e94565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000307381610af26110bf565b610afc9190614092565b1115610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3490613e34565b60405180910390fd5b610b47828261279c565b7f0dbc345dcde34126ef59c8a36967853804ca963be872a1938cc367cc9da3a1e8610b706110bf565b604051610b7d9190613f4f565b60405180910390a15050565b606060028054610b9890614271565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc490614271565b8015610c115780601f10610be657610100808354040283529160200191610c11565b820191906000526020600020905b815481529060010190602001808311610bf457829003601f168201915b5050505050905090565b6000610c26826127ba565b610c5c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca582611827565b90508073ffffffffffffffffffffffffffffffffffffffff16610cc6612819565b73ffffffffffffffffffffffffffffffffffffffff1614610d2957610cf281610ced612819565b61267e565b610d28576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390613dd4565b60405180910390fd5b601660009054906101000a900460ff16610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290613d14565b60405180910390fd5b610ea6338383612821565b610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90613df4565b60405180910390fd5b6000600a6003015490506000600a600001549050610f0281611421565b610f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3890613ed4565b60405180910390fd5b60155485610f4d6122ad565b610f579190614092565b1115610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f90613f14565b60405180910390fd5b348583610fa59190614119565b14610fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdc90613cd4565b60405180910390fd5b610fef338661279c565b84600a60010160008282546110049190614092565b925050819055507fa8d2e886d3364c299f9a229ac75d9c90053c5997056a77ec4e1b8ba7941c8d9d4760405161103a9190613f4f565b60405180910390a17f0dbc345dcde34126ef59c8a36967853804ca963be872a1938cc367cc9da3a1e861106b6110bf565b6040516110789190613f4f565b60405180910390a17fcf00948f615ad60218dd3d176d1f30be6aa855b079b5af7e93c08d6763ab0a05600a6040516110b09190613f34565b60405180910390a15050505050565b60006110c961287f565b6001546000540303905090565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061110782612888565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461116e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061117a84612956565b91509150611190818761118b612819565b61297d565b6111dc576111a5866111a0612819565b61267e565b6111db576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611243576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61125086868660016129c1565b801561125b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611329856113058888876129c7565b7c0200000000000000000000000000000000000000000000000000000000176129ef565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156113b15760006001850190506000600460008381526020019081526020016000205414156113af5760005481146113ae578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46114198686866001612a1a565b505050505050565b6000814210159050919050565b611436612a20565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bd90613db4565b60405180910390fd5b60008111611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150090613e54565b60405180910390fd5b4781111561154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154390613e14565b60405180910390fd5b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161159490613c00565b60006040518083038185875af1925050503d80600081146115d1576040519150601f19603f3d011682016040523d82523d6000602084013e6115d6565b606091505b505090508061161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190613d94565b60405180910390fd5b7fa8d2e886d3364c299f9a229ac75d9c90053c5997056a77ec4e1b8ba7941c8d9d476040516116499190613f4f565b60405180910390a15061165a612a70565b50565b601660009054906101000a900460ff1681565b60175481565b3373ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fd90613e94565b60405180910390fd5b80601660006101000a81548160ff0219169083151502179055507f9ce90309819efaced4a70cd6748e09513aa30450d0eae0f51d0a338482fa3526601660009054906101000a900460ff1660405161175e9190613c7c565b60405180910390a150565b611784838383604051806020016040528060008152506122bd565b505050565b60155481565b611797612a7a565b80601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b600a8060000154908060010154908060020154908060030154908060040154905085565b61180d612a7a565b80601190805190602001906118239291906131a0565b5050565b600061183282612888565b9050919050565b6011805461184690614271565b80601f016020809104026020016040519081016040528092919081815260200182805461187290614271565b80156118bf5780601f10611894576101008083540402835291602001916118bf565b820191906000526020600020905b8154815290600101906020018083116118a257829003601f168201915b505050505081565b600047905090565b3373ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690613e94565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000003073816119896110bf565b6119939190614092565b11156119d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cb90613e34565b60405180910390fd5b601354811115611a19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1090613cf4565b60405180910390fd5b600081601354611a299190614173565b1015611a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6190613eb4565b60405180910390fd5b6000600582611a79919061435b565b14611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab090613d34565b60405180910390fd5b6000600582611ac891906140e8565b905060005b81811015611af357611ae033600561279c565b8080611aeb906142ee565b915050611acd565b508160136000828254611b069190614173565b925050819055507f0dbc345dcde34126ef59c8a36967853804ca963be872a1938cc367cc9da3a1e8611b366110bf565b604051611b439190613f4f565b60405180910390a15050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bb7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611c10612a7a565b611c1a6000612af8565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611c5590614271565b80601f0160208091040260200160405190810160405280929190818152602001828054611c8190614271565b8015611cce5780601f10611ca357610100808354040283529160200191611cce565b820191906000526020600020905b815481529060010190602001808311611cb157829003601f168201915b5050505050905090565b60007f000000000000000000000000000000000000000000000000000000000000307382611d046110bf565b611d0e9190614092565b11158015611d315750600a6002015482600a60010154611d2e9190614092565b11155b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d90613dd4565b60405180910390fd5b6000600a6004015490506000600a600001549050601660009054906101000a900460ff16611e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0090613d14565b60405180910390fd5b611e1281611421565b611e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4890613ed4565b60405180910390fd5b611e5a83611cd8565b611e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9090613e34565b60405180910390fd5b60155483611ea56122ad565b611eaf9190614092565b1115611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790613f14565b60405180910390fd5b348383611efd9190614119565b14611f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3490613cd4565b60405180910390fd5b601454831115611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7990613d74565b60405180910390fd5b611f8c338461279c565b82600a6001016000828254611fa19190614092565b925050819055507fa8d2e886d3364c299f9a229ac75d9c90053c5997056a77ec4e1b8ba7941c8d9d47604051611fd79190613f4f565b60405180910390a17f0dbc345dcde34126ef59c8a36967853804ca963be872a1938cc367cc9da3a1e86120086110bf565b6040516120159190613f4f565b60405180910390a17fcf00948f615ad60218dd3d176d1f30be6aa855b079b5af7e93c08d6763ab0a05600a60405161204d9190613f34565b60405180910390a1505050565b8060076000612067612819565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612114612819565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121599190613c7c565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ec90613e94565b60405180910390fd5b6040518060a0016040528086815260200185815260200184815260200183815260200182815250600a60008201518160000155602082015181600101556040820151816002015560608201518160030155608082015181600401559050506001601660006101000a81548160ff0219169083151502179055507fcf00948f615ad60218dd3d176d1f30be6aa855b079b5af7e93c08d6763ab0a05600a60405161229e9190613f34565b60405180910390a15050505050565b60006122b833611b4f565b905090565b6122c88484846110fc565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461232a576122f384848484612bbe565b612329576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146123c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b790613e94565b60405180910390fd5b806013819055507fd7c013d1525cec443dc8b22fa6fc6eb7c718dd73b0cd02fa38f88dc25ddf014b6013546040516123f89190613f4f565b60405180910390a150565b606061240e826127ba565b612444576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061244e612d1e565b905060008151141561246f576040518060200160405280600081525061249a565b8061247984612db0565b60405160200161248a929190613bdc565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000307381565b3373ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254d90613e94565b60405180910390fd5b806014819055507f9e7a1b90f59e2f21effe2160ebdad94bb5656e95c83878d41a726364b241441060145460405161258e9190613f4f565b60405180910390a150565b6125a1612a7a565b8060178190555050565b3373ffffffffffffffffffffffffffffffffffffffff16601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461263b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263290613e94565b60405180910390fd5b806015819055507f1618d116da03edc22c1e900e6d3d219f9eb4536f9ea98ff728ff1295626e72ce6015546040516126739190613f4f565b60405180910390a150565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61271a612a7a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561278a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278190613d54565b60405180910390fd5b61279381612af8565b50565b60145481565b6127b6828260405180602001604052806000815250612e09565b5050565b6000816127c561287f565b111580156127d4575060005482105b8015612812575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600061287661282f85612ea6565b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612ed6565b90509392505050565b60006001905090565b6000808290508061289761287f565b1161291f5760005481101561291e5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561291c575b60008114156129125760046000836001900393508381526020019081526020016000205490506128e7565b8092505050612951565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86129de868684612eed565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60026009541415612a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5d90613ef4565b60405180910390fd5b6002600981905550565b6001600981905550565b612a82612ef6565b73ffffffffffffffffffffffffffffffffffffffff16612aa0611c1c565b73ffffffffffffffffffffffffffffffffffffffff1614612af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aed90613e74565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612be4612819565b8786866040518563ffffffff1660e01b8152600401612c069493929190613c30565b602060405180830381600087803b158015612c2057600080fd5b505af1925050508015612c5157506040513d601f19601f82011682018060405250810190612c4e91906135fd565b60015b612ccb573d8060008114612c81576040519150601f19603f3d011682016040523d82523d6000602084013e612c86565b606091505b50600081511415612cc3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060118054612d2d90614271565b80601f0160208091040260200160405190810160405280929190818152602001828054612d5990614271565b8015612da65780601f10612d7b57610100808354040283529160200191612da6565b820191906000526020600020905b815481529060010190602001808311612d8957829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612df457600184039350600a81066030018453600a8104905080612def57612df4565b612dc9565b50828103602084039350808452505050919050565b612e138383612efe565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612ea157600080549050600083820390505b612e536000868380600101945086612bbe565b612e89576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612e40578160005414612e9e57600080fd5b50505b505050565b600081604051602001612eb99190613bc1565b604051602081830303815290604052805190602001209050919050565b6000612ee582601754856130bb565b905092915050565b60009392505050565b600033905090565b6000805490506000821415612f3f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f4c60008483856129c1565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612fc383612fb460008660006129c7565b612fbd856130d2565b176129ef565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461306457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050613029565b5060008214156130a0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506130b66000848385612a1a565b505050565b6000826130c885846130e2565b1490509392505050565b60006001821460e11b9050919050565b60008082905060005b84518110156131535761313e82868381518110613131577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161315e565b9150808061314b906142ee565b9150506130eb565b508091505092915050565b6000818310613176576131718284613189565b613181565b6131808383613189565b5b905092915050565b600082600052816020526040600020905092915050565b8280546131ac90614271565b90600052602060002090601f0160209004810192826131ce5760008555613215565b82601f106131e757805160ff1916838001178555613215565b82800160010185558215613215579182015b828111156132145782518255916020019190600101906131f9565b5b5090506132229190613226565b5090565b5b8082111561323f576000816000905550600101613227565b5090565b600061325661325184613fe2565b613fbd565b90508281526020810184848401111561326e57600080fd5b61327984828561422f565b509392505050565b600061329461328f84614013565b613fbd565b9050828152602081018484840111156132ac57600080fd5b6132b784828561422f565b509392505050565b6000813590506132ce816147f3565b92915050565b60008083601f8401126132e657600080fd5b8235905067ffffffffffffffff8111156132ff57600080fd5b60208301915083602082028301111561331757600080fd5b9250929050565b60008135905061332d8161480a565b92915050565b60008135905061334281614821565b92915050565b60008135905061335781614838565b92915050565b60008151905061336c81614838565b92915050565b600082601f83011261338357600080fd5b8135613393848260208601613243565b91505092915050565b600082601f8301126133ad57600080fd5b81356133bd848260208601613281565b91505092915050565b6000813590506133d58161484f565b92915050565b6000602082840312156133ed57600080fd5b60006133fb848285016132bf565b91505092915050565b6000806040838503121561341757600080fd5b6000613425858286016132bf565b9250506020613436858286016132bf565b9150509250929050565b60008060006060848603121561345557600080fd5b6000613463868287016132bf565b9350506020613474868287016132bf565b9250506040613485868287016133c6565b9150509250925092565b600080600080608085870312156134a557600080fd5b60006134b3878288016132bf565b94505060206134c4878288016132bf565b93505060406134d5878288016133c6565b925050606085013567ffffffffffffffff8111156134f257600080fd5b6134fe87828801613372565b91505092959194509250565b6000806040838503121561351d57600080fd5b600061352b858286016132bf565b925050602061353c8582860161331e565b9150509250929050565b6000806040838503121561355957600080fd5b6000613567858286016132bf565b9250506020613578858286016133c6565b9150509250929050565b60006020828403121561359457600080fd5b60006135a28482850161331e565b91505092915050565b6000602082840312156135bd57600080fd5b60006135cb84828501613333565b91505092915050565b6000602082840312156135e657600080fd5b60006135f484828501613348565b91505092915050565b60006020828403121561360f57600080fd5b600061361d8482850161335d565b91505092915050565b60006020828403121561363857600080fd5b600082013567ffffffffffffffff81111561365257600080fd5b61365e8482850161339c565b91505092915050565b60006020828403121561367957600080fd5b6000613687848285016133c6565b91505092915050565b6000806000604084860312156136a557600080fd5b60006136b3868287016133c6565b935050602084013567ffffffffffffffff8111156136d057600080fd5b6136dc868287016132d4565b92509250509250925092565b600080600080600060a0868803121561370057600080fd5b600061370e888289016133c6565b955050602061371f888289016133c6565b9450506040613730888289016133c6565b9350506060613741888289016133c6565b9250506080613752888289016133c6565b9150509295509295909350565b613768816141b1565b82525050565b61377f61377a826141b1565b614337565b82525050565b61378e816141c3565b82525050565b61379d816141cf565b82525050565b60006137ae82614044565b6137b8818561405a565b93506137c881856020860161423e565b6137d181614448565b840191505092915050565b60006137e78261404f565b6137f18185614076565b935061380181856020860161423e565b61380a81614448565b840191505092915050565b60006138208261404f565b61382a8185614087565b935061383a81856020860161423e565b80840191505092915050565b6000613853601b83614076565b915061385e82614473565b602082019050919050565b6000613876601883614076565b91506138818261449c565b602082019050919050565b6000613899601383614076565b91506138a4826144c5565b602082019050919050565b60006138bc602a83614076565b91506138c7826144ee565b604082019050919050565b60006138df602683614076565b91506138ea8261453d565b604082019050919050565b6000613902601a83614076565b915061390d8261458c565b602082019050919050565b6000613925601283614076565b9150613930826145b5565b602082019050919050565b6000613948602d83614076565b9150613953826145de565b604082019050919050565b600061396b601e83614076565b91506139768261462d565b602082019050919050565b600061398e600f83614076565b915061399982614656565b602082019050919050565b60006139b1601e83614076565b91506139bc8261467f565b602082019050919050565b60006139d4601583614076565b91506139df826146a8565b602082019050919050565b60006139f7601a83614076565b9150613a02826146d1565b602082019050919050565b6000613a1a602083614076565b9150613a25826146fa565b602082019050919050565b6000613a3d600e83614076565b9150613a4882614723565b602082019050919050565b6000613a60600d83614076565b9150613a6b8261474c565b602082019050919050565b6000613a83601183614076565b9150613a8e82614775565b602082019050919050565b6000613aa660008361406b565b9150613ab18261479e565b600082019050919050565b6000613ac9601f83614076565b9150613ad4826147a1565b602082019050919050565b6000613aec601e83614076565b9150613af7826147ca565b602082019050919050565b60a082016000808301549050613b17816142a3565b613b246000860182613ba3565b5060018301549050613b35816142a3565b613b426020860182613ba3565b5060028301549050613b53816142a3565b613b606040860182613ba3565b5060038301549050613b71816142a3565b613b7e6060860182613ba3565b5060048301549050613b8f816142a3565b613b9c6080860182613ba3565b5050505050565b613bac81614225565b82525050565b613bbb81614225565b82525050565b6000613bcd828461376e565b60148201915081905092915050565b6000613be88285613815565b9150613bf48284613815565b91508190509392505050565b6000613c0b82613a99565b9150819050919050565b6000602082019050613c2a600083018461375f565b92915050565b6000608082019050613c45600083018761375f565b613c52602083018661375f565b613c5f6040830185613bb2565b8181036060830152613c7181846137a3565b905095945050505050565b6000602082019050613c916000830184613785565b92915050565b6000602082019050613cac6000830184613794565b92915050565b60006020820190508181036000830152613ccc81846137dc565b905092915050565b60006020820190508181036000830152613ced81613846565b9050919050565b60006020820190508181036000830152613d0d81613869565b9050919050565b60006020820190508181036000830152613d2d8161388c565b9050919050565b60006020820190508181036000830152613d4d816138af565b9050919050565b60006020820190508181036000830152613d6d816138d2565b9050919050565b60006020820190508181036000830152613d8d816138f5565b9050919050565b60006020820190508181036000830152613dad81613918565b9050919050565b60006020820190508181036000830152613dcd8161393b565b9050919050565b60006020820190508181036000830152613ded8161395e565b9050919050565b60006020820190508181036000830152613e0d81613981565b9050919050565b60006020820190508181036000830152613e2d816139a4565b9050919050565b60006020820190508181036000830152613e4d816139c7565b9050919050565b60006020820190508181036000830152613e6d816139ea565b9050919050565b60006020820190508181036000830152613e8d81613a0d565b9050919050565b60006020820190508181036000830152613ead81613a30565b9050919050565b60006020820190508181036000830152613ecd81613a53565b9050919050565b60006020820190508181036000830152613eed81613a76565b9050919050565b60006020820190508181036000830152613f0d81613abc565b9050919050565b60006020820190508181036000830152613f2d81613adf565b9050919050565b600060a082019050613f496000830184613b02565b92915050565b6000602082019050613f646000830184613bb2565b92915050565b600060a082019050613f7f6000830188613bb2565b613f8c6020830187613bb2565b613f996040830186613bb2565b613fa66060830185613bb2565b613fb36080830184613bb2565b9695505050505050565b6000613fc7613fd8565b9050613fd382826142bd565b919050565b6000604051905090565b600067ffffffffffffffff821115613ffd57613ffc614419565b5b61400682614448565b9050602081019050919050565b600067ffffffffffffffff82111561402e5761402d614419565b5b61403782614448565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061409d82614225565b91506140a883614225565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156140dd576140dc61438c565b5b828201905092915050565b60006140f382614225565b91506140fe83614225565b92508261410e5761410d6143bb565b5b828204905092915050565b600061412482614225565b915061412f83614225565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141685761416761438c565b5b828202905092915050565b600061417e82614225565b915061418983614225565b92508282101561419c5761419b61438c565b5b828203905092915050565b6000819050919050565b60006141bc82614205565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561425c578082015181840152602081019050614241565b8381111561426b576000848401525b50505050565b6000600282049050600182168061428957607f821691505b6020821081141561429d5761429c6143ea565b5b50919050565b60006142b66142b183614466565b6141a7565b9050919050565b6142c682614448565b810181811067ffffffffffffffff821117156142e5576142e4614419565b5b80604052505050565b60006142f982614225565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561432c5761432b61438c565b5b600182019050919050565b600061434282614349565b9050919050565b600061435482614459565b9050919050565b600061436682614225565b915061437183614225565b925082614381576143806143bb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160001c9050919050565b7f4554482073656e74206e6f7420657175616c20746f20636f73742e0000000000600082015250565b7f45786365656420706f737369626c65207175616e746974790000000000000000600082015250565b7f6d696e74696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f662061646d6960008201527f6e426174636853697a6500000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473207472616e73616374696f6e206c696d69742e000000000000600082015250565b7f5769746864726177616c206661696c65642e0000000000000000000000000000600082015250565b7f4f6e6c79207265616c4f776e6572416464726573732063616e2063616c6c207460008201527f6869732066756e6374696f6e2e00000000000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f496e73756666696369656e7420636f6e74726163742062616c616e63652e0000600082015250565b7f416d6f756e74206578636565647320737570706c790000000000000000000000600082015250565b7f496e76616c6964207769746864726177616c20616d6f756e742e000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f74207065726d697373696f6e000000000000000000000000000000000000600082015250565b7f65786365737320616d6f756e7400000000000000000000000000000000000000600082015250565b7f4e6f742073616c652074696d6520796574000000000000000000000000000000600082015250565b50565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f457863656564696e6720616c6c6f77616e6365207065722077616c6c65740000600082015250565b6147fc816141b1565b811461480757600080fd5b50565b614813816141c3565b811461481e57600080fd5b50565b61482a816141cf565b811461483557600080fd5b50565b614841816141d9565b811461484c57600080fd5b50565b61485881614225565b811461486357600080fd5b5056fea264697066735822122063cb66f01d9670c7366cc1f1dbec485d774947c38a004f190a0b70f1a82c179364736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000030730000000000000000000000000000000000000000000000000000000000000018537465656c204475636b20556e69766572736520436c756200000000000000000000000000000000000000000000000000000000000000000000000000000009537465656c4475636b0000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Steel Duck Universe Club
Arg [1] : _symbol (string): SteelDuck
Arg [2] : _maxSupply (uint256): 12403

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000003073
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [4] : 537465656c204475636b20556e69766572736520436c75620000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 537465656c4475636b0000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

68839:7335:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35121:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72475:254;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36023:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42514:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41947:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73328:906;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31774:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69196:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46153:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72124:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75651:520;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69373:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69405:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71097:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49074:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69339:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70985:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69273:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69080:25;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;;;;70778:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37416:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69170:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72015:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72735:587;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32958:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15900:103;;;;;;;;;;;;;:::i;:::-;;15259:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36199:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72255:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74745:900;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43072:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70234:430;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71269:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49865:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71374:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36409:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69234:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71583:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71891:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71728:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43463:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16158:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69311:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35121:639;35206:4;35545:10;35530:25;;:11;:25;;;;:102;;;;35622:10;35607:25;;:11;:25;;;;35530:102;:179;;;;35699:10;35684:25;;:11;:25;;;;35530:179;35510:199;;35121:639;;;:::o;72475:254::-;70068:10;70048:30;;:16;;;;;;;;;;;:30;;;70040:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;72612:9:::1;72599;72583:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;72575:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;72656:24;72666:2;72670:9;72656;:24::i;:::-;72692:31;72709:13;:11;:13::i;:::-;72692:31;;;;;;:::i;:::-;;;;;;;;72475:254:::0;;:::o;36023:100::-;36077:13;36110:5;36103:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36023:100;:::o;42514:218::-;42590:7;42615:16;42623:7;42615;:16::i;:::-;42610:64;;42640:34;;;;;;;;;;;;;;42610:64;42694:15;:24;42710:7;42694:24;;;;;;;;;;;:30;;;;;;;;;;;;42687:37;;42514:218;;;:::o;41947:408::-;42036:13;42052:16;42060:7;42052;:16::i;:::-;42036:32;;42108:5;42085:28;;:19;:17;:19::i;:::-;:28;;;42081:175;;42133:44;42150:5;42157:19;:17;:19::i;:::-;42133:16;:44::i;:::-;42128:128;;42205:35;;;;;;;;;;;;;;42128:128;42081:175;42301:2;42268:15;:24;42284:7;42268:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;42339:7;42335:2;42319:28;;42328:5;42319:28;;;;;;;;;;;;41947:408;;;:::o;73328:906::-;70169:10;70156:23;;:9;:23;;;70148:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;73463:13:::1;;;;;;;;;;;73455:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;73515:39;73529:10;73541:12;;73515:13;:39::i;:::-;73507:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;73581:27;73619:9;:28;;;73581:67;;73655:22;73688:9;:23;;;73655:57;;73727:27;73739:14;73727:11;:27::i;:::-;73719:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;73833:12;;73820:9;73799:18;:16;:18::i;:::-;:30;;;;:::i;:::-;:46;;73783:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;73951:9;73938;73916:19;:31;;;;:::i;:::-;:44;73900:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;74014:32;74024:10;74036:9;74014;:32::i;:::-;74083:9;74055;:24;;;:37;;;;;;;:::i;:::-;;;;;;;;74106:43;74127:21;74106:43;;;;;;:::i;:::-;;;;;;;;74161:31;74178:13;:11;:13::i;:::-;74161:31;;;;;;:::i;:::-;;;;;;;;74204:24;74218:9;74204:24;;;;;;:::i;:::-;;;;;;;;70221:1;;73328:906:::0;;;:::o;31774:323::-;31835:7;32063:15;:13;:15::i;:::-;32048:12;;32032:13;;:28;:46;32025:53;;31774:323;:::o;69196:31::-;;;;;;;;;;;;;:::o;46153:2825::-;46295:27;46325;46344:7;46325:18;:27::i;:::-;46295:57;;46410:4;46369:45;;46385:19;46369:45;;;46365:86;;46423:28;;;;;;;;;;;;;;46365:86;46465:27;46494:23;46521:35;46548:7;46521:26;:35::i;:::-;46464:92;;;;46656:68;46681:15;46698:4;46704:19;:17;:19::i;:::-;46656:24;:68::i;:::-;46651:180;;46744:43;46761:4;46767:19;:17;:19::i;:::-;46744:16;:43::i;:::-;46739:92;;46796:35;;;;;;;;;;;;;;46739:92;46651:180;46862:1;46848:16;;:2;:16;;;46844:52;;;46873:23;;;;;;;;;;;;;;46844:52;46909:43;46931:4;46937:2;46941:7;46950:1;46909:21;:43::i;:::-;47045:15;47042:2;;;47185:1;47164:19;47157:30;47042:2;47582:18;:24;47601:4;47582:24;;;;;;;;;;;;;;;;47580:26;;;;;;;;;;;;47651:18;:22;47670:2;47651:22;;;;;;;;;;;;;;;;47649:24;;;;;;;;;;;47973:146;48010:2;48059:45;48074:4;48080:2;48084:19;48059:14;:45::i;:::-;28173:8;48031:73;47973:18;:146::i;:::-;47944:17;:26;47962:7;47944:26;;;;;;;;;;;:175;;;;48290:1;28173:8;48239:19;:47;:52;48235:627;;;48312:19;48344:1;48334:7;:11;48312:33;;48501:1;48467:17;:30;48485:11;48467:30;;;;;;;;;;;;:35;48463:384;;;48605:13;;48590:11;:28;48586:242;;48785:19;48752:17;:30;48770:11;48752:30;;;;;;;;;;;:52;;;;48586:242;48463:384;48235:627;;48909:7;48905:2;48890:27;;48899:4;48890:27;;;;;;;;;;;;48928:42;48949:4;48955:2;48959:7;48968:1;48928:20;:42::i;:::-;46153:2825;;;;;;:::o;72124:125::-;72190:4;72229:14;72210:15;:33;;72203:40;;72124:125;;;:::o;75651:520::-;12236:21;:19;:21::i;:::-;75747:16:::1;;;;;;;;;;;75733:30;;:10;:30;;;75717:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;75853:1;75841:9;:13;75833:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;75921:21;75908:9;:34;;75892:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;76000:12;76018:16;;;;;;;;;;;:21;;76048:9;76018:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75999:64;;;76078:7;76070:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;76122:43;76143:21;76122:43;;;;;;:::i;:::-;;;;;;;;12268:1;12280:20:::0;:18;:20::i;:::-;75651:520;:::o;69373:25::-;;;;;;;;;;;;;:::o;69405:34::-;;;;:::o;71097:166::-;70068:10;70048:30;;:16;;;;;;;;;;;:30;;;70040:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;71196:14:::1;71180:13;;:30;;;;;;;;;;;;;;;;;;71224:33;71243:13;;;;;;;;;;;71224:33;;;;;;:::i;:::-;;;;;;;;71097:166:::0;:::o;49074:193::-;49220:39;49237:4;49243:2;49247:7;49220:39;;;;;;;;;;;;:16;:39::i;:::-;49074:193;;;:::o;69339:27::-;;;;:::o;70985:106::-;15145:13;:11;:13::i;:::-;71077:8:::1;71058:16;;:27;;;;;;;;;;;;;;;;;;70985:106:::0;:::o;69273:33::-;;;;:::o;69080:25::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;70778:100::-;15145:13;:11;:13::i;:::-;70861:11:::1;70851:7;:21;;;;;;;;;;;;:::i;:::-;;70778:100:::0;:::o;37416:152::-;37488:7;37531:27;37550:7;37531:18;:27::i;:::-;37508:52;;37416:152;;;:::o;69170:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72015:103::-;72068:7;72091:21;72084:28;;72015:103;:::o;72735:587::-;70068:10;70048:30;;:16;;;;;;;;;;;:30;;;70040:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;72844:9:::1;72831;72815:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;72807:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;72907:18;;72894:9;:31;;72886:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73003:1;72990:9;72969:18;;:30;;;;:::i;:::-;:35;;72961:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;73056:1;73051;73039:9;:13;;;;:::i;:::-;:18;73031:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;73113:17;73145:1;73133:9;:13;;;;:::i;:::-;73113:33;;73158:9;73153:81;73177:9;73173:1;:13;73153:81;;;73202:24;73212:10;73224:1;73202:9;:24::i;:::-;73188:3;;;;;:::i;:::-;;;;73153:81;;;;73264:9;73242:18;;:31;;;;;;;:::i;:::-;;;;;;;;73285;73302:13;:11;:13::i;:::-;73285:31;;;;;;:::i;:::-;;;;;;;;70104:1;72735:587:::0;:::o;32958:233::-;33030:7;33071:1;33054:19;;:5;:19;;;33050:60;;;33082:28;;;;;;;;;;;;;;33050:60;27117:13;33128:18;:25;33147:5;33128:25;;;;;;;;;;;;;;;;:55;33121:62;;32958:233;;;:::o;15900:103::-;15145:13;:11;:13::i;:::-;15965:30:::1;15992:1;15965:18;:30::i;:::-;15900:103::o:0;15259:87::-;15305:7;15332:6;;;;;;;;;;;15325:13;;15259:87;:::o;36199:104::-;36255:13;36288:7;36281:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36199:104;:::o;72255:214::-;72320:4;72376:9;72363;72347:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;:116;;;;;72436:9;:27;;;72423:9;72396;:24;;;:36;;;;:::i;:::-;:67;;72347:116;72333:130;;72255:214;;;:::o;74745:900::-;70169:10;70156:23;;:9;:23;;;70148:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;74815:24:::1;74850:9;:25;;;74815:61;;74883:22;74916:9;:23;;;74883:57;;74955:13;;;;;;;;;;;74947:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;75007:27;75019:14;75007:11;:27::i;:::-;74999:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;75071:26;75087:9;75071:15;:26::i;:::-;75063:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;75180:12;;75167:9;75146:18;:16;:18::i;:::-;:30;;;;:::i;:::-;:46;;75130:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;75295:9;75282;75263:16;:28;;;;:::i;:::-;:41;75247:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;75377:8;;75364:9;:21;;75356:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;75425:32;75435:10;75447:9;75425;:32::i;:::-;75494:9;75466;:24;;;:37;;;;;;;:::i;:::-;;;;;;;;75517:43;75538:21;75517:43;;;;;;:::i;:::-;;;;;;;;75572:31;75589:13;:11;:13::i;:::-;75572:31;;;;;;:::i;:::-;;;;;;;;75615:24;75629:9;75615:24;;;;;;:::i;:::-;;;;;;;;70221:1;;74745:900:::0;:::o;43072:234::-;43219:8;43167:18;:39;43186:19;:17;:19::i;:::-;43167:39;;;;;;;;;;;;;;;:49;43207:8;43167:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;43279:8;43243:55;;43258:19;:17;:19::i;:::-;43243:55;;;43289:8;43243:55;;;;;;:::i;:::-;;;;;;;;43072:234;;:::o;70234:430::-;70068:10;70048:30;;:16;;;;;;;;;;;:30;;;70040:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;70455:138:::1;;;;;;;;70472:10;70455:138;;;;70491:15;70455:138;;;;70515:18;70455:138;;;;70542:19;70455:138;;;;70570:16;70455:138;;::::0;70443:9:::1;:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70618:4;70602:13;;:20;;;;;;;;;;;;;;;;;;70634:24;70648:9;70634:24;;;;;;:::i;:::-;;;;;;;;70234:430:::0;;;;;:::o;71269:99::-;71318:7;71341:21;71351:10;71341:9;:21::i;:::-;71334:28;;71269:99;:::o;49865:407::-;50040:31;50053:4;50059:2;50063:7;50040:12;:31::i;:::-;50104:1;50086:2;:14;;;:19;50082:183;;50125:56;50156:4;50162:2;50166:7;50175:5;50125:30;:56::i;:::-;50120:145;;50209:40;;;;;;;;;;;;;;50120:145;50082:183;49865:407;;;;:::o;71374:203::-;70068:10;70048:30;;:16;;;;;;;;;;;:30;;;70040:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;71495:19:::1;71474:18;:40;;;;71528:43;71552:18;;71528:43;;;;;;:::i;:::-;;;;;;;;71374:203:::0;:::o;36409:318::-;36482:13;36513:16;36521:7;36513;:16::i;:::-;36508:59;;36538:29;;;;;;;;;;;;;;36508:59;36580:21;36604:10;:8;:10::i;:::-;36580:34;;36657:1;36638:7;36632:21;:26;;:87;;;;;;;;;;;;;;;;;36685:7;36694:18;36704:7;36694:9;:18::i;:::-;36668:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36632:87;36625:94;;;36409:318;;;:::o;69234:34::-;;;:::o;71583:139::-;70068:10;70048:30;;:16;;;;;;;;;;;:30;;;70040:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;71668:11:::1;71657:8;:22;;;;71693:23;71707:8;;71693:23;;;;;;:::i;:::-;;;;;;;;71583:139:::0;:::o;71891:118::-;15145:13;:11;:13::i;:::-;71992:11:::1;71970:19;:33;;;;71891:118:::0;:::o;71728:157::-;70068:10;70048:30;;:16;;;;;;;;;;;:30;;;70040:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;71821:13:::1;71806:12;:28;;;;71848:31;71866:12;;71848:31;;;;;;:::i;:::-;;;;;;;;71728:157:::0;:::o;43463:164::-;43560:4;43584:18;:25;43603:5;43584:25;;;;;;;;;;;;;;;:35;43610:8;43584:35;;;;;;;;;;;;;;;;;;;;;;;;;43577:42;;43463:164;;;;:::o;16158:201::-;15145:13;:11;:13::i;:::-;16267:1:::1;16247:22;;:8;:22;;;;16239:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16323:28;16342:8;16323:18;:28::i;:::-;16158:201:::0;:::o;69311:23::-;;;;:::o;60025:112::-;60102:27;60112:2;60116:8;60102:27;;;;;;;;;;;;:9;:27::i;:::-;60025:112;;:::o;43885:282::-;43950:4;44006:7;43987:15;:13;:15::i;:::-;:26;;:66;;;;;44040:13;;44030:7;:23;43987:66;:153;;;;;44139:1;27893:8;44091:17;:26;44109:7;44091:26;;;;;;;;;;;;:44;:49;43987:153;43967:173;;43885:282;;;:::o;66193:105::-;66253:7;66280:10;66273:17;;66193:105;:::o;74240:177::-;74352:4;74372:39;74382:14;74387:8;74382:4;:14::i;:::-;74398:12;;74372:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;:39::i;:::-;74365:46;;74240:177;;;;;:::o;70884:95::-;70949:7;70972:1;70965:8;;70884:95;:::o;38571:1275::-;38638:7;38658:12;38673:7;38658:22;;38741:4;38722:15;:13;:15::i;:::-;:23;38718:1061;;38775:13;;38768:4;:20;38764:1015;;;38813:14;38830:17;:23;38848:4;38830:23;;;;;;;;;;;;38813:40;;38947:1;27893:8;38919:6;:24;:29;38915:845;;;39584:113;39601:1;39591:6;:11;39584:113;;;39644:17;:25;39662:6;;;;;;;39644:25;;;;;;;;;;;;39635:34;;39584:113;;;39730:6;39723:13;;;;;;38915:845;38764:1015;;38718:1061;39807:31;;;;;;;;;;;;;;38571:1275;;;;:::o;45048:485::-;45150:27;45179:23;45220:38;45261:15;:24;45277:7;45261:24;;;;;;;;;;;45220:65;;45438:18;45415:41;;45495:19;45489:26;45470:45;;45400:126;;;;:::o;44276:659::-;44425:11;44590:16;44583:5;44579:28;44570:37;;44750:16;44739:9;44735:32;44722:45;;44900:15;44889:9;44886:30;44878:5;44867:9;44864:20;44861:56;44851:66;;44458:470;;;;;:::o;50934:159::-;;;;;:::o;65502:311::-;65637:7;65657:16;28297:3;65683:19;:41;;65657:68;;28297:3;65751:31;65762:4;65768:2;65772:9;65751:10;:31::i;:::-;65743:40;;:62;;65736:69;;;65502:311;;;;;:::o;40394:450::-;40474:14;40642:16;40635:5;40631:28;40622:37;;40819:5;40805:11;40780:23;40776:41;40773:52;40766:5;40763:63;40753:73;;40510:327;;;;:::o;51758:158::-;;;;;:::o;12316:293::-;11718:1;12450:7;;:19;;12442:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;11718:1;12583:7;:18;;;;12316:293::o;12617:213::-;11674:1;12800:7;:22;;;;12617:213::o;15424:132::-;15499:12;:10;:12::i;:::-;15488:23;;:7;:5;:7::i;:::-;:23;;;15480:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15424:132::o;16519:191::-;16593:16;16612:6;;;;;;;;;;;16593:25;;16638:8;16629:6;;:17;;;;;;;;;;;;;;;;;;16693:8;16662:40;;16683:8;16662:40;;;;;;;;;;;;16519:191;;:::o;52356:716::-;52519:4;52565:2;52540:45;;;52586:19;:17;:19::i;:::-;52607:4;52613:7;52622:5;52540:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52536:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52840:1;52823:6;:13;:18;52819:235;;;52869:40;;;;;;;;;;;;;;52819:235;53012:6;53006:13;52997:6;52993:2;52989:15;52982:38;52536:529;52709:54;;;52699:64;;;:6;:64;;;;52692:71;;;52356:716;;;;;;:::o;70670:102::-;70730:13;70759:7;70752:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70670:102;:::o;66400:1745::-;66465:17;66899:4;66892;66886:11;66882:22;66991:1;66985:4;66978:15;67066:4;67063:1;67059:12;67052:19;;67148:1;67143:3;67136:14;67252:3;67491:5;67473:428;67499:1;67473:428;;;67539:1;67534:3;67530:11;67523:18;;67710:2;67704:4;67700:13;67696:2;67692:22;67687:3;67679:36;67804:2;67798:4;67794:13;67786:21;;67871:4;67861:2;;67879:5;;67861:2;67473:428;;;67477:21;67940:3;67935;67931:13;68055:4;68050:3;68046:14;68039:21;;68120:6;68115:3;68108:19;66504:1634;;;;;;:::o;59252:689::-;59383:19;59389:2;59393:8;59383:5;:19::i;:::-;59462:1;59444:2;:14;;;:19;59440:483;;59484:11;59498:13;;59484:27;;59530:13;59552:8;59546:3;:14;59530:30;;59579:233;59610:62;59649:1;59653:2;59657:7;;;;;;59666:5;59610:30;:62::i;:::-;59605:167;;59708:40;;;;;;;;;;;;;;59605:167;59807:3;59799:5;:11;59579:233;;59894:3;59877:13;;:20;59873:34;;59899:8;;;59873:34;59440:483;;;59252:689;;;:::o;74423:121::-;74478:7;74528:8;74511:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;74501:37;;;;;;74494:44;;74423:121;;;:::o;74550:189::-;74653:4;74673:60;74692:12;74706:19;;74727:5;74673:18;:60::i;:::-;74666:67;;74550:189;;;;:::o;65203:147::-;65340:6;65203:147;;;;;:::o;13810:98::-;13863:7;13890:10;13883:17;;13810:98;:::o;53534:2966::-;53607:20;53630:13;;53607:36;;53670:1;53658:8;:13;53654:44;;;53680:18;;;;;;;;;;;;;;53654:44;53711:61;53741:1;53745:2;53749:12;53763:8;53711:21;:61::i;:::-;54255:1;27255:2;54225:1;:26;;54224:32;54212:8;:45;54186:18;:22;54205:2;54186:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;54534:139;54571:2;54625:33;54648:1;54652:2;54656:1;54625:14;:33::i;:::-;54592:30;54613:8;54592:20;:30::i;:::-;:66;54534:18;:139::i;:::-;54500:17;:31;54518:12;54500:31;;;;;;;;;;;:173;;;;54690:16;54721:11;54750:8;54735:12;:23;54721:37;;55271:16;55267:2;55263:25;55251:37;;55643:12;55603:8;55562:1;55500:25;55441:1;55380;55353:335;56014:1;56000:12;55996:20;55954:346;56055:3;56046:7;56043:16;55954:346;;56273:7;56263:8;56260:1;56233:25;56230:1;56227;56222:59;56108:1;56099:7;56095:15;56084:26;;55954:346;;;55958:77;56345:1;56333:8;:13;56329:45;;;56355:19;;;;;;;;;;;;;;56329:45;56407:3;56391:13;:19;;;;53534:2966;;56432:60;56461:1;56465:2;56469:12;56483:8;56432:20;:60::i;:::-;53534:2966;;;:::o;1222:156::-;1313:4;1366;1337:25;1350:5;1357:4;1337:12;:25::i;:::-;:33;1330:40;;1222:156;;;;;:::o;40946:324::-;41016:14;41249:1;41239:8;41236:15;41210:24;41206:46;41196:56;;41118:145;;;:::o;2021:296::-;2104:7;2124:20;2147:4;2124:27;;2167:9;2162:118;2186:5;:12;2182:1;:16;2162:118;;;2235:33;2245:12;2259:5;2265:1;2259:8;;;;;;;;;;;;;;;;;;;;;;2235:9;:33::i;:::-;2220:48;;2200:3;;;;;:::i;:::-;;;;2162:118;;;;2297:12;2290:19;;;2021:296;;;;:::o;9459:149::-;9522:7;9553:1;9549;:5;:51;;9580:20;9595:1;9598;9580:14;:20::i;:::-;9549:51;;;9557:20;9572:1;9575;9557:14;:20::i;:::-;9549:51;9542:58;;9459:149;;;;:::o;9616:268::-;9684:13;9791:1;9785:4;9778:15;9820:1;9814:4;9807:15;9861:4;9855;9845:21;9836:30;;9763:114;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;869:367::-;942:8;952:6;1002:3;995:4;987:6;983:17;979:27;969:2;;1020:1;1017;1010:12;969:2;1056:6;1043:20;1033:30;;1086:18;1078:6;1075:30;1072:2;;;1118:1;1115;1108:12;1072:2;1155:4;1147:6;1143:17;1131:29;;1209:3;1201:4;1193:6;1189:17;1179:8;1175:32;1172:41;1169:2;;;1226:1;1223;1216:12;1169:2;959:277;;;;;:::o;1242:133::-;1285:5;1323:6;1310:20;1301:29;;1339:30;1363:5;1339:30;:::i;:::-;1291:84;;;;:::o;1381:139::-;1427:5;1465:6;1452:20;1443:29;;1481:33;1508:5;1481:33;:::i;:::-;1433:87;;;;:::o;1526:137::-;1571:5;1609:6;1596:20;1587:29;;1625:32;1651:5;1625:32;:::i;:::-;1577:86;;;;:::o;1669:141::-;1725:5;1756:6;1750:13;1741:22;;1772:32;1798:5;1772:32;:::i;:::-;1731:79;;;;:::o;1829:271::-;1884:5;1933:3;1926:4;1918:6;1914:17;1910:27;1900:2;;1951:1;1948;1941:12;1900:2;1991:6;1978:20;2016:78;2090:3;2082:6;2075:4;2067:6;2063:17;2016:78;:::i;:::-;2007:87;;1890:210;;;;;:::o;2120:273::-;2176:5;2225:3;2218:4;2210:6;2206:17;2202:27;2192:2;;2243:1;2240;2233:12;2192:2;2283:6;2270:20;2308:79;2383:3;2375:6;2368:4;2360:6;2356:17;2308:79;:::i;:::-;2299:88;;2182:211;;;;;:::o;2399:139::-;2445:5;2483:6;2470:20;2461:29;;2499:33;2526:5;2499:33;:::i;:::-;2451:87;;;;:::o;2544:262::-;2603:6;2652:2;2640:9;2631:7;2627:23;2623:32;2620:2;;;2668:1;2665;2658:12;2620:2;2711:1;2736:53;2781:7;2772:6;2761:9;2757:22;2736:53;:::i;:::-;2726:63;;2682:117;2610:196;;;;:::o;2812:407::-;2880:6;2888;2937:2;2925:9;2916:7;2912:23;2908:32;2905:2;;;2953:1;2950;2943:12;2905:2;2996:1;3021:53;3066:7;3057:6;3046:9;3042:22;3021:53;:::i;:::-;3011:63;;2967:117;3123:2;3149:53;3194:7;3185:6;3174:9;3170:22;3149:53;:::i;:::-;3139:63;;3094:118;2895:324;;;;;:::o;3225:552::-;3302:6;3310;3318;3367:2;3355:9;3346:7;3342:23;3338:32;3335:2;;;3383:1;3380;3373:12;3335:2;3426:1;3451:53;3496:7;3487:6;3476:9;3472:22;3451:53;:::i;:::-;3441:63;;3397:117;3553:2;3579:53;3624:7;3615:6;3604:9;3600:22;3579:53;:::i;:::-;3569:63;;3524:118;3681:2;3707:53;3752:7;3743:6;3732:9;3728:22;3707:53;:::i;:::-;3697:63;;3652:118;3325:452;;;;;:::o;3783:809::-;3878:6;3886;3894;3902;3951:3;3939:9;3930:7;3926:23;3922:33;3919:2;;;3968:1;3965;3958:12;3919:2;4011:1;4036:53;4081:7;4072:6;4061:9;4057:22;4036:53;:::i;:::-;4026:63;;3982:117;4138:2;4164:53;4209:7;4200:6;4189:9;4185:22;4164:53;:::i;:::-;4154:63;;4109:118;4266:2;4292:53;4337:7;4328:6;4317:9;4313:22;4292:53;:::i;:::-;4282:63;;4237:118;4422:2;4411:9;4407:18;4394:32;4453:18;4445:6;4442:30;4439:2;;;4485:1;4482;4475:12;4439:2;4513:62;4567:7;4558:6;4547:9;4543:22;4513:62;:::i;:::-;4503:72;;4365:220;3909:683;;;;;;;:::o;4598:401::-;4663:6;4671;4720:2;4708:9;4699:7;4695:23;4691:32;4688:2;;;4736:1;4733;4726:12;4688:2;4779:1;4804:53;4849:7;4840:6;4829:9;4825:22;4804:53;:::i;:::-;4794:63;;4750:117;4906:2;4932:50;4974:7;4965:6;4954:9;4950:22;4932:50;:::i;:::-;4922:60;;4877:115;4678:321;;;;;:::o;5005:407::-;5073:6;5081;5130:2;5118:9;5109:7;5105:23;5101:32;5098:2;;;5146:1;5143;5136:12;5098:2;5189:1;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5160:117;5316:2;5342:53;5387:7;5378:6;5367:9;5363:22;5342:53;:::i;:::-;5332:63;;5287:118;5088:324;;;;;:::o;5418:256::-;5474:6;5523:2;5511:9;5502:7;5498:23;5494:32;5491:2;;;5539:1;5536;5529:12;5491:2;5582:1;5607:50;5649:7;5640:6;5629:9;5625:22;5607:50;:::i;:::-;5597:60;;5553:114;5481:193;;;;:::o;5680:262::-;5739:6;5788:2;5776:9;5767:7;5763:23;5759:32;5756:2;;;5804:1;5801;5794:12;5756:2;5847:1;5872:53;5917:7;5908:6;5897:9;5893:22;5872:53;:::i;:::-;5862:63;;5818:117;5746:196;;;;:::o;5948:260::-;6006:6;6055:2;6043:9;6034:7;6030:23;6026:32;6023:2;;;6071:1;6068;6061:12;6023:2;6114:1;6139:52;6183:7;6174:6;6163:9;6159:22;6139:52;:::i;:::-;6129:62;;6085:116;6013:195;;;;:::o;6214:282::-;6283:6;6332:2;6320:9;6311:7;6307:23;6303:32;6300:2;;;6348:1;6345;6338:12;6300:2;6391:1;6416:63;6471:7;6462:6;6451:9;6447:22;6416:63;:::i;:::-;6406:73;;6362:127;6290:206;;;;:::o;6502:375::-;6571:6;6620:2;6608:9;6599:7;6595:23;6591:32;6588:2;;;6636:1;6633;6626:12;6588:2;6707:1;6696:9;6692:17;6679:31;6737:18;6729:6;6726:30;6723:2;;;6769:1;6766;6759:12;6723:2;6797:63;6852:7;6843:6;6832:9;6828:22;6797:63;:::i;:::-;6787:73;;6650:220;6578:299;;;;:::o;6883:262::-;6942:6;6991:2;6979:9;6970:7;6966:23;6962:32;6959:2;;;7007:1;7004;6997:12;6959:2;7050:1;7075:53;7120:7;7111:6;7100:9;7096:22;7075:53;:::i;:::-;7065:63;;7021:117;6949:196;;;;:::o;7151:570::-;7246:6;7254;7262;7311:2;7299:9;7290:7;7286:23;7282:32;7279:2;;;7327:1;7324;7317:12;7279:2;7370:1;7395:53;7440:7;7431:6;7420:9;7416:22;7395:53;:::i;:::-;7385:63;;7341:117;7525:2;7514:9;7510:18;7497:32;7556:18;7548:6;7545:30;7542:2;;;7588:1;7585;7578:12;7542:2;7624:80;7696:7;7687:6;7676:9;7672:22;7624:80;:::i;:::-;7606:98;;;;7468:246;7269:452;;;;;:::o;7727:844::-;7822:6;7830;7838;7846;7854;7903:3;7891:9;7882:7;7878:23;7874:33;7871:2;;;7920:1;7917;7910:12;7871:2;7963:1;7988:53;8033:7;8024:6;8013:9;8009:22;7988:53;:::i;:::-;7978:63;;7934:117;8090:2;8116:53;8161:7;8152:6;8141:9;8137:22;8116:53;:::i;:::-;8106:63;;8061:118;8218:2;8244:53;8289:7;8280:6;8269:9;8265:22;8244:53;:::i;:::-;8234:63;;8189:118;8346:2;8372:53;8417:7;8408:6;8397:9;8393:22;8372:53;:::i;:::-;8362:63;;8317:118;8474:3;8501:53;8546:7;8537:6;8526:9;8522:22;8501:53;:::i;:::-;8491:63;;8445:119;7861:710;;;;;;;;:::o;8577:118::-;8664:24;8682:5;8664:24;:::i;:::-;8659:3;8652:37;8642:53;;:::o;8701:157::-;8806:45;8826:24;8844:5;8826:24;:::i;:::-;8806:45;:::i;:::-;8801:3;8794:58;8784:74;;:::o;8864:109::-;8945:21;8960:5;8945:21;:::i;:::-;8940:3;8933:34;8923:50;;:::o;8979:118::-;9066:24;9084:5;9066:24;:::i;:::-;9061:3;9054:37;9044:53;;:::o;9103:360::-;9189:3;9217:38;9249:5;9217:38;:::i;:::-;9271:70;9334:6;9329:3;9271:70;:::i;:::-;9264:77;;9350:52;9395:6;9390:3;9383:4;9376:5;9372:16;9350:52;:::i;:::-;9427:29;9449:6;9427:29;:::i;:::-;9422:3;9418:39;9411:46;;9193:270;;;;;:::o;9469:364::-;9557:3;9585:39;9618:5;9585:39;:::i;:::-;9640:71;9704:6;9699:3;9640:71;:::i;:::-;9633:78;;9720:52;9765:6;9760:3;9753:4;9746:5;9742:16;9720:52;:::i;:::-;9797:29;9819:6;9797:29;:::i;:::-;9792:3;9788:39;9781:46;;9561:272;;;;;:::o;9839:377::-;9945:3;9973:39;10006:5;9973:39;:::i;:::-;10028:89;10110:6;10105:3;10028:89;:::i;:::-;10021:96;;10126:52;10171:6;10166:3;10159:4;10152:5;10148:16;10126:52;:::i;:::-;10203:6;10198:3;10194:16;10187:23;;9949:267;;;;;:::o;10222:366::-;10364:3;10385:67;10449:2;10444:3;10385:67;:::i;:::-;10378:74;;10461:93;10550:3;10461:93;:::i;:::-;10579:2;10574:3;10570:12;10563:19;;10368:220;;;:::o;10594:366::-;10736:3;10757:67;10821:2;10816:3;10757:67;:::i;:::-;10750:74;;10833:93;10922:3;10833:93;:::i;:::-;10951:2;10946:3;10942:12;10935:19;;10740:220;;;:::o;10966:366::-;11108:3;11129:67;11193:2;11188:3;11129:67;:::i;:::-;11122:74;;11205:93;11294:3;11205:93;:::i;:::-;11323:2;11318:3;11314:12;11307:19;;11112:220;;;:::o;11338:366::-;11480:3;11501:67;11565:2;11560:3;11501:67;:::i;:::-;11494:74;;11577:93;11666:3;11577:93;:::i;:::-;11695:2;11690:3;11686:12;11679:19;;11484:220;;;:::o;11710:366::-;11852:3;11873:67;11937:2;11932:3;11873:67;:::i;:::-;11866:74;;11949:93;12038:3;11949:93;:::i;:::-;12067:2;12062:3;12058:12;12051:19;;11856:220;;;:::o;12082:366::-;12224:3;12245:67;12309:2;12304:3;12245:67;:::i;:::-;12238:74;;12321:93;12410:3;12321:93;:::i;:::-;12439:2;12434:3;12430:12;12423:19;;12228:220;;;:::o;12454:366::-;12596:3;12617:67;12681:2;12676:3;12617:67;:::i;:::-;12610:74;;12693:93;12782:3;12693:93;:::i;:::-;12811:2;12806:3;12802:12;12795:19;;12600:220;;;:::o;12826:366::-;12968:3;12989:67;13053:2;13048:3;12989:67;:::i;:::-;12982:74;;13065:93;13154:3;13065:93;:::i;:::-;13183:2;13178:3;13174:12;13167:19;;12972:220;;;:::o;13198:366::-;13340:3;13361:67;13425:2;13420:3;13361:67;:::i;:::-;13354:74;;13437:93;13526:3;13437:93;:::i;:::-;13555:2;13550:3;13546:12;13539:19;;13344:220;;;:::o;13570:366::-;13712:3;13733:67;13797:2;13792:3;13733:67;:::i;:::-;13726:74;;13809:93;13898:3;13809:93;:::i;:::-;13927:2;13922:3;13918:12;13911:19;;13716:220;;;:::o;13942:366::-;14084:3;14105:67;14169:2;14164:3;14105:67;:::i;:::-;14098:74;;14181:93;14270:3;14181:93;:::i;:::-;14299:2;14294:3;14290:12;14283:19;;14088:220;;;:::o;14314:366::-;14456:3;14477:67;14541:2;14536:3;14477:67;:::i;:::-;14470:74;;14553:93;14642:3;14553:93;:::i;:::-;14671:2;14666:3;14662:12;14655:19;;14460:220;;;:::o;14686:366::-;14828:3;14849:67;14913:2;14908:3;14849:67;:::i;:::-;14842:74;;14925:93;15014:3;14925:93;:::i;:::-;15043:2;15038:3;15034:12;15027:19;;14832:220;;;:::o;15058:366::-;15200:3;15221:67;15285:2;15280:3;15221:67;:::i;:::-;15214:74;;15297:93;15386:3;15297:93;:::i;:::-;15415:2;15410:3;15406:12;15399:19;;15204:220;;;:::o;15430:366::-;15572:3;15593:67;15657:2;15652:3;15593:67;:::i;:::-;15586:74;;15669:93;15758:3;15669:93;:::i;:::-;15787:2;15782:3;15778:12;15771:19;;15576:220;;;:::o;15802:366::-;15944:3;15965:67;16029:2;16024:3;15965:67;:::i;:::-;15958:74;;16041:93;16130:3;16041:93;:::i;:::-;16159:2;16154:3;16150:12;16143:19;;15948:220;;;:::o;16174:366::-;16316:3;16337:67;16401:2;16396:3;16337:67;:::i;:::-;16330:74;;16413:93;16502:3;16413:93;:::i;:::-;16531:2;16526:3;16522:12;16515:19;;16320:220;;;:::o;16546:398::-;16705:3;16726:83;16807:1;16802:3;16726:83;:::i;:::-;16719:90;;16818:93;16907:3;16818:93;:::i;:::-;16936:1;16931:3;16927:11;16920:18;;16709:235;;;:::o;16950:366::-;17092:3;17113:67;17177:2;17172:3;17113:67;:::i;:::-;17106:74;;17189:93;17278:3;17189:93;:::i;:::-;17307:2;17302:3;17298:12;17291:19;;17096:220;;;:::o;17322:366::-;17464:3;17485:67;17549:2;17544:3;17485:67;:::i;:::-;17478:74;;17561:93;17650:3;17561:93;:::i;:::-;17679:2;17674:3;17670:12;17663:19;;17468:220;;;:::o;17756:1512::-;17902:4;17897:3;17893:14;17933:1;18017:4;18010:5;18006:16;18000:23;17987:36;;18056:55;18101:9;18056:55;:::i;:::-;18124:63;18181:4;18176:3;18172:14;18158:12;18124:63;:::i;:::-;17944:253;18281:4;18274:5;18270:16;18264:23;18251:36;;18320:55;18365:9;18320:55;:::i;:::-;18388:63;18445:4;18440:3;18436:14;18422:12;18388:63;:::i;:::-;18207:254;18548:4;18541:5;18537:16;18531:23;18518:36;;18587:55;18632:9;18587:55;:::i;:::-;18655:63;18712:4;18707:3;18703:14;18689:12;18655:63;:::i;:::-;18471:257;18816:4;18809:5;18805:16;18799:23;18786:36;;18855:55;18900:9;18855:55;:::i;:::-;18923:63;18980:4;18975:3;18971:14;18957:12;18923:63;:::i;:::-;18738:258;19081:4;19074:5;19070:16;19064:23;19051:36;;19120:55;19165:9;19120:55;:::i;:::-;19188:63;19245:4;19240:3;19236:14;19222:12;19188:63;:::i;:::-;19006:255;17871:1397;;;;:::o;19274:108::-;19351:24;19369:5;19351:24;:::i;:::-;19346:3;19339:37;19329:53;;:::o;19388:118::-;19475:24;19493:5;19475:24;:::i;:::-;19470:3;19463:37;19453:53;;:::o;19512:256::-;19624:3;19639:75;19710:3;19701:6;19639:75;:::i;:::-;19739:2;19734:3;19730:12;19723:19;;19759:3;19752:10;;19628:140;;;;:::o;19774:435::-;19954:3;19976:95;20067:3;20058:6;19976:95;:::i;:::-;19969:102;;20088:95;20179:3;20170:6;20088:95;:::i;:::-;20081:102;;20200:3;20193:10;;19958:251;;;;;:::o;20215:379::-;20399:3;20421:147;20564:3;20421:147;:::i;:::-;20414:154;;20585:3;20578:10;;20403:191;;;:::o;20600:222::-;20693:4;20731:2;20720:9;20716:18;20708:26;;20744:71;20812:1;20801:9;20797:17;20788:6;20744:71;:::i;:::-;20698:124;;;;:::o;20828:640::-;21023:4;21061:3;21050:9;21046:19;21038:27;;21075:71;21143:1;21132:9;21128:17;21119:6;21075:71;:::i;:::-;21156:72;21224:2;21213:9;21209:18;21200:6;21156:72;:::i;:::-;21238;21306:2;21295:9;21291:18;21282:6;21238:72;:::i;:::-;21357:9;21351:4;21347:20;21342:2;21331:9;21327:18;21320:48;21385:76;21456:4;21447:6;21385:76;:::i;:::-;21377:84;;21028:440;;;;;;;:::o;21474:210::-;21561:4;21599:2;21588:9;21584:18;21576:26;;21612:65;21674:1;21663:9;21659:17;21650:6;21612:65;:::i;:::-;21566:118;;;;:::o;21690:222::-;21783:4;21821:2;21810:9;21806:18;21798:26;;21834:71;21902:1;21891:9;21887:17;21878:6;21834:71;:::i;:::-;21788:124;;;;:::o;21918:313::-;22031:4;22069:2;22058:9;22054:18;22046:26;;22118:9;22112:4;22108:20;22104:1;22093:9;22089:17;22082:47;22146:78;22219:4;22210:6;22146:78;:::i;:::-;22138:86;;22036:195;;;;:::o;22237:419::-;22403:4;22441:2;22430:9;22426:18;22418:26;;22490:9;22484:4;22480:20;22476:1;22465:9;22461:17;22454:47;22518:131;22644:4;22518:131;:::i;:::-;22510:139;;22408:248;;;:::o;22662:419::-;22828:4;22866:2;22855:9;22851:18;22843:26;;22915:9;22909:4;22905:20;22901:1;22890:9;22886:17;22879:47;22943:131;23069:4;22943:131;:::i;:::-;22935:139;;22833:248;;;:::o;23087:419::-;23253:4;23291:2;23280:9;23276:18;23268:26;;23340:9;23334:4;23330:20;23326:1;23315:9;23311:17;23304:47;23368:131;23494:4;23368:131;:::i;:::-;23360:139;;23258:248;;;:::o;23512:419::-;23678:4;23716:2;23705:9;23701:18;23693:26;;23765:9;23759:4;23755:20;23751:1;23740:9;23736:17;23729:47;23793:131;23919:4;23793:131;:::i;:::-;23785:139;;23683:248;;;:::o;23937:419::-;24103:4;24141:2;24130:9;24126:18;24118:26;;24190:9;24184:4;24180:20;24176:1;24165:9;24161:17;24154:47;24218:131;24344:4;24218:131;:::i;:::-;24210:139;;24108:248;;;:::o;24362:419::-;24528:4;24566:2;24555:9;24551:18;24543:26;;24615:9;24609:4;24605:20;24601:1;24590:9;24586:17;24579:47;24643:131;24769:4;24643:131;:::i;:::-;24635:139;;24533:248;;;:::o;24787:419::-;24953:4;24991:2;24980:9;24976:18;24968:26;;25040:9;25034:4;25030:20;25026:1;25015:9;25011:17;25004:47;25068:131;25194:4;25068:131;:::i;:::-;25060:139;;24958:248;;;:::o;25212:419::-;25378:4;25416:2;25405:9;25401:18;25393:26;;25465:9;25459:4;25455:20;25451:1;25440:9;25436:17;25429:47;25493:131;25619:4;25493:131;:::i;:::-;25485:139;;25383:248;;;:::o;25637:419::-;25803:4;25841:2;25830:9;25826:18;25818:26;;25890:9;25884:4;25880:20;25876:1;25865:9;25861:17;25854:47;25918:131;26044:4;25918:131;:::i;:::-;25910:139;;25808:248;;;:::o;26062:419::-;26228:4;26266:2;26255:9;26251:18;26243:26;;26315:9;26309:4;26305:20;26301:1;26290:9;26286:17;26279:47;26343:131;26469:4;26343:131;:::i;:::-;26335:139;;26233:248;;;:::o;26487:419::-;26653:4;26691:2;26680:9;26676:18;26668:26;;26740:9;26734:4;26730:20;26726:1;26715:9;26711:17;26704:47;26768:131;26894:4;26768:131;:::i;:::-;26760:139;;26658:248;;;:::o;26912:419::-;27078:4;27116:2;27105:9;27101:18;27093:26;;27165:9;27159:4;27155:20;27151:1;27140:9;27136:17;27129:47;27193:131;27319:4;27193:131;:::i;:::-;27185:139;;27083:248;;;:::o;27337:419::-;27503:4;27541:2;27530:9;27526:18;27518:26;;27590:9;27584:4;27580:20;27576:1;27565:9;27561:17;27554:47;27618:131;27744:4;27618:131;:::i;:::-;27610:139;;27508:248;;;:::o;27762:419::-;27928:4;27966:2;27955:9;27951:18;27943:26;;28015:9;28009:4;28005:20;28001:1;27990:9;27986:17;27979:47;28043:131;28169:4;28043:131;:::i;:::-;28035:139;;27933:248;;;:::o;28187:419::-;28353:4;28391:2;28380:9;28376:18;28368:26;;28440:9;28434:4;28430:20;28426:1;28415:9;28411:17;28404:47;28468:131;28594:4;28468:131;:::i;:::-;28460:139;;28358:248;;;:::o;28612:419::-;28778:4;28816:2;28805:9;28801:18;28793:26;;28865:9;28859:4;28855:20;28851:1;28840:9;28836:17;28829:47;28893:131;29019:4;28893:131;:::i;:::-;28885:139;;28783:248;;;:::o;29037:419::-;29203:4;29241:2;29230:9;29226:18;29218:26;;29290:9;29284:4;29280:20;29276:1;29265:9;29261:17;29254:47;29318:131;29444:4;29318:131;:::i;:::-;29310:139;;29208:248;;;:::o;29462:419::-;29628:4;29666:2;29655:9;29651:18;29643:26;;29715:9;29709:4;29705:20;29701:1;29690:9;29686:17;29679:47;29743:131;29869:4;29743:131;:::i;:::-;29735:139;;29633:248;;;:::o;29887:419::-;30053:4;30091:2;30080:9;30076:18;30068:26;;30140:9;30134:4;30130:20;30126:1;30115:9;30111:17;30104:47;30168:131;30294:4;30168:131;:::i;:::-;30160:139;;30058:248;;;:::o;30312:321::-;30454:4;30492:3;30481:9;30477:19;30469:27;;30506:120;30623:1;30612:9;30608:17;30599:6;30506:120;:::i;:::-;30459:174;;;;:::o;30639:222::-;30732:4;30770:2;30759:9;30755:18;30747:26;;30783:71;30851:1;30840:9;30836:17;30827:6;30783:71;:::i;:::-;30737:124;;;;:::o;30867:664::-;31072:4;31110:3;31099:9;31095:19;31087:27;;31124:71;31192:1;31181:9;31177:17;31168:6;31124:71;:::i;:::-;31205:72;31273:2;31262:9;31258:18;31249:6;31205:72;:::i;:::-;31287;31355:2;31344:9;31340:18;31331:6;31287:72;:::i;:::-;31369;31437:2;31426:9;31422:18;31413:6;31369:72;:::i;:::-;31451:73;31519:3;31508:9;31504:19;31495:6;31451:73;:::i;:::-;31077:454;;;;;;;;:::o;31537:129::-;31571:6;31598:20;;:::i;:::-;31588:30;;31627:33;31655:4;31647:6;31627:33;:::i;:::-;31578:88;;;:::o;31672:75::-;31705:6;31738:2;31732:9;31722:19;;31712:35;:::o;31753:307::-;31814:4;31904:18;31896:6;31893:30;31890:2;;;31926:18;;:::i;:::-;31890:2;31964:29;31986:6;31964:29;:::i;:::-;31956:37;;32048:4;32042;32038:15;32030:23;;31819:241;;;:::o;32066:308::-;32128:4;32218:18;32210:6;32207:30;32204:2;;;32240:18;;:::i;:::-;32204:2;32278:29;32300:6;32278:29;:::i;:::-;32270:37;;32362:4;32356;32352:15;32344:23;;32133:241;;;:::o;32380:98::-;32431:6;32465:5;32459:12;32449:22;;32438:40;;;:::o;32484:99::-;32536:6;32570:5;32564:12;32554:22;;32543:40;;;:::o;32589:168::-;32672:11;32706:6;32701:3;32694:19;32746:4;32741:3;32737:14;32722:29;;32684:73;;;;:::o;32763:147::-;32864:11;32901:3;32886:18;;32876:34;;;;:::o;32916:169::-;33000:11;33034:6;33029:3;33022:19;33074:4;33069:3;33065:14;33050:29;;33012:73;;;;:::o;33091:148::-;33193:11;33230:3;33215:18;;33205:34;;;;:::o;33245:305::-;33285:3;33304:20;33322:1;33304:20;:::i;:::-;33299:25;;33338:20;33356:1;33338:20;:::i;:::-;33333:25;;33492:1;33424:66;33420:74;33417:1;33414:81;33411:2;;;33498:18;;:::i;:::-;33411:2;33542:1;33539;33535:9;33528:16;;33289:261;;;;:::o;33556:185::-;33596:1;33613:20;33631:1;33613:20;:::i;:::-;33608:25;;33647:20;33665:1;33647:20;:::i;:::-;33642:25;;33686:1;33676:2;;33691:18;;:::i;:::-;33676:2;33733:1;33730;33726:9;33721:14;;33598:143;;;;:::o;33747:348::-;33787:7;33810:20;33828:1;33810:20;:::i;:::-;33805:25;;33844:20;33862:1;33844:20;:::i;:::-;33839:25;;34032:1;33964:66;33960:74;33957:1;33954:81;33949:1;33942:9;33935:17;33931:105;33928:2;;;34039:18;;:::i;:::-;33928:2;34087:1;34084;34080:9;34069:20;;33795:300;;;;:::o;34101:191::-;34141:4;34161:20;34179:1;34161:20;:::i;:::-;34156:25;;34195:20;34213:1;34195:20;:::i;:::-;34190:25;;34234:1;34231;34228:8;34225:2;;;34239:18;;:::i;:::-;34225:2;34284:1;34281;34277:9;34269:17;;34146:146;;;;:::o;34298:90::-;34348:7;34377:5;34366:16;;34356:32;;;:::o;34394:96::-;34431:7;34460:24;34478:5;34460:24;:::i;:::-;34449:35;;34439:51;;;:::o;34496:90::-;34530:7;34573:5;34566:13;34559:21;34548:32;;34538:48;;;:::o;34592:77::-;34629:7;34658:5;34647:16;;34637:32;;;:::o;34675:149::-;34711:7;34751:66;34744:5;34740:78;34729:89;;34719:105;;;:::o;34830:126::-;34867:7;34907:42;34900:5;34896:54;34885:65;;34875:81;;;:::o;34962:77::-;34999:7;35028:5;35017:16;;35007:32;;;:::o;35045:154::-;35129:6;35124:3;35119;35106:30;35191:1;35182:6;35177:3;35173:16;35166:27;35096:103;;;:::o;35205:307::-;35273:1;35283:113;35297:6;35294:1;35291:13;35283:113;;;35382:1;35377:3;35373:11;35367:18;35363:1;35358:3;35354:11;35347:39;35319:2;35316:1;35312:10;35307:15;;35283:113;;;35414:6;35411:1;35408:13;35405:2;;;35494:1;35485:6;35480:3;35476:16;35469:27;35405:2;35254:258;;;;:::o;35518:320::-;35562:6;35599:1;35593:4;35589:12;35579:22;;35646:1;35640:4;35636:12;35667:18;35657:2;;35723:4;35715:6;35711:17;35701:27;;35657:2;35785;35777:6;35774:14;35754:18;35751:38;35748:2;;;35804:18;;:::i;:::-;35748:2;35569:269;;;;:::o;35844:166::-;35913:5;35938:66;35969:34;35992:10;35969:34;:::i;:::-;35938:66;:::i;:::-;35929:75;;35919:91;;;:::o;36016:281::-;36099:27;36121:4;36099:27;:::i;:::-;36091:6;36087:40;36229:6;36217:10;36214:22;36193:18;36181:10;36178:34;36175:62;36172:2;;;36240:18;;:::i;:::-;36172:2;36280:10;36276:2;36269:22;36059:238;;;:::o;36303:233::-;36342:3;36365:24;36383:5;36365:24;:::i;:::-;36356:33;;36411:66;36404:5;36401:77;36398:2;;;36481:18;;:::i;:::-;36398:2;36528:1;36521:5;36517:13;36510:20;;36346:190;;;:::o;36542:100::-;36581:7;36610:26;36630:5;36610:26;:::i;:::-;36599:37;;36589:53;;;:::o;36648:94::-;36687:7;36716:20;36730:5;36716:20;:::i;:::-;36705:31;;36695:47;;;:::o;36748:176::-;36780:1;36797:20;36815:1;36797:20;:::i;:::-;36792:25;;36831:20;36849:1;36831:20;:::i;:::-;36826:25;;36870:1;36860:2;;36875:18;;:::i;:::-;36860:2;36916:1;36913;36909:9;36904:14;;36782:142;;;;:::o;36930:180::-;36978:77;36975:1;36968:88;37075:4;37072:1;37065:15;37099:4;37096:1;37089:15;37116:180;37164:77;37161:1;37154:88;37261:4;37258:1;37251:15;37285:4;37282:1;37275:15;37302:180;37350:77;37347:1;37340:88;37447:4;37444:1;37437:15;37471:4;37468:1;37461:15;37488:180;37536:77;37533:1;37526:88;37633:4;37630:1;37623:15;37657:4;37654:1;37647:15;37674:102;37715:6;37766:2;37762:7;37757:2;37750:5;37746:14;37742:28;37732:38;;37722:54;;;:::o;37782:94::-;37815:8;37863:5;37859:2;37855:14;37834:35;;37824:52;;;:::o;37882:102::-;37924:8;37971:5;37968:1;37964:13;37943:34;;37933:51;;;:::o;37990:177::-;38130:29;38126:1;38118:6;38114:14;38107:53;38096:71;:::o;38173:174::-;38313:26;38309:1;38301:6;38297:14;38290:50;38279:68;:::o;38353:169::-;38493:21;38489:1;38481:6;38477:14;38470:45;38459:63;:::o;38528:229::-;38668:34;38664:1;38656:6;38652:14;38645:58;38737:12;38732:2;38724:6;38720:15;38713:37;38634:123;:::o;38763:225::-;38903:34;38899:1;38891:6;38887:14;38880:58;38972:8;38967:2;38959:6;38955:15;38948:33;38869:119;:::o;38994:176::-;39134:28;39130:1;39122:6;39118:14;39111:52;39100:70;:::o;39176:168::-;39316:20;39312:1;39304:6;39300:14;39293:44;39282:62;:::o;39350:232::-;39490:34;39486:1;39478:6;39474:14;39467:58;39559:15;39554:2;39546:6;39542:15;39535:40;39456:126;:::o;39588:180::-;39728:32;39724:1;39716:6;39712:14;39705:56;39694:74;:::o;39774:165::-;39914:17;39910:1;39902:6;39898:14;39891:41;39880:59;:::o;39945:180::-;40085:32;40081:1;40073:6;40069:14;40062:56;40051:74;:::o;40131:171::-;40271:23;40267:1;40259:6;40255:14;40248:47;40237:65;:::o;40308:176::-;40448:28;40444:1;40436:6;40432:14;40425:52;40414:70;:::o;40490:182::-;40630:34;40626:1;40618:6;40614:14;40607:58;40596:76;:::o;40678:164::-;40818:16;40814:1;40806:6;40802:14;40795:40;40784:58;:::o;40848:163::-;40988:15;40984:1;40976:6;40972:14;40965:39;40954:57;:::o;41017:167::-;41157:19;41153:1;41145:6;41141:14;41134:43;41123:61;:::o;41190:114::-;41296:8;:::o;41310:181::-;41450:33;41446:1;41438:6;41434:14;41427:57;41416:75;:::o;41497:180::-;41637:32;41633:1;41625:6;41621:14;41614:56;41603:74;:::o;41683:122::-;41756:24;41774:5;41756:24;:::i;:::-;41749:5;41746:35;41736:2;;41795:1;41792;41785:12;41736:2;41726:79;:::o;41811:116::-;41881:21;41896:5;41881:21;:::i;:::-;41874:5;41871:32;41861:2;;41917:1;41914;41907:12;41861:2;41851:76;:::o;41933:122::-;42006:24;42024:5;42006:24;:::i;:::-;41999:5;41996:35;41986:2;;42045:1;42042;42035:12;41986:2;41976:79;:::o;42061:120::-;42133:23;42150:5;42133:23;:::i;:::-;42126:5;42123:34;42113:2;;42171:1;42168;42161:12;42113:2;42103:78;:::o;42187:122::-;42260:24;42278:5;42260:24;:::i;:::-;42253:5;42250:35;42240:2;;42299:1;42296;42289:12;42240:2;42230:79;:::o

Swarm Source

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