ETH Price: $2,995.48 (-8.77%)

Token

WagmiApes (WG)
 

Overview

Max Total Supply

290 WG

Holders

151

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WG
0x8b9155af0d7f48a9f9789b9fb94abc2139a9eee5
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:
WagmiApes_Contract

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-14
*/

// File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

// File: contracts/artifacts/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;


interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}
// File: contracts/artifacts/OperatorFilterer.sol


pragma solidity ^0.8.13;


contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator() virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (!operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}
// File: contracts/artifacts/DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;


contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
// File: contracts/WagmiApes.sol

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// File: annunakis.sol

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


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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

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

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

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

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

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

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

// File: contracts/rose.sol

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



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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

// File: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

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

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

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is 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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

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

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


pragma solidity ^0.8.18;




contract WagmiApes_Contract is ERC721A, ERC2981, Ownable, ReentrancyGuard, DefaultOperatorFilterer {
    using Strings for uint256;
    mapping(address => uint256) public publicClaimed;
    mapping(address => uint256) public whitelistClaimed;

    string public baseURI="ipfs://bafybeidar4y6fl7lkcjfjlfe2z4korvhlwurbu4m2p7mmb3bqusipzbi7y/1.json";
    string public hiddenMetadataURI;
    bool public revealed;
    bool public paused = false;
    address public ROYALITY__ADDRESS;
    uint96 public ROYALITY__VALUE;
    uint256 public publicPrice = 0.025 ether;
    uint256 public whitelistPrice = 0.015 ether;
    uint256 public publicMintPerTx = 15;
    uint256 public whitelistMintPerTx = 15;
    uint256 public maxSupply = 1515;
    bool public merkleState = true;
    bool public additional = false;
    bytes32 public root;

    constructor() ERC721A("WagmiApes", "WG") {
        ROYALITY__ADDRESS = msg.sender;
        ROYALITY__VALUE = 450;
        _setDefaultRoyalty(ROYALITY__ADDRESS, ROYALITY__VALUE);
    }

    // ============ PUBLIC FUNCTIONS FOR MINTING ============
    function mint(uint256 quantity, bytes32[] calldata proofs) external payable nonReentrant {
        require(!paused, "The contract is paused!");
        require(quantity > 0 && totalSupply() + quantity <= maxSupply, "Invalid amount!");
        bool isWhiteListed = isValid(proofs);
        if(isWhiteListed) {
            require(whitelistClaimed[msg.sender] + quantity <= whitelistMintPerTx, "You can't mint this amount");
            bool didClaim = true ;
            if (whitelistClaimed[msg.sender] == 0)
                didClaim = false; 

            whitelistClaimed[msg.sender] += quantity;
            if (!didClaim)
                require(msg.value >= whitelistPrice * (quantity-1), "Insufficient Funds!");
            else 
                require(msg.value >= whitelistPrice * quantity, "Insufficient Funds!");

        } else {
            require(publicClaimed[msg.sender] + quantity <= publicMintPerTx, "You can't mint this amount");
            bool didClaim = true ;
            if (publicClaimed[msg.sender] == 0)
                didClaim = false; 
            publicClaimed[msg.sender] += quantity;
            if (!didClaim)
                require(msg.value >= publicPrice * (quantity-1), "Insufficient Funds!");
            else 
                require(msg.value >= publicPrice * quantity, "Insufficient Funds!");
        }
        _safeMint(msg.sender, quantity);
    }

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


    // ============ PUBLIC READ-ONLY FUNCTIONS ============
    function isValid(bytes32[] calldata _merkleProof) internal view returns (bool){
        
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        if (merkleState)
        {
             if (MerkleProof.verify(_merkleProof, root, leaf))
                return true;
        }
        return false;
    }
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (revealed == false) {
            return hiddenMetadataURI;
        }
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        ".json"
                    )
                )
                : "";
    }
    function supportsInterface(bytes4 interfaceId)
    public
    view
    override(ERC721A, ERC2981)
    returns (bool)
    {
        return
            ERC721A.supportsInterface(interfaceId)
            || ERC2981.supportsInterface(interfaceId);
    }
    function setRoot(bytes32 _newRoot) external onlyOwner {
        root = _newRoot;
    }
    function setRoyalties(address receiver, uint96 royaltyFraction) external onlyOwner {
        _setDefaultRoyalty(receiver, royaltyFraction);
    }
    function setWhitelistMintPerTx(uint256 _newState) external onlyOwner {
        whitelistMintPerTx = _newState;
    }
    function setPresalePrice(uint256 _newState) external onlyOwner {
       whitelistPrice = _newState;
    }
    function setCost(uint256 _newPublicCost) external onlyOwner {
        publicPrice = _newPublicCost;
    }

    function setMerkleState (bool _newState) external onlyOwner {
        merkleState = _newState;
    }

    function setAdditional (bool _newState) external onlyOwner {
        additional = _newState;
    }
 
    function setMaxPublic(uint256 _newMaxPublic) external onlyOwner {
        publicMintPerTx = _newMaxPublic;
    }

    function setMaxSuppy(uint256 _amount) external onlyOwner {
        maxSupply = _amount;
    }

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

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }
    function setRevealed(bool _state) external onlyOwner {
        revealed = _state;
    }

    function setHiddenMetadataURI(string memory _URI) external onlyOwner {
        hiddenMetadataURI = _URI;
    }

    function airDrop(uint256 quantity, address _address) external onlyOwner {
        _safeMint(_address, quantity);
    }
   

    function airDropBatch(address[] memory _addresses) external onlyOwner {
        for(uint256 i = 0 ;i < _addresses.length; i ++) {
            _safeMint(_addresses[i], 1);
        }
    }

    function withdraw() public onlyOwner {
         // Do not remove this otherwise you will not be able to withdraw the funds.
        // =============================================================================
        (bool ts, ) = payable(owner()).call{value: address(this).balance}("");
        require(ts);
        // =============================================================================
    }
     function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ROYALITY__ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALITY__VALUE","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"additional","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"airDropBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"hiddenMetadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proofs","type":"bytes32[]"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newState","type":"bool"}],"name":"setAdditional","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setHiddenMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPublic","type":"uint256"}],"name":"setMaxPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSuppy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newState","type":"bool"}],"name":"setMerkleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newState","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newState","type":"uint256"}],"name":"setWhitelistMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101006040526049608081815290620031e460a039600e9062000023908262000497565b506010805461ff00191690556658d15e1762800060125566354a6ba7a18000601355600f60148190556015556105eb6016556017805461ffff191660011790553480156200007057600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb66001604051806040016040528060098152602001685761676d694170657360b81b81525060405180604001604052806002815260200161574760f01b8152508160029081620000d6919062000497565b506003620000e5828262000497565b5050600160005550620000f8336200029b565b6001600b556daaeb6d7670e522a718067333cd4e3b15620002425780156200019057604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200017157600080fd5b505af115801562000186573d6000803e3d6000fd5b5050505062000242565b6001600160a01b03821615620001e15760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000156565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200022857600080fd5b505af11580156200023d573d6000803e3d6000fd5b505050505b5050601080546201000033810262010000600160b01b03199092169190911791829055601180546001600160601b0319166101c29081179091556200029592919091046001600160a01b031690620002ed565b62000563565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620003615760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620003b95760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000358565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200041d57607f821691505b6020821081036200043e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200049257600081815260208120601f850160051c810160208610156200046d5750805b601f850160051c820191505b818110156200048e5782815560010162000479565b5050505b505050565b81516001600160401b03811115620004b357620004b3620003f2565b620004cb81620004c4845462000408565b8462000444565b602080601f831160018114620005035760008415620004ea5750858301515b600019600386901b1c1916600185901b1785556200048e565b600085815260208120601f198616915b82811015620005345788860151825594840194600190910190840162000513565b5085821015620005535787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612c7180620005736000396000f3fe6080604052600436106102e45760003560e01c806395d89b4111610190578063c87b56dd116100dc578063e985e9c511610095578063f49b472f1161006f578063f49b472f146108d6578063fae1f6e2146108f6578063fbdb849414610916578063fc1a1c361461093657600080fd5b8063e985e9c514610880578063ebf0c717146108a0578063f2fde38b146108b657600080fd5b8063c87b56dd146107be578063d5abeb01146107de578063dab5f340146107f4578063db4bec4414610814578063e0a8085314610841578063e8ea79c01461086157600080fd5b8063aed3801511610149578063ba41b0c611610123578063ba41b0c614610760578063ba9e12f714610773578063c21b471b14610788578063c561314c146107a857600080fd5b8063aed38015146106f3578063b5b1cd7c14610713578063b88d4fde1461074057600080fd5b806395d89b41146106425780639a87a46d146106575780639ec571d51461067d578063a22cb4651461069d578063a596f11f146106bd578063a945bf80146106dd57600080fd5b80633ccfd60b1161024f5780635c975abb1161020857806370a08231116101e257806370a08231146105cf578063715018a6146105ef5780637624f6ee146106045780638da5cb5b1461062457600080fd5b80635c975abb1461057b5780636352211e1461059a5780636c0360eb146105ba57600080fd5b80633ccfd60b146104cc57806342842e0e146104e157806344a0d68a14610501578063512507c614610521578063518302271461054157806355f804b31461055b57600080fd5b806318160ddd116102a157806318160ddd146103de5780631f32975e146103fb57806322fd56081461043357806323b872dd1461044d5780632a55205a1461046d5780633549345e146104ac57600080fd5b806301ffc9a7146102e957806306fdde031461031e578063081812fc14610340578063095ea7b3146103785780630caea53b1461039a57806316c38b3c146103be575b600080fd5b3480156102f557600080fd5b5061030961030436600461244a565b61094c565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033361096c565b60405161031591906124b7565b34801561034c57600080fd5b5061036061035b3660046124ca565b6109fe565b6040516001600160a01b039091168152602001610315565b34801561038457600080fd5b506103986103933660046124ff565b610a42565b005b3480156103a657600080fd5b506103b060145481565b604051908152602001610315565b3480156103ca57600080fd5b506103986103d9366004612537565b610acf565b3480156103ea57600080fd5b5060015460005403600019016103b0565b34801561040757600080fd5b5060115461041b906001600160601b031681565b6040516001600160601b039091168152602001610315565b34801561043f57600080fd5b506017546103099060ff1681565b34801561045957600080fd5b50610398610468366004612554565b610b1c565b34801561047957600080fd5b5061048d610488366004612590565b610bd0565b604080516001600160a01b039093168352602083019190915201610315565b3480156104b857600080fd5b506103986104c73660046124ca565b610c7c565b3480156104d857600080fd5b50610398610cab565b3480156104ed57600080fd5b506103986104fc366004612554565b610d49565b34801561050d57600080fd5b5061039861051c3660046124ca565b610dfd565b34801561052d57600080fd5b5061039861053c36600461264f565b610e2c565b34801561054d57600080fd5b506010546103099060ff1681565b34801561056757600080fd5b5061039861057636600461264f565b610e66565b34801561058757600080fd5b5060105461030990610100900460ff1681565b3480156105a657600080fd5b506103606105b53660046124ca565b610e9c565b3480156105c657600080fd5b50610333610eae565b3480156105db57600080fd5b506103b06105ea366004612697565b610f3c565b3480156105fb57600080fd5b50610398610f8a565b34801561061057600080fd5b5061039861061f366004612537565b610fc0565b34801561063057600080fd5b50600a546001600160a01b0316610360565b34801561064e57600080fd5b50610333611004565b34801561066357600080fd5b50601054610360906201000090046001600160a01b031681565b34801561068957600080fd5b506103986106983660046124ca565b611013565b3480156106a957600080fd5b506103986106b83660046126b2565b611042565b3480156106c957600080fd5b506103986106d8366004612537565b6110d7565b3480156106e957600080fd5b506103b060125481565b3480156106ff57600080fd5b5061039861070e3660046126e9565b611114565b34801561071f57600080fd5b506103b061072e366004612697565b600c6020526000908152604090205481565b34801561074c57600080fd5b5061039861075b366004612715565b611148565b61039861076e366004612790565b611203565b34801561077f57600080fd5b50610333611580565b34801561079457600080fd5b506103986107a336600461280e565b61158d565b3480156107b457600080fd5b506103b060155481565b3480156107ca57600080fd5b506103336107d93660046124ca565b6115c1565b3480156107ea57600080fd5b506103b060165481565b34801561080057600080fd5b5061039861080f3660046124ca565b61172d565b34801561082057600080fd5b506103b061082f366004612697565b600d6020526000908152604090205481565b34801561084d57600080fd5b5061039861085c366004612537565b61175c565b34801561086d57600080fd5b5060175461030990610100900460ff1681565b34801561088c57600080fd5b5061030961089b366004612846565b611799565b3480156108ac57600080fd5b506103b060185481565b3480156108c257600080fd5b506103986108d1366004612697565b6117c7565b3480156108e257600080fd5b506103986108f13660046124ca565b61185f565b34801561090257600080fd5b50610398610911366004612870565b61188e565b34801561092257600080fd5b506103986109313660046124ca565b6118fa565b34801561094257600080fd5b506103b060135481565b600061095782611929565b80610966575061096682611979565b92915050565b60606002805461097b9061291c565b80601f01602080910402602001604051908101604052809291908181526020018280546109a79061291c565b80156109f45780601f106109c9576101008083540402835291602001916109f4565b820191906000526020600020905b8154815290600101906020018083116109d757829003601f168201915b5050505050905090565b6000610a098261199e565b610a26576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a4d82610e9c565b9050806001600160a01b0316836001600160a01b031603610a815760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610aa15750610a9f8133611799565b155b15610abf576040516367d9dca160e11b815260040160405180910390fd5b610aca8383836119d7565b505050565b600a546001600160a01b03163314610b025760405162461bcd60e51b8152600401610af990612956565b60405180910390fd5b601080549115156101000261ff0019909216919091179055565b6daaeb6d7670e522a718067333cd4e3b15610bc557604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af1158015610b82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba6919061298b565b610bc557604051633b79c77360e21b8152336004820152602401610af9565b610aca838383611a33565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c455750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610c64906001600160601b0316876129be565b610c6e91906129eb565b915196919550909350505050565b600a546001600160a01b03163314610ca65760405162461bcd60e51b8152600401610af990612956565b601355565b600a546001600160a01b03163314610cd55760405162461bcd60e51b8152600401610af990612956565b6000610ce9600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d33576040519150601f19603f3d011682016040523d82523d6000602084013e610d38565b606091505b5050905080610d4657600080fd5b50565b6daaeb6d7670e522a718067333cd4e3b15610df257604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af1158015610daf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd3919061298b565b610df257604051633b79c77360e21b8152336004820152602401610af9565b610aca838383611a3e565b600a546001600160a01b03163314610e275760405162461bcd60e51b8152600401610af990612956565b601255565b600a546001600160a01b03163314610e565760405162461bcd60e51b8152600401610af990612956565b600f610e628282612a4d565b5050565b600a546001600160a01b03163314610e905760405162461bcd60e51b8152600401610af990612956565b600e610e628282612a4d565b6000610ea782611a59565b5192915050565b600e8054610ebb9061291c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee79061291c565b8015610f345780601f10610f0957610100808354040283529160200191610f34565b820191906000526020600020905b815481529060010190602001808311610f1757829003601f168201915b505050505081565b60006001600160a01b038216610f65576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b600a546001600160a01b03163314610fb45760405162461bcd60e51b8152600401610af990612956565b610fbe6000611b80565b565b600a546001600160a01b03163314610fea5760405162461bcd60e51b8152600401610af990612956565b601780549115156101000261ff0019909216919091179055565b60606003805461097b9061291c565b600a546001600160a01b0316331461103d5760405162461bcd60e51b8152600401610af990612956565b601655565b336001600160a01b0383160361106b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146111015760405162461bcd60e51b8152600401610af990612956565b6017805460ff1916911515919091179055565b600a546001600160a01b0316331461113e5760405162461bcd60e51b8152600401610af990612956565b610e628183611bd2565b6daaeb6d7670e522a718067333cd4e3b156111f157604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af11580156111ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d2919061298b565b6111f157604051633b79c77360e21b8152336004820152602401610af9565b6111fd84848484611bec565b50505050565b6002600b54036112555760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610af9565b6002600b55601054610100900460ff16156112b25760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610af9565b6000831180156112db575060165460015460005485919003600019016112d89190612b0c565b11155b6113195760405162461bcd60e51b815260206004820152600f60248201526e496e76616c696420616d6f756e742160881b6044820152606401610af9565b60006113258383611c37565b9050801561144e57601554336000908152600d602052604090205461134b908690612b0c565b11156113995760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e2774206d696e74207468697320616d6f756e740000000000006044820152606401610af9565b336000908152600d6020526040812054600191036113b5575060005b336000908152600d6020526040812080548792906113d4908490612b0c565b9091555081905061141b576113ea600186612b1f565b6013546113f791906129be565b3410156114165760405162461bcd60e51b8152600401610af990612b32565b611448565b8460135461142991906129be565b3410156114485760405162461bcd60e51b8152600401610af990612b32565b5061156b565b601454336000908152600c602052604090205461146c908690612b0c565b11156114ba5760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e2774206d696e74207468697320616d6f756e740000000000006044820152606401610af9565b336000908152600c6020526040812054600191036114d6575060005b336000908152600c6020526040812080548792906114f5908490612b0c565b9091555081905061153c5761150b600186612b1f565b60125461151891906129be565b3410156115375760405162461bcd60e51b8152600401610af990612b32565b611569565b8460125461154a91906129be565b3410156115695760405162461bcd60e51b8152600401610af990612b32565b505b6115753385611bd2565b50506001600b555050565b600f8054610ebb9061291c565b600a546001600160a01b031633146115b75760405162461bcd60e51b8152600401610af990612956565b610e628282611cda565b60606115cc8261199e565b6116305760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610af9565b60105460ff1615156000036116d157600f805461164c9061291c565b80601f01602080910402602001604051908101604052809291908181526020018280546116789061291c565b80156116c55780601f1061169a576101008083540402835291602001916116c5565b820191906000526020600020905b8154815290600101906020018083116116a857829003601f168201915b50505050509050919050565b60006116db611dd7565b905060008151116116fb5760405180602001604052806000815250611726565b8061170584611de6565b604051602001611716929190612b5f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117575760405162461bcd60e51b8152600401610af990612956565b601855565b600a546001600160a01b031633146117865760405162461bcd60e51b8152600401610af990612956565b6010805460ff1916911515919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b031633146117f15760405162461bcd60e51b8152600401610af990612956565b6001600160a01b0381166118565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610af9565b610d4681611b80565b600a546001600160a01b031633146118895760405162461bcd60e51b8152600401610af990612956565b601555565b600a546001600160a01b031633146118b85760405162461bcd60e51b8152600401610af990612956565b60005b8151811015610e62576118e88282815181106118d9576118d9612b9e565b60200260200101516001611bd2565b806118f281612bb4565b9150506118bb565b600a546001600160a01b031633146119245760405162461bcd60e51b8152600401610af990612956565b601455565b60006001600160e01b031982166380ac58cd60e01b148061195a57506001600160e01b03198216635b5e139f60e01b145b8061096657506301ffc9a760e01b6001600160e01b0319831614610966565b60006001600160e01b0319821663152a902d60e11b1480610966575061096682611929565b6000816001111580156119b2575060005482105b8015610966575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610aca838383611eee565b610aca83838360405180602001604052806000815250611148565b60408051606081018252600080825260208201819052918101919091528180600111158015611a89575060005481105b15611b6757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b655780516001600160a01b031615611afc579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b60579392505050565b611afc565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e628282604051806020016040528060008152506120dc565b611bf7848484611eee565b6001600160a01b0383163b15158015611c195750611c17848484846120e9565b155b156111fd576040516368d2bf6b60e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b166020820152600090819060340160408051601f19818403018152919052805160209091012060175490915060ff1615611cd057611cc18484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060185491508490506121d4565b15611cd0576001915050610966565b5060009392505050565b6127106001600160601b0382161115611d485760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610af9565b6001600160a01b038216611d9e5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610af9565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b6060600e805461097b9061291c565b606081600003611e0d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e375780611e2181612bb4565b9150611e309050600a836129eb565b9150611e11565b6000816001600160401b03811115611e5157611e516125b2565b6040519080825280601f01601f191660200182016040528015611e7b576020820181803683370190505b5090505b8415611ee657611e90600183612b1f565b9150611e9d600a86612bcd565b611ea8906030612b0c565b60f81b818381518110611ebd57611ebd612b9e565b60200101906001600160f81b031916908160001a905350611edf600a866129eb565b9450611e7f565b949350505050565b6000611ef982611a59565b9050836001600160a01b031681600001516001600160a01b031614611f305760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611f4e5750611f4e8533611799565b80611f69575033611f5e846109fe565b6001600160a01b0316145b905080611f8957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611fb057604051633a954ecd60e21b815260040160405180910390fd5b611fbc600084876119d7565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661209057600054821461209057805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610aca83838360016121ea565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061211e903390899088908890600401612be1565b6020604051808303816000875af1925050508015612159575060408051601f3d908101601f1916820190925261215691810190612c1e565b60015b6121b7573d808015612187576040519150601f19603f3d011682016040523d82523d6000602084013e61218c565b606091505b5080516000036121af576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000826121e185846123bb565b14949350505050565b6000546001600160a01b03851661221357604051622e076360e81b815260040160405180910390fd5b836000036122345760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156122e557506001600160a01b0387163b15155b1561236d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461233660008884806001019550886120e9565b612353576040516368d2bf6b60e11b815260040160405180910390fd5b8082036122eb57826000541461236857600080fd5b6123b2565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361236e575b506000556120d5565b600081815b8451811015612400576123ec828683815181106123df576123df612b9e565b6020026020010151612408565b9150806123f881612bb4565b9150506123c0565b509392505050565b6000818310612424576000828152602084905260409020611726565b5060009182526020526040902090565b6001600160e01b031981168114610d4657600080fd5b60006020828403121561245c57600080fd5b813561172681612434565b60005b8381101561248257818101518382015260200161246a565b50506000910152565b600081518084526124a3816020860160208601612467565b601f01601f19169290920160200192915050565b602081526000611726602083018461248b565b6000602082840312156124dc57600080fd5b5035919050565b80356001600160a01b03811681146124fa57600080fd5b919050565b6000806040838503121561251257600080fd5b61251b836124e3565b946020939093013593505050565b8015158114610d4657600080fd5b60006020828403121561254957600080fd5b813561172681612529565b60008060006060848603121561256957600080fd5b612572846124e3565b9250612580602085016124e3565b9150604084013590509250925092565b600080604083850312156125a357600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156125f0576125f06125b2565b604052919050565b60006001600160401b03831115612611576126116125b2565b612624601f8401601f19166020016125c8565b905082815283838301111561263857600080fd5b828260208301376000602084830101529392505050565b60006020828403121561266157600080fd5b81356001600160401b0381111561267757600080fd5b8201601f8101841361268857600080fd5b611ee6848235602084016125f8565b6000602082840312156126a957600080fd5b611726826124e3565b600080604083850312156126c557600080fd5b6126ce836124e3565b915060208301356126de81612529565b809150509250929050565b600080604083850312156126fc57600080fd5b8235915061270c602084016124e3565b90509250929050565b6000806000806080858703121561272b57600080fd5b612734856124e3565b9350612742602086016124e3565b92506040850135915060608501356001600160401b0381111561276457600080fd5b8501601f8101871361277557600080fd5b612784878235602084016125f8565b91505092959194509250565b6000806000604084860312156127a557600080fd5b8335925060208401356001600160401b03808211156127c357600080fd5b818601915086601f8301126127d757600080fd5b8135818111156127e657600080fd5b8760208260051b85010111156127fb57600080fd5b6020830194508093505050509250925092565b6000806040838503121561282157600080fd5b61282a836124e3565b915060208301356001600160601b03811681146126de57600080fd5b6000806040838503121561285957600080fd5b612862836124e3565b915061270c602084016124e3565b6000602080838503121561288357600080fd5b82356001600160401b038082111561289a57600080fd5b818501915085601f8301126128ae57600080fd5b8135818111156128c0576128c06125b2565b8060051b91506128d18483016125c8565b81815291830184019184810190888411156128eb57600080fd5b938501935b8385101561291057612901856124e3565b825293850193908501906128f0565b98975050505050505050565b600181811c9082168061293057607f821691505b60208210810361295057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561299d57600080fd5b815161172681612529565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610966576109666129a8565b634e487b7160e01b600052601260045260246000fd5b6000826129fa576129fa6129d5565b500490565b601f821115610aca57600081815260208120601f850160051c81016020861015612a265750805b601f850160051c820191505b81811015612a4557828155600101612a32565b505050505050565b81516001600160401b03811115612a6657612a666125b2565b612a7a81612a74845461291c565b846129ff565b602080601f831160018114612aaf5760008415612a975750858301515b600019600386901b1c1916600185901b178555612a45565b600085815260208120601f198616915b82811015612ade57888601518255948401946001909101908401612abf565b5085821015612afc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115610966576109666129a8565b81810381811115610966576109666129a8565b602080825260139082015272496e73756666696369656e742046756e64732160681b604082015260600190565b60008351612b71818460208801612467565b835190830190612b85818360208801612467565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052603260045260246000fd5b600060018201612bc657612bc66129a8565b5060010190565b600082612bdc57612bdc6129d5565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c149083018461248b565b9695505050505050565b600060208284031215612c3057600080fd5b81516117268161243456fea2646970667358221220623358d1f458622e1341bc58eee4e50a2c650e4c07a233dedb77fe4b50e89c1964736f6c63430008120033697066733a2f2f62616679626569646172347936666c376c6b636a666a6c6665327a346b6f7276686c7775726275346d3270376d6d62336271757369707a626937792f312e6a736f6e

