ETH Price: $2,275.83 (+1.92%)

Token

UniPangram (UP)
 

Overview

Max Total Supply

720 UP

Holders

246

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*🎰️✨️🎰️✨️🎰️.eth
Balance
1 UP
0x9890A25966edf68f116cddaE9a021D043950C03D
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:
TokenWords

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-02-15
*/

// SPDX-License-Identifier: MIT
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 GSN 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;
    }
}

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

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

/**
 * @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] = toDeleteIndex + 1; // All indexes are 1-based

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

/**
 * @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 {
    // 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 MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @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) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @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) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry 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.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @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._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.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) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @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) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @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) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @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) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/**
 * @dev Wrappers over Solidity's arithmetic operations.
 */
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;
        }
    }
}

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

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(type(IERC165).interfaceId);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}


/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Base URI
    string private _baseURI;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(type(IERC721).interfaceId);
        _registerInterface(type(IERC721Metadata).interfaceId);
        _registerInterface(type(IERC721Enumerable).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 _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

    /**
     * @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 _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 || ERC721.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 _tokenOwners.contains(tokenId);
    }

    /**
     * @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 || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(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); // internal owner

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(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"); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

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

    function _approve(address to, uint256 tokenId) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner
    }

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

contract TokenWords is ERC721, Ownable {
    uint256 private _price = 0;
    uint256 private _currTokenID = 0;
    uint256 private _maxSupply = 0;

    mapping (uint256 => string) private _tokenWords;

    event PriceUpdated(uint256 previousPrice, uint256 newPrice);

    event MaxSupplyUpdated(uint256 previousMaxSupply, uint256 newMaxSupply);

    event TokenWordsUpdated(uint256 indexed tokenID, string previousWords, string newWords);

    event TokenURIUpdated(uint256 indexed tokenID, string previousURI, string newURI);

    event TokenMinted(uint256 indexed tokenID, address indexed minter, address indexed recipient, string tokenWords, string tokenURI, uint256 price, uint256 payment);

    event TokenBurned(uint256 indexed tokenID, address indexed burner);

    event WithdrawCompleted(address indexed recipient, uint256 amount);

    event BaseURIUpdated(string prevBaseURI, string newBaseURI);

    constructor(string memory name, string memory symbol, string memory genesisWords, string memory genesisURI, uint256 __price, uint256 __maxSupply, string memory baseURI) ERC721(name, symbol) {
        _price = __price;
        _maxSupply = __maxSupply;

        _setBaseURI(baseURI);

        uint256 genesisTokenID = 0;

        _safeMint(msg.sender, genesisTokenID);

        _setTokenURI(genesisTokenID, genesisURI);

        _tokenWords[genesisTokenID] = genesisWords;

        emit TokenMinted(0, msg.sender, msg.sender, genesisWords, genesisURI, _price, 0);
    }

    function price() public view returns (uint256) {
        return _price;
    }

    function updatePrice(uint256 newPrice) public onlyOwner returns (uint256) {
        uint256 prevPrice = _price;

        _price = newPrice;

        emit PriceUpdated(prevPrice, newPrice);

        return prevPrice;
    }
    
    function maxSupply() public view returns (uint256) {
        return _maxSupply;
    }

    function updateMaxSupply(uint256 newMaxSupply) public onlyOwner returns (uint256) {
        require(totalSupply() <= newMaxSupply, "current total supply greater than the new max supply");

        uint256 prevMaxSupply = _maxSupply;

        _maxSupply = newMaxSupply;

        emit MaxSupplyUpdated(prevMaxSupply, newMaxSupply);

        return prevMaxSupply;
    }

    function updateBaseURI(string memory newBaseURI) public onlyOwner returns (string memory) {
        string memory prevBaseURI = baseURI();

        _setBaseURI(newBaseURI);

        emit BaseURIUpdated(prevBaseURI, newBaseURI);

        return prevBaseURI;
    }

    function tokenWords(uint256 tokenID) public view returns (string memory) {
        require(_exists(tokenID), "nonexistent token");

        return _tokenWords[tokenID];
    }

    function updateTokenWords(uint256 tokenID, string memory newWords) public returns (string memory) {
        require(_exists(tokenID), "nonexistent token");

        address tokenOwner = ownerOf(tokenID);

        require(msg.sender == tokenOwner, "access violation");

        string memory prevWords = _tokenWords[tokenID];

        _tokenWords[tokenID] = newWords;

        emit TokenWordsUpdated(tokenID, prevWords, newWords);

        return prevWords;
    }

    function updateTokenURI(uint256 tokenID, string memory newURI) public returns (string memory) {
        require(_exists(tokenID), "nonexistent token");

        address tokenOwner = ownerOf(tokenID);

        require(msg.sender == tokenOwner, "access violation");

        string memory prevURI = tokenURI(tokenID);

        _setTokenURI(tokenID, newURI);

        emit TokenURIUpdated(tokenID, prevURI, tokenURI(tokenID));

        return prevURI;
    }

    function mint(address to, uint256 tokenID, string memory __tokenWords, string memory __tokenURI) public payable returns (uint256) {
        require(msg.value >= _price, "insufficient payment");
        require(totalSupply() < maxSupply(), "supply limit reached");
        require(_exists(tokenID) == false, "existent token");
        require(tokenID < maxSupply(), "token overflow");
        require(to != address(0), "zero address");
        require(bytes(__tokenWords).length <= 15, "too much words");

        _safeMint(to, tokenID);

        _setTokenURI(tokenID, __tokenURI);

        _tokenWords[tokenID] = __tokenWords;

        emit TokenMinted(tokenID, msg.sender, to, __tokenWords, tokenURI(tokenID), _price, msg.value);

        return tokenID;
    }

    function burn(uint256 tokenID) public {
        require(_exists(tokenID), "nonexistent token");

        address tokenOwner = ownerOf(tokenID);

        require(msg.sender == tokenOwner, "access violation");

        _burn(tokenID);

        emit TokenBurned(tokenID, msg.sender);
    }

    function withdraw(address payable recipient, uint256 amount) public onlyOwner {
        require(recipient != address(0), "zero address");
        require(recipient.send(amount), "withdraw error");

        emit WithdrawCompleted(recipient, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"genesisWords","type":"string"},{"internalType":"string","name":"genesisURI","type":"string"},{"internalType":"uint256","name":"__price","type":"uint256"},{"internalType":"uint256","name":"__maxSupply","type":"uint256"},{"internalType":"string","name":"baseURI","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":false,"internalType":"string","name":"prevBaseURI","type":"string"},{"indexed":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"previousMaxSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"MaxSupplyUpdated","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":"previousPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"PriceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenID","type":"uint256"},{"indexed":true,"internalType":"address","name":"burner","type":"address"}],"name":"TokenBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenID","type":"uint256"},{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"string","name":"tokenWords","type":"string"},{"indexed":false,"internalType":"string","name":"tokenURI","type":"string"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"payment","type":"uint256"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenID","type":"uint256"},{"indexed":false,"internalType":"string","name":"previousURI","type":"string"},{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"TokenURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenID","type":"uint256"},{"indexed":false,"internalType":"string","name":"previousWords","type":"string"},{"indexed":false,"internalType":"string","name":"newWords","type":"string"}],"name":"TokenWordsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawCompleted","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"burn","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"string","name":"__tokenWords","type":"string"},{"internalType":"string","name":"__tokenURI","type":"string"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","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":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"tokenWords","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"updateBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"updateMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"string","name":"newURI","type":"string"}],"name":"updateTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"},{"internalType":"string","name":"newWords","type":"string"}],"name":"updateTokenWords","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600b556000600c556000600d553480156200002057600080fd5b5060405162003983380380620039838339810160408190526200004391620007f7565b8686620000576301ffc9a760e01b620001cd565b81516200006c90600690602085019062000698565b5080516200008290600790602084019062000698565b50620000956380ac58cd60e01b620001cd565b620000a7635b5e139f60e01b620001cd565b620000b963780e9d6360e01b620001cd565b5060009050620000c862000228565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600b839055600d8290556200012b816200022c565b600062000139338262000245565b62000145818662000267565b6000818152600e602090815260409091208751620001669289019062000698565b50336001600160a01b0316336001600160a01b031660007f653c5bb9d3fa44ca4973d3fdbbb4faac86b8baf29eef4860d67fbcf37d0112c58989600b546000604051620001b7949392919062000948565b60405180910390a4505050505050505062000b70565b6001600160e01b03198082161415620002035760405162461bcd60e51b8152600401620001fa90620009d7565b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b80516200024190600990602084019062000698565b5050565b62000241828260405180602001604052806000815250620002b760201b60201c565b6200027282620002f1565b620002915760405162461bcd60e51b8152600401620001fa9062000a7a565b60008281526008602090815260409091208251620002b29284019062000698565b505050565b620002c3838362000314565b620002d2600084848462000402565b620002b25760405162461bcd60e51b8152600401620001fa9062000985565b60006200030e8260026200053b60201b620013bc1790919060201c565b92915050565b6001600160a01b0382166200033d5760405162461bcd60e51b8152600401620001fa9062000a45565b6200034881620002f1565b15620003685760405162461bcd60e51b8152600401620001fa9062000a0e565b6200037660008383620002b2565b6001600160a01b0382166000908152600160209081526040909120620003a7918390620013c862000550821b17901c565b50620003c5818360026200055e60201b620013d4179092919060201c565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000423846001600160a01b03166200057660201b620013ea1760201c565b156200052f576001600160a01b03841663150b7a026200044262000228565b8786866040518563ffffffff1660e01b815260040162000466949392919062000913565b602060405180830381600087803b1580156200048157600080fd5b505af1925050508015620004b4575060408051601f3d908101601f19168201909252620004b191810190620007cd565b60015b62000514573d808015620004e5576040519150601f19603f3d011682016040523d82523d6000602084013e620004ea565b606091505b5080516200050c5760405162461bcd60e51b8152600401620001fa9062000985565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000533565b5060015b949350505050565b60006200054983836200057c565b9392505050565b600062000549838362000594565b60006200053384846001600160a01b038516620005e3565b3b151590565b60009081526001919091016020526040902054151590565b6000620005a283836200057c565b620005da575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200030e565b5060006200030e565b6000828152600184016020526040812054806200064a57505060408051808201825283815260208082018481528654600181810189556000898152848120955160029093029095019182559151908201558654868452818801909252929091205562000549565b82856200065960018462000ac6565b815481106200067857634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020160010181905550600091505062000549565b828054620006a69062000b1d565b90600052602060002090601f016020900481019282620006ca576000855562000715565b82601f10620006e557805160ff191683800117855562000715565b8280016001018555821562000715579182015b8281111562000715578251825591602001919060010190620006f8565b506200072392915062000727565b5090565b5b8082111562000723576000815560010162000728565b600082601f8301126200074f578081fd5b81516001600160401b03808211156200076c576200076c62000b5a565b604051601f8301601f19908116603f0116810190828211818310171562000797576200079762000b5a565b81604052838152866020858801011115620007b0578485fd5b620007c384602083016020890162000aea565b9695505050505050565b600060208284031215620007df578081fd5b81516001600160e01b03198116811462000549578182fd5b600080600080600080600060e0888a03121562000812578283fd5b87516001600160401b038082111562000829578485fd5b620008378b838c016200073e565b985060208a01519150808211156200084d578485fd5b6200085b8b838c016200073e565b975060408a015191508082111562000871578485fd5b6200087f8b838c016200073e565b965060608a015191508082111562000895578485fd5b620008a38b838c016200073e565b955060808a0151945060a08a0151935060c08a0151915080821115620008c7578283fd5b50620008d68a828b016200073e565b91505092959891949750929550565b60008151808452620008ff81602086016020860162000aea565b601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090620007c390830184620008e5565b6000608082526200095d6080830187620008e5565b8281036020840152620009718187620008e5565b604084019590955250506060015292915050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60008282101562000ae557634e487b7160e01b81526011600452602481fd5b500390565b60005b8381101562000b0757818101518382015260200162000aed565b8381111562000b17576000848401525b50505050565b60028104600182168062000b3257607f821691505b6020821081141562000b5457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612e038062000b806000396000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063b2787fc111610095578063e985e9c511610064578063e985e9c514610517578063f103b43314610537578063f2fde38b14610557578063f3fef3a314610577576101d8565b8063b2787fc1146104a2578063b88d4fde146104c2578063c87b56dd146104e2578063d5abeb0114610502576101d8565b8063931688cb116100d1578063931688cb1461043857806395d89b4114610458578063a035b1fe1461046d578063a22cb46514610482576101d8565b8063715018a6146103ce5780638d6cc56d146103e35780638da5cb5b146104035780638f35266f14610418576101d8565b80632f745c591161017a5780634f6ccce7116101495780634f6ccce7146103595780636352211e146103795780636c0360eb1461039957806370a08231146103ae576101d8565b80632f745c59146102e65780632fb102cf1461030657806342842e0e1461031957806342966c6814610339576101d8565b8063095ea7b3116101b6578063095ea7b31461026257806318160ddd1461028457806318e97fd1146102a657806323b872dd146102c6576101d8565b806301ffc9a7146101dd57806306fdde0314610213578063081812fc14610235575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004612302565b610597565b60405161020a9190612475565b60405180910390f35b34801561021f57600080fd5b506102286105ba565b60405161020a9190612480565b34801561024157600080fd5b5061025561025036600461236d565b61064c565b60405161020a9190612425565b34801561026e57600080fd5b5061028261027d36600461227f565b610698565b005b34801561029057600080fd5b50610299610730565b60405161020a9190612c47565b3480156102b257600080fd5b506102286102c1366004612385565b610741565b3480156102d257600080fd5b506102826102e1366004612191565b610800565b3480156102f257600080fd5b5061029961030136600461227f565b610838565b610299610314366004612291565b610861565b34801561032557600080fd5b50610282610334366004612191565b6109d8565b34801561034557600080fd5b5061028261035436600461236d565b6109f3565b34801561036557600080fd5b5061029961037436600461236d565b610a87565b34801561038557600080fd5b5061025561039436600461236d565b610a9d565b3480156103a557600080fd5b50610228610ac5565b3480156103ba57600080fd5b506102996103c9366004612112565b610ad4565b3480156103da57600080fd5b50610282610b1d565b3480156103ef57600080fd5b506102996103fe36600461236d565b610ba6565b34801561040f57600080fd5b50610255610c2f565b34801561042457600080fd5b50610228610433366004612385565b610c3e565b34801561044457600080fd5b5061022861045336600461233a565b610d89565b34801561046457600080fd5b50610228610e10565b34801561047957600080fd5b50610299610e1f565b34801561048e57600080fd5b5061028261049d36600461224e565b610e25565b3480156104ae57600080fd5b506102286104bd36600461236d565b610ef3565b3480156104ce57600080fd5b506102826104dd3660046121d1565b610fb8565b3480156104ee57600080fd5b506102286104fd36600461236d565b610ff7565b34801561050e57600080fd5b5061029961113a565b34801561052357600080fd5b506101fd610532366004612159565b611140565b34801561054357600080fd5b5061029961055236600461236d565b61116e565b34801561056357600080fd5b50610282610572366004612112565b611210565b34801561058357600080fd5b5061028261059236600461212e565b6112d1565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b6060600680546105c990612ccd565b80601f01602080910402602001604051908101604052809291908181526020018280546105f590612ccd565b80156106425780601f1061061757610100808354040283529160200191610642565b820191906000526020600020905b81548152906001019060200180831161062557829003601f168201915b5050505050905090565b6000610657826113f0565b61067c5760405162461bcd60e51b815260040161067390612934565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106a382610a9d565b9050806001600160a01b0316836001600160a01b031614156106d75760405162461bcd60e51b815260040161067390612b3b565b806001600160a01b03166106e96113fd565b6001600160a01b031614806107055750610705816105326113fd565b6107215760405162461bcd60e51b8152600401610673906127df565b61072b8383611401565b505050565b600061073c600261146f565b905090565b606061074c836113f0565b6107685760405162461bcd60e51b815260040161067390612980565b600061077384610a9d565b9050336001600160a01b0382161461079d5760405162461bcd60e51b815260040161067390612ade565b60006107a885610ff7565b90506107b4858561147a565b847f31b096c6ff64a74a686605caa11c1eb1e36d3ab8079b1e117b5074d70d63ac7b826107e088610ff7565b6040516107ee929190612493565b60405180910390a29150505b92915050565b61081161080b6113fd565b826114be565b61082d5760405162461bcd60e51b815260040161067390612bb3565b61072b83838361153b565b6001600160a01b038216600090815260016020526040812061085a9083611649565b9392505050565b6000600b543410156108855760405162461bcd60e51b815260040161067390612725565b61088d61113a565b610895610730565b106108b25760405162461bcd60e51b815260040161067390612599565b6108bb846113f0565b156108d85760405162461bcd60e51b815260040161067390612b7c565b6108e061113a565b84106108fe5760405162461bcd60e51b81526004016106739061283c565b6001600160a01b0385166109245760405162461bcd60e51b815260040161067390612b15565b600f835111156109465760405162461bcd60e51b8152600401610673906125d0565b6109508585611655565b61095a848361147a565b6000848152600e60209081526040909120845161097992860190611fa5565b506001600160a01b03851633857f653c5bb9d3fa44ca4973d3fdbbb4faac86b8baf29eef4860d67fbcf37d0112c5866109b183610ff7565b600b54346040516109c594939291906124c1565b60405180910390a450825b949350505050565b61072b83838360405180602001604052806000815250610fb8565b6109fc816113f0565b610a185760405162461bcd60e51b815260040161067390612980565b6000610a2382610a9d565b9050336001600160a01b03821614610a4d5760405162461bcd60e51b815260040161067390612ade565b610a5682611673565b604051339083907f33631bcd0a4d34a7e2c240ab0753d5adfb7284d8ac89dab6876ec785c0cfa0e690600090a35050565b600080610a95600284611739565b509392505050565b60006107fa82604051806060016040528060298152602001612da56029913960029190611755565b6060600980546105c990612ccd565b60006001600160a01b038216610afc5760405162461bcd60e51b815260040161067390612873565b6001600160a01b03821660009081526001602052604090206107fa9061146f565b610b256113fd565b6001600160a01b0316610b36610c2f565b6001600160a01b031614610b5c5760405162461bcd60e51b815260040161067390612a03565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6000610bb06113fd565b6001600160a01b0316610bc1610c2f565b6001600160a01b031614610be75760405162461bcd60e51b815260040161067390612a03565b600b8054908390556040517f945c1c4e99aa89f648fbfe3df471b916f719e16d960fcec0737d4d56bd69683890610c219083908690612c50565b60405180910390a192915050565b600a546001600160a01b031690565b6060610c49836113f0565b610c655760405162461bcd60e51b815260040161067390612980565b6000610c7084610a9d565b9050336001600160a01b03821614610c9a5760405162461bcd60e51b815260040161067390612ade565b6000848152600e602052604081208054610cb390612ccd565b80601f0160208091040260200160405190810160405280929190818152602001828054610cdf90612ccd565b8015610d2c5780601f10610d0157610100808354040283529160200191610d2c565b820191906000526020600020905b815481529060010190602001808311610d0f57829003601f168201915b5050506000888152600e602090815260409091208851949550610d56949093509088019150611fa5565b50847f3c26e312e9d4eae64ac40dcf987049efa5fba199327176953ca2db705e9b2bc182866040516107ee929190612493565b6060610d936113fd565b6001600160a01b0316610da4610c2f565b6001600160a01b031614610dca5760405162461bcd60e51b815260040161067390612a03565b6000610dd4610ac5565b9050610ddf83611762565b7f309b29ded109b9e28fb9885757b3e0096eb75c51d23aa4635d68bcd569f6adc18184604051610c21929190612493565b6060600780546105c990612ccd565b600b5490565b610e2d6113fd565b6001600160a01b0316826001600160a01b03161415610e5e5760405162461bcd60e51b81526004016106739061275c565b8060056000610e6b6113fd565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610eaf6113fd565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ee79190612475565b60405180910390a35050565b6060610efe826113f0565b610f1a5760405162461bcd60e51b815260040161067390612980565b6000828152600e602052604090208054610f3390612ccd565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5f90612ccd565b8015610fac5780601f10610f8157610100808354040283529160200191610fac565b820191906000526020600020905b815481529060010190602001808311610f8f57829003601f168201915b50505050509050919050565b610fc9610fc36113fd565b836114be565b610fe55760405162461bcd60e51b815260040161067390612bb3565b610ff184848484611775565b50505050565b6060611002826113f0565b61101e5760405162461bcd60e51b815260040161067390612a81565b6000828152600860205260408120805461103790612ccd565b80601f016020809104026020016040519081016040528092919081815260200182805461106390612ccd565b80156110b05780601f10611085576101008083540402835291602001916110b0565b820191906000526020600020905b81548152906001019060200180831161109357829003601f168201915b5050505050905060006110c1610ac5565b90508051600014156110d5575090506105b5565b8151156111075780826040516020016110ef9291906123f6565b604051602081830303815290604052925050506105b5565b80611111856117a8565b6040516020016111229291906123f6565b60405160208183030381529060405292505050919050565b600d5490565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006111786113fd565b6001600160a01b0316611189610c2f565b6001600160a01b0316146111af5760405162461bcd60e51b815260040161067390612a03565b816111b8610730565b11156111d65760405162461bcd60e51b81526004016106739061253c565b600d8054908390556040517f44ecfc706d63e347851cfd40acfa6cf2e3a41faa3e8b460210c03938e84a91ad90610c219083908690612c50565b6112186113fd565b6001600160a01b0316611229610c2f565b6001600160a01b03161461124f5760405162461bcd60e51b815260040161067390612a03565b6001600160a01b0381166112755760405162461bcd60e51b815260040161067390612664565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6112d96113fd565b6001600160a01b03166112ea610c2f565b6001600160a01b0316146113105760405162461bcd60e51b815260040161067390612a03565b6001600160a01b0382166113365760405162461bcd60e51b815260040161067390612b15565b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050506113775760405162461bcd60e51b815260040161067390612c10565b816001600160a01b03167f60188009b974c2fa66ee3b916d93f64d6534ea2204e0c466f9784ace689e8e49826040516113b09190612c47565b60405180910390a25050565b600061085a83836118db565b600061085a83836118f3565b60006109d084846001600160a01b03851661193d565b3b151590565b60006107fa6002836113bc565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061143682610a9d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006107fa826119ec565b611483826113f0565b61149f5760405162461bcd60e51b8152600401610673906129b7565b6000828152600860209081526040909120825161072b92840190611fa5565b60006114c9826113f0565b6114e55760405162461bcd60e51b815260040161067390612793565b60006114f083610a9d565b9050806001600160a01b0316846001600160a01b0316148061152b5750836001600160a01b03166115208461064c565b6001600160a01b0316145b806109d057506109d08185611140565b826001600160a01b031661154e82610a9d565b6001600160a01b0316146115745760405162461bcd60e51b815260040161067390612a38565b6001600160a01b03821661159a5760405162461bcd60e51b8152600401610673906126e1565b6115a583838361072b565b6115b0600082611401565b6001600160a01b03831660009081526001602052604090206115d290826119f0565b506001600160a01b03821660009081526001602052604090206115f590826113c8565b50611602600282846113d4565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061085a83836119fc565b61166f828260405180602001604052806000815250611a55565b5050565b600061167e82610a9d565b905061168c8160008461072b565b611697600083611401565b600082815260086020526040902080546116b090612ccd565b1590506116ce5760008281526008602052604081206116ce91612029565b6001600160a01b03811660009081526001602052604090206116f090836119f0565b506116fc600283611a88565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008080806117488686611a94565b9097909650945050505050565b60006109d0848484611b04565b805161166f906009906020840190611fa5565b61178084848461153b565b61178c84848484611b7b565b610ff15760405162461bcd60e51b815260040161067390612607565b6060816117cd57506040805180820190915260018152600360fc1b60208201526105b5565b8160005b81156117f757806117e181612d08565b91506117f09050600a83612c76565b91506117d1565b60008167ffffffffffffffff81111561182057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561184a576020820181803683370190505b5090505b84156109d05761185f600183612c8a565b915061186c600a86612d23565b611877906030612c5e565b60f81b81838151811061189a57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506118d4600a86612c76565b945061184e565b60009081526001919091016020526040902054151590565b60006118ff83836118db565b611935575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556107fa565b5060006107fa565b6000828152600184016020526040812054806119a257505060408051808201825283815260208082018481528654600181810189556000898152848120955160029093029095019182559151908201558654868452818801909252929091205561085a565b82856119af600184612c8a565b815481106119cd57634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020160010181905550600091505061085a565b5490565b600061085a8383611c93565b81546000908210611a1f5760405162461bcd60e51b8152600401610673906124fa565b826000018281548110611a4257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b611a5f8383611db0565b611a6c6000848484611b7b565b61072b5760405162461bcd60e51b815260040161067390612607565b600061085a8383611e74565b815460009081908310611ab95760405162461bcd60e51b8152600401610673906128bd565b6000846000018481548110611ade57634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281611b345760405162461bcd60e51b81526004016106739190612480565b5084611b41600183612c8a565b81548110611b5f57634e487b7160e01b600052603260045260246000fd5b9060005260206000209060020201600101549150509392505050565b6000611b8f846001600160a01b03166113ea565b15611c8b57836001600160a01b031663150b7a02611bab6113fd565b8786866040518563ffffffff1660e01b8152600401611bcd9493929190612439565b602060405180830381600087803b158015611be757600080fd5b505af1925050508015611c17575060408051601f3d908101601f19168201909252611c149181019061231e565b60015b611c71573d808015611c45576040519150601f19603f3d011682016040523d82523d6000602084013e611c4a565b606091505b508051611c695760405162461bcd60e51b815260040161067390612607565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506109d0565b5060016109d0565b60008181526001830160205260408120548015611da6576000611cb7600183612c8a565b8554909150600090611ccb90600190612c8a565b90506000866000018281548110611cf257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080876000018481548110611d2357634e487b7160e01b600052603260045260246000fd5b600091825260209091200155611d3a836001612c5e565b60008281526001890160205260409020558654879080611d6a57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506107fa565b60009150506107fa565b6001600160a01b038216611dd65760405162461bcd60e51b8152600401610673906128ff565b611ddf816113f0565b15611dfc5760405162461bcd60e51b8152600401610673906126aa565b611e086000838361072b565b6001600160a01b0382166000908152600160205260409020611e2a90826113c8565b50611e37600282846113d4565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008181526001830160205260408120548015611da6576000611e98600183612c8a565b8554909150600090611eac90600190612c8a565b90506000866000018281548110611ed357634e487b7160e01b600052603260045260246000fd5b9060005260206000209060020201905080876000018481548110611f0757634e487b7160e01b600052603260045260246000fd5b60009182526020909120825460029092020190815560019182015490820155611f31908490612c5e565b815460009081526001890160205260409020558654879080611f6357634e487b7160e01b600052603160045260246000fd5b60008281526020808220600260001990940193840201828155600190810183905592909355888152898201909252604082209190915594506107fa9350505050565b828054611fb190612ccd565b90600052602060002090601f016020900481019282611fd35760008555612019565b82601f10611fec57805160ff1916838001178555612019565b82800160010185558215612019579182015b82811115612019578251825591602001919060010190611ffe565b50612025929150612068565b5090565b50805461203590612ccd565b6000825580601f106120475750612065565b601f0160209004906000526020600020908101906120659190612068565b50565b5b808211156120255760008155600101612069565b600067ffffffffffffffff8084111561209857612098612d63565b604051601f8501601f19908116603f011681019082821181831017156120c0576120c0612d63565b816040528093508581528686860111156120d957600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612103578081fd5b61085a8383356020850161207d565b600060208284031215612123578081fd5b813561085a81612d79565b60008060408385031215612140578081fd5b823561214b81612d79565b946020939093013593505050565b6000806040838503121561216b578182fd5b823561217681612d79565b9150602083013561218681612d79565b809150509250929050565b6000806000606084860312156121a5578081fd5b83356121b081612d79565b925060208401356121c081612d79565b929592945050506040919091013590565b600080600080608085870312156121e6578081fd5b84356121f181612d79565b9350602085013561220181612d79565b925060408501359150606085013567ffffffffffffffff811115612223578182fd5b8501601f81018713612233578182fd5b6122428782356020840161207d565b91505092959194509250565b60008060408385031215612260578182fd5b823561226b81612d79565b915060208301358015158114612186578182fd5b60008060408385031215612140578182fd5b600080600080608085870312156122a6578384fd5b84356122b181612d79565b935060208501359250604085013567ffffffffffffffff808211156122d4578384fd5b6122e0888389016120f3565b935060608701359150808211156122f5578283fd5b50612242878288016120f3565b600060208284031215612313578081fd5b813561085a81612d8e565b60006020828403121561232f578081fd5b815161085a81612d8e565b60006020828403121561234b578081fd5b813567ffffffffffffffff811115612361578182fd5b6109d0848285016120f3565b60006020828403121561237e578081fd5b5035919050565b60008060408385031215612397578182fd5b82359150602083013567ffffffffffffffff8111156123b4578182fd5b6123c0858286016120f3565b9150509250929050565b600081518084526123e2816020860160208601612ca1565b601f01601f19169290920160200192915050565b60008351612408818460208801612ca1565b83519083019061241c818360208801612ca1565b01949350505050565b6001600160a01b0391909116815260200190565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261246b60808301846123ca565b9695505050505050565b901515815260200190565b60006020825261085a60208301846123ca565b6000604082526124a660408301856123ca565b82810360208401526124b881856123ca565b95945050505050565b6000608082526124d460808301876123ca565b82810360208401526124e681876123ca565b604084019590955250506060015292915050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526034908201527f63757272656e7420746f74616c20737570706c7920677265617465722074686160408201527f6e20746865206e6577206d617820737570706c79000000000000000000000000606082015260800190565b60208082526014908201527f737570706c79206c696d69742072656163686564000000000000000000000000604082015260600190565b6020808252600e908201527f746f6f206d75636820776f726473000000000000000000000000000000000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526014908201527f696e73756666696369656e74207061796d656e74000000000000000000000000604082015260600190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252600e908201527f746f6b656e206f766572666c6f77000000000000000000000000000000000000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526011908201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000604082015260600190565b6020808252602c908201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606082015260800190565b60208082526010908201527f6163636573732076696f6c6174696f6e00000000000000000000000000000000604082015260600190565b6020808252600c908201526b7a65726f206164647265737360a01b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252600e908201527f6578697374656e7420746f6b656e000000000000000000000000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b6020808252600e908201527f7769746864726177206572726f72000000000000000000000000000000000000604082015260600190565b90815260200190565b918252602082015260400190565b60008219821115612c7157612c71612d37565b500190565b600082612c8557612c85612d4d565b500490565b600082821015612c9c57612c9c612d37565b500390565b60005b83811015612cbc578181015183820152602001612ca4565b83811115610ff15750506000910152565b600281046001821680612ce157607f821691505b60208210811415612d0257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d1c57612d1c612d37565b5060010190565b600082612d3257612d32612d4d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461206557600080fd5b6001600160e01b03198116811461206557600080fdfe4552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220a4a1fe1c06f36458ba32b25fc8654c2f22a4408193b7283cb039c5252b2c3c9f64736f6c6343000801003300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000015ee2a320689100000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000000a556e6950616e6772616d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a556e6950616e6772616d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000072f302e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001568747470733a2f2f756e6970616e6772616d2e696f0000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c8063715018a611610102578063b2787fc111610095578063e985e9c511610064578063e985e9c514610517578063f103b43314610537578063f2fde38b14610557578063f3fef3a314610577576101d8565b8063b2787fc1146104a2578063b88d4fde146104c2578063c87b56dd146104e2578063d5abeb0114610502576101d8565b8063931688cb116100d1578063931688cb1461043857806395d89b4114610458578063a035b1fe1461046d578063a22cb46514610482576101d8565b8063715018a6146103ce5780638d6cc56d146103e35780638da5cb5b146104035780638f35266f14610418576101d8565b80632f745c591161017a5780634f6ccce7116101495780634f6ccce7146103595780636352211e146103795780636c0360eb1461039957806370a08231146103ae576101d8565b80632f745c59146102e65780632fb102cf1461030657806342842e0e1461031957806342966c6814610339576101d8565b8063095ea7b3116101b6578063095ea7b31461026257806318160ddd1461028457806318e97fd1146102a657806323b872dd146102c6576101d8565b806301ffc9a7146101dd57806306fdde0314610213578063081812fc14610235575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004612302565b610597565b60405161020a9190612475565b60405180910390f35b34801561021f57600080fd5b506102286105ba565b60405161020a9190612480565b34801561024157600080fd5b5061025561025036600461236d565b61064c565b60405161020a9190612425565b34801561026e57600080fd5b5061028261027d36600461227f565b610698565b005b34801561029057600080fd5b50610299610730565b60405161020a9190612c47565b3480156102b257600080fd5b506102286102c1366004612385565b610741565b3480156102d257600080fd5b506102826102e1366004612191565b610800565b3480156102f257600080fd5b5061029961030136600461227f565b610838565b610299610314366004612291565b610861565b34801561032557600080fd5b50610282610334366004612191565b6109d8565b34801561034557600080fd5b5061028261035436600461236d565b6109f3565b34801561036557600080fd5b5061029961037436600461236d565b610a87565b34801561038557600080fd5b5061025561039436600461236d565b610a9d565b3480156103a557600080fd5b50610228610ac5565b3480156103ba57600080fd5b506102996103c9366004612112565b610ad4565b3480156103da57600080fd5b50610282610b1d565b3480156103ef57600080fd5b506102996103fe36600461236d565b610ba6565b34801561040f57600080fd5b50610255610c2f565b34801561042457600080fd5b50610228610433366004612385565b610c3e565b34801561044457600080fd5b5061022861045336600461233a565b610d89565b34801561046457600080fd5b50610228610e10565b34801561047957600080fd5b50610299610e1f565b34801561048e57600080fd5b5061028261049d36600461224e565b610e25565b3480156104ae57600080fd5b506102286104bd36600461236d565b610ef3565b3480156104ce57600080fd5b506102826104dd3660046121d1565b610fb8565b3480156104ee57600080fd5b506102286104fd36600461236d565b610ff7565b34801561050e57600080fd5b5061029961113a565b34801561052357600080fd5b506101fd610532366004612159565b611140565b34801561054357600080fd5b5061029961055236600461236d565b61116e565b34801561056357600080fd5b50610282610572366004612112565b611210565b34801561058357600080fd5b5061028261059236600461212e565b6112d1565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b6060600680546105c990612ccd565b80601f01602080910402602001604051908101604052809291908181526020018280546105f590612ccd565b80156106425780601f1061061757610100808354040283529160200191610642565b820191906000526020600020905b81548152906001019060200180831161062557829003601f168201915b5050505050905090565b6000610657826113f0565b61067c5760405162461bcd60e51b815260040161067390612934565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106a382610a9d565b9050806001600160a01b0316836001600160a01b031614156106d75760405162461bcd60e51b815260040161067390612b3b565b806001600160a01b03166106e96113fd565b6001600160a01b031614806107055750610705816105326113fd565b6107215760405162461bcd60e51b8152600401610673906127df565b61072b8383611401565b505050565b600061073c600261146f565b905090565b606061074c836113f0565b6107685760405162461bcd60e51b815260040161067390612980565b600061077384610a9d565b9050336001600160a01b0382161461079d5760405162461bcd60e51b815260040161067390612ade565b60006107a885610ff7565b90506107b4858561147a565b847f31b096c6ff64a74a686605caa11c1eb1e36d3ab8079b1e117b5074d70d63ac7b826107e088610ff7565b6040516107ee929190612493565b60405180910390a29150505b92915050565b61081161080b6113fd565b826114be565b61082d5760405162461bcd60e51b815260040161067390612bb3565b61072b83838361153b565b6001600160a01b038216600090815260016020526040812061085a9083611649565b9392505050565b6000600b543410156108855760405162461bcd60e51b815260040161067390612725565b61088d61113a565b610895610730565b106108b25760405162461bcd60e51b815260040161067390612599565b6108bb846113f0565b156108d85760405162461bcd60e51b815260040161067390612b7c565b6108e061113a565b84106108fe5760405162461bcd60e51b81526004016106739061283c565b6001600160a01b0385166109245760405162461bcd60e51b815260040161067390612b15565b600f835111156109465760405162461bcd60e51b8152600401610673906125d0565b6109508585611655565b61095a848361147a565b6000848152600e60209081526040909120845161097992860190611fa5565b506001600160a01b03851633857f653c5bb9d3fa44ca4973d3fdbbb4faac86b8baf29eef4860d67fbcf37d0112c5866109b183610ff7565b600b54346040516109c594939291906124c1565b60405180910390a450825b949350505050565b61072b83838360405180602001604052806000815250610fb8565b6109fc816113f0565b610a185760405162461bcd60e51b815260040161067390612980565b6000610a2382610a9d565b9050336001600160a01b03821614610a4d5760405162461bcd60e51b815260040161067390612ade565b610a5682611673565b604051339083907f33631bcd0a4d34a7e2c240ab0753d5adfb7284d8ac89dab6876ec785c0cfa0e690600090a35050565b600080610a95600284611739565b509392505050565b60006107fa82604051806060016040528060298152602001612da56029913960029190611755565b6060600980546105c990612ccd565b60006001600160a01b038216610afc5760405162461bcd60e51b815260040161067390612873565b6001600160a01b03821660009081526001602052604090206107fa9061146f565b610b256113fd565b6001600160a01b0316610b36610c2f565b6001600160a01b031614610b5c5760405162461bcd60e51b815260040161067390612a03565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b6000610bb06113fd565b6001600160a01b0316610bc1610c2f565b6001600160a01b031614610be75760405162461bcd60e51b815260040161067390612a03565b600b8054908390556040517f945c1c4e99aa89f648fbfe3df471b916f719e16d960fcec0737d4d56bd69683890610c219083908690612c50565b60405180910390a192915050565b600a546001600160a01b031690565b6060610c49836113f0565b610c655760405162461bcd60e51b815260040161067390612980565b6000610c7084610a9d565b9050336001600160a01b03821614610c9a5760405162461bcd60e51b815260040161067390612ade565b6000848152600e602052604081208054610cb390612ccd565b80601f0160208091040260200160405190810160405280929190818152602001828054610cdf90612ccd565b8015610d2c5780601f10610d0157610100808354040283529160200191610d2c565b820191906000526020600020905b815481529060010190602001808311610d0f57829003601f168201915b5050506000888152600e602090815260409091208851949550610d56949093509088019150611fa5565b50847f3c26e312e9d4eae64ac40dcf987049efa5fba199327176953ca2db705e9b2bc182866040516107ee929190612493565b6060610d936113fd565b6001600160a01b0316610da4610c2f565b6001600160a01b031614610dca5760405162461bcd60e51b815260040161067390612a03565b6000610dd4610ac5565b9050610ddf83611762565b7f309b29ded109b9e28fb9885757b3e0096eb75c51d23aa4635d68bcd569f6adc18184604051610c21929190612493565b6060600780546105c990612ccd565b600b5490565b610e2d6113fd565b6001600160a01b0316826001600160a01b03161415610e5e5760405162461bcd60e51b81526004016106739061275c565b8060056000610e6b6113fd565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610eaf6113fd565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ee79190612475565b60405180910390a35050565b6060610efe826113f0565b610f1a5760405162461bcd60e51b815260040161067390612980565b6000828152600e602052604090208054610f3390612ccd565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5f90612ccd565b8015610fac5780601f10610f8157610100808354040283529160200191610fac565b820191906000526020600020905b815481529060010190602001808311610f8f57829003601f168201915b50505050509050919050565b610fc9610fc36113fd565b836114be565b610fe55760405162461bcd60e51b815260040161067390612bb3565b610ff184848484611775565b50505050565b6060611002826113f0565b61101e5760405162461bcd60e51b815260040161067390612a81565b6000828152600860205260408120805461103790612ccd565b80601f016020809104026020016040519081016040528092919081815260200182805461106390612ccd565b80156110b05780601f10611085576101008083540402835291602001916110b0565b820191906000526020600020905b81548152906001019060200180831161109357829003601f168201915b5050505050905060006110c1610ac5565b90508051600014156110d5575090506105b5565b8151156111075780826040516020016110ef9291906123f6565b604051602081830303815290604052925050506105b5565b80611111856117a8565b6040516020016111229291906123f6565b60405160208183030381529060405292505050919050565b600d5490565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60006111786113fd565b6001600160a01b0316611189610c2f565b6001600160a01b0316146111af5760405162461bcd60e51b815260040161067390612a03565b816111b8610730565b11156111d65760405162461bcd60e51b81526004016106739061253c565b600d8054908390556040517f44ecfc706d63e347851cfd40acfa6cf2e3a41faa3e8b460210c03938e84a91ad90610c219083908690612c50565b6112186113fd565b6001600160a01b0316611229610c2f565b6001600160a01b03161461124f5760405162461bcd60e51b815260040161067390612a03565b6001600160a01b0381166112755760405162461bcd60e51b815260040161067390612664565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6112d96113fd565b6001600160a01b03166112ea610c2f565b6001600160a01b0316146113105760405162461bcd60e51b815260040161067390612a03565b6001600160a01b0382166113365760405162461bcd60e51b815260040161067390612b15565b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050506113775760405162461bcd60e51b815260040161067390612c10565b816001600160a01b03167f60188009b974c2fa66ee3b916d93f64d6534ea2204e0c466f9784ace689e8e49826040516113b09190612c47565b60405180910390a25050565b600061085a83836118db565b600061085a83836118f3565b60006109d084846001600160a01b03851661193d565b3b151590565b60006107fa6002836113bc565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061143682610a9d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006107fa826119ec565b611483826113f0565b61149f5760405162461bcd60e51b8152600401610673906129b7565b6000828152600860209081526040909120825161072b92840190611fa5565b60006114c9826113f0565b6114e55760405162461bcd60e51b815260040161067390612793565b60006114f083610a9d565b9050806001600160a01b0316846001600160a01b0316148061152b5750836001600160a01b03166115208461064c565b6001600160a01b0316145b806109d057506109d08185611140565b826001600160a01b031661154e82610a9d565b6001600160a01b0316146115745760405162461bcd60e51b815260040161067390612a38565b6001600160a01b03821661159a5760405162461bcd60e51b8152600401610673906126e1565b6115a583838361072b565b6115b0600082611401565b6001600160a01b03831660009081526001602052604090206115d290826119f0565b506001600160a01b03821660009081526001602052604090206115f590826113c8565b50611602600282846113d4565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600061085a83836119fc565b61166f828260405180602001604052806000815250611a55565b5050565b600061167e82610a9d565b905061168c8160008461072b565b611697600083611401565b600082815260086020526040902080546116b090612ccd565b1590506116ce5760008281526008602052604081206116ce91612029565b6001600160a01b03811660009081526001602052604090206116f090836119f0565b506116fc600283611a88565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008080806117488686611a94565b9097909650945050505050565b60006109d0848484611b04565b805161166f906009906020840190611fa5565b61178084848461153b565b61178c84848484611b7b565b610ff15760405162461bcd60e51b815260040161067390612607565b6060816117cd57506040805180820190915260018152600360fc1b60208201526105b5565b8160005b81156117f757806117e181612d08565b91506117f09050600a83612c76565b91506117d1565b60008167ffffffffffffffff81111561182057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561184a576020820181803683370190505b5090505b84156109d05761185f600183612c8a565b915061186c600a86612d23565b611877906030612c5e565b60f81b81838151811061189a57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506118d4600a86612c76565b945061184e565b60009081526001919091016020526040902054151590565b60006118ff83836118db565b611935575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556107fa565b5060006107fa565b6000828152600184016020526040812054806119a257505060408051808201825283815260208082018481528654600181810189556000898152848120955160029093029095019182559151908201558654868452818801909252929091205561085a565b82856119af600184612c8a565b815481106119cd57634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020160010181905550600091505061085a565b5490565b600061085a8383611c93565b81546000908210611a1f5760405162461bcd60e51b8152600401610673906124fa565b826000018281548110611a4257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b611a5f8383611db0565b611a6c6000848484611b7b565b61072b5760405162461bcd60e51b815260040161067390612607565b600061085a8383611e74565b815460009081908310611ab95760405162461bcd60e51b8152600401610673906128bd565b6000846000018481548110611ade57634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281611b345760405162461bcd60e51b81526004016106739190612480565b5084611b41600183612c8a565b81548110611b5f57634e487b7160e01b600052603260045260246000fd5b9060005260206000209060020201600101549150509392505050565b6000611b8f846001600160a01b03166113ea565b15611c8b57836001600160a01b031663150b7a02611bab6113fd565b8786866040518563ffffffff1660e01b8152600401611bcd9493929190612439565b602060405180830381600087803b158015611be757600080fd5b505af1925050508015611c17575060408051601f3d908101601f19168201909252611c149181019061231e565b60015b611c71573d808015611c45576040519150601f19603f3d011682016040523d82523d6000602084013e611c4a565b606091505b508051611c695760405162461bcd60e51b815260040161067390612607565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506109d0565b5060016109d0565b60008181526001830160205260408120548015611da6576000611cb7600183612c8a565b8554909150600090611ccb90600190612c8a565b90506000866000018281548110611cf257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080876000018481548110611d2357634e487b7160e01b600052603260045260246000fd5b600091825260209091200155611d3a836001612c5e565b60008281526001890160205260409020558654879080611d6a57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506107fa565b60009150506107fa565b6001600160a01b038216611dd65760405162461bcd60e51b8152600401610673906128ff565b611ddf816113f0565b15611dfc5760405162461bcd60e51b8152600401610673906126aa565b611e086000838361072b565b6001600160a01b0382166000908152600160205260409020611e2a90826113c8565b50611e37600282846113d4565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008181526001830160205260408120548015611da6576000611e98600183612c8a565b8554909150600090611eac90600190612c8a565b90506000866000018281548110611ed357634e487b7160e01b600052603260045260246000fd5b9060005260206000209060020201905080876000018481548110611f0757634e487b7160e01b600052603260045260246000fd5b60009182526020909120825460029092020190815560019182015490820155611f31908490612c5e565b815460009081526001890160205260409020558654879080611f6357634e487b7160e01b600052603160045260246000fd5b60008281526020808220600260001990940193840201828155600190810183905592909355888152898201909252604082209190915594506107fa9350505050565b828054611fb190612ccd565b90600052602060002090601f016020900481019282611fd35760008555612019565b82601f10611fec57805160ff1916838001178555612019565b82800160010185558215612019579182015b82811115612019578251825591602001919060010190611ffe565b50612025929150612068565b5090565b50805461203590612ccd565b6000825580601f106120475750612065565b601f0160209004906000526020600020908101906120659190612068565b50565b5b808211156120255760008155600101612069565b600067ffffffffffffffff8084111561209857612098612d63565b604051601f8501601f19908116603f011681019082821181831017156120c0576120c0612d63565b816040528093508581528686860111156120d957600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612103578081fd5b61085a8383356020850161207d565b600060208284031215612123578081fd5b813561085a81612d79565b60008060408385031215612140578081fd5b823561214b81612d79565b946020939093013593505050565b6000806040838503121561216b578182fd5b823561217681612d79565b9150602083013561218681612d79565b809150509250929050565b6000806000606084860312156121a5578081fd5b83356121b081612d79565b925060208401356121c081612d79565b929592945050506040919091013590565b600080600080608085870312156121e6578081fd5b84356121f181612d79565b9350602085013561220181612d79565b925060408501359150606085013567ffffffffffffffff811115612223578182fd5b8501601f81018713612233578182fd5b6122428782356020840161207d565b91505092959194509250565b60008060408385031215612260578182fd5b823561226b81612d79565b915060208301358015158114612186578182fd5b60008060408385031215612140578182fd5b600080600080608085870312156122a6578384fd5b84356122b181612d79565b935060208501359250604085013567ffffffffffffffff808211156122d4578384fd5b6122e0888389016120f3565b935060608701359150808211156122f5578283fd5b50612242878288016120f3565b600060208284031215612313578081fd5b813561085a81612d8e565b60006020828403121561232f578081fd5b815161085a81612d8e565b60006020828403121561234b578081fd5b813567ffffffffffffffff811115612361578182fd5b6109d0848285016120f3565b60006020828403121561237e578081fd5b5035919050565b60008060408385031215612397578182fd5b82359150602083013567ffffffffffffffff8111156123b4578182fd5b6123c0858286016120f3565b9150509250929050565b600081518084526123e2816020860160208601612ca1565b601f01601f19169290920160200192915050565b60008351612408818460208801612ca1565b83519083019061241c818360208801612ca1565b01949350505050565b6001600160a01b0391909116815260200190565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261246b60808301846123ca565b9695505050505050565b901515815260200190565b60006020825261085a60208301846123ca565b6000604082526124a660408301856123ca565b82810360208401526124b881856123ca565b95945050505050565b6000608082526124d460808301876123ca565b82810360208401526124e681876123ca565b604084019590955250506060015292915050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526034908201527f63757272656e7420746f74616c20737570706c7920677265617465722074686160408201527f6e20746865206e6577206d617820737570706c79000000000000000000000000606082015260800190565b60208082526014908201527f737570706c79206c696d69742072656163686564000000000000000000000000604082015260600190565b6020808252600e908201527f746f6f206d75636820776f726473000000000000000000000000000000000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526014908201527f696e73756666696369656e74207061796d656e74000000000000000000000000604082015260600190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252600e908201527f746f6b656e206f766572666c6f77000000000000000000000000000000000000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526011908201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000604082015260600190565b6020808252602c908201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606082015260800190565b60208082526010908201527f6163636573732076696f6c6174696f6e00000000000000000000000000000000604082015260600190565b6020808252600c908201526b7a65726f206164647265737360a01b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252600e908201527f6578697374656e7420746f6b656e000000000000000000000000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b6020808252600e908201527f7769746864726177206572726f72000000000000000000000000000000000000604082015260600190565b90815260200190565b918252602082015260400190565b60008219821115612c7157612c71612d37565b500190565b600082612c8557612c85612d4d565b500490565b600082821015612c9c57612c9c612d37565b500390565b60005b83811015612cbc578181015183820152602001612ca4565b83811115610ff15750506000910152565b600281046001821680612ce157607f821691505b60208210811415612d0257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d1c57612d1c612d37565b5060010190565b600082612d3257612d32612d4d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461206557600080fd5b6001600160e01b03198116811461206557600080fdfe4552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220a4a1fe1c06f36458ba32b25fc8654c2f22a4408193b7283cb039c5252b2c3c9f64736f6c63430008010033

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

00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000015ee2a320689100000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000000a556e6950616e6772616d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a556e6950616e6772616d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000072f302e6a736f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001568747470733a2f2f756e6970616e6772616d2e696f0000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): UniPangram
Arg [1] : symbol (string): UP
Arg [2] : genesisWords (string): UniPangram
Arg [3] : genesisURI (string): /0.json
Arg [4] : __price (uint256): 98765432100000000
Arg [5] : __maxSupply (uint256): 10000
Arg [6] : baseURI (string): https://unipangram.io

-----Encoded View---------------
17 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [4] : 000000000000000000000000000000000000000000000000015ee2a320689100
Arg [5] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [6] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [8] : 556e6950616e6772616d00000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [10] : 5550000000000000000000000000000000000000000000000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [12] : 556e6950616e6772616d00000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [14] : 2f302e6a736f6e00000000000000000000000000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [16] : 68747470733a2f2f756e6970616e6772616d2e696f0000000000000000000000


Deployed Bytecode Sourcemap

63843:5109:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47768:150;;;;;;;;;;-1:-1:-1;47768:150:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50775:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;53561:221::-;;;;;;;;;;-1:-1:-1;53561:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53091:404::-;;;;;;;;;;-1:-1:-1;53091:404:0;;;;;:::i;:::-;;:::i;:::-;;52569:211;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;67124:468::-;;;;;;;;;;-1:-1:-1;67124:468:0;;;;;:::i;:::-;;:::i;54451:305::-;;;;;;;;;;-1:-1:-1;54451:305:0;;;;;:::i;:::-;;:::i;52331:162::-;;;;;;;;;;-1:-1:-1;52331:162:0;;;;;:::i;:::-;;:::i;67600:778::-;;;;;;:::i;:::-;;:::i;54827:151::-;;;;;;;;;;-1:-1:-1;54827:151:0;;;;;:::i;:::-;;:::i;68386:296::-;;;;;;;;;;-1:-1:-1;68386:296:0;;;;;:::i;:::-;;:::i;52857:172::-;;;;;;;;;;-1:-1:-1;52857:172:0;;;;;:::i;:::-;;:::i;50531:177::-;;;;;;;;;;-1:-1:-1;50531:177:0;;;;;:::i;:::-;;:::i;52150:97::-;;;;;;;;;;;;;:::i;50248:221::-;;;;;;;;;;-1:-1:-1;50248:221:0;;;;;:::i;:::-;;:::i;46468:148::-;;;;;;;;;;;;;:::i;65456:229::-;;;;;;;;;;-1:-1:-1;65456:229:0;;;;;:::i;:::-;;:::i;45817:87::-;;;;;;;;;;;;;:::i;66640:476::-;;;;;;;;;;-1:-1:-1;66640:476:0;;;;;:::i;:::-;;:::i;66176:270::-;;;;;;;;;;-1:-1:-1;66176:270:0;;;;;:::i;:::-;;:::i;50944:104::-;;;;;;;;;;;;;:::i;65369:79::-;;;;;;;;;;;;;:::i;53854:295::-;;;;;;;;;;-1:-1:-1;53854:295:0;;;;;:::i;:::-;;:::i;66454:178::-;;;;;;;;;;-1:-1:-1;66454:178:0;;;;;:::i;:::-;;:::i;55049:285::-;;;;;;;;;;-1:-1:-1;55049:285:0;;;;;:::i;:::-;;:::i;51119:792::-;;;;;;;;;;-1:-1:-1;51119:792:0;;;;;:::i;:::-;;:::i;65697:87::-;;;;;;;;;;;;;:::i;54220:164::-;;;;;;;;;;-1:-1:-1;54220:164:0;;;;;:::i;:::-;;:::i;65792:376::-;;;;;;;;;;-1:-1:-1;65792:376:0;;;;;:::i;:::-;;:::i;46771:244::-;;;;;;;;;;-1:-1:-1;46771:244:0;;;;;:::i;:::-;;:::i;68690:259::-;;;;;;;;;;-1:-1:-1;68690:259:0;;;;;:::i;:::-;;:::i;47768:150::-;-1:-1:-1;;;;;;47877:33:0;;47853:4;47877:33;;;;;;;;;;;;;47768:150;;;;:::o;50775:100::-;50829:13;50862:5;50855:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50775:100;:::o;53561:221::-;53637:7;53665:16;53673:7;53665;:16::i;:::-;53657:73;;;;-1:-1:-1;;;53657:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;53750:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;53750:24:0;;53561:221::o;53091:404::-;53172:13;53188:23;53203:7;53188:14;:23::i;:::-;53172:39;;53236:5;-1:-1:-1;;;;;53230:11:0;:2;-1:-1:-1;;;;;53230:11:0;;;53222:57;;;;-1:-1:-1;;;53222:57:0;;;;;;;:::i;:::-;53316:5;-1:-1:-1;;;;;53300:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;53300:21:0;;:69;;;;53325:44;53349:5;53356:12;:10;:12::i;53325:44::-;53292:161;;;;-1:-1:-1;;;53292:161:0;;;;;;;:::i;:::-;53466:21;53475:2;53479:7;53466:8;:21::i;:::-;53091:404;;;:::o;52569:211::-;52630:7;52751:21;:12;:19;:21::i;:::-;52744:28;;52569:211;:::o;67124:468::-;67203:13;67237:16;67245:7;67237;:16::i;:::-;67229:46;;;;-1:-1:-1;;;67229:46:0;;;;;;;:::i;:::-;67288:18;67309:16;67317:7;67309;:16::i;:::-;67288:37;-1:-1:-1;67346:10:0;-1:-1:-1;;;;;67346:24:0;;;67338:53;;;;-1:-1:-1;;;67338:53:0;;;;;;;:::i;:::-;67404:21;67428:17;67437:7;67428:8;:17::i;:::-;67404:41;;67458:29;67471:7;67480:6;67458:12;:29::i;:::-;67521:7;67505:52;67530:7;67539:17;67548:7;67539:8;:17::i;:::-;67505:52;;;;;;;:::i;:::-;;;;;;;;67577:7;-1:-1:-1;;67124:468:0;;;;;:::o;54451:305::-;54612:41;54631:12;:10;:12::i;:::-;54645:7;54612:18;:41::i;:::-;54604:103;;;;-1:-1:-1;;;54604:103:0;;;;;;;:::i;:::-;54720:28;54730:4;54736:2;54740:7;54720:9;:28::i;52331:162::-;-1:-1:-1;;;;;52455:20:0;;52428:7;52455:20;;;:13;:20;;;;;:30;;52479:5;52455:23;:30::i;:::-;52448:37;52331:162;-1:-1:-1;;;52331:162:0:o;67600:778::-;67721:7;67762:6;;67749:9;:19;;67741:52;;;;-1:-1:-1;;;67741:52:0;;;;;;;:::i;:::-;67828:11;:9;:11::i;:::-;67812:13;:11;:13::i;:::-;:27;67804:60;;;;-1:-1:-1;;;67804:60:0;;;;;;;:::i;:::-;67883:16;67891:7;67883;:16::i;:::-;:25;67875:52;;;;-1:-1:-1;;;67875:52:0;;;;;;;:::i;:::-;67956:11;:9;:11::i;:::-;67946:7;:21;67938:48;;;;-1:-1:-1;;;67938:48:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;68005:16:0;;67997:41;;;;-1:-1:-1;;;67997:41:0;;;;;;;:::i;:::-;68087:2;68063:12;68057:26;:32;;68049:59;;;;-1:-1:-1;;;68049:59:0;;;;;;;:::i;:::-;68121:22;68131:2;68135:7;68121:9;:22::i;:::-;68156:33;68169:7;68178:10;68156:12;:33::i;:::-;68202:20;;;;:11;:20;;;;;;;;:35;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;68255:88:0;;68276:10;68267:7;68255:88;68292:12;68306:17;68267:7;68306:8;:17::i;:::-;68325:6;;68333:9;68255:88;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;68363:7:0;67600:778;;;;;;;:::o;54827:151::-;54931:39;54948:4;54954:2;54958:7;54931:39;;;;;;;;;;;;:16;:39::i;68386:296::-;68443:16;68451:7;68443;:16::i;:::-;68435:46;;;;-1:-1:-1;;;68435:46:0;;;;;;;:::i;:::-;68494:18;68515:16;68523:7;68515;:16::i;:::-;68494:37;-1:-1:-1;68552:10:0;-1:-1:-1;;;;;68552:24:0;;;68544:53;;;;-1:-1:-1;;;68544:53:0;;;;;;;:::i;:::-;68610:14;68616:7;68610:5;:14::i;:::-;68642:32;;68663:10;;68654:7;;68642:32;;;;;68386:296;;:::o;52857:172::-;52932:7;;52974:22;:12;52990:5;52974:15;:22::i;:::-;-1:-1:-1;52952:44:0;52857:172;-1:-1:-1;;;52857:172:0:o;50531:177::-;50603:7;50630:70;50647:7;50630:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;52150:97::-;52198:13;52231:8;52224:15;;;;;:::i;50248:221::-;50320:7;-1:-1:-1;;;;;50348:19:0;;50340:74;;;;-1:-1:-1;;;50340:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50432:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;46468:148::-;46048:12;:10;:12::i;:::-;-1:-1:-1;;;;;46037:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46037:23:0;;46029:68;;;;-1:-1:-1;;;46029:68:0;;;;;;;:::i;:::-;46559:6:::1;::::0;46538:40:::1;::::0;46575:1:::1;::::0;-1:-1:-1;;;;;46559:6:0::1;::::0;46538:40:::1;::::0;46575:1;;46538:40:::1;46589:6;:19:::0;;-1:-1:-1;;;;;;46589:19:0::1;::::0;;46468:148::o;65456:229::-;65521:7;46048:12;:10;:12::i;:::-;-1:-1:-1;;;;;46037:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46037:23:0;;46029:68;;;;-1:-1:-1;;;46029:68:0;;;;;;;:::i;:::-;65561:6:::1;::::0;;65580:17;;;;65615:33:::1;::::0;::::1;::::0;::::1;::::0;65561:6;;65589:8;;65615:33:::1;:::i;:::-;;;;;;;;65668:9:::0;65456:229;-1:-1:-1;;65456:229:0:o;45817:87::-;45890:6;;-1:-1:-1;;;;;45890:6:0;45817:87;:::o;66640:476::-;66723:13;66757:16;66765:7;66757;:16::i;:::-;66749:46;;;;-1:-1:-1;;;66749:46:0;;;;;;;:::i;:::-;66808:18;66829:16;66837:7;66829;:16::i;:::-;66808:37;-1:-1:-1;66866:10:0;-1:-1:-1;;;;;66866:24:0;;;66858:53;;;;-1:-1:-1;;;66858:53:0;;;;;;;:::i;:::-;66924:23;66950:20;;;:11;:20;;;;;66924:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;66983:20:0;;;;:11;:20;;;;;;;;:31;;66924:46;;-1:-1:-1;66983:31:0;;:20;;-1:-1:-1;66983:31:0;;;;-1:-1:-1;66983:31:0;:::i;:::-;;67050:7;67032:47;67059:9;67070:8;67032:47;;;;;;;:::i;66176:270::-;66251:13;46048:12;:10;:12::i;:::-;-1:-1:-1;;;;;46037:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46037:23:0;;46029:68;;;;-1:-1:-1;;;46029:68:0;;;;;;;:::i;:::-;66277:25:::1;66305:9;:7;:9::i;:::-;66277:37;;66327:23;66339:10;66327:11;:23::i;:::-;66368:39;66383:11;66396:10;66368:39;;;;;;;:::i;50944:104::-:0;51000:13;51033:7;51026:14;;;;;:::i;65369:79::-;65434:6;;65369:79;:::o;53854:295::-;53969:12;:10;:12::i;:::-;-1:-1:-1;;;;;53957:24:0;:8;-1:-1:-1;;;;;53957:24:0;;;53949:62;;;;-1:-1:-1;;;53949:62:0;;;;;;;:::i;:::-;54069:8;54024:18;:32;54043:12;:10;:12::i;:::-;-1:-1:-1;;;;;54024:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;54024:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;54024:53:0;;;;;;;;;;;54108:12;:10;:12::i;:::-;-1:-1:-1;;;;;54093:48:0;;54132:8;54093:48;;;;;;:::i;:::-;;;;;;;;53854:295;;:::o;66454:178::-;66512:13;66546:16;66554:7;66546;:16::i;:::-;66538:46;;;;-1:-1:-1;;;66538:46:0;;;;;;;:::i;:::-;66604:20;;;;:11;:20;;;;;66597:27;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66454:178;;;:::o;55049:285::-;55181:41;55200:12;:10;:12::i;:::-;55214:7;55181:18;:41::i;:::-;55173:103;;;;-1:-1:-1;;;55173:103:0;;;;;;;:::i;:::-;55287:39;55301:4;55307:2;55311:7;55320:5;55287:13;:39::i;:::-;55049:285;;;;:::o;51119:792::-;51192:13;51226:16;51234:7;51226;:16::i;:::-;51218:76;;;;-1:-1:-1;;;51218:76:0;;;;;;;:::i;:::-;51307:23;51333:19;;;:10;:19;;;;;51307:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51363:18;51384:9;:7;:9::i;:::-;51363:30;;51475:4;51469:18;51491:1;51469:23;51465:72;;;-1:-1:-1;51516:9:0;-1:-1:-1;51509:16:0;;51465:72;51641:23;;:27;51637:108;;51716:4;51722:9;51699:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51685:48;;;;;;51637:108;51877:4;51883:18;:7;:16;:18::i;:::-;51860:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51846:57;;;;51119:792;;;:::o;65697:87::-;65766:10;;65697:87;:::o;54220:164::-;-1:-1:-1;;;;;54341:25:0;;;54317:4;54341:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;54220:164::o;65792:376::-;65865:7;46048:12;:10;:12::i;:::-;-1:-1:-1;;;;;46037:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46037:23:0;;46029:68;;;;-1:-1:-1;;;46029:68:0;;;;;;;:::i;:::-;65910:12:::1;65893:13;:11;:13::i;:::-;:29;;65885:94;;;;-1:-1:-1::0;;;65885:94:0::1;;;;;;;:::i;:::-;66016:10;::::0;;66039:25;;;;66082:45:::1;::::0;::::1;::::0;::::1;::::0;66016:10;;66052:12;;66082:45:::1;:::i;46771:244::-:0;46048:12;:10;:12::i;:::-;-1:-1:-1;;;;;46037:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46037:23:0;;46029:68;;;;-1:-1:-1;;;46029:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46860:22:0;::::1;46852:73;;;;-1:-1:-1::0;;;46852:73:0::1;;;;;;;:::i;:::-;46962:6;::::0;46941:38:::1;::::0;-1:-1:-1;;;;;46941:38:0;;::::1;::::0;46962:6:::1;::::0;46941:38:::1;::::0;46962:6:::1;::::0;46941:38:::1;46990:6;:17:::0;;-1:-1:-1;;;;;;46990:17:0::1;-1:-1:-1::0;;;;;46990:17:0;;;::::1;::::0;;;::::1;::::0;;46771:244::o;68690:259::-;46048:12;:10;:12::i;:::-;-1:-1:-1;;;;;46037:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46037:23:0;;46029:68;;;;-1:-1:-1;;;46029:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;68787:23:0;::::1;68779:48;;;;-1:-1:-1::0;;;68779:48:0::1;;;;;;;:::i;:::-;68846:22;::::0;-1:-1:-1;;;;;68846:14:0;::::1;::::0;:22;::::1;;;::::0;68861:6;;68846:22:::1;::::0;;;68861:6;68846:14;:22;::::1;;;;;;68838:49;;;;-1:-1:-1::0;;;68838:49:0::1;;;;;;;:::i;:::-;68923:9;-1:-1:-1::0;;;;;68905:36:0::1;;68934:6;68905:36;;;;;;:::i;:::-;;;;;;;;68690:259:::0;;:::o;26986:151::-;27070:4;27094:35;27104:3;27124;27094:9;:35::i;17895:131::-;17962:4;17986:32;17991:3;18011:5;17986:4;:32::i;26409:185::-;26498:4;26522:64;26527:3;26547;-1:-1:-1;;;;;26561:23:0;;26522:4;:64::i;2383:422::-;2750:20;2789:8;;;2383:422::o;56801:127::-;56866:4;56890:30;:12;56912:7;56890:21;:30::i;604:98::-;684:10;604:98;:::o;62947:183::-;63013:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;63013:29:0;-1:-1:-1;;;;;63013:29:0;;;;;;;;:24;;63067:23;63013:24;63067:14;:23::i;:::-;-1:-1:-1;;;;;63058:46:0;;;;;;;;;;;62947:183;;:::o;27225:123::-;27294:7;27321:19;27329:3;27321:7;:19::i;60986:215::-;61086:16;61094:7;61086;:16::i;:::-;61078:73;;;;-1:-1:-1;;;61078:73:0;;;;;;;:::i;:::-;61162:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;57095:355::-;57188:4;57213:16;57221:7;57213;:16::i;:::-;57205:73;;;;-1:-1:-1;;;57205:73:0;;;;;;;:::i;:::-;57289:13;57305:23;57320:7;57305:14;:23::i;:::-;57289:39;;57358:5;-1:-1:-1;;;;;57347:16:0;:7;-1:-1:-1;;;;;57347:16:0;;:51;;;;57391:7;-1:-1:-1;;;;;57367:31:0;:20;57379:7;57367:11;:20::i;:::-;-1:-1:-1;;;;;57367:31:0;;57347:51;:94;;;;57402:39;57426:5;57433:7;57402:23;:39::i;60231:599::-;60356:4;-1:-1:-1;;;;;60329:31:0;:23;60344:7;60329:14;:23::i;:::-;-1:-1:-1;;;;;60329:31:0;;60321:85;;;;-1:-1:-1;;;60321:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;60443:16:0;;60435:65;;;;-1:-1:-1;;;60435:65:0;;;;;;;:::i;:::-;60513:39;60534:4;60540:2;60544:7;60513:20;:39::i;:::-;60617:29;60634:1;60638:7;60617:8;:29::i;:::-;-1:-1:-1;;;;;60659:19:0;;;;;;:13;:19;;;;;:35;;60686:7;60659:26;:35::i;:::-;-1:-1:-1;;;;;;60705:17:0;;;;;;:13;:17;;;;;:30;;60727:7;60705:21;:30::i;:::-;-1:-1:-1;60748:29:0;:12;60765:7;60774:2;60748:16;:29::i;:::-;;60814:7;60810:2;-1:-1:-1;;;;;60795:27:0;60804:4;-1:-1:-1;;;;;60795:27:0;;;;;;;;;;;60231:599;;;:::o;19115:137::-;19186:7;19221:22;19225:3;19237:5;19221:3;:22::i;57793:110::-;57869:26;57879:2;57883:7;57869:26;;;;;;;;;;;;:9;:26::i;:::-;57793:110;;:::o;59349:545::-;59409:13;59425:23;59440:7;59425:14;:23::i;:::-;59409:39;;59479:48;59500:5;59515:1;59519:7;59479:20;:48::i;:::-;59568:29;59585:1;59589:7;59568:8;:29::i;:::-;59656:19;;;;:10;:19;;;;;59650:33;;;;;:::i;:::-;:38;;-1:-1:-1;59646:97:0;;59712:19;;;;:10;:19;;;;;59705:26;;;:::i;:::-;-1:-1:-1;;;;;59755:20:0;;;;;;:13;:20;;;;;:36;;59783:7;59755:27;:36::i;:::-;-1:-1:-1;59804:28:0;:12;59824:7;59804:19;:28::i;:::-;-1:-1:-1;59850:36:0;;59878:7;;59874:1;;-1:-1:-1;;;;;59850:36:0;;;;;59874:1;;59850:36;59349:545;;:::o;27687:236::-;27767:7;;;;27827:22;27831:3;27843:5;27827:3;:22::i;:::-;27796:53;;;;-1:-1:-1;27687:236:0;-1:-1:-1;;;;;27687:236:0:o;28973:213::-;29080:7;29131:44;29136:3;29156;29162:12;29131:4;:44::i;61431:100::-;61504:19;;;;:8;;:19;;;;;:::i;56216:272::-;56330:28;56340:4;56346:2;56350:7;56330:9;:28::i;:::-;56377:48;56400:4;56406:2;56410:7;56419:5;56377:22;:48::i;:::-;56369:111;;;;-1:-1:-1;;;56369:111:0;;;;;;;:::i;29415:723::-;29471:13;29692:10;29688:53;;-1:-1:-1;29719:10:0;;;;;;;;;;;;-1:-1:-1;;;29719:10:0;;;;;;29688:53;29766:5;29751:12;29807:78;29814:9;;29807:78;;29840:8;;;;:::i;:::-;;-1:-1:-1;29863:10:0;;-1:-1:-1;29871:2:0;29863:10;;:::i;:::-;;;29807:78;;;29895:19;29927:6;29917:17;;;;;;-1:-1:-1;;;29917:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29917:17:0;;29895:39;;29945:154;29952:10;;29945:154;;29979:11;29989:1;29979:11;;:::i;:::-;;-1:-1:-1;30048:10:0;30056:2;30048:5;:10;:::i;:::-;30035:24;;:2;:24;:::i;:::-;30022:39;;30005:6;30012;30005:14;;;;;;-1:-1:-1;;;30005:14:0;;;;;;;;;;;;:56;;;;;;;;;;-1:-1:-1;30076:11:0;30085:2;30076:11;;:::i;:::-;;;29945:154;;23584:125;23655:4;23679:17;;;:12;;;;;:17;;;;;;:22;;;23584:125::o;11265:414::-;11328:4;11350:21;11360:3;11365:5;11350:9;:21::i;:::-;11345:327;;-1:-1:-1;11388:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;11571:18;;11549:19;;;:12;;;:19;;;;;;:40;;;;11604:11;;11345:327;-1:-1:-1;11655:5:0;11648:12;;21084:692;21160:4;21295:17;;;:12;;;:17;;;;;;21329:13;21325:444;;-1:-1:-1;;21414:38:0;;;;;;;;;;;;;;;;;;21396:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;21611:19;;21591:17;;;:12;;;:17;;;;;;;:39;21645:11;;21325:444;21725:5;21689:3;21702:12;21713:1;21702:8;:12;:::i;:::-;21689:26;;;;;;-1:-1:-1;;;21689:26:0;;;;;;;;;;;;;;;;;;;:33;;:41;;;;21752:5;21745:12;;;;;23804:110;23887:19;;23804:110::o;18202:137::-;18272:4;18296:35;18304:3;18324:5;18296:7;:35::i;14153:204::-;14248:18;;14220:7;;14248:26;-1:-1:-1;14240:73:0;;;;-1:-1:-1;;;14240:73:0;;;;;;;:::i;:::-;14331:3;:11;;14343:5;14331:18;;;;;;-1:-1:-1;;;14331:18:0;;;;;;;;;;;;;;;;;14324:25;;14153:204;;;;:::o;58130:250::-;58226:18;58232:2;58236:7;58226:5;:18::i;:::-;58263:54;58294:1;58298:2;58302:7;58311:5;58263:22;:54::i;:::-;58255:117;;;;-1:-1:-1;;;58255:117:0;;;;;;;:::i;26760:142::-;26837:4;26861:33;26869:3;26889;26861:7;:33::i;24269:279::-;24373:19;;24336:7;;;;24373:27;-1:-1:-1;24365:74:0;;;;-1:-1:-1;;;24365:74:0;;;;;;;:::i;:::-;24452:22;24477:3;:12;;24490:5;24477:19;;;;;;-1:-1:-1;;;24477:19:0;;;;;;;;;;;;;;;;;;;24452:44;;24515:5;:10;;;24527:5;:12;;;24507:33;;;;;24269:279;;;;;:::o;25766:319::-;25860:7;25899:17;;;:12;;;:17;;;;;;25950:12;25935:13;25927:36;;;;-1:-1:-1;;;25927:36:0;;;;;;;;:::i;:::-;-1:-1:-1;26017:3:0;26030:12;26041:1;26030:8;:12;:::i;:::-;26017:26;;;;;;-1:-1:-1;;;26017:26:0;;;;;;;;;;;;;;;;;;;:33;;;26010:40;;;25766:319;;;;;:::o;62096:843::-;62217:4;62243:15;:2;-1:-1:-1;;;;;62243:13:0;;:15::i;:::-;62239:693;;;62295:2;-1:-1:-1;;;;;62279:36:0;;62316:12;:10;:12::i;:::-;62330:4;62336:7;62345:5;62279:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62279:72:0;;;;;;;;-1:-1:-1;;62279:72:0;;;;;;;;;;;;:::i;:::-;;;62275:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62525:13:0;;62521:341;;62568:60;;-1:-1:-1;;;62568:60:0;;;;;;;:::i;62521:341::-;62812:6;62806:13;62797:6;62793:2;62789:15;62782:38;62275:602;-1:-1:-1;;;;;;62402:55:0;-1:-1:-1;;;62402:55:0;;-1:-1:-1;62395:62:0;;62239:693;-1:-1:-1;62916:4:0;62909:11;;11855:1544;11921:4;12060:19;;;:12;;;:19;;;;;;12096:15;;12092:1300;;12458:21;12482:14;12495:1;12482:10;:14;:::i;:::-;12531:18;;12458:38;;-1:-1:-1;12511:17:0;;12531:22;;12552:1;;12531:22;:::i;:::-;12511:42;;12798:17;12818:3;:11;;12830:9;12818:22;;;;;;-1:-1:-1;;;12818:22:0;;;;;;;;;;;;;;;;;12798:42;;12964:9;12935:3;:11;;12947:13;12935:26;;;;;;-1:-1:-1;;;12935:26:0;;;;;;;;;;;;;;;;;;:38;13067:17;:13;13083:1;13067:17;:::i;:::-;13041:23;;;;:12;;;:23;;;;;:43;13193:17;;13041:3;;13193:17;;;-1:-1:-1;;;13193:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;13288:3;:12;;:19;13301:5;13288:19;;;;;;;;;;;13281:26;;;13331:4;13324:11;;;;;;;;12092:1300;13375:5;13368:12;;;;;58716:404;-1:-1:-1;;;;;58796:16:0;;58788:61;;;;-1:-1:-1;;;58788:61:0;;;;;;;:::i;:::-;58869:16;58877:7;58869;:16::i;:::-;58868:17;58860:58;;;;-1:-1:-1;;;58860:58:0;;;;;;;:::i;:::-;58931:45;58960:1;58964:2;58968:7;58931:20;:45::i;:::-;-1:-1:-1;;;;;58989:17:0;;;;;;:13;:17;;;;;:30;;59011:7;58989:21;:30::i;:::-;-1:-1:-1;59032:29:0;:12;59049:7;59058:2;59032:16;:29::i;:::-;-1:-1:-1;59079:33:0;;59104:7;;-1:-1:-1;;;;;59079:33:0;;;59096:1;;59079:33;;59096:1;;59079:33;58716:404;;:::o;21951:1549::-;22015:4;22150:17;;;:12;;;:17;;;;;;22184:13;;22180:1313;;22545:21;22569:12;22580:1;22569:8;:12;:::i;:::-;22616:19;;22545:36;;-1:-1:-1;22596:17:0;;22616:23;;22638:1;;22616:23;:::i;:::-;22596:43;;22884:26;22913:3;:12;;22926:9;22913:23;;;;;;-1:-1:-1;;;22913:23:0;;;;;;;;;;;;;;;;;;;22884:52;;23061:9;23031:3;:12;;23044:13;23031:27;;;;;;-1:-1:-1;;;23031:27:0;;;;;;;;;;;;;;;;;:39;;:27;;;;;:39;;;;;;;;;;;;23169:17;;:13;;:17;:::i;:::-;23151:14;;23138:28;;;;:12;;;:28;;;;;:48;23295:18;;23138:3;;23295:18;;;-1:-1:-1;;;23295:18:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;23295:18:0;;;;;;;;;;;;;;;;;;;;;23391:17;;;:12;;;:17;;;;;;23384:24;;;;23295:18;-1:-1:-1;23425:11:0;;-1:-1:-1;;;;23425:11:0;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;14:633:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;232:2;226:9;200:2;286:15;;-1:-1:-1;;282:24:1;;;308:2;278:33;274:42;262:55;;;332:18;;;352:22;;;329:46;326:2;;;378:18;;:::i;:::-;418:10;414:2;407:22;447:6;438:15;;477:6;469;462:22;517:3;508:6;503:3;499:16;496:25;493:2;;;534:1;531;524:12;493:2;584:6;579:3;572:4;564:6;560:17;547:44;639:1;632:4;623:6;615;611:19;607:30;600:41;;;;90:557;;;;;:::o;652:233::-;;750:3;743:4;735:6;731:17;727:27;717:2;;772:5;765;758:20;717:2;798:81;875:3;866:6;853:20;846:4;838:6;834:17;798:81;:::i;890:259::-;;1002:2;990:9;981:7;977:23;973:32;970:2;;;1023:6;1015;1008:22;970:2;1067:9;1054:23;1086:33;1113:5;1086:33;:::i;1154:335::-;;;1291:2;1279:9;1270:7;1266:23;1262:32;1259:2;;;1312:6;1304;1297:22;1259:2;1356:9;1343:23;1375:33;1402:5;1375:33;:::i;:::-;1427:5;1479:2;1464:18;;;;1451:32;;-1:-1:-1;;;1249:240:1:o;1494:402::-;;;1623:2;1611:9;1602:7;1598:23;1594:32;1591:2;;;1644:6;1636;1629:22;1591:2;1688:9;1675:23;1707:33;1734:5;1707:33;:::i;:::-;1759:5;-1:-1:-1;1816:2:1;1801:18;;1788:32;1829:35;1788:32;1829:35;:::i;:::-;1883:7;1873:17;;;1581:315;;;;;:::o;1901:470::-;;;;2047:2;2035:9;2026:7;2022:23;2018:32;2015:2;;;2068:6;2060;2053:22;2015:2;2112:9;2099:23;2131:33;2158:5;2131:33;:::i;:::-;2183:5;-1:-1:-1;2240:2:1;2225:18;;2212:32;2253:35;2212:32;2253:35;:::i;:::-;2005:366;;2307:7;;-1:-1:-1;;;2361:2:1;2346:18;;;;2333:32;;2005:366::o;2376:830::-;;;;;2548:3;2536:9;2527:7;2523:23;2519:33;2516:2;;;2570:6;2562;2555:22;2516:2;2614:9;2601:23;2633:33;2660:5;2633:33;:::i;:::-;2685:5;-1:-1:-1;2742:2:1;2727:18;;2714:32;2755:35;2714:32;2755:35;:::i;:::-;2809:7;-1:-1:-1;2863:2:1;2848:18;;2835:32;;-1:-1:-1;2918:2:1;2903:18;;2890:32;2945:18;2934:30;;2931:2;;;2982:6;2974;2967:22;2931:2;3010:22;;3063:4;3055:13;;3051:27;-1:-1:-1;3041:2:1;;3097:6;3089;3082:22;3041:2;3125:75;3192:7;3187:2;3174:16;3169:2;3165;3161:11;3125:75;:::i;:::-;3115:85;;;2506:700;;;;;;;:::o;3211:438::-;;;3337:2;3325:9;3316:7;3312:23;3308:32;3305:2;;;3358:6;3350;3343:22;3305:2;3402:9;3389:23;3421:33;3448:5;3421:33;:::i;:::-;3473:5;-1:-1:-1;3530:2:1;3515:18;;3502:32;3572:15;;3565:23;3553:36;;3543:2;;3608:6;3600;3593:22;3654:327;;;3783:2;3771:9;3762:7;3758:23;3754:32;3751:2;;;3804:6;3796;3789:22;3986:783;;;;;4169:3;4157:9;4148:7;4144:23;4140:33;4137:2;;;4191:6;4183;4176:22;4137:2;4235:9;4222:23;4254:33;4281:5;4254:33;:::i;:::-;4306:5;-1:-1:-1;4358:2:1;4343:18;;4330:32;;-1:-1:-1;4413:2:1;4398:18;;4385:32;4436:18;4466:14;;;4463:2;;;4498:6;4490;4483:22;4463:2;4526:52;4570:7;4561:6;4550:9;4546:22;4526:52;:::i;:::-;4516:62;;4631:2;4620:9;4616:18;4603:32;4587:48;;4660:2;4650:8;4647:16;4644:2;;;4681:6;4673;4666:22;4644:2;;4709:54;4755:7;4744:8;4733:9;4729:24;4709:54;:::i;4774:257::-;;4885:2;4873:9;4864:7;4860:23;4856:32;4853:2;;;4906:6;4898;4891:22;4853:2;4950:9;4937:23;4969:32;4995:5;4969:32;:::i;5036:261::-;;5158:2;5146:9;5137:7;5133:23;5129:32;5126:2;;;5179:6;5171;5164:22;5126:2;5216:9;5210:16;5235:32;5261:5;5235:32;:::i;5302:344::-;;5424:2;5412:9;5403:7;5399:23;5395:32;5392:2;;;5445:6;5437;5430:22;5392:2;5490:9;5477:23;5523:18;5515:6;5512:30;5509:2;;;5560:6;5552;5545:22;5509:2;5588:52;5632:7;5623:6;5612:9;5608:22;5588:52;:::i;5651:190::-;;5763:2;5751:9;5742:7;5738:23;5734:32;5731:2;;;5784:6;5776;5769:22;5731:2;-1:-1:-1;5812:23:1;;5721:120;-1:-1:-1;5721:120:1:o;5846:412::-;;;5985:2;5973:9;5964:7;5960:23;5956:32;5953:2;;;6006:6;5998;5991:22;5953:2;6047:9;6034:23;6024:33;;6108:2;6097:9;6093:18;6080:32;6135:18;6127:6;6124:30;6121:2;;;6172:6;6164;6157:22;6121:2;6200:52;6244:7;6235:6;6224:9;6220:22;6200:52;:::i;:::-;6190:62;;;5943:315;;;;;:::o;6263:259::-;;6344:5;6338:12;6371:6;6366:3;6359:19;6387:63;6443:6;6436:4;6431:3;6427:14;6420:4;6413:5;6409:16;6387:63;:::i;:::-;6504:2;6483:15;-1:-1:-1;;6479:29:1;6470:39;;;;6511:4;6466:50;;6314:208;-1:-1:-1;;6314:208:1:o;6527:470::-;;6744:6;6738:13;6760:53;6806:6;6801:3;6794:4;6786:6;6782:17;6760:53;:::i;:::-;6876:13;;6835:16;;;;6898:57;6876:13;6835:16;6932:4;6920:17;;6898:57;:::i;:::-;6971:20;;6714:283;-1:-1:-1;;;;6714:283:1:o;7002:226::-;-1:-1:-1;;;;;7166:55:1;;;;7148:74;;7136:2;7121:18;;7103:125::o;7233:513::-;;-1:-1:-1;;;;;7537:2:1;7529:6;7525:15;7514:9;7507:34;7589:2;7581:6;7577:15;7572:2;7561:9;7557:18;7550:43;;7629:6;7624:2;7613:9;7609:18;7602:34;7672:3;7667:2;7656:9;7652:18;7645:31;7693:47;7735:3;7724:9;7720:19;7712:6;7693:47;:::i;:::-;7685:55;7436:310;-1:-1:-1;;;;;;7436:310:1:o;7751:187::-;7916:14;;7909:22;7891:41;;7879:2;7864:18;;7846:92::o;7943:221::-;;8092:2;8081:9;8074:21;8112:46;8154:2;8143:9;8139:18;8131:6;8112:46;:::i;8169:385::-;;8366:2;8355:9;8348:21;8392:46;8434:2;8423:9;8419:18;8411:6;8392:46;:::i;:::-;8486:9;8478:6;8474:22;8469:2;8458:9;8454:18;8447:50;8514:34;8541:6;8533;8514:34;:::i;:::-;8506:42;8338:216;-1:-1:-1;;;;;8338:216:1:o;8559:529::-;;8812:3;8801:9;8794:22;8839:47;8881:3;8870:9;8866:19;8858:6;8839:47;:::i;:::-;8934:9;8926:6;8922:22;8917:2;8906:9;8902:18;8895:50;8962:34;8989:6;8981;8962:34;:::i;:::-;9027:2;9012:18;;9005:34;;;;-1:-1:-1;;9070:2:1;9055:18;9048:34;8954:42;8784:304;-1:-1:-1;;8784:304:1:o;9093:398::-;9295:2;9277:21;;;9334:2;9314:18;;;9307:30;9373:34;9368:2;9353:18;;9346:62;-1:-1:-1;;;9439:2:1;9424:18;;9417:32;9481:3;9466:19;;9267:224::o;9496:416::-;9698:2;9680:21;;;9737:2;9717:18;;;9710:30;9776:34;9771:2;9756:18;;9749:62;9847:22;9842:2;9827:18;;9820:50;9902:3;9887:19;;9670:242::o;9917:344::-;10119:2;10101:21;;;10158:2;10138:18;;;10131:30;10197:22;10192:2;10177:18;;10170:50;10252:2;10237:18;;10091:170::o;10266:338::-;10468:2;10450:21;;;10507:2;10487:18;;;10480:30;10546:16;10541:2;10526:18;;10519:44;10595:2;10580:18;;10440:164::o;10609:414::-;10811:2;10793:21;;;10850:2;10830:18;;;10823:30;10889:34;10884:2;10869:18;;10862:62;10960:20;10955:2;10940:18;;10933:48;11013:3;10998:19;;10783:240::o;11028:402::-;11230:2;11212:21;;;11269:2;11249:18;;;11242:30;11308:34;11303:2;11288:18;;11281:62;-1:-1:-1;;;11374:2:1;11359:18;;11352:36;11420:3;11405:19;;11202:228::o;11435:352::-;11637:2;11619:21;;;11676:2;11656:18;;;11649:30;11715;11710:2;11695:18;;11688:58;11778:2;11763:18;;11609:178::o;11792:400::-;11994:2;11976:21;;;12033:2;12013:18;;;12006:30;12072:34;12067:2;12052:18;;12045:62;-1:-1:-1;;;12138:2:1;12123:18;;12116:34;12182:3;12167:19;;11966:226::o;12197:344::-;12399:2;12381:21;;;12438:2;12418:18;;;12411:30;12477:22;12472:2;12457:18;;12450:50;12532:2;12517:18;;12371:170::o;12546:349::-;12748:2;12730:21;;;12787:2;12767:18;;;12760:30;12826:27;12821:2;12806:18;;12799:55;12886:2;12871:18;;12720:175::o;12900:408::-;13102:2;13084:21;;;13141:2;13121:18;;;13114:30;13180:34;13175:2;13160:18;;13153:62;-1:-1:-1;;;13246:2:1;13231:18;;13224:42;13298:3;13283:19;;13074:234::o;13313:420::-;13515:2;13497:21;;;13554:2;13534:18;;;13527:30;13593:34;13588:2;13573:18;;13566:62;13664:26;13659:2;13644:18;;13637:54;13723:3;13708:19;;13487:246::o;13738:338::-;13940:2;13922:21;;;13979:2;13959:18;;;13952:30;14018:16;14013:2;13998:18;;13991:44;14067:2;14052:18;;13912:164::o;14081:406::-;14283:2;14265:21;;;14322:2;14302:18;;;14295:30;14361:34;14356:2;14341:18;;14334:62;-1:-1:-1;;;14427:2:1;14412:18;;14405:40;14477:3;14462:19;;14255:232::o;14492:398::-;14694:2;14676:21;;;14733:2;14713:18;;;14706:30;14772:34;14767:2;14752:18;;14745:62;-1:-1:-1;;;14838:2:1;14823:18;;14816:32;14880:3;14865:19;;14666:224::o;14895:356::-;15097:2;15079:21;;;15116:18;;;15109:30;15175:34;15170:2;15155:18;;15148:62;15242:2;15227:18;;15069:182::o;15256:408::-;15458:2;15440:21;;;15497:2;15477:18;;;15470:30;15536:34;15531:2;15516:18;;15509:62;-1:-1:-1;;;15602:2:1;15587:18;;15580:42;15654:3;15639:19;;15430:234::o;15669:341::-;15871:2;15853:21;;;15910:2;15890:18;;;15883:30;15949:19;15944:2;15929:18;;15922:47;16001:2;15986:18;;15843:167::o;16015:408::-;16217:2;16199:21;;;16256:2;16236:18;;;16229:30;16295:34;16290:2;16275:18;;16268:62;-1:-1:-1;;;16361:2:1;16346:18;;16339:42;16413:3;16398:19;;16189:234::o;16428:356::-;16630:2;16612:21;;;16649:18;;;16642:30;16708:34;16703:2;16688:18;;16681:62;16775:2;16760:18;;16602:182::o;16789:405::-;16991:2;16973:21;;;17030:2;17010:18;;;17003:30;17069:34;17064:2;17049:18;;17042:62;-1:-1:-1;;;17135:2:1;17120:18;;17113:39;17184:3;17169:19;;16963:231::o;17199:411::-;17401:2;17383:21;;;17440:2;17420:18;;;17413:30;17479:34;17474:2;17459:18;;17452:62;17550:17;17545:2;17530:18;;17523:45;17600:3;17585:19;;17373:237::o;17615:340::-;17817:2;17799:21;;;17856:2;17836:18;;;17829:30;17895:18;17890:2;17875:18;;17868:46;17946:2;17931:18;;17789:166::o;17960:336::-;18162:2;18144:21;;;18201:2;18181:18;;;18174:30;-1:-1:-1;;;18235:2:1;18220:18;;18213:42;18287:2;18272:18;;18134:162::o;18301:397::-;18503:2;18485:21;;;18542:2;18522:18;;;18515:30;18581:34;18576:2;18561:18;;18554:62;-1:-1:-1;;;18647:2:1;18632:18;;18625:31;18688:3;18673:19;;18475:223::o;18703:338::-;18905:2;18887:21;;;18944:2;18924:18;;;18917:30;18983:16;18978:2;18963:18;;18956:44;19032:2;19017:18;;18877:164::o;19046:413::-;19248:2;19230:21;;;19287:2;19267:18;;;19260:30;19326:34;19321:2;19306:18;;19299:62;19397:19;19392:2;19377:18;;19370:47;19449:3;19434:19;;19220:239::o;19464:338::-;19666:2;19648:21;;;19705:2;19685:18;;;19678:30;19744:16;19739:2;19724:18;;19717:44;19793:2;19778:18;;19638:164::o;19807:177::-;19953:25;;;19941:2;19926:18;;19908:76::o;19989:248::-;20163:25;;;20219:2;20204:18;;20197:34;20151:2;20136:18;;20118:119::o;20242:128::-;;20313:1;20309:6;20306:1;20303:13;20300:2;;;20319:18;;:::i;:::-;-1:-1:-1;20355:9:1;;20290:80::o;20375:120::-;;20441:1;20431:2;;20446:18;;:::i;:::-;-1:-1:-1;20480:9:1;;20421:74::o;20500:125::-;;20568:1;20565;20562:8;20559:2;;;20573:18;;:::i;:::-;-1:-1:-1;20610:9:1;;20549:76::o;20630:258::-;20702:1;20712:113;20726:6;20723:1;20720:13;20712:113;;;20802:11;;;20796:18;20783:11;;;20776:39;20748:2;20741:10;20712:113;;;20843:6;20840:1;20837:13;20834:2;;;-1:-1:-1;;20878:1:1;20860:16;;20853:27;20683:205::o;20893:380::-;20978:1;20968:12;;21025:1;21015:12;;;21036:2;;21090:4;21082:6;21078:17;21068:27;;21036:2;21143;21135:6;21132:14;21112:18;21109:38;21106:2;;;21189:10;21184:3;21180:20;21177:1;21170:31;21224:4;21221:1;21214:15;21252:4;21249:1;21242:15;21106:2;;20948:325;;;:::o;21278:135::-;;-1:-1:-1;;21338:17:1;;21335:2;;;21358:18;;:::i;:::-;-1:-1:-1;21405:1:1;21394:13;;21325:88::o;21418:112::-;;21476:1;21466:2;;21481:18;;:::i;:::-;-1:-1:-1;21515:9:1;;21456:74::o;21535:127::-;21596:10;21591:3;21587:20;21584:1;21577:31;21627:4;21624:1;21617:15;21651:4;21648:1;21641:15;21667:127;21728:10;21723:3;21719:20;21716:1;21709:31;21759:4;21756:1;21749:15;21783:4;21780:1;21773:15;21799:127;21860:10;21855:3;21851:20;21848:1;21841:31;21891:4;21888:1;21881:15;21915:4;21912:1;21905:15;21931:156;-1:-1:-1;;;;;22012:5:1;22008:54;22001:5;21998:65;21988:2;;22077:1;22074;22067:12;22092:133;-1:-1:-1;;;;;;22168:32:1;;22158:43;;22148:2;;22215:1;22212;22205:12

Swarm Source

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