ETH Price: $3,395.71 (-0.65%)
Gas: 14 Gwei

Token

BOAXNFT (BOAX)
 

Overview

Max Total Supply

115 BOAX

Holders

24

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BOAX
0x784c48803c52f756da26ae9909ea2538886c4a6e
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:
BoaxNFT

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-01
*/

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


// OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

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

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

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

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

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

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

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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

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

        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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

        assembly {
            result := store
        }

        return result;
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable is IAccessControl {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        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");

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;





/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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


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

pragma solidity ^0.8.0;




/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {_grantRole} to track enumerable memberships
     */
    function _grantRole(bytes32 role, address account) internal virtual override {
        super._grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {_revokeRole} to track enumerable memberships
     */
    function _revokeRole(bytes32 role, address account) internal virtual override {
        super._revokeRole(role, account);
        _roleMembers[role].remove(account);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/BoaxNFT.sol



pragma solidity 0.8.0;




contract BoaxNFT is AccessControlEnumerable, ERC721Enumerable {
  using Strings for uint256;

  bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
  // one or more smart contracts allowed to call the mint function, eg. the Marketplace contract

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

  /**
   * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` to the
   * account that deploys the contract.
   *
   * Token URIs will be autogenerated based on `baseURI` and their token IDs.
   * See {ERC721-tokenURI}.
   */
  constructor(
    string memory name,
    string memory symbol,
    string memory baseTokenURI // e.g. https://gateway.pinata.cloud/ipfs/
  ) ERC721(name, symbol) {
    _baseTokenURI = baseTokenURI;
    address _admin = 0x3324E31376d8Df4c303C8876244631DFD625b5e3;

    _setupRole(DEFAULT_ADMIN_ROLE, _admin);
    _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
  }

  /**
   * Optional function to set the base URI
   */
  function setBaseURI(string memory baseURI_) external {
    require(
      hasRole(DEFAULT_ADMIN_ROLE, msg.sender),
      "BoaxNFT: must have DEFAULT_ADMIN_ROLE to set base URI"
    );
    _baseTokenURI = baseURI_;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(_exists(tokenId), "BoaxNFT: 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));
    }

    return super.tokenURI(tokenId);
  }

  /**
   * @dev Creates a new token for `msg.sender`. Its token ID will be automatically
   * assigned (and available on the emitted {IERC721-Transfer} event), and the token
   * URI autogenerated based on the base URI passed at construction.
   * See {ERC721-_mint}.
   *
   * Requirements:
   *
   * - the caller must have the `MINTER_ROLE` role.
   */
  function mint(string memory _tokenURI, address _to) external {
    require(
      hasRole(MINTER_ROLE, msg.sender),
      "NinfaNFT: Must have MINTER_ROLE to mint"
    ); // MINTER_ROLE is assigned to contracts such as the marketplace, NOT artists in this case.

    _mint(_to, totalSupply()); // using total supply as counter, since tokens cannot be burned we don't need a separate counter
    _setTokenURI(totalSupply() - 1, _tokenURI); // set URI after minting otherwise it throws because the token doesn't exist yet; the token id just minted will be equal to totalSupply() - 1.
  }

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

  function isTokenExists(uint256 tokenId) external view returns (bool) {
    return _exists(tokenId);
  }

  /**
   * @dev overrides the base function which is empty by default
   */
  function _baseURI() internal view virtual override returns (string memory) {
    return _baseTokenURI;
  }

  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 tokenId
  ) internal virtual override(ERC721Enumerable) {
    super._beforeTokenTransfer(from, to, tokenId);
  }

  /**
   * @dev See {IERC165-supportsInterface}.
   */
  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(AccessControlEnumerable, ERC721Enumerable)
    returns (bool)
  {
    return super.supportsInterface(interfaceId);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isTokenExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","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":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162004c8f38038062004c8f83398181016040528101906200003791906200048b565b828281600290805190602001906200005192919062000369565b5080600390805190602001906200006a92919062000369565b50505080600c90805190602001906200008592919062000369565b506000733324e31376d8df4c303c8876244631dfd625b5e39050620000b46000801b82620000d360201b60201c565b620000c96000801b33620000d360201b60201c565b505050506200065d565b620000e58282620000e960201b60201c565b5050565b6200010082826200013160201b6200113a1760201c565b6200012c81600160008581526020019081526020016000206200022260201b6200121a1790919060201c565b505050565b6200014382826200025a60201b60201c565b6200021e57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001c3620002c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600062000252836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620002cc60201b60201c565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b6000620002e083836200034660201b60201c565b6200033b57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000340565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b8280546200037790620005c9565b90600052602060002090601f0160209004810192826200039b5760008555620003e7565b82601f10620003b657805160ff1916838001178555620003e7565b82800160010185558215620003e7579182015b82811115620003e6578251825591602001919060010190620003c9565b5b509050620003f69190620003fa565b5090565b5b8082111562000415576000816000905550600101620003fb565b5090565b6000620004306200042a8462000560565b6200052c565b9050828152602081018484840111156200044957600080fd5b6200045684828562000593565b509392505050565b600082601f8301126200047057600080fd5b81516200048284826020860162000419565b91505092915050565b600080600060608486031215620004a157600080fd5b600084015167ffffffffffffffff811115620004bc57600080fd5b620004ca868287016200045e565b935050602084015167ffffffffffffffff811115620004e857600080fd5b620004f6868287016200045e565b925050604084015167ffffffffffffffff8111156200051457600080fd5b62000522868287016200045e565b9150509250925092565b6000604051905081810181811067ffffffffffffffff821117156200055657620005556200062e565b5b8060405250919050565b600067ffffffffffffffff8211156200057e576200057d6200062e565b5b601f19601f8301169050602081019050919050565b60005b83811015620005b357808201518184015260208101905062000596565b83811115620005c3576000848401525b50505050565b60006002820490506001821680620005e257607f821691505b60208210811415620005f957620005f8620005ff565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b614622806200066d6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806355f804b3116100f9578063a22cb46511610097578063ca15c87311610071578063ca15c8731461054d578063d53913931461057d578063d547741f1461059b578063e985e9c5146105b7576101c4565b8063a22cb465146104e5578063b88d4fde14610501578063c87b56dd1461051d576101c4565b80639010d07c116100d35780639010d07c1461044957806391d148541461047957806395d89b41146104a9578063a217fddf146104c7576101c4565b806355f804b3146103cd5780636352211e146103e957806370a0823114610419576101c4565b806323b872dd116101665780632f745c59116101405780632f745c591461033557806336568abe1461036557806342842e0e146103815780634f6ccce71461039d576101c4565b806323b872dd146102cd578063248a9ca3146102e95780632f2ff15d14610319576101c4565b8063095ea7b3116101a2578063095ea7b31461024757806318160ddd146102635780631c351a9d146102815780631f7017041461029d576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de919061329a565b6105e7565b6040516101f09190613dfa565b60405180910390f35b6102016105f9565b60405161020e9190613e30565b60405180910390f35b610231600480360381019061022c9190613381565b61068b565b60405161023e9190613d93565b60405180910390f35b610261600480360381019061025c91906131bd565b610710565b005b61026b610828565b6040516102789190614112565b60405180910390f35b61029b6004803603810190610296919061332d565b610835565b005b6102b760048036038101906102b29190613381565b6108d0565b6040516102c49190613dfa565b60405180910390f35b6102e760048036038101906102e291906130b7565b6108e2565b005b61030360048036038101906102fe91906131f9565b610942565b6040516103109190613e15565b60405180910390f35b610333600480360381019061032e9190613222565b610961565b005b61034f600480360381019061034a91906131bd565b61098a565b60405161035c9190614112565b60405180910390f35b61037f600480360381019061037a9190613222565b610a2f565b005b61039b600480360381019061039691906130b7565b610ab2565b005b6103b760048036038101906103b29190613381565b610ad2565b6040516103c49190614112565b60405180910390f35b6103e760048036038101906103e291906132ec565b610b69565b005b61040360048036038101906103fe9190613381565b610bcf565b6040516104109190613d93565b60405180910390f35b610433600480360381019061042e9190613052565b610c81565b6040516104409190614112565b60405180910390f35b610463600480360381019061045e919061325e565b610d39565b6040516104709190613d93565b60405180910390f35b610493600480360381019061048e9190613222565b610d68565b6040516104a09190613dfa565b60405180910390f35b6104b1610dd2565b6040516104be9190613e30565b60405180910390f35b6104cf610e64565b6040516104dc9190613e15565b60405180910390f35b6104ff60048036038101906104fa9190613181565b610e6b565b005b61051b60048036038101906105169190613106565b610e81565b005b61053760048036038101906105329190613381565b610ee3565b6040516105449190613e30565b60405180910390f35b610567600480360381019061056291906131f9565b611035565b6040516105749190614112565b60405180910390f35b610585611059565b6040516105929190613e15565b60405180910390f35b6105b560048036038101906105b09190613222565b61107d565b005b6105d160048036038101906105cc919061307b565b6110a6565b6040516105de9190613dfa565b60405180910390f35b60006105f28261124a565b9050919050565b60606002805461060890614400565b80601f016020809104026020016040519081016040528092919081815260200182805461063490614400565b80156106815780601f1061065657610100808354040283529160200191610681565b820191906000526020600020905b81548152906001019060200180831161066457829003601f168201915b5050505050905090565b6000610696826112c4565b6106d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cc90614012565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061071b82610bcf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561078c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078390614072565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107ab611330565b73ffffffffffffffffffffffffffffffffffffffff1614806107da57506107d9816107d4611330565b6110a6565b5b610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081090613f92565b60405180910390fd5b6108238383611338565b505050565b6000600a80549050905090565b61085f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610d68565b61089e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089590613e52565b60405180910390fd5b6108af816108aa610828565b6113f1565b6108cc60016108bc610828565b6108c691906142e2565b836115bf565b5050565b60006108db826112c4565b9050919050565b6108f36108ed611330565b82611633565b610932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092990614092565b60405180910390fd5b61093d838383611711565b505050565b6000806000838152602001908152602001600020600101549050919050565b61096a82610942565b61097b81610976611330565b61196d565b6109858383611a0a565b505050565b600061099583610c81565b82106109d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cd90613eb2565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a37611330565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b906140f2565b60405180910390fd5b610aae8282611a3e565b5050565b610acd83838360405180602001604052806000815250610e81565b505050565b6000610adc610828565b8210610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b14906140d2565b60405180910390fd5b600a8281548110610b57577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610b766000801b33610d68565b610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90613e92565b60405180910390fd5b80600c9080519060200190610bcb929190612e61565b5050565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90613fd2565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990613fb2565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610d608260016000868152602001908152602001600020611a7290919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060038054610de190614400565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0d90614400565b8015610e5a5780601f10610e2f57610100808354040283529160200191610e5a565b820191906000526020600020905b815481529060010190602001808311610e3d57829003601f168201915b5050505050905090565b6000801b81565b610e7d610e76611330565b8383611a8c565b5050565b610e92610e8c611330565b83611633565b610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890614092565b60405180910390fd5b610edd84848484611bf9565b50505050565b6060610eee826112c4565b610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490613ef2565b60405180910390fd5b6000600d60008481526020019081526020016000208054610f4d90614400565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7990614400565b8015610fc65780601f10610f9b57610100808354040283529160200191610fc6565b820191906000526020600020905b815481529060010190602001808311610fa957829003601f168201915b505050505090506000610fd7611c55565b9050600081511415610fed578192505050611030565b60008251111561102257808260405160200161100a929190613d35565b60405160208183030381529060405292505050611030565b61102b84611ce7565b925050505b919050565b600061105260016000848152602001908152602001600020611d8e565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61108682610942565b61109781611092611330565b61196d565b6110a18383611a3e565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111448282610d68565b61121657600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506111bb611330565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611242836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611da3565b905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112bd57506112bc82611e13565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113ab83610bcf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145890613ff2565b60405180910390fd5b61146a816112c4565b156114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a190613f12565b60405180910390fd5b6114b660008383611ef5565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115069190614201565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6115c8826112c4565b611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe906140b2565b60405180910390fd5b80600d6000848152602001908152602001600020908051906020019061162e929190612e61565b505050565b600061163e826112c4565b61167d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167490613f72565b60405180910390fd5b600061168883610bcf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116f757508373ffffffffffffffffffffffffffffffffffffffff166116df8461068b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611708575061170781856110a6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661173182610bcf565b73ffffffffffffffffffffffffffffffffffffffff1614611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e90614032565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ee90613f32565b60405180910390fd5b611802838383611ef5565b61180d600082611338565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461185d91906142e2565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118b49190614201565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6119778282610d68565b611a065761199c8173ffffffffffffffffffffffffffffffffffffffff166014611f05565b6119aa8360001c6020611f05565b6040516020016119bb929190613d59565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fd9190613e30565b60405180910390fd5b5050565b611a14828261113a565b611a39816001600085815260200190815260200160002061121a90919063ffffffff16565b505050565b611a4882826121ff565b611a6d81600160008581526020019081526020016000206122e090919063ffffffff16565b505050565b6000611a818360000183612310565b60001c905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af290613f52565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bec9190613dfa565b60405180910390a3505050565b611c04848484611711565b611c1084848484612361565b611c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4690613ed2565b60405180910390fd5b50505050565b6060600c8054611c6490614400565b80601f0160208091040260200160405190810160405280929190818152602001828054611c9090614400565b8015611cdd5780601f10611cb257610100808354040283529160200191611cdd565b820191906000526020600020905b815481529060010190602001808311611cc057829003601f168201915b5050505050905090565b6060611cf2826112c4565b611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2890614052565b60405180910390fd5b6000611d3b611c55565b90506000815111611d5b5760405180602001604052806000815250611d86565b80611d65846124f8565b604051602001611d76929190613d35565b6040516020818303038152906040525b915050919050565b6000611d9c826000016126a5565b9050919050565b6000611daf83836126b6565b611e08578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611e0d565b600090505b92915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ede57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611eee5750611eed826126d9565b5b9050919050565b611f00838383612753565b505050565b606060006002836002611f189190614288565b611f229190614201565b67ffffffffffffffff811115611f61577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f935781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611ff1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061207b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026120bb9190614288565b6120c59190614201565b90505b60018111156121b1577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061212d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b82828151811061216a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806121aa906143d6565b90506120c8565b50600084146121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ec90613e72565b60405180910390fd5b8091505092915050565b6122098282610d68565b156122dc57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612281611330565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000612308836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612867565b905092915050565b600082600001828154811061234e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b60006123828473ffffffffffffffffffffffffffffffffffffffff166129ed565b156124eb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123ab611330565b8786866040518563ffffffff1660e01b81526004016123cd9493929190613dae565b602060405180830381600087803b1580156123e757600080fd5b505af192505050801561241857506040513d601f19601f8201168201806040525081019061241591906132c3565b60015b61249b573d8060008114612448576040519150601f19603f3d011682016040523d82523d6000602084013e61244d565b606091505b50600081511415612493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248a90613ed2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124f0565b600190505b949350505050565b60606000821415612540576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126a0565b600082905060005b6000821461257257808061255b90614432565b915050600a8261256b9190614257565b9150612548565b60008167ffffffffffffffff8111156125b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125e65781602001600182028036833780820191505090505b5090505b60008514612699576001826125ff91906142e2565b9150600a8561260e919061447b565b603061261a9190614201565b60f81b818381518110612656577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126929190614257565b94506125ea565b8093505050505b919050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061274c575061274b82612a00565b5b9050919050565b61275e838383612a7a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127a15761279c81612a7f565b6127e0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127df576127de8382612ac8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128235761281e81612c35565b612862565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612861576128608282612d78565b5b5b505050565b600080836001016000848152602001908152602001600020549050600081146129e157600060018261289991906142e2565b90506000600186600001805490506128b191906142e2565b905081811461296c5760008660000182815481106128f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612942577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806129a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506129e7565b60009150505b92915050565b600080823b905060008111915050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a735750612a7282612df7565b5b9050919050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ad584610c81565b612adf91906142e2565b9050600060096000848152602001908152602001600020549050818114612bc4576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a80549050612c4991906142e2565b90506000600b60008481526020019081526020016000205490506000600a8381548110612c9f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600a8381548110612ce7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a805480612d5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612d8383610c81565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b828054612e6d90614400565b90600052602060002090601f016020900481019282612e8f5760008555612ed6565b82601f10612ea857805160ff1916838001178555612ed6565b82800160010185558215612ed6579182015b82811115612ed5578251825591602001919060010190612eba565b5b509050612ee39190612ee7565b5090565b5b80821115612f00576000816000905550600101612ee8565b5090565b6000612f17612f128461415e565b61412d565b905082815260208101848484011115612f2f57600080fd5b612f3a848285614394565b509392505050565b6000612f55612f508461418e565b61412d565b905082815260208101848484011115612f6d57600080fd5b612f78848285614394565b509392505050565b600081359050612f8f81614579565b92915050565b600081359050612fa481614590565b92915050565b600081359050612fb9816145a7565b92915050565b600081359050612fce816145be565b92915050565b600081519050612fe3816145be565b92915050565b600082601f830112612ffa57600080fd5b813561300a848260208601612f04565b91505092915050565b600082601f83011261302457600080fd5b8135613034848260208601612f42565b91505092915050565b60008135905061304c816145d5565b92915050565b60006020828403121561306457600080fd5b600061307284828501612f80565b91505092915050565b6000806040838503121561308e57600080fd5b600061309c85828601612f80565b92505060206130ad85828601612f80565b9150509250929050565b6000806000606084860312156130cc57600080fd5b60006130da86828701612f80565b93505060206130eb86828701612f80565b92505060406130fc8682870161303d565b9150509250925092565b6000806000806080858703121561311c57600080fd5b600061312a87828801612f80565b945050602061313b87828801612f80565b935050604061314c8782880161303d565b925050606085013567ffffffffffffffff81111561316957600080fd5b61317587828801612fe9565b91505092959194509250565b6000806040838503121561319457600080fd5b60006131a285828601612f80565b92505060206131b385828601612f95565b9150509250929050565b600080604083850312156131d057600080fd5b60006131de85828601612f80565b92505060206131ef8582860161303d565b9150509250929050565b60006020828403121561320b57600080fd5b600061321984828501612faa565b91505092915050565b6000806040838503121561323557600080fd5b600061324385828601612faa565b925050602061325485828601612f80565b9150509250929050565b6000806040838503121561327157600080fd5b600061327f85828601612faa565b92505060206132908582860161303d565b9150509250929050565b6000602082840312156132ac57600080fd5b60006132ba84828501612fbf565b91505092915050565b6000602082840312156132d557600080fd5b60006132e384828501612fd4565b91505092915050565b6000602082840312156132fe57600080fd5b600082013567ffffffffffffffff81111561331857600080fd5b61332484828501613013565b91505092915050565b6000806040838503121561334057600080fd5b600083013567ffffffffffffffff81111561335a57600080fd5b61336685828601613013565b925050602061337785828601612f80565b9150509250929050565b60006020828403121561339357600080fd5b60006133a18482850161303d565b91505092915050565b6133b381614316565b82525050565b6133c281614328565b82525050565b6133d181614334565b82525050565b60006133e2826141be565b6133ec81856141d4565b93506133fc8185602086016143a3565b61340581614568565b840191505092915050565b600061341b826141c9565b61342581856141e5565b93506134358185602086016143a3565b61343e81614568565b840191505092915050565b6000613454826141c9565b61345e81856141f6565b935061346e8185602086016143a3565b80840191505092915050565b60006134876027836141e5565b91507f4e696e66614e46543a204d7573742068617665204d494e5445525f524f4c452060008301527f746f206d696e74000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134ed6020836141e5565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b600061352d6035836141e5565b91507f426f61784e46543a206d75737420686176652044454641554c545f41444d494e60008301527f5f524f4c4520746f2073657420626173652055524900000000000000000000006020830152604082019050919050565b6000613593602b836141e5565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006135f96032836141e5565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061365f6028836141e5565b91507f426f61784e46543a2055524920717565727920666f72206e6f6e65786973746560008301527f6e7420746f6b656e0000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136c5601c836141e5565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006137056024836141e5565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061376b6019836141e5565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006137ab602c836141e5565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006138116038836141e5565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613877602a836141e5565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006138dd6029836141e5565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006139436020836141e5565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613983602c836141e5565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139e96029836141e5565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a4f602f836141e5565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613ab56021836141e5565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b1b6031836141e5565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613b816025836141e5565b91507f426f61784e46543a2055524920736574206f66206e6f6e6578697374656e742060008301527f746f6b656e0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613be7602c836141e5565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613c4d6017836141f6565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b6000613c8d6011836141f6565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b6000613ccd602f836141e5565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b613d2f8161438a565b82525050565b6000613d418285613449565b9150613d4d8284613449565b91508190509392505050565b6000613d6482613c40565b9150613d708285613449565b9150613d7b82613c80565b9150613d878284613449565b91508190509392505050565b6000602082019050613da860008301846133aa565b92915050565b6000608082019050613dc360008301876133aa565b613dd060208301866133aa565b613ddd6040830185613d26565b8181036060830152613def81846133d7565b905095945050505050565b6000602082019050613e0f60008301846133b9565b92915050565b6000602082019050613e2a60008301846133c8565b92915050565b60006020820190508181036000830152613e4a8184613410565b905092915050565b60006020820190508181036000830152613e6b8161347a565b9050919050565b60006020820190508181036000830152613e8b816134e0565b9050919050565b60006020820190508181036000830152613eab81613520565b9050919050565b60006020820190508181036000830152613ecb81613586565b9050919050565b60006020820190508181036000830152613eeb816135ec565b9050919050565b60006020820190508181036000830152613f0b81613652565b9050919050565b60006020820190508181036000830152613f2b816136b8565b9050919050565b60006020820190508181036000830152613f4b816136f8565b9050919050565b60006020820190508181036000830152613f6b8161375e565b9050919050565b60006020820190508181036000830152613f8b8161379e565b9050919050565b60006020820190508181036000830152613fab81613804565b9050919050565b60006020820190508181036000830152613fcb8161386a565b9050919050565b60006020820190508181036000830152613feb816138d0565b9050919050565b6000602082019050818103600083015261400b81613936565b9050919050565b6000602082019050818103600083015261402b81613976565b9050919050565b6000602082019050818103600083015261404b816139dc565b9050919050565b6000602082019050818103600083015261406b81613a42565b9050919050565b6000602082019050818103600083015261408b81613aa8565b9050919050565b600060208201905081810360008301526140ab81613b0e565b9050919050565b600060208201905081810360008301526140cb81613b74565b9050919050565b600060208201905081810360008301526140eb81613bda565b9050919050565b6000602082019050818103600083015261410b81613cc0565b9050919050565b60006020820190506141276000830184613d26565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561415457614153614539565b5b8060405250919050565b600067ffffffffffffffff82111561417957614178614539565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156141a9576141a8614539565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061420c8261438a565b91506142178361438a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561424c5761424b6144ac565b5b828201905092915050565b60006142628261438a565b915061426d8361438a565b92508261427d5761427c6144db565b5b828204905092915050565b60006142938261438a565b915061429e8361438a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142d7576142d66144ac565b5b828202905092915050565b60006142ed8261438a565b91506142f88361438a565b92508282101561430b5761430a6144ac565b5b828203905092915050565b60006143218261436a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143c15780820151818401526020810190506143a6565b838111156143d0576000848401525b50505050565b60006143e18261438a565b915060008214156143f5576143f46144ac565b5b600182039050919050565b6000600282049050600182168061441857607f821691505b6020821081141561442c5761442b61450a565b5b50919050565b600061443d8261438a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144705761446f6144ac565b5b600182019050919050565b60006144868261438a565b91506144918361438a565b9250826144a1576144a06144db565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61458281614316565b811461458d57600080fd5b50565b61459981614328565b81146145a457600080fd5b50565b6145b081614334565b81146145bb57600080fd5b50565b6145c78161433e565b81146145d257600080fd5b50565b6145de8161438a565b81146145e957600080fd5b5056fea26469706673582212208539ba8324ec5cdbcbef789062aff113006c25b2e537d8532871f9b07903f48f64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000007424f41584e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004424f415800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806355f804b3116100f9578063a22cb46511610097578063ca15c87311610071578063ca15c8731461054d578063d53913931461057d578063d547741f1461059b578063e985e9c5146105b7576101c4565b8063a22cb465146104e5578063b88d4fde14610501578063c87b56dd1461051d576101c4565b80639010d07c116100d35780639010d07c1461044957806391d148541461047957806395d89b41146104a9578063a217fddf146104c7576101c4565b806355f804b3146103cd5780636352211e146103e957806370a0823114610419576101c4565b806323b872dd116101665780632f745c59116101405780632f745c591461033557806336568abe1461036557806342842e0e146103815780634f6ccce71461039d576101c4565b806323b872dd146102cd578063248a9ca3146102e95780632f2ff15d14610319576101c4565b8063095ea7b3116101a2578063095ea7b31461024757806318160ddd146102635780631c351a9d146102815780631f7017041461029d576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de919061329a565b6105e7565b6040516101f09190613dfa565b60405180910390f35b6102016105f9565b60405161020e9190613e30565b60405180910390f35b610231600480360381019061022c9190613381565b61068b565b60405161023e9190613d93565b60405180910390f35b610261600480360381019061025c91906131bd565b610710565b005b61026b610828565b6040516102789190614112565b60405180910390f35b61029b6004803603810190610296919061332d565b610835565b005b6102b760048036038101906102b29190613381565b6108d0565b6040516102c49190613dfa565b60405180910390f35b6102e760048036038101906102e291906130b7565b6108e2565b005b61030360048036038101906102fe91906131f9565b610942565b6040516103109190613e15565b60405180910390f35b610333600480360381019061032e9190613222565b610961565b005b61034f600480360381019061034a91906131bd565b61098a565b60405161035c9190614112565b60405180910390f35b61037f600480360381019061037a9190613222565b610a2f565b005b61039b600480360381019061039691906130b7565b610ab2565b005b6103b760048036038101906103b29190613381565b610ad2565b6040516103c49190614112565b60405180910390f35b6103e760048036038101906103e291906132ec565b610b69565b005b61040360048036038101906103fe9190613381565b610bcf565b6040516104109190613d93565b60405180910390f35b610433600480360381019061042e9190613052565b610c81565b6040516104409190614112565b60405180910390f35b610463600480360381019061045e919061325e565b610d39565b6040516104709190613d93565b60405180910390f35b610493600480360381019061048e9190613222565b610d68565b6040516104a09190613dfa565b60405180910390f35b6104b1610dd2565b6040516104be9190613e30565b60405180910390f35b6104cf610e64565b6040516104dc9190613e15565b60405180910390f35b6104ff60048036038101906104fa9190613181565b610e6b565b005b61051b60048036038101906105169190613106565b610e81565b005b61053760048036038101906105329190613381565b610ee3565b6040516105449190613e30565b60405180910390f35b610567600480360381019061056291906131f9565b611035565b6040516105749190614112565b60405180910390f35b610585611059565b6040516105929190613e15565b60405180910390f35b6105b560048036038101906105b09190613222565b61107d565b005b6105d160048036038101906105cc919061307b565b6110a6565b6040516105de9190613dfa565b60405180910390f35b60006105f28261124a565b9050919050565b60606002805461060890614400565b80601f016020809104026020016040519081016040528092919081815260200182805461063490614400565b80156106815780601f1061065657610100808354040283529160200191610681565b820191906000526020600020905b81548152906001019060200180831161066457829003601f168201915b5050505050905090565b6000610696826112c4565b6106d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cc90614012565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061071b82610bcf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561078c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078390614072565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107ab611330565b73ffffffffffffffffffffffffffffffffffffffff1614806107da57506107d9816107d4611330565b6110a6565b5b610819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081090613f92565b60405180910390fd5b6108238383611338565b505050565b6000600a80549050905090565b61085f7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610d68565b61089e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089590613e52565b60405180910390fd5b6108af816108aa610828565b6113f1565b6108cc60016108bc610828565b6108c691906142e2565b836115bf565b5050565b60006108db826112c4565b9050919050565b6108f36108ed611330565b82611633565b610932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092990614092565b60405180910390fd5b61093d838383611711565b505050565b6000806000838152602001908152602001600020600101549050919050565b61096a82610942565b61097b81610976611330565b61196d565b6109858383611a0a565b505050565b600061099583610c81565b82106109d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cd90613eb2565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a37611330565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b906140f2565b60405180910390fd5b610aae8282611a3e565b5050565b610acd83838360405180602001604052806000815250610e81565b505050565b6000610adc610828565b8210610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b14906140d2565b60405180910390fd5b600a8281548110610b57577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610b766000801b33610d68565b610bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bac90613e92565b60405180910390fd5b80600c9080519060200190610bcb929190612e61565b5050565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90613fd2565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990613fb2565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610d608260016000868152602001908152602001600020611a7290919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060038054610de190614400565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0d90614400565b8015610e5a5780601f10610e2f57610100808354040283529160200191610e5a565b820191906000526020600020905b815481529060010190602001808311610e3d57829003601f168201915b5050505050905090565b6000801b81565b610e7d610e76611330565b8383611a8c565b5050565b610e92610e8c611330565b83611633565b610ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec890614092565b60405180910390fd5b610edd84848484611bf9565b50505050565b6060610eee826112c4565b610f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2490613ef2565b60405180910390fd5b6000600d60008481526020019081526020016000208054610f4d90614400565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7990614400565b8015610fc65780601f10610f9b57610100808354040283529160200191610fc6565b820191906000526020600020905b815481529060010190602001808311610fa957829003601f168201915b505050505090506000610fd7611c55565b9050600081511415610fed578192505050611030565b60008251111561102257808260405160200161100a929190613d35565b60405160208183030381529060405292505050611030565b61102b84611ce7565b925050505b919050565b600061105260016000848152602001908152602001600020611d8e565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61108682610942565b61109781611092611330565b61196d565b6110a18383611a3e565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111448282610d68565b61121657600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506111bb611330565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611242836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611da3565b905092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112bd57506112bc82611e13565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113ab83610bcf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145890613ff2565b60405180910390fd5b61146a816112c4565b156114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a190613f12565b60405180910390fd5b6114b660008383611ef5565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115069190614201565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6115c8826112c4565b611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe906140b2565b60405180910390fd5b80600d6000848152602001908152602001600020908051906020019061162e929190612e61565b505050565b600061163e826112c4565b61167d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167490613f72565b60405180910390fd5b600061168883610bcf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806116f757508373ffffffffffffffffffffffffffffffffffffffff166116df8461068b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611708575061170781856110a6565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661173182610bcf565b73ffffffffffffffffffffffffffffffffffffffff1614611787576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177e90614032565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ee90613f32565b60405180910390fd5b611802838383611ef5565b61180d600082611338565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461185d91906142e2565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118b49190614201565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6119778282610d68565b611a065761199c8173ffffffffffffffffffffffffffffffffffffffff166014611f05565b6119aa8360001c6020611f05565b6040516020016119bb929190613d59565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fd9190613e30565b60405180910390fd5b5050565b611a14828261113a565b611a39816001600085815260200190815260200160002061121a90919063ffffffff16565b505050565b611a4882826121ff565b611a6d81600160008581526020019081526020016000206122e090919063ffffffff16565b505050565b6000611a818360000183612310565b60001c905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af290613f52565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bec9190613dfa565b60405180910390a3505050565b611c04848484611711565b611c1084848484612361565b611c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4690613ed2565b60405180910390fd5b50505050565b6060600c8054611c6490614400565b80601f0160208091040260200160405190810160405280929190818152602001828054611c9090614400565b8015611cdd5780601f10611cb257610100808354040283529160200191611cdd565b820191906000526020600020905b815481529060010190602001808311611cc057829003601f168201915b5050505050905090565b6060611cf2826112c4565b611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2890614052565b60405180910390fd5b6000611d3b611c55565b90506000815111611d5b5760405180602001604052806000815250611d86565b80611d65846124f8565b604051602001611d76929190613d35565b6040516020818303038152906040525b915050919050565b6000611d9c826000016126a5565b9050919050565b6000611daf83836126b6565b611e08578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611e0d565b600090505b92915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ede57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611eee5750611eed826126d9565b5b9050919050565b611f00838383612753565b505050565b606060006002836002611f189190614288565b611f229190614201565b67ffffffffffffffff811115611f61577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611f935781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611ff1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061207b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026120bb9190614288565b6120c59190614201565b90505b60018111156121b1577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061212d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b82828151811061216a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806121aa906143d6565b90506120c8565b50600084146121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ec90613e72565b60405180910390fd5b8091505092915050565b6122098282610d68565b156122dc57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612281611330565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000612308836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612867565b905092915050565b600082600001828154811061234e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b60006123828473ffffffffffffffffffffffffffffffffffffffff166129ed565b156124eb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123ab611330565b8786866040518563ffffffff1660e01b81526004016123cd9493929190613dae565b602060405180830381600087803b1580156123e757600080fd5b505af192505050801561241857506040513d601f19601f8201168201806040525081019061241591906132c3565b60015b61249b573d8060008114612448576040519150601f19603f3d011682016040523d82523d6000602084013e61244d565b606091505b50600081511415612493576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248a90613ed2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124f0565b600190505b949350505050565b60606000821415612540576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126a0565b600082905060005b6000821461257257808061255b90614432565b915050600a8261256b9190614257565b9150612548565b60008167ffffffffffffffff8111156125b4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125e65781602001600182028036833780820191505090505b5090505b60008514612699576001826125ff91906142e2565b9150600a8561260e919061447b565b603061261a9190614201565b60f81b818381518110612656577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126929190614257565b94506125ea565b8093505050505b919050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061274c575061274b82612a00565b5b9050919050565b61275e838383612a7a565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127a15761279c81612a7f565b6127e0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127df576127de8382612ac8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128235761281e81612c35565b612862565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612861576128608282612d78565b5b5b505050565b600080836001016000848152602001908152602001600020549050600081146129e157600060018261289991906142e2565b90506000600186600001805490506128b191906142e2565b905081811461296c5760008660000182815481106128f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612942577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806129a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506129e7565b60009150505b92915050565b600080823b905060008111915050919050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612a735750612a7282612df7565b5b9050919050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612ad584610c81565b612adf91906142e2565b9050600060096000848152602001908152602001600020549050818114612bc4576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a80549050612c4991906142e2565b90506000600b60008481526020019081526020016000205490506000600a8381548110612c9f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600a8381548110612ce7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a805480612d5c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612d8383610c81565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b828054612e6d90614400565b90600052602060002090601f016020900481019282612e8f5760008555612ed6565b82601f10612ea857805160ff1916838001178555612ed6565b82800160010185558215612ed6579182015b82811115612ed5578251825591602001919060010190612eba565b5b509050612ee39190612ee7565b5090565b5b80821115612f00576000816000905550600101612ee8565b5090565b6000612f17612f128461415e565b61412d565b905082815260208101848484011115612f2f57600080fd5b612f3a848285614394565b509392505050565b6000612f55612f508461418e565b61412d565b905082815260208101848484011115612f6d57600080fd5b612f78848285614394565b509392505050565b600081359050612f8f81614579565b92915050565b600081359050612fa481614590565b92915050565b600081359050612fb9816145a7565b92915050565b600081359050612fce816145be565b92915050565b600081519050612fe3816145be565b92915050565b600082601f830112612ffa57600080fd5b813561300a848260208601612f04565b91505092915050565b600082601f83011261302457600080fd5b8135613034848260208601612f42565b91505092915050565b60008135905061304c816145d5565b92915050565b60006020828403121561306457600080fd5b600061307284828501612f80565b91505092915050565b6000806040838503121561308e57600080fd5b600061309c85828601612f80565b92505060206130ad85828601612f80565b9150509250929050565b6000806000606084860312156130cc57600080fd5b60006130da86828701612f80565b93505060206130eb86828701612f80565b92505060406130fc8682870161303d565b9150509250925092565b6000806000806080858703121561311c57600080fd5b600061312a87828801612f80565b945050602061313b87828801612f80565b935050604061314c8782880161303d565b925050606085013567ffffffffffffffff81111561316957600080fd5b61317587828801612fe9565b91505092959194509250565b6000806040838503121561319457600080fd5b60006131a285828601612f80565b92505060206131b385828601612f95565b9150509250929050565b600080604083850312156131d057600080fd5b60006131de85828601612f80565b92505060206131ef8582860161303d565b9150509250929050565b60006020828403121561320b57600080fd5b600061321984828501612faa565b91505092915050565b6000806040838503121561323557600080fd5b600061324385828601612faa565b925050602061325485828601612f80565b9150509250929050565b6000806040838503121561327157600080fd5b600061327f85828601612faa565b92505060206132908582860161303d565b9150509250929050565b6000602082840312156132ac57600080fd5b60006132ba84828501612fbf565b91505092915050565b6000602082840312156132d557600080fd5b60006132e384828501612fd4565b91505092915050565b6000602082840312156132fe57600080fd5b600082013567ffffffffffffffff81111561331857600080fd5b61332484828501613013565b91505092915050565b6000806040838503121561334057600080fd5b600083013567ffffffffffffffff81111561335a57600080fd5b61336685828601613013565b925050602061337785828601612f80565b9150509250929050565b60006020828403121561339357600080fd5b60006133a18482850161303d565b91505092915050565b6133b381614316565b82525050565b6133c281614328565b82525050565b6133d181614334565b82525050565b60006133e2826141be565b6133ec81856141d4565b93506133fc8185602086016143a3565b61340581614568565b840191505092915050565b600061341b826141c9565b61342581856141e5565b93506134358185602086016143a3565b61343e81614568565b840191505092915050565b6000613454826141c9565b61345e81856141f6565b935061346e8185602086016143a3565b80840191505092915050565b60006134876027836141e5565b91507f4e696e66614e46543a204d7573742068617665204d494e5445525f524f4c452060008301527f746f206d696e74000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134ed6020836141e5565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b600061352d6035836141e5565b91507f426f61784e46543a206d75737420686176652044454641554c545f41444d494e60008301527f5f524f4c4520746f2073657420626173652055524900000000000000000000006020830152604082019050919050565b6000613593602b836141e5565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006135f96032836141e5565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061365f6028836141e5565b91507f426f61784e46543a2055524920717565727920666f72206e6f6e65786973746560008301527f6e7420746f6b656e0000000000000000000000000000000000000000000000006020830152604082019050919050565b60006136c5601c836141e5565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006137056024836141e5565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061376b6019836141e5565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006137ab602c836141e5565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006138116038836141e5565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000613877602a836141e5565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006138dd6029836141e5565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006139436020836141e5565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613983602c836141e5565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006139e96029836141e5565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a4f602f836141e5565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613ab56021836141e5565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b1b6031836141e5565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613b816025836141e5565b91507f426f61784e46543a2055524920736574206f66206e6f6e6578697374656e742060008301527f746f6b656e0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613be7602c836141e5565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613c4d6017836141f6565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b6000613c8d6011836141f6565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b6000613ccd602f836141e5565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b613d2f8161438a565b82525050565b6000613d418285613449565b9150613d4d8284613449565b91508190509392505050565b6000613d6482613c40565b9150613d708285613449565b9150613d7b82613c80565b9150613d878284613449565b91508190509392505050565b6000602082019050613da860008301846133aa565b92915050565b6000608082019050613dc360008301876133aa565b613dd060208301866133aa565b613ddd6040830185613d26565b8181036060830152613def81846133d7565b905095945050505050565b6000602082019050613e0f60008301846133b9565b92915050565b6000602082019050613e2a60008301846133c8565b92915050565b60006020820190508181036000830152613e4a8184613410565b905092915050565b60006020820190508181036000830152613e6b8161347a565b9050919050565b60006020820190508181036000830152613e8b816134e0565b9050919050565b60006020820190508181036000830152613eab81613520565b9050919050565b60006020820190508181036000830152613ecb81613586565b9050919050565b60006020820190508181036000830152613eeb816135ec565b9050919050565b60006020820190508181036000830152613f0b81613652565b9050919050565b60006020820190508181036000830152613f2b816136b8565b9050919050565b60006020820190508181036000830152613f4b816136f8565b9050919050565b60006020820190508181036000830152613f6b8161375e565b9050919050565b60006020820190508181036000830152613f8b8161379e565b9050919050565b60006020820190508181036000830152613fab81613804565b9050919050565b60006020820190508181036000830152613fcb8161386a565b9050919050565b60006020820190508181036000830152613feb816138d0565b9050919050565b6000602082019050818103600083015261400b81613936565b9050919050565b6000602082019050818103600083015261402b81613976565b9050919050565b6000602082019050818103600083015261404b816139dc565b9050919050565b6000602082019050818103600083015261406b81613a42565b9050919050565b6000602082019050818103600083015261408b81613aa8565b9050919050565b600060208201905081810360008301526140ab81613b0e565b9050919050565b600060208201905081810360008301526140cb81613b74565b9050919050565b600060208201905081810360008301526140eb81613bda565b9050919050565b6000602082019050818103600083015261410b81613cc0565b9050919050565b60006020820190506141276000830184613d26565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561415457614153614539565b5b8060405250919050565b600067ffffffffffffffff82111561417957614178614539565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156141a9576141a8614539565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061420c8261438a565b91506142178361438a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561424c5761424b6144ac565b5b828201905092915050565b60006142628261438a565b915061426d8361438a565b92508261427d5761427c6144db565b5b828204905092915050565b60006142938261438a565b915061429e8361438a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142d7576142d66144ac565b5b828202905092915050565b60006142ed8261438a565b91506142f88361438a565b92508282101561430b5761430a6144ac565b5b828203905092915050565b60006143218261436a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156143c15780820151818401526020810190506143a6565b838111156143d0576000848401525b50505050565b60006143e18261438a565b915060008214156143f5576143f46144ac565b5b600182039050919050565b6000600282049050600182168061441857607f821691505b6020821081141561442c5761442b61450a565b5b50919050565b600061443d8261438a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156144705761446f6144ac565b5b600182019050919050565b60006144868261438a565b91506144918361438a565b9250826144a1576144a06144db565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61458281614316565b811461458d57600080fd5b50565b61459981614328565b81146145a457600080fd5b50565b6145b081614334565b81146145bb57600080fd5b50565b6145c78161433e565b81146145d257600080fd5b50565b6145de8161438a565b81146145e957600080fd5b5056fea26469706673582212208539ba8324ec5cdbcbef789062aff113006c25b2e537d8532871f9b07903f48f64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000007424f41584e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004424f415800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002268747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): BOAXNFT
Arg [1] : symbol (string): BOAX
Arg [2] : baseTokenURI (string): https://gateway.pinata.cloud/ipfs/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 424f41584e465400000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 424f415800000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000022
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

68746:4039:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72564:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50022:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51581:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51104:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63168:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71051:593;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72001:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52331:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35020:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35405:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62836:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36453:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52741:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63358:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69807:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49716:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49446:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39947:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33905:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50191:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32996:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51874:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52997:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70036:644;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40266:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68845:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35797:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52100:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72564:218;72717:4;72740:36;72764:11;72740:23;:36::i;:::-;72733:43;;72564:218;;;:::o;50022:100::-;50076:13;50109:5;50102:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50022:100;:::o;51581:221::-;51657:7;51685:16;51693:7;51685;:16::i;:::-;51677:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51770:15;:24;51786:7;51770:24;;;;;;;;;;;;;;;;;;;;;51763:31;;51581:221;;;:::o;51104:411::-;51185:13;51201:23;51216:7;51201:14;:23::i;:::-;51185:39;;51249:5;51243:11;;:2;:11;;;;51235:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;51343:5;51327:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;51352:37;51369:5;51376:12;:10;:12::i;:::-;51352:16;:37::i;:::-;51327:62;51305:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;51486:21;51495:2;51499:7;51486:8;:21::i;:::-;51104:411;;;:::o;63168:113::-;63229:7;63256:10;:17;;;;63249:24;;63168:113;:::o;71051:593::-;71135:32;68883:24;71156:10;71135:7;:32::i;:::-;71119:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;71324:25;71330:3;71335:13;:11;:13::i;:::-;71324:5;:25::i;:::-;71453:42;71482:1;71466:13;:11;:13::i;:::-;:17;;;;:::i;:::-;71485:9;71453:12;:42::i;:::-;71051:593;;:::o;72001:105::-;72064:4;72084:16;72092:7;72084;:16::i;:::-;72077:23;;72001:105;;;:::o;52331:339::-;52526:41;52545:12;:10;:12::i;:::-;52559:7;52526:18;:41::i;:::-;52518:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;52634:28;52644:4;52650:2;52654:7;52634:9;:28::i;:::-;52331:339;;;:::o;35020:123::-;35086:7;35113:6;:12;35120:4;35113:12;;;;;;;;;;;:22;;;35106:29;;35020:123;;;:::o;35405:147::-;35488:18;35501:4;35488:12;:18::i;:::-;33487:30;33498:4;33504:12;:10;:12::i;:::-;33487:10;:30::i;:::-;35519:25:::1;35530:4;35536:7;35519:10;:25::i;:::-;35405:147:::0;;;:::o;62836:256::-;62933:7;62969:23;62986:5;62969:16;:23::i;:::-;62961:5;:31;62953:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;63058:12;:19;63071:5;63058:19;;;;;;;;;;;;;;;:26;63078:5;63058:26;;;;;;;;;;;;63051:33;;62836:256;;;;:::o;36453:218::-;36560:12;:10;:12::i;:::-;36549:23;;:7;:23;;;36541:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;36637:26;36649:4;36655:7;36637:11;:26::i;:::-;36453:218;;:::o;52741:185::-;52879:39;52896:4;52902:2;52906:7;52879:39;;;;;;;;;;;;:16;:39::i;:::-;52741:185;;;:::o;63358:233::-;63433:7;63469:30;:28;:30::i;:::-;63461:5;:38;63453:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;63566:10;63577:5;63566:17;;;;;;;;;;;;;;;;;;;;;;;;63559:24;;63358:233;;;:::o;69807:223::-;69883:39;33041:4;69891:18;;69911:10;69883:7;:39::i;:::-;69867:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;70016:8;70000:13;:24;;;;;;;;;;;;:::i;:::-;;69807:223;:::o;49716:239::-;49788:7;49808:13;49824:7;:16;49832:7;49824:16;;;;;;;;;;;;;;;;;;;;;49808:32;;49876:1;49859:19;;:5;:19;;;;49851:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49942:5;49935:12;;;49716:239;;;:::o;49446:208::-;49518:7;49563:1;49546:19;;:5;:19;;;;49538:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;49630:9;:16;49640:5;49630:16;;;;;;;;;;;;;;;;49623:23;;49446:208;;;:::o;39947:145::-;40029:7;40056:28;40078:5;40056:12;:18;40069:4;40056:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;40049:35;;39947:145;;;;:::o;33905:139::-;33983:4;34007:6;:12;34014:4;34007:12;;;;;;;;;;;:20;;:29;34028:7;34007:29;;;;;;;;;;;;;;;;;;;;;;;;;34000:36;;33905:139;;;;:::o;50191:104::-;50247:13;50280:7;50273:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50191:104;:::o;32996:49::-;33041:4;32996:49;;;:::o;51874:155::-;51969:52;51988:12;:10;:12::i;:::-;52002:8;52012;51969:18;:52::i;:::-;51874:155;;:::o;52997:328::-;53172:41;53191:12;:10;:12::i;:::-;53205:7;53172:18;:41::i;:::-;53164:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;53278:39;53292:4;53298:2;53302:7;53311:5;53278:13;:39::i;:::-;52997:328;;;;:::o;70036:644::-;70134:13;70167:16;70175:7;70167;:16::i;:::-;70159:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;70237:23;70263:10;:19;70274:7;70263:19;;;;;;;;;;;70237:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70289:18;70310:10;:8;:10::i;:::-;70289:31;;70410:1;70394:4;70388:18;:23;70384:62;;;70429:9;70422:16;;;;;;70384:62;70568:1;70548:9;70542:23;:27;70538:98;;;70611:4;70617:9;70594:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;70580:48;;;;;;70538:98;70651:23;70666:7;70651:14;:23::i;:::-;70644:30;;;;70036:644;;;;:::o;40266:134::-;40338:7;40365:27;:12;:18;40378:4;40365:18;;;;;;;;;;;:25;:27::i;:::-;40358:34;;40266:134;;;:::o;68845:62::-;68883:24;68845:62;:::o;35797:149::-;35881:18;35894:4;35881:12;:18::i;:::-;33487:30;33498:4;33504:12;:10;:12::i;:::-;33487:10;:30::i;:::-;35912:26:::1;35924:4;35930:7;35912:11;:26::i;:::-;35797:149:::0;;;:::o;52100:164::-;52197:4;52221:18;:25;52240:5;52221:25;;;;;;;;;;;;;;;:35;52247:8;52221:35;;;;;;;;;;;;;;;;;;;;;;;;;52214:42;;52100:164;;;;:::o;37954:238::-;38038:22;38046:4;38052:7;38038;:22::i;:::-;38033:152;;38109:4;38077:6;:12;38084:4;38077:12;;;;;;;;;;;:20;;:29;38098:7;38077:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;38160:12;:10;:12::i;:::-;38133:40;;38151:7;38133:40;;38145:4;38133:40;;;;;;;;;;38033:152;37954:238;;:::o;7872:152::-;7942:4;7966:50;7971:3;:10;;8007:5;7991:23;;7983:32;;7966:4;:50::i;:::-;7959:57;;7872:152;;;;:::o;62528:224::-;62630:4;62669:35;62654:50;;;:11;:50;;;;:90;;;;62708:36;62732:11;62708:23;:36::i;:::-;62654:90;62647:97;;62528:224;;;:::o;54835:127::-;54900:4;54952:1;54924:30;;:7;:16;54932:7;54924:16;;;;;;;;;;;;;;;;;;;;;:30;;;;54917:37;;54835:127;;;:::o;19691:98::-;19744:7;19771:10;19764:17;;19691:98;:::o;58817:174::-;58919:2;58892:15;:24;58908:7;58892:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;58975:7;58971:2;58937:46;;58946:23;58961:7;58946:14;:23::i;:::-;58937:46;;;;;;;;;;;;58817:174;;:::o;56813:382::-;56907:1;56893:16;;:2;:16;;;;56885:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;56966:16;56974:7;56966;:16::i;:::-;56965:17;56957:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;57028:45;57057:1;57061:2;57065:7;57028:20;:45::i;:::-;57103:1;57086:9;:13;57096:2;57086:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;57134:2;57115:7;:16;57123:7;57115:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;57179:7;57175:2;57154:33;;57171:1;57154:33;;;;;;;;;;;;56813:382;;:::o;71784:211::-;71893:16;71901:7;71893;:16::i;:::-;71885:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;71980:9;71958:10;:19;71969:7;71958:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;71784:211;;:::o;55129:348::-;55222:4;55247:16;55255:7;55247;:16::i;:::-;55239:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;55323:13;55339:23;55354:7;55339:14;:23::i;:::-;55323:39;;55392:5;55381:16;;:7;:16;;;:51;;;;55425:7;55401:31;;:20;55413:7;55401:11;:20::i;:::-;:31;;;55381:51;:87;;;;55436:32;55453:5;55460:7;55436:16;:32::i;:::-;55381:87;55373:96;;;55129:348;;;;:::o;58121:578::-;58280:4;58253:31;;:23;58268:7;58253:14;:23::i;:::-;:31;;;58245:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58363:1;58349:16;;:2;:16;;;;58341:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;58419:39;58440:4;58446:2;58450:7;58419:20;:39::i;:::-;58523:29;58540:1;58544:7;58523:8;:29::i;:::-;58584:1;58565:9;:15;58575:4;58565:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;58613:1;58596:9;:13;58606:2;58596:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;58644:2;58625:7;:16;58633:7;58625:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;58683:7;58679:2;58664:27;;58673:4;58664:27;;;;;;;;;;;;58121:578;;;:::o;34334:497::-;34415:22;34423:4;34429:7;34415;:22::i;:::-;34410:414;;34603:41;34631:7;34603:41;;34641:2;34603:19;:41::i;:::-;34717:38;34745:4;34737:13;;34752:2;34717:19;:38::i;:::-;34508:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34454:358;;;;;;;;;;;:::i;:::-;;;;;;;;34410:414;34334:497;;:::o;40493:169::-;40581:31;40598:4;40604:7;40581:16;:31::i;:::-;40623;40646:7;40623:12;:18;40636:4;40623:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;40493:169;;:::o;40756:174::-;40845:32;40863:4;40869:7;40845:17;:32::i;:::-;40888:34;40914:7;40888:12;:18;40901:4;40888:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;40756:174;;:::o;9168:158::-;9242:7;9293:22;9297:3;:10;;9309:5;9293:3;:22::i;:::-;9285:31;;9262:56;;9168:158;;;;:::o;59133:315::-;59288:8;59279:17;;:5;:17;;;;59271:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;59375:8;59337:18;:25;59356:5;59337:25;;;;;;;;;;;;;;;:35;59363:8;59337:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;59421:8;59399:41;;59414:5;59399:41;;;59431:8;59399:41;;;;;;:::i;:::-;;;;;;;;59133:315;;;:::o;54207:::-;54364:28;54374:4;54380:2;54384:7;54364:9;:28::i;:::-;54411:48;54434:4;54440:2;54444:7;54453:5;54411:22;:48::i;:::-;54403:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;54207:315;;;;:::o;72191:108::-;72251:13;72280;72273:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72191:108;:::o;50366:334::-;50439:13;50473:16;50481:7;50473;:16::i;:::-;50465:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;50554:21;50578:10;:8;:10::i;:::-;50554:34;;50630:1;50612:7;50606:21;:25;:86;;;;;;;;;;;;;;;;;50658:7;50667:18;:7;:16;:18::i;:::-;50641:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50606:86;50599:93;;;50366:334;;;:::o;8697:117::-;8760:7;8787:19;8795:3;:10;;8787:7;:19::i;:::-;8780:26;;8697:117;;;:::o;1787:414::-;1850:4;1872:21;1882:3;1887:5;1872:9;:21::i;:::-;1867:327;;1910:3;:11;;1927:5;1910:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2093:3;:11;;:18;;;;2071:3;:12;;:19;2084:5;2071:19;;;;;;;;;;;:40;;;;2133:4;2126:11;;;;1867:327;2177:5;2170:12;;1787:414;;;;;:::o;49077:305::-;49179:4;49231:25;49216:40;;;:11;:40;;;;:105;;;;49288:33;49273:48;;;:11;:48;;;;49216:105;:158;;;;49338:36;49362:11;49338:23;:36::i;:::-;49216:158;49196:178;;49077:305;;;:::o;72305:195::-;72449:45;72476:4;72482:2;72486:7;72449:26;:45::i;:::-;72305:195;;;:::o;18554:451::-;18629:13;18655:19;18700:1;18691:6;18687:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;18677:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18655:47;;18713:15;:6;18720:1;18713:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;18739;:6;18746:1;18739:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;18770:9;18795:1;18786:6;18782:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;18770:26;;18765:135;18802:1;18798;:5;18765:135;;;18837:12;18858:3;18850:5;:11;18837:25;;;;;;;;;;;;;;;;;;18825:6;18832:1;18825:9;;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;;18887:1;18877:11;;;;;18805:3;;;;:::i;:::-;;;18765:135;;;;18927:1;18918:5;:10;18910:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;18990:6;18976:21;;;18554:451;;;;:::o;38324:239::-;38408:22;38416:4;38422:7;38408;:22::i;:::-;38404:152;;;38479:5;38447:6;:12;38454:4;38447:12;;;;;;;;;;;:20;;:29;38468:7;38447:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;38531:12;:10;:12::i;:::-;38504:40;;38522:7;38504:40;;38516:4;38504:40;;;;;;;;;;38404:152;38324:239;;:::o;8200:158::-;8273:4;8297:53;8305:3;:10;;8341:5;8325:23;;8317:32;;8297:7;:53::i;:::-;8290:60;;8200:158;;;;:::o;4561:120::-;4628:7;4655:3;:11;;4667:5;4655:18;;;;;;;;;;;;;;;;;;;;;;;;4648:25;;4561:120;;;;:::o;60013:799::-;60168:4;60189:15;:2;:13;;;:15::i;:::-;60185:620;;;60241:2;60225:36;;;60262:12;:10;:12::i;:::-;60276:4;60282:7;60291:5;60225:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;60221:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60484:1;60467:6;:13;:18;60463:272;;;60510:60;;;;;;;;;;:::i;:::-;;;;;;;;60463:272;60685:6;60679:13;60670:6;60666:2;60662:15;60655:38;60221:529;60358:41;;;60348:51;;;:6;:51;;;;60341:58;;;;;60185:620;60789:4;60782:11;;60013:799;;;;;;;:::o;17253:723::-;17309:13;17539:1;17530:5;:10;17526:53;;;17557:10;;;;;;;;;;;;;;;;;;;;;17526:53;17589:12;17604:5;17589:20;;17620:14;17645:78;17660:1;17652:4;:9;17645:78;;17678:8;;;;;:::i;:::-;;;;17709:2;17701:10;;;;;:::i;:::-;;;17645:78;;;17733:19;17765:6;17755:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17733:39;;17783:154;17799:1;17790:5;:10;17783:154;;17827:1;17817:11;;;;;:::i;:::-;;;17894:2;17886:5;:10;;;;:::i;:::-;17873:2;:24;;;;:::i;:::-;17860:39;;17843:6;17850;17843:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17923:2;17914:11;;;;;:::i;:::-;;;17783:154;;;17961:6;17947:21;;;;;17253:723;;;;:::o;4098:109::-;4154:7;4181:3;:11;;:18;;;;4174:25;;4098:109;;;:::o;3883:129::-;3956:4;4003:1;3980:3;:12;;:19;3993:5;3980:19;;;;;;;;;;;;:24;;3973:31;;3883:129;;;;:::o;39134:214::-;39219:4;39258:42;39243:57;;;:11;:57;;;;:97;;;;39304:36;39328:11;39304:23;:36::i;:::-;39243:97;39236:104;;39134:214;;;:::o;64204:589::-;64348:45;64375:4;64381:2;64385:7;64348:26;:45::i;:::-;64426:1;64410:18;;:4;:18;;;64406:187;;;64445:40;64477:7;64445:31;:40::i;:::-;64406:187;;;64515:2;64507:10;;:4;:10;;;64503:90;;64534:47;64567:4;64573:7;64534:32;:47::i;:::-;64503:90;64406:187;64621:1;64607:16;;:2;:16;;;64603:183;;;64640:45;64677:7;64640:36;:45::i;:::-;64603:183;;;64713:4;64707:10;;:2;:10;;;64703:83;;64734:40;64762:2;64766:7;64734:27;:40::i;:::-;64703:83;64603:183;64204:589;;;:::o;2377:1420::-;2443:4;2561:18;2582:3;:12;;:19;2595:5;2582:19;;;;;;;;;;;;2561:40;;2632:1;2618:10;:15;2614:1176;;2993:21;3030:1;3017:10;:14;;;;:::i;:::-;2993:38;;3046:17;3087:1;3066:3;:11;;:18;;;;:22;;;;:::i;:::-;3046:42;;3122:13;3109:9;:26;3105:405;;3156:17;3176:3;:11;;3188:9;3176:22;;;;;;;;;;;;;;;;;;;;;;;;3156:42;;3330:9;3301:3;:11;;3313:13;3301:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;3441:10;3415:3;:12;;:23;3428:9;3415:23;;;;;;;;;;;:36;;;;3105:405;;3591:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3686:3;:12;;:19;3699:5;3686:19;;;;;;;;;;;3679:26;;;3729:4;3722:11;;;;;;;2614:1176;3773:5;3766:12;;;2377:1420;;;;;:::o;20725:387::-;20785:4;20993:12;21060:7;21048:20;21040:28;;21103:1;21096:4;:8;21089:15;;;20725:387;;;:::o;33609:204::-;33694:4;33733:32;33718:47;;;:11;:47;;;;:87;;;;33769:36;33793:11;33769:23;:36::i;:::-;33718:87;33711:94;;33609:204;;;:::o;61384:126::-;;;;:::o;65516:164::-;65620:10;:17;;;;65593:15;:24;65609:7;65593:24;;;;;;;;;;;:44;;;;65648:10;65664:7;65648:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65516:164;:::o;66307:988::-;66573:22;66623:1;66598:22;66615:4;66598:16;:22::i;:::-;:26;;;;:::i;:::-;66573:51;;66635:18;66656:17;:26;66674:7;66656:26;;;;;;;;;;;;66635:47;;66803:14;66789:10;:28;66785:328;;66834:19;66856:12;:18;66869:4;66856:18;;;;;;;;;;;;;;;:34;66875:14;66856:34;;;;;;;;;;;;66834:56;;66940:11;66907:12;:18;66920:4;66907:18;;;;;;;;;;;;;;;:30;66926:10;66907:30;;;;;;;;;;;:44;;;;67057:10;67024:17;:30;67042:11;67024:30;;;;;;;;;;;:43;;;;66785:328;;67209:17;:26;67227:7;67209:26;;;;;;;;;;;67202:33;;;67253:12;:18;67266:4;67253:18;;;;;;;;;;;;;;;:34;67272:14;67253:34;;;;;;;;;;;67246:41;;;66307:988;;;;:::o;67590:1079::-;67843:22;67888:1;67868:10;:17;;;;:21;;;;:::i;:::-;67843:46;;67900:18;67921:15;:24;67937:7;67921:24;;;;;;;;;;;;67900:45;;68272:19;68294:10;68305:14;68294:26;;;;;;;;;;;;;;;;;;;;;;;;68272:48;;68358:11;68333:10;68344;68333:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;68469:10;68438:15;:28;68454:11;68438:28;;;;;;;;;;;:41;;;;68610:15;:24;68626:7;68610:24;;;;;;;;;;;68603:31;;;68645:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67590:1079;;;;:::o;65094:221::-;65179:14;65196:20;65213:2;65196:16;:20::i;:::-;65179:37;;65254:7;65227:12;:16;65240:2;65227:16;;;;;;;;;;;;;;;:24;65244:6;65227:24;;;;;;;;;;;:34;;;;65301:6;65272:17;:26;65290:7;65272:26;;;;;;;;;;;:35;;;;65094:221;;;:::o;30869:157::-;30954:4;30993:25;30978:40;;;:11;:40;;;;30971:47;;30869:157;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:139::-;;1073:6;1060:20;1051:29;;1089:33;1116:5;1089:33;:::i;:::-;1041:87;;;;:::o;1134:137::-;;1217:6;1204:20;1195:29;;1233:32;1259:5;1233:32;:::i;:::-;1185:86;;;;:::o;1277:141::-;;1364:6;1358:13;1349:22;;1380:32;1406:5;1380:32;:::i;:::-;1339:79;;;;:::o;1437:271::-;;1541:3;1534:4;1526:6;1522:17;1518:27;1508:2;;1559:1;1556;1549:12;1508:2;1599:6;1586:20;1624:78;1698:3;1690:6;1683:4;1675:6;1671:17;1624:78;:::i;:::-;1615:87;;1498:210;;;;;:::o;1728:273::-;;1833:3;1826:4;1818:6;1814:17;1810:27;1800:2;;1851:1;1848;1841:12;1800:2;1891:6;1878:20;1916:79;1991:3;1983:6;1976:4;1968:6;1964:17;1916:79;:::i;:::-;1907:88;;1790:211;;;;;:::o;2007:139::-;;2091:6;2078:20;2069:29;;2107:33;2134:5;2107:33;:::i;:::-;2059:87;;;;:::o;2152:262::-;;2260:2;2248:9;2239:7;2235:23;2231:32;2228:2;;;2276:1;2273;2266:12;2228:2;2319:1;2344:53;2389:7;2380:6;2369:9;2365:22;2344:53;:::i;:::-;2334:63;;2290:117;2218:196;;;;:::o;2420:407::-;;;2545:2;2533:9;2524:7;2520:23;2516:32;2513:2;;;2561:1;2558;2551:12;2513:2;2604:1;2629:53;2674:7;2665:6;2654:9;2650:22;2629:53;:::i;:::-;2619:63;;2575:117;2731:2;2757:53;2802:7;2793:6;2782:9;2778:22;2757:53;:::i;:::-;2747:63;;2702:118;2503:324;;;;;:::o;2833:552::-;;;;2975:2;2963:9;2954:7;2950:23;2946:32;2943:2;;;2991:1;2988;2981:12;2943:2;3034:1;3059:53;3104:7;3095:6;3084:9;3080:22;3059:53;:::i;:::-;3049:63;;3005:117;3161:2;3187:53;3232:7;3223:6;3212:9;3208:22;3187:53;:::i;:::-;3177:63;;3132:118;3289:2;3315:53;3360:7;3351:6;3340:9;3336:22;3315:53;:::i;:::-;3305:63;;3260:118;2933:452;;;;;:::o;3391:809::-;;;;;3559:3;3547:9;3538:7;3534:23;3530:33;3527:2;;;3576:1;3573;3566:12;3527:2;3619:1;3644:53;3689:7;3680:6;3669:9;3665:22;3644:53;:::i;:::-;3634:63;;3590:117;3746:2;3772:53;3817:7;3808:6;3797:9;3793:22;3772:53;:::i;:::-;3762:63;;3717:118;3874:2;3900:53;3945:7;3936:6;3925:9;3921:22;3900:53;:::i;:::-;3890:63;;3845:118;4030:2;4019:9;4015:18;4002:32;4061:18;4053:6;4050:30;4047:2;;;4093:1;4090;4083:12;4047:2;4121:62;4175:7;4166:6;4155:9;4151:22;4121:62;:::i;:::-;4111:72;;3973:220;3517:683;;;;;;;:::o;4206:401::-;;;4328:2;4316:9;4307:7;4303:23;4299:32;4296:2;;;4344:1;4341;4334:12;4296:2;4387:1;4412:53;4457:7;4448:6;4437:9;4433:22;4412:53;:::i;:::-;4402:63;;4358:117;4514:2;4540:50;4582:7;4573:6;4562:9;4558:22;4540:50;:::i;:::-;4530:60;;4485:115;4286:321;;;;;:::o;4613:407::-;;;4738:2;4726:9;4717:7;4713:23;4709:32;4706:2;;;4754:1;4751;4744:12;4706:2;4797:1;4822:53;4867:7;4858:6;4847:9;4843:22;4822:53;:::i;:::-;4812:63;;4768:117;4924:2;4950:53;4995:7;4986:6;4975:9;4971:22;4950:53;:::i;:::-;4940:63;;4895:118;4696:324;;;;;:::o;5026:262::-;;5134:2;5122:9;5113:7;5109:23;5105:32;5102:2;;;5150:1;5147;5140:12;5102:2;5193:1;5218:53;5263:7;5254:6;5243:9;5239:22;5218:53;:::i;:::-;5208:63;;5164:117;5092:196;;;;:::o;5294:407::-;;;5419:2;5407:9;5398:7;5394:23;5390:32;5387:2;;;5435:1;5432;5425:12;5387:2;5478:1;5503:53;5548:7;5539:6;5528:9;5524:22;5503:53;:::i;:::-;5493:63;;5449:117;5605:2;5631:53;5676:7;5667:6;5656:9;5652:22;5631:53;:::i;:::-;5621:63;;5576:118;5377:324;;;;;:::o;5707:407::-;;;5832:2;5820:9;5811:7;5807:23;5803:32;5800:2;;;5848:1;5845;5838:12;5800:2;5891:1;5916:53;5961:7;5952:6;5941:9;5937:22;5916:53;:::i;:::-;5906:63;;5862:117;6018:2;6044:53;6089:7;6080:6;6069:9;6065:22;6044:53;:::i;:::-;6034:63;;5989:118;5790:324;;;;;:::o;6120:260::-;;6227:2;6215:9;6206:7;6202:23;6198:32;6195:2;;;6243:1;6240;6233:12;6195:2;6286:1;6311:52;6355:7;6346:6;6335:9;6331:22;6311:52;:::i;:::-;6301:62;;6257:116;6185:195;;;;:::o;6386:282::-;;6504:2;6492:9;6483:7;6479:23;6475:32;6472:2;;;6520:1;6517;6510:12;6472:2;6563:1;6588:63;6643:7;6634:6;6623:9;6619:22;6588:63;:::i;:::-;6578:73;;6534:127;6462:206;;;;:::o;6674:375::-;;6792:2;6780:9;6771:7;6767:23;6763:32;6760:2;;;6808:1;6805;6798:12;6760:2;6879:1;6868:9;6864:17;6851:31;6909:18;6901:6;6898:30;6895:2;;;6941:1;6938;6931:12;6895:2;6969:63;7024:7;7015:6;7004:9;7000:22;6969:63;:::i;:::-;6959:73;;6822:220;6750:299;;;;:::o;7055:520::-;;;7190:2;7178:9;7169:7;7165:23;7161:32;7158:2;;;7206:1;7203;7196:12;7158:2;7277:1;7266:9;7262:17;7249:31;7307:18;7299:6;7296:30;7293:2;;;7339:1;7336;7329:12;7293:2;7367:63;7422:7;7413:6;7402:9;7398:22;7367:63;:::i;:::-;7357:73;;7220:220;7479:2;7505:53;7550:7;7541:6;7530:9;7526:22;7505:53;:::i;:::-;7495:63;;7450:118;7148:427;;;;;:::o;7581:262::-;;7689:2;7677:9;7668:7;7664:23;7660:32;7657:2;;;7705:1;7702;7695:12;7657:2;7748:1;7773:53;7818:7;7809:6;7798:9;7794:22;7773:53;:::i;:::-;7763:63;;7719:117;7647:196;;;;:::o;7849:118::-;7936:24;7954:5;7936:24;:::i;:::-;7931:3;7924:37;7914:53;;:::o;7973:109::-;8054:21;8069:5;8054:21;:::i;:::-;8049:3;8042:34;8032:50;;:::o;8088:118::-;8175:24;8193:5;8175:24;:::i;:::-;8170:3;8163:37;8153:53;;:::o;8212:360::-;;8326:38;8358:5;8326:38;:::i;:::-;8380:70;8443:6;8438:3;8380:70;:::i;:::-;8373:77;;8459:52;8504:6;8499:3;8492:4;8485:5;8481:16;8459:52;:::i;:::-;8536:29;8558:6;8536:29;:::i;:::-;8531:3;8527:39;8520:46;;8302:270;;;;;:::o;8578:364::-;;8694:39;8727:5;8694:39;:::i;:::-;8749:71;8813:6;8808:3;8749:71;:::i;:::-;8742:78;;8829:52;8874:6;8869:3;8862:4;8855:5;8851:16;8829:52;:::i;:::-;8906:29;8928:6;8906:29;:::i;:::-;8901:3;8897:39;8890:46;;8670:272;;;;;:::o;8948:377::-;;9082:39;9115:5;9082:39;:::i;:::-;9137:89;9219:6;9214:3;9137:89;:::i;:::-;9130:96;;9235:52;9280:6;9275:3;9268:4;9261:5;9257:16;9235:52;:::i;:::-;9312:6;9307:3;9303:16;9296:23;;9058:267;;;;;:::o;9331:371::-;;9494:67;9558:2;9553:3;9494:67;:::i;:::-;9487:74;;9591:34;9587:1;9582:3;9578:11;9571:55;9657:9;9652:2;9647:3;9643:12;9636:31;9693:2;9688:3;9684:12;9677:19;;9477:225;;;:::o;9708:330::-;;9871:67;9935:2;9930:3;9871:67;:::i;:::-;9864:74;;9968:34;9964:1;9959:3;9955:11;9948:55;10029:2;10024:3;10020:12;10013:19;;9854:184;;;:::o;10044:385::-;;10207:67;10271:2;10266:3;10207:67;:::i;:::-;10200:74;;10304:34;10300:1;10295:3;10291:11;10284:55;10370:23;10365:2;10360:3;10356:12;10349:45;10420:2;10415:3;10411:12;10404:19;;10190:239;;;:::o;10435:375::-;;10598:67;10662:2;10657:3;10598:67;:::i;:::-;10591:74;;10695:34;10691:1;10686:3;10682:11;10675:55;10761:13;10756:2;10751:3;10747:12;10740:35;10801:2;10796:3;10792:12;10785:19;;10581:229;;;:::o;10816:382::-;;10979:67;11043:2;11038:3;10979:67;:::i;:::-;10972:74;;11076:34;11072:1;11067:3;11063:11;11056:55;11142:20;11137:2;11132:3;11128:12;11121:42;11189:2;11184:3;11180:12;11173:19;;10962:236;;;:::o;11204:372::-;;11367:67;11431:2;11426:3;11367:67;:::i;:::-;11360:74;;11464:34;11460:1;11455:3;11451:11;11444:55;11530:10;11525:2;11520:3;11516:12;11509:32;11567:2;11562:3;11558:12;11551:19;;11350:226;;;:::o;11582:326::-;;11745:67;11809:2;11804:3;11745:67;:::i;:::-;11738:74;;11842:30;11838:1;11833:3;11829:11;11822:51;11899:2;11894:3;11890:12;11883:19;;11728:180;;;:::o;11914:368::-;;12077:67;12141:2;12136:3;12077:67;:::i;:::-;12070:74;;12174:34;12170:1;12165:3;12161:11;12154:55;12240:6;12235:2;12230:3;12226:12;12219:28;12273:2;12268:3;12264:12;12257:19;;12060:222;;;:::o;12288:323::-;;12451:67;12515:2;12510:3;12451:67;:::i;:::-;12444:74;;12548:27;12544:1;12539:3;12535:11;12528:48;12602:2;12597:3;12593:12;12586:19;;12434:177;;;:::o;12617:376::-;;12780:67;12844:2;12839:3;12780:67;:::i;:::-;12773:74;;12877:34;12873:1;12868:3;12864:11;12857:55;12943:14;12938:2;12933:3;12929:12;12922:36;12984:2;12979:3;12975:12;12968:19;;12763:230;;;:::o;12999:388::-;;13162:67;13226:2;13221:3;13162:67;:::i;:::-;13155:74;;13259:34;13255:1;13250:3;13246:11;13239:55;13325:26;13320:2;13315:3;13311:12;13304:48;13378:2;13373:3;13369:12;13362:19;;13145:242;;;:::o;13393:374::-;;13556:67;13620:2;13615:3;13556:67;:::i;:::-;13549:74;;13653:34;13649:1;13644:3;13640:11;13633:55;13719:12;13714:2;13709:3;13705:12;13698:34;13758:2;13753:3;13749:12;13742:19;;13539:228;;;:::o;13773:373::-;;13936:67;14000:2;13995:3;13936:67;:::i;:::-;13929:74;;14033:34;14029:1;14024:3;14020:11;14013:55;14099:11;14094:2;14089:3;14085:12;14078:33;14137:2;14132:3;14128:12;14121:19;;13919:227;;;:::o;14152:330::-;;14315:67;14379:2;14374:3;14315:67;:::i;:::-;14308:74;;14412:34;14408:1;14403:3;14399:11;14392:55;14473:2;14468:3;14464:12;14457:19;;14298:184;;;:::o;14488:376::-;;14651:67;14715:2;14710:3;14651:67;:::i;:::-;14644:74;;14748:34;14744:1;14739:3;14735:11;14728:55;14814:14;14809:2;14804:3;14800:12;14793:36;14855:2;14850:3;14846:12;14839:19;;14634:230;;;:::o;14870:373::-;;15033:67;15097:2;15092:3;15033:67;:::i;:::-;15026:74;;15130:34;15126:1;15121:3;15117:11;15110:55;15196:11;15191:2;15186:3;15182:12;15175:33;15234:2;15229:3;15225:12;15218:19;;15016:227;;;:::o;15249:379::-;;15412:67;15476:2;15471:3;15412:67;:::i;:::-;15405:74;;15509:34;15505:1;15500:3;15496:11;15489:55;15575:17;15570:2;15565:3;15561:12;15554:39;15619:2;15614:3;15610:12;15603:19;;15395:233;;;:::o;15634:365::-;;15797:67;15861:2;15856:3;15797:67;:::i;:::-;15790:74;;15894:34;15890:1;15885:3;15881:11;15874:55;15960:3;15955:2;15950:3;15946:12;15939:25;15990:2;15985:3;15981:12;15974:19;;15780:219;;;:::o;16005:381::-;;16168:67;16232:2;16227:3;16168:67;:::i;:::-;16161:74;;16265:34;16261:1;16256:3;16252:11;16245:55;16331:19;16326:2;16321:3;16317:12;16310:41;16377:2;16372:3;16368:12;16361:19;;16151:235;;;:::o;16392:369::-;;16555:67;16619:2;16614:3;16555:67;:::i;:::-;16548:74;;16652:34;16648:1;16643:3;16639:11;16632:55;16718:7;16713:2;16708:3;16704:12;16697:29;16752:2;16747:3;16743:12;16736:19;;16538:223;;;:::o;16767:376::-;;16930:67;16994:2;16989:3;16930:67;:::i;:::-;16923:74;;17027:34;17023:1;17018:3;17014:11;17007:55;17093:14;17088:2;17083:3;17079:12;17072:36;17134:2;17129:3;17125:12;17118:19;;16913:230;;;:::o;17149:357::-;;17330:85;17412:2;17407:3;17330:85;:::i;:::-;17323:92;;17445:25;17441:1;17436:3;17432:11;17425:46;17497:2;17492:3;17488:12;17481:19;;17313:193;;;:::o;17512:351::-;;17693:85;17775:2;17770:3;17693:85;:::i;:::-;17686:92;;17808:19;17804:1;17799:3;17795:11;17788:40;17854:2;17849:3;17845:12;17838:19;;17676:187;;;:::o;17869:379::-;;18032:67;18096:2;18091:3;18032:67;:::i;:::-;18025:74;;18129:34;18125:1;18120:3;18116:11;18109:55;18195:17;18190:2;18185:3;18181:12;18174:39;18239:2;18234:3;18230:12;18223:19;;18015:233;;;:::o;18254:118::-;18341:24;18359:5;18341:24;:::i;:::-;18336:3;18329:37;18319:53;;:::o;18378:435::-;;18580:95;18671:3;18662:6;18580:95;:::i;:::-;18573:102;;18692:95;18783:3;18774:6;18692:95;:::i;:::-;18685:102;;18804:3;18797:10;;18562:251;;;;;:::o;18819:967::-;;19223:148;19367:3;19223:148;:::i;:::-;19216:155;;19388:95;19479:3;19470:6;19388:95;:::i;:::-;19381:102;;19500:148;19644:3;19500:148;:::i;:::-;19493:155;;19665:95;19756:3;19747:6;19665:95;:::i;:::-;19658:102;;19777:3;19770:10;;19205:581;;;;;:::o;19792:222::-;;19923:2;19912:9;19908:18;19900:26;;19936:71;20004:1;19993:9;19989:17;19980:6;19936:71;:::i;:::-;19890:124;;;;:::o;20020:640::-;;20253:3;20242:9;20238:19;20230:27;;20267:71;20335:1;20324:9;20320:17;20311:6;20267:71;:::i;:::-;20348:72;20416:2;20405:9;20401:18;20392:6;20348:72;:::i;:::-;20430;20498:2;20487:9;20483:18;20474:6;20430:72;:::i;:::-;20549:9;20543:4;20539:20;20534:2;20523:9;20519:18;20512:48;20577:76;20648:4;20639:6;20577:76;:::i;:::-;20569:84;;20220:440;;;;;;;:::o;20666:210::-;;20791:2;20780:9;20776:18;20768:26;;20804:65;20866:1;20855:9;20851:17;20842:6;20804:65;:::i;:::-;20758:118;;;;:::o;20882:222::-;;21013:2;21002:9;20998:18;20990:26;;21026:71;21094:1;21083:9;21079:17;21070:6;21026:71;:::i;:::-;20980:124;;;;:::o;21110:313::-;;21261:2;21250:9;21246:18;21238:26;;21310:9;21304:4;21300:20;21296:1;21285:9;21281:17;21274:47;21338:78;21411:4;21402:6;21338:78;:::i;:::-;21330:86;;21228:195;;;;:::o;21429:419::-;;21633:2;21622:9;21618:18;21610:26;;21682:9;21676:4;21672:20;21668:1;21657:9;21653:17;21646:47;21710:131;21836:4;21710:131;:::i;:::-;21702:139;;21600:248;;;:::o;21854:419::-;;22058:2;22047:9;22043:18;22035:26;;22107:9;22101:4;22097:20;22093:1;22082:9;22078:17;22071:47;22135:131;22261:4;22135:131;:::i;:::-;22127:139;;22025:248;;;:::o;22279:419::-;;22483:2;22472:9;22468:18;22460:26;;22532:9;22526:4;22522:20;22518:1;22507:9;22503:17;22496:47;22560:131;22686:4;22560:131;:::i;:::-;22552:139;;22450:248;;;:::o;22704:419::-;;22908:2;22897:9;22893:18;22885:26;;22957:9;22951:4;22947:20;22943:1;22932:9;22928:17;22921:47;22985:131;23111:4;22985:131;:::i;:::-;22977:139;;22875:248;;;:::o;23129:419::-;;23333:2;23322:9;23318:18;23310:26;;23382:9;23376:4;23372:20;23368:1;23357:9;23353:17;23346:47;23410:131;23536:4;23410:131;:::i;:::-;23402:139;;23300:248;;;:::o;23554:419::-;;23758:2;23747:9;23743:18;23735:26;;23807:9;23801:4;23797:20;23793:1;23782:9;23778:17;23771:47;23835:131;23961:4;23835:131;:::i;:::-;23827:139;;23725:248;;;:::o;23979:419::-;;24183:2;24172:9;24168:18;24160:26;;24232:9;24226:4;24222:20;24218:1;24207:9;24203:17;24196:47;24260:131;24386:4;24260:131;:::i;:::-;24252:139;;24150:248;;;:::o;24404:419::-;;24608:2;24597:9;24593:18;24585:26;;24657:9;24651:4;24647:20;24643:1;24632:9;24628:17;24621:47;24685:131;24811:4;24685:131;:::i;:::-;24677:139;;24575:248;;;:::o;24829:419::-;;25033:2;25022:9;25018:18;25010:26;;25082:9;25076:4;25072:20;25068:1;25057:9;25053:17;25046:47;25110:131;25236:4;25110:131;:::i;:::-;25102:139;;25000:248;;;:::o;25254:419::-;;25458:2;25447:9;25443:18;25435:26;;25507:9;25501:4;25497:20;25493:1;25482:9;25478:17;25471:47;25535:131;25661:4;25535:131;:::i;:::-;25527:139;;25425:248;;;:::o;25679:419::-;;25883:2;25872:9;25868:18;25860:26;;25932:9;25926:4;25922:20;25918:1;25907:9;25903:17;25896:47;25960:131;26086:4;25960:131;:::i;:::-;25952:139;;25850:248;;;:::o;26104:419::-;;26308:2;26297:9;26293:18;26285:26;;26357:9;26351:4;26347:20;26343:1;26332:9;26328:17;26321:47;26385:131;26511:4;26385:131;:::i;:::-;26377:139;;26275:248;;;:::o;26529:419::-;;26733:2;26722:9;26718:18;26710:26;;26782:9;26776:4;26772:20;26768:1;26757:9;26753:17;26746:47;26810:131;26936:4;26810:131;:::i;:::-;26802:139;;26700:248;;;:::o;26954:419::-;;27158:2;27147:9;27143:18;27135:26;;27207:9;27201:4;27197:20;27193:1;27182:9;27178:17;27171:47;27235:131;27361:4;27235:131;:::i;:::-;27227:139;;27125:248;;;:::o;27379:419::-;;27583:2;27572:9;27568:18;27560:26;;27632:9;27626:4;27622:20;27618:1;27607:9;27603:17;27596:47;27660:131;27786:4;27660:131;:::i;:::-;27652:139;;27550:248;;;:::o;27804:419::-;;28008:2;27997:9;27993:18;27985:26;;28057:9;28051:4;28047:20;28043:1;28032:9;28028:17;28021:47;28085:131;28211:4;28085:131;:::i;:::-;28077:139;;27975:248;;;:::o;28229:419::-;;28433:2;28422:9;28418:18;28410:26;;28482:9;28476:4;28472:20;28468:1;28457:9;28453:17;28446:47;28510:131;28636:4;28510:131;:::i;:::-;28502:139;;28400:248;;;:::o;28654:419::-;;28858:2;28847:9;28843:18;28835:26;;28907:9;28901:4;28897:20;28893:1;28882:9;28878:17;28871:47;28935:131;29061:4;28935:131;:::i;:::-;28927:139;;28825:248;;;:::o;29079:419::-;;29283:2;29272:9;29268:18;29260:26;;29332:9;29326:4;29322:20;29318:1;29307:9;29303:17;29296:47;29360:131;29486:4;29360:131;:::i;:::-;29352:139;;29250:248;;;:::o;29504:419::-;;29708:2;29697:9;29693:18;29685:26;;29757:9;29751:4;29747:20;29743:1;29732:9;29728:17;29721:47;29785:131;29911:4;29785:131;:::i;:::-;29777:139;;29675:248;;;:::o;29929:419::-;;30133:2;30122:9;30118:18;30110:26;;30182:9;30176:4;30172:20;30168:1;30157:9;30153:17;30146:47;30210:131;30336:4;30210:131;:::i;:::-;30202:139;;30100:248;;;:::o;30354:419::-;;30558:2;30547:9;30543:18;30535:26;;30607:9;30601:4;30597:20;30593:1;30582:9;30578:17;30571:47;30635:131;30761:4;30635:131;:::i;:::-;30627:139;;30525:248;;;:::o;30779:222::-;;30910:2;30899:9;30895:18;30887:26;;30923:71;30991:1;30980:9;30976:17;30967:6;30923:71;:::i;:::-;30877:124;;;;:::o;31007:283::-;;31073:2;31067:9;31057:19;;31115:4;31107:6;31103:17;31222:6;31210:10;31207:22;31186:18;31174:10;31171:34;31168:62;31165:2;;;31233:18;;:::i;:::-;31165:2;31273:10;31269:2;31262:22;31047:243;;;;:::o;31296:331::-;;31447:18;31439:6;31436:30;31433:2;;;31469:18;;:::i;:::-;31433:2;31554:4;31550:9;31543:4;31535:6;31531:17;31527:33;31519:41;;31615:4;31609;31605:15;31597:23;;31362:265;;;:::o;31633:332::-;;31785:18;31777:6;31774:30;31771:2;;;31807:18;;:::i;:::-;31771:2;31892:4;31888:9;31881:4;31873:6;31869:17;31865:33;31857:41;;31953:4;31947;31943:15;31935:23;;31700:265;;;:::o;31971:98::-;;32056:5;32050:12;32040:22;;32029:40;;;:::o;32075:99::-;;32161:5;32155:12;32145:22;;32134:40;;;:::o;32180:168::-;;32297:6;32292:3;32285:19;32337:4;32332:3;32328:14;32313:29;;32275:73;;;;:::o;32354:169::-;;32472:6;32467:3;32460:19;32512:4;32507:3;32503:14;32488:29;;32450:73;;;;:::o;32529:148::-;;32668:3;32653:18;;32643:34;;;;:::o;32683:305::-;;32742:20;32760:1;32742:20;:::i;:::-;32737:25;;32776:20;32794:1;32776:20;:::i;:::-;32771:25;;32930:1;32862:66;32858:74;32855:1;32852:81;32849:2;;;32936:18;;:::i;:::-;32849:2;32980:1;32977;32973:9;32966:16;;32727:261;;;;:::o;32994:185::-;;33051:20;33069:1;33051:20;:::i;:::-;33046:25;;33085:20;33103:1;33085:20;:::i;:::-;33080:25;;33124:1;33114:2;;33129:18;;:::i;:::-;33114:2;33171:1;33168;33164:9;33159:14;;33036:143;;;;:::o;33185:348::-;;33248:20;33266:1;33248:20;:::i;:::-;33243:25;;33282:20;33300:1;33282:20;:::i;:::-;33277:25;;33470:1;33402:66;33398:74;33395:1;33392:81;33387:1;33380:9;33373:17;33369:105;33366:2;;;33477:18;;:::i;:::-;33366:2;33525:1;33522;33518:9;33507:20;;33233:300;;;;:::o;33539:191::-;;33599:20;33617:1;33599:20;:::i;:::-;33594:25;;33633:20;33651:1;33633:20;:::i;:::-;33628:25;;33672:1;33669;33666:8;33663:2;;;33677:18;;:::i;:::-;33663:2;33722:1;33719;33715:9;33707:17;;33584:146;;;;:::o;33736:96::-;;33802:24;33820:5;33802:24;:::i;:::-;33791:35;;33781:51;;;:::o;33838:90::-;;33915:5;33908:13;33901:21;33890:32;;33880:48;;;:::o;33934:77::-;;34000:5;33989:16;;33979:32;;;:::o;34017:149::-;;34093:66;34086:5;34082:78;34071:89;;34061:105;;;:::o;34172:126::-;;34249:42;34242:5;34238:54;34227:65;;34217:81;;;:::o;34304:77::-;;34370:5;34359:16;;34349:32;;;:::o;34387:154::-;34471:6;34466:3;34461;34448:30;34533:1;34524:6;34519:3;34515:16;34508:27;34438:103;;;:::o;34547:307::-;34615:1;34625:113;34639:6;34636:1;34633:13;34625:113;;;34724:1;34719:3;34715:11;34709:18;34705:1;34700:3;34696:11;34689:39;34661:2;34658:1;34654:10;34649:15;;34625:113;;;34756:6;34753:1;34750:13;34747:2;;;34836:1;34827:6;34822:3;34818:16;34811:27;34747:2;34596:258;;;;:::o;34860:171::-;;34922:24;34940:5;34922:24;:::i;:::-;34913:33;;34968:4;34961:5;34958:15;34955:2;;;34976:18;;:::i;:::-;34955:2;35023:1;35016:5;35012:13;35005:20;;34903:128;;;:::o;35037:320::-;;35118:1;35112:4;35108:12;35098:22;;35165:1;35159:4;35155:12;35186:18;35176:2;;35242:4;35234:6;35230:17;35220:27;;35176:2;35304;35296:6;35293:14;35273:18;35270:38;35267:2;;;35323:18;;:::i;:::-;35267:2;35088:269;;;;:::o;35363:233::-;;35425:24;35443:5;35425:24;:::i;:::-;35416:33;;35471:66;35464:5;35461:77;35458:2;;;35541:18;;:::i;:::-;35458:2;35588:1;35581:5;35577:13;35570:20;;35406:190;;;:::o;35602:176::-;;35651:20;35669:1;35651:20;:::i;:::-;35646:25;;35685:20;35703:1;35685:20;:::i;:::-;35680:25;;35724:1;35714:2;;35729:18;;:::i;:::-;35714:2;35770:1;35767;35763:9;35758:14;;35636:142;;;;:::o;35784:180::-;35832:77;35829:1;35822:88;35929:4;35926:1;35919:15;35953:4;35950:1;35943:15;35970:180;36018:77;36015:1;36008:88;36115:4;36112:1;36105:15;36139:4;36136:1;36129:15;36156:180;36204:77;36201:1;36194:88;36301:4;36298:1;36291:15;36325:4;36322:1;36315:15;36342:180;36390:77;36387:1;36380:88;36487:4;36484:1;36477:15;36511:4;36508:1;36501:15;36528:102;;36620:2;36616:7;36611:2;36604:5;36600:14;36596:28;36586:38;;36576:54;;;:::o;36636:122::-;36709:24;36727:5;36709:24;:::i;:::-;36702:5;36699:35;36689:2;;36748:1;36745;36738:12;36689:2;36679:79;:::o;36764:116::-;36834:21;36849:5;36834:21;:::i;:::-;36827:5;36824:32;36814:2;;36870:1;36867;36860:12;36814:2;36804:76;:::o;36886:122::-;36959:24;36977:5;36959:24;:::i;:::-;36952:5;36949:35;36939:2;;36998:1;36995;36988:12;36939:2;36929:79;:::o;37014:120::-;37086:23;37103:5;37086:23;:::i;:::-;37079:5;37076:34;37066:2;;37124:1;37121;37114:12;37066:2;37056:78;:::o;37140:122::-;37213:24;37231:5;37213:24;:::i;:::-;37206:5;37203:35;37193:2;;37252:1;37249;37242:12;37193:2;37183:79;:::o

Swarm Source

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