ETH Price: $2,973.95 (+1.85%)
Gas: 2 Gwei

Token

Cutiebears (CUTIES)
 

Overview

Max Total Supply

719 CUTIES

Holders

166

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jenlyra.eth
Balance
1 CUTIES
0x815c187c70ef6f52c0c9edc6bb28a619e14057d3
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:
CutieBears

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 2021-07-14
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

//File: @OpenZeppelin/contracts/mocks/EnumerableMapMock.sol


pragma solidity ^0.8.0;


/**
 * @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;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
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 Map {
        // 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(Map storage map, bytes32 key, bytes32 value) private 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(Map storage map, bytes32 key) private 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(Map storage map, bytes32 key) private view returns (bool) {
        return map._keys.contains(key);
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private 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(Map storage map, uint256 index) private 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(Map storage map, bytes32 key) private 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(Map storage map, bytes32 key) private 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(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        bytes32 value = map._values[key];
        require(value != 0 || _contains(map, key), errorMessage);
        return value;
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _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))));
    }
}

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


pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
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;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            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) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

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

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


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


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

pragma solidity ^0.8.0;

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

//File @OpenZeppelin/contracts/introspection/ERC165.sol

pragma solidity ^0.8.0;


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


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

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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;
}

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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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



//File: @OpenZeppelin/contracts/token/ERC721/ERC721.sol


pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

    // 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;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            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("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}


//File: @OpenZeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


//File: @OpenZeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}



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

pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

//File: @OpenZeppelin/contracts/utils/math/SafeMath.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

//File: contracts/CutieBears.sol

pragma solidity ^0.8.0;
/**
 * @title CutieBears contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */

//────███████────────────███████──────────
//────█─────█────────────█─────█──────────
//────█─────██████████████─────█──────────
//────█────────────────────────█──────────
//────█───███────────────███───█──────────
//────█───███────────────███───█──────────
//────█────────────────────────█──────────
//────█──────█──────────█──────█──────────
//────█───────██████████───────█──────────
//────█────────────────────────█──────────
//─────████████████████████████───────────
//──────────╔╗────╔╗──────────────────────
//─────────╔╝╚╗───║║──────────────────────
//────╔══╦╗╠╗╔╬╦══╣╚═╦══╦══╦═╦══╗─────────
//────║╔═╣║║║║╠╣║═╣╔╗║║═╣╔╗║╔╣══╣─────────
//────║╚═╣╚╝║╚╣║║═╣╚╝║║═╣╔╗║║╠══║─────────
//────╚══╩══╩═╩╩══╩══╩══╩╝╚╩╝╚══╝─────────
//
// Oops you've found me!
// Give our artist a follow on twitter @Swifty_igh
// Also join our discord for more fun at discord.gg/MVAKbSanFc

