ETH Price: $3,313.66 (-3.50%)
Gas: 21 Gwei

Token

 

Overview

Max Total Supply

0

Holders

279

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
HypeGear

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: contracts/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) 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/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant OPERATOR_FILTER_REGISTRY =
        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(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}

// File: contracts/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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


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

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) {
        return _values(set._inner);
    }

    // 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 on 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: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// 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/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.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 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/interfaces/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol)

pragma solidity ^0.8.0;


// 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/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/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: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

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


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC1155.sol)

pragma solidity ^0.8.0;


// File: contracts/IBOX.sol


pragma solidity ^0.8.17;


interface IBOX is IERC1155{

    function burn(address account,uint256 id,uint256 value) external ;
}
// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC1155/ERC1155.sol


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

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155URIStorage.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155URIStorage.sol)

pragma solidity ^0.8.0;



/**
 * @dev ERC1155 token with storage based token URI management.
 * Inspired by the ERC721URIStorage extension
 *
 * _Available since v4.6._
 */
abstract contract ERC1155URIStorage is ERC1155 {
    using Strings for uint256;

    // Optional base URI
    string private _baseURI = "";

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the concatenation of the `_baseURI`
     * and the token-specific uri if the latter is set
     *
     * This enables the following behaviors:
     *
     * - if `_tokenURIs[tokenId]` is set, then the result is the concatenation
     *   of `_baseURI` and `_tokenURIs[tokenId]` (keep in mind that `_baseURI`
     *   is empty per default);
     *
     * - if `_tokenURIs[tokenId]` is NOT set then we fallback to `super.uri()`
     *   which in most cases will contain `ERC1155._uri`;
     *
     * - if `_tokenURIs[tokenId]` is NOT set, and if the parents do not have a
     *   uri value set, then the result is empty.
     */
    function uri(uint256 tokenId) public view virtual override returns (string memory) {
        string memory tokenURI = _tokenURIs[tokenId];

        // If token URI is set, concatenate base URI and tokenURI (via abi.encodePacked).
        return bytes(tokenURI).length > 0 ? string(abi.encodePacked(_baseURI, tokenURI)) : super.uri(tokenId);
    }

    /**
     * @dev Sets `tokenURI` as the tokenURI of `tokenId`.
     */
    function _setURI(uint256 tokenId, string memory tokenURI) internal virtual {
        _tokenURIs[tokenId] = tokenURI;
        emit URI(uri(tokenId), tokenId);
    }

    /**
     * @dev Sets `baseURI` as the `_baseURI` for all tokens
     */
    function _setBaseURI(string memory baseURI) internal virtual {
        _baseURI = baseURI;
    }
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );

        _burnBatch(account, ids, values);
    }
}

// File: contracts/HypeGear.sol


pragma solidity ^0.8.17;

//@author PZ
//@title HypeGearBox















contract HypeGear is ERC1155,
    ERC1155Burnable,
    ERC1155Supply,
    ERC1155URIStorage,
    ERC2981,
    Ownable,
    ReentrancyGuard,
    IERC1155Receiver,
    DefaultOperatorFilterer {

    using MerkleProof for bytes32[];
    using SafeMath for uint256;
    using EnumerableSet for EnumerableSet.UintSet;

    

    uint256 public constant GENESIS = 0;

    uint256 public constant NORMAL = 0;

    uint256 public constant GOLD = 1;

    uint256 public constant ONE = 1;

    mapping(uint256 => uint256) public maxSupply;

    mapping(address => mapping(uint256 => uint256)) private _count;

    EnumerableSet.UintSet private genesisSet;

    string private _name;

    string private _symbol;

    mapping(uint256 => bytes32) private merkleRootMap;

    mapping(uint256 => uint256) private priceMap;

    bool public _active;

    bool public freemint_active;

    uint256 public freemint_round;

    uint256 public freemint_id;

    uint256 public freemint_num;

    mapping(uint256=>mapping(address=>bool)) private freeMintMap;

    IERC721 immutable HYPE_SAINTS;
    IBOX immutable HYPE_GEAR_BOX;
    address payable public immutable withdrawAddress;



    constructor(
        string memory name_,
        string memory symbol_,
        address _hypeGearBox,
        address _hypeSaints,
        address royalty_,
        uint96 royaltyFee_,
        string memory uri_,
        address payable _withdrawAddress
    ) ERC1155(uri_) {
        require(_withdrawAddress != address(0));
        withdrawAddress = _withdrawAddress;

        _name = name_;
        _symbol = symbol_;
        HYPE_SAINTS = IERC721(_hypeSaints);
        HYPE_GEAR_BOX = IBOX(_hypeGearBox);
        _active = false;
        _setDefaultRoyalty(royalty_, royaltyFee_);
    }

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

    function onERC1155Received(
        address,
        address,
        uint256,
        uint256,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC1155Received.selector;
    }

    function onERC1155BatchReceived(
        address,
        address,
        uint256[] memory,
        uint256[] memory,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC1155BatchReceived.selector;
    }


    

    function kolMint(address[] memory _team, uint256 amount,uint256 _id) external onlyOwner {
        
        for (uint256 i = 0; i < _team.length; i++) {
            _mint(_team[i], _id,amount,"");
        }
    }

    function freeMint() external nonReentrant {
        require(freemint_active, "free mint not active");
        require(freemint_id > 0,"freemint id is not right");
        require(freemint_num > 0,"freemint amount is not enought");
        require(!freeMintMap[freemint_round][msg.sender],"you can only mint one");
        require(totalSupply(freemint_id) + ONE <= maxSupply[freemint_id], "Max supply exceeded");
        
        _mint(msg.sender, freemint_id,ONE,"");
        freemint_num = freemint_num - 1;
        freeMintMap[freemint_round][msg.sender] = true;
    }

    function genesisMint(uint256[] memory _hypeSaintIds) external callerIsUser nonReentrant {
        require(_active, "Not active");
        require(totalSupply(0) + _hypeSaintIds.length <= maxSupply[0], "Max supply exceeded");
        for (uint256 i = 0; i < _hypeSaintIds.length; i++) {
            require(msg.sender == HYPE_SAINTS.ownerOf(_hypeSaintIds[i]),"you do not have this HypeSaints!");
            require(!genesisSet.contains(_hypeSaintIds[i]),"This HypeSaint has claimed genesis HypeGear");
            _mint(msg.sender,0,1,"");
            genesisSet.add(_hypeSaintIds[i]);
        }
    }

    function openBox(uint256 _boxType) external callerIsUser nonReentrant {
        require(_active, "Not active");
        require(HYPE_GEAR_BOX.balanceOf(msg.sender,_boxType) == 1,"you do not have HypeGearBox!");

        if (_boxType == NORMAL) {
            _mint(msg.sender,1,1,"");
        } else {
            _mint(msg.sender,2,1,"");
        } 
        
        HYPE_GEAR_BOX.burn(msg.sender,_boxType,1);
    }



    function whitelistMint(bytes32[] calldata _proof,uint256 _id) external payable callerIsUser nonReentrant {
        require(_active, "Not active");
        require(priceMap[_id] <= msg.value, "The value sent is not correct");
        require(isWhiteListed(msg.sender, _proof,_id), "Not whitelisted");
        require(_count[msg.sender][_id] < 1, "You can only mint one HypeGear on the Whitelist");
        require(totalSupply(_id) + ONE <= maxSupply[_id], "Max supply exceeded");

        _mint(msg.sender, _id,ONE,"");
        _count[msg.sender][_id] = 1;
        
    }



    function getActive() external view returns (bool) {
        return _active;
    }

    function setActive(bool active) external onlyOwner {
        _active = active;
    }

    function setFreeMintActive(bool _freeMintActive) external onlyOwner {
        freemint_active = _freeMintActive;
        if (_freeMintActive) {
            freemint_round = freemint_round.add(1);
        }
        
    }

    function setFreeMintId(uint256 _freeMintId) external onlyOwner {
        freemint_id = _freeMintId;
    }

    function setFreeMintNum(uint256 _freeMintNum) external onlyOwner {
        freemint_num = _freeMintNum;
    }

    function getGenesisSet() public view returns(uint256[] memory) {
        return genesisSet.values();
    }

    function setSupply(uint256 _id,uint256 _supply) external onlyOwner {
        maxSupply[_id] = _supply;
    }

    function getMaxSupply(uint256 _id) public view returns(uint256) {
        return maxSupply[_id];
    }

    function setPrice(uint256 _id,uint256 _price) external onlyOwner {
        priceMap[_id] = _price;
    }

    function getPrice(uint256 _id) public view returns(uint256) {
        return priceMap[_id];
    }

    //Whitelist
    function setMerkleRoot(bytes32 merkleRoot_,uint256 _id) external onlyOwner {
        merkleRootMap[_id] = merkleRoot_;
    }
    
    function getMerkleRoot(uint256 _id) public view returns(bytes32) {
        return merkleRootMap[_id];
    }

    function isWhiteListed(address _account, bytes32[] calldata _proof,uint256 _id) internal view returns(bool) {
        return _verify(leaf(_account), _proof,_id);
    }

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

    function _verify(bytes32 _leaf, bytes32[] memory _proof,uint256 _id) internal view returns(bool) {
        return MerkleProof.verify(_proof, merkleRootMap[_id], _leaf);
    }  

    

    function setURI(string memory uri_) external onlyOwner {
        super._setBaseURI(uri_);
    }

    function setURI(uint256 tokenId, string memory tokenURI) external onlyOwner {
        super._setURI(tokenId,tokenURI);
    }

    function uri(uint256 tokenId) public view override(ERC1155, ERC1155URIStorage) returns (string memory) {
    return ERC1155URIStorage.uri(tokenId);
    }

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal override(ERC1155, ERC1155Supply) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC1155, ERC2981,IERC165)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function withdraw() external onlyOwner {
        (bool success, ) = withdrawAddress.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"_hypeGearBox","type":"address"},{"internalType":"address","name":"_hypeSaints","type":"address"},{"internalType":"address","name":"royalty_","type":"address"},{"internalType":"uint96","name":"royaltyFee_","type":"uint96"},{"internalType":"string","name":"uri_","type":"string"},{"internalType":"address payable","name":"_withdrawAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"GENESIS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GOLD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NORMAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ONE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freemint_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freemint_id","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freemint_num","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freemint_round","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_hypeSaintIds","type":"uint256[]"}],"name":"genesisMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGenesisSet","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_team","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"kolMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_boxType","type":"uint256"}],"name":"openBox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setActive","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":"bool","name":"_freeMintActive","type":"bool"}],"name":"setFreeMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintId","type":"uint256"}],"name":"setFreeMintId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeMintNum","type":"uint256"}],"name":"setFreeMintNum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"setURI","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":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