Deployed Bytecode

0x6080604052600436106102e45760003560e01c806395d89b4111610190578063c87b56dd116100dc578063e985e9c511610095578063f49b472f1161006f578063f49b472f146108d6578063fae1f6e2146108f6578063fbdb849414610916578063fc1a1c361461093657600080fd5b8063e985e9c514610880578063ebf0c717146108a0578063f2fde38b146108b657600080fd5b8063c87b56dd146107be578063d5abeb01146107de578063dab5f340146107f4578063db4bec4414610814578063e0a8085314610841578063e8ea79c01461086157600080fd5b8063aed3801511610149578063ba41b0c611610123578063ba41b0c614610760578063ba9e12f714610773578063c21b471b14610788578063c561314c146107a857600080fd5b8063aed38015146106f3578063b5b1cd7c14610713578063b88d4fde1461074057600080fd5b806395d89b41146106425780639a87a46d146106575780639ec571d51461067d578063a22cb4651461069d578063a596f11f146106bd578063a945bf80146106dd57600080fd5b80633ccfd60b1161024f5780635c975abb1161020857806370a08231116101e257806370a08231146105cf578063715018a6146105ef5780637624f6ee146106045780638da5cb5b1461062457600080fd5b80635c975abb1461057b5780636352211e1461059a5780636c0360eb146105ba57600080fd5b80633ccfd60b146104cc57806342842e0e146104e157806344a0d68a14610501578063512507c614610521578063518302271461054157806355f804b31461055b57600080fd5b806318160ddd116102a157806318160ddd146103de5780631f32975e146103fb57806322fd56081461043357806323b872dd1461044d5780632a55205a1461046d5780633549345e146104ac57600080fd5b806301ffc9a7146102e957806306fdde031461031e578063081812fc14610340578063095ea7b3146103785780630caea53b1461039a57806316c38b3c146103be575b600080fd5b3480156102f557600080fd5b5061030961030436600461244a565b61094c565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033361096c565b60405161031591906124b7565b34801561034c57600080fd5b5061036061035b3660046124ca565b6109fe565b6040516001600160a01b039091168152602001610315565b34801561038457600080fd5b506103986103933660046124ff565b610a42565b005b3480156103a657600080fd5b506103b060145481565b604051908152602001610315565b3480156103ca57600080fd5b506103986103d9366004612537565b610acf565b3480156103ea57600080fd5b5060015460005403600019016103b0565b34801561040757600080fd5b5060115461041b906001600160601b031681565b6040516001600160601b039091168152602001610315565b34801561043f57600080fd5b506017546103099060ff1681565b34801561045957600080fd5b50610398610468366004612554565b610b1c565b34801561047957600080fd5b5061048d610488366004612590565b610bd0565b604080516001600160a01b039093168352602083019190915201610315565b3480156104b857600080fd5b506103986104c73660046124ca565b610c7c565b3480156104d857600080fd5b50610398610cab565b3480156104ed57600080fd5b506103986104fc366004612554565b610d49565b34801561050d57600080fd5b5061039861051c3660046124ca565b610dfd565b34801561052d57600080fd5b5061039861053c36600461264f565b610e2c565b34801561054d57600080fd5b506010546103099060ff1681565b34801561056757600080fd5b5061039861057636600461264f565b610e66565b34801561058757600080fd5b5060105461030990610100900460ff1681565b3480156105a657600080fd5b506103606105b53660046124ca565b610e9c565b3480156105c657600080fd5b50610333610eae565b3480156105db57600080fd5b506103b06105ea366004612697565b610f3c565b3480156105fb57600080fd5b50610398610f8a565b34801561061057600080fd5b5061039861061f366004612537565b610fc0565b34801561063057600080fd5b50600a546001600160a01b0316610360565b34801561064e57600080fd5b50610333611004565b34801561066357600080fd5b50601054610360906201000090046001600160a01b031681565b34801561068957600080fd5b506103986106983660046124ca565b611013565b3480156106a957600080fd5b506103986106b83660046126b2565b611042565b3480156106c957600080fd5b506103986106d8366004612537565b6110d7565b3480156106e957600080fd5b506103b060125481565b3480156106ff57600080fd5b5061039861070e3660046126e9565b611114565b34801561071f57600080fd5b506103b061072e366004612697565b600c6020526000908152604090205481565b34801561074c57600080fd5b5061039861075b366004612715565b611148565b61039861076e366004612790565b611203565b34801561077f57600080fd5b50610333611580565b34801561079457600080fd5b506103986107a336600461280e565b61158d565b3480156107b457600080fd5b506103b060155481565b3480156107ca57600080fd5b506103336107d93660046124ca565b6115c1565b3480156107ea57600080fd5b506103b060165481565b34801561080057600080fd5b5061039861080f3660046124ca565b61172d565b34801561082057600080fd5b506103b061082f366004612697565b600d6020526000908152604090205481565b34801561084d57600080fd5b5061039861085c366004612537565b61175c565b34801561086d57600080fd5b5060175461030990610100900460ff1681565b34801561088c57600080fd5b5061030961089b366004612846565b611799565b3480156108ac57600080fd5b506103b060185481565b3480156108c257600080fd5b506103986108d1366004612697565b6117c7565b3480156108e257600080fd5b506103986108f13660046124ca565b61185f565b34801561090257600080fd5b50610398610911366004612870565b61188e565b34801561092257600080fd5b506103986109313660046124ca565b6118fa565b34801561094257600080fd5b506103b060135481565b600061095782611929565b80610966575061096682611979565b92915050565b60606002805461097b9061291c565b80601f01602080910402602001604051908101604052809291908181526020018280546109a79061291c565b80156109f45780601f106109c9576101008083540402835291602001916109f4565b820191906000526020600020905b8154815290600101906020018083116109d757829003601f168201915b5050505050905090565b6000610a098261199e565b610a26576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610a4d82610e9c565b9050806001600160a01b0316836001600160a01b031603610a815760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610aa15750610a9f8133611799565b155b15610abf576040516367d9dca160e11b815260040160405180910390fd5b610aca8383836119d7565b505050565b600a546001600160a01b03163314610b025760405162461bcd60e51b8152600401610af990612956565b60405180910390fd5b601080549115156101000261ff0019909216919091179055565b6daaeb6d7670e522a718067333cd4e3b15610bc557604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af1158015610b82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba6919061298b565b610bc557604051633b79c77360e21b8152336004820152602401610af9565b610aca838383611a33565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c455750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610c64906001600160601b0316876129be565b610c6e91906129eb565b915196919550909350505050565b600a546001600160a01b03163314610ca65760405162461bcd60e51b8152600401610af990612956565b601355565b600a546001600160a01b03163314610cd55760405162461bcd60e51b8152600401610af990612956565b6000610ce9600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d33576040519150601f19603f3d011682016040523d82523d6000602084013e610d38565b606091505b5050905080610d4657600080fd5b50565b6daaeb6d7670e522a718067333cd4e3b15610df257604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af1158015610daf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd3919061298b565b610df257604051633b79c77360e21b8152336004820152602401610af9565b610aca838383611a3e565b600a546001600160a01b03163314610e275760405162461bcd60e51b8152600401610af990612956565b601255565b600a546001600160a01b03163314610e565760405162461bcd60e51b8152600401610af990612956565b600f610e628282612a4d565b5050565b600a546001600160a01b03163314610e905760405162461bcd60e51b8152600401610af990612956565b600e610e628282612a4d565b6000610ea782611a59565b5192915050565b600e8054610ebb9061291c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee79061291c565b8015610f345780601f10610f0957610100808354040283529160200191610f34565b820191906000526020600020905b815481529060010190602001808311610f1757829003601f168201915b505050505081565b60006001600160a01b038216610f65576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b600a546001600160a01b03163314610fb45760405162461bcd60e51b8152600401610af990612956565b610fbe6000611b80565b565b600a546001600160a01b03163314610fea5760405162461bcd60e51b8152600401610af990612956565b601780549115156101000261ff0019909216919091179055565b60606003805461097b9061291c565b600a546001600160a01b0316331461103d5760405162461bcd60e51b8152600401610af990612956565b601655565b336001600160a01b0383160361106b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146111015760405162461bcd60e51b8152600401610af990612956565b6017805460ff1916911515919091179055565b600a546001600160a01b0316331461113e5760405162461bcd60e51b8152600401610af990612956565b610e628183611bd2565b6daaeb6d7670e522a718067333cd4e3b156111f157604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af11580156111ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d2919061298b565b6111f157604051633b79c77360e21b8152336004820152602401610af9565b6111fd84848484611bec565b50505050565b6002600b54036112555760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610af9565b6002600b55601054610100900460ff16156112b25760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610af9565b6000831180156112db575060165460015460005485919003600019016112d89190612b0c565b11155b6113195760405162461bcd60e51b815260206004820152600f60248201526e496e76616c696420616d6f756e742160881b6044820152606401610af9565b60006113258383611c37565b9050801561144e57601554336000908152600d602052604090205461134b908690612b0c565b11156113995760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e2774206d696e74207468697320616d6f756e740000000000006044820152606401610af9565b336000908152600d6020526040812054600191036113b5575060005b336000908152600d6020526040812080548792906113d4908490612b0c565b9091555081905061141b576113ea600186612b1f565b6013546113f791906129be565b3410156114165760405162461bcd60e51b8152600401610af990612b32565b611448565b8460135461142991906129be565b3410156114485760405162461bcd60e51b8152600401610af990612b32565b5061156b565b601454336000908152600c602052604090205461146c908690612b0c565b11156114ba5760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e2774206d696e74207468697320616d6f756e740000000000006044820152606401610af9565b336000908152600c6020526040812054600191036114d6575060005b336000908152600c6020526040812080548792906114f5908490612b0c565b9091555081905061153c5761150b600186612b1f565b60125461151891906129be565b3410156115375760405162461bcd60e51b8152600401610af990612b32565b611569565b8460125461154a91906129be565b3410156115695760405162461bcd60e51b8152600401610af990612b32565b505b6115753385611bd2565b50506001600b555050565b600f8054610ebb9061291c565b600a546001600160a01b031633146115b75760405162461bcd60e51b8152600401610af990612956565b610e628282611cda565b60606115cc8261199e565b6116305760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610af9565b60105460ff1615156000036116d157600f805461164c9061291c565b80601f01602080910402602001604051908101604052809291908181526020018280546116789061291c565b80156116c55780601f1061169a576101008083540402835291602001916116c5565b820191906000526020600020905b8154815290600101906020018083116116a857829003601f168201915b50505050509050919050565b60006116db611dd7565b905060008151116116fb5760405180602001604052806000815250611726565b8061170584611de6565b604051602001611716929190612b5f565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117575760405162461bcd60e51b8152600401610af990612956565b601855565b600a546001600160a01b031633146117865760405162461bcd60e51b8152600401610af990612956565b6010805460ff1916911515919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b031633146117f15760405162461bcd60e51b8152600401610af990612956565b6001600160a01b0381166118565760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610af9565b610d4681611b80565b600a546001600160a01b031633146118895760405162461bcd60e51b8152600401610af990612956565b601555565b600a546001600160a01b031633146118b85760405162461bcd60e51b8152600401610af990612956565b60005b8151811015610e62576118e88282815181106118d9576118d9612b9e565b60200260200101516001611bd2565b806118f281612bb4565b9150506118bb565b600a546001600160a01b031633146119245760405162461bcd60e51b8152600401610af990612956565b601455565b60006001600160e01b031982166380ac58cd60e01b148061195a57506001600160e01b03198216635b5e139f60e01b145b8061096657506301ffc9a760e01b6001600160e01b0319831614610966565b60006001600160e01b0319821663152a902d60e11b1480610966575061096682611929565b6000816001111580156119b2575060005482105b8015610966575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610aca838383611eee565b610aca83838360405180602001604052806000815250611148565b60408051606081018252600080825260208201819052918101919091528180600111158015611a89575060005481105b15611b6757600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611b655780516001600160a01b031615611afc579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611b60579392505050565b611afc565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e628282604051806020016040528060008152506120dc565b611bf7848484611eee565b6001600160a01b0383163b15158015611c195750611c17848484846120e9565b155b156111fd576040516368d2bf6b60e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b166020820152600090819060340160408051601f19818403018152919052805160209091012060175490915060ff1615611cd057611cc18484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060185491508490506121d4565b15611cd0576001915050610966565b5060009392505050565b6127106001600160601b0382161115611d485760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610af9565b6001600160a01b038216611d9e5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610af9565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b6060600e805461097b9061291c565b606081600003611e0d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e375780611e2181612bb4565b9150611e309050600a836129eb565b9150611e11565b6000816001600160401b03811115611e5157611e516125b2565b6040519080825280601f01601f191660200182016040528015611e7b576020820181803683370190505b5090505b8415611ee657611e90600183612b1f565b9150611e9d600a86612bcd565b611ea8906030612b0c565b60f81b818381518110611ebd57611ebd612b9e565b60200101906001600160f81b031916908160001a905350611edf600a866129eb565b9450611e7f565b949350505050565b6000611ef982611a59565b9050836001600160a01b031681600001516001600160a01b031614611f305760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611f4e5750611f4e8533611799565b80611f69575033611f5e846109fe565b6001600160a01b0316145b905080611f8957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611fb057604051633a954ecd60e21b815260040160405180910390fd5b611fbc600084876119d7565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661209057600054821461209057805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610aca83838360016121ea565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061211e903390899088908890600401612be1565b6020604051808303816000875af1925050508015612159575060408051601f3d908101601f1916820190925261215691810190612c1e565b60015b6121b7573d808015612187576040519150601f19603f3d011682016040523d82523d6000602084013e61218c565b606091505b5080516000036121af576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000826121e185846123bb565b14949350505050565b6000546001600160a01b03851661221357604051622e076360e81b815260040160405180910390fd5b836000036122345760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156122e557506001600160a01b0387163b15155b1561236d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461233660008884806001019550886120e9565b612353576040516368d2bf6b60e11b815260040160405180910390fd5b8082036122eb57826000541461236857600080fd5b6123b2565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361236e575b506000556120d5565b600081815b8451811015612400576123ec828683815181106123df576123df612b9e565b6020026020010151612408565b9150806123f881612bb4565b9150506123c0565b509392505050565b6000818310612424576000828152602084905260409020611726565b5060009182526020526040902090565b6001600160e01b031981168114610d4657600080fd5b60006020828403121561245c57600080fd5b813561172681612434565b60005b8381101561248257818101518382015260200161246a565b50506000910152565b600081518084526124a3816020860160208601612467565b601f01601f19169290920160200192915050565b602081526000611726602083018461248b565b6000602082840312156124dc57600080fd5b5035919050565b80356001600160a01b03811681146124fa57600080fd5b919050565b6000806040838503121561251257600080fd5b61251b836124e3565b946020939093013593505050565b8015158114610d4657600080fd5b60006020828403121561254957600080fd5b813561172681612529565b60008060006060848603121561256957600080fd5b612572846124e3565b9250612580602085016124e3565b9150604084013590509250925092565b600080604083850312156125a357600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156125f0576125f06125b2565b604052919050565b60006001600160401b03831115612611576126116125b2565b612624601f8401601f19166020016125c8565b905082815283838301111561263857600080fd5b828260208301376000602084830101529392505050565b60006020828403121561266157600080fd5b81356001600160401b0381111561267757600080fd5b8201601f8101841361268857600080fd5b611ee6848235602084016125f8565b6000602082840312156126a957600080fd5b611726826124e3565b600080604083850312156126c557600080fd5b6126ce836124e3565b915060208301356126de81612529565b809150509250929050565b600080604083850312156126fc57600080fd5b8235915061270c602084016124e3565b90509250929050565b6000806000806080858703121561272b57600080fd5b612734856124e3565b9350612742602086016124e3565b92506040850135915060608501356001600160401b0381111561276457600080fd5b8501601f8101871361277557600080fd5b612784878235602084016125f8565b91505092959194509250565b6000806000604084860312156127a557600080fd5b8335925060208401356001600160401b03808211156127c357600080fd5b818601915086601f8301126127d757600080fd5b8135818111156127e657600080fd5b8760208260051b85010111156127fb57600080fd5b6020830194508093505050509250925092565b6000806040838503121561282157600080fd5b61282a836124e3565b915060208301356001600160601b03811681146126de57600080fd5b6000806040838503121561285957600080fd5b612862836124e3565b915061270c602084016124e3565b6000602080838503121561288357600080fd5b82356001600160401b038082111561289a57600080fd5b818501915085601f8301126128ae57600080fd5b8135818111156128c0576128c06125b2565b8060051b91506128d18483016125c8565b81815291830184019184810190888411156128eb57600080fd5b938501935b8385101561291057612901856124e3565b825293850193908501906128f0565b98975050505050505050565b600181811c9082168061293057607f821691505b60208210810361295057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561299d57600080fd5b815161172681612529565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610966576109666129a8565b634e487b7160e01b600052601260045260246000fd5b6000826129fa576129fa6129d5565b500490565b601f821115610aca57600081815260208120601f850160051c81016020861015612a265750805b601f850160051c820191505b81811015612a4557828155600101612a32565b505050505050565b81516001600160401b03811115612a6657612a666125b2565b612a7a81612a74845461291c565b846129ff565b602080601f831160018114612aaf5760008415612a975750858301515b600019600386901b1c1916600185901b178555612a45565b600085815260208120601f198616915b82811015612ade57888601518255948401946001909101908401612abf565b5085821015612afc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115610966576109666129a8565b81810381811115610966576109666129a8565b602080825260139082015272496e73756666696369656e742046756e64732160681b604082015260600190565b60008351612b71818460208801612467565b835190830190612b85818360208801612467565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052603260045260246000fd5b600060018201612bc657612bc66129a8565b5060010190565b600082612bdc57612bdc6129d5565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c149083018461248b565b9695505050505050565b600060208284031215612c3057600080fd5b81516117268161243456fea2646970667358221220623358d1f458622e1341bc58eee4e50a2c650e4c07a233dedb77fe4b50e89c1964736f6c63430008120033

