ETH Price: $3,423.45 (+5.16%)
Gas: 11 Gwei

Token

HanfuNFT (HANFU)
 

Overview

Max Total Supply

5,200 HANFU

Holders

1,112

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
0 HANFU
0x301f47d0f8754c1f82e1f3a2a093a6a0b909f646
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:
HanfuNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-18
*/

// SPDX-License-Identifier: MIT
// Creator: Hanfu Labs
// File: contracts/ERC20.sol

pragma solidity ^0.8.4;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// File: contracts/EnumerableSet.sol


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

pragma solidity ^0.8.4;

/**
 * @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: contracts/EnumerableMap.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/structs/EnumerableMap.sol)

pragma solidity ^0.8.4;


/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * The following map types are supported:
 *
 * - `uint256 -> address` (`UintToAddressMap`) since v3.0.0
 * - `address -> uint256` (`AddressToUintMap`) since v4.6.0
 * - `bytes32 -> bytes32` (`Bytes32ToBytes32`) since v4.6.0
 * - `uint256 -> uint256` (`UintToUintMap`) since v4.7.0
 * - `bytes32 -> uint256` (`Bytes32ToUintMap`) since v4.7.0
 *
 * [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 EnumerableMap, you can either remove all elements one by one or create a fresh instance using an array of EnumerableMap.
 * ====
 */