610100604052600060e09081526004906200001b90826200044b565b503480156200002957600080fd5b5060405162003f5938038062003f598339810160408190526200004c91620005fb565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001836200006f816200023d565b506200007b336200024f565b60016009556daaeb6d7670e522a718067333cd4e3b15620001c55780156200011357604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620000f457600080fd5b505af115801562000109573d6000803e3d6000fd5b50505050620001c5565b6001600160a01b03821615620001645760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000d9565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001ab57600080fd5b505af1158015620001c0573d6000803e3d6000fd5b505050505b50506001600160a01b038116620001db57600080fd5b6001600160a01b03811660c052600e620001f689826200044b565b50600f6200020588826200044b565b506001600160a01b03808616608052861660a0526012805460ff191690556200022f8484620002a1565b5050505050505050620006ea565b60026200024b82826200044b565b5050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620003155760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b0382166200036d5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016200030c565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600655565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003d157607f821691505b602082108103620003f257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200044657600081815260208120601f850160051c81016020861015620004215750805b601f850160051c820191505b8181101562000442578281556001016200042d565b5050505b505050565b81516001600160401b03811115620004675762000467620003a6565b6200047f81620004788454620003bc565b84620003f8565b602080601f831160018114620004b757600084156200049e5750858301515b600019600386901b1c1916600185901b17855562000442565b600085815260208120601f198616915b82811015620004e857888601518255948401946001909101908401620004c7565b5085821015620005075787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200052957600080fd5b81516001600160401b0380821115620005465762000546620003a6565b604051601f8301601f19908116603f01168101908282118183101715620005715762000571620003a6565b816040528381526020925086838588010111156200058e57600080fd5b600091505b83821015620005b2578582018301518183018401529082019062000593565b600093810190920192909252949350505050565b80516001600160a01b0381168114620005de57600080fd5b919050565b80516001600160601b0381168114620005de57600080fd5b600080600080600080600080610100898b0312156200061957600080fd5b88516001600160401b03808211156200063157600080fd5b6200063f8c838d0162000517565b995060208b01519150808211156200065657600080fd5b620006648c838d0162000517565b98506200067460408c01620005c6565b97506200068460608c01620005c6565b96506200069460808c01620005c6565b9550620006a460a08c01620005e3565b945060c08b0151915080821115620006bb57600080fd5b50620006ca8b828c0162000517565b925050620006db60e08a01620005c6565b90509295985092959890939650565b60805160a05160c05161383162000728600039600081816103cc0152610d2301526000818161159101526116b8015260006112f901526138316000f3fe6080604052600436106102ac5760003560e01c806384d65d4211610175578063bd85b039116100dc578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b146108c3578063f5298aca146108e3578063f7d9757714610903578063fc784d491461092357600080fd5b8063e985e9c51461082e578063f23a6e6114610877578063f242432a146108a357600080fd5b8063bd85b03914610774578063bf30099a146107a1578063c2ee3a081461048d578063cbb42b5b146107c1578063d47358b3146107e1578063e75722301461080157600080fd5b8063acec338a1161012e578063acec338a146106c4578063ae24595c146106e4578063b1e5e2b7146106f9578063b7b9c85f14610719578063b7dec1b7146106e4578063bc197c811461072f57600080fd5b806384d65d4214610604578063862440e214610619578063869f7594146106395780638da5cb5b14610666578063a22cb46514610684578063a5b1c19e146106a457600080fd5b80633e4bee38116102195780635e495d74116101d25780635e495d741461054d5780636792a5581461057a5780636b20c45414610590578063715018a6146105b05780637c382d0b146105c55780637e23fa9c146105e557600080fd5b80633e4bee381461048d5780634d615d23146104a25780634e1273f4146104bc5780634f558e79146104e95780634f9b563c146105185780635b70ea9f1461053857600080fd5b80630e89341c1161026b5780630e89341c1461038d5780631581b600146103ba5780632904e6d9146104065780632a55205a146104195780632eb2c2d6146104585780633ccfd60b1461047857600080fd5b80629ebb10146102b1578062fdd58e146102da57806301ffc9a71461030857806302fe53051461032857806307d1b1541461034a5780630aab8ba514610360575b600080fd5b3480156102bd57600080fd5b5060125460ff165b60405190151581526020015b60405180910390f35b3480156102e657600080fd5b506102fa6102f5366004612984565b610943565b6040519081526020016102d1565b34801561031457600080fd5b506102c56103233660046129c6565b6109dc565b34801561033457600080fd5b50610348610343366004612a98565b6109e7565b005b34801561035657600080fd5b506102fa60135481565b34801561036c57600080fd5b506102fa61037b366004612acc565b60009081526010602052604090205490565b34801561039957600080fd5b506103ad6103a8366004612acc565b6109fb565b6040516102d19190612b35565b3480156103c657600080fd5b506103ee7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102d1565b610348610414366004612b48565b610a06565b34801561042557600080fd5b50610439610434366004612bc2565b610c1f565b604080516001600160a01b0390931683526020830191909152016102d1565b34801561046457600080fd5b50610348610473366004612c78565b610ccb565b34801561048457600080fd5b50610348610d17565b34801561049957600080fd5b506102fa600181565b3480156104ae57600080fd5b506012546102c59060ff1681565b3480156104c857600080fd5b506104dc6104d7366004612d94565b610dd5565b6040516102d19190612e32565b3480156104f557600080fd5b506102c5610504366004612acc565b600090815260036020526040902054151590565b34801561052457600080fd5b50610348610533366004612e5a565b610efe565b34801561054457600080fd5b50610348610f38565b34801561055957600080fd5b506102fa610568366004612acc565b6000908152600a602052604090205490565b34801561058657600080fd5b506102fa60145481565b34801561059c57600080fd5b506103486105ab366004612e75565b61115d565b3480156105bc57600080fd5b506103486111a5565b3480156105d157600080fd5b506103486105e0366004612bc2565b6111b9565b3480156105f157600080fd5b506012546102c590610100900460ff1681565b34801561061057600080fd5b506104dc6111d2565b34801561062557600080fd5b50610348610634366004612eea565b6111e3565b34801561064557600080fd5b506102fa610654366004612acc565b600a6020526000908152604090205481565b34801561067257600080fd5b506008546001600160a01b03166103ee565b34801561069057600080fd5b5061034861069f366004612f26565b6111f9565b3480156106b057600080fd5b506103486106bf366004612f5b565b611204565b3480156106d057600080fd5b506103486106df366004612e5a565b6114f3565b3480156106f057600080fd5b506102fa600081565b34801561070557600080fd5b50610348610714366004612acc565b61150e565b34801561072557600080fd5b506102fa60155481565b34801561073b57600080fd5b5061075b61074a366004612c78565b63bc197c8160e01b95945050505050565b6040516001600160e01b031990911681526020016102d1565b34801561078057600080fd5b506102fa61078f366004612acc565b60009081526003602052604090205490565b3480156107ad57600080fd5b506103486107bc366004612f8f565b611724565b3480156107cd57600080fd5b506103486107dc366004612acc565b611784565b3480156107ed57600080fd5b506103486107fc366004612acc565b611791565b34801561080d57600080fd5b506102fa61081c366004612acc565b60009081526011602052604090205490565b34801561083a57600080fd5b506102c5610849366004612fdc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561088357600080fd5b5061075b610892366004613015565b63f23a6e6160e01b95945050505050565b3480156108af57600080fd5b506103486108be366004613015565b61179e565b3480156108cf57600080fd5b506103486108de36600461307d565b6117e3565b3480156108ef57600080fd5b506103486108fe36600461309a565b611859565b34801561090f57600080fd5b5061034861091e366004612bc2565b61189c565b34801561092f57600080fd5b5061034861093e366004612bc2565b6118b6565b60006001600160a01b0383166109b35760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006109d6826118d0565b6109ef6118f5565b6109f88161194f565b50565b60606109d68261195b565b323314610a255760405162461bcd60e51b81526004016109aa906130cf565b600260095403610a475760405162461bcd60e51b81526004016109aa90613106565b600260095560125460ff16610a6e5760405162461bcd60e51b81526004016109aa9061313d565b600081815260116020526040902054341015610acc5760405162461bcd60e51b815260206004820152601d60248201527f5468652076616c75652073656e74206973206e6f7420636f727265637400000060448201526064016109aa565b610ad833848484611a3b565b610b165760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b60448201526064016109aa565b336000908152600b60209081526040808320848452909152902054600111610b985760405162461bcd60e51b815260206004820152602f60248201527f596f752063616e206f6e6c79206d696e74206f6e65204879706547656172206f60448201526e1b881d1a194815da1a5d195b1a5cdd608a1b60648201526084016109aa565b6000818152600a6020908152604080832054600390925290912054610bbf90600190613177565b1115610bdd5760405162461bcd60e51b81526004016109aa9061318a565b610bf93382600160405180602001604052806000815250611ac7565b336000908152600b60209081526040808320938352929052206001908190556009555050565b60008281526007602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c945750604080518082019091526006546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610cb3906001600160601b0316876131b7565b610cbd91906131ce565b915196919550909350505050565b6001600160a01b038516331480610ce75750610ce78533610849565b610d035760405162461bcd60e51b81526004016109aa906131f0565b610d108585858585611bea565b5050505050565b610d1f6118f5565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d8c576040519150601f19603f3d011682016040523d82523d6000602084013e610d91565b606091505b50509050806109f85760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016109aa565b60608151835114610e3a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016109aa565b600083516001600160401b03811115610e5557610e556129e3565b604051908082528060200260200182016040528015610e7e578160200160208202803683370190505b50905060005b8451811015610ef657610ec9858281518110610ea257610ea261323f565b6020026020010151858381518110610ebc57610ebc61323f565b6020026020010151610943565b828281518110610edb57610edb61323f565b6020908102919091010152610eef81613255565b9050610e84565b509392505050565b610f066118f5565b60128054821580156101000261ff0019909216919091179091556109f857601354610f32906001611d94565b60135550565b600260095403610f5a5760405162461bcd60e51b81526004016109aa90613106565b6002600955601254610100900460ff16610fad5760405162461bcd60e51b815260206004820152601460248201527366726565206d696e74206e6f742061637469766560601b60448201526064016109aa565b600060145411610fff5760405162461bcd60e51b815260206004820152601860248201527f667265656d696e74206964206973206e6f74207269676874000000000000000060448201526064016109aa565b6000601554116110515760405162461bcd60e51b815260206004820152601e60248201527f667265656d696e7420616d6f756e74206973206e6f7420656e6f75676874000060448201526064016109aa565b601354600090815260166020908152604080832033845290915290205460ff16156110b65760405162461bcd60e51b8152602060048201526015602482015274796f752063616e206f6e6c79206d696e74206f6e6560581b60448201526064016109aa565b6014546000908152600a60209081526040808320546003909252909120546110e090600190613177565b11156110fe5760405162461bcd60e51b81526004016109aa9061318a565b61111c33601454600160405180602001604052806000815250611ac7565b600160155461112b919061326e565b60155560135460009081526016602090815260408083203384529091529020805460ff19166001908117909155600955565b6001600160a01b03831633148061117957506111798333610849565b6111955760405162461bcd60e51b81526004016109aa90613281565b6111a0838383611da0565b505050565b6111ad6118f5565b6111b76000611f3c565b565b6111c16118f5565b600090815260106020526040902055565b60606111de600c611f8e565b905090565b6111eb6118f5565b6111f58282611f9b565b5050565b6111f5338383611ff8565b3233146112235760405162461bcd60e51b81526004016109aa906130cf565b6002600954036112455760405162461bcd60e51b81526004016109aa90613106565b600260095560125460ff1661126c5760405162461bcd60e51b81526004016109aa9061313d565b60008052600a60209081527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e354825160039092527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff5490916112cd91613177565b11156112eb5760405162461bcd60e51b81526004016109aa9061318a565b60005b81518110156114ea577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316636352211e8383815181106113385761133861323f565b60200260200101516040518263ffffffff1660e01b815260040161135e91815260200190565b602060405180830381865afa15801561137b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139f91906132cf565b6001600160a01b0316336001600160a01b0316146113ff5760405162461bcd60e51b815260206004820181905260248201527f796f7520646f206e6f742068617665207468697320487970655361696e74732160448201526064016109aa565b61142c8282815181106114145761141461323f565b6020026020010151600c6120d890919063ffffffff16565b1561148d5760405162461bcd60e51b815260206004820152602b60248201527f5468697320487970655361696e742068617320636c61696d65642067656e657360448201526a34b990243cb832a3b2b0b960a91b60648201526084016109aa565b6114aa336000600160405180602001604052806000815250611ac7565b6114d78282815181106114bf576114bf61323f565b6020026020010151600c6120f090919063ffffffff16565b50806114e281613255565b9150506112ee565b50506001600955565b6114fb6118f5565b6012805460ff1916911515919091179055565b32331461152d5760405162461bcd60e51b81526004016109aa906130cf565b60026009540361154f5760405162461bcd60e51b81526004016109aa90613106565b600260095560125460ff166115765760405162461bcd60e51b81526004016109aa9061313d565b604051627eeac760e11b8152336004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169062fdd58e90604401602060405180830381865afa1580156115df573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160391906132ec565b6001146116525760405162461bcd60e51b815260206004820152601c60248201527f796f7520646f206e6f742068617665204879706547656172426f78210000000060448201526064016109aa565b80611678576116733360018060405180602001604052806000815250611ac7565b611695565b611695336002600160405180602001604052806000815250611ac7565b604051637a94c56560e11b815233600482015260248101829052600160448201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f5298aca90606401600060405180830381600087803b15801561170457600080fd5b505af1158015611718573d6000803e3d6000fd5b50506001600955505050565b61172c6118f5565b60005b835181101561177e5761176c84828151811061174d5761174d61323f565b6020026020010151838560405180602001604052806000815250611ac7565b8061177681613255565b91505061172f565b50505050565b61178c6118f5565b601455565b6117996118f5565b601555565b6001600160a01b0385163314806117ba57506117ba8533610849565b6117d65760405162461bcd60e51b81526004016109aa906131f0565b610d1085858585856120fc565b6117eb6118f5565b6001600160a01b0381166118505760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109aa565b6109f881611f3c565b6001600160a01b03831633148061187557506118758333610849565b6118915760405162461bcd60e51b81526004016109aa90613281565b6111a0838383612234565b6118a46118f5565b60009182526011602052604090912055565b6118be6118f5565b6000918252600a602052604090912055565b60006001600160e01b0319821663152a902d60e11b14806109d657506109d68261234c565b6008546001600160a01b031633146111b75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109aa565b60046111f58282613385565b60008181526005602052604081208054606092919061197990613305565b80601f01602080910402602001604051908101604052809291908181526020018280546119a590613305565b80156119f25780601f106119c7576101008083540402835291602001916119f2565b820191906000526020600020905b8154815290600101906020018083116119d557829003601f168201915b505050505090506000815111611a1057611a0b8361239c565b611a34565b600481604051602001611a24929190613444565b6040516020818303038152906040525b9392505050565b6000611abe611a83866040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250879250612430915050565b95945050505050565b6001600160a01b038416611b275760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109aa565b336000611b3385612453565b90506000611b4085612453565b9050611b518360008985858961249e565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290611b81908490613177565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611be1836000898989896124ac565b50505050505050565b8151835114611c0b5760405162461bcd60e51b81526004016109aa906134cb565b6001600160a01b038416611c315760405162461bcd60e51b81526004016109aa90613513565b33611c4081878787878761249e565b60005b8451811015611d26576000858281518110611c6057611c6061323f565b602002602001015190506000858381518110611c7e57611c7e61323f565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611cce5760405162461bcd60e51b81526004016109aa90613558565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611d0b908490613177565b9250508190555050505080611d1f90613255565b9050611c43565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611d769291906135a2565b60405180910390a4611d8c818787878787612607565b505050505050565b6000611a348284613177565b6001600160a01b038316611dc65760405162461bcd60e51b81526004016109aa906135c7565b8051825114611de75760405162461bcd60e51b81526004016109aa906134cb565b6000339050611e0a8185600086866040518060200160405280600081525061249e565b60005b8351811015611ecf576000848281518110611e2a57611e2a61323f565b602002602001015190506000848381518110611e4857611e4861323f565b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015611e985760405162461bcd60e51b81526004016109aa9061360a565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580611ec781613255565b915050611e0d565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611f209291906135a2565b60405180910390a460408051602081019091526000905261177e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60606000611a34836126c2565b6000828152600560205260409020611fb38282613385565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b611fdf846109fb565b604051611fec9190612b35565b60405180910390a25050565b816001600160a01b0316836001600160a01b03160361206b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016109aa565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008181526001830160205260408120541515611a34565b6000611a34838361271d565b6001600160a01b0384166121225760405162461bcd60e51b81526004016109aa90613513565b33600061212e85612453565b9050600061213b85612453565b905061214b83898985858961249e565b6000868152602081815260408083206001600160a01b038c1684529091529020548581101561218c5760405162461bcd60e51b81526004016109aa90613558565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906121c9908490613177565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612229848a8a8a8a8a6124ac565b505050505050505050565b6001600160a01b03831661225a5760405162461bcd60e51b81526004016109aa906135c7565b33600061226684612453565b9050600061227384612453565b90506122938387600085856040518060200160405280600081525061249e565b6000858152602081815260408083206001600160a01b038a168452909152902054848110156122d45760405162461bcd60e51b81526004016109aa9061360a565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052611be1565b60006001600160e01b03198216636cdb3d1360e11b148061237d57506001600160e01b031982166303a24d0760e21b145b806109d657506301ffc9a760e01b6001600160e01b03198316146109d6565b6060600280546123ab90613305565b80601f01602080910402602001604051908101604052809291908181526020018280546123d790613305565b80156124245780601f106123f957610100808354040283529160200191612424565b820191906000526020600020905b81548152906001019060200180831161240757829003601f168201915b50505050509050919050565b60008181526010602052604081205461244b9084908661276c565b949350505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061248d5761248d61323f565b602090810291909101015292915050565b611d8c868686868686612782565b6001600160a01b0384163b15611d8c5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906124f0908990899088908890889060040161364e565b6020604051808303816000875af192505050801561252b575060408051601f3d908101601f1916820190925261252891810190613693565b60015b6125d7576125376136b0565b806308c379a003612570575061254b6136cc565b806125565750612572565b8060405162461bcd60e51b81526004016109aa9190612b35565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016109aa565b6001600160e01b0319811663f23a6e6160e01b14611be15760405162461bcd60e51b81526004016109aa90613755565b6001600160a01b0384163b15611d8c5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061264b908990899088908890889060040161379d565b6020604051808303816000875af1925050508015612686575060408051601f3d908101601f1916820190925261268391810190613693565b60015b612692576125376136b0565b6001600160e01b0319811663bc197c8160e01b14611be15760405162461bcd60e51b81526004016109aa90613755565b60608160000180548060200260200160405190810160405280929190818152602001828054801561242457602002820191906000526020600020905b8154815260200190600101908083116126fe5750505050509050919050565b6000818152600183016020526040812054612764575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556109d6565b5060006109d6565b60008261277985846128fb565b14949350505050565b6001600160a01b0385166128095760005b8351811015612807578281815181106127ae576127ae61323f565b6020026020010151600360008684815181106127cc576127cc61323f565b6020026020010151815260200190815260200160002060008282546127f19190613177565b90915550612800905081613255565b9050612793565b505b6001600160a01b038416611d8c5760005b8351811015611be15760008482815181106128375761283761323f565b6020026020010151905060008483815181106128555761285561323f565b60200260200101519050600060036000848152602001908152602001600020549050818110156128d85760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b60648201526084016109aa565b600092835260036020526040909220910390556128f481613255565b905061281a565b600081815b8451811015610ef65761292c8286838151811061291f5761291f61323f565b6020026020010151612940565b91508061293881613255565b915050612900565b600081831061295c576000828152602084905260409020611a34565b6000838152602083905260409020611a34565b6001600160a01b03811681146109f857600080fd5b6000806040838503121561299757600080fd5b82356129a28161296f565b946020939093013593505050565b6001600160e01b0319811681146109f857600080fd5b6000602082840312156129d857600080fd5b8135611a34816129b0565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715612a1e57612a1e6129e3565b6040525050565b600082601f830112612a3657600080fd5b81356001600160401b03811115612a4f57612a4f6129e3565b604051612a66601f8301601f1916602001826129f9565b818152846020838601011115612a7b57600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215612aaa57600080fd5b81356001600160401b03811115612ac057600080fd5b61244b84828501612a25565b600060208284031215612ade57600080fd5b5035919050565b60005b83811015612b00578181015183820152602001612ae8565b50506000910152565b60008151808452612b21816020860160208601612ae5565b601f01601f19169290920160200192915050565b602081526000611a346020830184612b09565b600080600060408486031215612b5d57600080fd5b83356001600160401b0380821115612b7457600080fd5b818601915086601f830112612b8857600080fd5b813581811115612b9757600080fd5b8760208260051b8501011115612bac57600080fd5b6020928301989097509590910135949350505050565b60008060408385031215612bd557600080fd5b50508035926020909101359150565b60006001600160401b03821115612bfd57612bfd6129e3565b5060051b60200190565b600082601f830112612c1857600080fd5b81356020612c2582612be4565b604051612c3282826129f9565b83815260059390931b8501820192828101915086841115612c5257600080fd5b8286015b84811015612c6d5780358352918301918301612c56565b509695505050505050565b600080600080600060a08688031215612c9057600080fd5b8535612c9b8161296f565b94506020860135612cab8161296f565b935060408601356001600160401b0380821115612cc757600080fd5b612cd389838a01612c07565b94506060880135915080821115612ce957600080fd5b612cf589838a01612c07565b93506080880135915080821115612d0b57600080fd5b50612d1888828901612a25565b9150509295509295909350565b600082601f830112612d3657600080fd5b81356020612d4382612be4565b604051612d5082826129f9565b83815260059390931b8501820192828101915086841115612d7057600080fd5b8286015b84811015612c6d578035612d878161296f565b8352918301918301612d74565b60008060408385031215612da757600080fd5b82356001600160401b0380821115612dbe57600080fd5b612dca86838701612d25565b93506020850135915080821115612de057600080fd5b50612ded85828601612c07565b9150509250929050565b600081518084526020808501945080840160005b83811015612e2757815187529582019590820190600101612e0b565b509495945050505050565b602081526000611a346020830184612df7565b80358015158114612e5557600080fd5b919050565b600060208284031215612e6c57600080fd5b611a3482612e45565b600080600060608486031215612e8a57600080fd5b8335612e958161296f565b925060208401356001600160401b0380821115612eb157600080fd5b612ebd87838801612c07565b93506040860135915080821115612ed357600080fd5b50612ee086828701612c07565b9150509250925092565b60008060408385031215612efd57600080fd5b8235915060208301356001600160401b03811115612f1a57600080fd5b612ded85828601612a25565b60008060408385031215612f3957600080fd5b8235612f448161296f565b9150612f5260208401612e45565b90509250929050565b600060208284031215612f6d57600080fd5b81356001600160401b03811115612f8357600080fd5b61244b84828501612c07565b600080600060608486031215612fa457600080fd5b83356001600160401b03811115612fba57600080fd5b612fc686828701612d25565b9660208601359650604090950135949350505050565b60008060408385031215612fef57600080fd5b8235612ffa8161296f565b9150602083013561300a8161296f565b809150509250929050565b600080600080600060a0868803121561302d57600080fd5b85356130388161296f565b945060208601356130488161296f565b9350604086013592506060860135915060808601356001600160401b0381111561307157600080fd5b612d1888828901612a25565b60006020828403121561308f57600080fd5b8135611a348161296f565b6000806000606084860312156130af57600080fd5b83356130ba8161296f565b95602085013595506040909401359392505050565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600a90820152694e6f742061637469766560b01b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156109d6576109d6613161565b60208082526013908201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604082015260600190565b80820281158282048414176109d6576109d6613161565b6000826131eb57634e487b7160e01b600052601260045260246000fd5b500490565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006001820161326757613267613161565b5060010190565b818103818111156109d6576109d6613161565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b6000602082840312156132e157600080fd5b8151611a348161296f565b6000602082840312156132fe57600080fd5b5051919050565b600181811c9082168061331957607f821691505b60208210810361333957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156111a057600081815260208120601f850160051c810160208610156133665750805b601f850160051c820191505b81811015611d8c57828155600101613372565b81516001600160401b0381111561339e5761339e6129e3565b6133b2816133ac8454613305565b8461333f565b602080601f8311600181146133e757600084156133cf5750858301515b600019600386901b1c1916600185901b178555611d8c565b600085815260208120601f198616915b82811015613416578886015182559484019460019091019084016133f7565b50858210156134345787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600080845461345281613305565b6001828116801561346a576001811461347f576134ae565b60ff19841687528215158302870194506134ae565b8860005260208060002060005b858110156134a55781548a82015290840190820161348c565b50505082870194505b5050505083516134c2818360208801612ae5565b01949350505050565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006135b56040830185612df7565b8281036020840152611abe8185612df7565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061368890830184612b09565b979650505050505050565b6000602082840312156136a557600080fd5b8151611a34816129b0565b600060033d11156136c95760046000803e5060005160e01c5b90565b600060443d10156136da5790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561370957505050505090565b82850191508151818111156137215750505050505090565b843d870101602082850101111561373b5750505050505090565b61374a602082860101876129f9565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a0604082018190526000906137c990830186612df7565b82810360608401526137db8186612df7565b905082810360808401526137ef8185612b09565b9897505050505050505056fea264697066735822122062458445869485900d1e7e7999fe246f110c63b3fba720456760e6ff4fd25b3a64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000b88a278c72fc84a3752a2bc3e85d5cbd86640abd0000000000000000000000004af790223169a8621095871375f79425725d22c9000000000000000000000000d51dbc55d776ce51babc3d9079c025169763a9e600000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000180000000000000000000000000d51dbc55d776ce51babc3d9079c025169763a9e600000000000000000000000000000000000000000000000000000000000000084879706547656172000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000248470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ac5760003560e01c806384d65d4211610175578063bd85b039116100dc578063e985e9c511610095578063f2fde38b1161006f578063f2fde38b146108c3578063f5298aca146108e3578063f7d9757714610903578063fc784d491461092357600080fd5b8063e985e9c51461082e578063f23a6e6114610877578063f242432a146108a357600080fd5b8063bd85b03914610774578063bf30099a146107a1578063c2ee3a081461048d578063cbb42b5b146107c1578063d47358b3146107e1578063e75722301461080157600080fd5b8063acec338a1161012e578063acec338a146106c4578063ae24595c146106e4578063b1e5e2b7146106f9578063b7b9c85f14610719578063b7dec1b7146106e4578063bc197c811461072f57600080fd5b806384d65d4214610604578063862440e214610619578063869f7594146106395780638da5cb5b14610666578063a22cb46514610684578063a5b1c19e146106a457600080fd5b80633e4bee38116102195780635e495d74116101d25780635e495d741461054d5780636792a5581461057a5780636b20c45414610590578063715018a6146105b05780637c382d0b146105c55780637e23fa9c146105e557600080fd5b80633e4bee381461048d5780634d615d23146104a25780634e1273f4146104bc5780634f558e79146104e95780634f9b563c146105185780635b70ea9f1461053857600080fd5b80630e89341c1161026b5780630e89341c1461038d5780631581b600146103ba5780632904e6d9146104065780632a55205a146104195780632eb2c2d6146104585780633ccfd60b1461047857600080fd5b80629ebb10146102b1578062fdd58e146102da57806301ffc9a71461030857806302fe53051461032857806307d1b1541461034a5780630aab8ba514610360575b600080fd5b3480156102bd57600080fd5b5060125460ff165b60405190151581526020015b60405180910390f35b3480156102e657600080fd5b506102fa6102f5366004612984565b610943565b6040519081526020016102d1565b34801561031457600080fd5b506102c56103233660046129c6565b6109dc565b34801561033457600080fd5b50610348610343366004612a98565b6109e7565b005b34801561035657600080fd5b506102fa60135481565b34801561036c57600080fd5b506102fa61037b366004612acc565b60009081526010602052604090205490565b34801561039957600080fd5b506103ad6103a8366004612acc565b6109fb565b6040516102d19190612b35565b3480156103c657600080fd5b506103ee7f000000000000000000000000d51dbc55d776ce51babc3d9079c025169763a9e681565b6040516001600160a01b0390911681526020016102d1565b610348610414366004612b48565b610a06565b34801561042557600080fd5b50610439610434366004612bc2565b610c1f565b604080516001600160a01b0390931683526020830191909152016102d1565b34801561046457600080fd5b50610348610473366004612c78565b610ccb565b34801561048457600080fd5b50610348610d17565b34801561049957600080fd5b506102fa600181565b3480156104ae57600080fd5b506012546102c59060ff1681565b3480156104c857600080fd5b506104dc6104d7366004612d94565b610dd5565b6040516102d19190612e32565b3480156104f557600080fd5b506102c5610504366004612acc565b600090815260036020526040902054151590565b34801561052457600080fd5b50610348610533366004612e5a565b610efe565b34801561054457600080fd5b50610348610f38565b34801561055957600080fd5b506102fa610568366004612acc565b6000908152600a602052604090205490565b34801561058657600080fd5b506102fa60145481565b34801561059c57600080fd5b506103486105ab366004612e75565b61115d565b3480156105bc57600080fd5b506103486111a5565b3480156105d157600080fd5b506103486105e0366004612bc2565b6111b9565b3480156105f157600080fd5b506012546102c590610100900460ff1681565b34801561061057600080fd5b506104dc6111d2565b34801561062557600080fd5b50610348610634366004612eea565b6111e3565b34801561064557600080fd5b506102fa610654366004612acc565b600a6020526000908152604090205481565b34801561067257600080fd5b506008546001600160a01b03166103ee565b34801561069057600080fd5b5061034861069f366004612f26565b6111f9565b3480156106b057600080fd5b506103486106bf366004612f5b565b611204565b3480156106d057600080fd5b506103486106df366004612e5a565b6114f3565b3480156106f057600080fd5b506102fa600081565b34801561070557600080fd5b50610348610714366004612acc565b61150e565b34801561072557600080fd5b506102fa60155481565b34801561073b57600080fd5b5061075b61074a366004612c78565b63bc197c8160e01b95945050505050565b6040516001600160e01b031990911681526020016102d1565b34801561078057600080fd5b506102fa61078f366004612acc565b60009081526003602052604090205490565b3480156107ad57600080fd5b506103486107bc366004612f8f565b611724565b3480156107cd57600080fd5b506103486107dc366004612acc565b611784565b3480156107ed57600080fd5b506103486107fc366004612acc565b611791565b34801561080d57600080fd5b506102fa61081c366004612acc565b60009081526011602052604090205490565b34801561083a57600080fd5b506102c5610849366004612fdc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561088357600080fd5b5061075b610892366004613015565b63f23a6e6160e01b95945050505050565b3480156108af57600080fd5b506103486108be366004613015565b61179e565b3480156108cf57600080fd5b506103486108de36600461307d565b6117e3565b3480156108ef57600080fd5b506103486108fe36600461309a565b611859565b34801561090f57600080fd5b5061034861091e366004612bc2565b61189c565b34801561092f57600080fd5b5061034861093e366004612bc2565b6118b6565b60006001600160a01b0383166109b35760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006109d6826118d0565b6109ef6118f5565b6109f88161194f565b50565b60606109d68261195b565b323314610a255760405162461bcd60e51b81526004016109aa906130cf565b600260095403610a475760405162461bcd60e51b81526004016109aa90613106565b600260095560125460ff16610a6e5760405162461bcd60e51b81526004016109aa9061313d565b600081815260116020526040902054341015610acc5760405162461bcd60e51b815260206004820152601d60248201527f5468652076616c75652073656e74206973206e6f7420636f727265637400000060448201526064016109aa565b610ad833848484611a3b565b610b165760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b60448201526064016109aa565b336000908152600b60209081526040808320848452909152902054600111610b985760405162461bcd60e51b815260206004820152602f60248201527f596f752063616e206f6e6c79206d696e74206f6e65204879706547656172206f60448201526e1b881d1a194815da1a5d195b1a5cdd608a1b60648201526084016109aa565b6000818152600a6020908152604080832054600390925290912054610bbf90600190613177565b1115610bdd5760405162461bcd60e51b81526004016109aa9061318a565b610bf93382600160405180602001604052806000815250611ac7565b336000908152600b60209081526040808320938352929052206001908190556009555050565b60008281526007602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610c945750604080518082019091526006546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610cb3906001600160601b0316876131b7565b610cbd91906131ce565b915196919550909350505050565b6001600160a01b038516331480610ce75750610ce78533610849565b610d035760405162461bcd60e51b81526004016109aa906131f0565b610d108585858585611bea565b5050505050565b610d1f6118f5565b60007f000000000000000000000000d51dbc55d776ce51babc3d9079c025169763a9e66001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d8c576040519150601f19603f3d011682016040523d82523d6000602084013e610d91565b606091505b50509050806109f85760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016109aa565b60608151835114610e3a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016109aa565b600083516001600160401b03811115610e5557610e556129e3565b604051908082528060200260200182016040528015610e7e578160200160208202803683370190505b50905060005b8451811015610ef657610ec9858281518110610ea257610ea261323f565b6020026020010151858381518110610ebc57610ebc61323f565b6020026020010151610943565b828281518110610edb57610edb61323f565b6020908102919091010152610eef81613255565b9050610e84565b509392505050565b610f066118f5565b60128054821580156101000261ff0019909216919091179091556109f857601354610f32906001611d94565b60135550565b600260095403610f5a5760405162461bcd60e51b81526004016109aa90613106565b6002600955601254610100900460ff16610fad5760405162461bcd60e51b815260206004820152601460248201527366726565206d696e74206e6f742061637469766560601b60448201526064016109aa565b600060145411610fff5760405162461bcd60e51b815260206004820152601860248201527f667265656d696e74206964206973206e6f74207269676874000000000000000060448201526064016109aa565b6000601554116110515760405162461bcd60e51b815260206004820152601e60248201527f667265656d696e7420616d6f756e74206973206e6f7420656e6f75676874000060448201526064016109aa565b601354600090815260166020908152604080832033845290915290205460ff16156110b65760405162461bcd60e51b8152602060048201526015602482015274796f752063616e206f6e6c79206d696e74206f6e6560581b60448201526064016109aa565b6014546000908152600a60209081526040808320546003909252909120546110e090600190613177565b11156110fe5760405162461bcd60e51b81526004016109aa9061318a565b61111c33601454600160405180602001604052806000815250611ac7565b600160155461112b919061326e565b60155560135460009081526016602090815260408083203384529091529020805460ff19166001908117909155600955565b6001600160a01b03831633148061117957506111798333610849565b6111955760405162461bcd60e51b81526004016109aa90613281565b6111a0838383611da0565b505050565b6111ad6118f5565b6111b76000611f3c565b565b6111c16118f5565b600090815260106020526040902055565b60606111de600c611f8e565b905090565b6111eb6118f5565b6111f58282611f9b565b5050565b6111f5338383611ff8565b3233146112235760405162461bcd60e51b81526004016109aa906130cf565b6002600954036112455760405162461bcd60e51b81526004016109aa90613106565b600260095560125460ff1661126c5760405162461bcd60e51b81526004016109aa9061313d565b60008052600a60209081527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e354825160039092527f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff5490916112cd91613177565b11156112eb5760405162461bcd60e51b81526004016109aa9061318a565b60005b81518110156114ea577f0000000000000000000000004af790223169a8621095871375f79425725d22c96001600160a01b0316636352211e8383815181106113385761133861323f565b60200260200101516040518263ffffffff1660e01b815260040161135e91815260200190565b602060405180830381865afa15801561137b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061139f91906132cf565b6001600160a01b0316336001600160a01b0316146113ff5760405162461bcd60e51b815260206004820181905260248201527f796f7520646f206e6f742068617665207468697320487970655361696e74732160448201526064016109aa565b61142c8282815181106114145761141461323f565b6020026020010151600c6120d890919063ffffffff16565b1561148d5760405162461bcd60e51b815260206004820152602b60248201527f5468697320487970655361696e742068617320636c61696d65642067656e657360448201526a34b990243cb832a3b2b0b960a91b60648201526084016109aa565b6114aa336000600160405180602001604052806000815250611ac7565b6114d78282815181106114bf576114bf61323f565b6020026020010151600c6120f090919063ffffffff16565b50806114e281613255565b9150506112ee565b50506001600955565b6114fb6118f5565b6012805460ff1916911515919091179055565b32331461152d5760405162461bcd60e51b81526004016109aa906130cf565b60026009540361154f5760405162461bcd60e51b81526004016109aa90613106565b600260095560125460ff166115765760405162461bcd60e51b81526004016109aa9061313d565b604051627eeac760e11b8152336004820152602481018290527f000000000000000000000000b88a278c72fc84a3752a2bc3e85d5cbd86640abd6001600160a01b03169062fdd58e90604401602060405180830381865afa1580156115df573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160391906132ec565b6001146116525760405162461bcd60e51b815260206004820152601c60248201527f796f7520646f206e6f742068617665204879706547656172426f78210000000060448201526064016109aa565b80611678576116733360018060405180602001604052806000815250611ac7565b611695565b611695336002600160405180602001604052806000815250611ac7565b604051637a94c56560e11b815233600482015260248101829052600160448201527f000000000000000000000000b88a278c72fc84a3752a2bc3e85d5cbd86640abd6001600160a01b03169063f5298aca90606401600060405180830381600087803b15801561170457600080fd5b505af1158015611718573d6000803e3d6000fd5b50506001600955505050565b61172c6118f5565b60005b835181101561177e5761176c84828151811061174d5761174d61323f565b6020026020010151838560405180602001604052806000815250611ac7565b8061177681613255565b91505061172f565b50505050565b61178c6118f5565b601455565b6117996118f5565b601555565b6001600160a01b0385163314806117ba57506117ba8533610849565b6117d65760405162461bcd60e51b81526004016109aa906131f0565b610d1085858585856120fc565b6117eb6118f5565b6001600160a01b0381166118505760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109aa565b6109f881611f3c565b6001600160a01b03831633148061187557506118758333610849565b6118915760405162461bcd60e51b81526004016109aa90613281565b6111a0838383612234565b6118a46118f5565b60009182526011602052604090912055565b6118be6118f5565b6000918252600a602052604090912055565b60006001600160e01b0319821663152a902d60e11b14806109d657506109d68261234c565b6008546001600160a01b031633146111b75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109aa565b60046111f58282613385565b60008181526005602052604081208054606092919061197990613305565b80601f01602080910402602001604051908101604052809291908181526020018280546119a590613305565b80156119f25780601f106119c7576101008083540402835291602001916119f2565b820191906000526020600020905b8154815290600101906020018083116119d557829003601f168201915b505050505090506000815111611a1057611a0b8361239c565b611a34565b600481604051602001611a24929190613444565b6040516020818303038152906040525b9392505050565b6000611abe611a83866040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250879250612430915050565b95945050505050565b6001600160a01b038416611b275760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109aa565b336000611b3385612453565b90506000611b4085612453565b9050611b518360008985858961249e565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290611b81908490613177565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611be1836000898989896124ac565b50505050505050565b8151835114611c0b5760405162461bcd60e51b81526004016109aa906134cb565b6001600160a01b038416611c315760405162461bcd60e51b81526004016109aa90613513565b33611c4081878787878761249e565b60005b8451811015611d26576000858281518110611c6057611c6061323f565b602002602001015190506000858381518110611c7e57611c7e61323f565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611cce5760405162461bcd60e51b81526004016109aa90613558565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611d0b908490613177565b9250508190555050505080611d1f90613255565b9050611c43565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611d769291906135a2565b60405180910390a4611d8c818787878787612607565b505050505050565b6000611a348284613177565b6001600160a01b038316611dc65760405162461bcd60e51b81526004016109aa906135c7565b8051825114611de75760405162461bcd60e51b81526004016109aa906134cb565b6000339050611e0a8185600086866040518060200160405280600081525061249e565b60005b8351811015611ecf576000848281518110611e2a57611e2a61323f565b602002602001015190506000848381518110611e4857611e4861323f565b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015611e985760405162461bcd60e51b81526004016109aa9061360a565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580611ec781613255565b915050611e0d565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611f209291906135a2565b60405180910390a460408051602081019091526000905261177e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60606000611a34836126c2565b6000828152600560205260409020611fb38282613385565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b611fdf846109fb565b604051611fec9190612b35565b60405180910390a25050565b816001600160a01b0316836001600160a01b03160361206b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016109aa565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60008181526001830160205260408120541515611a34565b6000611a34838361271d565b6001600160a01b0384166121225760405162461bcd60e51b81526004016109aa90613513565b33600061212e85612453565b9050600061213b85612453565b905061214b83898985858961249e565b6000868152602081815260408083206001600160a01b038c1684529091529020548581101561218c5760405162461bcd60e51b81526004016109aa90613558565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906121c9908490613177565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612229848a8a8a8a8a6124ac565b505050505050505050565b6001600160a01b03831661225a5760405162461bcd60e51b81526004016109aa906135c7565b33600061226684612453565b9050600061227384612453565b90506122938387600085856040518060200160405280600081525061249e565b6000858152602081815260408083206001600160a01b038a168452909152902054848110156122d45760405162461bcd60e51b81526004016109aa9061360a565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4604080516020810190915260009052611be1565b60006001600160e01b03198216636cdb3d1360e11b148061237d57506001600160e01b031982166303a24d0760e21b145b806109d657506301ffc9a760e01b6001600160e01b03198316146109d6565b6060600280546123ab90613305565b80601f01602080910402602001604051908101604052809291908181526020018280546123d790613305565b80156124245780601f106123f957610100808354040283529160200191612424565b820191906000526020600020905b81548152906001019060200180831161240757829003601f168201915b50505050509050919050565b60008181526010602052604081205461244b9084908661276c565b949350505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061248d5761248d61323f565b602090810291909101015292915050565b611d8c868686868686612782565b6001600160a01b0384163b15611d8c5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906124f0908990899088908890889060040161364e565b6020604051808303816000875af192505050801561252b575060408051601f3d908101601f1916820190925261252891810190613693565b60015b6125d7576125376136b0565b806308c379a003612570575061254b6136cc565b806125565750612572565b8060405162461bcd60e51b81526004016109aa9190612b35565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016109aa565b6001600160e01b0319811663f23a6e6160e01b14611be15760405162461bcd60e51b81526004016109aa90613755565b6001600160a01b0384163b15611d8c5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061264b908990899088908890889060040161379d565b6020604051808303816000875af1925050508015612686575060408051601f3d908101601f1916820190925261268391810190613693565b60015b612692576125376136b0565b6001600160e01b0319811663bc197c8160e01b14611be15760405162461bcd60e51b81526004016109aa90613755565b60608160000180548060200260200160405190810160405280929190818152602001828054801561242457602002820191906000526020600020905b8154815260200190600101908083116126fe5750505050509050919050565b6000818152600183016020526040812054612764575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556109d6565b5060006109d6565b60008261277985846128fb565b14949350505050565b6001600160a01b0385166128095760005b8351811015612807578281815181106127ae576127ae61323f565b6020026020010151600360008684815181106127cc576127cc61323f565b6020026020010151815260200190815260200160002060008282546127f19190613177565b90915550612800905081613255565b9050612793565b505b6001600160a01b038416611d8c5760005b8351811015611be15760008482815181106128375761283761323f565b6020026020010151905060008483815181106128555761285561323f565b60200260200101519050600060036000848152602001908152602001600020549050818110156128d85760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b60648201526084016109aa565b600092835260036020526040909220910390556128f481613255565b905061281a565b600081815b8451811015610ef65761292c8286838151811061291f5761291f61323f565b6020026020010151612940565b91508061293881613255565b915050612900565b600081831061295c576000828152602084905260409020611a34565b6000838152602083905260409020611a34565b6001600160a01b03811681146109f857600080fd5b6000806040838503121561299757600080fd5b82356129a28161296f565b946020939093013593505050565b6001600160e01b0319811681146109f857600080fd5b6000602082840312156129d857600080fd5b8135611a34816129b0565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715612a1e57612a1e6129e3565b6040525050565b600082601f830112612a3657600080fd5b81356001600160401b03811115612a4f57612a4f6129e3565b604051612a66601f8301601f1916602001826129f9565b818152846020838601011115612a7b57600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215612aaa57600080fd5b81356001600160401b03811115612ac057600080fd5b61244b84828501612a25565b600060208284031215612ade57600080fd5b5035919050565b60005b83811015612b00578181015183820152602001612ae8565b50506000910152565b60008151808452612b21816020860160208601612ae5565b601f01601f19169290920160200192915050565b602081526000611a346020830184612b09565b600080600060408486031215612b5d57600080fd5b83356001600160401b0380821115612b7457600080fd5b818601915086601f830112612b8857600080fd5b813581811115612b9757600080fd5b8760208260051b8501011115612bac57600080fd5b6020928301989097509590910135949350505050565b60008060408385031215612bd557600080fd5b50508035926020909101359150565b60006001600160401b03821115612bfd57612bfd6129e3565b5060051b60200190565b600082601f830112612c1857600080fd5b81356020612c2582612be4565b604051612c3282826129f9565b83815260059390931b8501820192828101915086841115612c5257600080fd5b8286015b84811015612c6d5780358352918301918301612c56565b509695505050505050565b600080600080600060a08688031215612c9057600080fd5b8535612c9b8161296f565b94506020860135612cab8161296f565b935060408601356001600160401b0380821115612cc757600080fd5b612cd389838a01612c07565b94506060880135915080821115612ce957600080fd5b612cf589838a01612c07565b93506080880135915080821115612d0b57600080fd5b50612d1888828901612a25565b9150509295509295909350565b600082601f830112612d3657600080fd5b81356020612d4382612be4565b604051612d5082826129f9565b83815260059390931b8501820192828101915086841115612d7057600080fd5b8286015b84811015612c6d578035612d878161296f565b8352918301918301612d74565b60008060408385031215612da757600080fd5b82356001600160401b0380821115612dbe57600080fd5b612dca86838701612d25565b93506020850135915080821115612de057600080fd5b50612ded85828601612c07565b9150509250929050565b600081518084526020808501945080840160005b83811015612e2757815187529582019590820190600101612e0b565b509495945050505050565b602081526000611a346020830184612df7565b80358015158114612e5557600080fd5b919050565b600060208284031215612e6c57600080fd5b611a3482612e45565b600080600060608486031215612e8a57600080fd5b8335612e958161296f565b925060208401356001600160401b0380821115612eb157600080fd5b612ebd87838801612c07565b93506040860135915080821115612ed357600080fd5b50612ee086828701612c07565b9150509250925092565b60008060408385031215612efd57600080fd5b8235915060208301356001600160401b03811115612f1a57600080fd5b612ded85828601612a25565b60008060408385031215612f3957600080fd5b8235612f448161296f565b9150612f5260208401612e45565b90509250929050565b600060208284031215612f6d57600080fd5b81356001600160401b03811115612f8357600080fd5b61244b84828501612c07565b600080600060608486031215612fa457600080fd5b83356001600160401b03811115612fba57600080fd5b612fc686828701612d25565b9660208601359650604090950135949350505050565b60008060408385031215612fef57600080fd5b8235612ffa8161296f565b9150602083013561300a8161296f565b809150509250929050565b600080600080600060a0868803121561302d57600080fd5b85356130388161296f565b945060208601356130488161296f565b9350604086013592506060860135915060808601356001600160401b0381111561307157600080fd5b612d1888828901612a25565b60006020828403121561308f57600080fd5b8135611a348161296f565b6000806000606084860312156130af57600080fd5b83356130ba8161296f565b95602085013595506040909401359392505050565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600a90820152694e6f742061637469766560b01b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b808201808211156109d6576109d6613161565b60208082526013908201527213585e081cdd5c1c1b1e48195e18d959591959606a1b604082015260600190565b80820281158282048414176109d6576109d6613161565b6000826131eb57634e487b7160e01b600052601260045260246000fd5b500490565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b60006001820161326757613267613161565b5060010190565b818103818111156109d6576109d6613161565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b6000602082840312156132e157600080fd5b8151611a348161296f565b6000602082840312156132fe57600080fd5b5051919050565b600181811c9082168061331957607f821691505b60208210810361333957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156111a057600081815260208120601f850160051c810160208610156133665750805b601f850160051c820191505b81811015611d8c57828155600101613372565b81516001600160401b0381111561339e5761339e6129e3565b6133b2816133ac8454613305565b8461333f565b602080601f8311600181146133e757600084156133cf5750858301515b600019600386901b1c1916600185901b178555611d8c565b600085815260208120601f198616915b82811015613416578886015182559484019460019091019084016133f7565b50858210156134345787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600080845461345281613305565b6001828116801561346a576001811461347f576134ae565b60ff19841687528215158302870194506134ae565b8860005260208060002060005b858110156134a55781548a82015290840190820161348c565b50505082870194505b5050505083516134c2818360208801612ae5565b01949350505050565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006135b56040830185612df7565b8281036020840152611abe8185612df7565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061368890830184612b09565b979650505050505050565b6000602082840312156136a557600080fd5b8151611a34816129b0565b600060033d11156136c95760046000803e5060005160e01c5b90565b600060443d10156136da5790565b6040516003193d81016004833e81513d6001600160401b03816024840111818411171561370957505050505090565b82850191508151818111156137215750505050505090565b843d870101602082850101111561373b5750505050505090565b61374a602082860101876129f9565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a0604082018190526000906137c990830186612df7565b82810360608401526137db8186612df7565b905082810360808401526137ef8185612b09565b9897505050505050505056fea264697066735822122062458445869485900d1e7e7999fe246f110c63b3fba720456760e6ff4fd25b3a64736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000b88a278c72fc84a3752a2bc3e85d5cbd86640abd0000000000000000000000004af790223169a8621095871375f79425725d22c9000000000000000000000000d51dbc55d776ce51babc3d9079c025169763a9e600000000000000000000000000000000000000000000000000000000000000320000000000000000000000000000000000000000000000000000000000000180000000000000000000000000d51dbc55d776ce51babc3d9079c025169763a9e600000000000000000000000000000000000000000000000000000000000000084879706547656172000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000248470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): HypeGear
Arg [1] : symbol_ (string): HG
Arg [2] : _hypeGearBox (address): 0xb88A278C72Fc84a3752a2BC3E85d5cBD86640Abd
Arg [3] : _hypeSaints (address): 0x4aF790223169a8621095871375f79425725d22C9
Arg [4] : royalty_ (address): 0xD51dbC55D776Ce51BaBc3d9079c025169763a9e6
Arg [5] : royaltyFee_ (uint96): 50
Arg [6] : uri_ (string):
Arg [7] : _withdrawAddress (address): 0xD51dbC55D776Ce51BaBc3d9079c025169763a9e6

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 000000000000000000000000b88a278c72fc84a3752a2bc3e85d5cbd86640abd
Arg [3] : 0000000000000000000000004af790223169a8621095871375f79425725d22c9
Arg [4] : 000000000000000000000000d51dbc55d776ce51babc3d9079c025169763a9e6
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [7] : 000000000000000000000000d51dbc55d776ce51babc3d9079c025169763a9e6
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [9] : 4879706547656172000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [11] : 4847000000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