contract CutieBears is ERC721Enumerable, Ownable  {

    using SafeMath for uint256;

    // Token detail
    struct CutieDetail {
        uint256 first_encounter;
    }

    // Events
    event TokenMinted(uint256 tokenId, address owner, uint256 first_encounter);

    // Token Detail
    mapping( uint256 => CutieDetail) private _CutieDetails;

    // Provenance number
    string public PROVENANCE = "";

    // Starting index
    uint256 public STARTING_INDEX;

    // Max amount of token to purchase per account each time
    uint public MAX_PURCHASE = 10086;

    // Maximum amount of tokens to supply.
    uint256 public MAX_TOKENS = 10086;

    // Current price.
    uint256 public CURRENT_PRICE = 0; //0.06 ETH

    // Define if sale is active
    bool public saleIsActive = true;

    // Base URI
    string private baseURI;

    /**
     * Contract constructor
     */
    constructor(string memory name, string memory symbol, string memory baseURIp) ERC721(name, symbol) {
        setBaseURI(baseURIp);
    }

    /**
     * Withdraw
     */
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    /**
     * Reserve tokens
     */
    function reserveTokens() public onlyOwner {
        uint i;
        uint tokenId;
        uint256 first_encounter = block.timestamp;

        for (i = 1; i <= 275; i++) {
            tokenId = totalSupply().add(1);
            if (tokenId <= MAX_TOKENS) {
                _safeMint(msg.sender, tokenId);
                _CutieDetails[tokenId] = CutieDetail(first_encounter);
                emit TokenMinted(tokenId, msg.sender, first_encounter);
            }
        }
    }

    /**
     * Mint a specific token. 
     */
    function mintTokenId(uint tokenId) public onlyOwner {
        require(!_exists(tokenId), "Token was minted");
        uint256 first_encounter = block.timestamp;
        
        _safeMint(msg.sender, tokenId);
        _CutieDetails[tokenId] = CutieDetail(first_encounter);
        emit TokenMinted(tokenId, msg.sender, first_encounter);
    }

    /*     
    * Set provenance once it's calculated
    */
    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        PROVENANCE = provenanceHash;
    }

    /*     
    * Set max tokens
    */
    function setMaxTokens(uint256 maxTokens) public onlyOwner {
        MAX_TOKENS = maxTokens;
    }
    
    /*     
    * Set max purchase
    */
    function setMAX_PURCHASE(uint256 maxPurchase) public onlyOwner {
        MAX_PURCHASE = maxPurchase;
    }

    /*
    * Pause sale if active, make active if paused
    */
    function setSaleState(bool newState) public onlyOwner {
        saleIsActive = newState;
    }

    /**
    * Mint Cuties
    */
    function mintCuties(uint numberOfTokens) public payable {
        require(saleIsActive, "Mint is not available right now");
        require(numberOfTokens <= MAX_PURCHASE, "Can only mint 20 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_TOKENS, "Purchase would exceed max supply of Cuties");
        require(CURRENT_PRICE.mul(numberOfTokens) <= msg.value, "Value sent is not correct");
        uint256 first_encounter = block.timestamp;
        uint tokenId;
        
        for(uint i = 1; i <= numberOfTokens; i++) {
            tokenId = totalSupply().add(1);
            if (tokenId <= MAX_TOKENS) {
                _safeMint(msg.sender, tokenId);
                _CutieDetails[tokenId] = CutieDetail(first_encounter);
                
                emit TokenMinted(tokenId, msg.sender, first_encounter);
            }
        }
    }

    /**
     * Set the starting index for the collection
     */
    function setStartingIndex(uint256 startingIndex) public onlyOwner {
        STARTING_INDEX = startingIndex;
    }

    /**
    * @dev Changes the base URI if we want to move things in the future (Callable by owner only)
    */
    function setBaseURI(string memory BaseURI) public onlyOwner {
       baseURI = BaseURI;
    }

     /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

   /**
     * Set the current token price
     */
    function setCurrentPrice(uint256 currentPrice) public onlyOwner {
        CURRENT_PRICE = currentPrice;
    }

    /**
     * Get the token detail
     */
    function getCutieDetail(uint256 tokenId) public view returns(CutieDetail memory detail) {
        require(_exists(tokenId), "Token was not minted");

        return _CutieDetails[tokenId];
    }
        /*
    * Pause sale if active, make active if paused
    */
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURIp","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"first_encounter","type":"uint256"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CURRENT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STARTING_INDEX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCutieDetail","outputs":[{"components":[{"internalType":"uint256","name":"first_encounter","type":"uint256"}],"internalType":"struct CutieBears.CutieDetail","name":"detail","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintCuties","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mintTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"BaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"currentPrice","type":"uint256"}],"name":"setCurrentPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPurchase","type":"uint256"}],"name":"setMAX_PURCHASE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTokens","type":"uint256"}],"name":"setMaxTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startingIndex","type":"uint256"}],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600c916200018b565b50612766600e819055600f5560006010556011805460ff191660011790553480156200004657600080fd5b50604051620029e2380380620029e28339810160408190526200006991620002e4565b825183908390620000829060009060208501906200018b565b508051620000989060019060208401906200018b565b5050506000620000ad6200010f60201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001068162000113565b505050620003c4565b3390565b600a546001600160a01b03163314620001725760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001879060129060208401906200018b565b5050565b828054620001999062000371565b90600052602060002090601f016020900481019282620001bd576000855562000208565b82601f10620001d857805160ff191683800117855562000208565b8280016001018555821562000208579182015b8281111562000208578251825591602001919060010190620001eb565b50620002169291506200021a565b5090565b5b808211156200021657600081556001016200021b565b600082601f83011262000242578081fd5b81516001600160401b03808211156200025f576200025f620003ae565b604051601f8301601f19908116603f011681019082821181831017156200028a576200028a620003ae565b81604052838152602092508683858801011115620002a6578485fd5b8491505b83821015620002c95785820183015181830184015290820190620002aa565b83821115620002da57848385830101525b9695505050505050565b600080600060608486031215620002f9578283fd5b83516001600160401b038082111562000310578485fd5b6200031e8783880162000231565b9450602086015191508082111562000334578384fd5b620003428783880162000231565b9350604086015191508082111562000358578283fd5b50620003678682870162000231565b9150509250925092565b600181811c908216806200038657607f821691505b60208210811415620003a857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61260e80620003d46000396000f3fe6080604052600436106102255760003560e01c80636373a6b111610123578063ad4efb48116100ab578063eb8d24441161006f578063eb8d24441461063e578063f2fde38b14610658578063f47c84c514610678578063f7de95e41461068e578063f9901bee146106a457600080fd5b8063ad4efb4814610575578063b88d4fde14610595578063c4e37095146105b5578063c87b56dd146105d5578063e985e9c5146105f557600080fd5b806388d66e00116100f257806388d66e00146104ef57806388f2ebcb146105025780638da5cb5b1461052257806395d89b4114610540578063a22cb4651461055557600080fd5b80636373a6b11461048f57806370a08231146104a45780637146bd08146104c4578063715018a6146104da57600080fd5b80632429467b116101b157806342842e0e1161017557806342842e0e146103f95780634b369a61146104195780634f6ccce71461042f57806355f804b31461044f5780636352211e1461046f57600080fd5b80632429467b1461037a57806327ac36c41461039a5780632f745c59146103af57806334918dfd146103cf5780633ccfd60b146103e457600080fd5b806310969523116101f857806310969523146102db57806311e776fe146102fb57806318160ddd1461031b57806318b200711461033a57806323b872dd1461035a57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a61024536600461226c565b6106d3565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106fe565b604051610256919061239a565b34801561028d57600080fd5b506102a161029c3660046122ea565b610790565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004612229565b61081d565b005b3480156102e757600080fd5b506102d96102f63660046122a4565b610933565b34801561030757600080fd5b506102d96103163660046122ea565b610974565b34801561032757600080fd5b506008545b604051908152602001610256565b34801561034657600080fd5b506102d96103553660046122ea565b6109a3565b34801561036657600080fd5b506102d961037536600461214c565b6109d2565b34801561038657600080fd5b506102d96103953660046122ea565b610a03565b3480156103a657600080fd5b506102d9610ae4565b3480156103bb57600080fd5b5061032c6103ca366004612229565b610bb8565b3480156103db57600080fd5b506102d9610c4e565b3480156103f057600080fd5b506102d9610c8c565b34801561040557600080fd5b506102d961041436600461214c565b610ce5565b34801561042557600080fd5b5061032c60105481565b34801561043b57600080fd5b5061032c61044a3660046122ea565b610d00565b34801561045b57600080fd5b506102d961046a3660046122a4565b610da1565b34801561047b57600080fd5b506102a161048a3660046122ea565b610dde565b34801561049b57600080fd5b50610274610e55565b3480156104b057600080fd5b5061032c6104bf366004612100565b610ee3565b3480156104d057600080fd5b5061032c600e5481565b3480156104e657600080fd5b506102d9610f6a565b6102d96104fd3660046122ea565b610fde565b34801561050e57600080fd5b506102d961051d3660046122ea565b611202565b34801561052e57600080fd5b50600a546001600160a01b03166102a1565b34801561054c57600080fd5b50610274611231565b34801561056157600080fd5b506102d9610570366004612200565b611240565b34801561058157600080fd5b506102d96105903660046122ea565b611305565b3480156105a157600080fd5b506102d96105b0366004612187565b611334565b3480156105c157600080fd5b506102d96105d0366004612252565b611366565b3480156105e157600080fd5b506102746105f03660046122ea565b6113a3565b34801561060157600080fd5b5061024a61061036600461211a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064a57600080fd5b5060115461024a9060ff1681565b34801561066457600080fd5b506102d9610673366004612100565b61146e565b34801561068457600080fd5b5061032c600f5481565b34801561069a57600080fd5b5061032c600d5481565b3480156106b057600080fd5b506106c46106bf3660046122ea565b611559565b60405190518152602001610256565b60006001600160e01b0319821663780e9d6360e01b14806106f857506106f8826115d6565b92915050565b60606000805461070d90612513565b80601f016020809104026020016040519081016040528092919081815260200182805461073990612513565b80156107865780601f1061075b57610100808354040283529160200191610786565b820191906000526020600020905b81548152906001019060200180831161076957829003601f168201915b5050505050905090565b600061079b82611626565b6108015760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061082882610dde565b9050806001600160a01b0316836001600160a01b031614156108965760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107f8565b336001600160a01b03821614806108b257506108b28133610610565b6109245760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107f8565b61092e8383611643565b505050565b600a546001600160a01b0316331461095d5760405162461bcd60e51b81526004016107f8906123ff565b805161097090600c906020840190611fc5565b5050565b600a546001600160a01b0316331461099e5760405162461bcd60e51b81526004016107f8906123ff565b600f55565b600a546001600160a01b031633146109cd5760405162461bcd60e51b81526004016107f8906123ff565b601055565b6109dc33826116b1565b6109f85760405162461bcd60e51b81526004016107f890612434565b61092e83838361179b565b600a546001600160a01b03163314610a2d5760405162461bcd60e51b81526004016107f8906123ff565b610a3681611626565b15610a765760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881dd85cc81b5a5b9d195960821b60448201526064016107f8565b42610a813383611946565b60408051602080820183528382526000858152600b82528390209151909155815184815233918101919091529081018290527f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f9060600160405180910390a15050565b600a546001600160a01b03163314610b0e5760405162461bcd60e51b81526004016107f8906123ff565b60016000425b610113831161092e57610b316001610b2b60085490565b90611960565b9150600f548211610ba657610b463383611946565b60408051602080820183528382526000858152600b82528390209151909155815184815233918101919091529081018290527f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f9060600160405180910390a15b82610bb08161254e565b935050610b14565b6000610bc383610ee3565b8210610c255760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107f8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c785760405162461bcd60e51b81526004016107f8906123ff565b6011805460ff19811660ff90911615179055565b600a546001600160a01b03163314610cb65760405162461bcd60e51b81526004016107f8906123ff565b6040514790339082156108fc029083906000818181858888f19350505050158015610970573d6000803e3d6000fd5b61092e83838360405180602001604052806000815250611334565b6000610d0b60085490565b8210610d6e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107f8565b60088281548110610d8f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610dcb5760405162461bcd60e51b81526004016107f8906123ff565b8051610970906012906020840190611fc5565b6000818152600260205260408120546001600160a01b0316806106f85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107f8565b600c8054610e6290612513565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8e90612513565b8015610edb5780601f10610eb057610100808354040283529160200191610edb565b820191906000526020600020905b815481529060010190602001808311610ebe57829003601f168201915b505050505081565b60006001600160a01b038216610f4e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107f8565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f945760405162461bcd60e51b81526004016107f8906123ff565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60115460ff166110305760405162461bcd60e51b815260206004820152601f60248201527f4d696e74206973206e6f7420617661696c61626c65207269676874206e6f770060448201526064016107f8565b600e5481111561108c5760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d6044820152606560f81b60648201526084016107f8565b600f5461109c82610b2b60085490565b11156110fd5760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f662043757469657360b01b60648201526084016107f8565b601054349061110c908361196c565b111561115a5760405162461bcd60e51b815260206004820152601960248201527f56616c75652073656e74206973206e6f7420636f72726563740000000000000060448201526064016107f8565b42600060015b8381116111fc576111756001610b2b60085490565b9150600f5482116111ea5761118a3383611946565b60408051602080820183528582526000858152600b82528390209151909155815184815233918101919091529081018490527f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f9060600160405180910390a15b806111f48161254e565b915050611160565b50505050565b600a546001600160a01b0316331461122c5760405162461bcd60e51b81526004016107f8906123ff565b600d55565b60606001805461070d90612513565b6001600160a01b0382163314156112995760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107f8565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461132f5760405162461bcd60e51b81526004016107f8906123ff565b600e55565b61133e33836116b1565b61135a5760405162461bcd60e51b81526004016107f890612434565b6111fc84848484611978565b600a546001600160a01b031633146113905760405162461bcd60e51b81526004016107f8906123ff565b6011805460ff1916911515919091179055565b60606113ae82611626565b6114125760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107f8565b600061141c6119ab565b9050600081511161143c5760405180602001604052806000815250611467565b80611446846119ba565b60405160200161145792919061232e565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114985760405162461bcd60e51b81526004016107f8906123ff565b6001600160a01b0381166114fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f8565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60408051602081019091526000815261157182611626565b6115b45760405162461bcd60e51b8152602060048201526014602482015273151bdad95b881dd85cc81b9bdd081b5a5b9d195960621b60448201526064016107f8565b506000908152600b602090815260409182902082519182019092529054815290565b60006001600160e01b031982166380ac58cd60e01b148061160757506001600160e01b03198216635b5e139f60e01b145b806106f857506301ffc9a760e01b6001600160e01b03198316146106f8565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061167882610dde565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116bc82611626565b61171d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f8565b600061172883610dde565b9050806001600160a01b0316846001600160a01b031614806117635750836001600160a01b031661175884610790565b6001600160a01b0316145b8061179357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117ae82610dde565b6001600160a01b0316146118165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107f8565b6001600160a01b0382166118785760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107f8565b611883838383611ad4565b61188e600082611643565b6001600160a01b03831660009081526003602052604081208054600192906118b79084906124d0565b90915550506001600160a01b03821660009081526003602052604081208054600192906118e5908490612485565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610970828260405180602001604052806000815250611b8c565b60006114678284612485565b600061146782846124b1565b61198384848461179b565b61198f84848484611bbf565b6111fc5760405162461bcd60e51b81526004016107f8906123ad565b60606012805461070d90612513565b6060816119de5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0857806119f28161254e565b9150611a019050600a8361249d565b91506119e2565b60008167ffffffffffffffff811115611a3157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a5b576020820181803683370190505b5090505b841561179357611a706001836124d0565b9150611a7d600a86612569565b611a88906030612485565b60f81b818381518110611aab57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611acd600a8661249d565b9450611a5f565b6001600160a01b038316611b2f57611b2a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b52565b816001600160a01b0316836001600160a01b031614611b5257611b528382611ccc565b6001600160a01b038216611b695761092e81611d69565b826001600160a01b0316826001600160a01b03161461092e5761092e8282611e42565b611b968383611e86565b611ba36000848484611bbf565b61092e5760405162461bcd60e51b81526004016107f8906123ad565b60006001600160a01b0384163b15611cc157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c0390339089908890889060040161235d565b602060405180830381600087803b158015611c1d57600080fd5b505af1925050508015611c4d575060408051601f3d908101601f19168201909252611c4a91810190612288565b60015b611ca7573d808015611c7b576040519150601f19603f3d011682016040523d82523d6000602084013e611c80565b606091505b508051611c9f5760405162461bcd60e51b81526004016107f8906123ad565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611793565b506001949350505050565b60006001611cd984610ee3565b611ce391906124d0565b600083815260076020526040902054909150808214611d36576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d7b906001906124d0565b60008381526009602052604081205460088054939450909284908110611db157634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611de057634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e2657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611e4d83610ee3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611edc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107f8565b611ee581611626565b15611f325760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107f8565b611f3e60008383611ad4565b6001600160a01b0382166000908152600360205260408120805460019290611f67908490612485565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fd190612513565b90600052602060002090601f016020900481019282611ff35760008555612039565b82601f1061200c57805160ff1916838001178555612039565b82800160010185558215612039579182015b8281111561203957825182559160200191906001019061201e565b50612045929150612049565b5090565b5b80821115612045576000815560010161204a565b600067ffffffffffffffff80841115612079576120796125a9565b604051601f8501601f19908116603f011681019082821181831017156120a1576120a16125a9565b816040528093508581528686860111156120ba57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120eb57600080fd5b919050565b803580151581146120eb57600080fd5b600060208284031215612111578081fd5b611467826120d4565b6000806040838503121561212c578081fd5b612135836120d4565b9150612143602084016120d4565b90509250929050565b600080600060608486031215612160578081fd5b612169846120d4565b9250612177602085016120d4565b9150604084013590509250925092565b6000806000806080858703121561219c578081fd5b6121a5856120d4565b93506121b3602086016120d4565b925060408501359150606085013567ffffffffffffffff8111156121d5578182fd5b8501601f810187136121e5578182fd5b6121f48782356020840161205e565b91505092959194509250565b60008060408385031215612212578182fd5b61221b836120d4565b9150612143602084016120f0565b6000806040838503121561223b578182fd5b612244836120d4565b946020939093013593505050565b600060208284031215612263578081fd5b611467826120f0565b60006020828403121561227d578081fd5b8135611467816125bf565b600060208284031215612299578081fd5b8151611467816125bf565b6000602082840312156122b5578081fd5b813567ffffffffffffffff8111156122cb578182fd5b8201601f810184136122db578182fd5b6117938482356020840161205e565b6000602082840312156122fb578081fd5b5035919050565b6000815180845261231a8160208601602086016124e7565b601f01601f19169290920160200192915050565b600083516123408184602088016124e7565b8351908301906123548183602088016124e7565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061239090830184612302565b9695505050505050565b6020815260006114676020830184612302565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156124985761249861257d565b500190565b6000826124ac576124ac612593565b500490565b60008160001904831182151516156124cb576124cb61257d565b500290565b6000828210156124e2576124e261257d565b500390565b60005b838110156125025781810151838201526020016124ea565b838111156111fc5750506000910152565b600181811c9082168061252757607f821691505b6020821081141561254857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125625761256261257d565b5060010190565b60008261257857612578612593565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146125d557600080fd5b5056fea2646970667358221220c1a9e533ed0e10ea60f0eb331b88d9e0f851d975305d371f067f2962eed0bb5e64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a4375746965626561727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000643555449455300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63654a37546a6d79764d7359356342526b4c7862716174624845376369394a464242624c7a314b376b3773742f00000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636373a6b111610123578063ad4efb48116100ab578063eb8d24441161006f578063eb8d24441461063e578063f2fde38b14610658578063f47c84c514610678578063f7de95e41461068e578063f9901bee146106a457600080fd5b8063ad4efb4814610575578063b88d4fde14610595578063c4e37095146105b5578063c87b56dd146105d5578063e985e9c5146105f557600080fd5b806388d66e00116100f257806388d66e00146104ef57806388f2ebcb146105025780638da5cb5b1461052257806395d89b4114610540578063a22cb4651461055557600080fd5b80636373a6b11461048f57806370a08231146104a45780637146bd08146104c4578063715018a6146104da57600080fd5b80632429467b116101b157806342842e0e1161017557806342842e0e146103f95780634b369a61146104195780634f6ccce71461042f57806355f804b31461044f5780636352211e1461046f57600080fd5b80632429467b1461037a57806327ac36c41461039a5780632f745c59146103af57806334918dfd146103cf5780633ccfd60b146103e457600080fd5b806310969523116101f857806310969523146102db57806311e776fe146102fb57806318160ddd1461031b57806318b200711461033a57806323b872dd1461035a57600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a61024536600461226c565b6106d3565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b506102746106fe565b604051610256919061239a565b34801561028d57600080fd5b506102a161029c3660046122ea565b610790565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d4366004612229565b61081d565b005b3480156102e757600080fd5b506102d96102f63660046122a4565b610933565b34801561030757600080fd5b506102d96103163660046122ea565b610974565b34801561032757600080fd5b506008545b604051908152602001610256565b34801561034657600080fd5b506102d96103553660046122ea565b6109a3565b34801561036657600080fd5b506102d961037536600461214c565b6109d2565b34801561038657600080fd5b506102d96103953660046122ea565b610a03565b3480156103a657600080fd5b506102d9610ae4565b3480156103bb57600080fd5b5061032c6103ca366004612229565b610bb8565b3480156103db57600080fd5b506102d9610c4e565b3480156103f057600080fd5b506102d9610c8c565b34801561040557600080fd5b506102d961041436600461214c565b610ce5565b34801561042557600080fd5b5061032c60105481565b34801561043b57600080fd5b5061032c61044a3660046122ea565b610d00565b34801561045b57600080fd5b506102d961046a3660046122a4565b610da1565b34801561047b57600080fd5b506102a161048a3660046122ea565b610dde565b34801561049b57600080fd5b50610274610e55565b3480156104b057600080fd5b5061032c6104bf366004612100565b610ee3565b3480156104d057600080fd5b5061032c600e5481565b3480156104e657600080fd5b506102d9610f6a565b6102d96104fd3660046122ea565b610fde565b34801561050e57600080fd5b506102d961051d3660046122ea565b611202565b34801561052e57600080fd5b50600a546001600160a01b03166102a1565b34801561054c57600080fd5b50610274611231565b34801561056157600080fd5b506102d9610570366004612200565b611240565b34801561058157600080fd5b506102d96105903660046122ea565b611305565b3480156105a157600080fd5b506102d96105b0366004612187565b611334565b3480156105c157600080fd5b506102d96105d0366004612252565b611366565b3480156105e157600080fd5b506102746105f03660046122ea565b6113a3565b34801561060157600080fd5b5061024a61061036600461211a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561064a57600080fd5b5060115461024a9060ff1681565b34801561066457600080fd5b506102d9610673366004612100565b61146e565b34801561068457600080fd5b5061032c600f5481565b34801561069a57600080fd5b5061032c600d5481565b3480156106b057600080fd5b506106c46106bf3660046122ea565b611559565b60405190518152602001610256565b60006001600160e01b0319821663780e9d6360e01b14806106f857506106f8826115d6565b92915050565b60606000805461070d90612513565b80601f016020809104026020016040519081016040528092919081815260200182805461073990612513565b80156107865780601f1061075b57610100808354040283529160200191610786565b820191906000526020600020905b81548152906001019060200180831161076957829003601f168201915b5050505050905090565b600061079b82611626565b6108015760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061082882610dde565b9050806001600160a01b0316836001600160a01b031614156108965760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107f8565b336001600160a01b03821614806108b257506108b28133610610565b6109245760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107f8565b61092e8383611643565b505050565b600a546001600160a01b0316331461095d5760405162461bcd60e51b81526004016107f8906123ff565b805161097090600c906020840190611fc5565b5050565b600a546001600160a01b0316331461099e5760405162461bcd60e51b81526004016107f8906123ff565b600f55565b600a546001600160a01b031633146109cd5760405162461bcd60e51b81526004016107f8906123ff565b601055565b6109dc33826116b1565b6109f85760405162461bcd60e51b81526004016107f890612434565b61092e83838361179b565b600a546001600160a01b03163314610a2d5760405162461bcd60e51b81526004016107f8906123ff565b610a3681611626565b15610a765760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881dd85cc81b5a5b9d195960821b60448201526064016107f8565b42610a813383611946565b60408051602080820183528382526000858152600b82528390209151909155815184815233918101919091529081018290527f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f9060600160405180910390a15050565b600a546001600160a01b03163314610b0e5760405162461bcd60e51b81526004016107f8906123ff565b60016000425b610113831161092e57610b316001610b2b60085490565b90611960565b9150600f548211610ba657610b463383611946565b60408051602080820183528382526000858152600b82528390209151909155815184815233918101919091529081018290527f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f9060600160405180910390a15b82610bb08161254e565b935050610b14565b6000610bc383610ee3565b8210610c255760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107f8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c785760405162461bcd60e51b81526004016107f8906123ff565b6011805460ff19811660ff90911615179055565b600a546001600160a01b03163314610cb65760405162461bcd60e51b81526004016107f8906123ff565b6040514790339082156108fc029083906000818181858888f19350505050158015610970573d6000803e3d6000fd5b61092e83838360405180602001604052806000815250611334565b6000610d0b60085490565b8210610d6e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107f8565b60088281548110610d8f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610dcb5760405162461bcd60e51b81526004016107f8906123ff565b8051610970906012906020840190611fc5565b6000818152600260205260408120546001600160a01b0316806106f85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107f8565b600c8054610e6290612513565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8e90612513565b8015610edb5780601f10610eb057610100808354040283529160200191610edb565b820191906000526020600020905b815481529060010190602001808311610ebe57829003601f168201915b505050505081565b60006001600160a01b038216610f4e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107f8565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f945760405162461bcd60e51b81526004016107f8906123ff565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60115460ff166110305760405162461bcd60e51b815260206004820152601f60248201527f4d696e74206973206e6f7420617661696c61626c65207269676874206e6f770060448201526064016107f8565b600e5481111561108c5760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d6044820152606560f81b60648201526084016107f8565b600f5461109c82610b2b60085490565b11156110fd5760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f662043757469657360b01b60648201526084016107f8565b601054349061110c908361196c565b111561115a5760405162461bcd60e51b815260206004820152601960248201527f56616c75652073656e74206973206e6f7420636f72726563740000000000000060448201526064016107f8565b42600060015b8381116111fc576111756001610b2b60085490565b9150600f5482116111ea5761118a3383611946565b60408051602080820183528582526000858152600b82528390209151909155815184815233918101919091529081018490527f2d03118aa776f7008445f6ca8490a6782ede2db364d741513555ba656ab1879f9060600160405180910390a15b806111f48161254e565b915050611160565b50505050565b600a546001600160a01b0316331461122c5760405162461bcd60e51b81526004016107f8906123ff565b600d55565b60606001805461070d90612513565b6001600160a01b0382163314156112995760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107f8565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461132f5760405162461bcd60e51b81526004016107f8906123ff565b600e55565b61133e33836116b1565b61135a5760405162461bcd60e51b81526004016107f890612434565b6111fc84848484611978565b600a546001600160a01b031633146113905760405162461bcd60e51b81526004016107f8906123ff565b6011805460ff1916911515919091179055565b60606113ae82611626565b6114125760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107f8565b600061141c6119ab565b9050600081511161143c5760405180602001604052806000815250611467565b80611446846119ba565b60405160200161145792919061232e565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114985760405162461bcd60e51b81526004016107f8906123ff565b6001600160a01b0381166114fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f8565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60408051602081019091526000815261157182611626565b6115b45760405162461bcd60e51b8152602060048201526014602482015273151bdad95b881dd85cc81b9bdd081b5a5b9d195960621b60448201526064016107f8565b506000908152600b602090815260409182902082519182019092529054815290565b60006001600160e01b031982166380ac58cd60e01b148061160757506001600160e01b03198216635b5e139f60e01b145b806106f857506301ffc9a760e01b6001600160e01b03198316146106f8565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061167882610dde565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116bc82611626565b61171d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f8565b600061172883610dde565b9050806001600160a01b0316846001600160a01b031614806117635750836001600160a01b031661175884610790565b6001600160a01b0316145b8061179357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117ae82610dde565b6001600160a01b0316146118165760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107f8565b6001600160a01b0382166118785760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107f8565b611883838383611ad4565b61188e600082611643565b6001600160a01b03831660009081526003602052604081208054600192906118b79084906124d0565b90915550506001600160a01b03821660009081526003602052604081208054600192906118e5908490612485565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610970828260405180602001604052806000815250611b8c565b60006114678284612485565b600061146782846124b1565b61198384848461179b565b61198f84848484611bbf565b6111fc5760405162461bcd60e51b81526004016107f8906123ad565b60606012805461070d90612513565b6060816119de5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0857806119f28161254e565b9150611a019050600a8361249d565b91506119e2565b60008167ffffffffffffffff811115611a3157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a5b576020820181803683370190505b5090505b841561179357611a706001836124d0565b9150611a7d600a86612569565b611a88906030612485565b60f81b818381518110611aab57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611acd600a8661249d565b9450611a5f565b6001600160a01b038316611b2f57611b2a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b52565b816001600160a01b0316836001600160a01b031614611b5257611b528382611ccc565b6001600160a01b038216611b695761092e81611d69565b826001600160a01b0316826001600160a01b03161461092e5761092e8282611e42565b611b968383611e86565b611ba36000848484611bbf565b61092e5760405162461bcd60e51b81526004016107f8906123ad565b60006001600160a01b0384163b15611cc157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c0390339089908890889060040161235d565b602060405180830381600087803b158015611c1d57600080fd5b505af1925050508015611c4d575060408051601f3d908101601f19168201909252611c4a91810190612288565b60015b611ca7573d808015611c7b576040519150601f19603f3d011682016040523d82523d6000602084013e611c80565b606091505b508051611c9f5760405162461bcd60e51b81526004016107f8906123ad565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611793565b506001949350505050565b60006001611cd984610ee3565b611ce391906124d0565b600083815260076020526040902054909150808214611d36576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d7b906001906124d0565b60008381526009602052604081205460088054939450909284908110611db157634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611de057634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e2657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611e4d83610ee3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611edc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107f8565b611ee581611626565b15611f325760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107f8565b611f3e60008383611ad4565b6001600160a01b0382166000908152600360205260408120805460019290611f67908490612485565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611fd190612513565b90600052602060002090601f016020900481019282611ff35760008555612039565b82601f1061200c57805160ff1916838001178555612039565b82800160010185558215612039579182015b8281111561203957825182559160200191906001019061201e565b50612045929150612049565b5090565b5b80821115612045576000815560010161204a565b600067ffffffffffffffff80841115612079576120796125a9565b604051601f8501601f19908116603f011681019082821181831017156120a1576120a16125a9565b816040528093508581528686860111156120ba57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146120eb57600080fd5b919050565b803580151581146120eb57600080fd5b600060208284031215612111578081fd5b611467826120d4565b6000806040838503121561212c578081fd5b612135836120d4565b9150612143602084016120d4565b90509250929050565b600080600060608486031215612160578081fd5b612169846120d4565b9250612177602085016120d4565b9150604084013590509250925092565b6000806000806080858703121561219c578081fd5b6121a5856120d4565b93506121b3602086016120d4565b925060408501359150606085013567ffffffffffffffff8111156121d5578182fd5b8501601f810187136121e5578182fd5b6121f48782356020840161205e565b91505092959194509250565b60008060408385031215612212578182fd5b61221b836120d4565b9150612143602084016120f0565b6000806040838503121561223b578182fd5b612244836120d4565b946020939093013593505050565b600060208284031215612263578081fd5b611467826120f0565b60006020828403121561227d578081fd5b8135611467816125bf565b600060208284031215612299578081fd5b8151611467816125bf565b6000602082840312156122b5578081fd5b813567ffffffffffffffff8111156122cb578182fd5b8201601f810184136122db578182fd5b6117938482356020840161205e565b6000602082840312156122fb578081fd5b5035919050565b6000815180845261231a8160208601602086016124e7565b601f01601f19169290920160200192915050565b600083516123408184602088016124e7565b8351908301906123548183602088016124e7565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061239090830184612302565b9695505050505050565b6020815260006114676020830184612302565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156124985761249861257d565b500190565b6000826124ac576124ac612593565b500490565b60008160001904831182151516156124cb576124cb61257d565b500290565b6000828210156124e2576124e261257d565b500390565b60005b838110156125025781810151838201526020016124ea565b838111156111fc5750506000910152565b600181811c9082168061252757607f821691505b6020821081141561254857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125625761256261257d565b5060010190565b60008261257857612578612593565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146125d557600080fd5b5056fea2646970667358221220c1a9e533ed0e10ea60f0eb331b88d9e0f851d975305d371f067f2962eed0bb5e64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a4375746965626561727300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000643555449455300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d63654a37546a6d79764d7359356342526b4c7862716174624845376369394a464242624c7a314b376b3773742f00000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Cutiebears
Arg [1] : symbol (string): CUTIES
Arg [2] : baseURIp (string): ipfs://QmceJ7TjmyvMsY5cBRkLxbqatbHE7ci9JFBBbLz1K7k7st/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 4375746965626561727300000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4355544945530000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d63654a37546a6d79764d7359356342526b4c7862716174
Arg [9] : 624845376369394a464242624c7a314b376b3773742f00000000000000000000


Deployed Bytecode Sourcemap

69586:5049:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48674:237;;;;;;;;;;-1:-1:-1;48674:237:0;;;;;:::i;:::-;;:::i;:::-;;;6053:14:1;;6046:22;6028:41;;6016:2;6001:18;48674:237:0;;;;;;;;35889:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37349:221::-;;;;;;;;;;-1:-1:-1;37349:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5351:32:1;;;5333:51;;5321:2;5306:18;37349:221:0;5288:102:1;36886:397:0;;;;;;;;;;-1:-1:-1;36886:397:0;;;;;:::i;:::-;;:::i;:::-;;71847:120;;;;;;;;;;-1:-1:-1;71847:120:0;;;;;:::i;:::-;;:::i;72018:99::-;;;;;;;;;;-1:-1:-1;72018:99:0;;;;;:::i;:::-;;:::i;49327:113::-;;;;;;;;;;-1:-1:-1;49415:10:0;:17;49327:113;;;16125:25:1;;;16113:2;16098:18;49327:113:0;16080:76:1;74102:111:0;;;;;;;;;;-1:-1:-1;74102:111:0;;;;;:::i;:::-;;:::i;38239:305::-;;;;;;;;;;-1:-1:-1;38239:305:0;;;;;:::i;:::-;;:::i;71426:349::-;;;;;;;;;;-1:-1:-1;71426:349:0;;;;;:::i;:::-;;:::i;70879:489::-;;;;;;;;;;;;;:::i;48995:256::-;;;;;;;;;;-1:-1:-1;48995:256:0;;;;;:::i;:::-;;:::i;74543:89::-;;;;;;;;;;;;;:::i;70690:140::-;;;;;;;;;;;;;:::i;38615:151::-;;;;;;;;;;-1:-1:-1;38615:151:0;;;;;:::i;:::-;;:::i;70289:32::-;;;;;;;;;;;;;;;;49517:233;;;;;;;;;;-1:-1:-1;49517:233:0;;;;;:::i;:::-;;:::i;73700:95::-;;;;;;;;;;-1:-1:-1;73700:95:0;;;;;:::i;:::-;;:::i;35583:239::-;;;;;;;;;;-1:-1:-1;35583:239:0;;;;;:::i;:::-;;:::i;69978:29::-;;;;;;;;;;;;;:::i;35313:208::-;;;;;;;;;;-1:-1:-1;35313:208:0;;;;;:::i;:::-;;:::i;70139:32::-;;;;;;;;;;;;;;;;57461:148;;;;;;;;;;;;;:::i;72497:889::-;;;;;;:::i;:::-;;:::i;73462:115::-;;;;;;;;;;-1:-1:-1;73462:115:0;;;;;:::i;:::-;;:::i;56810:87::-;;;;;;;;;;-1:-1:-1;56883:6:0;;-1:-1:-1;;;;;56883:6:0;56810:87;;36058:104;;;;;;;;;;;;;:::i;37642:295::-;;;;;;;;;;-1:-1:-1;37642:295:0;;;;;:::i;:::-;;:::i;72174:108::-;;;;;;;;;;-1:-1:-1;72174:108:0;;;;;:::i;:::-;;:::i;38837:285::-;;;;;;;;;;-1:-1:-1;38837:285:0;;;;;:::i;:::-;;:::i;72357:96::-;;;;;;;;;;-1:-1:-1;72357:96:0;;;;;:::i;:::-;;:::i;36233:360::-;;;;;;;;;;-1:-1:-1;36233:360:0;;;;;:::i;:::-;;:::i;38008:164::-;;;;;;;;;;-1:-1:-1;38008:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;38129:25:0;;;38105:4;38129:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38008:164;70374:31;;;;;;;;;;-1:-1:-1;70374:31:0;;;;;;;;57764:244;;;;;;;;;;-1:-1:-1;57764:244:0;;;;;:::i;:::-;;:::i;70224:33::-;;;;;;;;;;;;;;;;70039:29;;;;;;;;;;;;;;;;74268:198;;;;;;;;;;-1:-1:-1;74268:198:0;;;;;:::i;:::-;;:::i;:::-;;;15954:13:1;;15936:32;;15924:2;15909:18;74268:198:0;15891:83:1;48674:237:0;48776:4;-1:-1:-1;;;;;;48800:50:0;;-1:-1:-1;;;48800:50:0;;:103;;;48867:36;48891:11;48867:23;:36::i;:::-;48793:110;48674:237;-1:-1:-1;;48674:237:0:o;35889:100::-;35943:13;35976:5;35969:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35889:100;:::o;37349:221::-;37425:7;37453:16;37461:7;37453;:16::i;:::-;37445:73;;;;-1:-1:-1;;;37445:73:0;;13101:2:1;37445:73:0;;;13083:21:1;13140:2;13120:18;;;13113:30;13179:34;13159:18;;;13152:62;-1:-1:-1;;;13230:18:1;;;13223:42;13282:19;;37445:73:0;;;;;;;;;-1:-1:-1;37538:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37538:24:0;;37349:221::o;36886:397::-;36967:13;36983:23;36998:7;36983:14;:23::i;:::-;36967:39;;37031:5;-1:-1:-1;;;;;37025:11:0;:2;-1:-1:-1;;;;;37025:11:0;;;37017:57;;;;-1:-1:-1;;;37017:57:0;;14701:2:1;37017:57:0;;;14683:21:1;14740:2;14720:18;;;14713:30;14779:34;14759:18;;;14752:62;-1:-1:-1;;;14830:18:1;;;14823:31;14871:19;;37017:57:0;14673:223:1;37017:57:0;8756:10;-1:-1:-1;;;;;37095:21:0;;;;:62;;-1:-1:-1;37120:37:0;37137:5;8756:10;38008:164;:::i;37120:37::-;37087:154;;;;-1:-1:-1;;;37087:154:0;;11140:2:1;37087:154:0;;;11122:21:1;11179:2;11159:18;;;11152:30;11218:34;11198:18;;;11191:62;11289:26;11269:18;;;11262:54;11333:19;;37087:154:0;11112:246:1;37087:154:0;37254:21;37263:2;37267:7;37254:8;:21::i;:::-;36886:397;;;:::o;71847:120::-;56883:6;;-1:-1:-1;;;;;56883:6:0;8756:10;57030:23;57022:68;;;;-1:-1:-1;;;57022:68:0;;;;;;;:::i;:::-;71932:27;;::::1;::::0;:10:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;71847:120:::0;:::o;72018:99::-;56883:6;;-1:-1:-1;;;;;56883:6:0;8756:10;57030:23;57022:68;;;;-1:-1:-1;;;57022:68:0;;;;;;;:::i;:::-;72087:10:::1;:22:::0;72018:99::o;74102:111::-;56883:6;;-1:-1:-1;;;;;56883:6:0;8756:10;57030:23;57022:68;;;;-1:-1:-1;;;57022:68:0;;;;;;;:::i;:::-;74177:13:::1;:28:::0;74102:111::o;38239:305::-;38400:41;8756:10;38433:7;38400:18;:41::i;:::-;38392:103;;;;-1:-1:-1;;;38392:103:0;;;;;;;:::i;:::-;38508:28;38518:4;38524:2;38528:7;38508:9;:28::i;71426:349::-;56883:6;;-1:-1:-1;;;;;56883:6:0;8756:10;57030:23;57022:68;;;;-1:-1:-1;;;57022:68:0;;;;;;;:::i;:::-;71498:16:::1;71506:7;71498;:16::i;:::-;71497:17;71489:46;;;::::0;-1:-1:-1;;;71489:46:0;;10446:2:1;71489:46:0::1;::::0;::::1;10428:21:1::0;10485:2;10465:18;;;10458:30;-1:-1:-1;;;10504:18:1;;;10497:46;10560:18;;71489:46:0::1;10418:166:1::0;71489:46:0::1;71572:15;71608:30;71618:10;71630:7:::0;71608:9:::1;:30::i;:::-;71674:28;::::0;;::::1;::::0;;::::1;::::0;;;;;-1:-1:-1;71649:22:0;;;:13:::1;:22:::0;;;;;:53;;;;;71718:49;;16363:25:1;;;71739:10:0::1;16404:18:1::0;;;16397:60;;;;16473:18;;;16466:34;;;71718:49:0::1;::::0;16351:2:1;16336:18;71718:49:0::1;;;;;;;57101:1;71426:349:::0;:::o;70879:489::-;56883:6;;-1:-1:-1;;;;;56883:6:0;8756:10;57030:23;57022:68;;;;-1:-1:-1;;;57022:68:0;;;;;;;:::i;:::-;71035:1:::1;70932:6;70998:15;71026:335;71043:3;71038:1;:8;71026:335;;71078:20;71096:1;71078:13;49415:10:::0;:17;;49327:113;71078:13:::1;:17:::0;::::1;:20::i;:::-;71068:30;;71128:10;;71117:7;:21;71113:237;;71159:30;71169:10;71181:7;71159:9;:30::i;:::-;71233:28;::::0;;::::1;::::0;;::::1;::::0;;;;;-1:-1:-1;71208:22:0;;;:13:::1;:22:::0;;;;;:53;;;;;71285:49;;16363:25:1;;;71306:10:0::1;16404:18:1::0;;;16397:60;;;;16473:18;;;16466:34;;;71285:49:0::1;::::0;16351:2:1;16336:18;71285:49:0::1;;;;;;;71113:237;71048:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71026:335;;48995:256:::0;49092:7;49128:23;49145:5;49128:16;:23::i;:::-;49120:5;:31;49112:87;;;;-1:-1:-1;;;49112:87:0;;6506:2:1;49112:87:0;;;6488:21:1;6545:2;6525:18;;;6518:30;6584:34;6564:18;;;6557:62;-1:-1:-1;;;6635:18:1;;;6628:41;6686:19;;49112:87:0;6478:233:1;49112:87:0;-1:-1:-1;;;;;;49217:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;48995:256::o;74543:89::-;56883:6;;-1:-1:-1;;;;;56883:6:0;8756:10;57030:23;57022:68;;;;-1:-1:-1;;;57022:68:0;;;;;;;:::i;:::-;74612:12:::1;::::0;;-1:-1:-1;;74596:28:0;::::1;74612:12;::::0;;::::1;74611:13;74596:28;::::0;;74543:89::o;70690:140::-;56883:6;;-1:-1:-1;;;;;56883:6:0;8756:10;57030:23;57022:68;;;;-1:-1:-1;;;57022:68:0;;;;;;;:::i;:::-;70785:37:::1;::::0;70753:21:::1;::::0;70793:10:::1;::::0;70785:37;::::1;;;::::0;70753:21;;70738:12:::1;70785:37:::0;70738:12;70785:37;70753:21;70793:10;70785:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;38615:151:::0;38719:39;38736:4;38742:2;38746:7;38719:39;;;;;;;;;;;;:16;:39::i;49517:233::-;49592:7;49628:30;49415:10;:17;;49327:113;49628:30;49620:5;:38;49612:95;;;;-1:-1:-1;;;49612:95:0;;15521:2:1;49612:95:0;;;15503:21:1;15560:2;15540:18;;;15533:30;15599:34;15579:18;;;15572:62;-1:-1:-1;;;15650:18:1;;;15643:42;15702:19;;49612:95:0;15493:234:1;49612:95:0;49725:10;49736:5;49725:17;;;;;;-1:-1:-1;;;49725:17:0;;;;;;;;;;;;;;;;;49718:24;;49517:233;;;:::o;73700:95::-;56883:6;;-1:-1:-1;;;;;56883:6:0;8756:10;57030:23;57022:68;;;;-1:-1:-1;;;57022:68:0;;;;;;;:::i;:::-;73770:17;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;35583:239::-:0;35655:7;35691:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35691:16:0;35726:19;35718:73;;;;-1:-1:-1;;;35718:73:0;;11976:2:1;35718:73:0;;;11958:21:1;12015:2;11995:18;;;11988:30;12054:34;12034:18;;;12027:62;-1:-1:-1;;;12105:18:1;;;12098:39;12154:19;;35718:73:0;11948:231:1;69978:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35313:208::-;35385:7;-1:-1:-1;;;;;35413:19:0;;35405:74;;;;-1:-1:-1;;;35405:74:0;;11565:2:1;35405:74:0;;;11547:21:1;11604:2;11584:18;;;11577:30;11643:34;11623:18;;;11616:62;-1:-1:-1;;;11694:18:1;;;11687:40;11744:19;;35405:74:0;11537:232:1;35405:74:0;-1:-1:-1;;;;;;35497:16:0;;;;;:9;:16;;;;;;;35313:208::o;57461:148::-;56883:6;;-1:-1:-1;;;;;56883:6:0;8756:10;57030:23;57022:68;;;;-1:-1:-1;;;57022:68:0;;;;;;;:::i;:::-;57552:6:::1;::::0;57531:40:::1;::::0;57568:1:::1;::::0;-1:-1:-1;;;;;57552:6:0::1;::::0;57531:40:::1;::::0;57568:1;;57531:40:::1;57582:6;:19:::0;;-1:-1:-1;;;;;;57582:19:0::1;::::0;;57461:148::o;72497:889::-;72572:12;;;;72564:56;;;;-1:-1:-1;;;72564:56:0;;9271:2:1;72564:56:0;;;9253:21:1;9310:2;9290:18;;;9283:30;9349:33;9329:18;;;9322:61;9400:18;;72564:56:0;9243:181:1;72564:56:0;72657:12;;72639:14;:30;;72631:76;;;;-1:-1:-1;;;72631:76:0;;10044:2:1;72631:76:0;;;10026:21:1;10083:2;10063:18;;;10056:30;10122:34;10102:18;;;10095:62;-1:-1:-1;;;10173:18:1;;;10166:31;10214:19;;72631:76:0;10016:223:1;72631:76:0;72763:10;;72726:33;72744:14;72726:13;49415:10;:17;;49327:113;72726:33;:47;;72718:102;;;;-1:-1:-1;;;72718:102:0;;8506:2:1;72718:102:0;;;8488:21:1;8545:2;8525:18;;;8518:30;8584:34;8564:18;;;8557:62;-1:-1:-1;;;8635:18:1;;;8628:40;8685:19;;72718:102:0;8478:232:1;72718:102:0;72839:13;;72876:9;;72839:33;;72857:14;72839:17;:33::i;:::-;:46;;72831:84;;;;-1:-1:-1;;;72831:84:0;;12386:2:1;72831:84:0;;;12368:21:1;12425:2;12405:18;;;12398:30;12464:27;12444:18;;;12437:55;12509:18;;72831:84:0;12358:175:1;72831:84:0;72952:15;72926:23;73024:1;73011:368;73032:14;73027:1;:19;73011:368;;73078:20;73096:1;73078:13;49415:10;:17;;49327:113;73078:20;73068:30;;73128:10;;73117:7;:21;73113:255;;73159:30;73169:10;73181:7;73159:9;:30::i;:::-;73233:28;;;;;;;;;;;;-1:-1:-1;73208:22:0;;;:13;:22;;;;;:53;;;;;73303:49;;16363:25:1;;;73324:10:0;16404:18:1;;;16397:60;;;;16473:18;;;16466:34;;;73303:49:0;;16351:2:1;16336:18;73303:49:0;;;;;;;73113:255;73048:3;;;;:::i;:::-;;;;73011:368;;;;72497:889;;;:::o;73462:115::-;56883:6;;-1:-1:-1;;;;;56883:6:0;8756:10;57030:23;57022:68;;;;-1:-1:-1;;;57022:68:0;;;;;;;:::i;:::-;73539:14:::1;:30:::0;73462:115::o;36058:104::-;36114:13;36147:7;36140:14;;;;;:::i;37642:295::-;-1:-1:-1;;;;;37745:24:0;;8756:10;37745:24;;37737:62;;;;-1:-1:-1;;;37737:62:0;;8917:2:1;37737:62:0;;;8899:21:1;8956:2;8936:18;;;8929:30;8995:27;8975:18;;;8968:55;9040:18;;37737:62:0;8889:175:1;37737:62:0;8756:10;37812:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37812:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37812:53:0;;;;;;;;;;37881:48;;6028:41:1;;;37812:42:0;;8756:10;37881:48;;6001:18:1;37881:48:0;;;;;;;37642:295;;:::o;72174:108::-;56883:6;;-1:-1:-1;;;;;56883:6:0;8756:10;57030:23;57022:68;;;;-1:-1:-1;;;57022:68:0;;;;;;;:::i;:::-;72248:12:::1;:26:::0;72174:108::o;38837:285::-;38969:41;8756:10;39002:7;38969:18;:41::i;:::-;38961:103;;;;-1:-1:-1;;;38961:103:0;;;;;;;:::i;:::-;39075:39;39089:4;39095:2;39099:7;39108:5;39075:13;:39::i;72357:96::-;56883:6;;-1:-1:-1;;;;;56883:6:0;8756:10;57030:23;57022:68;;;;-1:-1:-1;;;57022:68:0;;;;;;;:::i;:::-;72422:12:::1;:23:::0;;-1:-1:-1;;72422:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;72357:96::o;36233:360::-;36306:13;36340:16;36348:7;36340;:16::i;:::-;36332:76;;;;-1:-1:-1;;;36332:76:0;;14285:2:1;36332:76:0;;;14267:21:1;14324:2;14304:18;;;14297:30;14363:34;14343:18;;;14336:62;-1:-1:-1;;;14414:18:1;;;14407:45;14469:19;;36332:76:0;14257:237:1;36332:76:0;36421:21;36445:10;:8;:10::i;:::-;36421:34;;36497:1;36479:7;36473:21;:25;:112;;;;;;;;;;;;;;;;;36538:7;36547:18;:7;:16;:18::i;:::-;36521:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36473:112;36466:119;36233:360;-1:-1:-1;;;36233:360:0:o;57764:244::-;56883:6;;-1:-1:-1;;;;;56883:6:0;8756:10;57030:23;57022:68;;;;-1:-1:-1;;;57022:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;57853:22:0;::::1;57845:73;;;::::0;-1:-1:-1;;;57845:73:0;;7337:2:1;57845:73:0::1;::::0;::::1;7319:21:1::0;7376:2;7356:18;;;7349:30;7415:34;7395:18;;;7388:62;-1:-1:-1;;;7466:18:1;;;7459:36;7512:19;;57845:73:0::1;7309:228:1::0;57845:73:0::1;57955:6;::::0;57934:38:::1;::::0;-1:-1:-1;;;;;57934:38:0;;::::1;::::0;57955:6:::1;::::0;57934:38:::1;::::0;57955:6:::1;::::0;57934:38:::1;57983:6;:17:::0;;-1:-1:-1;;;;;;57983:17:0::1;-1:-1:-1::0;;;;;57983:17:0;;;::::1;::::0;;;::::1;::::0;;57764:244::o;74268:198::-;-1:-1:-1;;;;;;;;;;;;74375:16:0;74383:7;74375;:16::i;:::-;74367:49;;;;-1:-1:-1;;;74367:49:0;;10791:2:1;74367:49:0;;;10773:21:1;10830:2;10810:18;;;10803:30;-1:-1:-1;;;10849:18:1;;;10842:50;10909:18;;74367:49:0;10763:170:1;74367:49:0;-1:-1:-1;74436:22:0;;;;:13;:22;;;;;;;;;74429:29;;;;;;;;;;;;;74268:198::o;34957:292::-;35059:4;-1:-1:-1;;;;;;35083:40:0;;-1:-1:-1;;;35083:40:0;;:105;;-1:-1:-1;;;;;;;35140:48:0;;-1:-1:-1;;;35140:48:0;35083:105;:158;;;-1:-1:-1;;;;;;;;;;28148:40:0;;;35205:36;28039:157;40589:127;40654:4;40678:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40678:16:0;:30;;;40589:127::o;44466:174::-;44541:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44541:29:0;-1:-1:-1;;;;;44541:29:0;;;;;;;;:24;;44595:23;44541:24;44595:14;:23::i;:::-;-1:-1:-1;;;;;44586:46:0;;;;;;;;;;;44466:174;;:::o;40883:348::-;40976:4;41001:16;41009:7;41001;:16::i;:::-;40993:73;;;;-1:-1:-1;;;40993:73:0;;9631:2:1;40993:73:0;;;9613:21:1;9670:2;9650:18;;;9643:30;9709:34;9689:18;;;9682:62;-1:-1:-1;;;9760:18:1;;;9753:42;9812:19;;40993:73:0;9603:234:1;40993:73:0;41077:13;41093:23;41108:7;41093:14;:23::i;:::-;41077:39;;41146:5;-1:-1:-1;;;;;41135:16:0;:7;-1:-1:-1;;;;;41135:16:0;;:51;;;;41179:7;-1:-1:-1;;;;;41155:31:0;:20;41167:7;41155:11;:20::i;:::-;-1:-1:-1;;;;;41155:31:0;;41135:51;:87;;;-1:-1:-1;;;;;;38129:25:0;;;38105:4;38129:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41190:32;41127:96;40883:348;-1:-1:-1;;;;40883:348:0:o;43804:544::-;43929:4;-1:-1:-1;;;;;43902:31:0;:23;43917:7;43902:14;:23::i;:::-;-1:-1:-1;;;;;43902:31:0;;43894:85;;;;-1:-1:-1;;;43894:85:0;;13875:2:1;43894:85:0;;;13857:21:1;13914:2;13894:18;;;13887:30;13953:34;13933:18;;;13926:62;-1:-1:-1;;;14004:18:1;;;13997:39;14053:19;;43894:85:0;13847:231:1;43894:85:0;-1:-1:-1;;;;;43998:16:0;;43990:65;;;;-1:-1:-1;;;43990:65:0;;8101:2:1;43990:65:0;;;8083:21:1;8140:2;8120:18;;;8113:30;8179:34;8159:18;;;8152:62;-1:-1:-1;;;8230:18:1;;;8223:34;8274:19;;43990:65:0;8073:226:1;43990:65:0;44068:39;44089:4;44095:2;44099:7;44068:20;:39::i;:::-;44172:29;44189:1;44193:7;44172:8;:29::i;:::-;-1:-1:-1;;;;;44214:15:0;;;;;;:9;:15;;;;;:20;;44233:1;;44214:15;:20;;44233:1;;44214:20;:::i;:::-;;;;-1:-1:-1;;;;;;;44245:13:0;;;;;;:9;:13;;;;;:18;;44262:1;;44245:13;:18;;44262:1;;44245:18;:::i;:::-;;;;-1:-1:-1;;44274:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44274:21:0;-1:-1:-1;;;;;44274:21:0;;;;;;;;;44313:27;;44274:16;;44313:27;;;;;;;43804:544;;;:::o;41573:110::-;41649:26;41659:2;41663:7;41649:26;;;;;;;;;;;;:9;:26::i;60802:98::-;60860:7;60887:5;60891:1;60887;:5;:::i;61540:98::-;61598:7;61625:5;61629:1;61625;:5;:::i;40004:272::-;40118:28;40128:4;40134:2;40138:7;40118:9;:28::i;:::-;40165:48;40188:4;40194:2;40198:7;40207:5;40165:22;:48::i;:::-;40157:111;;;;-1:-1:-1;;;40157:111:0;;;;;;;:::i;73933:108::-;73993:13;74026:7;74019:14;;;;;:::i;65396:723::-;65452:13;65673:10;65669:53;;-1:-1:-1;;65700:10:0;;;;;;;;;;;;-1:-1:-1;;;65700:10:0;;;;;65396:723::o;65669:53::-;65747:5;65732:12;65788:78;65795:9;;65788:78;;65821:8;;;;:::i;:::-;;-1:-1:-1;65844:10:0;;-1:-1:-1;65852:2:0;65844:10;;:::i;:::-;;;65788:78;;;65876:19;65908:6;65898:17;;;;;;-1:-1:-1;;;65898:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65898:17:0;;65876:39;;65926:154;65933:10;;65926:154;;65960:11;65970:1;65960:11;;:::i;:::-;;-1:-1:-1;66029:10:0;66037:2;66029:5;:10;:::i;:::-;66016:24;;:2;:24;:::i;:::-;66003:39;;65986:6;65993;65986:14;;;;;;-1:-1:-1;;;65986:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;65986:56:0;;;;;;;;-1:-1:-1;66057:11:0;66066:2;66057:11;;:::i;:::-;;;65926:154;;50363:555;-1:-1:-1;;;;;50535:18:0;;50531:187;;50570:40;50602:7;51745:10;:17;;51718:24;;;;:15;:24;;;;;:44;;;51773:24;;;;;;;;;;;;51641:164;50570:40;50531:187;;;50640:2;-1:-1:-1;;;;;50632:10:0;:4;-1:-1:-1;;;;;50632:10:0;;50628:90;;50659:47;50692:4;50698:7;50659:32;:47::i;:::-;-1:-1:-1;;;;;50732:16:0;;50728:183;;50765:45;50802:7;50765:36;:45::i;50728:183::-;50838:4;-1:-1:-1;;;;;50832:10:0;:2;-1:-1:-1;;;;;50832:10:0;;50828:83;;50859:40;50887:2;50891:7;50859:27;:40::i;41910:250::-;42006:18;42012:2;42016:7;42006:5;:18::i;:::-;42043:54;42074:1;42078:2;42082:7;42091:5;42043:22;:54::i;:::-;42035:117;;;;-1:-1:-1;;;42035:117:0;;;;;;;:::i;45205:843::-;45326:4;-1:-1:-1;;;;;45352:13:0;;1163:20;1202:8;45348:693;;45388:72;;-1:-1:-1;;;45388:72:0;;-1:-1:-1;;;;;45388:36:0;;;;;:72;;8756:10;;45439:4;;45445:7;;45454:5;;45388:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45388:72:0;;;;;;;;-1:-1:-1;;45388:72:0;;;;;;;;;;;;:::i;:::-;;;45384:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45634:13:0;;45630:341;;45677:60;;-1:-1:-1;;;45677:60:0;;;;;;;:::i;45630:341::-;45921:6;45915:13;45906:6;45902:2;45898:15;45891:38;45384:602;-1:-1:-1;;;;;;45511:55:0;-1:-1:-1;;;45511:55:0;;-1:-1:-1;45504:62:0;;45348:693;-1:-1:-1;46025:4:0;45205:843;;;;;;:::o;52432:988::-;52698:22;52748:1;52723:22;52740:4;52723:16;:22::i;:::-;:26;;;;:::i;:::-;52760:18;52781:26;;;:17;:26;;;;;;52698:51;;-1:-1:-1;52914:28:0;;;52910:328;;-1:-1:-1;;;;;52981:18:0;;52959:19;52981:18;;;:12;:18;;;;;;;;:34;;;;;;;;;53032:30;;;;;;:44;;;53149:30;;:17;:30;;;;;:43;;;52910:328;-1:-1:-1;53334:26:0;;;;:17;:26;;;;;;;;53327:33;;;-1:-1:-1;;;;;53378:18:0;;;;;:12;:18;;;;;:34;;;;;;;53371:41;52432:988::o;53715:1079::-;53993:10;:17;53968:22;;53993:21;;54013:1;;53993:21;:::i;:::-;54025:18;54046:24;;;:15;:24;;;;;;54419:10;:26;;53968:46;;-1:-1:-1;54046:24:0;;53968:46;;54419:26;;;;-1:-1:-1;;;54419:26:0;;;;;;;;;;;;;;;;;54397:48;;54483:11;54458:10;54469;54458:22;;;;;;-1:-1:-1;;;54458:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;54563:28;;;:15;:28;;;;;;;:41;;;54735:24;;;;;54728:31;54770:10;:16;;;;;-1:-1:-1;;;54770:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;53715:1079;;;;:::o;51219:221::-;51304:14;51321:20;51338:2;51321:16;:20::i;:::-;-1:-1:-1;;;;;51352:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;51397:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;51219:221:0:o;42496:382::-;-1:-1:-1;;;;;42576:16:0;;42568:61;;;;-1:-1:-1;;;42568:61:0;;12740:2:1;42568:61:0;;;12722:21:1;;;12759:18;;;12752:30;12818:34;12798:18;;;12791:62;12870:18;;42568:61:0;12712:182:1;42568:61:0;42649:16;42657:7;42649;:16::i;:::-;42648:17;42640:58;;;;-1:-1:-1;;;42640:58:0;;7744:2:1;42640:58:0;;;7726:21:1;7783:2;7763:18;;;7756:30;7822;7802:18;;;7795:58;7870:18;;42640:58:0;7716:178:1;42640:58:0;42711:45;42740:1;42744:2;42748:7;42711:20;:45::i;:::-;-1:-1:-1;;;;;42769:13:0;;;;;;:9;:13;;;;;:18;;42786:1;;42769:13;:18;;42786:1;;42769:18;:::i;:::-;;;;-1:-1:-1;;42798:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42798:21:0;-1:-1:-1;;;;;42798:21:0;;;;;;;;42837:33;;42798:16;;;42837:33;;42798:16;;42837:33;42496:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;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:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;1194:270::-;1262:6;1270;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;1907:6;1915;1923;1931;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;2850:6;2858;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:190::-;3107:6;3160:2;3148:9;3139:7;3135:23;3131:32;3128:2;;;3181:6;3173;3166:22;3128:2;3209:26;3225:9;3209:26;:::i;3246:255::-;3304:6;3357:2;3345:9;3336:7;3332:23;3328:32;3325:2;;;3378:6;3370;3363:22;3325:2;3422:9;3409:23;3441:30;3465:5;3441:30;:::i;3506:259::-;3575:6;3628:2;3616:9;3607:7;3603:23;3599:32;3596:2;;;3649:6;3641;3634:22;3596:2;3686:9;3680:16;3705:30;3729:5;3705:30;:::i;3770:480::-;3839:6;3892:2;3880:9;3871:7;3867:23;3863:32;3860:2;;;3913:6;3905;3898:22;3860:2;3958:9;3945:23;3991:18;3983:6;3980:30;3977:2;;;4028:6;4020;4013:22;3977:2;4056:22;;4109:4;4101:13;;4097:27;-1:-1:-1;4087:2:1;;4143:6;4135;4128:22;4087:2;4171:73;4236:7;4231:2;4218:16;4213:2;4209;4205:11;4171:73;:::i;4255:190::-;4314:6;4367:2;4355:9;4346:7;4342:23;4338:32;4335:2;;;4388:6;4380;4373:22;4335:2;-1:-1:-1;4416:23:1;;4325:120;-1:-1:-1;4325:120:1:o;4450:257::-;4491:3;4529:5;4523:12;4556:6;4551:3;4544:19;4572:63;4628:6;4621:4;4616:3;4612:14;4605:4;4598:5;4594:16;4572:63;:::i;:::-;4689:2;4668:15;-1:-1:-1;;4664:29:1;4655:39;;;;4696:4;4651:50;;4499:208;-1:-1:-1;;4499:208:1:o;4712:470::-;4891:3;4929:6;4923:13;4945:53;4991:6;4986:3;4979:4;4971:6;4967:17;4945:53;:::i;:::-;5061:13;;5020:16;;;;5083:57;5061:13;5020:16;5117:4;5105:17;;5083:57;:::i;:::-;5156:20;;4899:283;-1:-1:-1;;;;4899:283:1:o;5395:488::-;-1:-1:-1;;;;;5664:15:1;;;5646:34;;5716:15;;5711:2;5696:18;;5689:43;5763:2;5748:18;;5741:34;;;5811:3;5806:2;5791:18;;5784:31;;;5589:4;;5832:45;;5857:19;;5849:6;5832:45;:::i;:::-;5824:53;5598:285;-1:-1:-1;;;;;;5598:285:1:o;6080:219::-;6229:2;6218:9;6211:21;6192:4;6249:44;6289:2;6278:9;6274:18;6266:6;6249:44;:::i;6716:414::-;6918:2;6900:21;;;6957:2;6937:18;;;6930:30;6996:34;6991:2;6976:18;;6969:62;-1:-1:-1;;;7062:2:1;7047:18;;7040:48;7120:3;7105:19;;6890:240::o;13312:356::-;13514:2;13496:21;;;13533:18;;;13526:30;13592:34;13587:2;13572:18;;13565:62;13659:2;13644:18;;13486:182::o;14901:413::-;15103:2;15085:21;;;15142:2;15122:18;;;15115:30;15181:34;15176:2;15161:18;;15154:62;-1:-1:-1;;;15247:2:1;15232:18;;15225:47;15304:3;15289:19;;15075:239::o;16511:128::-;16551:3;16582:1;16578:6;16575:1;16572:13;16569:2;;;16588:18;;:::i;:::-;-1:-1:-1;16624:9:1;;16559:80::o;16644:120::-;16684:1;16710;16700:2;;16715:18;;:::i;:::-;-1:-1:-1;16749:9:1;;16690:74::o;16769:168::-;16809:7;16875:1;16871;16867:6;16863:14;16860:1;16857:21;16852:1;16845:9;16838:17;16834:45;16831:2;;;16882:18;;:::i;:::-;-1:-1:-1;16922:9:1;;16821:116::o;16942:125::-;16982:4;17010:1;17007;17004:8;17001:2;;;17015:18;;:::i;:::-;-1:-1:-1;17052:9:1;;16991:76::o;17072:258::-;17144:1;17154:113;17168:6;17165:1;17162:13;17154:113;;;17244:11;;;17238:18;17225:11;;;17218:39;17190:2;17183:10;17154:113;;;17285:6;17282:1;17279:13;17276:2;;;-1:-1:-1;;17320:1:1;17302:16;;17295:27;17125:205::o;17335:380::-;17414:1;17410:12;;;;17457;;;17478:2;;17532:4;17524:6;17520:17;17510:27;;17478:2;17585;17577:6;17574:14;17554:18;17551:38;17548:2;;;17631:10;17626:3;17622:20;17619:1;17612:31;17666:4;17663:1;17656:15;17694:4;17691:1;17684:15;17548:2;;17390:325;;;:::o;17720:135::-;17759:3;-1:-1:-1;;17780:17:1;;17777:2;;;17800:18;;:::i;:::-;-1:-1:-1;17847:1:1;17836:13;;17767:88::o;17860:112::-;17892:1;17918;17908:2;;17923:18;;:::i;:::-;-1:-1:-1;17957:9:1;;17898:74::o;17977:127::-;18038:10;18033:3;18029:20;18026:1;18019:31;18069:4;18066:1;18059:15;18093:4;18090:1;18083:15;18109:127;18170:10;18165:3;18161:20;18158:1;18151:31;18201:4;18198:1;18191:15;18225:4;18222:1;18215:15;18241:127;18302:10;18297:3;18293:20;18290:1;18283:31;18333:4;18330:1;18323:15;18357:4;18354:1;18347:15;18373:131;-1:-1:-1;;;;;;18447:32:1;;18437:43;;18427:2;;18494:1;18491;18484:12;18427:2;18417:87;:::o

Swarm Source

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