Deployed Bytecode Sourcemap

80460:6820:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84237:258;;;;;;;;;;-1:-1:-1;84237:258:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;84237:258:0;;;;;;;;65769:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;67272:204::-;;;;;;;;;;-1:-1:-1;67272:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;67272:204:0;1533:203:1;66835:371:0;;;;;;;;;;-1:-1:-1;66835:371:0;;;;;:::i;:::-;;:::i;:::-;;81087:35;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;81087:35:0;2178:177:1;85544:85:0;;;;;;;;;;-1:-1:-1;85544:85:0;;;;;:::i;:::-;;:::i;61905:303::-;;;;;;;;;;-1:-1:-1;61762:1:0;62159:12;61949:7;62143:13;:28;-1:-1:-1;;62143:46:0;61905:303;;80954:29;;;;;;;;;;-1:-1:-1;80954:29:0;;;;-1:-1:-1;;;;;80954:29:0;;;;;;-1:-1:-1;;;;;2891:39:1;;;2873:58;;2861:2;2846:18;80954:29:0;2729:208:1;81212:30:0;;;;;;;;;;-1:-1:-1;81212:30:0;;;;;;;;86717:157;;;;;;;;;;-1:-1:-1;86717:157:0;;;;;:::i;:::-;;:::i;22110:442::-;;;;;;;;;;-1:-1:-1;22110:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3720:32:1;;;3702:51;;3784:2;3769:18;;3762:34;;;;3675:18;22110:442:0;3528:274:1;84872:107:0;;;;;;;;;;-1:-1:-1;84872:107:0;;;;;:::i;:::-;;:::i;86297:413::-;;;;;;;;;;;;;:::i;86882:165::-;;;;;;;;;;-1:-1:-1;86882:165:0;;;;;:::i;:::-;;:::i;84985:107::-;;;;;;;;;;-1:-1:-1;84985:107:0;;;;;:::i;:::-;;:::i;85846:112::-;;;;;;;;;;-1:-1:-1;85846:112:0;;;;;:::i;:::-;;:::i;80855:20::-;;;;;;;;;;-1:-1:-1;80855:20:0;;;;;;;;85637:106;;;;;;;;;;-1:-1:-1;85637:106:0;;;;;:::i;:::-;;:::i;80882:26::-;;;;;;;;;;-1:-1:-1;80882:26:0;;;;;;;;;;;65577:125;;;;;;;;;;-1:-1:-1;65577:125:0;;;;;:::i;:::-;;:::i;80713:97::-;;;;;;;;;;;;;:::i;63025:206::-;;;;;;;;;;-1:-1:-1;63025:206:0;;;;;:::i;:::-;;:::i;41122:103::-;;;;;;;;;;;;;:::i;85210:100::-;;;;;;;;;;-1:-1:-1;85210:100:0;;;;;:::i;:::-;;:::i;40471:87::-;;;;;;;;;;-1:-1:-1;40544:6:0;;-1:-1:-1;;;;;40544:6:0;40471:87;;65938:104;;;;;;;;;;;;;:::i;80915:32::-;;;;;;;;;;-1:-1:-1;80915:32:0;;;;;;;-1:-1:-1;;;;;80915:32:0;;;85441:95;;;;;;;;;;-1:-1:-1;85441:95:0;;;;;:::i;:::-;;:::i;67548:287::-;;;;;;;;;;-1:-1:-1;67548:287:0;;;;;:::i;:::-;;:::i;85100:102::-;;;;;;;;;;-1:-1:-1;85100:102:0;;;;;:::i;:::-;;:::i;80990:40::-;;;;;;;;;;;;;;;;85966:120;;;;;;;;;;-1:-1:-1;85966:120:0;;;;;:::i;:::-;;:::i;80598:48::-;;;;;;;;;;-1:-1:-1;80598:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;87055:222;;;;;;;;;;-1:-1:-1;87055:222:0;;;;;:::i;:::-;;:::i;81572:1422::-;;;;;;:::i;:::-;;:::i;80817:31::-;;;;;;;;;;;;;:::i;84595:147::-;;;;;;;;;;-1:-1:-1;84595:147:0;;;;;:::i;:::-;;:::i;81129:38::-;;;;;;;;;;;;;;;;83513:718;;;;;;;;;;-1:-1:-1;83513:718:0;;;;;:::i;:::-;;:::i;81174:31::-;;;;;;;;;;;;;;;;84501:88;;;;;;;;;;-1:-1:-1;84501:88:0;;;;;:::i;:::-;;:::i;80653:51::-;;;;;;;;;;-1:-1:-1;80653:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;85749:89;;;;;;;;;;-1:-1:-1;85749:89:0;;;;;:::i;:::-;;:::i;81249:30::-;;;;;;;;;;-1:-1:-1;81249:30:0;;;;;;;;;;;67906:164;;;;;;;;;;-1:-1:-1;67906:164:0;;;;;:::i;:::-;;:::i;81286:19::-;;;;;;;;;;;;;;;;41380:201;;;;;;;;;;-1:-1:-1;41380:201:0;;;;;:::i;:::-;;:::i;84748:118::-;;;;;;;;;;-1:-1:-1;84748:118:0;;;;;:::i;:::-;;:::i;86099:190::-;;;;;;;;;;-1:-1:-1;86099:190:0;;;;;:::i;:::-;;:::i;85319:114::-;;;;;;;;;;-1:-1:-1;85319:114:0;;;;;:::i;:::-;;:::i;81037:43::-;;;;;;;;;;;;;;;;84237:258;84352:4;84394:38;84420:11;84394:25;:38::i;:::-;:93;;;;84449:38;84475:11;84449:25;:38::i;:::-;84374:113;84237:258;-1:-1:-1;;84237:258:0:o;65769:100::-;65823:13;65856:5;65849:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65769:100;:::o;67272:204::-;67340:7;67365:16;67373:7;67365;:16::i;:::-;67360:64;;67390:34;;-1:-1:-1;;;67390:34:0;;;;;;;;;;;67360:64;-1:-1:-1;67444:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;67444:24:0;;67272:204::o;66835:371::-;66908:13;66924:24;66940:7;66924:15;:24::i;:::-;66908:40;;66969:5;-1:-1:-1;;;;;66963:11:0;:2;-1:-1:-1;;;;;66963:11:0;;66959:48;;66983:24;;-1:-1:-1;;;66983:24:0;;;;;;;;;;;66959:48;39275:10;-1:-1:-1;;;;;67024:21:0;;;;;;:63;;-1:-1:-1;67050:37:0;67067:5;39275:10;67906:164;:::i;67050:37::-;67049:38;67024:63;67020:138;;;67111:35;;-1:-1:-1;;;67111:35:0;;;;;;;;;;;67020:138;67170:28;67179:2;67183:7;67192:5;67170:8;:28::i;:::-;66897:309;66835:371;;:::o;85544:85::-;40544:6;;-1:-1:-1;;;;;40544:6:0;39275:10;40691:23;40683:68;;;;-1:-1:-1;;;40683:68:0;;;;;;;:::i;:::-;;;;;;;;;85606:6:::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;85606:15:0;;::::1;::::0;;;::::1;::::0;;85544:85::o;86717:157::-;15781:42;16909:43;:47;16905:225;;16978:67;;-1:-1:-1;;;16978:67:0;;17027:4;16978:67;;;10135:34:1;17034:10:0;10185:18:1;;;10178:43;15781:42:0;;16978:40;;10070:18:1;;16978:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16973:146;;17073:30;;-1:-1:-1;;;17073:30:0;;17092:10;17073:30;;;1679:51:1;1652:18;;17073:30:0;1533:203:1;16973:146:0;86829:37:::1;86848:4;86854:2;86858:7;86829:18;:37::i;22110:442::-:0;22207:7;22265:27;;;:17;:27;;;;;;;;22236:56;;;;;;;;;-1:-1:-1;;;;;22236:56:0;;;;;-1:-1:-1;;;22236:56:0;;;-1:-1:-1;;;;;22236:56:0;;;;;;;;22207:7;;22305:92;;-1:-1:-1;22356:29:0;;;;;;;;;22366:19;22356:29;-1:-1:-1;;;;;22356:29:0;;;;-1:-1:-1;;;22356:29:0;;-1:-1:-1;;;;;22356:29:0;;;;;22305:92;22447:23;;;;22409:21;;22918:5;;22434:36;;-1:-1:-1;;;;;22434:36:0;:10;:36;:::i;:::-;22433:58;;;;:::i;:::-;22512:16;;;;;-1:-1:-1;22110:442:0;;-1:-1:-1;;;;22110:442:0:o;84872:107::-;40544:6;;-1:-1:-1;;;;;40544:6:0;39275:10;40691:23;40683:68;;;;-1:-1:-1;;;40683:68:0;;;;;;;:::i;:::-;84945:14:::1;:26:::0;84872:107::o;86297:413::-;40544:6;;-1:-1:-1;;;;;40544:6:0;39275:10;40691:23;40683:68;;;;-1:-1:-1;;;40683:68:0;;;;;;;:::i;:::-;86522:7:::1;86543;40544:6:::0;;-1:-1:-1;;;;;40544:6:0;;40471:87;86543:7:::1;-1:-1:-1::0;;;;;86535:21:0::1;86564;86535:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86521:69;;;86609:2;86601:11;;;::::0;::::1;;86334:376;86297:413::o:0;86882:165::-;15781:42;16909:43;:47;16905:225;;16978:67;;-1:-1:-1;;;16978:67:0;;17027:4;16978:67;;;10135:34:1;17034:10:0;10185:18:1;;;10178:43;15781:42:0;;16978:40;;10070:18:1;;16978:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16973:146;;17073:30;;-1:-1:-1;;;17073:30:0;;17092:10;17073:30;;;1679:51:1;1652:18;;17073:30:0;1533:203:1;16973:146:0;86998:41:::1;87021:4;87027:2;87031:7;86998:22;:41::i;84985:107::-:0;40544:6;;-1:-1:-1;;;;;40544:6:0;39275:10;40691:23;40683:68;;;;-1:-1:-1;;;40683:68:0;;;;;;;:::i;:::-;85056:11:::1;:28:::0;84985:107::o;85846:112::-;40544:6;;-1:-1:-1;;;;;40544:6:0;39275:10;40691:23;40683:68;;;;-1:-1:-1;;;40683:68:0;;;;;;;:::i;:::-;85926:17:::1;:24;85946:4:::0;85926:17;:24:::1;:::i;:::-;;85846:112:::0;:::o;85637:106::-;40544:6;;-1:-1:-1;;;;;40544:6:0;39275:10;40691:23;40683:68;;;;-1:-1:-1;;;40683:68:0;;;;;;;:::i;:::-;85714:7:::1;:21;85724:11:::0;85714:7;:21:::1;:::i;65577:125::-:0;65641:7;65668:21;65681:7;65668:12;:21::i;:::-;:26;;65577:125;-1:-1:-1;;65577:125:0:o;80713:97::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63025:206::-;63089:7;-1:-1:-1;;;;;63113:19:0;;63109:60;;63141:28;;-1:-1:-1;;;63141:28:0;;;;;;;;;;;63109:60;-1:-1:-1;;;;;;63195:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;63195:27:0;;63025:206::o;41122:103::-;40544:6;;-1:-1:-1;;;;;40544:6:0;39275:10;40691:23;40683:68;;;;-1:-1:-1;;;40683:68:0;;;;;;;:::i;:::-;41187:30:::1;41214:1;41187:18;:30::i;:::-;41122:103::o:0;85210:100::-;40544:6;;-1:-1:-1;;;;;40544:6:0;39275:10;40691:23;40683:68;;;;-1:-1:-1;;;40683:68:0;;;;;;;:::i;:::-;85280:10:::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;85280:22:0;;::::1;::::0;;;::::1;::::0;;85210:100::o;65938:104::-;65994:13;66027:7;66020:14;;;;;:::i;85441:95::-;40544:6;;-1:-1:-1;;;;;40544:6:0;39275:10;40691:23;40683:68;;;;-1:-1:-1;;;40683:68:0;;;;;;;:::i;:::-;85509:9:::1;:19:::0;85441:95::o;67548:287::-;39275:10;-1:-1:-1;;;;;67647:24:0;;;67643:54;;67680:17;;-1:-1:-1;;;67680:17:0;;;;;;;;;;;67643:54;39275:10;67710:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;67710:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;67710:53:0;;;;;;;;;;67779:48;;540:41:1;;;67710:42:0;;39275:10;67779:48;;513:18:1;67779:48:0;;;;;;;67548:287;;:::o;85100:102::-;40544:6;;-1:-1:-1;;;;;40544:6:0;39275:10;40691:23;40683:68;;;;-1:-1:-1;;;40683:68:0;;;;;;;:::i;:::-;85171:11:::1;:23:::0;;-1:-1:-1;;85171:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;85100:102::o;85966:120::-;40544:6;;-1:-1:-1;;;;;40544:6:0;39275:10;40691:23;40683:68;;;;-1:-1:-1;;;40683:68:0;;;;;;;:::i;:::-;86049:29:::1;86059:8;86069;86049:9;:29::i;87055:222::-:0;15781:42;16909:43;:47;16905:225;;16978:67;;-1:-1:-1;;;16978:67:0;;17027:4;16978:67;;;10135:34:1;17034:10:0;10185:18:1;;;10178:43;15781:42:0;;16978:40;;10070:18:1;;16978:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16973:146;;17073:30;;-1:-1:-1;;;17073:30:0;;17092:10;17073:30;;;1679:51:1;1652:18;;17073:30:0;1533:203:1;16973:146:0;87222:47:::1;87245:4;87251:2;87255:7;87264:4;87222:22;:47::i;:::-;87055:222:::0;;;;:::o;81572:1422::-;35284:1;35882:7;;:19;35874:63;;;;-1:-1:-1;;;35874:63:0;;13660:2:1;35874:63:0;;;13642:21:1;13699:2;13679:18;;;13672:30;13738:33;13718:18;;;13711:61;13789:18;;35874:63:0;13458:355:1;35874:63:0;35284:1;36015:7;:18;81681:6:::1;::::0;::::1;::::0;::::1;;;81680:7;81672:43;;;::::0;-1:-1:-1;;;81672:43:0;;14020:2:1;81672:43:0::1;::::0;::::1;14002:21:1::0;14059:2;14039:18;;;14032:30;14098:25;14078:18;;;14071:53;14141:18;;81672:43:0::1;13818:347:1::0;81672:43:0::1;81745:1;81734:8;:12;:53;;;;-1:-1:-1::0;81778:9:0::1;::::0;61762:1;62159:12;61949:7;62143:13;81766:8;;62143:28;;-1:-1:-1;;62143:46:0;81750:24:::1;;;;:::i;:::-;:37;;81734:53;81726:81;;;::::0;-1:-1:-1;;;81726:81:0;;14502:2:1;81726:81:0::1;::::0;::::1;14484:21:1::0;14541:2;14521:18;;;14514:30;-1:-1:-1;;;14560:18:1;;;14553:45;14615:18;;81726:81:0::1;14300:339:1::0;81726:81:0::1;81818:18;81839:15;81847:6;;81839:7;:15::i;:::-;81818:36;;81868:13;81865:1080;;;81949:18;::::0;81923:10:::1;81906:28;::::0;;;:16:::1;:28;::::0;;;;;:39:::1;::::0;81937:8;;81906:39:::1;:::i;:::-;:61;;81898:100;;;::::0;-1:-1:-1;;;81898:100:0;;14846:2:1;81898:100:0::1;::::0;::::1;14828:21:1::0;14885:2;14865:18;;;14858:30;14924:28;14904:18;;;14897:56;14970:18;;81898:100:0::1;14644:350:1::0;81898:100:0::1;82070:10;82013:13;82053:28:::0;;;:16:::1;:28;::::0;;;;;82029:4:::1;::::0;82053:33;82049:72:::1;;-1:-1:-1::0;82116:5:0::1;82049:72;82156:10;82139:28;::::0;;;:16:::1;:28;::::0;;;;:40;;82171:8;;82139:28;:40:::1;::::0;82171:8;;82139:40:::1;:::i;:::-;::::0;;;-1:-1:-1;82199:8:0;;-1:-1:-1;82194:214:0::1;;82265:10;82274:1;82265:8:::0;:10:::1;:::i;:::-;82247:14;;:29;;;;:::i;:::-;82234:9;:42;;82226:74;;;;-1:-1:-1::0;;;82226:74:0::1;;;;;;;:::i;:::-;82194:214;;;82376:8;82359:14;;:25;;;;:::i;:::-;82346:9;:38;;82338:70;;;;-1:-1:-1::0;;;82338:70:0::1;;;;;;;:::i;:::-;81883:539;81865:1080;;;82491:15;::::0;82465:10:::1;82451:25;::::0;;;:13:::1;:25;::::0;;;;;:36:::1;::::0;82479:8;;82451:36:::1;:::i;:::-;:55;;82443:94;;;::::0;-1:-1:-1;;;82443:94:0;;14846:2:1;82443:94:0::1;::::0;::::1;14828:21:1::0;14885:2;14865:18;;;14858:30;14924:28;14904:18;;;14897:56;14970:18;;82443:94:0::1;14644:350:1::0;82443:94:0::1;82606:10;82552:13;82592:25:::0;;;:13:::1;:25;::::0;;;;;82568:4:::1;::::0;82592:30;82588:69:::1;;-1:-1:-1::0;82652:5:0::1;82588:69;82687:10;82673:25;::::0;;;:13:::1;:25;::::0;;;;:37;;82702:8;;82673:25;:37:::1;::::0;82702:8;;82673:37:::1;:::i;:::-;::::0;;;-1:-1:-1;82730:8:0;;-1:-1:-1;82725:208:0::1;;82793:10;82802:1;82793:8:::0;:10:::1;:::i;:::-;82778:11;;:26;;;;:::i;:::-;82765:9;:39;;82757:71;;;;-1:-1:-1::0;;;82757:71:0::1;;;;;;;:::i;:::-;82725:208;;;82901:8;82887:11;;:22;;;;:::i;:::-;82874:9;:35;;82866:67;;;;-1:-1:-1::0;;;82866:67:0::1;;;;;;;:::i;:::-;82428:517;81865:1080;82955:31;82965:10;82977:8;82955:9;:31::i;:::-;-1:-1:-1::0;;35240:1:0;36194:7;:22;-1:-1:-1;;81572:1422:0:o;80817:31::-;;;;;;;:::i;84595:147::-;40544:6;;-1:-1:-1;;;;;40544:6:0;39275:10;40691:23;40683:68;;;;-1:-1:-1;;;40683:68:0;;;;;;;:::i;:::-;84689:45:::1;84708:8;84718:15;84689:18;:45::i;83513:718::-:0;83631:13;83684:16;83692:7;83684;:16::i;:::-;83662:113;;;;-1:-1:-1;;;83662:113:0;;15682:2:1;83662:113:0;;;15664:21:1;15721:2;15701:18;;;15694:30;15760:34;15740:18;;;15733:62;-1:-1:-1;;;15811:18:1;;;15804:45;15866:19;;83662:113:0;15480:411:1;83662:113:0;83790:8;;;;:17;;:8;:17;83786:74;;83831:17;83824:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83513:718;;;:::o;83786:74::-;83870:28;83901:10;:8;:10::i;:::-;83870:41;;83973:1;83948:14;83942:28;:32;:281;;;;;;;;;;;;;;;;;84066:14;84107:18;:7;:16;:18::i;:::-;84023:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;83942:281;83922:301;83513:718;-1:-1:-1;;;83513:718:0:o;84501:88::-;40544:6;;-1:-1:-1;;;;;40544:6:0;39275:10;40691:23;40683:68;;;;-1:-1:-1;;;40683:68:0;;;;;;;:::i;:::-;84566:4:::1;:15:::0;84501:88::o;85749:89::-;40544:6;;-1:-1:-1;;;;;40544:6:0;39275:10;40691:23;40683:68;;;;-1:-1:-1;;;40683:68:0;;;;;;;:::i;:::-;85813:8:::1;:17:::0;;-1:-1:-1;;85813:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;85749:89::o;67906:164::-;-1:-1:-1;;;;;68027:25:0;;;68003:4;68027:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;67906:164::o;41380:201::-;40544:6;;-1:-1:-1;;;;;40544:6:0;39275:10;40691:23;40683:68;;;;-1:-1:-1;;;40683:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41469:22:0;::::1;41461:73;;;::::0;-1:-1:-1;;;41461:73:0;;16766:2:1;41461:73:0::1;::::0;::::1;16748:21:1::0;16805:2;16785:18;;;16778:30;16844:34;16824:18;;;16817:62;-1:-1:-1;;;16895:18:1;;;16888:36;16941:19;;41461:73:0::1;16564:402:1::0;41461:73:0::1;41545:28;41564:8;41545:18;:28::i;84748:118::-:0;40544:6;;-1:-1:-1;;;;;40544:6:0;39275:10;40691:23;40683:68;;;;-1:-1:-1;;;40683:68:0;;;;;;;:::i;:::-;84828:18:::1;:30:::0;84748:118::o;86099:190::-;40544:6;;-1:-1:-1;;;;;40544:6:0;39275:10;40691:23;40683:68;;;;-1:-1:-1;;;40683:68:0;;;;;;;:::i;:::-;86184:9:::1;86180:102;86203:10;:17;86199:1;:21;86180:102;;;86243:27;86253:10;86264:1;86253:13;;;;;;;;:::i;:::-;;;;;;;86268:1;86243:9;:27::i;:::-;86222:4:::0;::::1;::::0;::::1;:::i;:::-;;;;86180:102;;85319:114:::0;40544:6;;-1:-1:-1;;;;;40544:6:0;39275:10;40691:23;40683:68;;;;-1:-1:-1;;;40683:68:0;;;;;;;:::i;:::-;85394:15:::1;:31:::0;85319:114::o;62656:305::-;62758:4;-1:-1:-1;;;;;;62795:40:0;;-1:-1:-1;;;62795:40:0;;:105;;-1:-1:-1;;;;;;;62852:48:0;;-1:-1:-1;;;62852:48:0;62795:105;:158;;;-1:-1:-1;;;;;;;;;;19501:40:0;;;62917:36;19392:157;21840:215;21942:4;-1:-1:-1;;;;;;21966:41:0;;-1:-1:-1;;;21966:41:0;;:81;;;22011:36;22035:11;22011:23;:36::i;69258:174::-;69315:4;69358:7;61762:1;69339:26;;:53;;;;;69379:13;;69369:7;:23;69339:53;:85;;;;-1:-1:-1;;69397:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;69397:27:0;;;;69396:28;;69258:174::o;77415:196::-;77530:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;77530:29:0;-1:-1:-1;;;;;77530:29:0;;;;;;;;;77575:28;;77530:24;;77575:28;;;;;;;77415:196;;;:::o;68137:170::-;68271:28;68281:4;68287:2;68291:7;68271:9;:28::i;68378:185::-;68516:39;68533:4;68539:2;68543:7;68516:39;;;;;;;;;;;;:16;:39::i;64406:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;64517:7:0;;61762:1;64566:23;;:47;;;;;64600:13;;64593:4;:20;64566:47;64562:886;;;64634:31;64668:17;;;:11;:17;;;;;;;;;64634:51;;;;;;;;;-1:-1:-1;;;;;64634:51:0;;;;-1:-1:-1;;;64634:51:0;;-1:-1:-1;;;;;64634:51:0;;;;;;;;-1:-1:-1;;;64634:51:0;;;;;;;;;;;;;;64704:729;;64754:14;;-1:-1:-1;;;;;64754:28:0;;64750:101;;64818:9;64406:1109;-1:-1:-1;;;64406:1109:0:o;64750:101::-;-1:-1:-1;;;65193:6:0;65238:17;;;;:11;:17;;;;;;;;;65226:29;;;;;;;;;-1:-1:-1;;;;;65226:29:0;;;;;-1:-1:-1;;;65226:29:0;;-1:-1:-1;;;;;65226:29:0;;;;;;;;-1:-1:-1;;;65226:29:0;;;;;;;;;;;;;65286:28;65282:109;;65354:9;64406:1109;-1:-1:-1;;;64406:1109:0:o;65282:109::-;65153:261;;;64615:833;64562:886;65476:31;;-1:-1:-1;;;65476:31:0;;;;;;;;;;;41741:191;41834:6;;;-1:-1:-1;;;;;41851:17:0;;;-1:-1:-1;;;;;;41851:17:0;;;;;;;41884:40;;41834:6;;;41851:17;41834:6;;41884:40;;41815:16;;41884:40;41804:128;41741:191;:::o;69440:104::-;69509:27;69519:2;69523:8;69509:27;;;;;;;;;;;;:9;:27::i;68634:369::-;68801:28;68811:4;68817:2;68821:7;68801:9;:28::i;:::-;-1:-1:-1;;;;;68844:13:0;;43467:19;:23;;68844:76;;;;;68864:56;68895:4;68901:2;68905:7;68914:5;68864:30;:56::i;:::-;68863:57;68844:76;68840:156;;;68944:40;;-1:-1:-1;;;68944:40:0;;;;;;;;;;;83181:326;83305:28;;-1:-1:-1;;83322:10:0;17392:2:1;17388:15;17384:53;83305:28:0;;;17372:66:1;83254:4:0;;;;17454:12:1;;83305:28:0;;;-1:-1:-1;;83305:28:0;;;;;;;;;83295:39;;83305:28;83295:39;;;;83349:11;;83295:39;;-1:-1:-1;83349:11:0;;83345:132;;;83391:44;83410:12;;83391:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;83424:4:0;;;-1:-1:-1;83430:4:0;;-1:-1:-1;83391:18:0;:44::i;:::-;83387:78;;;83461:4;83454:11;;;;;83387:78;-1:-1:-1;83494:5:0;;83181:326;-1:-1:-1;;;83181:326:0:o;23202:332::-;22918:5;-1:-1:-1;;;;;23305:33:0;;;;23297:88;;;;-1:-1:-1;;;23297:88:0;;17679:2:1;23297:88:0;;;17661:21:1;17718:2;17698:18;;;17691:30;17757:34;17737:18;;;17730:62;-1:-1:-1;;;17808:18:1;;;17801:40;17858:19;;23297:88:0;17477:406:1;23297:88:0;-1:-1:-1;;;;;23404:22:0;;23396:60;;;;-1:-1:-1;;;23396:60:0;;18090:2:1;23396:60:0;;;18072:21:1;18129:2;18109:18;;;18102:30;18168:27;18148:18;;;18141:55;18213:18;;23396:60:0;17888:349:1;23396:60:0;23491:35;;;;;;;;;-1:-1:-1;;;;;23491:35:0;;;;;;-1:-1:-1;;;;;23491:35:0;;;;;;;;;;-1:-1:-1;;;23469:57:0;;;;:19;:57;23202:332::o;83002:108::-;83062:13;83095:7;83088:14;;;;;:::i;36757:723::-;36813:13;37034:5;37043:1;37034:10;37030:53;;-1:-1:-1;;37061:10:0;;;;;;;;;;;;-1:-1:-1;;;37061:10:0;;;;;36757:723::o;37030:53::-;37108:5;37093:12;37149:78;37156:9;;37149:78;;37182:8;;;;:::i;:::-;;-1:-1:-1;37205:10:0;;-1:-1:-1;37213:2:0;37205:10;;:::i;:::-;;;37149:78;;;37237:19;37269:6;-1:-1:-1;;;;;37259:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37259:17:0;;37237:39;;37287:154;37294:10;;37287:154;;37321:11;37331:1;37321:11;;:::i;:::-;;-1:-1:-1;37390:10:0;37398:2;37390:5;:10;:::i;:::-;37377:24;;:2;:24;:::i;:::-;37364:39;;37347:6;37354;37347:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;37347:56:0;;;;;;;;-1:-1:-1;37418:11:0;37427:2;37418:11;;:::i;:::-;;;37287:154;;;37465:6;36757:723;-1:-1:-1;;;;36757:723:0:o;72358:2130::-;72473:35;72511:21;72524:7;72511:12;:21::i;:::-;72473:59;;72571:4;-1:-1:-1;;;;;72549:26:0;:13;:18;;;-1:-1:-1;;;;;72549:26:0;;72545:67;;72584:28;;-1:-1:-1;;;72584:28:0;;;;;;;;;;;72545:67;72625:22;39275:10;-1:-1:-1;;;;;72651:20:0;;;;:73;;-1:-1:-1;72688:36:0;72705:4;39275:10;67906:164;:::i;72688:36::-;72651:126;;;-1:-1:-1;39275:10:0;72741:20;72753:7;72741:11;:20::i;:::-;-1:-1:-1;;;;;72741:36:0;;72651:126;72625:153;;72796:17;72791:66;;72822:35;;-1:-1:-1;;;72822:35:0;;;;;;;;;;;72791:66;-1:-1:-1;;;;;72872:16:0;;72868:52;;72897:23;;-1:-1:-1;;;72897:23:0;;;;;;;;;;;72868:52;73041:35;73058:1;73062:7;73071:4;73041:8;:35::i;:::-;-1:-1:-1;;;;;73372:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;73372:31:0;;;-1:-1:-1;;;;;73372:31:0;;;-1:-1:-1;;73372:31:0;;;;;;;73418:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;73418:29:0;;;;;;;;;;;73498:20;;;:11;:20;;;;;;73533:18;;-1:-1:-1;;;;;;73566:49:0;;;;-1:-1:-1;;;73599:15:0;73566:49;;;;;;;;;;73889:11;;73949:24;;;;;73992:13;;73498:20;;73949:24;;73992:13;73988:384;;74202:13;;74187:11;:28;74183:174;;74240:20;;74309:28;;;;-1:-1:-1;;;;;74283:54:0;-1:-1:-1;;;74283:54:0;-1:-1:-1;;;;;;74283:54:0;;;-1:-1:-1;;;;;74240:20:0;;74283:54;;;;74183:174;73347:1036;;;74419:7;74415:2;-1:-1:-1;;;;;74400:27:0;74409:4;-1:-1:-1;;;;;74400:27:0;;;;;;;;;;;74438:42;72462:2026;;72358:2130;;;:::o;69907:163::-;70030:32;70036:2;70040:8;70050:5;70057:4;70030:5;:32::i;78103:667::-;78287:72;;-1:-1:-1;;;78287:72:0;;78266:4;;-1:-1:-1;;;;;78287:36:0;;;;;:72;;39275:10;;78338:4;;78344:7;;78353:5;;78287:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;78287:72:0;;;;;;;;-1:-1:-1;;78287:72:0;;;;;;;;;;;;:::i;:::-;;;78283:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78521:6;:13;78538:1;78521:18;78517:235;;78567:40;;-1:-1:-1;;;78567:40:0;;;;;;;;;;;78517:235;78710:6;78704:13;78695:6;78691:2;78687:15;78680:38;78283:480;-1:-1:-1;;;;;;78406:55:0;-1:-1:-1;;;78406:55:0;;-1:-1:-1;78103:667:0;;;;;;:::o;25925:190::-;26050:4;26103;26074:25;26087:5;26094:4;26074:12;:25::i;:::-;:33;;25925:190;-1:-1:-1;;;;25925:190:0:o;70329:1775::-;70468:20;70491:13;-1:-1:-1;;;;;70519:16:0;;70515:48;;70544:19;;-1:-1:-1;;;70544:19:0;;;;;;;;;;;70515:48;70578:8;70590:1;70578:13;70574:44;;70600:18;;-1:-1:-1;;;70600:18:0;;;;;;;;;;;70574:44;-1:-1:-1;;;;;70969:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;71028:49:0;;-1:-1:-1;;;;;70969:44:0;;;;;;;71028:49;;;;-1:-1:-1;;70969:44:0;;;;;;71028:49;;;;;;;;;;;;;;;;71094:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;71144:66:0;;;;-1:-1:-1;;;71194:15:0;71144:66;;;;;;;;;;71094:25;71291:23;;;71335:4;:23;;;;-1:-1:-1;;;;;;71343:13:0;;43467:19;:23;;71343:15;71331:641;;;71379:314;71410:38;;71435:12;;-1:-1:-1;;;;;71410:38:0;;;71427:1;;71410:38;;71427:1;;71410:38;71476:69;71515:1;71519:2;71523:14;;;;;;71539:5;71476:30;:69::i;:::-;71471:174;;71581:40;;-1:-1:-1;;;71581:40:0;;;;;;;;;;;71471:174;71688:3;71672:12;:19;71379:314;;71774:12;71757:13;;:29;71753:43;;71788:8;;;71753:43;71331:641;;;71837:120;71868:40;;71893:14;;;;;-1:-1:-1;;;;;71868:40:0;;;71885:1;;71868:40;;71885:1;;71868:40;71952:3;71936:12;:19;71837:120;;71331:641;-1:-1:-1;71986:13:0;:28;72036:60;87055:222;26792:296;26875:7;26918:4;26875:7;26933:118;26957:5;:12;26953:1;:16;26933:118;;;27006:33;27016:12;27030:5;27036:1;27030:8;;;;;;;;:::i;:::-;;;;;;;27006:9;:33::i;:::-;26991:48;-1:-1:-1;26971:3:0;;;;:::i;:::-;;;;26933:118;;;-1:-1:-1;27068:12:0;26792:296;-1:-1:-1;;;26792:296:0:o;32999:149::-;33062:7;33093:1;33089;:5;:51;;33224:13;33318:15;;;33354:4;33347:15;;;33401:4;33385:21;;33089:51;;;-1:-1:-1;33224:13:0;33318:15;;;33354:4;33347:15;33401:4;33385:21;;;32999:149::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:118::-;2446:5;2439:13;2432:21;2425:5;2422:32;2412:60;;2468:1;2465;2458:12;2483:241;2539:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:52;;;2608:1;2605;2598:12;2560:52;2647:9;2634:23;2666:28;2688:5;2666:28;:::i;2942:328::-;3019:6;3027;3035;3088:2;3076:9;3067:7;3063:23;3059:32;3056:52;;;3104:1;3101;3094:12;3056:52;3127:29;3146:9;3127:29;:::i;:::-;3117:39;;3175:38;3209:2;3198:9;3194:18;3175:38;:::i;:::-;3165:48;;3260:2;3249:9;3245:18;3232:32;3222:42;;2942:328;;;;;:::o;3275:248::-;3343:6;3351;3404:2;3392:9;3383:7;3379:23;3375:32;3372:52;;;3420:1;3417;3410:12;3372:52;-1:-1:-1;;3443:23:1;;;3513:2;3498:18;;;3485:32;;-1:-1:-1;3275:248:1:o;3807:127::-;3868:10;3863:3;3859:20;3856:1;3849:31;3899:4;3896:1;3889:15;3923:4;3920:1;3913:15;3939:275;4010:2;4004:9;4075:2;4056:13;;-1:-1:-1;;4052:27:1;4040:40;;-1:-1:-1;;;;;4095:34:1;;4131:22;;;4092:62;4089:88;;;4157:18;;:::i;:::-;4193:2;4186:22;3939:275;;-1:-1:-1;3939:275:1:o;4219:407::-;4284:5;-1:-1:-1;;;;;4310:6:1;4307:30;4304:56;;;4340:18;;:::i;:::-;4378:57;4423:2;4402:15;;-1:-1:-1;;4398:29:1;4429:4;4394:40;4378:57;:::i;:::-;4369:66;;4458:6;4451:5;4444:21;4498:3;4489:6;4484:3;4480:16;4477:25;4474:45;;;4515:1;4512;4505:12;4474:45;4564:6;4559:3;4552:4;4545:5;4541:16;4528:43;4618:1;4611:4;4602:6;4595:5;4591:18;4587:29;4580:40;4219:407;;;;;:::o;4631:451::-;4700:6;4753:2;4741:9;4732:7;4728:23;4724:32;4721:52;;;4769:1;4766;4759:12;4721:52;4809:9;4796:23;-1:-1:-1;;;;;4834:6:1;4831:30;4828:50;;;4874:1;4871;4864:12;4828:50;4897:22;;4950:4;4942:13;;4938:27;-1:-1:-1;4928:55:1;;4979:1;4976;4969:12;4928:55;5002:74;5068:7;5063:2;5050:16;5045:2;5041;5037:11;5002:74;:::i;5087:186::-;5146:6;5199:2;5187:9;5178:7;5174:23;5170:32;5167:52;;;5215:1;5212;5205:12;5167:52;5238:29;5257:9;5238:29;:::i;5278:315::-;5343:6;5351;5404:2;5392:9;5383:7;5379:23;5375:32;5372:52;;;5420:1;5417;5410:12;5372:52;5443:29;5462:9;5443:29;:::i;:::-;5433:39;;5522:2;5511:9;5507:18;5494:32;5535:28;5557:5;5535:28;:::i;:::-;5582:5;5572:15;;;5278:315;;;;;:::o;5598:254::-;5666:6;5674;5727:2;5715:9;5706:7;5702:23;5698:32;5695:52;;;5743:1;5740;5733:12;5695:52;5779:9;5766:23;5756:33;;5808:38;5842:2;5831:9;5827:18;5808:38;:::i;:::-;5798:48;;5598:254;;;;;:::o;5857:667::-;5952:6;5960;5968;5976;6029:3;6017:9;6008:7;6004:23;6000:33;5997:53;;;6046:1;6043;6036:12;5997:53;6069:29;6088:9;6069:29;:::i;:::-;6059:39;;6117:38;6151:2;6140:9;6136:18;6117:38;:::i;:::-;6107:48;;6202:2;6191:9;6187:18;6174:32;6164:42;;6257:2;6246:9;6242:18;6229:32;-1:-1:-1;;;;;6276:6:1;6273:30;6270:50;;;6316:1;6313;6306:12;6270:50;6339:22;;6392:4;6384:13;;6380:27;-1:-1:-1;6370:55:1;;6421:1;6418;6411:12;6370:55;6444:74;6510:7;6505:2;6492:16;6487:2;6483;6479:11;6444:74;:::i;:::-;6434:84;;;5857:667;;;;;;;:::o;6529:683::-;6624:6;6632;6640;6693:2;6681:9;6672:7;6668:23;6664:32;6661:52;;;6709:1;6706;6699:12;6661:52;6745:9;6732:23;6722:33;;6806:2;6795:9;6791:18;6778:32;-1:-1:-1;;;;;6870:2:1;6862:6;6859:14;6856:34;;;6886:1;6883;6876:12;6856:34;6924:6;6913:9;6909:22;6899:32;;6969:7;6962:4;6958:2;6954:13;6950:27;6940:55;;6991:1;6988;6981:12;6940:55;7031:2;7018:16;7057:2;7049:6;7046:14;7043:34;;;7073:1;7070;7063:12;7043:34;7126:7;7121:2;7111:6;7108:1;7104:14;7100:2;7096:23;7092:32;7089:45;7086:65;;;7147:1;7144;7137:12;7086:65;7178:2;7174;7170:11;7160:21;;7200:6;7190:16;;;;;6529:683;;;;;:::o;7217:366::-;7284:6;7292;7345:2;7333:9;7324:7;7320:23;7316:32;7313:52;;;7361:1;7358;7351:12;7313:52;7384:29;7403:9;7384:29;:::i;:::-;7374:39;;7463:2;7452:9;7448:18;7435:32;-1:-1:-1;;;;;7500:5:1;7496:38;7489:5;7486:49;7476:77;;7549:1;7546;7539:12;7773:260;7841:6;7849;7902:2;7890:9;7881:7;7877:23;7873:32;7870:52;;;7918:1;7915;7908:12;7870:52;7941:29;7960:9;7941:29;:::i;:::-;7931:39;;7989:38;8023:2;8012:9;8008:18;7989:38;:::i;8220:952::-;8304:6;8335:2;8378;8366:9;8357:7;8353:23;8349:32;8346:52;;;8394:1;8391;8384:12;8346:52;8434:9;8421:23;-1:-1:-1;;;;;8504:2:1;8496:6;8493:14;8490:34;;;8520:1;8517;8510:12;8490:34;8558:6;8547:9;8543:22;8533:32;;8603:7;8596:4;8592:2;8588:13;8584:27;8574:55;;8625:1;8622;8615:12;8574:55;8661:2;8648:16;8683:2;8679;8676:10;8673:36;;;8689:18;;:::i;:::-;8735:2;8732:1;8728:10;8718:20;;8758:28;8782:2;8778;8774:11;8758:28;:::i;:::-;8820:15;;;8890:11;;;8886:20;;;8851:12;;;;8918:19;;;8915:39;;;8950:1;8947;8940:12;8915:39;8974:11;;;;8994:148;9010:6;9005:3;9002:15;8994:148;;;9076:23;9095:3;9076:23;:::i;:::-;9064:36;;9027:12;;;;9120;;;;8994:148;;;9161:5;8220:952;-1:-1:-1;;;;;;;;8220:952:1:o;9177:380::-;9256:1;9252:12;;;;9299;;;9320:61;;9374:4;9366:6;9362:17;9352:27;;9320:61;9427:2;9419:6;9416:14;9396:18;9393:38;9390:161;;9473:10;9468:3;9464:20;9461:1;9454:31;9508:4;9505:1;9498:15;9536:4;9533:1;9526:15;9390:161;;9177:380;;;:::o;9562:356::-;9764:2;9746:21;;;9783:18;;;9776:30;9842:34;9837:2;9822:18;;9815:62;9909:2;9894:18;;9562:356::o;10232:245::-;10299:6;10352:2;10340:9;10331:7;10327:23;10323:32;10320:52;;;10368:1;10365;10358:12;10320:52;10400:9;10394:16;10419:28;10441:5;10419:28;:::i;10482:127::-;10543:10;10538:3;10534:20;10531:1;10524:31;10574:4;10571:1;10564:15;10598:4;10595:1;10588:15;10614:168;10687:9;;;10718;;10735:15;;;10729:22;;10715:37;10705:71;;10756:18;;:::i;10787:127::-;10848:10;10843:3;10839:20;10836:1;10829:31;10879:4;10876:1;10869:15;10903:4;10900:1;10893:15;10919:120;10959:1;10985;10975:35;;10990:18;;:::i;:::-;-1:-1:-1;11024:9:1;;10919:120::o;11380:545::-;11482:2;11477:3;11474:11;11471:448;;;11518:1;11543:5;11539:2;11532:17;11588:4;11584:2;11574:19;11658:2;11646:10;11642:19;11639:1;11635:27;11629:4;11625:38;11694:4;11682:10;11679:20;11676:47;;;-1:-1:-1;11717:4:1;11676:47;11772:2;11767:3;11763:12;11760:1;11756:20;11750:4;11746:31;11736:41;;11827:82;11845:2;11838:5;11835:13;11827:82;;;11890:17;;;11871:1;11860:13;11827:82;;;11831:3;;;11380:545;;;:::o;12101:1352::-;12227:3;12221:10;-1:-1:-1;;;;;12246:6:1;12243:30;12240:56;;;12276:18;;:::i;:::-;12305:97;12395:6;12355:38;12387:4;12381:11;12355:38;:::i;:::-;12349:4;12305:97;:::i;:::-;12457:4;;12521:2;12510:14;;12538:1;12533:663;;;;13240:1;13257:6;13254:89;;;-1:-1:-1;13309:19:1;;;13303:26;13254:89;-1:-1:-1;;12058:1:1;12054:11;;;12050:24;12046:29;12036:40;12082:1;12078:11;;;12033:57;13356:81;;12503:944;;12533:663;11327:1;11320:14;;;11364:4;11351:18;;-1:-1:-1;;12569:20:1;;;12687:236;12701:7;12698:1;12695:14;12687:236;;;12790:19;;;12784:26;12769:42;;12882:27;;;;12850:1;12838:14;;;;12717:19;;12687:236;;;12691:3;12951:6;12942:7;12939:19;12936:201;;;13012:19;;;13006:26;-1:-1:-1;;13095:1:1;13091:14;;;13107:3;13087:24;13083:37;13079:42;13064:58;13049:74;;12936:201;-1:-1:-1;;;;;13183:1:1;13167:14;;;13163:22;13150:36;;-1:-1:-1;12101:1352:1:o;14170:125::-;14235:9;;;14256:10;;;14253:36;;;14269:18;;:::i;14999:128::-;15066:9;;;15087:11;;;15084:37;;;15101:18;;:::i;15132:343::-;15334:2;15316:21;;;15373:2;15353:18;;;15346:30;-1:-1:-1;;;15407:2:1;15392:18;;15385:49;15466:2;15451:18;;15132:343::o;15896:663::-;16176:3;16214:6;16208:13;16230:66;16289:6;16284:3;16277:4;16269:6;16265:17;16230:66;:::i;:::-;16359:13;;16318:16;;;;16381:70;16359:13;16318:16;16428:4;16416:17;;16381:70;:::i;:::-;-1:-1:-1;;;16473:20:1;;16502:22;;;16551:1;16540:13;;15896:663;-1:-1:-1;;;;15896:663:1:o;16971:127::-;17032:10;17027:3;17023:20;17020:1;17013:31;17063:4;17060:1;17053:15;17087:4;17084:1;17077:15;17103:135;17142:3;17163:17;;;17160:43;;17183:18;;:::i;:::-;-1:-1:-1;17230:1:1;17219:13;;17103:135::o;18242:112::-;18274:1;18300;18290:35;;18305:18;;:::i;:::-;-1:-1:-1;18339:9:1;;18242:112::o;18359:489::-;-1:-1:-1;;;;;18628:15:1;;;18610:34;;18680:15;;18675:2;18660:18;;18653:43;18727:2;18712:18;;18705:34;;;18775:3;18770:2;18755:18;;18748:31;;;18553:4;;18796:46;;18822:19;;18814:6;18796:46;:::i;:::-;18788:54;18359:489;-1:-1:-1;;;;;;18359:489:1:o;18853:249::-;18922:6;18975:2;18963:9;18954:7;18950:23;18946:32;18943:52;;;18991:1;18988;18981:12;18943:52;19023:9;19017:16;19042:30;19066:5;19042:30;:::i

Swarm Source

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