94463:8079:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99403:83;;;;;;;;;;-1:-1:-1;99471:7:0;;;;99403:83;;;179:14:1;;172:22;154:41;;142:2;127:18;99403:83:0;;;;;;;;73427:230;;;;;;;;;;-1:-1:-1;73427:230:0;;;;;:::i;:::-;;:::i;:::-;;;808:25:1;;;796:2;781:18;73427:230:0;662:177:1;102139:212:0;;;;;;;;;;-1:-1:-1;102139:212:0;;;;;:::i;:::-;;:::i;101400:97::-;;;;;;;;;;-1:-1:-1;101400:97:0;;;;;:::i;:::-;;:::i;:::-;;95379:29;;;;;;;;;;;;;;;;100778:109;;;;;;;;;;-1:-1:-1;100778:109:0;;;;;:::i;:::-;100834:7;100861:18;;;:13;:18;;;;;;;100778:109;101639:155;;;;;;;;;;-1:-1:-1;101639:155:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;95628:48::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3807:32:1;;;3789:51;;3777:2;3762:18;95628:48:0;3627:219:1;98811:580:0;;;;;;:::i;:::-;;:::i;61076:442::-;;;;;;;;;;-1:-1:-1;61076:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4990:32:1;;;4972:51;;5054:2;5039:18;;5032:34;;;;4945:18;61076:442:0;4798:274:1;75371:439:0;;;;;;;;;;-1:-1:-1;75371:439:0;;;;;:::i;:::-;;:::i;102359:178::-;;;;;;;;;;;;;:::i;94890:32::-;;;;;;;;;;;;94921:1;94890:32;;95315:19;;;;;;;;;;-1:-1:-1;95315:19:0;;;;;;;;73823:524;;;;;;;;;;-1:-1:-1;73823:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;92052:122::-;;;;;;;;;;-1:-1:-1;92052:122:0;;;;;:::i;:::-;92109:4;91930:16;;;:12;:16;;;;;;-1:-1:-1;;;92052:122:0;99588:226;;;;;;;;;;-1:-1:-1;99588:226:0;;;;;:::i;:::-;;:::i;97167:580::-;;;;;;;;;;;;;:::i;100290:104::-;;;;;;;;;;-1:-1:-1;100290:104:0;;;;;:::i;:::-;100345:7;100372:14;;;:9;:14;;;;;;;100290:104;95417:26;;;;;;;;;;;;;;;;93967:358;;;;;;;;;;-1:-1:-1;93967:358:0;;;;;:::i;:::-;;:::i;42181:103::-;;;;;;;;;;;;;:::i;100640:126::-;;;;;;;;;;-1:-1:-1;100640:126:0;;;;;:::i;:::-;;:::i;95343:27::-;;;;;;;;;;-1:-1:-1;95343:27:0;;;;;;;;;;;100056:108;;;;;;;;;;;;;:::i;101505:126::-;;;;;;;;;;-1:-1:-1;101505:126:0;;;;;:::i;:::-;;:::i;94971:44::-;;;;;;;;;;-1:-1:-1;94971:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;41533:87;;;;;;;;;;-1:-1:-1;41606:6:0;;-1:-1:-1;;;;;41606:6:0;41533:87;;74420:155;;;;;;;;;;-1:-1:-1;74420:155:0;;;;;:::i;:::-;;:::i;97755:610::-;;;;;;;;;;-1:-1:-1;97755:610:0;;;;;:::i;:::-;;:::i;99494:86::-;;;;;;;;;;-1:-1:-1;99494:86:0;;;;;:::i;:::-;;:::i;94847:34::-;;;;;;;;;;;;94880:1;94847:34;;98373:426;;;;;;;;;;-1:-1:-1;98373:426:0;;;;;:::i;:::-;;:::i;95452:27::-;;;;;;;;;;;;;;;;96670:255;;;;;;;;;;-1:-1:-1;96670:255:0;;;;;:::i;:::-;-1:-1:-1;;;96670:255:0;;;;;;;;;;;-1:-1:-1;;;;;;11957:33:1;;;11939:52;;11927:2;11912:18;96670:255:0;11795:202:1;91841:113:0;;;;;;;;;;-1:-1:-1;91841:113:0;;;;;:::i;:::-;91903:7;91930:16;;;:12;:16;;;;;;;91841:113;96943:216;;;;;;;;;;-1:-1:-1;96943:216:0;;;;;:::i;:::-;;:::i;99822:107::-;;;;;;;;;;-1:-1:-1;99822:107:0;;;;;:::i;:::-;;:::i;99937:111::-;;;;;;;;;;-1:-1:-1;99937:111:0;;;;;:::i;:::-;;:::i;100516:99::-;;;;;;;;;;-1:-1:-1;100516:99:0;;;;;:::i;:::-;100567:7;100594:13;;;:8;:13;;;;;;;100516:99;74647:168;;;;;;;;;;-1:-1:-1;74647:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;74770:27:0;;;74746:4;74770:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;74647:168;96435:227;;;;;;;;;;-1:-1:-1;96435:227:0;;;;;:::i;:::-;-1:-1:-1;;;96435:227:0;;;;;;;;74887:407;;;;;;;;;;-1:-1:-1;74887:407:0;;;;;:::i;:::-;;:::i;42439:201::-;;;;;;;;;;-1:-1:-1;42439:201:0;;;;;:::i;:::-;;:::i;93633:326::-;;;;;;;;;;-1:-1:-1;93633:326:0;;;;;:::i;:::-;;:::i;100402:106::-;;;;;;;;;;-1:-1:-1;100402:106:0;;;;;:::i;:::-;;:::i;100172:110::-;;;;;;;;;;-1:-1:-1;100172:110:0;;;;;:::i;:::-;;:::i;73427:230::-;73513:7;-1:-1:-1;;;;;73541:21:0;;73533:76;;;;-1:-1:-1;;;73533:76:0;;14466:2:1;73533:76:0;;;14448:21:1;14505:2;14485:18;;;14478:30;14544:34;14524:18;;;14517:62;-1:-1:-1;;;14595:18:1;;;14588:40;14645:19;;73533:76:0;;;;;;;;;-1:-1:-1;73627:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;73627:22:0;;;;;;;;;;73427:230;;;;;:::o;102139:212::-;102278:4;102307:36;102331:11;102307:23;:36::i;101400:97::-;41419:13;:11;:13::i;:::-;101466:23:::1;101484:4;101466:17;:23::i;:::-;101400:97:::0;:::o;101639:155::-;101727:13;101756:30;101778:7;101756:21;:30::i;98811:580::-;96349:9;96362:10;96349:23;96341:66;;;;-1:-1:-1;;;96341:66:0;;;;;;;:::i;:::-;27236:1:::1;27834:7;;:19:::0;27826:63:::1;;;;-1:-1:-1::0;;;27826:63:0::1;;;;;;;:::i;:::-;27236:1;27967:7;:18:::0;98935:7:::2;::::0;::::2;;98927:30;;;;-1:-1:-1::0;;;98927:30:0::2;;;;;;;:::i;:::-;98976:13;::::0;;;:8:::2;:13;::::0;;;;;98993:9:::2;-1:-1:-1::0;98976:26:0::2;98968:68;;;::::0;-1:-1:-1;;;98968:68:0;;15935:2:1;98968:68:0::2;::::0;::::2;15917:21:1::0;15974:2;15954:18;;;15947:30;16013:31;15993:18;;;15986:59;16062:18;;98968:68:0::2;15733:353:1::0;98968:68:0::2;99055:37;99069:10;99081:6;;99088:3;99055:13;:37::i;:::-;99047:65;;;::::0;-1:-1:-1;;;99047:65:0;;16293:2:1;99047:65:0::2;::::0;::::2;16275:21:1::0;16332:2;16312:18;;;16305:30;-1:-1:-1;;;16351:18:1;;;16344:45;16406:18;;99047:65:0::2;16091:339:1::0;99047:65:0::2;99138:10;99131:18;::::0;;;:6:::2;:18;::::0;;;;;;;:23;;;;;;;;;99157:1:::2;-1:-1:-1::0;99123:87:0::2;;;::::0;-1:-1:-1;;;99123:87:0;;16637:2:1;99123:87:0::2;::::0;::::2;16619:21:1::0;16676:2;16656:18;;;16649:30;16715:34;16695:18;;;16688:62;-1:-1:-1;;;16766:18:1;;;16759:45;16821:19;;99123:87:0::2;16435:411:1::0;99123:87:0::2;99255:14;::::0;;;:9:::2;:14;::::0;;;;;;;;91930:12;:16;;;;;;;99229:22:::2;::::0;94961:1:::2;::::0;99229:22:::2;:::i;:::-;:40;;99221:72;;;;-1:-1:-1::0;;;99221:72:0::2;;;;;;;:::i;:::-;99306:29;99312:10;99324:3;94961:1;99306:29;;;;;;;;;;;::::0;:5:::2;:29::i;:::-;99353:10;99346:18;::::0;;;:6:::2;:18;::::0;;;;;;;:23;;;;;;;99372:1:::2;99346:27:::0;;;;28146:7:::1;:22:::0;-1:-1:-1;;98811:580:0:o;61076:442::-;61173:7;61231:27;;;:17;:27;;;;;;;;61202:56;;;;;;;;;-1:-1:-1;;;;;61202:56:0;;;;;-1:-1:-1;;;61202:56:0;;;-1:-1:-1;;;;;61202:56:0;;;;;;;;61173:7;;61271:92;;-1:-1:-1;61322:29:0;;;;;;;;;61332:19;61322:29;-1:-1:-1;;;;;61322:29:0;;;;-1:-1:-1;;;61322:29:0;;-1:-1:-1;;;;;61322:29:0;;;;;61271:92;61413:23;;;;61375:21;;61884:5;;61400:36;;-1:-1:-1;;;;;61400:36:0;:10;:36;:::i;:::-;61399:58;;;;:::i;:::-;61478:16;;;;;-1:-1:-1;61076:442:0;;-1:-1:-1;;;;61076:442:0:o;75371:439::-;-1:-1:-1;;;;;75604:20:0;;40164:10;75604:20;;:60;;-1:-1:-1;75628:36:0;75645:4;40164:10;74647:168;:::i;75628:36::-;75582:157;;;;-1:-1:-1;;;75582:157:0;;;;;;;:::i;:::-;75750:52;75773:4;75779:2;75783:3;75788:7;75797:4;75750:22;:52::i;:::-;75371:439;;;;;:::o;102359:178::-;41419:13;:11;:13::i;:::-;102410:12:::1;102428:15;-1:-1:-1::0;;;;;102428:20:0::1;102456:21;102428:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102409:73;;;102501:7;102493:36;;;::::0;-1:-1:-1;;;102493:36:0;;18684:2:1;102493:36:0::1;::::0;::::1;18666:21:1::0;18723:2;18703:18;;;18696:30;-1:-1:-1;;;18742:18:1;;;18735:46;18798:18;;102493:36:0::1;18482:340:1::0;73823:524:0;73979:16;74040:3;:10;74021:8;:15;:29;74013:83;;;;-1:-1:-1;;;74013:83:0;;19029:2:1;74013:83:0;;;19011:21:1;19068:2;19048:18;;;19041:30;19107:34;19087:18;;;19080:62;-1:-1:-1;;;19158:18:1;;;19151:39;19207:19;;74013:83:0;18827:405:1;74013:83:0;74109:30;74156:8;:15;-1:-1:-1;;;;;74142:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;74142:30:0;;74109:63;;74190:9;74185:122;74209:8;:15;74205:1;:19;74185:122;;;74265:30;74275:8;74284:1;74275:11;;;;;;;;:::i;:::-;;;;;;;74288:3;74292:1;74288:6;;;;;;;;:::i;:::-;;;;;;;74265:9;:30::i;:::-;74246:13;74260:1;74246:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;74226:3;;;:::i;:::-;;;74185:122;;;-1:-1:-1;74326:13:0;73823:524;-1:-1:-1;;;73823:524:0:o;99588:226::-;41419:13;:11;:13::i;:::-;99667:15:::1;:33:::0;;;::::1;::::0;::::1;;;-1:-1:-1::0;;99667:33:0;;::::1;::::0;;;::::1;::::0;;;99711:86:::1;;99764:14;::::0;:21:::1;::::0;99783:1:::1;99764:18;:21::i;:::-;99747:14;:38:::0;99588:226;:::o;97167:580::-;27236:1;27834:7;;:19;27826:63;;;;-1:-1:-1;;;27826:63:0;;;;;;;:::i;:::-;27236:1;27967:7;:18;97228:15:::1;::::0;::::1;::::0;::::1;;;97220:48;;;::::0;-1:-1:-1;;;97220:48:0;;19711:2:1;97220:48:0::1;::::0;::::1;19693:21:1::0;19750:2;19730:18;;;19723:30;-1:-1:-1;;;19769:18:1;;;19762:50;19829:18;;97220:48:0::1;19509:344:1::0;97220:48:0::1;97301:1;97287:11;;:15;97279:51;;;::::0;-1:-1:-1;;;97279:51:0;;20060:2:1;97279:51:0::1;::::0;::::1;20042:21:1::0;20099:2;20079:18;;;20072:30;20138:26;20118:18;;;20111:54;20182:18;;97279:51:0::1;19858:348:1::0;97279:51:0::1;97364:1;97349:12;;:16;97341:58;;;::::0;-1:-1:-1;;;97341:58:0;;20413:2:1;97341:58:0::1;::::0;::::1;20395:21:1::0;20452:2;20432:18;;;20425:30;20491:32;20471:18;;;20464:60;20541:18;;97341:58:0::1;20211:354:1::0;97341:58:0::1;97431:14;::::0;97419:27:::1;::::0;;;:11:::1;:27;::::0;;;;;;;97447:10:::1;97419:39:::0;;;;;;;;::::1;;97418:40;97410:73;;;::::0;-1:-1:-1;;;97410:73:0;;20772:2:1;97410:73:0::1;::::0;::::1;20754:21:1::0;20811:2;20791:18;;;20784:30;-1:-1:-1;;;20830:18:1;;;20823:51;20891:18;;97410:73:0::1;20570:345:1::0;97410:73:0::1;97546:11;::::0;97536:22:::1;::::0;;;:9:::1;:22;::::0;;;;;;;;91930:12;:16;;;;;;;97502:30:::1;::::0;94961:1:::1;::::0;97502:30:::1;:::i;:::-;:56;;97494:88;;;;-1:-1:-1::0;;;97494:88:0::1;;;;;;;:::i;:::-;97603:37;97609:10;97621:11;;94961:1;97603:37;;;;;;;;;;;::::0;:5:::1;:37::i;:::-;97681:1;97666:12;;:16;;;;:::i;:::-;97651:12;:31:::0;97705:14:::1;::::0;97693:27:::1;::::0;;;:11:::1;:27;::::0;;;;;;;97721:10:::1;97693:39:::0;;;;;;;:46;;-1:-1:-1;;97693:46:0::1;97735:4;97693:46:::0;;::::1;::::0;;;28146:7;:22;97167:580::o;93967:358::-;-1:-1:-1;;;;;94132:23:0;;40164:10;94132:23;;:66;;-1:-1:-1;94159:39:0;94176:7;40164:10;74647:168;:::i;94159:39::-;94110:162;;;;-1:-1:-1;;;94110:162:0;;;;;;;:::i;:::-;94285:32;94296:7;94305:3;94310:6;94285:10;:32::i;:::-;93967:358;;;:::o;42181:103::-;41419:13;:11;:13::i;:::-;42246:30:::1;42273:1;42246:18;:30::i;:::-;42181:103::o:0;100640:126::-;41419:13;:11;:13::i;:::-;100726:18:::1;::::0;;;:13:::1;:18;::::0;;;;:32;100640:126::o;100056:108::-;100101:16;100137:19;:10;:17;:19::i;:::-;100130:26;;100056:108;:::o;101505:126::-;41419:13;:11;:13::i;:::-;101592:31:::1;101606:7;101614:8;101592:13;:31::i;:::-;101505:126:::0;;:::o;74420:155::-;74515:52;40164:10;74548:8;74558;74515:18;:52::i;97755:610::-;96349:9;96362:10;96349:23;96341:66;;;;-1:-1:-1;;;96341:66:0;;;;;;;:::i;:::-;27236:1:::1;27834:7;;:19:::0;27826:63:::1;;;;-1:-1:-1::0;;;27826:63:0::1;;;;;;;:::i;:::-;27236:1;27967:7;:18:::0;97862:7:::2;::::0;::::2;;97854:30;;;;-1:-1:-1::0;;;97854:30:0::2;;;;;;;:::i;:::-;97944:12;::::0;;:9:::2;:12;::::0;;;;;97920:20;;91930:12;:16;;;;;97944:12;;97903:37:::2;::::0;::::2;:::i;:::-;:53;;97895:85;;;;-1:-1:-1::0;;;97895:85:0::2;;;;;;;:::i;:::-;97996:9;97991:367;98015:13;:20;98011:1;:24;97991:367;;;98079:11;-1:-1:-1::0;;;;;98079:19:0::2;;98099:13;98113:1;98099:16;;;;;;;;:::i;:::-;;;;;;;98079:37;;;;;;;;;;;;;808:25:1::0;;796:2;781:18;;662:177;98079:37:0::2;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;98065:51:0::2;:10;-1:-1:-1::0;;;;;98065:51:0::2;;98057:95;;;::::0;-1:-1:-1;;;98057:95:0;;21926:2:1;98057:95:0::2;::::0;::::2;21908:21:1::0;;;21945:18;;;21938:30;22004:34;21984:18;;;21977:62;22056:18;;98057:95:0::2;21724:356:1::0;98057:95:0::2;98176:37;98196:13;98210:1;98196:16;;;;;;;;:::i;:::-;;;;;;;98176:10;:19;;:37;;;;:::i;:::-;98175:38;98167:93;;;::::0;-1:-1:-1;;;98167:93:0;;22287:2:1;98167:93:0::2;::::0;::::2;22269:21:1::0;22326:2;22306:18;;;22299:30;22365:34;22345:18;;;22338:62;-1:-1:-1;;;22416:18:1;;;22409:41;22467:19;;98167:93:0::2;22085:407:1::0;98167:93:0::2;98275:24;98281:10;98292:1;98294;98275:24;;;;;;;;;;;::::0;:5:::2;:24::i;:::-;98314:32;98329:13;98343:1;98329:16;;;;;;;;:::i;:::-;;;;;;;98314:10;:14;;:32;;;;:::i;:::-;-1:-1:-1::0;98037:3:0;::::2;::::0;::::2;:::i;:::-;;;;97991:367;;;-1:-1:-1::0;;27192:1:0::1;28146:7;:22:::0;97755:610::o;99494:86::-;41419:13;:11;:13::i;:::-;99556:7:::1;:16:::0;;-1:-1:-1;;99556:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;99494:86::o;98373:426::-;96349:9;96362:10;96349:23;96341:66;;;;-1:-1:-1;;;96341:66:0;;;;;;;:::i;:::-;27236:1:::1;27834:7;;:19:::0;27826:63:::1;;;;-1:-1:-1::0;;;27826:63:0::1;;;;;;;:::i;:::-;27236:1;27967:7;:18:::0;98462:7:::2;::::0;::::2;;98454:30;;;;-1:-1:-1::0;;;98454:30:0::2;;;;;;;:::i;:::-;98503:44;::::0;-1:-1:-1;;;98503:44:0;;98527:10:::2;98503:44;::::0;::::2;4972:51:1::0;5039:18;;;5032:34;;;98503:13:0::2;-1:-1:-1::0;;;;;98503:23:0::2;::::0;::::2;::::0;4945:18:1;;98503:44:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;98551:1;98503:49;98495:89;;;::::0;-1:-1:-1;;;98495:89:0;;22888:2:1;98495:89:0::2;::::0;::::2;22870:21:1::0;22927:2;22907:18;;;22900:30;22966;22946:18;;;22939:58;23014:18;;98495:89:0::2;22686:352:1::0;98495:89:0::2;98601:8:::0;98597:132:::2;;98636:24;98642:10;98653:1;98655::::0;98636:24:::2;;;;;;;;;;;::::0;:5:::2;:24::i;:::-;98597:132;;;98693:24;98699:10;98710:1;98712;98693:24;;;;;;;;;;;::::0;:5:::2;:24::i;:::-;98750:41;::::0;-1:-1:-1;;;98750:41:0;;98769:10:::2;98750:41;::::0;::::2;23253:51:1::0;23320:18;;;23313:34;;;98789:1:0::2;23363:18:1::0;;;23356:34;98750:13:0::2;-1:-1:-1::0;;;;;98750:18:0::2;::::0;::::2;::::0;23226::1;;98750:41:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;27192:1:0::1;28146:7;:22:::0;-1:-1:-1;;;98373:426:0:o;96943:216::-;41419:13;:11;:13::i;:::-;97057:9:::1;97052:100;97076:5;:12;97072:1;:16;97052:100;;;97110:30;97116:5;97122:1;97116:8;;;;;;;;:::i;:::-;;;;;;;97126:3;97130:6;97110:30;;;;;;;;;;;::::0;:5:::1;:30::i;:::-;97090:3:::0;::::1;::::0;::::1;:::i;:::-;;;;97052:100;;;;96943:216:::0;;;:::o;99822:107::-;41419:13;:11;:13::i;:::-;99896:11:::1;:25:::0;99822:107::o;99937:111::-;41419:13;:11;:13::i;:::-;100013:12:::1;:27:::0;99937:111::o;74887:407::-;-1:-1:-1;;;;;75095:20:0;;40164:10;75095:20;;:60;;-1:-1:-1;75119:36:0;75136:4;40164:10;74647:168;:::i;75119:36::-;75073:157;;;;-1:-1:-1;;;75073:157:0;;;;;;;:::i;:::-;75241:45;75259:4;75265:2;75269;75273:6;75281:4;75241:17;:45::i;42439:201::-;41419:13;:11;:13::i;:::-;-1:-1:-1;;;;;42528:22:0;::::1;42520:73;;;::::0;-1:-1:-1;;;42520:73:0;;23603:2:1;42520:73:0::1;::::0;::::1;23585:21:1::0;23642:2;23622:18;;;23615:30;23681:34;23661:18;;;23654:62;-1:-1:-1;;;23732:18:1;;;23725:36;23778:19;;42520:73:0::1;23401:402:1::0;42520:73:0::1;42604:28;42623:8;42604:18;:28::i;93633:326::-:0;-1:-1:-1;;;;;93773:23:0;;40164:10;93773:23;;:66;;-1:-1:-1;93800:39:0;93817:7;40164:10;74647:168;:::i;93800:39::-;93751:162;;;;-1:-1:-1;;;93751:162:0;;;;;;;:::i;:::-;93926:25;93932:7;93941:2;93945:5;93926;:25::i;100402:106::-;41419:13;:11;:13::i;:::-;100478::::1;::::0;;;:8:::1;:13;::::0;;;;;:22;100402:106::o;100172:110::-;41419:13;:11;:13::i;:::-;100250:14:::1;::::0;;;:9:::1;:14;::::0;;;;;:24;100172:110::o;60806:215::-;60908:4;-1:-1:-1;;;;;;60932:41:0;;-1:-1:-1;;;60932:41:0;;:81;;;60977:36;61001:11;60977:23;:36::i;41698:132::-;41606:6;;-1:-1:-1;;;;;41606:6:0;40164:10;41762:23;41754:68;;;;-1:-1:-1;;;41754:68:0;;24010:2:1;41754:68:0;;;23992:21:1;;;24029:18;;;24022:30;24088:34;24068:18;;;24061:62;24140:18;;41754:68:0;23808:356:1;90996:98:0;91068:8;:18;91079:7;91068:8;:18;:::i;90307:351::-;90401:22;90426:19;;;:10;:19;;;;;90401:44;;90375:13;;90401:22;90426:19;90401:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90581:1;90562:8;90556:22;:26;:94;;90632:18;90642:7;90632:9;:18::i;:::-;90556:94;;;90609:8;90619;90592:36;;;;;;;;;:::i;:::-;;;;;;;;;;;;;90556:94;90549:101;90307:351;-1:-1:-1;;;90307:351:0:o;100895:169::-;100997:4;101021:35;101029:14;101034:8;101163:26;;-1:-1:-1;;31502:2:1;31498:15;;;31494:53;101163:26:0;;;31482:66:1;101126:7:0;;31564:12:1;;101163:26:0;;;;;;;;;;;;101153:37;;;;;;101146:44;;101072:126;;;;101029:14;101045:6;;101021:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;101052:3:0;;-1:-1:-1;101021:7:0;;-1:-1:-1;;101021:35:0:i;:::-;101014:42;100895:169;-1:-1:-1;;;;;100895:169:0:o;80070:729::-;-1:-1:-1;;;;;80223:16:0;;80215:62;;;;-1:-1:-1;;;80215:62:0;;27985:2:1;80215:62:0;;;27967:21:1;28024:2;28004:18;;;27997:30;28063:34;28043:18;;;28036:62;-1:-1:-1;;;28114:18:1;;;28107:31;28155:19;;80215:62:0;27783:397:1;80215:62:0;40164:10;80290:16;80355:21;80373:2;80355:17;:21::i;:::-;80332:44;;80387:24;80414:25;80432:6;80414:17;:25::i;:::-;80387:52;;80452:66;80473:8;80491:1;80495:2;80499:3;80504:7;80513:4;80452:20;:66::i;:::-;80531:9;:13;;;;;;;;;;;-1:-1:-1;;;;;80531:17:0;;;;;;;;;:27;;80552:6;;80531:9;:27;;80552:6;;80531:27;:::i;:::-;;;;-1:-1:-1;;80574:52:0;;;28359:25:1;;;28415:2;28400:18;;28393:34;;;-1:-1:-1;;;;;80574:52:0;;;;80607:1;;80574:52;;;;;;28332:18:1;80574:52:0;;;;;;;80717:74;80748:8;80766:1;80770:2;80774;80778:6;80786:4;80717:30;:74::i;:::-;80204:595;;;80070:729;;;;:::o;77606:1146::-;77833:7;:14;77819:3;:10;:28;77811:81;;;;-1:-1:-1;;;77811:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;77911:16:0;;77903:66;;;;-1:-1:-1;;;77903:66:0;;;;;;;:::i;:::-;40164:10;78026:60;40164:10;78057:4;78063:2;78067:3;78072:7;78081:4;78026:20;:60::i;:::-;78104:9;78099:421;78123:3;:10;78119:1;:14;78099:421;;;78155:10;78168:3;78172:1;78168:6;;;;;;;;:::i;:::-;;;;;;;78155:19;;78189:14;78206:7;78214:1;78206:10;;;;;;;;:::i;:::-;;;;;;;;;;;;78233:19;78255:13;;;;;;;;;;-1:-1:-1;;;;;78255:19:0;;;;;;;;;;;;78206:10;;-1:-1:-1;78297:21:0;;;;78289:76;;;;-1:-1:-1;;;78289:76:0;;;;;;;:::i;:::-;78409:9;:13;;;;;;;;;;;-1:-1:-1;;;;;78409:19:0;;;;;;;;;;78431:20;;;78409:42;;78481:17;;;;;;;:27;;78431:20;;78409:9;78481:27;;78431:20;;78481:27;:::i;:::-;;;;;;;;78140:380;;;78135:3;;;;:::i;:::-;;;78099:421;;;;78567:2;-1:-1:-1;;;;;78537:47:0;78561:4;-1:-1:-1;;;;;78537:47:0;78551:8;-1:-1:-1;;;;;78537:47:0;;78571:3;78576:7;78537:47;;;;;;;:::i;:::-;;;;;;;;78669:75;78705:8;78715:4;78721:2;78725:3;78730:7;78739:4;78669:35;:75::i;:::-;77800:952;77606:1146;;;;;:::o;21259:98::-;21317:7;21344:5;21348:1;21344;:5;:::i;83371:969::-;-1:-1:-1;;;;;83523:18:0;;83515:66;;;;-1:-1:-1;;;83515:66:0;;;;;;;:::i;:::-;83614:7;:14;83600:3;:10;:28;83592:81;;;;-1:-1:-1;;;83592:81:0;;;;;;;:::i;:::-;83686:16;40164:10;83686:31;;83730:66;83751:8;83761:4;83775:1;83779:3;83784:7;83730:66;;;;;;;;;;;;:20;:66::i;:::-;83814:9;83809:373;83833:3;:10;83829:1;:14;83809:373;;;83865:10;83878:3;83882:1;83878:6;;;;;;;;:::i;:::-;;;;;;;83865:19;;83899:14;83916:7;83924:1;83916:10;;;;;;;;:::i;:::-;;;;;;;;;;;;83943:19;83965:13;;;;;;;;;;-1:-1:-1;;;;;83965:19:0;;;;;;;;;;;;83916:10;;-1:-1:-1;84007:21:0;;;;83999:70;;;;-1:-1:-1;;;83999:70:0;;;;;;;:::i;:::-;84113:9;:13;;;;;;;;;;;-1:-1:-1;;;;;84113:19:0;;;;;;;;;;84135:20;;84113:42;;83845:3;;;;:::i;:::-;;;;83809:373;;;;84237:1;-1:-1:-1;;;;;84199:55:0;84223:4;-1:-1:-1;;;;;84199:55:0;84213:8;-1:-1:-1;;;;;84199:55:0;;84241:3;84246:7;84199:55;;;;;;;:::i;:::-;;;;;;;;84267:65;;;;;;;;;84311:1;84267:65;;;77606:1146;42800:191;42893:6;;;-1:-1:-1;;;;;42910:17:0;;;-1:-1:-1;;;;;;42910:17:0;;;;;;;42943:40;;42893:6;;;42910:17;42893:6;;42943:40;;42874:16;;42943:40;42863:128;42800:191;:::o;18069:307::-;18129:16;18158:22;18183:19;18191:3;18183:7;:19::i;90743:166::-;90829:19;;;;:10;:19;;;;;:30;90851:8;90829:19;:30;:::i;:::-;;90893:7;90875:26;90879:12;90883:7;90879:3;:12::i;:::-;90875:26;;;;;;:::i;:::-;;;;;;;;90743:166;;:::o;84483:331::-;84638:8;-1:-1:-1;;;;;84629:17:0;:5;-1:-1:-1;;;;;84629:17:0;;84621:71;;;;-1:-1:-1;;;84621:71:0;;31145:2:1;84621:71:0;;;31127:21:1;31184:2;31164:18;;;31157:30;31223:34;31203:18;;;31196:62;-1:-1:-1;;;31274:18:1;;;31267:39;31323:19;;84621:71:0;30943:405:1;84621:71:0;-1:-1:-1;;;;;84703:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;84703:46:0;;;;;;;;;;84765:41;;154::1;;;84765::0;;127:18:1;84765:41:0;;;;;;;84483:331;;;:::o;16682:146::-;16759:4;9698:19;;;:12;;;:19;;;;;;:24;;16783:37;9601:129;16152:131;16219:4;16243:32;16248:3;16268:5;16243:4;:32::i;76274:974::-;-1:-1:-1;;;;;76462:16:0;;76454:66;;;;-1:-1:-1;;;76454:66:0;;;;;;;:::i;:::-;40164:10;76533:16;76598:21;76616:2;76598:17;:21::i;:::-;76575:44;;76630:24;76657:25;76675:6;76657:17;:25::i;:::-;76630:52;;76695:60;76716:8;76726:4;76732:2;76736:3;76741:7;76750:4;76695:20;:60::i;:::-;76768:19;76790:13;;;;;;;;;;;-1:-1:-1;;;;;76790:19:0;;;;;;;;;;76828:21;;;;76820:76;;;;-1:-1:-1;;;76820:76:0;;;;;;;:::i;:::-;76932:9;:13;;;;;;;;;;;-1:-1:-1;;;;;76932:19:0;;;;;;;;;;76954:20;;;76932:42;;76996:17;;;;;;;:27;;76954:20;;76932:9;76996:27;;76954:20;;76996:27;:::i;:::-;;;;-1:-1:-1;;77041:46:0;;;28359:25:1;;;28415:2;28400:18;;28393:34;;;-1:-1:-1;;;;;77041:46:0;;;;;;;;;;;;;;28332:18:1;77041:46:0;;;;;;;77172:68;77203:8;77213:4;77219:2;77223;77227:6;77235:4;77172:30;:68::i;:::-;76443:805;;;;76274:974;;;;;:::o;82313:808::-;-1:-1:-1;;;;;82440:18:0;;82432:66;;;;-1:-1:-1;;;82432:66:0;;;;;;;:::i;:::-;40164:10;82511:16;82576:21;82594:2;82576:17;:21::i;:::-;82553:44;;82608:24;82635:25;82653:6;82635:17;:25::i;:::-;82608:52;;82673:66;82694:8;82704:4;82718:1;82722:3;82727:7;82673:66;;;;;;;;;;;;:20;:66::i;:::-;82752:19;82774:13;;;;;;;;;;;-1:-1:-1;;;;;82774:19:0;;;;;;;;;;82812:21;;;;82804:70;;;;-1:-1:-1;;;82804:70:0;;;;;;;:::i;:::-;82910:9;:13;;;;;;;;;;;-1:-1:-1;;;;;82910:19:0;;;;;;;;;;;;82932:20;;;82910:42;;82981:54;;28359:25:1;;;28400:18;;;28393:34;;;82910:19:0;;82981:54;;;;;;28332:18:1;82981:54:0;;;;;;;83048:65;;;;;;;;;83092:1;83048:65;;;77606:1146;72450:310;72552:4;-1:-1:-1;;;;;;72589:41:0;;-1:-1:-1;;;72589:41:0;;:110;;-1:-1:-1;;;;;;;72647:52:0;;-1:-1:-1;;;72647:52:0;72589:110;:163;;;-1:-1:-1;;;;;;;;;;59365:40:0;;;72716:36;59256:157;73171:105;73231:13;73264:4;73257:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73171:105;;;:::o;101206:176::-;101297:4;101348:18;;;:13;:18;;;;;;101321:53;;101340:6;;101368:5;101321:18;:53::i;:::-;101314:60;101206:176;-1:-1:-1;;;;101206:176:0:o;88749:198::-;88869:16;;;88883:1;88869:16;;;;;;;;;88815;;88844:22;;88869:16;;;;;;;;;;;;-1:-1:-1;88869:16:0;88844:41;;88907:7;88896:5;88902:1;88896:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;88934:5;88749:198;-1:-1:-1;;88749:198:0:o;101802:329::-;102057:66;102084:8;102094:4;102100:2;102104:3;102109:7;102118:4;102057:26;:66::i;87176:744::-;-1:-1:-1;;;;;87391:13:0;;44526:19;:23;87387:526;;87427:72;;-1:-1:-1;;;87427:72:0;;-1:-1:-1;;;;;87427:38:0;;;;;:72;;87466:8;;87476:4;;87482:2;;87486:6;;87494:4;;87427:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;87427:72:0;;;;;;;;-1:-1:-1;;87427:72:0;;;;;;;;;;;;:::i;:::-;;;87423:479;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;87775:6;87768:14;;-1:-1:-1;;;87768:14:0;;;;;;;;:::i;87423:479::-;;;87824:62;;-1:-1:-1;;;87824:62:0;;33469:2:1;87824:62:0;;;33451:21:1;33508:2;33488:18;;;33481:30;33547:34;33527:18;;;33520:62;-1:-1:-1;;;33598:18:1;;;33591:50;33658:19;;87824:62:0;33267:416:1;87423:479:0;-1:-1:-1;;;;;;87549:55:0;;-1:-1:-1;;;87549:55:0;87545:154;;87629:50;;-1:-1:-1;;;87629:50:0;;;;;;;:::i;87928:813::-;-1:-1:-1;;;;;88168:13:0;;44526:19;:23;88164:570;;88204:79;;-1:-1:-1;;;88204:79:0;;-1:-1:-1;;;;;88204:43:0;;;;;:79;;88248:8;;88258:4;;88264:3;;88269:7;;88278:4;;88204:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;88204:79:0;;;;;;;;-1:-1:-1;;88204:79:0;;;;;;;;;;;;:::i;:::-;;;88200:523;;;;:::i;:::-;-1:-1:-1;;;;;;88365:60:0;;-1:-1:-1;;;88365:60:0;88361:159;;88450:50;;-1:-1:-1;;;88450:50:0;;;;;;;:::i;10949:111::-;11005:16;11041:3;:11;;11034:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10949:111;;;:::o;7505:414::-;7568:4;9698:19;;;:12;;;:19;;;;;;7585:327;;-1:-1:-1;7628:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;7811:18;;7789:19;;;:12;;;:19;;;;;;:40;;;;7844:11;;7585:327;-1:-1:-1;7895:5:0;7888:12;;29402:190;29527:4;29580;29551:25;29564:5;29571:4;29551:12;:25::i;:::-;:33;;29402:190;-1:-1:-1;;;;29402:190:0:o;92249:931::-;-1:-1:-1;;;;;92571:18:0;;92567:160;;92611:9;92606:110;92630:3;:10;92626:1;:14;92606:110;;;92690:7;92698:1;92690:10;;;;;;;;:::i;:::-;;;;;;;92666:12;:20;92679:3;92683:1;92679:6;;;;;;;;:::i;:::-;;;;;;;92666:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;92642:3:0;;-1:-1:-1;92642:3:0;;:::i;:::-;;;92606:110;;;;92567:160;-1:-1:-1;;;;;92743:16:0;;92739:434;;92781:9;92776:386;92800:3;:10;92796:1;:14;92776:386;;;92836:10;92849:3;92853:1;92849:6;;;;;;;;:::i;:::-;;;;;;;92836:19;;92874:14;92891:7;92899:1;92891:10;;;;;;;;:::i;:::-;;;;;;;92874:27;;92920:14;92937:12;:16;92950:2;92937:16;;;;;;;;;;;;92920:33;;92990:6;92980;:16;;92972:69;;;;-1:-1:-1;;;92972:69:0;;35131:2:1;92972:69:0;;;35113:21:1;35170:2;35150:18;;;35143:30;35209:34;35189:18;;;35182:62;-1:-1:-1;;;35260:18:1;;;35253:38;35308:19;;92972:69:0;34929:404:1;92972:69:0;93093:16;;;;:12;:16;;;;;;93112:15;;93093:34;;92812:3;;;:::i;:::-;;;92776:386;;30269:296;30352:7;30395:4;30352:7;30410:118;30434:5;:12;30430:1;:16;30410:118;;;30483:33;30493:12;30507:5;30513:1;30507:8;;;;;;;;:::i;:::-;;;;;;;30483:9;:33::i;:::-;30468:48;-1:-1:-1;30448:3:0;;;;:::i;:::-;;;;30410:118;;36476:149;36539:7;36570:1;36566;:5;:51;;36701:13;36795:15;;;36831:4;36824:15;;;36878:4;36862:21;;36566:51;;;36701:13;36795:15;;;36831:4;36824:15;;;36878:4;36862:21;;36574:20;36633:268;206:131:1;-1:-1:-1;;;;;281:31:1;;271:42;;261:70;;327:1;324;317:12;342:315;410:6;418;471:2;459:9;450:7;446:23;442:32;439:52;;;487:1;484;477:12;439:52;526:9;513:23;545:31;570:5;545:31;:::i;:::-;595:5;647:2;632:18;;;;619:32;;-1:-1:-1;;;342:315:1:o;844:131::-;-1:-1:-1;;;;;;918:32:1;;908:43;;898:71;;965:1;962;955:12;980:245;1038:6;1091:2;1079:9;1070:7;1066:23;1062:32;1059:52;;;1107:1;1104;1097:12;1059:52;1146:9;1133:23;1165:30;1189:5;1165:30;:::i;1230:127::-;1291:10;1286:3;1282:20;1279:1;1272:31;1322:4;1319:1;1312:15;1346:4;1343:1;1336:15;1362:249;1472:2;1453:13;;-1:-1:-1;;1449:27:1;1437:40;;-1:-1:-1;;;;;1492:34:1;;1528:22;;;1489:62;1486:88;;;1554:18;;:::i;:::-;1590:2;1583:22;-1:-1:-1;;1362:249:1:o;1616:556::-;1659:5;1712:3;1705:4;1697:6;1693:17;1689:27;1679:55;;1730:1;1727;1720:12;1679:55;1766:6;1753:20;-1:-1:-1;;;;;1788:2:1;1785:26;1782:52;;;1814:18;;:::i;:::-;1863:2;1857:9;1875:67;1930:2;1911:13;;-1:-1:-1;;1907:27:1;1936:4;1903:38;1857:9;1875:67;:::i;:::-;1966:2;1958:6;1951:18;2012:3;2005:4;2000:2;1992:6;1988:15;1984:26;1981:35;1978:55;;;2029:1;2026;2019:12;1978:55;2093:2;2086:4;2078:6;2074:17;2067:4;2059:6;2055:17;2042:54;2140:1;2116:15;;;2133:4;2112:26;2105:37;;;;2120:6;1616:556;-1:-1:-1;;;1616:556:1:o;2177:322::-;2246:6;2299:2;2287:9;2278:7;2274:23;2270:32;2267:52;;;2315:1;2312;2305:12;2267:52;2355:9;2342:23;-1:-1:-1;;;;;2380:6:1;2377:30;2374:50;;;2420:1;2417;2410:12;2374:50;2443;2485:7;2476:6;2465:9;2461:22;2443:50;:::i;2504:180::-;2563:6;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;-1:-1:-1;2655:23:1;;2504:180;-1:-1:-1;2504:180:1:o;2871:250::-;2956:1;2966:113;2980:6;2977:1;2974:13;2966:113;;;3056:11;;;3050:18;3037:11;;;3030:39;3002:2;2995:10;2966:113;;;-1:-1:-1;;3113:1:1;3095:16;;3088:27;2871:250::o;3126:271::-;3168:3;3206:5;3200:12;3233:6;3228:3;3221:19;3249:76;3318:6;3311:4;3306:3;3302:14;3295:4;3288:5;3284:16;3249:76;:::i;:::-;3379:2;3358:15;-1:-1:-1;;3354:29:1;3345:39;;;;3386:4;3341:50;;3126:271;-1:-1:-1;;3126:271:1:o;3402:220::-;3551:2;3540:9;3533:21;3514:4;3571:45;3612:2;3601:9;3597:18;3589:6;3571:45;:::i;3851:689::-;3946:6;3954;3962;4015:2;4003:9;3994:7;3990:23;3986:32;3983:52;;;4031:1;4028;4021:12;3983:52;4071:9;4058:23;-1:-1:-1;;;;;4141:2:1;4133:6;4130:14;4127:34;;;4157:1;4154;4147:12;4127:34;4195:6;4184:9;4180:22;4170:32;;4240:7;4233:4;4229:2;4225:13;4221:27;4211:55;;4262:1;4259;4252:12;4211:55;4302:2;4289:16;4328:2;4320:6;4317:14;4314:34;;;4344:1;4341;4334:12;4314:34;4399:7;4392:4;4382:6;4379:1;4375:14;4371:2;4367:23;4363:34;4360:47;4357:67;;;4420:1;4417;4410:12;4357:67;4451:4;4443:13;;;;4475:6;;-1:-1:-1;4513:20:1;;;;4500:34;;3851:689;-1:-1:-1;;;;3851:689:1:o;4545:248::-;4613:6;4621;4674:2;4662:9;4653:7;4649:23;4645:32;4642:52;;;4690:1;4687;4680:12;4642:52;-1:-1:-1;;4713:23:1;;;4783:2;4768:18;;;4755:32;;-1:-1:-1;4545:248:1:o;5077:183::-;5137:4;-1:-1:-1;;;;;5162:6:1;5159:30;5156:56;;;5192:18;;:::i;:::-;-1:-1:-1;5237:1:1;5233:14;5249:4;5229:25;;5077:183::o;5265:724::-;5319:5;5372:3;5365:4;5357:6;5353:17;5349:27;5339:55;;5390:1;5387;5380:12;5339:55;5426:6;5413:20;5452:4;5475:43;5515:2;5475:43;:::i;:::-;5547:2;5541:9;5559:31;5587:2;5579:6;5559:31;:::i;:::-;5625:18;;;5717:1;5713:10;;;;5701:23;;5697:32;;;5659:15;;;;-1:-1:-1;5741:15:1;;;5738:35;;;5769:1;5766;5759:12;5738:35;5805:2;5797:6;5793:15;5817:142;5833:6;5828:3;5825:15;5817:142;;;5899:17;;5887:30;;5937:12;;;;5850;;5817:142;;;-1:-1:-1;5977:6:1;5265:724;-1:-1:-1;;;;;;5265:724:1:o;5994:1072::-;6148:6;6156;6164;6172;6180;6233:3;6221:9;6212:7;6208:23;6204:33;6201:53;;;6250:1;6247;6240:12;6201:53;6289:9;6276:23;6308:31;6333:5;6308:31;:::i;:::-;6358:5;-1:-1:-1;6415:2:1;6400:18;;6387:32;6428:33;6387:32;6428:33;:::i;:::-;6480:7;-1:-1:-1;6538:2:1;6523:18;;6510:32;-1:-1:-1;;;;;6591:14:1;;;6588:34;;;6618:1;6615;6608:12;6588:34;6641:61;6694:7;6685:6;6674:9;6670:22;6641:61;:::i;:::-;6631:71;;6755:2;6744:9;6740:18;6727:32;6711:48;;6784:2;6774:8;6771:16;6768:36;;;6800:1;6797;6790:12;6768:36;6823:63;6878:7;6867:8;6856:9;6852:24;6823:63;:::i;:::-;6813:73;;6939:3;6928:9;6924:19;6911:33;6895:49;;6969:2;6959:8;6956:16;6953:36;;;6985:1;6982;6975:12;6953:36;;7008:52;7052:7;7041:8;7030:9;7026:24;7008:52;:::i;:::-;6998:62;;;5994:1072;;;;;;;;:::o;7071:799::-;7125:5;7178:3;7171:4;7163:6;7159:17;7155:27;7145:55;;7196:1;7193;7186:12;7145:55;7232:6;7219:20;7258:4;7281:43;7321:2;7281:43;:::i;:::-;7353:2;7347:9;7365:31;7393:2;7385:6;7365:31;:::i;:::-;7431:18;;;7523:1;7519:10;;;;7507:23;;7503:32;;;7465:15;;;;-1:-1:-1;7547:15:1;;;7544:35;;;7575:1;7572;7565:12;7544:35;7611:2;7603:6;7599:15;7623:217;7639:6;7634:3;7631:15;7623:217;;;7719:3;7706:17;7736:31;7761:5;7736:31;:::i;:::-;7780:18;;7818:12;;;;7656;;7623:217;;7875:595;7993:6;8001;8054:2;8042:9;8033:7;8029:23;8025:32;8022:52;;;8070:1;8067;8060:12;8022:52;8110:9;8097:23;-1:-1:-1;;;;;8180:2:1;8172:6;8169:14;8166:34;;;8196:1;8193;8186:12;8166:34;8219:61;8272:7;8263:6;8252:9;8248:22;8219:61;:::i;:::-;8209:71;;8333:2;8322:9;8318:18;8305:32;8289:48;;8362:2;8352:8;8349:16;8346:36;;;8378:1;8375;8368:12;8346:36;;8401:63;8456:7;8445:8;8434:9;8430:24;8401:63;:::i;:::-;8391:73;;;7875:595;;;;;:::o;8475:435::-;8528:3;8566:5;8560:12;8593:6;8588:3;8581:19;8619:4;8648:2;8643:3;8639:12;8632:19;;8685:2;8678:5;8674:14;8706:1;8716:169;8730:6;8727:1;8724:13;8716:169;;;8791:13;;8779:26;;8825:12;;;;8860:15;;;;8752:1;8745:9;8716:169;;;-1:-1:-1;8901:3:1;;8475:435;-1:-1:-1;;;;;8475:435:1:o;8915:261::-;9094:2;9083:9;9076:21;9057:4;9114:56;9166:2;9155:9;9151:18;9143:6;9114:56;:::i;9181:160::-;9246:20;;9302:13;;9295:21;9285:32;;9275:60;;9331:1;9328;9321:12;9275:60;9181:160;;;:::o;9346:180::-;9402:6;9455:2;9443:9;9434:7;9430:23;9426:32;9423:52;;;9471:1;9468;9461:12;9423:52;9494:26;9510:9;9494:26;:::i;9531:730::-;9658:6;9666;9674;9727:2;9715:9;9706:7;9702:23;9698:32;9695:52;;;9743:1;9740;9733:12;9695:52;9782:9;9769:23;9801:31;9826:5;9801:31;:::i;:::-;9851:5;-1:-1:-1;9907:2:1;9892:18;;9879:32;-1:-1:-1;;;;;9960:14:1;;;9957:34;;;9987:1;9984;9977:12;9957:34;10010:61;10063:7;10054:6;10043:9;10039:22;10010:61;:::i;:::-;10000:71;;10124:2;10113:9;10109:18;10096:32;10080:48;;10153:2;10143:8;10140:16;10137:36;;;10169:1;10166;10159:12;10137:36;;10192:63;10247:7;10236:8;10225:9;10221:24;10192:63;:::i;:::-;10182:73;;;9531:730;;;;;:::o;10519:390::-;10597:6;10605;10658:2;10646:9;10637:7;10633:23;10629:32;10626:52;;;10674:1;10671;10664:12;10626:52;10710:9;10697:23;10687:33;;10771:2;10760:9;10756:18;10743:32;-1:-1:-1;;;;;10790:6:1;10787:30;10784:50;;;10830:1;10827;10820:12;10784:50;10853;10895:7;10886:6;10875:9;10871:22;10853:50;:::i;11122:315::-;11187:6;11195;11248:2;11236:9;11227:7;11223:23;11219:32;11216:52;;;11264:1;11261;11254:12;11216:52;11303:9;11290:23;11322:31;11347:5;11322:31;:::i;:::-;11372:5;-1:-1:-1;11396:35:1;11427:2;11412:18;;11396:35;:::i;:::-;11386:45;;11122:315;;;;;:::o;11442:348::-;11526:6;11579:2;11567:9;11558:7;11554:23;11550:32;11547:52;;;11595:1;11592;11585:12;11547:52;11635:9;11622:23;-1:-1:-1;;;;;11660:6:1;11657:30;11654:50;;;11700:1;11697;11690:12;11654:50;11723:61;11776:7;11767:6;11756:9;11752:22;11723:61;:::i;12002:484::-;12104:6;12112;12120;12173:2;12161:9;12152:7;12148:23;12144:32;12141:52;;;12189:1;12186;12179:12;12141:52;12229:9;12216:23;-1:-1:-1;;;;;12254:6:1;12251:30;12248:50;;;12294:1;12291;12284:12;12248:50;12317:61;12370:7;12361:6;12350:9;12346:22;12317:61;:::i;:::-;12307:71;12425:2;12410:18;;12397:32;;-1:-1:-1;12476:2:1;12461:18;;;12448:32;;12002:484;-1:-1:-1;;;;12002:484:1:o;12491:388::-;12559:6;12567;12620:2;12608:9;12599:7;12595:23;12591:32;12588:52;;;12636:1;12633;12626:12;12588:52;12675:9;12662:23;12694:31;12719:5;12694:31;:::i;:::-;12744:5;-1:-1:-1;12801:2:1;12786:18;;12773:32;12814:33;12773:32;12814:33;:::i;:::-;12866:7;12856:17;;;12491:388;;;;;:::o;12884:735::-;12988:6;12996;13004;13012;13020;13073:3;13061:9;13052:7;13048:23;13044:33;13041:53;;;13090:1;13087;13080:12;13041:53;13129:9;13116:23;13148:31;13173:5;13148:31;:::i;:::-;13198:5;-1:-1:-1;13255:2:1;13240:18;;13227:32;13268:33;13227:32;13268:33;:::i;:::-;13320:7;-1:-1:-1;13374:2:1;13359:18;;13346:32;;-1:-1:-1;13425:2:1;13410:18;;13397:32;;-1:-1:-1;13480:3:1;13465:19;;13452:33;-1:-1:-1;;;;;13497:30:1;;13494:50;;;13540:1;13537;13530:12;13494:50;13563;13605:7;13596:6;13585:9;13581:22;13563:50;:::i;13624:247::-;13683:6;13736:2;13724:9;13715:7;13711:23;13707:32;13704:52;;;13752:1;13749;13742:12;13704:52;13791:9;13778:23;13810:31;13835:5;13810:31;:::i;13876:383::-;13953:6;13961;13969;14022:2;14010:9;14001:7;13997:23;13993:32;13990:52;;;14038:1;14035;14028:12;13990:52;14077:9;14064:23;14096:31;14121:5;14096:31;:::i;:::-;14146:5;14198:2;14183:18;;14170:32;;-1:-1:-1;14249:2:1;14234:18;;;14221:32;;13876:383;-1:-1:-1;;;13876:383:1:o;14675:354::-;14877:2;14859:21;;;14916:2;14896:18;;;14889:30;14955:32;14950:2;14935:18;;14928:60;15020:2;15005:18;;14675:354::o;15034:355::-;15236:2;15218:21;;;15275:2;15255:18;;;15248:30;15314:33;15309:2;15294:18;;15287:61;15380:2;15365:18;;15034:355::o;15394:334::-;15596:2;15578:21;;;15635:2;15615:18;;;15608:30;-1:-1:-1;;;15669:2:1;15654:18;;15647:40;15719:2;15704:18;;15394:334::o;16851:127::-;16912:10;16907:3;16903:20;16900:1;16893:31;16943:4;16940:1;16933:15;16967:4;16964:1;16957:15;16983:125;17048:9;;;17069:10;;;17066:36;;;17082:18;;:::i;17113:343::-;17315:2;17297:21;;;17354:2;17334:18;;;17327:30;-1:-1:-1;;;17388:2:1;17373:18;;17366:49;17447:2;17432:18;;17113:343::o;17461:168::-;17534:9;;;17565;;17582:15;;;17576:22;;17562:37;17552:71;;17603:18;;:::i;17634:217::-;17674:1;17700;17690:132;;17744:10;17739:3;17735:20;17732:1;17725:31;17779:4;17776:1;17769:15;17807:4;17804:1;17797:15;17690:132;-1:-1:-1;17836:9:1;;17634:217::o;17856:411::-;18058:2;18040:21;;;18097:2;18077:18;;;18070:30;18136:34;18131:2;18116:18;;18109:62;-1:-1:-1;;;18202:2:1;18187:18;;18180:45;18257:3;18242:19;;17856:411::o;19237:127::-;19298:10;19293:3;19289:20;19286:1;19279:31;19329:4;19326:1;19319:15;19353:4;19350:1;19343:15;19369:135;19408:3;19429:17;;;19426:43;;19449:18;;:::i;:::-;-1:-1:-1;19496:1:1;19485:13;;19369:135::o;20920:128::-;20987:9;;;21008:11;;;21005:37;;;21022:18;;:::i;21053:410::-;21255:2;21237:21;;;21294:2;21274:18;;;21267:30;21333:34;21328:2;21313:18;;21306:62;-1:-1:-1;;;21399:2:1;21384:18;;21377:44;21453:3;21438:19;;21053:410::o;21468:251::-;21538:6;21591:2;21579:9;21570:7;21566:23;21562:32;21559:52;;;21607:1;21604;21597:12;21559:52;21639:9;21633:16;21658:31;21683:5;21658:31;:::i;22497:184::-;22567:6;22620:2;22608:9;22599:7;22595:23;22591:32;22588:52;;;22636:1;22633;22626:12;22588:52;-1:-1:-1;22659:16:1;;22497:184;-1:-1:-1;22497:184:1:o;24169:380::-;24248:1;24244:12;;;;24291;;;24312:61;;24366:4;24358:6;24354:17;24344:27;;24312:61;24419:2;24411:6;24408:14;24388:18;24385:38;24382:161;;24465:10;24460:3;24456:20;24453:1;24446:31;24500:4;24497:1;24490:15;24528:4;24525:1;24518:15;24382:161;;24169:380;;;:::o;24680:545::-;24782:2;24777:3;24774:11;24771:448;;;24818:1;24843:5;24839:2;24832:17;24888:4;24884:2;24874:19;24958:2;24946:10;24942:19;24939:1;24935:27;24929:4;24925:38;24994:4;24982:10;24979:20;24976:47;;;-1:-1:-1;25017:4:1;24976:47;25072:2;25067:3;25063:12;25060:1;25056:20;25050:4;25046:31;25036:41;;25127:82;25145:2;25138:5;25135:13;25127:82;;;25190:17;;;25171:1;25160:13;25127:82;;25401:1352;25527:3;25521:10;-1:-1:-1;;;;;25546:6:1;25543:30;25540:56;;;25576:18;;:::i;:::-;25605:97;25695:6;25655:38;25687:4;25681:11;25655:38;:::i;:::-;25649:4;25605:97;:::i;:::-;25757:4;;25821:2;25810:14;;25838:1;25833:663;;;;26540:1;26557:6;26554:89;;;-1:-1:-1;26609:19:1;;;26603:26;26554:89;-1:-1:-1;;25358:1:1;25354:11;;;25350:24;25346:29;25336:40;25382:1;25378:11;;;25333:57;26656:81;;25803:944;;25833:663;24627:1;24620:14;;;24664:4;24651:18;;-1:-1:-1;;25869:20:1;;;25987:236;26001:7;25998:1;25995:14;25987:236;;;26090:19;;;26084:26;26069:42;;26182:27;;;;26150:1;26138:14;;;;26017:19;;25987:236;;;25991:3;26251:6;26242:7;26239:19;26236:201;;;26312:19;;;26306:26;-1:-1:-1;;26395:1:1;26391:14;;;26407:3;26387:24;26383:37;26379:42;26364:58;26349:74;;26236:201;-1:-1:-1;;;;;26483:1:1;26467:14;;;26463:22;26450:36;;-1:-1:-1;25401:1352:1:o;26758:1020::-;26934:3;26963:1;26996:6;26990:13;27026:36;27052:9;27026:36;:::i;:::-;27081:1;27098:18;;;27125:133;;;;27272:1;27267:356;;;;27091:532;;27125:133;-1:-1:-1;;27158:24:1;;27146:37;;27231:14;;27224:22;27212:35;;27203:45;;;-1:-1:-1;27125:133:1;;27267:356;27298:6;27295:1;27288:17;27328:4;27373:2;27370:1;27360:16;27398:1;27412:165;27426:6;27423:1;27420:13;27412:165;;;27504:14;;27491:11;;;27484:35;27547:16;;;;27441:10;;27412:165;;;27416:3;;;27606:6;27601:3;27597:16;27590:23;;27091:532;;;;;27654:6;27648:13;27670:68;27729:8;27724:3;27717:4;27709:6;27705:17;27670:68;:::i;:::-;27754:18;;26758:1020;-1:-1:-1;;;;26758:1020:1:o;28438:404::-;28640:2;28622:21;;;28679:2;28659:18;;;28652:30;28718:34;28713:2;28698:18;;28691:62;-1:-1:-1;;;28784:2:1;28769:18;;28762:38;28832:3;28817:19;;28438:404::o;28847:401::-;29049:2;29031:21;;;29088:2;29068:18;;;29061:30;29127:34;29122:2;29107:18;;29100:62;-1:-1:-1;;;29193:2:1;29178:18;;29171:35;29238:3;29223:19;;28847:401::o;29253:406::-;29455:2;29437:21;;;29494:2;29474:18;;;29467:30;29533:34;29528:2;29513:18;;29506:62;-1:-1:-1;;;29599:2:1;29584:18;;29577:40;29649:3;29634:19;;29253:406::o;29664:465::-;29921:2;29910:9;29903:21;29884:4;29947:56;29999:2;29988:9;29984:18;29976:6;29947:56;:::i;:::-;30051:9;30043:6;30039:22;30034:2;30023:9;30019:18;30012:50;30079:44;30116:6;30108;30079:44;:::i;30134:399::-;30336:2;30318:21;;;30375:2;30355:18;;;30348:30;30414:34;30409:2;30394:18;;30387:62;-1:-1:-1;;;30480:2:1;30465:18;;30458:33;30523:3;30508:19;;30134:399::o;30538:400::-;30740:2;30722:21;;;30779:2;30759:18;;;30752:30;30818:34;30813:2;30798:18;;30791:62;-1:-1:-1;;;30884:2:1;30869:18;;30862:34;30928:3;30913:19;;30538:400::o;31587:561::-;-1:-1:-1;;;;;31884:15:1;;;31866:34;;31936:15;;31931:2;31916:18;;31909:43;31983:2;31968:18;;31961:34;;;32026:2;32011:18;;32004:34;;;31846:3;32069;32054:19;;32047:32;;;31809:4;;32096:46;;32122:19;;32114:6;32096:46;:::i;:::-;32088:54;31587:561;-1:-1:-1;;;;;;;31587:561:1:o;32153:249::-;32222:6;32275:2;32263:9;32254:7;32250:23;32246:32;32243:52;;;32291:1;32288;32281:12;32243:52;32323:9;32317:16;32342:30;32366:5;32342:30;:::i;32407:179::-;32442:3;32484:1;32466:16;32463:23;32460:120;;;32530:1;32527;32524;32509:23;-1:-1:-1;32567:1:1;32561:8;32556:3;32552:18;32460:120;32407:179;:::o;32591:671::-;32630:3;32672:4;32654:16;32651:26;32648:39;;;32591:671;:::o;32648:39::-;32714:2;32708:9;-1:-1:-1;;32779:16:1;32775:25;;32772:1;32708:9;32751:50;32830:4;32824:11;32854:16;-1:-1:-1;;;;;32960:2:1;32953:4;32945:6;32941:17;32938:25;32933:2;32925:6;32922:14;32919:45;32916:58;;;32967:5;;;;;32591:671;:::o;32916:58::-;33004:6;32998:4;32994:17;32983:28;;33040:3;33034:10;33067:2;33059:6;33056:14;33053:27;;;33073:5;;;;;;32591:671;:::o;33053:27::-;33157:2;33138:16;33132:4;33128:27;33124:36;33117:4;33108:6;33103:3;33099:16;33095:27;33092:69;33089:82;;;33164:5;;;;;;32591:671;:::o;33089:82::-;33180:57;33231:4;33222:6;33214;33210:19;33206:30;33200:4;33180:57;:::i;:::-;-1:-1:-1;33253:3:1;;32591:671;-1:-1:-1;;;;;32591:671:1:o;33688:404::-;33890:2;33872:21;;;33929:2;33909:18;;;33902:30;33968:34;33963:2;33948:18;;33941:62;-1:-1:-1;;;34034:2:1;34019:18;;34012:38;34082:3;34067:19;;33688:404::o;34097:827::-;-1:-1:-1;;;;;34494:15:1;;;34476:34;;34546:15;;34541:2;34526:18;;34519:43;34456:3;34593:2;34578:18;;34571:31;;;34419:4;;34625:57;;34662:19;;34654:6;34625:57;:::i;:::-;34730:9;34722:6;34718:22;34713:2;34702:9;34698:18;34691:50;34764:44;34801:6;34793;34764:44;:::i;:::-;34750:58;;34857:9;34849:6;34845:22;34839:3;34828:9;34824:19;34817:51;34885:33;34911:6;34903;34885:33;:::i;:::-;34877:41;34097:827;-1:-1:-1;;;;;;;;34097:827:1:o

Swarm Source

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