library EnumerableMap {
    using EnumerableSet for EnumerableSet.Bytes32Set;

    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct Bytes32ToBytes32Map {
        // Storage of keys
        EnumerableSet.Bytes32Set _keys;
        mapping(bytes32 => bytes32) _values;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(
        Bytes32ToBytes32Map storage map,
        bytes32 key,
        bytes32 value
    ) internal returns (bool) {
        map._values[key] = value;
        return map._keys.add(key);
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(Bytes32ToBytes32Map storage map, bytes32 key) internal returns (bool) {
        delete map._values[key];
        return map._keys.remove(key);
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(Bytes32ToBytes32Map storage map, bytes32 key) internal view returns (bool) {
        return map._keys.contains(key);
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function length(Bytes32ToBytes32Map storage map) internal view returns (uint256) {
        return map._keys.length();
    }

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

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function tryGet(Bytes32ToBytes32Map storage map, bytes32 key) internal view returns (bool, bytes32) {
        bytes32 value = map._values[key];
        if (value == bytes32(0)) {
            return (contains(map, key), bytes32(0));
        } else {
            return (true, value);
        }
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(Bytes32ToBytes32Map storage map, bytes32 key) internal view returns (bytes32) {
        bytes32 value = map._values[key];
        require(value != 0 || contains(map, key), "EnumerableMap: nonexistent key");
        return value;
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function get(
        Bytes32ToBytes32Map storage map,
        bytes32 key,
        string memory errorMessage
    ) internal view returns (bytes32) {
        bytes32 value = map._values[key];
        require(value != 0 || contains(map, key), errorMessage);
        return value;
    }

    // UintToUintMap

    struct UintToUintMap {
        Bytes32ToBytes32Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(
        UintToUintMap storage map,
        uint256 key,
        uint256 value
    ) internal returns (bool) {
        return set(map._inner, bytes32(key), bytes32(value));
    }

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

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

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToUintMap storage map) internal view returns (uint256) {
        return length(map._inner);
    }

    /**
     * @dev Returns the element 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(UintToUintMap storage map, uint256 index) internal view returns (uint256, uint256) {
        (bytes32 key, bytes32 value) = at(map._inner, index);
        return (uint256(key), uint256(value));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function tryGet(UintToUintMap storage map, uint256 key) internal view returns (bool, uint256) {
        (bool success, bytes32 value) = tryGet(map._inner, bytes32(key));
        return (success, uint256(value));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToUintMap storage map, uint256 key) internal view returns (uint256) {
        return uint256(get(map._inner, bytes32(key)));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(
        UintToUintMap storage map,
        uint256 key,
        string memory errorMessage
    ) internal view returns (uint256) {
        return uint256(get(map._inner, bytes32(key), errorMessage));
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Bytes32ToBytes32Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(
        UintToAddressMap storage map,
        uint256 key,
        address value
    ) internal returns (bool) {
        return set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

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

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

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return length(map._inner);
    }

    /**
     * @dev Returns the element 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(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(
        UintToAddressMap storage map,
        uint256 key,
        string memory errorMessage
    ) internal view returns (address) {
        return address(uint160(uint256(get(map._inner, bytes32(key), errorMessage))));
    }

    // AddressToUintMap

    struct AddressToUintMap {
        Bytes32ToBytes32Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(
        AddressToUintMap storage map,
        address key,
        uint256 value
    ) internal returns (bool) {
        return set(map._inner, bytes32(uint256(uint160(key))), bytes32(value));
    }

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

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

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(AddressToUintMap storage map) internal view returns (uint256) {
        return length(map._inner);
    }

    /**
     * @dev Returns the element 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(AddressToUintMap storage map, uint256 index) internal view returns (address, uint256) {
        (bytes32 key, bytes32 value) = at(map._inner, index);
        return (address(uint160(uint256(key))), uint256(value));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function tryGet(AddressToUintMap storage map, address key) internal view returns (bool, uint256) {
        (bool success, bytes32 value) = tryGet(map._inner, bytes32(uint256(uint160(key))));
        return (success, uint256(value));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(AddressToUintMap storage map, address key) internal view returns (uint256) {
        return uint256(get(map._inner, bytes32(uint256(uint160(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(
        AddressToUintMap storage map,
        address key,
        string memory errorMessage
    ) internal view returns (uint256) {
        return uint256(get(map._inner, bytes32(uint256(uint160(key))), errorMessage));
    }

    // Bytes32ToUintMap

    struct Bytes32ToUintMap {
        Bytes32ToBytes32Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(
        Bytes32ToUintMap storage map,
        bytes32 key,
        uint256 value
    ) internal returns (bool) {
        return set(map._inner, key, bytes32(value));
    }

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

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

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(Bytes32ToUintMap storage map) internal view returns (uint256) {
        return length(map._inner);
    }

    /**
     * @dev Returns the element 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(Bytes32ToUintMap storage map, uint256 index) internal view returns (bytes32, uint256) {
        (bytes32 key, bytes32 value) = at(map._inner, index);
        return (key, uint256(value));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function tryGet(Bytes32ToUintMap storage map, bytes32 key) internal view returns (bool, uint256) {
        (bool success, bytes32 value) = tryGet(map._inner, key);
        return (success, uint256(value));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(Bytes32ToUintMap storage map, bytes32 key) internal view returns (uint256) {
        return uint256(get(map._inner, key));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(
        Bytes32ToUintMap storage map,
        bytes32 key,
        string memory errorMessage
    ) internal view returns (uint256) {
        return uint256(get(map._inner, key, errorMessage));
    }
}

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);
}


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

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

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

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

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


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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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



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

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

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


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


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

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

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

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

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

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

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

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


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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        string memory baseURI = _baseURI();
        if (_blindBoxStart() <= tokenId)
            return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, 'blindbox.json')) : '';

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

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

    function _blindBoxStart() internal view virtual returns (uint256) {
        return 0;
    }

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

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

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

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

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

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

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

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

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

contract HanfuNFT is ERC721A, Ownable {
    using EnumerableMap for EnumerableMap.AddressToUintMap;
    address payable busyWallet;
    address payable busyWallet1;
    address payable busyWallet2;
    address payable busyWallet3;
    address payable busyWallet4;

    uint256 public supply = 4839;  //5200 - (120 + 241)  reserve 120 for team, reserve 80 for og
    mapping(address => uint256) public minted;

    IERC20Metadata private HFT;
    uint8 private stockValidFlag = 0;
    mapping(uint256 => EnumerableMap.AddressToUintMap) private stock;
    mapping(uint256 => EnumerableMap.AddressToUintMap) private stockSelling;
    mapping(uint256 => EnumerableMap.AddressToUintMap) private stockSellingValue;
    mapping(uint256 => string[]) public nftSubLink;
    mapping(uint256 => uint256) public nftSubLinkShowType;

    string private _baseTokenURI; 
    
    uint8 reservedFlag = 0;
    uint32 public nftSaleStage = 0;
    
    bytes32 public merkleRoot;
    mapping (address => uint32) private wlUsedList;
    uint32 wlUsedRound = 0;
    uint256 internal blindBoxStart = 0;
    
    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    constructor(address payable _wallet, address payable _wallet1, address payable _wallet2, address payable _wallet3, address payable _wallet4) ERC721A("HanfuNFT", "HANFU") {
        busyWallet = _wallet;
        busyWallet1 = _wallet1;
        busyWallet2 = _wallet2;
        busyWallet3 = _wallet3;
        busyWallet4 = _wallet4;
    }

    function verifyProof(bytes memory _proof, bytes32 _root, bytes32 _leaf) public pure returns (bool) {
        // Check if proof length is a multiple of 32
        if (_proof.length % 32 != 0) return false;

        bytes32 proofElement;
        bytes32 computedHash = _leaf;

        for (uint256 i = 32; i <= _proof.length; i += 32) {
            assembly {
                // Load the current element of the proof
                proofElement := mload(add(_proof, i))
            }

            if (computedHash < proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == _root;
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
        wlUsedRound++;
    }
    
    function reserveHanfu() public onlyOwner {        
        require(reservedFlag == 0, "not allowed reserved");
        _safeMint(msg.sender, 120);
        reservedFlag = 1;
    }

    function ogDrop() public onlyOwner {
        _safeMint(0xb78dBB2cfE92251a4Bf29Dcd391A2cA8Cc8c4310,3); 
        _safeMint(0x2a842e026a36f9af2b253855B3DF5e47E2365A83,3);
        _safeMint(0xDF6B953AA8a2C10323d8c385c64449d75e3B812c,3);
        _safeMint(0x045fb828ea12d68A1734DfE81E5F9d066c1885cF,4);
        _safeMint(0xC3FC1492197d3C19Da46B8FE40CA08f01d2feaB4,3);
        _safeMint(0x0A90F733a52f5a1E0A405D2fD12df585CF63e6Ee,5);
        _safeMint(0xD683c0c013E1382143b364D7fb7B64c3097087af,5);
        _safeMint(0x8bBe9845d4e3760360694EEEC91405EE922caF61,4);
        _safeMint(0xDe9a9425b3CE28f66719eA606B1d1FDda210A94d,3);
        _safeMint(0x1e7d1ad7FE2372eF64Bd4238d47891f675C75425,3);
        _safeMint(0xC0C608A6E1E6B6B7ABA00D2BAE22BF4c5F51f739,5);
        _safeMint(0xb02FE17677071baF521f86893ae2e8d0DA7AC06c,2);
        _safeMint(0x7f3ACd5eb9AE7FDb51b085820db3EDB04696a6c0,2);
        _safeMint(0xb857b4c9693285A36705a146d9Dbe23eA8da4671,5);
        _safeMint(0xdE2baaa31b71Caa10782c5396ccaad24DF6Cf943,3);
        _safeMint(0x69358FC4B6f111C449e9eeF917335FE1e1c3408D,5);
        _safeMint(0x68FC110bf23fd9c20C480158b6Cd0721D9e13739,3);
        _safeMint(0x4bcC170AF3950Fa0C72c324edD563a566Ff6a9c2,3);
        _safeMint(0xbAcF53F44cbe63745fFD1071EDD541697F76f256,3);
        _safeMint(0xFc56c2b11c329C1fBc5Ed70a6a8eE6bd471CCe76,5);
        _safeMint(0x2a7F7B94B4ACd9b244675f3342c8321E8A6c3327,3);
        _safeMint(0x9dAea1CeA8efa3FB8CAd8f0A05aF6306512A54D1,3);
        _safeMint(0xA04294Ca075F369c900D6399c3D809Ee4417C5B5,5);
        _safeMint(0xc46dA85Da706fEB3165FA8Acb3CC44e4105923Dc,5);
        _safeMint(0xD9c3a1F6d84fEa2A0F8eEBe9e3E00899f07D6Ed8,5);
        _safeMint(0x24e16a89dFc3e86D70D739B229749D28126fF57E,5);
        _safeMint(0xE913C0a9Fdb0395862eE18BC8B264652A90DF0A5,5);
        _safeMint(0xd2B7094c390c30EE2bDC8e20a91A7fe633f65B58,5);
        _safeMint(0x9F11AD1fdF5FCb2CD088f66380372A065181Df8a,5);
        _safeMint(0x93DC9a9b45750F1b7A2b47e6Cc1C5FB2779a999e,5);
        _safeMint(0x2C67AAA82EcB01b3a5F42E45D9C232D945fD637b,5);
        _safeMint(0xBA3D5a706cAd6f6D3017A8B4B244089C45803E9D,5);
        _safeMint(0xcc4F719022d8eae53126d77FEB8382Eb57b19437,5);
        _safeMint(0x079AaDF2E92E2513606a2962ae6Eeeb7CCF286ef,5);
        _safeMint(0x5566188c75872D9D3DDC722096a26a86abE22016,3);
        _safeMint(0x14e9218dEEa10CbD6e16659887812B9862a25F3B,5);
        _safeMint(0x4cba67Cd2b6321b6472eF9b2637Ba3351E0A1001,5);
        _safeMint(0xF01AC313305543002EE4c7F28448d820a158fB65,5);
        _safeMint(0x7b7731ed65AFdb0c5a8F822d96B272078eC96175,5);
        _safeMint(0x0112Eb607B478Fd4Fea7F0B66b25865fE6527327,5);
        _safeMint(0x84088Ad00aACB86a71cB7F99856E51812e44a2b0,5);
        _safeMint(0xEF7294794cB16f7663065207a544E010A3707Abb,5);
        _safeMint(0x64A5d2e82A6bc529ad7aE8615946B768d128f7EF,5);
        _safeMint(0xCb6eA79A271f42aABA7d1D51F3Be9f8c52B8F80d,5);
        _safeMint(0x5C8A57817569Cba1815b017993bd17a78f6aaa3D,5);
        _safeMint(0x3601d7e270d2bC03c6328dF4D85C7E83D72A2729,5);
        _safeMint(0xE539758434308f179De457548D8cF940F0f6609B,5);
        _safeMint(0xcAb1AA589B944Ef56Dd7846aF934889e4B7Afc77,5);
        _safeMint(0xA8a9576f4Fa9a0F4440cb588Be6729ca08c6166e,5);
        _safeMint(0x7802cC861eb65431F6B7f33C4A4092b36529be76,5);
        _safeMint(0xdd21F27666b93D049744C332bBFFfaa1554dBEc7,5);
        _safeMint(0x964E4Dba0F4081a6c41D6183d10428F718Ff61BB,5);
        _safeMint(0x295a9b1c5DbfDfD734bcc2efcD06C4d3ad8837Fd,5);
        _safeMint(0xDd1BFdBD1019686E903DA13a0c3BC9ADcf183A89,5);
        _safeMint(0x056E8118F42DAc7E61B4cC00d77a97f0BA84F07c,5);
    }

    function getWlUsedFlag() public view returns(bool) {
        return wlUsedList[msg.sender] == wlUsedRound;
    }

    function toNextNftSaleRound() public onlyOwner {
        nftSaleStage++;
    }

    function getHanfuPrice() public view returns(uint256) {
        if (nftSaleStage < 2) {
            return 0;
        } else {
            return 20000000000000000; //0.020 ETH
        }
    }

    function getHanfuTokenPrice() public pure returns(uint256) {
            return 1000000000000; //0.000001 ETH
    }

    function getMaxHanfuPurchase() public view returns(uint256) {
        if (nftSaleStage == 0) { // gold white list
            return 2;
        } else if (nftSaleStage == 1) { //normal wihte list
            return 1;
        } else { //public issue
            return 20;
        }
    }

    function reValidWhiteList() public payable {
        require(39000000000000000 <= msg.value, "Ether value sent is not correct");
        require(wlUsedList[msg.sender] == wlUsedRound, "Not used whitelist");
        wlUsedList[msg.sender] = 0;
    }

    function mintHanfuWl(uint numberOfTokens, bytes memory proof) public {
        require(numberOfTokens <= getMaxHanfuPurchase(), "can not mint this many.");
        require(numberOfTokens <= supply, "NFT balance is not enough.");

        require(wlUsedList[msg.sender] != wlUsedRound, "Already Use Wl");
        require(verifyProof(proof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "Not in Whitelist");
        
        wlUsedList[msg.sender] = wlUsedRound;
        supply -= numberOfTokens;
        _safeMint(msg.sender, numberOfTokens);
    }

    function mintHanfu(uint256 numberOfTokens) external payable callerIsUser {
        require(nftSaleStage > 1, "not in public sale state");
        require(minted[msg.sender] + numberOfTokens <= getMaxHanfuPurchase(), "can not mint this many.");
        require(numberOfTokens <= supply, "NFT balance is not enough.");
        require(numberOfTokens * getHanfuPrice() <= msg.value, "balance is not enough.");

        minted[msg.sender] += numberOfTokens;
        supply -= numberOfTokens;
        _safeMint(msg.sender, numberOfTokens);
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function _blindBoxStart() internal view virtual override returns (uint256) {
        return blindBoxStart;
    }

    function setBlindBoxStart(uint _index) public onlyOwner {
        blindBoxStart = _index;    
    }

    function withdraw() external onlyOwner {
        require(address(this).balance > 0, "balance is not enough.");

        uint balance = address(this).balance;
        busyWallet3.transfer(balance);
    }

    function mintHanfuToken(uint256 numberOfTokens) external payable callerIsUser {
        //require(minted[msg.sender] + numberOfTokens <= getMaxHanfuPurchase(), "can not mint this many.");
        //require(numberOfTokens <= supply, "NFT balance is not enough.");
        require(numberOfTokens * getHanfuTokenPrice() <= msg.value, "balance is not enough.");
        HFT.transfer(msg.sender, numberOfTokens);
    }

    //function withdrawHFT() external onlyOwner {
    //    require(HFT.balanceOf(msg.sender) > 0, "balance is not enough.");
    //    HFT.transfer(msg.sender, HFT.balanceOf(msg.sender));
    //}

    function hanfuStockValid(address addr) public onlyOwner {
		require(stockValidFlag == 0, "not alllowed operation");
		stockValidFlag = 1;
		HFT = IERC20Metadata(addr);
	}

    function hanfuTokenDrop(address _addr, uint amount) external onlyOwner {
        HFT.transfer(_addr, amount);
    }

    uint256 private nftStock = 2000000; 
    function buyNFTStock(uint nftId, uint amount, address seller) public {
        if (stock[nftId].length() == 0) {
            stock[nftId].set(ownerOf(nftId), nftStock);
        } else {
            uint sellingAmount = stockSelling[nftId].get(seller);
            uint sellingValue = stockSellingValue[nftId].get(seller);
            uint ownAmount = stock[nftId].get(seller);

            require(sellingAmount >= amount, "not enough stock num");
            require(amount * sellingValue <= HFT.balanceOf(msg.sender), "not enough stock num");
            //HFT.approve(address(this), amount * sellingValue);
            HFT.transferFrom(msg.sender, seller, amount * sellingValue);
            
            ownAmount = ownAmount - amount;
            if (ownAmount > 0) {
                stock[nftId].set(seller, ownAmount);
                stockSelling[nftId].set(seller, sellingAmount - amount);
            } else {
                stock[nftId].remove(seller);
                stockSelling[nftId].remove(seller);
            }

            if (stock[nftId].contains(msg.sender))
                amount = amount + stock[nftId].get(msg.sender);
            stock[nftId].set(msg.sender, amount);
        }
    }

    function sellNFTStock(uint nftId, uint amount, uint value) public {
        require(stock[nftId].get(msg.sender) >= amount, "no enough stock");
        
        if (amount == 0) {
            stockSelling[nftId].remove(msg.sender);
            stockSellingValue[nftId].remove(msg.sender);
        } else {
            stockSelling[nftId].set(msg.sender, amount);
            stockSellingValue[nftId].set(msg.sender, value);
        }
    }

    function setNFTSubLink(uint nftId, string memory link) public {
        require(stock[nftId].get(msg.sender) > nftStock / stock[nftId].length(), "not allowed operation");
        nftSubLink[nftId].push(link);
    }

    function getNFTsubLinkLength(uint nftId) public view returns(uint) {
        return nftSubLink[nftId].length;
    }

    function getNFTsubLink(uint nftId, uint index) public view returns(string memory) {
        return nftSubLink[nftId][index];
    }

    function setNFTSubLinkShowType(uint nftId, uint showType) public {
        require(stock[nftId].get(msg.sender) > nftStock / stock[nftId].length(), "not allowed operation");
        nftSubLinkShowType[nftId] = showType;
    }

    function getNFTSellingLength(uint nftId) public view returns(uint256) {
        return stockSelling[nftId].length();
    }

    function getNFTSellingInfo(uint nftId, uint index) public view returns(address, uint256) {
        return stockSelling[nftId].at(index);
    }

    function getNFTSellingValueInfo(uint nftId, uint index) public view returns(address, uint256) {
        return stockSellingValue[nftId].at(index);
    }

    function getNFTStockInfo(uint nftId, uint index) public view returns(address, uint256) {
        return stock[nftId].at(index);
    }

    fallback() external payable{}
    receive() external payable{}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"_wallet","type":"address"},{"internalType":"address payable","name":"_wallet1","type":"address"},{"internalType":"address payable","name":"_wallet2","type":"address"},{"internalType":"address payable","name":"_wallet3","type":"address"},{"internalType":"address payable","name":"_wallet4","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nftId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"seller","type":"address"}],"name":"buyNFTStock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getHanfuPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getHanfuTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getMaxHanfuPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nftId","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getNFTSellingInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nftId","type":"uint256"}],"name":"getNFTSellingLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nftId","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getNFTSellingValueInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nftId","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getNFTStockInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nftId","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getNFTsubLink","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"nftId","type":"uint256"}],"name":"getNFTsubLinkLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWlUsedFlag","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"hanfuStockValid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"hanfuTokenDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintHanfu","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintHanfuToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes","name":"proof","type":"bytes"}],"name":"mintHanfuWl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftSaleStage","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"nftSubLink","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nftSubLinkShowType","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reValidWhiteList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveHanfu","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nftId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"sellNFTStock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"setBlindBoxStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nftId","type":"uint256"},{"internalType":"string","name":"link","type":"string"}],"name":"setNFTSubLink","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nftId","type":"uint256"},{"internalType":"uint256","name":"showType","type":"uint256"}],"name":"setNFTSubLinkShowType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toNextNftSaleRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_proof","type":"bytes"},{"internalType":"bytes32","name":"_root","type":"bytes32"},{"internalType":"bytes32","name":"_leaf","type":"bytes32"}],"name":"verifyProof","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526112e7600e556010805460ff60a01b191690556017805464ffffffffff19169055601a805463ffffffff191690556000601b55621e8480601c553480156200004b57600080fd5b5060405162003d1238038062003d128339810160408190526200006e916200025b565b604080518082018252600881526712185b999d53919560c21b60208083019182528351808501909452600584526448414e465560d81b908401528151919291620000bb9160029162000198565b508051620000d190600390602084019062000198565b50506000805550620000e33362000146565b600980546001600160a01b03199081166001600160a01b0397881617909155600a8054821695871695909517909455600b8054851693861693909317909255600c80548416918516919091179055600d8054909216921691909117905562000307565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a690620002ca565b90600052602060002090601f016020900481019282620001ca576000855562000215565b82601f10620001e557805160ff191683800117855562000215565b8280016001018555821562000215579182015b8281111562000215578251825591602001919060010190620001f8565b506200022392915062000227565b5090565b5b8082111562000223576000815560010162000228565b80516001600160a01b03811681146200025657600080fd5b919050565b600080600080600060a0868803121562000273578081fd5b6200027e866200023e565b94506200028e602087016200023e565b93506200029e604087016200023e565b9250620002ae606087016200023e565b9150620002be608087016200023e565b90509295509295909350565b600181811c90821680620002df57607f821691505b602082108114156200030157634e487b7160e01b600052602260045260246000fd5b50919050565b6139fb80620003176000396000f3fe6080604052600436106102c75760003560e01c80636352211e1161017e578063b7bafd37116100d3578063d007356f1161008f578063e77290091161006c578063e7729009146108be578063e985e9c5146108d6578063f2a739b61461091f578063f2fde38b1461093457005b8063d007356f14610869578063e0a20b8414610889578063e0d669a5146108a957005b8063b7bafd371461079d578063b88d4fde146107bd578063c0d4385d146107dd578063c4ec1a10146107fd578063c87b56dd14610812578063c8cbb45d1461083257005b80637cb647591161013a5780638da5cb5b116101175780638da5cb5b1461072a57806395d89b4114610748578063a22cb4651461075d578063b224f8c81461077d57005b80637cb64759146106ca57806386f679af146106ea5780638cf620501461070a57005b80636352211e146106035780636452d0401461062357806370a0823114610662578063715018a61461068257806375a60c03146106975780637928a105146106b757005b806324f9a67b116102345780633cd3f7d2116101f05780634d8255bc116101cd5780634d8255bc1461058157806350dfd6bc146105a157806355f804b3146105b65780635e6be49b146105d657005b80633cd3f7d21461052157806342842e0e146105415780634d0a2f021461056157005b806324f9a67b1461047c57806327e94f9e146104ac5780632c1abd8b146104b45780632ccaa728146104c95780632eb4a7ab146104f65780633ccfd60b1461050c57005b8063095ea7b311610283578063095ea7b3146103b6578063101f13e2146103d657806318160ddd146103f65780631add2d891461040f5780631e7269c51461042f57806323b872dd1461045c57005b806301ffc9a7146102d0578063047fc9aa146103055780630536baba1461032957806306fdde0314610349578063081812fc1461036b578063093b4ae0146103a357005b366102ce57005b005b3480156102dc57600080fd5b506102f06102eb3660046134ea565b610954565b60405190151581526020015b60405180910390f35b34801561031157600080fd5b5061031b600e5481565b6040519081526020016102fc565b34801561033557600080fd5b506102ce610344366004613635565b6109a6565b34801561035557600080fd5b5061035e610a63565b6040516102fc91906137cb565b34801561037757600080fd5b5061038b6103863660046134d2565b610af5565b6040516001600160a01b0390911681526020016102fc565b6102ce6103b13660046134d2565b610b39565b3480156103c257600080fd5b506102ce6103d136600461348d565b610d1f565b3480156103e257600080fd5b506102f06103f1366004613522565b610da8565b34801561040257600080fd5b506001546000540361031b565b34801561041b57600080fd5b5061031b61042a3660046134d2565b610e5f565b34801561043b57600080fd5b5061031b61044a36600461336b565b600f6020526000908152604090205481565b34801561046857600080fd5b506102ce6104773660046133b7565b610e76565b34801561048857600080fd5b50601a543360009081526019602052604090205463ffffffff9182169116146102f0565b6102ce610e81565b3480156104c057600080fd5b5061031b610f53565b3480156104d557600080fd5b5061031b6104e43660046134d2565b60009081526014602052604090205490565b34801561050257600080fd5b5061031b60185481565b34801561051857600080fd5b506102ce610f91565b34801561052d57600080fd5b506102ce61053c36600461336b565b611019565b34801561054d57600080fd5b506102ce61055c3660046133b7565b6110bf565b34801561056d57600080fd5b506102ce61057c3660046136a3565b6110da565b34801561058d57600080fd5b5061035e61059c366004613682565b611413565b3480156105ad57600080fd5b506102ce6114cc565b3480156105c257600080fd5b506102ce6105d136600461356d565b611532565b3480156105e257600080fd5b5061031b6105f13660046134d2565b60156020526000908152604090205481565b34801561060f57600080fd5b5061038b61061e3660046134d2565b611568565b34801561062f57600080fd5b5061064361063e366004613682565b61157a565b604080516001600160a01b0390931683526020830191909152016102fc565b34801561066e57600080fd5b5061031b61067d36600461336b565b61159f565b34801561068e57600080fd5b506102ce6115ed565b3480156106a357600080fd5b506102ce6106b236600461348d565b611623565b6102ce6106c53660046134d2565b6116d3565b3480156106d657600080fd5b506102ce6106e53660046134d2565b6117d4565b3480156106f657600080fd5b506102ce6107053660046135f1565b61183b565b34801561071657600080fd5b506102ce6107253660046136d7565b611a07565b34801561073657600080fd5b506008546001600160a01b031661038b565b34801561075457600080fd5b5061035e611aca565b34801561076957600080fd5b506102ce610778366004613457565b611ad9565b34801561078957600080fd5b50610643610798366004613682565b611b6f565b3480156107a957600080fd5b506102ce6107b8366004613682565b611b89565b3480156107c957600080fd5b506102ce6107d83660046133f2565b611c1c565b3480156107e957600080fd5b5061035e6107f8366004613682565b611c67565b34801561080957600080fd5b506102ce611d34565b34801561081e57600080fd5b5061035e61082d3660046134d2565b611dc2565b34801561083e57600080fd5b5060175461085490610100900463ffffffff1681565b60405163ffffffff90911681526020016102fc565b34801561087557600080fd5b506102ce6108843660046134d2565b611e7d565b34801561089557600080fd5b506106436108a4366004613682565b611eac565b3480156108b557600080fd5b506102ce611ec6565b3480156108ca57600080fd5b5064e8d4a5100061031b565b3480156108e257600080fd5b506102f06108f1366004613385565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561092b57600080fd5b5061031b612599565b34801561094057600080fd5b506102ce61094f36600461336b565b6125c5565b60006001600160e01b031982166380ac58cd60e01b148061098557506001600160e01b03198216635b5e139f60e01b145b806109a057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60008281526011602052604090206109bd9061265d565b601c546109ca919061385b565b60008381526011602052604090206109e29033612668565b11610a2c5760405162461bcd60e51b81526020600482015260156024820152743737ba1030b63637bbb2b21037b832b930ba34b7b760591b60448201526064015b60405180910390fd5b600082815260146020908152604082208054600181018255908352918190208351610a5e9391909101918401906131ae565b505050565b606060028054610a72906138d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9e906138d1565b8015610aeb5780601f10610ac057610100808354040283529160200191610aeb565b820191906000526020600020905b815481529060010190602001808311610ace57829003601f168201915b5050505050905090565b6000610b008261267d565b610b1d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b323314610b885760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a23565b601754600161010090910463ffffffff1611610be65760405162461bcd60e51b815260206004820152601860248201527f6e6f7420696e207075626c69632073616c6520737461746500000000000000006044820152606401610a23565b610bee610f53565b336000908152600f6020526040902054610c09908390613843565b1115610c515760405162461bcd60e51b815260206004820152601760248201527631b0b7103737ba1036b4b73a103a3434b99036b0b73c9760491b6044820152606401610a23565b600e54811115610ca35760405162461bcd60e51b815260206004820152601a60248201527f4e46542062616c616e6365206973206e6f7420656e6f7567682e0000000000006044820152606401610a23565b34610cac612599565b610cb6908361386f565b1115610cd45760405162461bcd60e51b8152600401610a23906137de565b336000908152600f602052604081208054839290610cf3908490613843565b9250508190555080600e6000828254610d0c919061388e565b90915550610d1c905033826126a8565b50565b6000610d2a82611568565b9050806001600160a01b0316836001600160a01b03161415610d5f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610d7f5750610d7d81336108f1565b155b15610d9d576040516367d9dca160e11b815260040160405180910390fd5b610a5e8383836126c2565b600060208451610db8919061394b565b15610dc557506000610e58565b60008260205b86518111610e515780870151925082821015610e12576040805160208101849052908101849052606001604051602081830303815290604052805190602001209150610e3f565b60408051602081018590529081018390526060016040516020818303038152906040528051906020012091505b610e4a602082613843565b9050610dcb565b5084149150505b9392505050565b60008181526012602052604081206109a09061265d565b610a5e83838361271e565b34668a8e4b1a3d80001115610ed85760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610a23565b601a543360009081526019602052604090205463ffffffff908116911614610f375760405162461bcd60e51b8152602060048201526012602482015271139bdd081d5cd959081dda1a5d195b1a5cdd60721b6044820152606401610a23565b336000908152601960205260409020805463ffffffff19169055565b601754600090610100900463ffffffff16610f6e5750600290565b60175463ffffffff6101009091041660011415610f8b5750600190565b50601490565b6008546001600160a01b03163314610fbb5760405162461bcd60e51b8152600401610a239061380e565b60004711610fdb5760405162461bcd60e51b8152600401610a23906137de565b600c5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015611015573d6000803e3d6000fd5b5050565b6008546001600160a01b031633146110435760405162461bcd60e51b8152600401610a239061380e565b601054600160a01b900460ff16156110965760405162461bcd60e51b81526020600482015260166024820152753737ba1030b6363637bbb2b21037b832b930ba34b7b760511b6044820152606401610a23565b601080546001600160a01b039092166001600160a81b031990921691909117600160a01b179055565b610a5e83838360405180602001604052806000815250611c1c565b60008381526011602052604090206110f19061265d565b61111f5761111961110184611568565b601c546000868152601160205260409020919061290c565b50505050565b60008381526012602052604081206111379083612668565b6000858152601360205260408120919250906111539084612668565b60008681526011602052604081209192509061116f9085612668565b9050848310156111b85760405162461bcd60e51b81526020600482015260146024820152736e6f7420656e6f7567682073746f636b206e756d60601b6044820152606401610a23565b6010546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b1580156111fb57600080fd5b505afa15801561120f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123391906135d9565b61123d838761386f565b11156112825760405162461bcd60e51b81526020600482015260146024820152736e6f7420656e6f7567682073746f636b206e756d60601b6044820152606401610a23565b6010546001600160a01b03166323b872dd338661129f868a61386f565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b1580156112ee57600080fd5b505af1158015611302573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132691906134b6565b50611331858261388e565b9050801561137c57600086815260116020526040902061135290858361290c565b5061137684611361878661388e565b6000898152601260205260409020919061290c565b506113af565b6000868152601160205260409020611394908561292a565b5060008681526012602052604090206113ad908561292a565b505b60008681526011602052604090206113c7903361293f565b156113f15760008681526011602052604090206113e49033612668565b6113ee9086613843565b94505b600086815260116020526040902061140a90338761290c565b50505050505050565b6014602052816000526040600020818154811061142f57600080fd5b9060005260206000200160009150915050805461144b906138d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611477906138d1565b80156114c45780601f10611499576101008083540402835291602001916114c4565b820191906000526020600020905b8154815290600101906020018083116114a757829003601f168201915b505050505081565b6008546001600160a01b031633146114f65760405162461bcd60e51b8152600401610a239061380e565b60178054610100900463ffffffff1690600161151183613927565b91906101000a81548163ffffffff021916908363ffffffff16021790555050565b6008546001600160a01b0316331461155c5760405162461bcd60e51b8152600401610a239061380e565b610a5e60168383613232565b600061157382612954565b5192915050565b600082815260116020526040812081906115949084612a6e565b915091509250929050565b60006001600160a01b0382166115c8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146116175760405162461bcd60e51b8152600401610a239061380e565b6116216000612a8a565b565b6008546001600160a01b0316331461164d5760405162461bcd60e51b8152600401610a239061380e565b60105460405163a9059cbb60e01b81526001600160a01b038481166004830152602482018490529091169063a9059cbb90604401602060405180830381600087803b15801561169b57600080fd5b505af11580156116af573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5e91906134b6565b3233146117225760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a23565b3461173264e8d4a510008361386f565b11156117505760405162461bcd60e51b8152600401610a23906137de565b60105460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb90604401602060405180830381600087803b15801561179c57600080fd5b505af11580156117b0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101591906134b6565b6008546001600160a01b031633146117fe5760405162461bcd60e51b8152600401610a239061380e565b6018819055601a805463ffffffff1690600061181983613927565b91906101000a81548163ffffffff021916908363ffffffff1602179055505050565b611843610f53565b82111561188c5760405162461bcd60e51b815260206004820152601760248201527631b0b7103737ba1036b4b73a103a3434b99036b0b73c9760491b6044820152606401610a23565b600e548211156118de5760405162461bcd60e51b815260206004820152601a60248201527f4e46542062616c616e6365206973206e6f7420656e6f7567682e0000000000006044820152606401610a23565b601a543360009081526019602052604090205463ffffffff9081169116141561193a5760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e48155cd94815db60921b6044820152606401610a23565b6018546040516bffffffffffffffffffffffff193360601b16602082015261197c91839160340160405160208183030381529060405280519060200120610da8565b6119bb5760405162461bcd60e51b815260206004820152601060248201526f139bdd081a5b8815da1a5d195b1a5cdd60821b6044820152606401610a23565b601a54336000908152601960205260408120805463ffffffff191663ffffffff90931692909217909155600e80548492906119f790849061388e565b90915550611015905033836126a8565b60008381526011602052604090208290611a219033612668565b1015611a615760405162461bcd60e51b815260206004820152600f60248201526e6e6f20656e6f7567682073746f636b60881b6044820152606401610a23565b81611a97576000838152601260205260409020611a7e903361292a565b506000838152601360205260409020611119903361292a565b6000838152601260205260409020611ab090338461290c565b50600083815260136020526040902061111990338361290c565b606060038054610a72906138d1565b6001600160a01b038216331415611b035760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600082815260126020526040812081906115949084612a6e565b6000828152601160205260409020611ba09061265d565b601c54611bad919061385b565b6000838152601160205260409020611bc59033612668565b11611c0a5760405162461bcd60e51b81526020600482015260156024820152743737ba1030b63637bbb2b21037b832b930ba34b7b760591b6044820152606401610a23565b60009182526015602052604090912055565b611c2784848461271e565b6001600160a01b0383163b15158015611c495750611c4784848484612adc565b155b15611119576040516368d2bf6b60e11b815260040160405180910390fd5b600082815260146020526040902080546060919083908110611c9957634e487b7160e01b600052603260045260246000fd5b906000526020600020018054611cae906138d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611cda906138d1565b8015611d275780601f10611cfc57610100808354040283529160200191611d27565b820191906000526020600020905b815481529060010190602001808311611d0a57829003601f168201915b5050505050905092915050565b6008546001600160a01b03163314611d5e5760405162461bcd60e51b8152600401610a239061380e565b60175460ff1615611da85760405162461bcd60e51b81526020600482015260146024820152731b9bdd08185b1b1bddd959081c995cd95c9d995960621b6044820152606401610a23565b611db33360786126a8565b6017805460ff19166001179055565b6060611dcd8261267d565b611dea57604051630a14c4b560e41b815260040160405180910390fd5b6000611df4612bd3565b905082611e00601b5490565b11611e47578051611e205760405180602001604052806000815250610e58565b80604051602001611e31919061375d565b6040516020818303038152906040529392505050565b8051611e625760405180602001604052806000815250610e58565b80611e6c84612be2565b604051602001611e3192919061372e565b6008546001600160a01b03163314611ea75760405162461bcd60e51b8152600401610a239061380e565b601b55565b600082815260136020526040812081906115949084612a6e565b6008546001600160a01b03163314611ef05760405162461bcd60e51b8152600401610a239061380e565b611f0f73b78dbb2cfe92251a4bf29dcd391a2ca8cc8c431060036126a8565b611f2e732a842e026a36f9af2b253855b3df5e47e2365a8360036126a8565b611f4d73df6b953aa8a2c10323d8c385c64449d75e3b812c60036126a8565b611f6c73045fb828ea12d68a1734dfe81e5f9d066c1885cf60046126a8565b611f8b73c3fc1492197d3c19da46b8fe40ca08f01d2feab460036126a8565b611faa730a90f733a52f5a1e0a405d2fd12df585cf63e6ee60056126a8565b611fc973d683c0c013e1382143b364d7fb7b64c3097087af60056126a8565b611fe8738bbe9845d4e3760360694eeec91405ee922caf6160046126a8565b61200773de9a9425b3ce28f66719ea606b1d1fdda210a94d60036126a8565b612026731e7d1ad7fe2372ef64bd4238d47891f675c7542560036126a8565b61204573c0c608a6e1e6b6b7aba00d2bae22bf4c5f51f73960056126a8565b61206473b02fe17677071baf521f86893ae2e8d0da7ac06c60026126a8565b612083737f3acd5eb9ae7fdb51b085820db3edb04696a6c060026126a8565b6120a273b857b4c9693285a36705a146d9dbe23ea8da467160056126a8565b6120c173de2baaa31b71caa10782c5396ccaad24df6cf94360036126a8565b6120e07369358fc4b6f111c449e9eef917335fe1e1c3408d60056126a8565b6120ff7368fc110bf23fd9c20c480158b6cd0721d9e1373960036126a8565b61211e734bcc170af3950fa0c72c324edd563a566ff6a9c260036126a8565b61213d73bacf53f44cbe63745ffd1071edd541697f76f25660036126a8565b61215c73fc56c2b11c329c1fbc5ed70a6a8ee6bd471cce7660056126a8565b61217b732a7f7b94b4acd9b244675f3342c8321e8a6c332760036126a8565b61219a739daea1cea8efa3fb8cad8f0a05af6306512a54d160036126a8565b6121b973a04294ca075f369c900d6399c3d809ee4417c5b560056126a8565b6121d873c46da85da706feb3165fa8acb3cc44e4105923dc60056126a8565b6121f773d9c3a1f6d84fea2a0f8eebe9e3e00899f07d6ed860056126a8565b6122167324e16a89dfc3e86d70d739b229749d28126ff57e60056126a8565b61223573e913c0a9fdb0395862ee18bc8b264652a90df0a560056126a8565b61225473d2b7094c390c30ee2bdc8e20a91a7fe633f65b5860056126a8565b612273739f11ad1fdf5fcb2cd088f66380372a065181df8a60056126a8565b6122927393dc9a9b45750f1b7a2b47e6cc1c5fb2779a999e60056126a8565b6122b1732c67aaa82ecb01b3a5f42e45d9c232d945fd637b60056126a8565b6122d073ba3d5a706cad6f6d3017a8b4b244089c45803e9d60056126a8565b6122ef73cc4f719022d8eae53126d77feb8382eb57b1943760056126a8565b61230e73079aadf2e92e2513606a2962ae6eeeb7ccf286ef60056126a8565b61232d735566188c75872d9d3ddc722096a26a86abe2201660036126a8565b61234c7314e9218deea10cbd6e16659887812b9862a25f3b60056126a8565b61236b734cba67cd2b6321b6472ef9b2637ba3351e0a100160056126a8565b61238a73f01ac313305543002ee4c7f28448d820a158fb6560056126a8565b6123a9737b7731ed65afdb0c5a8f822d96b272078ec9617560056126a8565b6123c8730112eb607b478fd4fea7f0b66b25865fe652732760056126a8565b6123e77384088ad00aacb86a71cb7f99856e51812e44a2b060056126a8565b61240673ef7294794cb16f7663065207a544e010a3707abb60056126a8565b6124257364a5d2e82a6bc529ad7ae8615946b768d128f7ef60056126a8565b61244473cb6ea79a271f42aaba7d1d51f3be9f8c52b8f80d60056126a8565b612463735c8a57817569cba1815b017993bd17a78f6aaa3d60056126a8565b612482733601d7e270d2bc03c6328df4d85c7e83d72a272960056126a8565b6124a173e539758434308f179de457548d8cf940f0f6609b60056126a8565b6124c073cab1aa589b944ef56dd7846af934889e4b7afc7760056126a8565b6124df73a8a9576f4fa9a0f4440cb588be6729ca08c6166e60056126a8565b6124fe737802cc861eb65431f6b7f33c4a4092b36529be7660056126a8565b61251d73dd21f27666b93d049744c332bbfffaa1554dbec760056126a8565b61253c73964e4dba0f4081a6c41d6183d10428f718ff61bb60056126a8565b61255b73295a9b1c5dbfdfd734bcc2efcd06c4d3ad8837fd60056126a8565b61257a73dd1bfdbd1019686e903da13a0c3bc9adcf183a8960056126a8565b61162173056e8118f42dac7e61b4cc00d77a97f0ba84f07c60056126a8565b601754600090600261010090910463ffffffff1610156125b95750600090565b5066470de4df82000090565b6008546001600160a01b031633146125ef5760405162461bcd60e51b8152600401610a239061380e565b6001600160a01b0381166126545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a23565b610d1c81612a8a565b60006109a082612cfb565b6000610e58836001600160a01b038416612d06565b60008054821080156109a0575050600090815260046020526040902054600160e01b900460ff161590565b611015828260405180602001604052806000815250612d76565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061272982612954565b9050836001600160a01b031681600001516001600160a01b0316146127605760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061277e575061277e85336108f1565b8061279957503361278e84610af5565b6001600160a01b0316145b9050806127b957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166127e057604051633a954ecd60e21b815260040160405180910390fd5b6127ec600084876126c2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166128c05760005482146128c057805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000612922846001600160a01b03851684612d83565b949350505050565b6000610e58836001600160a01b038416612da0565b6000610e58836001600160a01b038416612dbd565b604080516060810182526000808252602082018190529181019190915281600054811015612a5557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290612a535780516001600160a01b0316156129ea579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612a4e579392505050565b6129ea565b505b604051636f96cda160e11b815260040160405180910390fd5b6000808080612a7d8686612dc9565b9097909650945050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612b1190339089908890889060040161378e565b602060405180830381600087803b158015612b2b57600080fd5b505af1925050508015612b5b575060408051601f3d908101601f19168201909252612b5891810190613506565b60015b612bb6573d808015612b89576040519150601f19603f3d011682016040523d82523d6000602084013e612b8e565b606091505b508051612bae576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060168054610a72906138d1565b606081612c065750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612c305780612c1a8161390c565b9150612c299050600a8361385b565b9150612c0a565b6000816001600160401b03811115612c5857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c82576020820181803683370190505b5090505b841561292257612c9760018361388e565b9150612ca4600a8661394b565b612caf906030613843565b60f81b818381518110612cd257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612cf4600a8661385b565b9450612c86565b60006109a082612df4565b600081815260028301602052604081205480151580612d2a5750612d2a8484612dbd565b610e585760405162461bcd60e51b815260206004820152601e60248201527f456e756d657261626c654d61703a206e6f6e6578697374656e74206b657900006044820152606401610a23565b610a5e8383836001612dfe565b600082815260028401602052604081208290556129228484612fce565b60008181526002830160205260408120819055610e588383612fda565b6000610e588383612fe6565b60008080612dd78585612ffe565b600081815260029690960160205260409095205494959350505050565b60006109a0825490565b6000546001600160a01b038516612e2757604051622e076360e81b815260040160405180910390fd5b83612e455760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612ef657506001600160a01b0387163b15155b15612f7f575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612f476000888480600101955088612adc565b612f64576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612efc578260005414612f7a57600080fd5b612fc5565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612f80575b50600055612905565b6000610e58838361300a565b6000610e588383613059565b60008181526001830160205260408120541515610e58565b6000610e588383613176565b6000818152600183016020526040812054613051575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556109a0565b5060006109a0565b6000818152600183016020526040812054801561316c57600061307d60018361388e565b85549091506000906130919060019061388e565b90508181146131125760008660000182815481106130bf57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106130f057634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061313157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506109a0565b60009150506109a0565b600082600001828154811061319b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b8280546131ba906138d1565b90600052602060002090601f0160209004810192826131dc5760008555613222565b82601f106131f557805160ff1916838001178555613222565b82800160010185558215613222579182015b82811115613222578251825591602001919060010190613207565b5061322e9291506132a6565b5090565b82805461323e906138d1565b90600052602060002090601f0160209004810192826132605760008555613222565b82601f106132795782800160ff19823516178555613222565b82800160010185558215613222579182015b8281111561322257823582559160200191906001019061328b565b5b8082111561322e57600081556001016132a7565b60006001600160401b03808411156132d5576132d561398b565b604051601f8501601f19908116603f011681019082821181831017156132fd576132fd61398b565b8160405280935085815286868601111561331657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461334757600080fd5b919050565b600082601f83011261335c578081fd5b610e58838335602085016132bb565b60006020828403121561337c578081fd5b610e5882613330565b60008060408385031215613397578081fd5b6133a083613330565b91506133ae60208401613330565b90509250929050565b6000806000606084860312156133cb578081fd5b6133d484613330565b92506133e260208501613330565b9150604084013590509250925092565b60008060008060808587031215613407578081fd5b61341085613330565b935061341e60208601613330565b92506040850135915060608501356001600160401b0381111561343f578182fd5b61344b8782880161334c565b91505092959194509250565b60008060408385031215613469578182fd5b61347283613330565b91506020830135613482816139a1565b809150509250929050565b6000806040838503121561349f578182fd5b6134a883613330565b946020939093013593505050565b6000602082840312156134c7578081fd5b8151610e58816139a1565b6000602082840312156134e3578081fd5b5035919050565b6000602082840312156134fb578081fd5b8135610e58816139af565b600060208284031215613517578081fd5b8151610e58816139af565b600080600060608486031215613536578283fd5b83356001600160401b0381111561354b578384fd5b6135578682870161334c565b9660208601359650604090950135949350505050565b6000806020838503121561357f578081fd5b82356001600160401b0380821115613595578283fd5b818501915085601f8301126135a8578283fd5b8135818111156135b6578384fd5b8660208285010111156135c7578384fd5b60209290920196919550909350505050565b6000602082840312156135ea578081fd5b5051919050565b60008060408385031215613603578182fd5b8235915060208301356001600160401b0381111561361f578182fd5b61362b8582860161334c565b9150509250929050565b60008060408385031215613647578182fd5b8235915060208301356001600160401b03811115613663578182fd5b8301601f81018513613673578182fd5b61362b858235602084016132bb565b60008060408385031215613694578182fd5b50508035926020909101359150565b6000806000606084860312156136b7578081fd5b83359250602084013591506136ce60408501613330565b90509250925092565b6000806000606084860312156136eb578081fd5b505081359360208301359350604090920135919050565b6000815180845261371a8160208601602086016138a5565b601f01601f19169290920160200192915050565b600083516137408184602088016138a5565b8351908301906137548183602088016138a5565b01949350505050565b6000825161376f8184602087016138a5565b6c313634b7323137bc173539b7b760991b920191825250600d01919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906137c190830184613702565b9695505050505050565b602081526000610e586020830184613702565b6020808252601690820152753130b630b731b29034b9903737ba1032b737bab3b41760511b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156138565761385661395f565b500190565b60008261386a5761386a613975565b500490565b60008160001904831182151516156138895761388961395f565b500290565b6000828210156138a0576138a061395f565b500390565b60005b838110156138c05781810151838201526020016138a8565b838111156111195750506000910152565b600181811c908216806138e557607f821691505b6020821081141561390657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156139205761392061395f565b5060010190565b600063ffffffff808316818114156139415761394161395f565b6001019392505050565b60008261395a5761395a613975565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114610d1c57600080fd5b6001600160e01b031981168114610d1c57600080fdfea2646970667358221220f2ec2e6cdb0385fd6442eb5ad1f282b04f7f7d3529196193f90194130e86781a64736f6c63430008040033000000000000000000000000abb7635910c4d7e8a02bd9ad5b036a089974bf88000000000000000000000000abb7635910c4d7e8a02bd9ad5b036a089974bf88000000000000000000000000abb7635910c4d7e8a02bd9ad5b036a089974bf88000000000000000000000000abb7635910c4d7e8a02bd9ad5b036a089974bf88000000000000000000000000abb7635910c4d7e8a02bd9ad5b036a089974bf88

Deployed Bytecode

0x6080604052600436106102c75760003560e01c80636352211e1161017e578063b7bafd37116100d3578063d007356f1161008f578063e77290091161006c578063e7729009146108be578063e985e9c5146108d6578063f2a739b61461091f578063f2fde38b1461093457005b8063d007356f14610869578063e0a20b8414610889578063e0d669a5146108a957005b8063b7bafd371461079d578063b88d4fde146107bd578063c0d4385d146107dd578063c4ec1a10146107fd578063c87b56dd14610812578063c8cbb45d1461083257005b80637cb647591161013a5780638da5cb5b116101175780638da5cb5b1461072a57806395d89b4114610748578063a22cb4651461075d578063b224f8c81461077d57005b80637cb64759146106ca57806386f679af146106ea5780638cf620501461070a57005b80636352211e146106035780636452d0401461062357806370a0823114610662578063715018a61461068257806375a60c03146106975780637928a105146106b757005b806324f9a67b116102345780633cd3f7d2116101f05780634d8255bc116101cd5780634d8255bc1461058157806350dfd6bc146105a157806355f804b3146105b65780635e6be49b146105d657005b80633cd3f7d21461052157806342842e0e146105415780634d0a2f021461056157005b806324f9a67b1461047c57806327e94f9e146104ac5780632c1abd8b146104b45780632ccaa728146104c95780632eb4a7ab146104f65780633ccfd60b1461050c57005b8063095ea7b311610283578063095ea7b3146103b6578063101f13e2146103d657806318160ddd146103f65780631add2d891461040f5780631e7269c51461042f57806323b872dd1461045c57005b806301ffc9a7146102d0578063047fc9aa146103055780630536baba1461032957806306fdde0314610349578063081812fc1461036b578063093b4ae0146103a357005b366102ce57005b005b3480156102dc57600080fd5b506102f06102eb3660046134ea565b610954565b60405190151581526020015b60405180910390f35b34801561031157600080fd5b5061031b600e5481565b6040519081526020016102fc565b34801561033557600080fd5b506102ce610344366004613635565b6109a6565b34801561035557600080fd5b5061035e610a63565b6040516102fc91906137cb565b34801561037757600080fd5b5061038b6103863660046134d2565b610af5565b6040516001600160a01b0390911681526020016102fc565b6102ce6103b13660046134d2565b610b39565b3480156103c257600080fd5b506102ce6103d136600461348d565b610d1f565b3480156103e257600080fd5b506102f06103f1366004613522565b610da8565b34801561040257600080fd5b506001546000540361031b565b34801561041b57600080fd5b5061031b61042a3660046134d2565b610e5f565b34801561043b57600080fd5b5061031b61044a36600461336b565b600f6020526000908152604090205481565b34801561046857600080fd5b506102ce6104773660046133b7565b610e76565b34801561048857600080fd5b50601a543360009081526019602052604090205463ffffffff9182169116146102f0565b6102ce610e81565b3480156104c057600080fd5b5061031b610f53565b3480156104d557600080fd5b5061031b6104e43660046134d2565b60009081526014602052604090205490565b34801561050257600080fd5b5061031b60185481565b34801561051857600080fd5b506102ce610f91565b34801561052d57600080fd5b506102ce61053c36600461336b565b611019565b34801561054d57600080fd5b506102ce61055c3660046133b7565b6110bf565b34801561056d57600080fd5b506102ce61057c3660046136a3565b6110da565b34801561058d57600080fd5b5061035e61059c366004613682565b611413565b3480156105ad57600080fd5b506102ce6114cc565b3480156105c257600080fd5b506102ce6105d136600461356d565b611532565b3480156105e257600080fd5b5061031b6105f13660046134d2565b60156020526000908152604090205481565b34801561060f57600080fd5b5061038b61061e3660046134d2565b611568565b34801561062f57600080fd5b5061064361063e366004613682565b61157a565b604080516001600160a01b0390931683526020830191909152016102fc565b34801561066e57600080fd5b5061031b61067d36600461336b565b61159f565b34801561068e57600080fd5b506102ce6115ed565b3480156106a357600080fd5b506102ce6106b236600461348d565b611623565b6102ce6106c53660046134d2565b6116d3565b3480156106d657600080fd5b506102ce6106e53660046134d2565b6117d4565b3480156106f657600080fd5b506102ce6107053660046135f1565b61183b565b34801561071657600080fd5b506102ce6107253660046136d7565b611a07565b34801561073657600080fd5b506008546001600160a01b031661038b565b34801561075457600080fd5b5061035e611aca565b34801561076957600080fd5b506102ce610778366004613457565b611ad9565b34801561078957600080fd5b50610643610798366004613682565b611b6f565b3480156107a957600080fd5b506102ce6107b8366004613682565b611b89565b3480156107c957600080fd5b506102ce6107d83660046133f2565b611c1c565b3480156107e957600080fd5b5061035e6107f8366004613682565b611c67565b34801561080957600080fd5b506102ce611d34565b34801561081e57600080fd5b5061035e61082d3660046134d2565b611dc2565b34801561083e57600080fd5b5060175461085490610100900463ffffffff1681565b60405163ffffffff90911681526020016102fc565b34801561087557600080fd5b506102ce6108843660046134d2565b611e7d565b34801561089557600080fd5b506106436108a4366004613682565b611eac565b3480156108b557600080fd5b506102ce611ec6565b3480156108ca57600080fd5b5064e8d4a5100061031b565b3480156108e257600080fd5b506102f06108f1366004613385565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561092b57600080fd5b5061031b612599565b34801561094057600080fd5b506102ce61094f36600461336b565b6125c5565b60006001600160e01b031982166380ac58cd60e01b148061098557506001600160e01b03198216635b5e139f60e01b145b806109a057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60008281526011602052604090206109bd9061265d565b601c546109ca919061385b565b60008381526011602052604090206109e29033612668565b11610a2c5760405162461bcd60e51b81526020600482015260156024820152743737ba1030b63637bbb2b21037b832b930ba34b7b760591b60448201526064015b60405180910390fd5b600082815260146020908152604082208054600181018255908352918190208351610a5e9391909101918401906131ae565b505050565b606060028054610a72906138d1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9e906138d1565b8015610aeb5780601f10610ac057610100808354040283529160200191610aeb565b820191906000526020600020905b815481529060010190602001808311610ace57829003601f168201915b5050505050905090565b6000610b008261267d565b610b1d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b323314610b885760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a23565b601754600161010090910463ffffffff1611610be65760405162461bcd60e51b815260206004820152601860248201527f6e6f7420696e207075626c69632073616c6520737461746500000000000000006044820152606401610a23565b610bee610f53565b336000908152600f6020526040902054610c09908390613843565b1115610c515760405162461bcd60e51b815260206004820152601760248201527631b0b7103737ba1036b4b73a103a3434b99036b0b73c9760491b6044820152606401610a23565b600e54811115610ca35760405162461bcd60e51b815260206004820152601a60248201527f4e46542062616c616e6365206973206e6f7420656e6f7567682e0000000000006044820152606401610a23565b34610cac612599565b610cb6908361386f565b1115610cd45760405162461bcd60e51b8152600401610a23906137de565b336000908152600f602052604081208054839290610cf3908490613843565b9250508190555080600e6000828254610d0c919061388e565b90915550610d1c905033826126a8565b50565b6000610d2a82611568565b9050806001600160a01b0316836001600160a01b03161415610d5f5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610d7f5750610d7d81336108f1565b155b15610d9d576040516367d9dca160e11b815260040160405180910390fd5b610a5e8383836126c2565b600060208451610db8919061394b565b15610dc557506000610e58565b60008260205b86518111610e515780870151925082821015610e12576040805160208101849052908101849052606001604051602081830303815290604052805190602001209150610e3f565b60408051602081018590529081018390526060016040516020818303038152906040528051906020012091505b610e4a602082613843565b9050610dcb565b5084149150505b9392505050565b60008181526012602052604081206109a09061265d565b610a5e83838361271e565b34668a8e4b1a3d80001115610ed85760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610a23565b601a543360009081526019602052604090205463ffffffff908116911614610f375760405162461bcd60e51b8152602060048201526012602482015271139bdd081d5cd959081dda1a5d195b1a5cdd60721b6044820152606401610a23565b336000908152601960205260409020805463ffffffff19169055565b601754600090610100900463ffffffff16610f6e5750600290565b60175463ffffffff6101009091041660011415610f8b5750600190565b50601490565b6008546001600160a01b03163314610fbb5760405162461bcd60e51b8152600401610a239061380e565b60004711610fdb5760405162461bcd60e51b8152600401610a23906137de565b600c5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015611015573d6000803e3d6000fd5b5050565b6008546001600160a01b031633146110435760405162461bcd60e51b8152600401610a239061380e565b601054600160a01b900460ff16156110965760405162461bcd60e51b81526020600482015260166024820152753737ba1030b6363637bbb2b21037b832b930ba34b7b760511b6044820152606401610a23565b601080546001600160a01b039092166001600160a81b031990921691909117600160a01b179055565b610a5e83838360405180602001604052806000815250611c1c565b60008381526011602052604090206110f19061265d565b61111f5761111961110184611568565b601c546000868152601160205260409020919061290c565b50505050565b60008381526012602052604081206111379083612668565b6000858152601360205260408120919250906111539084612668565b60008681526011602052604081209192509061116f9085612668565b9050848310156111b85760405162461bcd60e51b81526020600482015260146024820152736e6f7420656e6f7567682073746f636b206e756d60601b6044820152606401610a23565b6010546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b1580156111fb57600080fd5b505afa15801561120f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123391906135d9565b61123d838761386f565b11156112825760405162461bcd60e51b81526020600482015260146024820152736e6f7420656e6f7567682073746f636b206e756d60601b6044820152606401610a23565b6010546001600160a01b03166323b872dd338661129f868a61386f565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401602060405180830381600087803b1580156112ee57600080fd5b505af1158015611302573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132691906134b6565b50611331858261388e565b9050801561137c57600086815260116020526040902061135290858361290c565b5061137684611361878661388e565b6000898152601260205260409020919061290c565b506113af565b6000868152601160205260409020611394908561292a565b5060008681526012602052604090206113ad908561292a565b505b60008681526011602052604090206113c7903361293f565b156113f15760008681526011602052604090206113e49033612668565b6113ee9086613843565b94505b600086815260116020526040902061140a90338761290c565b50505050505050565b6014602052816000526040600020818154811061142f57600080fd5b9060005260206000200160009150915050805461144b906138d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611477906138d1565b80156114c45780601f10611499576101008083540402835291602001916114c4565b820191906000526020600020905b8154815290600101906020018083116114a757829003601f168201915b505050505081565b6008546001600160a01b031633146114f65760405162461bcd60e51b8152600401610a239061380e565b60178054610100900463ffffffff1690600161151183613927565b91906101000a81548163ffffffff021916908363ffffffff16021790555050565b6008546001600160a01b0316331461155c5760405162461bcd60e51b8152600401610a239061380e565b610a5e60168383613232565b600061157382612954565b5192915050565b600082815260116020526040812081906115949084612a6e565b915091509250929050565b60006001600160a01b0382166115c8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146116175760405162461bcd60e51b8152600401610a239061380e565b6116216000612a8a565b565b6008546001600160a01b0316331461164d5760405162461bcd60e51b8152600401610a239061380e565b60105460405163a9059cbb60e01b81526001600160a01b038481166004830152602482018490529091169063a9059cbb90604401602060405180830381600087803b15801561169b57600080fd5b505af11580156116af573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5e91906134b6565b3233146117225760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a23565b3461173264e8d4a510008361386f565b11156117505760405162461bcd60e51b8152600401610a23906137de565b60105460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb90604401602060405180830381600087803b15801561179c57600080fd5b505af11580156117b0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101591906134b6565b6008546001600160a01b031633146117fe5760405162461bcd60e51b8152600401610a239061380e565b6018819055601a805463ffffffff1690600061181983613927565b91906101000a81548163ffffffff021916908363ffffffff1602179055505050565b611843610f53565b82111561188c5760405162461bcd60e51b815260206004820152601760248201527631b0b7103737ba1036b4b73a103a3434b99036b0b73c9760491b6044820152606401610a23565b600e548211156118de5760405162461bcd60e51b815260206004820152601a60248201527f4e46542062616c616e6365206973206e6f7420656e6f7567682e0000000000006044820152606401610a23565b601a543360009081526019602052604090205463ffffffff9081169116141561193a5760405162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e48155cd94815db60921b6044820152606401610a23565b6018546040516bffffffffffffffffffffffff193360601b16602082015261197c91839160340160405160208183030381529060405280519060200120610da8565b6119bb5760405162461bcd60e51b815260206004820152601060248201526f139bdd081a5b8815da1a5d195b1a5cdd60821b6044820152606401610a23565b601a54336000908152601960205260408120805463ffffffff191663ffffffff90931692909217909155600e80548492906119f790849061388e565b90915550611015905033836126a8565b60008381526011602052604090208290611a219033612668565b1015611a615760405162461bcd60e51b815260206004820152600f60248201526e6e6f20656e6f7567682073746f636b60881b6044820152606401610a23565b81611a97576000838152601260205260409020611a7e903361292a565b506000838152601360205260409020611119903361292a565b6000838152601260205260409020611ab090338461290c565b50600083815260136020526040902061111990338361290c565b606060038054610a72906138d1565b6001600160a01b038216331415611b035760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600082815260126020526040812081906115949084612a6e565b6000828152601160205260409020611ba09061265d565b601c54611bad919061385b565b6000838152601160205260409020611bc59033612668565b11611c0a5760405162461bcd60e51b81526020600482015260156024820152743737ba1030b63637bbb2b21037b832b930ba34b7b760591b6044820152606401610a23565b60009182526015602052604090912055565b611c2784848461271e565b6001600160a01b0383163b15158015611c495750611c4784848484612adc565b155b15611119576040516368d2bf6b60e11b815260040160405180910390fd5b600082815260146020526040902080546060919083908110611c9957634e487b7160e01b600052603260045260246000fd5b906000526020600020018054611cae906138d1565b80601f0160208091040260200160405190810160405280929190818152602001828054611cda906138d1565b8015611d275780601f10611cfc57610100808354040283529160200191611d27565b820191906000526020600020905b815481529060010190602001808311611d0a57829003601f168201915b5050505050905092915050565b6008546001600160a01b03163314611d5e5760405162461bcd60e51b8152600401610a239061380e565b60175460ff1615611da85760405162461bcd60e51b81526020600482015260146024820152731b9bdd08185b1b1bddd959081c995cd95c9d995960621b6044820152606401610a23565b611db33360786126a8565b6017805460ff19166001179055565b6060611dcd8261267d565b611dea57604051630a14c4b560e41b815260040160405180910390fd5b6000611df4612bd3565b905082611e00601b5490565b11611e47578051611e205760405180602001604052806000815250610e58565b80604051602001611e31919061375d565b6040516020818303038152906040529392505050565b8051611e625760405180602001604052806000815250610e58565b80611e6c84612be2565b604051602001611e3192919061372e565b6008546001600160a01b03163314611ea75760405162461bcd60e51b8152600401610a239061380e565b601b55565b600082815260136020526040812081906115949084612a6e565b6008546001600160a01b03163314611ef05760405162461bcd60e51b8152600401610a239061380e565b611f0f73b78dbb2cfe92251a4bf29dcd391a2ca8cc8c431060036126a8565b611f2e732a842e026a36f9af2b253855b3df5e47e2365a8360036126a8565b611f4d73df6b953aa8a2c10323d8c385c64449d75e3b812c60036126a8565b611f6c73045fb828ea12d68a1734dfe81e5f9d066c1885cf60046126a8565b611f8b73c3fc1492197d3c19da46b8fe40ca08f01d2feab460036126a8565b611faa730a90f733a52f5a1e0a405d2fd12df585cf63e6ee60056126a8565b611fc973d683c0c013e1382143b364d7fb7b64c3097087af60056126a8565b611fe8738bbe9845d4e3760360694eeec91405ee922caf6160046126a8565b61200773de9a9425b3ce28f66719ea606b1d1fdda210a94d60036126a8565b612026731e7d1ad7fe2372ef64bd4238d47891f675c7542560036126a8565b61204573c0c608a6e1e6b6b7aba00d2bae22bf4c5f51f73960056126a8565b61206473b02fe17677071baf521f86893ae2e8d0da7ac06c60026126a8565b612083737f3acd5eb9ae7fdb51b085820db3edb04696a6c060026126a8565b6120a273b857b4c9693285a36705a146d9dbe23ea8da467160056126a8565b6120c173de2baaa31b71caa10782c5396ccaad24df6cf94360036126a8565b6120e07369358fc4b6f111c449e9eef917335fe1e1c3408d60056126a8565b6120ff7368fc110bf23fd9c20c480158b6cd0721d9e1373960036126a8565b61211e734bcc170af3950fa0c72c324edd563a566ff6a9c260036126a8565b61213d73bacf53f44cbe63745ffd1071edd541697f76f25660036126a8565b61215c73fc56c2b11c329c1fbc5ed70a6a8ee6bd471cce7660056126a8565b61217b732a7f7b94b4acd9b244675f3342c8321e8a6c332760036126a8565b61219a739daea1cea8efa3fb8cad8f0a05af6306512a54d160036126a8565b6121b973a04294ca075f369c900d6399c3d809ee4417c5b560056126a8565b6121d873c46da85da706feb3165fa8acb3cc44e4105923dc60056126a8565b6121f773d9c3a1f6d84fea2a0f8eebe9e3e00899f07d6ed860056126a8565b6122167324e16a89dfc3e86d70d739b229749d28126ff57e60056126a8565b61223573e913c0a9fdb0395862ee18bc8b264652a90df0a560056126a8565b61225473d2b7094c390c30ee2bdc8e20a91a7fe633f65b5860056126a8565b612273739f11ad1fdf5fcb2cd088f66380372a065181df8a60056126a8565b6122927393dc9a9b45750f1b7a2b47e6cc1c5fb2779a999e60056126a8565b6122b1732c67aaa82ecb01b3a5f42e45d9c232d945fd637b60056126a8565b6122d073ba3d5a706cad6f6d3017a8b4b244089c45803e9d60056126a8565b6122ef73cc4f719022d8eae53126d77feb8382eb57b1943760056126a8565b61230e73079aadf2e92e2513606a2962ae6eeeb7ccf286ef60056126a8565b61232d735566188c75872d9d3ddc722096a26a86abe2201660036126a8565b61234c7314e9218deea10cbd6e16659887812b9862a25f3b60056126a8565b61236b734cba67cd2b6321b6472ef9b2637ba3351e0a100160056126a8565b61238a73f01ac313305543002ee4c7f28448d820a158fb6560056126a8565b6123a9737b7731ed65afdb0c5a8f822d96b272078ec9617560056126a8565b6123c8730112eb607b478fd4fea7f0b66b25865fe652732760056126a8565b6123e77384088ad00aacb86a71cb7f99856e51812e44a2b060056126a8565b61240673ef7294794cb16f7663065207a544e010a3707abb60056126a8565b6124257364a5d2e82a6bc529ad7ae8615946b768d128f7ef60056126a8565b61244473cb6ea79a271f42aaba7d1d51f3be9f8c52b8f80d60056126a8565b612463735c8a57817569cba1815b017993bd17a78f6aaa3d60056126a8565b612482733601d7e270d2bc03c6328df4d85c7e83d72a272960056126a8565b6124a173e539758434308f179de457548d8cf940f0f6609b60056126a8565b6124c073cab1aa589b944ef56dd7846af934889e4b7afc7760056126a8565b6124df73a8a9576f4fa9a0f4440cb588be6729ca08c6166e60056126a8565b6124fe737802cc861eb65431f6b7f33c4a4092b36529be7660056126a8565b61251d73dd21f27666b93d049744c332bbfffaa1554dbec760056126a8565b61253c73964e4dba0f4081a6c41d6183d10428f718ff61bb60056126a8565b61255b73295a9b1c5dbfdfd734bcc2efcd06c4d3ad8837fd60056126a8565b61257a73dd1bfdbd1019686e903da13a0c3bc9adcf183a8960056126a8565b61162173056e8118f42dac7e61b4cc00d77a97f0ba84f07c60056126a8565b601754600090600261010090910463ffffffff1610156125b95750600090565b5066470de4df82000090565b6008546001600160a01b031633146125ef5760405162461bcd60e51b8152600401610a239061380e565b6001600160a01b0381166126545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a23565b610d1c81612a8a565b60006109a082612cfb565b6000610e58836001600160a01b038416612d06565b60008054821080156109a0575050600090815260046020526040902054600160e01b900460ff161590565b611015828260405180602001604052806000815250612d76565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061272982612954565b9050836001600160a01b031681600001516001600160a01b0316146127605760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061277e575061277e85336108f1565b8061279957503361278e84610af5565b6001600160a01b0316145b9050806127b957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166127e057604051633a954ecd60e21b815260040160405180910390fd5b6127ec600084876126c2565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166128c05760005482146128c057805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000612922846001600160a01b03851684612d83565b949350505050565b6000610e58836001600160a01b038416612da0565b6000610e58836001600160a01b038416612dbd565b604080516060810182526000808252602082018190529181019190915281600054811015612a5557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290612a535780516001600160a01b0316156129ea579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612a4e579392505050565b6129ea565b505b604051636f96cda160e11b815260040160405180910390fd5b6000808080612a7d8686612dc9565b9097909650945050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612b1190339089908890889060040161378e565b602060405180830381600087803b158015612b2b57600080fd5b505af1925050508015612b5b575060408051601f3d908101601f19168201909252612b5891810190613506565b60015b612bb6573d808015612b89576040519150601f19603f3d011682016040523d82523d6000602084013e612b8e565b606091505b508051612bae576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b606060168054610a72906138d1565b606081612c065750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612c305780612c1a8161390c565b9150612c299050600a8361385b565b9150612c0a565b6000816001600160401b03811115612c5857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612c82576020820181803683370190505b5090505b841561292257612c9760018361388e565b9150612ca4600a8661394b565b612caf906030613843565b60f81b818381518110612cd257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612cf4600a8661385b565b9450612c86565b60006109a082612df4565b600081815260028301602052604081205480151580612d2a5750612d2a8484612dbd565b610e585760405162461bcd60e51b815260206004820152601e60248201527f456e756d657261626c654d61703a206e6f6e6578697374656e74206b657900006044820152606401610a23565b610a5e8383836001612dfe565b600082815260028401602052604081208290556129228484612fce565b60008181526002830160205260408120819055610e588383612fda565b6000610e588383612fe6565b60008080612dd78585612ffe565b600081815260029690960160205260409095205494959350505050565b60006109a0825490565b6000546001600160a01b038516612e2757604051622e076360e81b815260040160405180910390fd5b83612e455760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612ef657506001600160a01b0387163b15155b15612f7f575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612f476000888480600101955088612adc565b612f64576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612efc578260005414612f7a57600080fd5b612fc5565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612f80575b50600055612905565b6000610e58838361300a565b6000610e588383613059565b60008181526001830160205260408120541515610e58565b6000610e588383613176565b6000818152600183016020526040812054613051575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556109a0565b5060006109a0565b6000818152600183016020526040812054801561316c57600061307d60018361388e565b85549091506000906130919060019061388e565b90508181146131125760008660000182815481106130bf57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106130f057634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061313157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506109a0565b60009150506109a0565b600082600001828154811061319b57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b8280546131ba906138d1565b90600052602060002090601f0160209004810192826131dc5760008555613222565b82601f106131f557805160ff1916838001178555613222565b82800160010185558215613222579182015b82811115613222578251825591602001919060010190613207565b5061322e9291506132a6565b5090565b82805461323e906138d1565b90600052602060002090601f0160209004810192826132605760008555613222565b82601f106132795782800160ff19823516178555613222565b82800160010185558215613222579182015b8281111561322257823582559160200191906001019061328b565b5b8082111561322e57600081556001016132a7565b60006001600160401b03808411156132d5576132d561398b565b604051601f8501601f19908116603f011681019082821181831017156132fd576132fd61398b565b8160405280935085815286868601111561331657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461334757600080fd5b919050565b600082601f83011261335c578081fd5b610e58838335602085016132bb565b60006020828403121561337c578081fd5b610e5882613330565b60008060408385031215613397578081fd5b6133a083613330565b91506133ae60208401613330565b90509250929050565b6000806000606084860312156133cb578081fd5b6133d484613330565b92506133e260208501613330565b9150604084013590509250925092565b60008060008060808587031215613407578081fd5b61341085613330565b935061341e60208601613330565b92506040850135915060608501356001600160401b0381111561343f578182fd5b61344b8782880161334c565b91505092959194509250565b60008060408385031215613469578182fd5b61347283613330565b91506020830135613482816139a1565b809150509250929050565b6000806040838503121561349f578182fd5b6134a883613330565b946020939093013593505050565b6000602082840312156134c7578081fd5b8151610e58816139a1565b6000602082840312156134e3578081fd5b5035919050565b6000602082840312156134fb578081fd5b8135610e58816139af565b600060208284031215613517578081fd5b8151610e58816139af565b600080600060608486031215613536578283fd5b83356001600160401b0381111561354b578384fd5b6135578682870161334c565b9660208601359650604090950135949350505050565b6000806020838503121561357f578081fd5b82356001600160401b0380821115613595578283fd5b818501915085601f8301126135a8578283fd5b8135818111156135b6578384fd5b8660208285010111156135c7578384fd5b60209290920196919550909350505050565b6000602082840312156135ea578081fd5b5051919050565b60008060408385031215613603578182fd5b8235915060208301356001600160401b0381111561361f578182fd5b61362b8582860161334c565b9150509250929050565b60008060408385031215613647578182fd5b8235915060208301356001600160401b03811115613663578182fd5b8301601f81018513613673578182fd5b61362b858235602084016132bb565b60008060408385031215613694578182fd5b50508035926020909101359150565b6000806000606084860312156136b7578081fd5b83359250602084013591506136ce60408501613330565b90509250925092565b6000806000606084860312156136eb578081fd5b505081359360208301359350604090920135919050565b6000815180845261371a8160208601602086016138a5565b601f01601f19169290920160200192915050565b600083516137408184602088016138a5565b8351908301906137548183602088016138a5565b01949350505050565b6000825161376f8184602087016138a5565b6c313634b7323137bc173539b7b760991b920191825250600d01919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906137c190830184613702565b9695505050505050565b602081526000610e586020830184613702565b6020808252601690820152753130b630b731b29034b9903737ba1032b737bab3b41760511b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156138565761385661395f565b500190565b60008261386a5761386a613975565b500490565b60008160001904831182151516156138895761388961395f565b500290565b6000828210156138a0576138a061395f565b500390565b60005b838110156138c05781810151838201526020016138a8565b838111156111195750506000910152565b600181811c908216806138e557607f821691505b6020821081141561390657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156139205761392061395f565b5060010190565b600063ffffffff808316818114156139415761394161395f565b6001019392505050565b60008261395a5761395a613975565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b8015158114610d1c57600080fd5b6001600160e01b031981168114610d1c57600080fdfea2646970667358221220f2ec2e6cdb0385fd6442eb5ad1f282b04f7f7d3529196193f90194130e86781a64736f6c63430008040033

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

000000000000000000000000abb7635910c4d7e8a02bd9ad5b036a089974bf88000000000000000000000000abb7635910c4d7e8a02bd9ad5b036a089974bf88000000000000000000000000abb7635910c4d7e8a02bd9ad5b036a089974bf88000000000000000000000000abb7635910c4d7e8a02bd9ad5b036a089974bf88000000000000000000000000abb7635910c4d7e8a02bd9ad5b036a089974bf88

-----Decoded View---------------
Arg [0] : _wallet (address): 0xaBB7635910c4D7E8a02BD9aD5B036A089974BF88
Arg [1] : _wallet1 (address): 0xaBB7635910c4D7E8a02BD9aD5B036A089974BF88
Arg [2] : _wallet2 (address): 0xaBB7635910c4D7E8a02BD9aD5B036A089974BF88
Arg [3] : _wallet3 (address): 0xaBB7635910c4D7E8a02BD9aD5B036A089974BF88
Arg [4] : _wallet4 (address): 0xaBB7635910c4D7E8a02BD9aD5B036A089974BF88

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000abb7635910c4d7e8a02bd9ad5b036a089974bf88
Arg [1] : 000000000000000000000000abb7635910c4d7e8a02bd9ad5b036a089974bf88
Arg [2] : 000000000000000000000000abb7635910c4d7e8a02bd9ad5b036a089974bf88
Arg [3] : 000000000000000000000000abb7635910c4d7e8a02bd9ad5b036a089974bf88
Arg [4] : 000000000000000000000000abb7635910c4d7e8a02bd9ad5b036a089974bf88


Deployed Bytecode Sourcemap

76455:13651:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58699:305;;;;;;;;;;-1:-1:-1;58699:305:0;;;;;:::i;:::-;;:::i;:::-;;;10644:14:1;;10637:22;10619:41;;10607:2;10592:18;58699:305:0;;;;;;;;76732:28;;;;;;;;;;;;;;;;;;;10817:25:1;;;10805:2;10790:18;76732:28:0;10772:76:1;88725:217:0;;;;;;;;;;-1:-1:-1;88725:217:0;;;;;:::i;:::-;;:::i;61812:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;63326:204::-;;;;;;;;;;-1:-1:-1;63326:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9283:32:1;;;9265:51;;9253:2;9238:18;63326:204:0;9220:102:1;84801:549:0;;;;;;:::i;:::-;;:::i;62889:371::-;;;;;;;;;;-1:-1:-1;62889:371:0;;;;;:::i;:::-;;:::i;78052:1051::-;;;;;;;;;;-1:-1:-1;78052:1051:0;;;;;:::i;:::-;;:::i;57948:303::-;;;;;;;;;;-1:-1:-1;58202:12:0;;57992:7;58186:13;:28;57948:303;;89451:124;;;;;;;;;;-1:-1:-1;89451:124:0;;;;;:::i;:::-;;:::i;76830:41::-;;;;;;;;;;-1:-1:-1;76830:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;64191:170;;;;;;;;;;-1:-1:-1;64191:170:0;;;;;:::i;:::-;;:::i;83123:114::-;;;;;;;;;;-1:-1:-1;83218:11:0;;83203:10;83168:4;83192:22;;;:10;:22;;;;;;83218:11;;;;83192:22;;:37;83123:114;;83968:252;;;:::i;83664:296::-;;;;;;;;;;;;;:::i;88950:117::-;;;;;;;;;;-1:-1:-1;88950:117:0;;;;;:::i;:::-;89011:4;89035:17;;;:10;:17;;;;;:24;;88950:117;77413:25;;;;;;;;;;;;;;;;85829:207;;;;;;;;;;;;;:::i;86673:174::-;;;;;;;;;;-1:-1:-1;86673:174:0;;;;;:::i;:::-;;:::i;64432:185::-;;;;;;;;;;-1:-1:-1;64432:185:0;;;;;:::i;:::-;;:::i;87022:1238::-;;;;;;;;;;-1:-1:-1;87022:1238:0;;;;;:::i;:::-;;:::i;77184:46::-;;;;;;;;;;-1:-1:-1;77184:46:0;;;;;:::i;:::-;;:::i;83245:80::-;;;;;;;;;;;;;:::i;85358:106::-;;;;;;;;;;-1:-1:-1;85358:106:0;;;;;:::i;:::-;;:::i;77237:53::-;;;;;;;;;;-1:-1:-1;77237:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;61620:125;;;;;;;;;;-1:-1:-1;61620:125:0;;;;;:::i;:::-;;:::i;89897:135::-;;;;;;;;;;-1:-1:-1;89897:135:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;10392:32:1;;;10374:51;;10456:2;10441:18;;10434:34;;;;10347:18;89897:135:0;10329:145:1;59068:206:0;;;;;;;;;;-1:-1:-1;59068:206:0;;;;;:::i;:::-;;:::i;53721:103::-;;;;;;;;;;;;;:::i;86855:117::-;;;;;;;;;;-1:-1:-1;86855:117:0;;;;;:::i;:::-;;:::i;86044:418::-;;;;;;:::i;:::-;;:::i;79111:128::-;;;;;;;;;;-1:-1:-1;79111:128:0;;;;;:::i;:::-;;:::i;84228:565::-;;;;;;;;;;-1:-1:-1;84228:565:0;;;;;:::i;:::-;;:::i;88268:449::-;;;;;;;;;;-1:-1:-1;88268:449:0;;;;;:::i;:::-;;:::i;53070:87::-;;;;;;;;;;-1:-1:-1;53143:6:0;;-1:-1:-1;;;;;53143:6:0;53070:87;;61981:104;;;;;;;;;;;;;:::i;63602:287::-;;;;;;;;;;-1:-1:-1;63602:287:0;;;;;:::i;:::-;;:::i;89583:144::-;;;;;;;;;;-1:-1:-1;89583:144:0;;;;;:::i;:::-;;:::i;89215:228::-;;;;;;;;;;-1:-1:-1;89215:228:0;;;;;:::i;:::-;;:::i;64688:369::-;;;;;;;;;;-1:-1:-1;64688:369:0;;;;;:::i;:::-;;:::i;89075:132::-;;;;;;;;;;-1:-1:-1;89075:132:0;;;;;:::i;:::-;;:::i;79251:182::-;;;;;;;;;;;;;:::i;62156:468::-;;;;;;;;;;-1:-1:-1;62156:468:0;;;;;:::i;:::-;;:::i;77370:30::-;;;;;;;;;;-1:-1:-1;77370:30:0;;;;;;;;;;;;;;17468:10:1;17456:23;;;17438:42;;17426:2;17411:18;77370:30:0;17393:93:1;85720:101:0;;;;;;;;;;-1:-1:-1;85720:101:0;;;;;:::i;:::-;;:::i;89735:154::-;;;;;;;;;;-1:-1:-1;89735:154:0;;;;;:::i;:::-;;:::i;79441:3674::-;;;;;;;;;;;;;:::i;83539:117::-;;;;;;;;;;-1:-1:-1;83620:13:0;83539:117;;63960:164;;;;;;;;;;-1:-1:-1;63960:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;64081:25:0;;;64057:4;64081:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;63960:164;83333:198;;;;;;;;;;;;;:::i;53979:201::-;;;;;;;;;;-1:-1:-1;53979:201:0;;;;;:::i;:::-;;:::i;58699:305::-;58801:4;-1:-1:-1;;;;;;58838:40:0;;-1:-1:-1;;;58838:40:0;;:105;;-1:-1:-1;;;;;;;58895:48:0;;-1:-1:-1;;;58895:48:0;58838:105;:158;;;-1:-1:-1;;;;;;;;;;52094:40:0;;;58960:36;58818:178;58699:305;-1:-1:-1;;58699:305:0:o;88725:217::-;88848:12;;;;:5;:12;;;;;:21;;:19;:21::i;:::-;88837:8;;:32;;;;:::i;:::-;88806:12;;;;:5;:12;;;;;:28;;88823:10;88806:16;:28::i;:::-;:63;88798:97;;;;-1:-1:-1;;;88798:97:0;;13797:2:1;88798:97:0;;;13779:21:1;13836:2;13816:18;;;13809:30;-1:-1:-1;;;13855:18:1;;;13848:51;13916:18;;88798:97:0;;;;;;;;;88906:17;;;;:10;:17;;;;;;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;88725:217;;:::o;61812:100::-;61866:13;61899:5;61892:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61812:100;:::o;63326:204::-;63394:7;63419:16;63427:7;63419;:16::i;:::-;63414:64;;63444:34;;-1:-1:-1;;;63444:34:0;;;;;;;;;;;63414:64;-1:-1:-1;63498:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;63498:24:0;;63326:204::o;84801:549::-;77617:9;77630:10;77617:23;77609:66;;;;-1:-1:-1;;;77609:66:0;;13089:2:1;77609:66:0;;;13071:21:1;13128:2;13108:18;;;13101:30;13167:32;13147:18;;;13140:60;13217:18;;77609:66:0;13061:180:1;77609:66:0;84893:12:::1;::::0;84908:1:::1;84893:12;::::0;;::::1;;;:16;84885:53;;;::::0;-1:-1:-1;;;84885:53:0;;14850:2:1;84885:53:0::1;::::0;::::1;14832:21:1::0;14889:2;14869:18;;;14862:30;14928:26;14908:18;;;14901:54;14972:18;;84885:53:0::1;14822:174:1::0;84885:53:0::1;84996:21;:19;:21::i;:::-;84964:10;84957:18;::::0;;;:6:::1;:18;::::0;;;;;:35:::1;::::0;84978:14;;84957:35:::1;:::i;:::-;:60;;84949:96;;;::::0;-1:-1:-1;;;84949:96:0;;14498:2:1;84949:96:0::1;::::0;::::1;14480:21:1::0;14537:2;14517:18;;;14510:30;-1:-1:-1;;;14556:18:1;;;14549:53;14619:18;;84949:96:0::1;14470:173:1::0;84949:96:0::1;85082:6;;85064:14;:24;;85056:63;;;::::0;-1:-1:-1;;;85056:63:0;;12734:2:1;85056:63:0::1;::::0;::::1;12716:21:1::0;12773:2;12753:18;;;12746:30;12812:28;12792:18;;;12785:56;12858:18;;85056:63:0::1;12706:176:1::0;85056:63:0::1;85174:9;85155:15;:13;:15::i;:::-;85138:32;::::0;:14;:32:::1;:::i;:::-;:45;;85130:80;;;;-1:-1:-1::0;;;85130:80:0::1;;;;;;;:::i;:::-;85230:10;85223:18;::::0;;;:6:::1;:18;::::0;;;;:36;;85245:14;;85223:18;:36:::1;::::0;85245:14;;85223:36:::1;:::i;:::-;;;;;;;;85280:14;85270:6;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;85305:37:0::1;::::0;-1:-1:-1;85315:10:0::1;85327:14:::0;85305:9:::1;:37::i;:::-;84801:549:::0;:::o;62889:371::-;62962:13;62978:24;62994:7;62978:15;:24::i;:::-;62962:40;;63023:5;-1:-1:-1;;;;;63017:11:0;:2;-1:-1:-1;;;;;63017:11:0;;63013:48;;;63037:24;;-1:-1:-1;;;63037:24:0;;;;;;;;;;;63013:48;229:10;-1:-1:-1;;;;;63078:21:0;;;;;;:63;;-1:-1:-1;63104:37:0;63121:5;229:10;63960:164;:::i;63104:37::-;63103:38;63078:63;63074:138;;;63165:35;;-1:-1:-1;;;63165:35:0;;;;;;;;;;;63074:138;63224:28;63233:2;63237:7;63246:5;63224:8;:28::i;78052:1051::-;78145:4;78236:2;78220:6;:13;:18;;;;:::i;:::-;:23;78216:41;;-1:-1:-1;78252:5:0;78245:12;;78216:41;78270:20;78324:5;78359:2;78342:637;78368:6;:13;78363:1;:18;78342:637;;78527:1;78519:6;78515:14;78509:21;78493:37;;78580:12;78565;:27;78561:407;;;78717:44;;;;;;8092:19:1;;;8127:12;;;8120:28;;;8164:12;;78717:44:0;;;;;;;;;;;;78707:55;;;;;;78692:70;;78561:407;;;78907:44;;;;;;8092:19:1;;;8127:12;;;8120:28;;;8164:12;;78907:44:0;;;;;;;;;;;;78897:55;;;;;;78882:70;;78561:407;78383:7;78388:2;78383:7;;:::i;:::-;;;78342:637;;;-1:-1:-1;79074:21:0;;;-1:-1:-1;;78052:1051:0;;;;;;:::o;89451:124::-;89512:7;89539:19;;;:12;:19;;;;;:28;;:26;:28::i;64191:170::-;64325:28;64335:4;64341:2;64345:7;64325:9;:28::i;83968:252::-;84051:9;84030:17;:30;;84022:74;;;;-1:-1:-1;;;84022:74:0;;12374:2:1;84022:74:0;;;12356:21:1;12413:2;12393:18;;;12386:30;12452:33;12432:18;;;12425:61;12503:18;;84022:74:0;12346:181:1;84022:74:0;84141:11;;84126:10;84141:11;84115:22;;;:10;:22;;;;;;84141:11;84115:22;;;84141:11;;84115:37;84107:68;;;;-1:-1:-1;;;84107:68:0;;15203:2:1;84107:68:0;;;15185:21:1;15242:2;15222:18;;;15215:30;-1:-1:-1;;;15261:18:1;;;15254:48;15319:18;;84107:68:0;15175:168:1;84107:68:0;84197:10;84211:1;84186:22;;;:10;:22;;;;;:26;;-1:-1:-1;;84186:26:0;;;83968:252::o;83664:296::-;83739:12;;83715:7;;83739:12;;;;;83735:218;;-1:-1:-1;83799:1:0;;83664:296::o;83735:218::-;83822:12;;;;;;;;;:17;83818:135;;;-1:-1:-1;83883:1:0;;83664:296::o;83818:135::-;-1:-1:-1;83939:2:0;;83664:296::o;85829:207::-;53143:6;;-1:-1:-1;;;;;53143:6:0;229:10;53290:23;53282:68;;;;-1:-1:-1;;;53282:68:0;;;;;;;:::i;:::-;85911:1:::1;85887:21;:25;85879:60;;;;-1:-1:-1::0;;;85879:60:0::1;;;;;;;:::i;:::-;85999:11;::::0;:29:::1;::::0;85967:21:::1;::::0;-1:-1:-1;;;;;85999:11:0::1;::::0;:29;::::1;;;::::0;85967:21;;85952:12:::1;85999:29:::0;85952:12;85999:29;85967:21;85999:11;:29;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;53361:1;85829:207::o:0;86673:174::-;53143:6;;-1:-1:-1;;;;;53143:6:0;229:10;53290:23;53282:68;;;;-1:-1:-1;;;53282:68:0;;;;;;;:::i;:::-;86742:14:::1;::::0;-1:-1:-1;;;86742:14:0;::::1;;;:19:::0;86734:54:::1;;;::::0;-1:-1:-1;;;86734:54:0;;15911:2:1;86734:54:0::1;::::0;::::1;15893:21:1::0;15950:2;15930:18;;;15923:30;-1:-1:-1;;;15969:18:1;;;15962:52;16031:18;;86734:54:0::1;15883:172:1::0;86734:54:0::1;86793:14;:18:::0;;-1:-1:-1;;;;;86816:26:0;;::::1;-1:-1:-1::0;;;;;;86816:26:0;;;;;;;-1:-1:-1;;;86816:26:0;;;86673:174::o;64432:185::-;64570:39;64587:4;64593:2;64597:7;64570:39;;;;;;;;;;;;:16;:39::i;87022:1238::-;87106:12;;;;:5;:12;;;;;:21;;:19;:21::i;:::-;87102:1151;;87149:42;87166:14;87174:5;87166:7;:14::i;:::-;87182:8;;87149:12;;;;:5;:12;;;;;;:42;:16;:42::i;:::-;;88906:28;88725:217;;:::o;87102:1151::-;87224:18;87245:19;;;:12;:19;;;;;:31;;87269:6;87245:23;:31::i;:::-;87291:17;87311:24;;;:17;:24;;;;;87224:52;;-1:-1:-1;87291:17:0;87311:36;;87340:6;87311:28;:36::i;:::-;87362:14;87379:12;;;:5;:12;;;;;87291:56;;-1:-1:-1;87362:14:0;87379:24;;87396:6;87379:16;:24::i;:::-;87362:41;;87445:6;87428:13;:23;;87420:56;;;;-1:-1:-1;;;87420:56:0;;13448:2:1;87420:56:0;;;13430:21:1;13487:2;13467:18;;;13460:30;-1:-1:-1;;;13506:18:1;;;13499:50;13566:18;;87420:56:0;13420:170:1;87420:56:0;87524:3;;:25;;-1:-1:-1;;;87524:25:0;;87538:10;87524:25;;;9265:51:1;-1:-1:-1;;;;;87524:3:0;;;;:13;;9238:18:1;;87524:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;87499:21;87508:12;87499:6;:21;:::i;:::-;:50;;87491:83;;;;-1:-1:-1;;;87491:83:0;;13448:2:1;87491:83:0;;;13430:21:1;13487:2;13467:18;;;13460:30;-1:-1:-1;;;13506:18:1;;;13499:50;13566:18;;87491:83:0;13420:170:1;87491:83:0;87655:3;;-1:-1:-1;;;;;87655:3:0;:16;87672:10;87684:6;87692:21;87701:12;87692:6;:21;:::i;:::-;87655:59;;-1:-1:-1;;;;;;87655:59:0;;;;;;;-1:-1:-1;;;;;9585:15:1;;;87655:59:0;;;9567:34:1;9637:15;;;;9617:18;;;9610:43;9669:18;;;9662:34;9502:18;;87655:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;87755:18:0;87767:6;87755:9;:18;:::i;:::-;87743:30;-1:-1:-1;87792:13:0;;87788:284;;87826:12;;;;:5;:12;;;;;:35;;87843:6;87851:9;87826:16;:35::i;:::-;-1:-1:-1;87880:55:0;87904:6;87912:22;87928:6;87912:13;:22;:::i;:::-;87880:19;;;;:12;:19;;;;;;:55;:23;:55::i;:::-;;87788:284;;;87976:12;;;;:5;:12;;;;;:27;;87996:6;87976:19;:27::i;:::-;-1:-1:-1;88022:19:0;;;;:12;:19;;;;;:34;;88049:6;88022:26;:34::i;:::-;;87788:284;88092:12;;;;:5;:12;;;;;:33;;88114:10;88092:21;:33::i;:::-;88088:102;;;88162:12;;;;:5;:12;;;;;:28;;88179:10;88162:16;:28::i;:::-;88153:37;;:6;:37;:::i;:::-;88144:46;;88088:102;88205:12;;;;:5;:12;;;;;:36;;88222:10;88234:6;88205:16;:36::i;:::-;;87102:1151;;;87022:1238;;;:::o;77184:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;83245:80::-;53143:6;;-1:-1:-1;;;;;53143:6:0;229:10;53290:23;53282:68;;;;-1:-1:-1;;;53282:68:0;;;;;;;:::i;:::-;83303:12:::1;:14:::0;;::::1;::::0;::::1;;;::::0;:12:::1;:14;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;83245:80::o:0;85358:106::-;53143:6;;-1:-1:-1;;;;;53143:6:0;229:10;53290:23;53282:68;;;;-1:-1:-1;;;53282:68:0;;;;;;;:::i;:::-;85433:23:::1;:13;85449:7:::0;;85433:23:::1;:::i;61620:125::-:0;61684:7;61711:21;61724:7;61711:12;:21::i;:::-;:26;;61620:125;-1:-1:-1;;61620:125:0:o;89897:135::-;89966:7;90002:12;;;:5;:12;;;;;89966:7;;90002:22;;90018:5;90002:15;:22::i;:::-;89995:29;;;;89897:135;;;;;:::o;59068:206::-;59132:7;-1:-1:-1;;;;;59156:19:0;;59152:60;;59184:28;;-1:-1:-1;;;59184:28:0;;;;;;;;;;;59152:60;-1:-1:-1;;;;;;59238:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;59238:27:0;;59068:206::o;53721:103::-;53143:6;;-1:-1:-1;;;;;53143:6:0;229:10;53290:23;53282:68;;;;-1:-1:-1;;;53282:68:0;;;;;;;:::i;:::-;53786:30:::1;53813:1;53786:18;:30::i;:::-;53721:103::o:0;86855:117::-;53143:6;;-1:-1:-1;;;;;53143:6:0;229:10;53290:23;53282:68;;;;-1:-1:-1;;;53282:68:0;;;;;;;:::i;:::-;86937:3:::1;::::0;:27:::1;::::0;-1:-1:-1;;;86937:27:0;;-1:-1:-1;;;;;10392:32:1;;;86937:27:0::1;::::0;::::1;10374:51:1::0;10441:18;;;10434:34;;;86937:3:0;;::::1;::::0;:12:::1;::::0;10347:18:1;;86937:27:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;86044:418::-:0;77617:9;77630:10;77617:23;77609:66;;;;-1:-1:-1;;;77609:66:0;;13089:2:1;77609:66:0;;;13071:21:1;13128:2;13108:18;;;13101:30;13167:32;13147:18;;;13140:60;13217:18;;77609:66:0;13061:180:1;77609:66:0;86367:9:::1;86326:37;83620:13:::0;86326:14;:37:::1;:::i;:::-;:50;;86318:85;;;;-1:-1:-1::0;;;86318:85:0::1;;;;;;;:::i;:::-;86414:3;::::0;:40:::1;::::0;-1:-1:-1;;;86414:40:0;;86427:10:::1;86414:40;::::0;::::1;10374:51:1::0;10441:18;;;10434:34;;;-1:-1:-1;;;;;86414:3:0;;::::1;::::0;:12:::1;::::0;10347:18:1;;86414:40:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;79111:128::-:0;53143:6;;-1:-1:-1;;;;;53143:6:0;229:10;53290:23;53282:68;;;;-1:-1:-1;;;53282:68:0;;;;;;;:::i;:::-;79183:10:::1;:24:::0;;;79218:11:::1;:13:::0;;::::1;;::::0;:11:::1;:13;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;79111:128:::0;:::o;84228:565::-;84334:21;:19;:21::i;:::-;84316:14;:39;;84308:75;;;;-1:-1:-1;;;84308:75:0;;14498:2:1;84308:75:0;;;14480:21:1;14537:2;14517:18;;;14510:30;-1:-1:-1;;;14556:18:1;;;14549:53;14619:18;;84308:75:0;14470:173:1;84308:75:0;84420:6;;84402:14;:24;;84394:63;;;;-1:-1:-1;;;84394:63:0;;12734:2:1;84394:63:0;;;12716:21:1;12773:2;12753:18;;;12746:30;12812:28;12792:18;;;12785:56;12858:18;;84394:63:0;12706:176:1;84394:63:0;84504:11;;84489:10;84504:11;84478:22;;;:10;:22;;;;;;84504:11;84478:22;;;84504:11;;84478:37;;84470:64;;;;-1:-1:-1;;;84470:64:0;;12031:2:1;84470:64:0;;;12013:21:1;12070:2;12050:18;;;12043:30;-1:-1:-1;;;12089:18:1;;;12082:44;12143:18;;84470:64:0;12003:164:1;84470:64:0;84572:10;;84594:28;;-1:-1:-1;;84611:10:0;7850:2:1;7846:15;7842:53;84594:28:0;;;7830:66:1;84553:71:0;;84565:5;;7912:12:1;;84594:28:0;;;;;;;;;;;;84584:39;;;;;;84553:11;:71::i;:::-;84545:100;;;;-1:-1:-1;;;84545:100:0;;11279:2:1;84545:100:0;;;11261:21:1;11318:2;11298:18;;;11291:30;-1:-1:-1;;;11337:18:1;;;11330:46;11393:18;;84545:100:0;11251:166:1;84545:100:0;84691:11;;84677:10;84691:11;84666:22;;;:10;:22;;;;;:36;;-1:-1:-1;;84666:36:0;84691:11;;;;84666:36;;;;;;;84713:6;:24;;84723:14;;84691:11;84713:24;;84723:14;;84713:24;:::i;:::-;;;;-1:-1:-1;84748:37:0;;-1:-1:-1;84758:10:0;84770:14;84748:9;:37::i;88268:449::-;88353:12;;;;:5;:12;;;;;88385:6;;88353:28;;88370:10;88353:16;:28::i;:::-;:38;;88345:66;;;;-1:-1:-1;;;88345:66:0;;16970:2:1;88345:66:0;;;16952:21:1;17009:2;16989:18;;;16982:30;-1:-1:-1;;;17028:18:1;;;17021:45;17083:18;;88345:66:0;16942:165:1;88345:66:0;88436:11;88432:278;;88464:19;;;;:12;:19;;;;;:38;;88491:10;88464:26;:38::i;:::-;-1:-1:-1;88517:24:0;;;;:17;:24;;;;;:43;;88549:10;88517:31;:43::i;88432:278::-;88593:19;;;;:12;:19;;;;;:43;;88617:10;88629:6;88593:23;:43::i;:::-;-1:-1:-1;88651:24:0;;;;:17;:24;;;;;:47;;88680:10;88692:5;88651:28;:47::i;61981:104::-;62037:13;62070:7;62063:14;;;;;:::i;63602:287::-;-1:-1:-1;;;;;63701:24:0;;229:10;63701:24;63697:54;;;63734:17;;-1:-1:-1;;;63734:17:0;;;;;;;;;;;63697:54;229:10;63764:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;63764:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;63764:53:0;;;;;;;;;;63833:48;;10619:41:1;;;63764:42:0;;229:10;63833:48;;10592:18:1;63833:48:0;;;;;;;63602:287;;:::o;89583:144::-;89654:7;89690:19;;;:12;:19;;;;;89654:7;;89690:29;;89713:5;89690:22;:29::i;89215:228::-;89341:12;;;;:5;:12;;;;;:21;;:19;:21::i;:::-;89330:8;;:32;;;;:::i;:::-;89299:12;;;;:5;:12;;;;;:28;;89316:10;89299:16;:28::i;:::-;:63;89291:97;;;;-1:-1:-1;;;89291:97:0;;13797:2:1;89291:97:0;;;13779:21:1;13836:2;13816:18;;;13809:30;-1:-1:-1;;;13855:18:1;;;13848:51;13916:18;;89291:97:0;13769:171:1;89291:97:0;89399:25;;;;:18;:25;;;;;;:36;89215:228::o;64688:369::-;64855:28;64865:4;64871:2;64875:7;64855:9;:28::i;:::-;-1:-1:-1;;;;;64898:13:0;;38273:19;:23;;64898:76;;;;;64918:56;64949:4;64955:2;64959:7;64968:5;64918:30;:56::i;:::-;64917:57;64898:76;64894:156;;;64998:40;;-1:-1:-1;;;64998:40:0;;;;;;;;;;;89075:132;89175:17;;;;:10;:17;;;;;:24;;89142:13;;89175:17;89193:5;;89175:24;;;;-1:-1:-1;;;89175:24:0;;;;;;;;;;;;;;;;89168:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89075:132;;;;:::o;79251:182::-;53143:6;;-1:-1:-1;;;;;53143:6:0;229:10;53290:23;53282:68;;;;-1:-1:-1;;;53282:68:0;;;;;;;:::i;:::-;79319:12:::1;::::0;::::1;;:17:::0;79311:50:::1;;;::::0;-1:-1:-1;;;79311:50:0;;16621:2:1;79311:50:0::1;::::0;::::1;16603:21:1::0;16660:2;16640:18;;;16633:30;-1:-1:-1;;;16679:18:1;;;16672:50;16739:18;;79311:50:0::1;16593:170:1::0;79311:50:0::1;79372:26;79382:10;79394:3;79372:9;:26::i;:::-;79409:12;:16:::0;;-1:-1:-1;;79409:16:0::1;79424:1;79409:16;::::0;;79251:182::o;62156:468::-;62229:13;62260:16;62268:7;62260;:16::i;:::-;62255:59;;62285:29;;-1:-1:-1;;;62285:29:0;;;;;;;;;;;62255:59;62327:21;62351:10;:8;:10::i;:::-;62327:34;;62396:7;62376:16;85691:13;;;85598:114;62376:16;:27;62372:137;;62425:21;;:84;;;;;;;;;;;;;;;;;62478:7;62461:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;62418:91;62156:468;-1:-1:-1;;;62156:468:0:o;62372:137::-;62529:21;;:87;;;;;;;;;;;;;;;;;62582:7;62591:18;:7;:16;:18::i;:::-;62565:45;;;;;;;;;:::i;85720:101::-;53143:6;;-1:-1:-1;;;;;53143:6:0;229:10;53290:23;53282:68;;;;-1:-1:-1;;;53282:68:0;;;;;;;:::i;:::-;85787:13:::1;:22:::0;85720:101::o;89735:154::-;89811:7;89847:24;;;:17;:24;;;;;89811:7;;89847:34;;89875:5;89847:27;:34::i;79441:3674::-;53143:6;;-1:-1:-1;;;;;53143:6:0;229:10;53290:23;53282:68;;;;-1:-1:-1;;;53282:68:0;;;;;;;:::i;:::-;79487:55:::1;79497:42;79540:1;79487:9;:55::i;:::-;79554;79564:42;79607:1;79554:9;:55::i;:::-;79620;79630:42;79673:1;79620:9;:55::i;:::-;79686;79696:42;79739:1;79686:9;:55::i;:::-;79752;79762:42;79805:1;79752:9;:55::i;:::-;79818;79828:42;79871:1;79818:9;:55::i;:::-;79884;79894:42;79937:1;79884:9;:55::i;:::-;79950;79960:42;80003:1;79950:9;:55::i;:::-;80016;80026:42;80069:1;80016:9;:55::i;:::-;80082;80092:42;80135:1;80082:9;:55::i;:::-;80148;80158:42;80201:1;80148:9;:55::i;:::-;80214;80224:42;80267:1;80214:9;:55::i;:::-;80280;80290:42;80333:1;80280:9;:55::i;:::-;80346;80356:42;80399:1;80346:9;:55::i;:::-;80412;80422:42;80465:1;80412:9;:55::i;:::-;80478;80488:42;80531:1;80478:9;:55::i;:::-;80544;80554:42;80597:1;80544:9;:55::i;:::-;80610;80620:42;80663:1;80610:9;:55::i;:::-;80676;80686:42;80729:1;80676:9;:55::i;:::-;80742;80752:42;80795:1;80742:9;:55::i;:::-;80808;80818:42;80861:1;80808:9;:55::i;:::-;80874;80884:42;80927:1;80874:9;:55::i;:::-;80940;80950:42;80993:1;80940:9;:55::i;:::-;81006;81016:42;81059:1;81006:9;:55::i;:::-;81072;81082:42;81125:1;81072:9;:55::i;:::-;81138;81148:42;81191:1;81138:9;:55::i;:::-;81204;81214:42;81257:1;81204:9;:55::i;:::-;81270;81280:42;81323:1;81270:9;:55::i;:::-;81336;81346:42;81389:1;81336:9;:55::i;:::-;81402;81412:42;81455:1;81402:9;:55::i;:::-;81468;81478:42;81521:1;81468:9;:55::i;:::-;81534;81544:42;81587:1;81534:9;:55::i;:::-;81600;81610:42;81653:1;81600:9;:55::i;:::-;81666;81676:42;81719:1;81666:9;:55::i;:::-;81732;81742:42;81785:1;81732:9;:55::i;:::-;81798;81808:42;81851:1;81798:9;:55::i;:::-;81864;81874:42;81917:1;81864:9;:55::i;:::-;81930;81940:42;81983:1;81930:9;:55::i;:::-;81996;82006:42;82049:1;81996:9;:55::i;:::-;82062;82072:42;82115:1;82062:9;:55::i;:::-;82128;82138:42;82181:1;82128:9;:55::i;:::-;82194;82204:42;82247:1;82194:9;:55::i;:::-;82260;82270:42;82313:1;82260:9;:55::i;:::-;82326;82336:42;82379:1;82326:9;:55::i;:::-;82392;82402:42;82445:1;82392:9;:55::i;:::-;82458;82468:42;82511:1;82458:9;:55::i;:::-;82524;82534:42;82577:1;82524:9;:55::i;:::-;82590;82600:42;82643:1;82590:9;:55::i;:::-;82656;82666:42;82709:1;82656:9;:55::i;:::-;82722;82732:42;82775:1;82722:9;:55::i;:::-;82788;82798:42;82841:1;82788:9;:55::i;:::-;82854;82864:42;82907:1;82854:9;:55::i;:::-;82920;82930:42;82973:1;82920:9;:55::i;:::-;82986;82996:42;83039:1;82986:9;:55::i;:::-;83052;83062:42;83105:1;83052:9;:55::i;83333:198::-:0;83402:12;;83378:7;;83417:1;83402:12;;;;;;:16;83398:126;;;-1:-1:-1;83442:1:0;;83333:198::o;83398:126::-;-1:-1:-1;83483:17:0;;83333:198::o;53979:201::-;53143:6;;-1:-1:-1;;;;;53143:6:0;229:10;53290:23;53282:68;;;;-1:-1:-1;;;53282:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54068:22:0;::::1;54060:73;;;::::0;-1:-1:-1;;;54060:73:0;;11624:2:1;54060:73:0::1;::::0;::::1;11606:21:1::0;11663:2;11643:18;;;11636:30;11702:34;11682:18;;;11675:62;-1:-1:-1;;;11753:18:1;;;11746:36;11799:19;;54060:73:0::1;11596:228:1::0;54060:73:0::1;54144:28;54163:8;54144:18;:28::i;29490:122::-:0;29559:7;29586:18;29593:3;29586:6;:18::i;30745:170::-;30824:7;30859:47;30863:3;-1:-1:-1;;;;;30883:21:0;;30859:3;:47::i;65312:174::-;65369:4;65433:13;;65423:7;:23;65393:85;;;;-1:-1:-1;;65451:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;65451:27:0;;;;65450:28;;65312:174::o;65494:104::-;65563:27;65573:2;65577:8;65563:27;;;;;;;;;;;;:9;:27::i;73469:196::-;73584:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;73584:29:0;-1:-1:-1;;;;;73584:29:0;;;;;;;;;73629:28;;73584:24;;73629:28;;;;;;;73469:196;;;:::o;68412:2130::-;68527:35;68565:21;68578:7;68565:12;:21::i;:::-;68527:59;;68625:4;-1:-1:-1;;;;;68603:26:0;:13;:18;;;-1:-1:-1;;;;;68603:26:0;;68599:67;;68638:28;;-1:-1:-1;;;68638:28:0;;;;;;;;;;;68599:67;68679:22;229:10;-1:-1:-1;;;;;68705:20:0;;;;:73;;-1:-1:-1;68742:36:0;68759:4;229:10;63960:164;:::i;68742:36::-;68705:126;;;-1:-1:-1;229:10:0;68795:20;68807:7;68795:11;:20::i;:::-;-1:-1:-1;;;;;68795:36:0;;68705:126;68679:153;;68850:17;68845:66;;68876:35;;-1:-1:-1;;;68876:35:0;;;;;;;;;;;68845:66;-1:-1:-1;;;;;68926:16:0;;68922:52;;68951:23;;-1:-1:-1;;;68951:23:0;;;;;;;;;;;68922:52;69095:35;69112:1;69116:7;69125:4;69095:8;:35::i;:::-;-1:-1:-1;;;;;69426:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;69426:31:0;;;-1:-1:-1;;;;;69426:31:0;;;-1:-1:-1;;69426:31:0;;;;;;;69472:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;69472:29:0;;;;;;;;;;;69552:20;;;:11;:20;;;;;;69587:18;;-1:-1:-1;;;;;;69620:49:0;;;;-1:-1:-1;;;69653:15:0;69620:49;;;;;;;;;;69943:11;;70003:24;;;;;70046:13;;69552:20;;70003:24;;70046:13;70042:384;;70256:13;;70241:11;:28;70237:174;;70294:20;;70363:28;;;;-1:-1:-1;;;;;70337:54:0;-1:-1:-1;;;70337:54:0;-1:-1:-1;;;;;;70337:54:0;;;-1:-1:-1;;;;;70294:20:0;;70337:54;;;;70237:174;68412:2130;;;70473:7;70469:2;-1:-1:-1;;;;;70454:27:0;70463:4;-1:-1:-1;;;;;70454:27:0;;;;;;;;;;;70492:42;68412:2130;;;;;:::o;28607:218::-;28730:4;28754:63;28758:3;-1:-1:-1;;;;;28778:21:0;;28810:5;28754:3;:63::i;:::-;28747:70;28607:218;-1:-1:-1;;;;28607:218:0:o;28991:159::-;29068:4;29092:50;29099:3;-1:-1:-1;;;;;29119:21:0;;29092:6;:50::i;29234:168::-;29318:4;29342:52;29351:3;-1:-1:-1;;;;;29371:21:0;;29342:8;:52::i;60449:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;60560:7:0;60643:13;;60636:4;:20;60605:886;;;60677:31;60711:17;;;:11;:17;;;;;;;;;60677:51;;;;;;;;;-1:-1:-1;;;;;60677:51:0;;;;-1:-1:-1;;;60677:51:0;;-1:-1:-1;;;;;60677:51:0;;;;;;;;-1:-1:-1;;;60677:51:0;;;;;;;;;;;;;;60747:729;;60797:14;;-1:-1:-1;;;;;60797:28:0;;60793:101;;60861:9;60449:1109;-1:-1:-1;;;60449:1109:0:o;60793:101::-;-1:-1:-1;;;61236:6:0;61281:17;;;;:11;:17;;;;;;;;;61269:29;;;;;;;;;-1:-1:-1;;;;;61269:29:0;;;;;-1:-1:-1;;;61269:29:0;;-1:-1:-1;;;;;61269:29:0;;;;;;;;-1:-1:-1;;;61269:29:0;;;;;;;;;;;;;61329:28;61325:109;;61397:9;60449:1109;-1:-1:-1;;;60449:1109:0:o;61325:109::-;61196:261;;;60605:886;;61519:31;;-1:-1:-1;;;61519:31:0;;;;;;;;;;;29960:235;30040:7;;;;30100:21;30103:3;30115:5;30100:2;:21::i;:::-;30069:52;;;;-1:-1:-1;29960:235:0;-1:-1:-1;;;;;29960:235:0:o;54340:191::-;54433:6;;;-1:-1:-1;;;;;54450:17:0;;;-1:-1:-1;;;;;;54450:17:0;;;;;;;54483:40;;54433:6;;;54450:17;54433:6;;54483:40;;54414:16;;54483:40;54340:191;;:::o;74157:667::-;74341:72;;-1:-1:-1;;;74341:72:0;;74320:4;;-1:-1:-1;;;;;74341:36:0;;;;;:72;;229:10;;74392:4;;74398:7;;74407:5;;74341:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;74341:72:0;;;;;;;;-1:-1:-1;;74341:72:0;;;;;;;;;;;;:::i;:::-;;;74337:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;74575:13:0;;74571:235;;74621:40;;-1:-1:-1;;;74621:40:0;;;;;;;;;;;74571:235;74764:6;74758:13;74749:6;74745:2;74741:15;74734:38;74337:480;-1:-1:-1;;;;;;74460:55:0;-1:-1:-1;;;74460:55:0;;-1:-1:-1;74157:667:0;;;;;;:::o;85476:114::-;85536:13;85569;85562:20;;;;;:::i;35138:723::-;35194:13;35415:10;35411:53;;-1:-1:-1;;35442:10:0;;;;;;;;;;;;-1:-1:-1;;;35442:10:0;;;;;35138:723::o;35411:53::-;35489:5;35474:12;35530:78;35537:9;;35530:78;;35563:8;;;;:::i;:::-;;-1:-1:-1;35586:10:0;;-1:-1:-1;35594:2:0;35586:10;;:::i;:::-;;;35530:78;;;35618:19;35650:6;-1:-1:-1;;;;;35640:17:0;;;;;-1:-1:-1;;;35640:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35640:17:0;;35618:39;;35668:154;35675:10;;35668:154;;35702:11;35712:1;35702:11;;:::i;:::-;;-1:-1:-1;35771:10:0;35779:2;35771:5;:10;:::i;:::-;35758:24;;:2;:24;:::i;:::-;35745:39;;35728:6;35735;35728:14;;;;;;-1:-1:-1;;;35728:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;35728:56:0;;;;;;;;-1:-1:-1;35799:11:0;35808:2;35799:11;;:::i;:::-;;;35668:154;;19923:125;19995:7;20022:18;:3;:16;:18::i;21221:251::-;21303:7;21339:16;;;:11;;;:16;;;;;;21374:10;;;;:32;;;21388:18;21397:3;21402;21388:8;:18::i;:::-;21366:75;;;;-1:-1:-1;;;21366:75:0;;16262:2:1;21366:75:0;;;16244:21:1;16301:2;16281:18;;;16274:30;16340:32;16320:18;;;16313:60;16390:18;;21366:75:0;16234:180:1;65961:163:0;66084:32;66090:2;66094:8;66104:5;66111:4;66084:5;:32::i;19049:211::-;19175:4;19192:16;;;:11;;;:16;;;;;:24;;;19234:18;19192:3;19204;19234:13;:18::i;19435:167::-;19515:4;19539:16;;;:11;;;:16;;;;;19532:23;;;19573:21;19539:3;19551;19573:16;:21::i;19686:142::-;19773:4;19797:23;:3;19816;19797:18;:23::i;20413:194::-;20496:7;;;20539:19;:3;20552:5;20539:12;:19::i;:::-;20582:16;;;;:11;;;;;:16;;;;;;;;;20413:194;-1:-1:-1;;;;20413:194:0:o;10240:117::-;10303:7;10330:19;10338:3;8081:18;;7998:109;66383:1775;66522:20;66545:13;-1:-1:-1;;;;;66573:16:0;;66569:48;;66598:19;;-1:-1:-1;;;66598:19:0;;;;;;;;;;;66569:48;66632:13;66628:44;;66654:18;;-1:-1:-1;;;66654:18:0;;;;;;;;;;;66628:44;-1:-1:-1;;;;;67023:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;67082:49:0;;-1:-1:-1;;;;;67023:44:0;;;;;;;67082:49;;;;-1:-1:-1;;67023:44:0;;;;;;67082:49;;;;;;;;;;;;;;;;67148:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;67198:66:0;;;;-1:-1:-1;;;67248:15:0;67198:66;;;;;;;;;;67148:25;67345:23;;;67389:4;:23;;;;-1:-1:-1;;;;;;67397:13:0;;38273:19;:23;;67397:15;67385:641;;;67433:314;67464:38;;67489:12;;-1:-1:-1;;;;;67464:38:0;;;67481:1;;67464:38;;67481:1;;67464:38;67530:69;67569:1;67573:2;67577:14;;;;;;67593:5;67530:30;:69::i;:::-;67525:174;;67635:40;;-1:-1:-1;;;67635:40:0;;;;;;;;;;;67525:174;67742:3;67726:12;:19;;67433:314;;67828:12;67811:13;;:29;67807:43;;67842:8;;;67807:43;67385:641;;;67891:120;67922:40;;67947:14;;;;;-1:-1:-1;;;;;67922:40:0;;;67939:1;;67922:40;;67939:1;;67922:40;68006:3;67990:12;:19;;67891:120;;67385:641;-1:-1:-1;68040:13:0;:28;68090:60;88725:217;9496:125;9566:4;9590:23;9595:3;9607:5;9590:4;:23::i;9797:131::-;9870:4;9894:26;9902:3;9914:5;9894:7;:26::i;10014:140::-;10094:4;7880:19;;;:12;;;:19;;;;;;:24;;10118:28;7783:129;10711:131;10785:7;10812:22;10816:3;10828:5;10812:3;:22::i;5687:414::-;5750:4;7880:19;;;:12;;;:19;;;;;;5767:327;;-1:-1:-1;5810:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;5993:18;;5971:19;;;:12;;;:19;;;;;;:40;;;;6026:11;;5767:327;-1:-1:-1;6077:5:0;6070:12;;6277:1420;6343:4;6482:19;;;:12;;;:19;;;;;;6518:15;;6514:1176;;6893:21;6917:14;6930:1;6917:10;:14;:::i;:::-;6966:18;;6893:38;;-1:-1:-1;6946:17:0;;6966:22;;6987:1;;6966:22;:::i;:::-;6946:42;;7022:13;7009:9;:26;7005:405;;7056:17;7076:3;:11;;7088:9;7076:22;;;;;;-1:-1:-1;;;7076:22:0;;;;;;;;;;;;;;;;;7056:42;;7230:9;7201:3;:11;;7213:13;7201:26;;;;;;-1:-1:-1;;;7201:26:0;;;;;;;;;;;;;;;;;;;;:38;;;;7315:23;;;:12;;;:23;;;;;:36;;;7005:405;7491:17;;:3;;:17;;;-1:-1:-1;;;7491:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;7586:3;:12;;:19;7599:5;7586:19;;;;;;;;;;;7579:26;;;7629:4;7622:11;;;;;;;6514:1176;7673:5;7666:12;;;;;8461:120;8528:7;8555:3;:11;;8567:5;8555:18;;;;;;-1:-1:-1;;;8555:18:0;;;;;;;;;;;;;;;;;8548:25;;8461:120;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:228::-;870:5;923:3;916:4;908:6;904:17;900:27;890:2;;945:5;938;931:20;890:2;971:79;1046:3;1037:6;1024:20;1017:4;1009:6;1005:17;971:79;:::i;1061:196::-;1120:6;1173:2;1161:9;1152:7;1148:23;1144:32;1141:2;;;1194:6;1186;1179:22;1141:2;1222:29;1241:9;1222:29;:::i;1262:270::-;1330:6;1338;1391:2;1379:9;1370:7;1366:23;1362:32;1359:2;;;1412:6;1404;1397:22;1359:2;1440:29;1459:9;1440:29;:::i;:::-;1430:39;;1488:38;1522:2;1511:9;1507:18;1488:38;:::i;:::-;1478:48;;1349:183;;;;;:::o;1537:338::-;1614:6;1622;1630;1683:2;1671:9;1662:7;1658:23;1654:32;1651:2;;;1704:6;1696;1689:22;1651:2;1732:29;1751:9;1732:29;:::i;:::-;1722:39;;1780:38;1814:2;1803:9;1799:18;1780:38;:::i;:::-;1770:48;;1865:2;1854:9;1850:18;1837:32;1827:42;;1641:234;;;;;:::o;1880:557::-;1975:6;1983;1991;1999;2052:3;2040:9;2031:7;2027:23;2023:33;2020:2;;;2074:6;2066;2059:22;2020:2;2102:29;2121:9;2102:29;:::i;:::-;2092:39;;2150:38;2184:2;2173:9;2169:18;2150:38;:::i;:::-;2140:48;;2235:2;2224:9;2220:18;2207:32;2197:42;;2290:2;2279:9;2275:18;2262:32;-1:-1:-1;;;;;2309:6:1;2306:30;2303:2;;;2354:6;2346;2339:22;2303:2;2382:49;2423:7;2414:6;2403:9;2399:22;2382:49;:::i;:::-;2372:59;;;2010:427;;;;;;;:::o;2442:325::-;2507:6;2515;2568:2;2556:9;2547:7;2543:23;2539:32;2536:2;;;2589:6;2581;2574:22;2536:2;2617:29;2636:9;2617:29;:::i;:::-;2607:39;;2696:2;2685:9;2681:18;2668:32;2709:28;2731:5;2709:28;:::i;:::-;2756:5;2746:15;;;2526:241;;;;;:::o;2772:264::-;2840:6;2848;2901:2;2889:9;2880:7;2876:23;2872:32;2869:2;;;2922:6;2914;2907:22;2869:2;2950:29;2969:9;2950:29;:::i;:::-;2940:39;3026:2;3011:18;;;;2998:32;;-1:-1:-1;;;2859:177:1:o;3041:255::-;3108:6;3161:2;3149:9;3140:7;3136:23;3132:32;3129:2;;;3182:6;3174;3167:22;3129:2;3219:9;3213:16;3238:28;3260:5;3238:28;:::i;3301:190::-;3360:6;3413:2;3401:9;3392:7;3388:23;3384:32;3381:2;;;3434:6;3426;3419:22;3381:2;-1:-1:-1;3462:23:1;;3371:120;-1:-1:-1;3371:120:1:o;3496:255::-;3554:6;3607:2;3595:9;3586:7;3582:23;3578:32;3575:2;;;3628:6;3620;3613:22;3575:2;3672:9;3659:23;3691:30;3715:5;3691:30;:::i;3756:259::-;3825:6;3878:2;3866:9;3857:7;3853:23;3849:32;3846:2;;;3899:6;3891;3884:22;3846:2;3936:9;3930:16;3955:30;3979:5;3955:30;:::i;4020:476::-;4106:6;4114;4122;4175:2;4163:9;4154:7;4150:23;4146:32;4143:2;;;4196:6;4188;4181:22;4143:2;4241:9;4228:23;-1:-1:-1;;;;;4266:6:1;4263:30;4260:2;;;4311:6;4303;4296:22;4260:2;4339:49;4380:7;4371:6;4360:9;4356:22;4339:49;:::i;:::-;4329:59;4435:2;4420:18;;4407:32;;-1:-1:-1;4486:2:1;4471:18;;;4458:32;;4133:363;-1:-1:-1;;;;4133:363:1:o;4501:642::-;4572:6;4580;4633:2;4621:9;4612:7;4608:23;4604:32;4601:2;;;4654:6;4646;4639:22;4601:2;4699:9;4686:23;-1:-1:-1;;;;;4769:2:1;4761:6;4758:14;4755:2;;;4790:6;4782;4775:22;4755:2;4833:6;4822:9;4818:22;4808:32;;4878:7;4871:4;4867:2;4863:13;4859:27;4849:2;;4905:6;4897;4890:22;4849:2;4950;4937:16;4976:2;4968:6;4965:14;4962:2;;;4997:6;4989;4982:22;4962:2;5047:7;5042:2;5033:6;5029:2;5025:15;5021:24;5018:37;5015:2;;;5073:6;5065;5058:22;5015:2;5109;5101:11;;;;;5131:6;;-1:-1:-1;4591:552:1;;-1:-1:-1;;;;4591:552:1:o;5343:194::-;5413:6;5466:2;5454:9;5445:7;5441:23;5437:32;5434:2;;;5487:6;5479;5472:22;5434:2;-1:-1:-1;5515:16:1;;5424:113;-1:-1:-1;5424:113:1:o;5542:408::-;5619:6;5627;5680:2;5668:9;5659:7;5655:23;5651:32;5648:2;;;5701:6;5693;5686:22;5648:2;5742:9;5729:23;5719:33;;5803:2;5792:9;5788:18;5775:32;-1:-1:-1;;;;;5822:6:1;5819:30;5816:2;;;5867:6;5859;5852:22;5816:2;5895:49;5936:7;5927:6;5916:9;5912:22;5895:49;:::i;:::-;5885:59;;;5638:312;;;;;:::o;5955:548::-;6033:6;6041;6094:2;6082:9;6073:7;6069:23;6065:32;6062:2;;;6115:6;6107;6100:22;6062:2;6156:9;6143:23;6133:33;;6217:2;6206:9;6202:18;6189:32;-1:-1:-1;;;;;6236:6:1;6233:30;6230:2;;;6281:6;6273;6266:22;6230:2;6309:22;;6362:4;6354:13;;6350:27;-1:-1:-1;6340:2:1;;6396:6;6388;6381:22;6340:2;6424:73;6489:7;6484:2;6471:16;6466:2;6462;6458:11;6424:73;:::i;6508:258::-;6576:6;6584;6637:2;6625:9;6616:7;6612:23;6608:32;6605:2;;;6658:6;6650;6643:22;6605:2;-1:-1:-1;;6686:23:1;;;6756:2;6741:18;;;6728:32;;-1:-1:-1;6595:171:1:o;6771:332::-;6848:6;6856;6864;6917:2;6905:9;6896:7;6892:23;6888:32;6885:2;;;6938:6;6930;6923:22;6885:2;6979:9;6966:23;6956:33;;7036:2;7025:9;7021:18;7008:32;6998:42;;7059:38;7093:2;7082:9;7078:18;7059:38;:::i;:::-;7049:48;;6875:228;;;;;:::o;7108:326::-;7185:6;7193;7201;7254:2;7242:9;7233:7;7229:23;7225:32;7222:2;;;7275:6;7267;7260:22;7222:2;-1:-1:-1;;7303:23:1;;;7373:2;7358:18;;7345:32;;-1:-1:-1;7424:2:1;7409:18;;;7396:32;;7212:222;-1:-1:-1;7212:222:1:o;7439:257::-;7480:3;7518:5;7512:12;7545:6;7540:3;7533:19;7561:63;7617:6;7610:4;7605:3;7601:14;7594:4;7587:5;7583:16;7561:63;:::i;:::-;7678:2;7657:15;-1:-1:-1;;7653:29:1;7644:39;;;;7685:4;7640:50;;7488:208;-1:-1:-1;;7488:208:1:o;8187:470::-;8366:3;8404:6;8398:13;8420:53;8466:6;8461:3;8454:4;8446:6;8442:17;8420:53;:::i;:::-;8536:13;;8495:16;;;;8558:57;8536:13;8495:16;8592:4;8580:17;;8558:57;:::i;:::-;8631:20;;8374:283;-1:-1:-1;;;;8374:283:1:o;8662:452::-;8894:3;8932:6;8926:13;8948:53;8994:6;8989:3;8982:4;8974:6;8970:17;8948:53;:::i;:::-;-1:-1:-1;;;9023:16:1;;9048:30;;;-1:-1:-1;9105:2:1;9094:14;;8902:212;-1:-1:-1;8902:212:1:o;9707:488::-;-1:-1:-1;;;;;9976:15:1;;;9958:34;;10028:15;;10023:2;10008:18;;10001:43;10075:2;10060:18;;10053:34;;;10123:3;10118:2;10103:18;;10096:31;;;9901:4;;10144:45;;10169:19;;10161:6;10144:45;:::i;:::-;10136:53;9910:285;-1:-1:-1;;;;;;9910:285:1:o;10853:219::-;11002:2;10991:9;10984:21;10965:4;11022:44;11062:2;11051:9;11047:18;11039:6;11022:44;:::i;13945:346::-;14147:2;14129:21;;;14186:2;14166:18;;;14159:30;-1:-1:-1;;;14220:2:1;14205:18;;14198:52;14282:2;14267:18;;14119:172::o;15348:356::-;15550:2;15532:21;;;15569:18;;;15562:30;15628:34;15623:2;15608:18;;15601:62;15695:2;15680:18;;15522:182::o;17491:128::-;17531:3;17562:1;17558:6;17555:1;17552:13;17549:2;;;17568:18;;:::i;:::-;-1:-1:-1;17604:9:1;;17539:80::o;17624:120::-;17664:1;17690;17680:2;;17695:18;;:::i;:::-;-1:-1:-1;17729:9:1;;17670:74::o;17749:168::-;17789:7;17855:1;17851;17847:6;17843:14;17840:1;17837:21;17832:1;17825:9;17818:17;17814:45;17811:2;;;17862:18;;:::i;:::-;-1:-1:-1;17902:9:1;;17801:116::o;17922:125::-;17962:4;17990:1;17987;17984:8;17981:2;;;17995:18;;:::i;:::-;-1:-1:-1;18032:9:1;;17971:76::o;18052:258::-;18124:1;18134:113;18148:6;18145:1;18142:13;18134:113;;;18224:11;;;18218:18;18205:11;;;18198:39;18170:2;18163:10;18134:113;;;18265:6;18262:1;18259:13;18256:2;;;-1:-1:-1;;18300:1:1;18282:16;;18275:27;18105:205::o;18315:380::-;18394:1;18390:12;;;;18437;;;18458:2;;18512:4;18504:6;18500:17;18490:27;;18458:2;18565;18557:6;18554:14;18534:18;18531:38;18528:2;;;18611:10;18606:3;18602:20;18599:1;18592:31;18646:4;18643:1;18636:15;18674:4;18671:1;18664:15;18528:2;;18370:325;;;:::o;18700:135::-;18739:3;-1:-1:-1;;18760:17:1;;18757:2;;;18780:18;;:::i;:::-;-1:-1:-1;18827:1:1;18816:13;;18747:88::o;18840:201::-;18878:3;18906:10;18951:2;18944:5;18940:14;18978:2;18969:7;18966:15;18963:2;;;18984:18;;:::i;:::-;19033:1;19020:15;;18886:155;-1:-1:-1;;;18886:155:1:o;19046:112::-;19078:1;19104;19094:2;;19109:18;;:::i;:::-;-1:-1:-1;19143:9:1;;19084:74::o;19163:127::-;19224:10;19219:3;19215:20;19212:1;19205:31;19255:4;19252:1;19245:15;19279:4;19276:1;19269:15;19295:127;19356:10;19351:3;19347:20;19344:1;19337:31;19387:4;19384:1;19377:15;19411:4;19408:1;19401:15;19427:127;19488:10;19483:3;19479:20;19476:1;19469:31;19519:4;19516:1;19509:15;19543:4;19540:1;19533:15;19559:118;19645:5;19638:13;19631:21;19624:5;19621:32;19611:2;;19667:1;19664;19657:12;19682:131;-1:-1:-1;;;;;;19756:32:1;;19746:43;;19736:2;;19803:1;19800;19793:12

Swarm Source

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