ETH Price: $1,871.09 (-0.58%)

Token

SBT (SBT)

Overview

Max Total Supply

437 SBT

Holders

437

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SBT
0xa7aa2cced2d89e0a345af6383e28f3ee47c63cb4
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
SBTContract

Compiler Version
v0.8.28+commit.7893614a

ZkSolc Version
v1.5.11

Optimization Enabled:
Yes with Mode 3

Other Settings:
cancun EvmVersion
File 1 of 26 : SBT.sol
// SPDX-License-Identifier: MIT
// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.22;

import {AccessControl} from "@openzeppelin/contracts/access/AccessControl.sol";
import {ERC721} from "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import {ERC721Burnable} from "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import {ERC721Enumerable} from "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import {ERC721Pausable} from "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol";
import {ERC721URIStorage} from "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";

contract SBTContract is
    ERC721,
    ERC721Enumerable,
    ERC721URIStorage,
    ERC721Pausable,
    AccessControl,
    ERC721Burnable
{
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    uint256 private _nextTokenId;

    bool public isLock;
    mapping(address => bool) public whitelist;

    mapping(address => uint256) private mintedAmount;
    bool public isLimitMintAmount;

    struct MintInfo {
        address caller;
        address holder;
        uint256 ts;
        uint256 platform;
        uint256 boxType;
        uint256 roleType;
    }

    mapping(uint256 => MintInfo) private tokenMintInfo;
    mapping(uint256 => bool) public platformMap;

    string public baseURI = "https://yf.yuliverse.com/cfg/mr/";
    string public baseExtension = ".json";

    constructor() ERC721("SBT", "SBT") {
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(PAUSER_ROLE, msg.sender);
        _grantRole(MINTER_ROLE, msg.sender);

        platformMap[1] = true; // official
        platformMap[99] = true; // devMock

        setWhitelist(msg.sender, true);
        safeMint(msg.sender, 99);
        burn(0);
    }

    fallback() external {}

    /* ========== READ FUNCTIONS ========== */

    function getTokenIdMintInfo(uint256 tokenId)
        public
        view
        returns (MintInfo memory)
    {
        return tokenMintInfo[tokenId];
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function getMintedAmount(address owner) public view returns (uint256) {
        return mintedAmount[owner];
    }

    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    /* ========== WRITE FUNCTIONS ========== */

    function safeMint(address to, uint256 platform)
        public
        onlyRole(MINTER_ROLE)
        returns (uint256)
    {
        require(platformMap[platform], "platform invalid");
        if (isLimitMintAmount) {
            require(mintedAmount[to] == 0, "Exceed the maximum limit");
        }

        uint256 tokenId = _nextTokenId++;

        tokenMintInfo[tokenId] = MintInfo({
            caller: msg.sender,
            holder: to,
            ts: block.timestamp,
            platform: platform,
            boxType: 1,
            roleType: 1
        });

        if (tokenId > 0) {
            mintedAmount[to] += 1;
        }

        _safeMint(to, tokenId);
        // _setTokenURI(tokenId, uri);
        return tokenId;
    }

    // The following functions are overrides required by Solidity.

    function _update(
        address to,
        uint256 tokenId,
        address auth
    )
        internal
        override(ERC721, ERC721Enumerable, ERC721Pausable)
        returns (address)
    {
        if (!whitelist[msg.sender]) {
            address _from = _ownerOf(tokenId);
            if (_from != address(0)) {
                // transfer
                require(isLock == false, "Locked");
            }
        }

        return super._update(to, tokenId, auth);
    }

    function _increaseBalance(address account, uint128 value)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._increaseBalance(account, value);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        _requireOwned(tokenId);
        string memory currentBaseURI = _baseURI();

        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, "12", baseExtension))
                : "";
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable, ERC721URIStorage, AccessControl)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    /* ========== Admin FUNCTIONS ========== */
    function pause() public onlyRole(PAUSER_ROLE) {
        _pause();
    }

    function unpause() public onlyRole(PAUSER_ROLE) {
        _unpause();
    }

    function setWhitelist(address to, bool _value)
        public
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        whitelist[to] = _value;
    }

    function setLock(bool _value) public onlyRole(DEFAULT_ADMIN_ROLE) {
        isLock = _value;
    }

    function setMintAmountLock(bool _value)
        public
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        isLimitMintAmount = _value;
    }

    function setBaseURI(string memory _newBaseURI)
        public
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        baseExtension = _newBaseExtension;
    }

    function setPlatform(uint256 _new, bool _val)
        external
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        platformMap[_new] = _val;
    }
}

File 2 of 26 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol)

pragma solidity ^0.8.20;

import {IAccessControl} from "./IAccessControl.sol";
import {Context} from "../utils/Context.sol";
import {ERC165} from "../utils/introspection/ERC165.sol";

/**
 * @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:
 *
 * ```solidity
 * 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}:
 *
 * ```solidity
 * 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. We recommend using {AccessControlDefaultAdminRules}
 * to enforce additional security measures for this role.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address account => bool) hasRole;
        bytes32 adminRole;
    }

    mapping(bytes32 role => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with an {AccessControlUnauthorizedAccount} error including the required role.
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @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 virtual returns (bool) {
        return _roles[role].hasRole[account];
    }

    /**
     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`
     * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account`
     * is missing `role`.
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert AccessControlUnauthorizedAccount(account, role);
        }
    }

    /**
     * @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 virtual 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.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual 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.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual 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 `callerConfirmation`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address callerConfirmation) public virtual {
        if (callerConfirmation != _msgSender()) {
            revert AccessControlBadConfirmation();
        }

        _revokeRole(role, callerConfirmation);
    }

    /**
     * @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 Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual returns (bool) {
        if (!hasRole(role, account)) {
            _roles[role].hasRole[account] = true;
            emit RoleGranted(role, account, _msgSender());
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {
        if (hasRole(role, account)) {
            _roles[role].hasRole[account] = false;
            emit RoleRevoked(role, account, _msgSender());
            return true;
        } else {
            return false;
        }
    }
}

File 3 of 26 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.20;

import {IERC721} from "./IERC721.sol";
import {IERC721Metadata} from "./extensions/IERC721Metadata.sol";
import {ERC721Utils} from "./utils/ERC721Utils.sol";
import {Context} from "../../utils/Context.sol";
import {Strings} from "../../utils/Strings.sol";
import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol";
import {IERC721Errors} from "../../interfaces/draft-IERC6093.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    mapping(uint256 tokenId => address) private _owners;

    mapping(address owner => uint256) private _balances;

    mapping(uint256 tokenId => address) private _tokenApprovals;

    mapping(address owner => mapping(address operator => 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 returns (uint256) {
        if (owner == address(0)) {
            revert ERC721InvalidOwner(address(0));
        }
        return _balances[owner];
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual returns (string memory) {
        _requireOwned(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string.concat(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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual {
        _approve(to, tokenId, _msgSender());
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual returns (address) {
        _requireOwned(tokenId);

        return _getApproved(tokenId);
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
        address previousOwner = _update(to, tokenId, _msgSender());
        if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {
        transferFrom(from, to, tokenId);
        ERC721Utils.checkOnERC721Received(_msgSender(), from, to, tokenId, data);
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     *
     * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
     * core ERC-721 logic MUST be matched with the use of {_increaseBalance} to keep balances
     * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by
     * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.
     */
    function _getApproved(uint256 tokenId) internal view virtual returns (address) {
        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in
     * particular (ignoring whether it is owned by `owner`).
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {
        return
            spender != address(0) &&
            (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);
    }

    /**
     * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.
     * Reverts if:
     * - `spender` does not have approval from `owner` for `tokenId`.
     * - `spender` does not have approval to manage all of `owner`'s assets.
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {
        if (!_isAuthorized(owner, spender, tokenId)) {
            if (owner == address(0)) {
                revert ERC721NonexistentToken(tokenId);
            } else {
                revert ERC721InsufficientApproval(spender, tokenId);
            }
        }
    }

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that
     * a uint256 would ever overflow from increments when these increments are bounded to uint128 values.
     *
     * WARNING: Increasing an account's balance using this function tends to be paired with an override of the
     * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership
     * remain consistent with one another.
     */
    function _increaseBalance(address account, uint128 value) internal virtual {
        unchecked {
            _balances[account] += value;
        }
    }

    /**
     * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner
     * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that
     * `auth` is either the owner of the token, or approved to operate on the token (by the owner).
     *
     * Emits a {Transfer} event.
     *
     * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {
        address from = _ownerOf(tokenId);

        // Perform (optional) operator check
        if (auth != address(0)) {
            _checkAuthorized(from, auth, tokenId);
        }

        // Execute the update
        if (from != address(0)) {
            // Clear approval. No need to re-authorize or emit the Approval event
            _approve(address(0), tokenId, address(0), false);

            unchecked {
                _balances[from] -= 1;
            }
        }

        if (to != address(0)) {
            unchecked {
                _balances[to] += 1;
            }
        }

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        return from;
    }

    /**
     * @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 {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner != address(0)) {
            revert ERC721InvalidSender(address(0));
        }
    }

    /**
     * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.
     *
     * 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 {
        _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);
        ERC721Utils.checkOnERC721Received(_msgSender(), address(0), to, tokenId, data);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal {
        address previousOwner = _update(address(0), tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(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 {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        } else if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients
     * are aware of the ERC-721 standard 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 like {safeTransferFrom} in the sense that it invokes
     * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `tokenId` token must exist and be owned by `from`.
     * - `to` cannot be the zero address.
     * - `from` cannot be the zero address.
     * - 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) internal {
        _safeTransfer(from, to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        ERC721Utils.checkOnERC721Received(_msgSender(), from, to, tokenId, data);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is
     * either the owner of the token, or approved to operate on all tokens held by this owner.
     *
     * Emits an {Approval} event.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address to, uint256 tokenId, address auth) internal {
        _approve(to, tokenId, auth, true);
    }

    /**
     * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not
     * emitted in the context of transfers.
     */
    function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {
        // Avoid reading the owner unless necessary
        if (emitEvent || auth != address(0)) {
            address owner = _requireOwned(tokenId);

            // We do not use _isAuthorized because single-token approvals should not be able to call approve
            if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {
                revert ERC721InvalidApprover(auth);
            }

            if (emitEvent) {
                emit Approval(owner, to, tokenId);
            }
        }

        _tokenApprovals[tokenId] = to;
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Requirements:
     * - operator can't be the address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        if (operator == address(0)) {
            revert ERC721InvalidOperator(operator);
        }
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).
     * Returns the owner.
     *
     * Overrides to ownership logic should be done to {_ownerOf}.
     */
    function _requireOwned(uint256 tokenId) internal view returns (address) {
        address owner = _ownerOf(tokenId);
        if (owner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
        return owner;
    }
}

File 4 of 26 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.20;

import {ERC721} from "../ERC721.sol";
import {IERC721Enumerable} from "./IERC721Enumerable.sol";
import {IERC165} from "../../../utils/introspection/ERC165.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the ERC that adds enumerability
 * of all the token ids in the contract as well as all token ids owned by each account.
 *
 * CAUTION: {ERC721} extensions that implement custom `balanceOf` logic, such as {ERC721Consecutive},
 * interfere with enumerability and should not be used together with {ERC721Enumerable}.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    mapping(address owner => mapping(uint256 index => uint256)) private _ownedTokens;
    mapping(uint256 tokenId => uint256) private _ownedTokensIndex;

    uint256[] private _allTokens;
    mapping(uint256 tokenId => uint256) private _allTokensIndex;

    /**
     * @dev An `owner`'s token query was out of bounds for `index`.
     *
     * NOTE: The owner being `address(0)` indicates a global out of bounds index.
     */
    error ERC721OutOfBoundsIndex(address owner, uint256 index);

    /**
     * @dev Batch mint is not allowed.
     */
    error ERC721EnumerableForbiddenBatchMint();

    /**
     * @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 returns (uint256) {
        if (index >= balanceOf(owner)) {
            revert ERC721OutOfBoundsIndex(owner, index);
        }
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual returns (uint256) {
        if (index >= totalSupply()) {
            revert ERC721OutOfBoundsIndex(address(0), index);
        }
        return _allTokens[index];
    }

    /**
     * @dev See {ERC721-_update}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual override returns (address) {
        address previousOwner = super._update(to, tokenId, auth);

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

        return previousOwner;
    }

    /**
     * @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 = balanceOf(to) - 1;
        _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 = balanceOf(from);
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        mapping(uint256 index => uint256) storage _ownedTokensByOwner = _ownedTokens[from];

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

            _ownedTokensByOwner[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 _ownedTokensByOwner[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();
    }

    /**
     * See {ERC721-_increaseBalance}. We need that to account tokens that were minted in batch
     */
    function _increaseBalance(address account, uint128 amount) internal virtual override {
        if (amount > 0) {
            revert ERC721EnumerableForbiddenBatchMint();
        }
        super._increaseBalance(account, amount);
    }
}

File 5 of 26 : ERC721Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/extensions/ERC721Pausable.sol)

pragma solidity ^0.8.20;

import {ERC721} from "../ERC721.sol";
import {Pausable} from "../../../utils/Pausable.sol";

/**
 * @dev ERC-721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * IMPORTANT: This contract does not include public pause and unpause functions. In
 * addition to inheriting this contract, you must define both functions, invoking the
 * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate
 * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will
 * make the contract pause mechanism of the contract unreachable, and thus unusable.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_update}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _update(
        address to,
        uint256 tokenId,
        address auth
    ) internal virtual override whenNotPaused returns (address) {
        return super._update(to, tokenId, auth);
    }
}

File 6 of 26 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.20;

import {ERC721} from "../ERC721.sol";
import {Strings} from "../../../utils/Strings.sol";
import {IERC4906} from "../../../interfaces/IERC4906.sol";
import {IERC165} from "../../../interfaces/IERC165.sol";

/**
 * @dev ERC-721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is IERC4906, ERC721 {
    using Strings for uint256;

    // Interface ID as defined in ERC-4906. This does not correspond to a traditional interface ID as ERC-4906 only
    // defines events and does not include any external function.
    bytes4 private constant ERC4906_INTERFACE_ID = bytes4(0x49064906);

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

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

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

        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 string.concat).
        if (bytes(_tokenURI).length > 0) {
            return string.concat(base, _tokenURI);
        }

        return super.tokenURI(tokenId);
    }

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

File 7 of 26 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.20;

import {ERC721} from "../ERC721.sol";
import {Context} from "../../../utils/Context.sol";

/**
 * @title ERC-721 Burnable Token
 * @dev ERC-721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
        _update(address(0), tokenId, _msgSender());
    }
}

File 8 of 26 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

File 9 of 26 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Strings.sol)

pragma solidity ^0.8.20;

import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";

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

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            assembly ("memory-safe") {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                assembly ("memory-safe") {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        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_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal
     * representation, according to EIP-55.
     */
    function toChecksumHexString(address addr) internal pure returns (string memory) {
        bytes memory buffer = bytes(toHexString(addr));

        // hash the hex part of buffer (skip length + 2 bytes, length 40)
        uint256 hashValue;
        assembly ("memory-safe") {
            hashValue := shr(96, keccak256(add(buffer, 0x22), 40))
        }

        for (uint256 i = 41; i > 1; --i) {
            // possible values for buffer[i] are 48 (0) to 57 (9) and 97 (a) to 102 (f)
            if (hashValue & 0xf > 7 && uint8(buffer[i]) > 96) {
                // case shift by xoring with 0x20
                buffer[i] ^= 0x20;
            }
            hashValue >>= 4;
        }
        return string(buffer);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 10 of 26 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC-165 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);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 11 of 26 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 12 of 26 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    bool private _paused;

    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    /**
     * @dev The operation failed because the contract is paused.
     */
    error EnforcedPause();

    /**
     * @dev The operation failed because the contract is not paused.
     */
    error ExpectedPause();

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        if (paused()) {
            revert EnforcedPause();
        }
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        if (!paused()) {
            revert ExpectedPause();
        }
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 13 of 26 : IERC4906.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC4906.sol)

pragma solidity ^0.8.20;

import {IERC165} from "./IERC165.sol";
import {IERC721} from "./IERC721.sol";

/// @title ERC-721 Metadata Update Extension
interface IERC4906 is IERC165, IERC721 {
    /// @dev This event emits when the metadata of a token is changed.
    /// So that the third-party platforms such as NFT market could
    /// timely update the images and related attributes of the NFT.
    event MetadataUpdate(uint256 _tokenId);

    /// @dev This event emits when the metadata of a range of tokens is changed.
    /// So that the third-party platforms such as NFT market could
    /// timely update the images and related attributes of the NFTs.
    event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId);
}

File 14 of 26 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../utils/introspection/IERC165.sol";

File 15 of 26 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (access/IAccessControl.sol)

pragma solidity ^0.8.20;

/**
 * @dev External interface of AccessControl declared to support ERC-165 detection.
 */
interface IAccessControl {
    /**
     * @dev The `account` is missing a role.
     */
    error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);

    /**
     * @dev The caller of a function is not the expected one.
     *
     * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.
     */
    error AccessControlBadConfirmation();

    /**
     * @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.
     */
    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. This account bears the admin role (for the granted role).
     * Expected in cases where the role was granted using the internal {AccessControl-_grantRole}.
     */
    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 `callerConfirmation`.
     */
    function renounceRole(bytes32 role, address callerConfirmation) external;
}

File 16 of 26 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

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

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

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

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

File 17 of 26 : ERC721Utils.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/utils/ERC721Utils.sol)

pragma solidity ^0.8.20;

import {IERC721Receiver} from "../IERC721Receiver.sol";
import {IERC721Errors} from "../../../interfaces/draft-IERC6093.sol";

/**
 * @dev Library that provide common ERC-721 utility functions.
 *
 * See https://eips.ethereum.org/EIPS/eip-721[ERC-721].
 *
 * _Available since v5.1._
 */
library ERC721Utils {
    /**
     * @dev Performs an acceptance check for the provided `operator` by calling {IERC721-onERC721Received}
     * on the `to` address. The `operator` is generally the address that initiated the token transfer (i.e. `msg.sender`).
     *
     * The acceptance call is not executed and treated as a no-op if the target address doesn't contain code (i.e. an EOA).
     * Otherwise, the recipient must implement {IERC721Receiver-onERC721Received} and return the acceptance magic value to accept
     * the transfer.
     */
    function checkOnERC721Received(
        address operator,
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal {
        if (to.code.length > 0) {
            try IERC721Receiver(to).onERC721Received(operator, from, tokenId, data) returns (bytes4 retval) {
                if (retval != IERC721Receiver.onERC721Received.selector) {
                    // Token rejected
                    revert IERC721Errors.ERC721InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    // non-IERC721Receiver implementer
                    revert IERC721Errors.ERC721InvalidReceiver(to);
                } else {
                    assembly ("memory-safe") {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }
}

File 18 of 26 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.20;

import {IERC721} from "../IERC721.sol";

/**
 * @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 19 of 26 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.20;

import {IERC721} from "../IERC721.sol";

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

    /**
     * @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 20 of 26 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[ERC].
 *
 * 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[ERC 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 21 of 26 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

import {SafeCast} from "./SafeCast.sol";

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.
     *
     * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.
     * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute
     * one branch when needed, making this function more expensive.
     */
    function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {
        unchecked {
            // branchless ternary works because:
            // b ^ (a ^ b) == a
            // b ^ 0 == b
            return b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));
        }
    }

    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return ternary(a > b, a, b);
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return ternary(a < b, a, b);
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // Formula from the "Bit Twiddling Hacks" by Sean Eron Anderson.
            // Since `n` is a signed integer, the generated bytecode will use the SAR opcode to perform the right shift,
            // taking advantage of the most significant (or "sign" bit) in two's complement representation.
            // This opcode adds new most significant bits set to the value of the previous most significant bit. As a result,
            // the mask will either be `bytes32(0)` (if n is positive) or `~bytes32(0)` (if n is negative).
            int256 mask = n >> 255;

            // A `bytes32(0)` mask leaves the input unchanged, while a `~bytes32(0)` mask complements it.
            return uint256((n + mask) ^ mask);
        }
    }
}

File 22 of 26 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC721.sol)

pragma solidity ^0.8.20;

import {IERC721} from "../token/ERC721/IERC721.sol";

File 23 of 26 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

import {Panic} from "../Panic.sol";
import {SafeCast} from "./SafeCast.sol";

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an success flag (no overflow).
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.
     *
     * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.
     * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute
     * one branch when needed, making this function more expensive.
     */
    function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) {
        unchecked {
            // branchless ternary works because:
            // b ^ (a ^ b) == a
            // b ^ 0 == b
            return b ^ ((a ^ b) * SafeCast.toUint(condition));
        }
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return ternary(a > b, a, b);
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return ternary(a < b, a, b);
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            Panic.panic(Panic.DIVISION_BY_ZERO);
        }

        // The following calculation ensures accurate ceiling division without overflow.
        // Since a is non-zero, (a - 1) / b will not overflow.
        // The largest possible result occurs when (a - 1) / b is type(uint256).max,
        // but the largest value we can obtain is type(uint256).max - 1, which happens
        // when a = type(uint256).max and b = 1.
        unchecked {
            return SafeCast.toUint(a > 0) * ((a - 1) / b + 1);
        }
    }

    /**
     * @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     *
     * Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use
            // the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2²⁵⁶ + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0.
            if (denominator <= prod1) {
                Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW));
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2²⁵⁶ / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such
            // that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv ≡ 1 mod 2⁴.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2⁸
            inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶
            inverse *= 2 - denominator * inverse; // inverse mod 2³²
            inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴
            inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸
            inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2²⁵⁶. Since the preconditions guarantee that the outcome is
            // less than 2²⁵⁶, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @dev Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0);
    }

    /**
     * @dev Calculate the modular multiplicative inverse of a number in Z/nZ.
     *
     * If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0.
     * If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible.
     *
     * If the input value is not inversible, 0 is returned.
     *
     * NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the
     * inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}.
     */
    function invMod(uint256 a, uint256 n) internal pure returns (uint256) {
        unchecked {
            if (n == 0) return 0;

            // The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version)
            // Used to compute integers x and y such that: ax + ny = gcd(a, n).
            // When the gcd is 1, then the inverse of a modulo n exists and it's x.
            // ax + ny = 1
            // ax = 1 + (-y)n
            // ax ≡ 1 (mod n) # x is the inverse of a modulo n

            // If the remainder is 0 the gcd is n right away.
            uint256 remainder = a % n;
            uint256 gcd = n;

            // Therefore the initial coefficients are:
            // ax + ny = gcd(a, n) = n
            // 0a + 1n = n
            int256 x = 0;
            int256 y = 1;

            while (remainder != 0) {
                uint256 quotient = gcd / remainder;

                (gcd, remainder) = (
                    // The old remainder is the next gcd to try.
                    remainder,
                    // Compute the next remainder.
                    // Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd
                    // where gcd is at most n (capped to type(uint256).max)
                    gcd - remainder * quotient
                );

                (x, y) = (
                    // Increment the coefficient of a.
                    y,
                    // Decrement the coefficient of n.
                    // Can overflow, but the result is casted to uint256 so that the
                    // next value of y is "wrapped around" to a value between 0 and n - 1.
                    x - y * int256(quotient)
                );
            }

            if (gcd != 1) return 0; // No inverse exists.
            return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative.
        }
    }

    /**
     * @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`.
     *
     * From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is
     * prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that
     * `a**(p-2)` is the modular multiplicative inverse of a in Fp.
     *
     * NOTE: this function does NOT check that `p` is a prime greater than `2`.
     */
    function invModPrime(uint256 a, uint256 p) internal view returns (uint256) {
        unchecked {
            return Math.modExp(a, p - 2, p);
        }
    }

    /**
     * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m)
     *
     * Requirements:
     * - modulus can't be zero
     * - underlying staticcall to precompile must succeed
     *
     * IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make
     * sure the chain you're using it on supports the precompiled contract for modular exponentiation
     * at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise,
     * the underlying function will succeed given the lack of a revert, but the result may be incorrectly
     * interpreted as 0.
     */
    function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) {
        (bool success, uint256 result) = tryModExp(b, e, m);
        if (!success) {
            Panic.panic(Panic.DIVISION_BY_ZERO);
        }
        return result;
    }

    /**
     * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m).
     * It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying
     * to operate modulo 0 or if the underlying precompile reverted.
     *
     * IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain
     * you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in
     * https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack
     * of a revert, but the result may be incorrectly interpreted as 0.
     */
    function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) {
        if (m == 0) return (false, 0);
        assembly ("memory-safe") {
            let ptr := mload(0x40)
            // | Offset    | Content    | Content (Hex)                                                      |
            // |-----------|------------|--------------------------------------------------------------------|
            // | 0x00:0x1f | size of b  | 0x0000000000000000000000000000000000000000000000000000000000000020 |
            // | 0x20:0x3f | size of e  | 0x0000000000000000000000000000000000000000000000000000000000000020 |
            // | 0x40:0x5f | size of m  | 0x0000000000000000000000000000000000000000000000000000000000000020 |
            // | 0x60:0x7f | value of b | 0x<.............................................................b> |
            // | 0x80:0x9f | value of e | 0x<.............................................................e> |
            // | 0xa0:0xbf | value of m | 0x<.............................................................m> |
            mstore(ptr, 0x20)
            mstore(add(ptr, 0x20), 0x20)
            mstore(add(ptr, 0x40), 0x20)
            mstore(add(ptr, 0x60), b)
            mstore(add(ptr, 0x80), e)
            mstore(add(ptr, 0xa0), m)

            // Given the result < m, it's guaranteed to fit in 32 bytes,
            // so we can use the memory scratch space located at offset 0.
            success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20)
            result := mload(0x00)
        }
    }

    /**
     * @dev Variant of {modExp} that supports inputs of arbitrary length.
     */
    function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) {
        (bool success, bytes memory result) = tryModExp(b, e, m);
        if (!success) {
            Panic.panic(Panic.DIVISION_BY_ZERO);
        }
        return result;
    }

    /**
     * @dev Variant of {tryModExp} that supports inputs of arbitrary length.
     */
    function tryModExp(
        bytes memory b,
        bytes memory e,
        bytes memory m
    ) internal view returns (bool success, bytes memory result) {
        if (_zeroBytes(m)) return (false, new bytes(0));

        uint256 mLen = m.length;

        // Encode call args in result and move the free memory pointer
        result = abi.encodePacked(b.length, e.length, mLen, b, e, m);

        assembly ("memory-safe") {
            let dataPtr := add(result, 0x20)
            // Write result on top of args to avoid allocating extra memory.
            success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen)
            // Overwrite the length.
            // result.length > returndatasize() is guaranteed because returndatasize() == m.length
            mstore(result, mLen)
            // Set the memory pointer after the returned data.
            mstore(0x40, add(dataPtr, mLen))
        }
    }

    /**
     * @dev Returns whether the provided byte array is zero.
     */
    function _zeroBytes(bytes memory byteArray) private pure returns (bool) {
        for (uint256 i = 0; i < byteArray.length; ++i) {
            if (byteArray[i] != 0) {
                return false;
            }
        }
        return true;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * This method is based on Newton's method for computing square roots; the algorithm is restricted to only
     * using integer operations.
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        unchecked {
            // Take care of easy edge cases when a == 0 or a == 1
            if (a <= 1) {
                return a;
            }

            // In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a
            // sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between
            // the current value as `ε_n = | x_n - sqrt(a) |`.
            //
            // For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root
            // of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is
            // bigger than any uint256.
            //
            // By noticing that
            // `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)`
            // we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar
            // to the msb function.
            uint256 aa = a;
            uint256 xn = 1;

            if (aa >= (1 << 128)) {
                aa >>= 128;
                xn <<= 64;
            }
            if (aa >= (1 << 64)) {
                aa >>= 64;
                xn <<= 32;
            }
            if (aa >= (1 << 32)) {
                aa >>= 32;
                xn <<= 16;
            }
            if (aa >= (1 << 16)) {
                aa >>= 16;
                xn <<= 8;
            }
            if (aa >= (1 << 8)) {
                aa >>= 8;
                xn <<= 4;
            }
            if (aa >= (1 << 4)) {
                aa >>= 4;
                xn <<= 2;
            }
            if (aa >= (1 << 2)) {
                xn <<= 1;
            }

            // We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1).
            //
            // We can refine our estimation by noticing that the middle of that interval minimizes the error.
            // If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2).
            // This is going to be our x_0 (and ε_0)
            xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2)

            // From here, Newton's method give us:
            // x_{n+1} = (x_n + a / x_n) / 2
            //
            // One should note that:
            // x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a
            //              = ((x_n² + a) / (2 * x_n))² - a
            //              = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a
            //              = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²)
            //              = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²)
            //              = (x_n² - a)² / (2 * x_n)²
            //              = ((x_n² - a) / (2 * x_n))²
            //              ≥ 0
            // Which proves that for all n ≥ 1, sqrt(a) ≤ x_n
            //
            // This gives us the proof of quadratic convergence of the sequence:
            // ε_{n+1} = | x_{n+1} - sqrt(a) |
            //         = | (x_n + a / x_n) / 2 - sqrt(a) |
            //         = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) |
            //         = | (x_n - sqrt(a))² / (2 * x_n) |
            //         = | ε_n² / (2 * x_n) |
            //         = ε_n² / | (2 * x_n) |
            //
            // For the first iteration, we have a special case where x_0 is known:
            // ε_1 = ε_0² / | (2 * x_0) |
            //     ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2)))
            //     ≤ 2**(2*e-4) / (3 * 2**(e-1))
            //     ≤ 2**(e-3) / 3
            //     ≤ 2**(e-3-log2(3))
            //     ≤ 2**(e-4.5)
            //
            // For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n:
            // ε_{n+1} = ε_n² / | (2 * x_n) |
            //         ≤ (2**(e-k))² / (2 * 2**(e-1))
            //         ≤ 2**(2*e-2*k) / 2**e
            //         ≤ 2**(e-2*k)
            xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5)  -- special case, see above
            xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9)    -- general case with k = 4.5
            xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18)   -- general case with k = 9
            xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36)   -- general case with k = 18
            xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72)   -- general case with k = 36
            xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144)  -- general case with k = 72

            // Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision
            // ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either
            // sqrt(a) or sqrt(a) + 1.
            return xn - SafeCast.toUint(xn > a / xn);
        }
    }

    /**
     * @dev Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        uint256 exp;
        unchecked {
            exp = 128 * SafeCast.toUint(value > (1 << 128) - 1);
            value >>= exp;
            result += exp;

            exp = 64 * SafeCast.toUint(value > (1 << 64) - 1);
            value >>= exp;
            result += exp;

            exp = 32 * SafeCast.toUint(value > (1 << 32) - 1);
            value >>= exp;
            result += exp;

            exp = 16 * SafeCast.toUint(value > (1 << 16) - 1);
            value >>= exp;
            result += exp;

            exp = 8 * SafeCast.toUint(value > (1 << 8) - 1);
            value >>= exp;
            result += exp;

            exp = 4 * SafeCast.toUint(value > (1 << 4) - 1);
            value >>= exp;
            result += exp;

            exp = 2 * SafeCast.toUint(value > (1 << 2) - 1);
            value >>= exp;
            result += exp;

            result += SafeCast.toUint(value > 1);
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        uint256 isGt;
        unchecked {
            isGt = SafeCast.toUint(value > (1 << 128) - 1);
            value >>= isGt * 128;
            result += isGt * 16;

            isGt = SafeCast.toUint(value > (1 << 64) - 1);
            value >>= isGt * 64;
            result += isGt * 8;

            isGt = SafeCast.toUint(value > (1 << 32) - 1);
            value >>= isGt * 32;
            result += isGt * 4;

            isGt = SafeCast.toUint(value > (1 << 16) - 1);
            value >>= isGt * 16;
            result += isGt * 2;

            result += SafeCast.toUint(value > (1 << 8) - 1);
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

File 24 of 26 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.20;

/**
 * @title ERC-721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC-721 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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 25 of 26 : Panic.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)

pragma solidity ^0.8.20;

/**
 * @dev Helper library for emitting standardized panic codes.
 *
 * ```solidity
 * contract Example {
 *      using Panic for uint256;
 *
 *      // Use any of the declared internal constants
 *      function foo() { Panic.GENERIC.panic(); }
 *
 *      // Alternatively
 *      function foo() { Panic.panic(Panic.GENERIC); }
 * }
 * ```
 *
 * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].
 *
 * _Available since v5.1._
 */
// slither-disable-next-line unused-state
library Panic {
    /// @dev generic / unspecified error
    uint256 internal constant GENERIC = 0x00;
    /// @dev used by the assert() builtin
    uint256 internal constant ASSERT = 0x01;
    /// @dev arithmetic underflow or overflow
    uint256 internal constant UNDER_OVERFLOW = 0x11;
    /// @dev division or modulo by zero
    uint256 internal constant DIVISION_BY_ZERO = 0x12;
    /// @dev enum conversion error
    uint256 internal constant ENUM_CONVERSION_ERROR = 0x21;
    /// @dev invalid encoding in storage
    uint256 internal constant STORAGE_ENCODING_ERROR = 0x22;
    /// @dev empty array pop
    uint256 internal constant EMPTY_ARRAY_POP = 0x31;
    /// @dev array out of bounds access
    uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32;
    /// @dev resource error (too large allocation or too large array)
    uint256 internal constant RESOURCE_ERROR = 0x41;
    /// @dev calling invalid internal function
    uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51;

    /// @dev Reverts with a panic code. Recommended to use with
    /// the internal constants with predefined codes.
    function panic(uint256 code) internal pure {
        assembly ("memory-safe") {
            mstore(0x00, 0x4e487b71)
            mstore(0x20, code)
            revert(0x1c, 0x24)
        }
    }
}

File 26 of 26 : SafeCast.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)
// This file was procedurally generated from scripts/generate/templates/SafeCast.js.

pragma solidity ^0.8.20;

/**
 * @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such an operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeCast {
    /**
     * @dev Value doesn't fit in an uint of `bits` size.
     */
    error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);

    /**
     * @dev An int value doesn't fit in an uint of `bits` size.
     */
    error SafeCastOverflowedIntToUint(int256 value);

    /**
     * @dev Value doesn't fit in an int of `bits` size.
     */
    error SafeCastOverflowedIntDowncast(uint8 bits, int256 value);

    /**
     * @dev An uint value doesn't fit in an int of `bits` size.
     */
    error SafeCastOverflowedUintToInt(uint256 value);

    /**
     * @dev Returns the downcasted uint248 from uint256, reverting on
     * overflow (when the input is greater than largest uint248).
     *
     * Counterpart to Solidity's `uint248` operator.
     *
     * Requirements:
     *
     * - input must fit into 248 bits
     */
    function toUint248(uint256 value) internal pure returns (uint248) {
        if (value > type(uint248).max) {
            revert SafeCastOverflowedUintDowncast(248, value);
        }
        return uint248(value);
    }

    /**
     * @dev Returns the downcasted uint240 from uint256, reverting on
     * overflow (when the input is greater than largest uint240).
     *
     * Counterpart to Solidity's `uint240` operator.
     *
     * Requirements:
     *
     * - input must fit into 240 bits
     */
    function toUint240(uint256 value) internal pure returns (uint240) {
        if (value > type(uint240).max) {
            revert SafeCastOverflowedUintDowncast(240, value);
        }
        return uint240(value);
    }

    /**
     * @dev Returns the downcasted uint232 from uint256, reverting on
     * overflow (when the input is greater than largest uint232).
     *
     * Counterpart to Solidity's `uint232` operator.
     *
     * Requirements:
     *
     * - input must fit into 232 bits
     */
    function toUint232(uint256 value) internal pure returns (uint232) {
        if (value > type(uint232).max) {
            revert SafeCastOverflowedUintDowncast(232, value);
        }
        return uint232(value);
    }

    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        if (value > type(uint224).max) {
            revert SafeCastOverflowedUintDowncast(224, value);
        }
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint216 from uint256, reverting on
     * overflow (when the input is greater than largest uint216).
     *
     * Counterpart to Solidity's `uint216` operator.
     *
     * Requirements:
     *
     * - input must fit into 216 bits
     */
    function toUint216(uint256 value) internal pure returns (uint216) {
        if (value > type(uint216).max) {
            revert SafeCastOverflowedUintDowncast(216, value);
        }
        return uint216(value);
    }

    /**
     * @dev Returns the downcasted uint208 from uint256, reverting on
     * overflow (when the input is greater than largest uint208).
     *
     * Counterpart to Solidity's `uint208` operator.
     *
     * Requirements:
     *
     * - input must fit into 208 bits
     */
    function toUint208(uint256 value) internal pure returns (uint208) {
        if (value > type(uint208).max) {
            revert SafeCastOverflowedUintDowncast(208, value);
        }
        return uint208(value);
    }

    /**
     * @dev Returns the downcasted uint200 from uint256, reverting on
     * overflow (when the input is greater than largest uint200).
     *
     * Counterpart to Solidity's `uint200` operator.
     *
     * Requirements:
     *
     * - input must fit into 200 bits
     */
    function toUint200(uint256 value) internal pure returns (uint200) {
        if (value > type(uint200).max) {
            revert SafeCastOverflowedUintDowncast(200, value);
        }
        return uint200(value);
    }

    /**
     * @dev Returns the downcasted uint192 from uint256, reverting on
     * overflow (when the input is greater than largest uint192).
     *
     * Counterpart to Solidity's `uint192` operator.
     *
     * Requirements:
     *
     * - input must fit into 192 bits
     */
    function toUint192(uint256 value) internal pure returns (uint192) {
        if (value > type(uint192).max) {
            revert SafeCastOverflowedUintDowncast(192, value);
        }
        return uint192(value);
    }

    /**
     * @dev Returns the downcasted uint184 from uint256, reverting on
     * overflow (when the input is greater than largest uint184).
     *
     * Counterpart to Solidity's `uint184` operator.
     *
     * Requirements:
     *
     * - input must fit into 184 bits
     */
    function toUint184(uint256 value) internal pure returns (uint184) {
        if (value > type(uint184).max) {
            revert SafeCastOverflowedUintDowncast(184, value);
        }
        return uint184(value);
    }

    /**
     * @dev Returns the downcasted uint176 from uint256, reverting on
     * overflow (when the input is greater than largest uint176).
     *
     * Counterpart to Solidity's `uint176` operator.
     *
     * Requirements:
     *
     * - input must fit into 176 bits
     */
    function toUint176(uint256 value) internal pure returns (uint176) {
        if (value > type(uint176).max) {
            revert SafeCastOverflowedUintDowncast(176, value);
        }
        return uint176(value);
    }

    /**
     * @dev Returns the downcasted uint168 from uint256, reverting on
     * overflow (when the input is greater than largest uint168).
     *
     * Counterpart to Solidity's `uint168` operator.
     *
     * Requirements:
     *
     * - input must fit into 168 bits
     */
    function toUint168(uint256 value) internal pure returns (uint168) {
        if (value > type(uint168).max) {
            revert SafeCastOverflowedUintDowncast(168, value);
        }
        return uint168(value);
    }

    /**
     * @dev Returns the downcasted uint160 from uint256, reverting on
     * overflow (when the input is greater than largest uint160).
     *
     * Counterpart to Solidity's `uint160` operator.
     *
     * Requirements:
     *
     * - input must fit into 160 bits
     */
    function toUint160(uint256 value) internal pure returns (uint160) {
        if (value > type(uint160).max) {
            revert SafeCastOverflowedUintDowncast(160, value);
        }
        return uint160(value);
    }

    /**
     * @dev Returns the downcasted uint152 from uint256, reverting on
     * overflow (when the input is greater than largest uint152).
     *
     * Counterpart to Solidity's `uint152` operator.
     *
     * Requirements:
     *
     * - input must fit into 152 bits
     */
    function toUint152(uint256 value) internal pure returns (uint152) {
        if (value > type(uint152).max) {
            revert SafeCastOverflowedUintDowncast(152, value);
        }
        return uint152(value);
    }

    /**
     * @dev Returns the downcasted uint144 from uint256, reverting on
     * overflow (when the input is greater than largest uint144).
     *
     * Counterpart to Solidity's `uint144` operator.
     *
     * Requirements:
     *
     * - input must fit into 144 bits
     */
    function toUint144(uint256 value) internal pure returns (uint144) {
        if (value > type(uint144).max) {
            revert SafeCastOverflowedUintDowncast(144, value);
        }
        return uint144(value);
    }

    /**
     * @dev Returns the downcasted uint136 from uint256, reverting on
     * overflow (when the input is greater than largest uint136).
     *
     * Counterpart to Solidity's `uint136` operator.
     *
     * Requirements:
     *
     * - input must fit into 136 bits
     */
    function toUint136(uint256 value) internal pure returns (uint136) {
        if (value > type(uint136).max) {
            revert SafeCastOverflowedUintDowncast(136, value);
        }
        return uint136(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        if (value > type(uint128).max) {
            revert SafeCastOverflowedUintDowncast(128, value);
        }
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint120 from uint256, reverting on
     * overflow (when the input is greater than largest uint120).
     *
     * Counterpart to Solidity's `uint120` operator.
     *
     * Requirements:
     *
     * - input must fit into 120 bits
     */
    function toUint120(uint256 value) internal pure returns (uint120) {
        if (value > type(uint120).max) {
            revert SafeCastOverflowedUintDowncast(120, value);
        }
        return uint120(value);
    }

    /**
     * @dev Returns the downcasted uint112 from uint256, reverting on
     * overflow (when the input is greater than largest uint112).
     *
     * Counterpart to Solidity's `uint112` operator.
     *
     * Requirements:
     *
     * - input must fit into 112 bits
     */
    function toUint112(uint256 value) internal pure returns (uint112) {
        if (value > type(uint112).max) {
            revert SafeCastOverflowedUintDowncast(112, value);
        }
        return uint112(value);
    }

    /**
     * @dev Returns the downcasted uint104 from uint256, reverting on
     * overflow (when the input is greater than largest uint104).
     *
     * Counterpart to Solidity's `uint104` operator.
     *
     * Requirements:
     *
     * - input must fit into 104 bits
     */
    function toUint104(uint256 value) internal pure returns (uint104) {
        if (value > type(uint104).max) {
            revert SafeCastOverflowedUintDowncast(104, value);
        }
        return uint104(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        if (value > type(uint96).max) {
            revert SafeCastOverflowedUintDowncast(96, value);
        }
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint88 from uint256, reverting on
     * overflow (when the input is greater than largest uint88).
     *
     * Counterpart to Solidity's `uint88` operator.
     *
     * Requirements:
     *
     * - input must fit into 88 bits
     */
    function toUint88(uint256 value) internal pure returns (uint88) {
        if (value > type(uint88).max) {
            revert SafeCastOverflowedUintDowncast(88, value);
        }
        return uint88(value);
    }

    /**
     * @dev Returns the downcasted uint80 from uint256, reverting on
     * overflow (when the input is greater than largest uint80).
     *
     * Counterpart to Solidity's `uint80` operator.
     *
     * Requirements:
     *
     * - input must fit into 80 bits
     */
    function toUint80(uint256 value) internal pure returns (uint80) {
        if (value > type(uint80).max) {
            revert SafeCastOverflowedUintDowncast(80, value);
        }
        return uint80(value);
    }

    /**
     * @dev Returns the downcasted uint72 from uint256, reverting on
     * overflow (when the input is greater than largest uint72).
     *
     * Counterpart to Solidity's `uint72` operator.
     *
     * Requirements:
     *
     * - input must fit into 72 bits
     */
    function toUint72(uint256 value) internal pure returns (uint72) {
        if (value > type(uint72).max) {
            revert SafeCastOverflowedUintDowncast(72, value);
        }
        return uint72(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        if (value > type(uint64).max) {
            revert SafeCastOverflowedUintDowncast(64, value);
        }
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint56 from uint256, reverting on
     * overflow (when the input is greater than largest uint56).
     *
     * Counterpart to Solidity's `uint56` operator.
     *
     * Requirements:
     *
     * - input must fit into 56 bits
     */
    function toUint56(uint256 value) internal pure returns (uint56) {
        if (value > type(uint56).max) {
            revert SafeCastOverflowedUintDowncast(56, value);
        }
        return uint56(value);
    }

    /**
     * @dev Returns the downcasted uint48 from uint256, reverting on
     * overflow (when the input is greater than largest uint48).
     *
     * Counterpart to Solidity's `uint48` operator.
     *
     * Requirements:
     *
     * - input must fit into 48 bits
     */
    function toUint48(uint256 value) internal pure returns (uint48) {
        if (value > type(uint48).max) {
            revert SafeCastOverflowedUintDowncast(48, value);
        }
        return uint48(value);
    }

    /**
     * @dev Returns the downcasted uint40 from uint256, reverting on
     * overflow (when the input is greater than largest uint40).
     *
     * Counterpart to Solidity's `uint40` operator.
     *
     * Requirements:
     *
     * - input must fit into 40 bits
     */
    function toUint40(uint256 value) internal pure returns (uint40) {
        if (value > type(uint40).max) {
            revert SafeCastOverflowedUintDowncast(40, value);
        }
        return uint40(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        if (value > type(uint32).max) {
            revert SafeCastOverflowedUintDowncast(32, value);
        }
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint24 from uint256, reverting on
     * overflow (when the input is greater than largest uint24).
     *
     * Counterpart to Solidity's `uint24` operator.
     *
     * Requirements:
     *
     * - input must fit into 24 bits
     */
    function toUint24(uint256 value) internal pure returns (uint24) {
        if (value > type(uint24).max) {
            revert SafeCastOverflowedUintDowncast(24, value);
        }
        return uint24(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        if (value > type(uint16).max) {
            revert SafeCastOverflowedUintDowncast(16, value);
        }
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        if (value > type(uint8).max) {
            revert SafeCastOverflowedUintDowncast(8, value);
        }
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        if (value < 0) {
            revert SafeCastOverflowedIntToUint(value);
        }
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int248 from int256, reverting on
     * overflow (when the input is less than smallest int248 or
     * greater than largest int248).
     *
     * Counterpart to Solidity's `int248` operator.
     *
     * Requirements:
     *
     * - input must fit into 248 bits
     */
    function toInt248(int256 value) internal pure returns (int248 downcasted) {
        downcasted = int248(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(248, value);
        }
    }

    /**
     * @dev Returns the downcasted int240 from int256, reverting on
     * overflow (when the input is less than smallest int240 or
     * greater than largest int240).
     *
     * Counterpart to Solidity's `int240` operator.
     *
     * Requirements:
     *
     * - input must fit into 240 bits
     */
    function toInt240(int256 value) internal pure returns (int240 downcasted) {
        downcasted = int240(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(240, value);
        }
    }

    /**
     * @dev Returns the downcasted int232 from int256, reverting on
     * overflow (when the input is less than smallest int232 or
     * greater than largest int232).
     *
     * Counterpart to Solidity's `int232` operator.
     *
     * Requirements:
     *
     * - input must fit into 232 bits
     */
    function toInt232(int256 value) internal pure returns (int232 downcasted) {
        downcasted = int232(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(232, value);
        }
    }

    /**
     * @dev Returns the downcasted int224 from int256, reverting on
     * overflow (when the input is less than smallest int224 or
     * greater than largest int224).
     *
     * Counterpart to Solidity's `int224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toInt224(int256 value) internal pure returns (int224 downcasted) {
        downcasted = int224(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(224, value);
        }
    }

    /**
     * @dev Returns the downcasted int216 from int256, reverting on
     * overflow (when the input is less than smallest int216 or
     * greater than largest int216).
     *
     * Counterpart to Solidity's `int216` operator.
     *
     * Requirements:
     *
     * - input must fit into 216 bits
     */
    function toInt216(int256 value) internal pure returns (int216 downcasted) {
        downcasted = int216(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(216, value);
        }
    }

    /**
     * @dev Returns the downcasted int208 from int256, reverting on
     * overflow (when the input is less than smallest int208 or
     * greater than largest int208).
     *
     * Counterpart to Solidity's `int208` operator.
     *
     * Requirements:
     *
     * - input must fit into 208 bits
     */
    function toInt208(int256 value) internal pure returns (int208 downcasted) {
        downcasted = int208(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(208, value);
        }
    }

    /**
     * @dev Returns the downcasted int200 from int256, reverting on
     * overflow (when the input is less than smallest int200 or
     * greater than largest int200).
     *
     * Counterpart to Solidity's `int200` operator.
     *
     * Requirements:
     *
     * - input must fit into 200 bits
     */
    function toInt200(int256 value) internal pure returns (int200 downcasted) {
        downcasted = int200(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(200, value);
        }
    }

    /**
     * @dev Returns the downcasted int192 from int256, reverting on
     * overflow (when the input is less than smallest int192 or
     * greater than largest int192).
     *
     * Counterpart to Solidity's `int192` operator.
     *
     * Requirements:
     *
     * - input must fit into 192 bits
     */
    function toInt192(int256 value) internal pure returns (int192 downcasted) {
        downcasted = int192(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(192, value);
        }
    }

    /**
     * @dev Returns the downcasted int184 from int256, reverting on
     * overflow (when the input is less than smallest int184 or
     * greater than largest int184).
     *
     * Counterpart to Solidity's `int184` operator.
     *
     * Requirements:
     *
     * - input must fit into 184 bits
     */
    function toInt184(int256 value) internal pure returns (int184 downcasted) {
        downcasted = int184(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(184, value);
        }
    }

    /**
     * @dev Returns the downcasted int176 from int256, reverting on
     * overflow (when the input is less than smallest int176 or
     * greater than largest int176).
     *
     * Counterpart to Solidity's `int176` operator.
     *
     * Requirements:
     *
     * - input must fit into 176 bits
     */
    function toInt176(int256 value) internal pure returns (int176 downcasted) {
        downcasted = int176(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(176, value);
        }
    }

    /**
     * @dev Returns the downcasted int168 from int256, reverting on
     * overflow (when the input is less than smallest int168 or
     * greater than largest int168).
     *
     * Counterpart to Solidity's `int168` operator.
     *
     * Requirements:
     *
     * - input must fit into 168 bits
     */
    function toInt168(int256 value) internal pure returns (int168 downcasted) {
        downcasted = int168(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(168, value);
        }
    }

    /**
     * @dev Returns the downcasted int160 from int256, reverting on
     * overflow (when the input is less than smallest int160 or
     * greater than largest int160).
     *
     * Counterpart to Solidity's `int160` operator.
     *
     * Requirements:
     *
     * - input must fit into 160 bits
     */
    function toInt160(int256 value) internal pure returns (int160 downcasted) {
        downcasted = int160(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(160, value);
        }
    }

    /**
     * @dev Returns the downcasted int152 from int256, reverting on
     * overflow (when the input is less than smallest int152 or
     * greater than largest int152).
     *
     * Counterpart to Solidity's `int152` operator.
     *
     * Requirements:
     *
     * - input must fit into 152 bits
     */
    function toInt152(int256 value) internal pure returns (int152 downcasted) {
        downcasted = int152(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(152, value);
        }
    }

    /**
     * @dev Returns the downcasted int144 from int256, reverting on
     * overflow (when the input is less than smallest int144 or
     * greater than largest int144).
     *
     * Counterpart to Solidity's `int144` operator.
     *
     * Requirements:
     *
     * - input must fit into 144 bits
     */
    function toInt144(int256 value) internal pure returns (int144 downcasted) {
        downcasted = int144(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(144, value);
        }
    }

    /**
     * @dev Returns the downcasted int136 from int256, reverting on
     * overflow (when the input is less than smallest int136 or
     * greater than largest int136).
     *
     * Counterpart to Solidity's `int136` operator.
     *
     * Requirements:
     *
     * - input must fit into 136 bits
     */
    function toInt136(int256 value) internal pure returns (int136 downcasted) {
        downcasted = int136(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(136, value);
        }
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toInt128(int256 value) internal pure returns (int128 downcasted) {
        downcasted = int128(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(128, value);
        }
    }

    /**
     * @dev Returns the downcasted int120 from int256, reverting on
     * overflow (when the input is less than smallest int120 or
     * greater than largest int120).
     *
     * Counterpart to Solidity's `int120` operator.
     *
     * Requirements:
     *
     * - input must fit into 120 bits
     */
    function toInt120(int256 value) internal pure returns (int120 downcasted) {
        downcasted = int120(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(120, value);
        }
    }

    /**
     * @dev Returns the downcasted int112 from int256, reverting on
     * overflow (when the input is less than smallest int112 or
     * greater than largest int112).
     *
     * Counterpart to Solidity's `int112` operator.
     *
     * Requirements:
     *
     * - input must fit into 112 bits
     */
    function toInt112(int256 value) internal pure returns (int112 downcasted) {
        downcasted = int112(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(112, value);
        }
    }

    /**
     * @dev Returns the downcasted int104 from int256, reverting on
     * overflow (when the input is less than smallest int104 or
     * greater than largest int104).
     *
     * Counterpart to Solidity's `int104` operator.
     *
     * Requirements:
     *
     * - input must fit into 104 bits
     */
    function toInt104(int256 value) internal pure returns (int104 downcasted) {
        downcasted = int104(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(104, value);
        }
    }

    /**
     * @dev Returns the downcasted int96 from int256, reverting on
     * overflow (when the input is less than smallest int96 or
     * greater than largest int96).
     *
     * Counterpart to Solidity's `int96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toInt96(int256 value) internal pure returns (int96 downcasted) {
        downcasted = int96(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(96, value);
        }
    }

    /**
     * @dev Returns the downcasted int88 from int256, reverting on
     * overflow (when the input is less than smallest int88 or
     * greater than largest int88).
     *
     * Counterpart to Solidity's `int88` operator.
     *
     * Requirements:
     *
     * - input must fit into 88 bits
     */
    function toInt88(int256 value) internal pure returns (int88 downcasted) {
        downcasted = int88(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(88, value);
        }
    }

    /**
     * @dev Returns the downcasted int80 from int256, reverting on
     * overflow (when the input is less than smallest int80 or
     * greater than largest int80).
     *
     * Counterpart to Solidity's `int80` operator.
     *
     * Requirements:
     *
     * - input must fit into 80 bits
     */
    function toInt80(int256 value) internal pure returns (int80 downcasted) {
        downcasted = int80(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(80, value);
        }
    }

    /**
     * @dev Returns the downcasted int72 from int256, reverting on
     * overflow (when the input is less than smallest int72 or
     * greater than largest int72).
     *
     * Counterpart to Solidity's `int72` operator.
     *
     * Requirements:
     *
     * - input must fit into 72 bits
     */
    function toInt72(int256 value) internal pure returns (int72 downcasted) {
        downcasted = int72(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(72, value);
        }
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toInt64(int256 value) internal pure returns (int64 downcasted) {
        downcasted = int64(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(64, value);
        }
    }

    /**
     * @dev Returns the downcasted int56 from int256, reverting on
     * overflow (when the input is less than smallest int56 or
     * greater than largest int56).
     *
     * Counterpart to Solidity's `int56` operator.
     *
     * Requirements:
     *
     * - input must fit into 56 bits
     */
    function toInt56(int256 value) internal pure returns (int56 downcasted) {
        downcasted = int56(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(56, value);
        }
    }

    /**
     * @dev Returns the downcasted int48 from int256, reverting on
     * overflow (when the input is less than smallest int48 or
     * greater than largest int48).
     *
     * Counterpart to Solidity's `int48` operator.
     *
     * Requirements:
     *
     * - input must fit into 48 bits
     */
    function toInt48(int256 value) internal pure returns (int48 downcasted) {
        downcasted = int48(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(48, value);
        }
    }

    /**
     * @dev Returns the downcasted int40 from int256, reverting on
     * overflow (when the input is less than smallest int40 or
     * greater than largest int40).
     *
     * Counterpart to Solidity's `int40` operator.
     *
     * Requirements:
     *
     * - input must fit into 40 bits
     */
    function toInt40(int256 value) internal pure returns (int40 downcasted) {
        downcasted = int40(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(40, value);
        }
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toInt32(int256 value) internal pure returns (int32 downcasted) {
        downcasted = int32(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(32, value);
        }
    }

    /**
     * @dev Returns the downcasted int24 from int256, reverting on
     * overflow (when the input is less than smallest int24 or
     * greater than largest int24).
     *
     * Counterpart to Solidity's `int24` operator.
     *
     * Requirements:
     *
     * - input must fit into 24 bits
     */
    function toInt24(int256 value) internal pure returns (int24 downcasted) {
        downcasted = int24(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(24, value);
        }
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toInt16(int256 value) internal pure returns (int16 downcasted) {
        downcasted = int16(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(16, value);
        }
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits
     */
    function toInt8(int256 value) internal pure returns (int8 downcasted) {
        downcasted = int8(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(8, value);
        }
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        if (value > uint256(type(int256).max)) {
            revert SafeCastOverflowedUintToInt(value);
        }
        return int256(value);
    }

    /**
     * @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump.
     */
    function toUint(bool b) internal pure returns (uint256 u) {
        assembly ("memory-safe") {
            u := iszero(iszero(b))
        }
    }
}

Settings
{
  "evmVersion": "cancun",
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "outputSelection": {
    "*": {
      "*": [
        "abi"
      ]
    }
  },
  "detectMissingLibraries": false,
  "forceEVMLA": false,
  "enableEraVMExtensions": true,
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ERC721EnumerableForbiddenBatchMint","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"ERC721OutOfBoundsIndex","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"stateMutability":"nonpayable","type":"fallback"},{"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":[],"name":"PAUSER_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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenIdMintInfo","outputs":[{"components":[{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"holder","type":"address"},{"internalType":"uint256","name":"ts","type":"uint256"},{"internalType":"uint256","name":"platform","type":"uint256"},{"internalType":"uint256","name":"boxType","type":"uint256"},{"internalType":"uint256","name":"roleType","type":"uint256"}],"internalType":"struct SBTContract.MintInfo","name":"","type":"tuple"}],"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":[],"name":"isLimitMintAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"platformMap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","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":"to","type":"address"},{"internalType":"uint256","name":"platform","type":"uint256"}],"name":"safeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setMintAmountLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new","type":"uint256"},{"internalType":"bool","name":"_val","type":"bool"}],"name":"setPlatform","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

9c4d535b00000000000000000000000000000000000000000000000000000000000000000100062f83d681f813b3921c507539db0187ad8cf27e758af3c0d4544062d71e00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0002000000000002000a00000000000200010000000103550000006003100270000005930030019d0000008005000039000000400050043f0000000100200190000000250000c13d0000059303300197000000040030008c0000042f0000413d000000000201043b000000e002200270000005c80020009c0000008d0000213d000005e60020009c000000c00000213d000005f50020009c0000014d0000a13d000005f60020009c000001970000213d000005fa0020009c000006d00000613d000005fb0020009c000004340000613d000005fc0020009c0000042f0000c13d000000240030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000401100370000000000101043b1649141a0000040f0000078b0000013d0000000001000416000000000001004b000008c70000c13d0000000303000039000000800030043f0000059401000041000000a00010043f0000010002000039000000400020043f000000c00030043f000000e00010043f000000000100041a000000010210019000000001011002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000032004b000000870000c13d000000200010008c000000430000413d00000595020000410000001f011000390000000501100270000005960110009a000000000002041b0000000102200039000000000012004b0000003f0000413d0000059701000041000000000010041b0000000107000039000000000207041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000000870000c13d000000200010008c0000005a0000413d00000598020000410000001f011000390000000501100270000005990110009a000000000002041b0000000102200039000000000012004b000000560000413d0000001401000039000000000301041a0000000b06000039000000000206041a0000059704000041000000000047041b0000062702200197000000000026041b000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000000870000c13d000000200020008c000000770000413d000000200020008c000000770000613d0000001f0220003900000005022002700000059a0220009a0000059b03000041000000000003041b0000000103300039000000000023004b000000730000413d0000004102000039000000000021041b0000059c010000410000059d02000041000000000012041b0000001501000039000000000301041a000000010030019000000001023002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000343013f0000000100300190000001de0000613d0000061901000041000000000010043f0000002201000039000000040010043f000005bd010000410000164b00010430000005c90020009c0000013c0000213d000005d80020009c0000015a0000a13d000005d90020009c000001ab0000213d000005dd0020009c000006d80000613d000005de0020009c0000043c0000613d000005df0020009c0000042f0000c13d000000440030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000402100370000000000202043b000a00000002001d000005a10020009c000008c70000213d0000002401100370000000000101043b000900000001001d0000000001000411000005a101100197000000000010043f000005a801000041000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff001001900000089b0000c13d000005c701000041000000000010043f0000000001000411000000040010043f000005a901000041000000240010043f000005c1010000410000164b00010430000005e70020009c000001710000a13d000005e80020009c000001c40000213d000005ec0020009c000006f60000613d000005ed0020009c000004480000613d000005ee0020009c0000042f0000c13d000000240030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000402100370000000000402043b000005b20040009c000008c70000213d0000002302400039000000000032004b000008c70000813d0000000405400039000000000251034f000000000202043b000005b20020009c00000c780000213d0000001f0620003900000628066001970000003f066000390000062806600197000006040060009c00000c780000213d00000024044000390000008006600039000000400060043f000000800020043f0000000004420019000000000034004b000008c70000213d0000002003500039000000000331034f00000628042001980000001f0520018f000000a001400039000000f40000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b000000f00000c13d000000000005004b000001010000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a00120003900000000000104350000000001000411000005a101100197000000000010043f000005a201000041000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff00100190000004aa0000613d000000800200043d000005b20020009c00000c780000213d0000001401000039000000000401041a000000010040019000000001034002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000454013f0000000100400190000000870000c13d000000200030008c000001340000413d000000000010043f0000001f0420003900000005044002700000059a0440009a000000200020008c0000059d040040410000001f0330003900000005033002700000059a0330009a000000000034004b000001340000813d000000000004041b0000000104400039000000000034004b000001300000413d0000001f0020008c00000afd0000a13d000000000010043f000006280420019800000b780000c13d000000a0050000390000059d0300004100000b940000013d000005ca0020009c000001880000a13d000005cb0020009c000001d30000213d000005cf0020009c000007080000613d000005d00020009c0000045f0000613d000005d10020009c0000042f0000c13d0000000001000416000000000001004b000008c70000c13d000005a701000041000000800010043f00000603010000410000164a0001042e000005fd0020009c000003bc0000a13d000005fe0020009c0000076f0000613d000005ff0020009c0000056e0000613d000006000020009c0000042f0000c13d0000000001000416000000000001004b000008c70000c13d0000000e01000039000007570000013d000005e00020009c000003dd0000a13d000005e10020009c000007810000613d000005e20020009c000005910000613d000005e30020009c0000042f0000c13d000000440030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000002402100370000000000202043b000a00000002001d000005a10020009c000008c70000213d0000000401100370000000000101043b000000000010043f0000000c01000039000005280000013d000005ef0020009c000003ea0000a13d000005f00020009c000007920000613d000005f10020009c000005ae0000613d000005f20020009c0000042f0000c13d000000240030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000401100370000000000101043b000900000001001d000005a10010009c000008c70000213d0000000901000029000000000001004b000008210000c13d00000615010000410000050a0000013d000005d20020009c0000040b0000a13d000005d30020009c000007ac0000613d000005d40020009c000006b20000613d000005d50020009c0000042f0000c13d0000000001000416000000000001004b000008c70000c13d000005a901000041000000800010043f00000603010000410000164a0001042e000005f70020009c0000071c0000613d000005f80020009c000004b10000613d000005f90020009c0000042f0000c13d000000440030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000402100370000000000302043b000005a10030009c000008c70000213d0000002401100370000000000201043b00000000010300191649142c0000040f0000078b0000013d000005da0020009c0000074d0000613d000005db0020009c000004f50000613d000005dc0020009c0000042f0000c13d000000440030008c000008c70000413d0000000001000416000000000001004b000008c70000c13d164911890000040f000a00000001001d164914ae0000040f00000004010000390000000101100367000000000101043b000000000010043f0000001301000039000000200010043f00000040010000391649162e0000040f000000000301041a0000062702300197000007690000013d000005e90020009c000007530000613d000005ea0020009c0000050e0000613d000005eb0020009c0000042f0000c13d000000240030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000401100370000000000101043b164914930000040f0000078b0000013d000005cc0020009c0000075e0000613d000005cd0020009c000005180000613d000005ce0020009c0000042f0000c13d0000000001000416000000000001004b000008c70000c13d0000001101000039000007570000013d000900000005001d000000200020008c000001e90000413d0000059e030000410000001f0220003900000005022002700000059f0220009a000000000003041b0000000103300039000000000023004b000001e50000413d000005a002000041000000000021041b0000000001000411000005a101100197000a00000001001d000000000010043f000005a201000041000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff001001900000021e0000c13d0000000a01000029000000000010043f000005a201000041000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a000006270220019700000001022001bf000000000021041b0000000001000414000005930010009c0000059301008041000000c001100210000005a4011001c70000800d020000390000000403000039000005a50400004100000000050000190000000a0600002900000000070004111649163f0000040f0000000100200190000008c70000613d0000000a01000029000000000010043f000005a601000041000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff001001900000024f0000c13d0000000a01000029000000000010043f000005a601000041000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a000006270220019700000001022001bf000000000021041b0000000001000414000005930010009c0000059301008041000000c001100210000005a4011001c70000800d020000390000000403000039000005a504000041000005a7050000410000000a0600002900000000070004111649163f0000040f0000000100200190000008c70000613d0000000a01000029000000000010043f000005a801000041000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff00100190000002800000c13d0000000a01000029000000000010043f000005a801000041000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a000006270220019700000001022001bf000000000021041b0000000001000414000005930010009c0000059301008041000000c001100210000005a4011001c70000800d020000390000000403000039000005a504000041000005a9050000410000000a0600002900000000070004111649163f0000040f0000000100200190000008c70000613d000005aa01000041000000000201041a000006270220019700000001022001bf000000000021041b000005ab01000041000000000201041a000006270220019700000001022001bf000000000021041b0000000a01000029000000000010043f000005a201000041000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff00100190000004aa0000613d0000000001000411000000000010043f0000000f01000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a000006270220019700000001022001bf000000000021041b0000000a01000029000000000010043f000005a801000041000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff00100190000000b80000613d0000006301000039000000000010043f0000001301000039000000200010043f000005ab01000041000000000101041a000000ff00100190000008ac0000613d0000001101000039000000000101041a000000ff0010019000000b660000c13d0000000d01000039000000000201041a000800000002001d000000010220003a000009860000613d000000000021041b000000400100043d000700000001001d000005ac0010009c00000c780000813d0000000702000029000000c001200039000000400010043f00000000010004110000000002120436000600000002001d0000000000120435000005ad0100004100000000001004430000000001000414000005930010009c0000059301008041000000c001100210000005ae011001c70000800b02000039164916440000040f000000010020019000000e640000613d000000000101043b0000000703000029000000a0043000390000000102000039000500000004001d00000000002404350000008004300039000400000004001d000000000024043500000060043000390000006302000039000300000004001d00000000002404350000004002300039000200000002001d00000000001204350000000801000029000000000010043f0000001201000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d00000007020000290000000002020433000005a102200197000000000101043b000000000301041a000005af03300197000000000223019f000000000021041b00000006020000290000000002020433000005a1022001970000000103100039000000000403041a000005af04400197000000000224019f000000000023041b000000020200002900000000020204330000000203100039000000000023041b000000030200002900000000020204330000000303100039000000000023041b000000040200002900000000020204330000000403100039000000000023041b000000050110003900000005020000290000000002020433000000000021041b000000080000006b00000c7e0000c13d000000400100043d000700000001001d000005b00010009c00000c780000213d00000007020000290000002001200039000600000001001d000000400010043f00000000000204350000000001000411000000000001004b00000ae60000613d000000000010043f0000000f01000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff00100190000003560000c13d0000000801000029000000000010043f0000000201000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000005a100100198000003560000613d0000000e01000039000000000101041a000000ff0010019000000e4d0000c13d0000000b01000039000000000101041a000000ff0010019000000e490000c13d0000000801000029000000000010043f0000000201000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000505a10010019c00000c990000c13d0000000001000411000000000010043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000801000029000000000010043f0000000201000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a000005af022001970000000a022001af000000000021041b0000000001000414000005930010009c0000059301008041000000c001100210000005a4011001c70000800d020000390000000403000039000005b1040000410000000505000029000000000600041100000008070000291649163f0000040f0000000100200190000008c70000613d000000050000006b00000d7a0000c13d0000000801000039000000000101041a000400000001001d0000000801000029000000000010043f0000000901000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000402000029000000000021041b000005b20020009c00000c780000213d000000040200002900000001012000390000000803000039000000000013041b000000000030043f000005b30120009a0000000802000029000000000021041b00000d7d0000013d000006010020009c0000052e0000613d000006020020009c0000042f0000c13d0000000001000416000000000001004b000008c70000c13d000000000200041a000000010320019000000001012002700000007f0110618f0000001f0010008c00000000040000390000000104002039000000000442013f0000000100400190000000870000c13d000000800010043f000000000003004b000007c20000613d000000000000043f000000000001004b000007c00000613d00000595030000410000000004000019000000000503041a000000a002400039000000000052043500000001033000390000002004400039000000000014004b000003d50000413d000007c70000013d000005e40020009c000005410000613d000005e50020009c0000042f0000c13d0000000001000416000000000001004b000008c70000c13d164911e90000040f0000002002000039000000400300043d000a00000003001d0000000002230436000007cf0000013d000005f30020009c000005500000613d000005f40020009c0000042f0000c13d0000000001000416000000000001004b000008c70000c13d0000000001000411000005a101100197000000000010043f000005a601000041000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff00100190000005a60000613d0000000b01000039000000000201041a000000ff00200190000008b30000c13d0000061b01000041000000000010043f00000618010000410000164b00010430000005d60020009c000005610000613d000005d70020009c0000042f0000c13d000000840030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000402100370000000000202043b000a00000002001d000005a10020009c000008c70000213d0000002402100370000000000202043b000900000002001d000005a10020009c000008c70000213d0000006402100370000000000402043b000005b20040009c000008c70000213d0000002302400039000000000032004b000008c70000813d0000000402400039000000000221034f000000000202043b0000004401100370000000000101043b000800000001001d0000002401400039164911b10000040f000700000001001d000007a00000013d0000000001000416000000000001004b000008c70000c13d00000000010000190000164a0001042e0000000001000416000000000001004b000008c70000c13d0000000001030019164911770000040f164912230000040f00000000010000190000164a0001042e000000240030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000401100370000000000101043b000005a10010009c000008c70000213d000000000010043f0000000f010000390000056a0000013d000000440030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000401100370000000000101043b000a00000001001d000005a10010009c000008c70000213d164911890000040f000900000001001d164914ae0000040f0000000a01000029000000000010043f0000000f01000039000000200010043f00000040010000391649162e0000040f000000000301041a000006270230019700000009030000290000076a0000013d000000240030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000402100370000000000402043b000005b20040009c000008c70000213d0000002302400039000000000032004b000008c70000813d0000000405400039000000000251034f000000000202043b000005b20020009c00000c780000213d0000001f0620003900000628066001970000003f066000390000062806600197000006040060009c00000c780000213d00000024044000390000008006600039000000400060043f000000800020043f0000000004420019000000000034004b000008c70000213d0000002003500039000000000331034f00000628042001980000001f0520018f000000a001400039000004890000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b000004850000c13d000000000005004b000004960000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a00120003900000000000104350000000001000411000005a101100197000000000010043f000005a201000041000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff00100190000009db0000c13d000005c701000041000000000010043f0000000001000411000000040010043f000000240000043f000005c1010000410000164b00010430000000440030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000402100370000000000202043b000a00000002001d0000002401100370000000000101043b000900000001001d000005a10010009c000008c70000213d0000000a01000029000000000010043f0000000c01000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000101100039000000000101041a000800000001001d000000000010043f0000000c01000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000002000411000005a102200197000000000020043f000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff00100190000009310000c13d000005c701000041000000000010043f0000000001000411000000040010043f0000000801000029000000240010043f000005c1010000410000164b00010430000000440030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000402100370000000000202043b000a00000002001d000005a10020009c000008c70000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000900000002001d000000000012004b000008c70000c13d0000000a0000006b0000086a0000c13d0000060901000041000000000010043f000000040000043f000005bd010000410000164b00010430000000240030008c000008c70000413d0000000001000416000000000001004b000008c70000c13d164911940000040f000a00000001001d164914ae0000040f0000000e01000039000007670000013d000000440030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000402100370000000000202043b000005a10020009c000008c70000213d0000002401100370000000000101043b000a00000001001d000005a10010009c000008c70000213d000000000020043f0000000501000039000000200010043f00000040010000391649162e0000040f0000000a02000029000000000020043f0000056a0000013d000000240030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000401100370000000000201043b000005ba00200198000008c70000c13d0000000101000039000006200020009c000007f70000213d000006240020009c0000075b0000613d000006250020009c0000075b0000613d000006260020009c0000075b0000613d000007fd0000013d000000240030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000401100370000000000101043b000005a10010009c000008c70000213d000000000010043f0000001001000039000000200010043f00000040010000391649162e0000040f000006d40000013d000000440030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000002402100370000000000302043b000005a10030009c000008c70000213d0000000002000411000000000023004b000008000000c13d0000000401100370000000000101043b164914f50000040f00000000010000190000164a0001042e000000240030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000401100370000000000101043b000000000010043f0000001301000039000000200010043f00000040010000391649162e0000040f000007570000013d000000440030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000402100370000000000202043b000a00000002001d000005a10020009c000008c70000213d0000002401100370000000000101043b000900000001001d000000000010043f0000000201000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000005a105100198000008c90000c13d000005c201000041000000000010043f0000000901000029000000040010043f000005bd010000410000164b000104300000000001000416000000000001004b000008c70000c13d0000000001000411000005a101100197000000000010043f000005a601000041000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff00100190000007e00000c13d000005c701000041000000000010043f0000000001000411000000040010043f000005a701000041000000240010043f000005c1010000410000164b00010430000000240030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000401100370000000000101043b000a00000001001d0000000001000411000000000010043f0000000f01000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff00100190000005dc0000c13d0000000a01000029000000000010043f0000000201000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000005a100100198000005dc0000613d0000000e01000039000000000101041a000000ff0010019000000e4d0000c13d0000000b01000039000000000101041a000000ff0010019000000e490000c13d0000000a01000029000000000010043f0000000201000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000005a1011001970000000002000411000005a102200198000900000001001d000006280000613d000000000021004b000006280000613d000800000002001d000000000010043f0000000501000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000802000029000000000020043f000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff001001900000000901000029000006280000c13d0000000a01000029000000000010043f0000000401000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000005a101100197000000080010006c000000090100002900000b5c0000c13d000000000001004b000009a00000c13d0000000a01000029000000000010043f0000000201000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a000005af02200197000000000021041b0000000001000414000005930010009c0000059301008041000000c001100210000005a4011001c70000800d020000390000000403000039000005b104000041000000090500002900000000060000190000000a070000291649163f0000040f0000000100200190000008c70000613d000000090000006b00000b070000c13d0000000801000039000000000101041a000900000001001d0000000a01000029000000000010043f0000000901000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000902000029000000000021041b000005b20020009c00000c780000213d000000090200002900000001012000390000000803000039000000000013041b000005b30120009a0000000a02000029000000000021041b0000000801000039000000000101041a000900000001001d000000000001004b000009860000613d0000000a01000029000000000010043f0000000901000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d0000000902000029000000010320008a000000000201043b0000000801000039000000000101041a000000000031004b00000e5e0000a13d000000000202041a000800000002001d000000000021004b00000e5e0000a13d0000000801000029000005b30110009a0000000902000029000005c50220009a000000000202041a000000000021041b000000000020043f0000000901000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000802000029000000000021041b0000000a01000029000000000010043f0000000901000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000001041b0000000801000039000000000101041a000000000001004b00000c910000c13d0000061901000041000000000010043f0000003101000039000000040010043f000005bd010000410000164b00010430000000240030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000401100370000000000101043b000a00000001001d000000000010043f0000000201000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000005a100100198000008040000c13d000005c201000041000000000010043f0000000a01000029000000040010043f000005bd010000410000164b000104300000000001000416000000000001004b000008c70000c13d0000000801000039000000000101041a000000800010043f00000603010000410000164a0001042e0000000001000416000000000001004b000008c70000c13d0000000103000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000870000c13d000000800010043f000000000004004b000007c20000613d000000000030043f000000000001004b000007c00000613d00000598030000410000000004000019000000000503041a000000a002400039000000000052043500000001033000390000002004400039000000000014004b000006ee0000413d000007c70000013d000000240030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000401100370000000000101043b0000000802000039000000000202041a000000000021004b000007da0000813d1649146d0000040f0000000302200210000000000101041a000000000121022f000000ff0020008c00000000010020190000078b0000013d000000440030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000002402100370000000000202043b000a00000002001d000005a10020009c000008c70000213d0000000401100370000000000101043b000900000001001d1649141a0000040f164914ca0000040f00000009010000290000000a02000029164914f50000040f00000000010000190000164a0001042e000000240030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000014002000039000000400020043f000000800000043f000000a00000043f000000c00000043f000000e00000043f000001000000043f000001200000043f0000000401100370000000000101043b000000000010043f0000001201000039000000200010043f00000040010000391649162e0000040f0000020002000039000000400020043f000000000201041a000005a102200197000001400020043f0000000103100039000000000303041a000005a103300197000001600030043f0000000504100039000000040510003900000003061000390000000201100039000000000101041a000001800010043f000000000606041a000001a00060043f000000000505041a000001c00050043f000000000404041a000001e00040043f000002000020043f000002200030043f000002400010043f000002600060043f000002800050043f000002a00040043f0000061d010000410000164a0001042e0000000001000416000000000001004b000008c70000c13d000000800000043f00000603010000410000164a0001042e0000000001000416000000000001004b000008c70000c13d0000000b01000039000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f00000603010000410000164a0001042e000000240030008c000008c70000413d0000000001000416000000000001004b000008c70000c13d164911940000040f000a00000001001d164914ae0000040f0000001101000039000000000201041a00000627022001970000000a03000029000000000003004b000000010220c1bf000000000021041b00000000010000190000164a0001042e000000240030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000401100370000000000101043b000a00000001001d164914930000040f0000000a01000029000000000010043f0000000401000039000000200010043f00000040010000391649162e0000040f000000000101041a000005a1011001970000078b0000013d000000240030008c000008c70000413d0000000002000416000000000002004b000008c70000c13d0000000401100370000000000101043b000005a10010009c000008c70000213d1649147b0000040f000000400200043d0000000000120435000005930020009c000005930200804100000040012002100000060f011001c70000164a0001042e0000000001000416000000000001004b000008c70000c13d0000000001030019164911770000040f000a00000001001d000900000002001d000800000003001d000000400100043d000700000001001d00000020020000391649119f0000040f000000070100002900000000000104350000000a0100002900000009020000290000000803000029164912230000040f00000000010004110000000a02000029000000090300002900000008040000290000000705000029164915460000040f00000000010000190000164a0001042e0000000001000416000000000001004b000008c70000c13d0000001503000039000000000203041a000000010420019000000001012002700000007f0110618f0000001f0010008c00000000050000390000000105002039000000000552013f0000000100500190000000870000c13d000000800010043f000000000004004b000007c20000613d000000000030043f000000000001004b000008f40000c13d0000008002000039000007c70000013d0000062702200197000000a00020043f000000000001004b000000a0020000390000008002006039000000600220008a00000080010000391649119f0000040f0000002001000039000000400200043d000a00000002001d00000000021204360000008001000039164911450000040f0000000a020000290000000001210049000005930010009c00000593010080410000006001100210000005930020009c00000593020080410000004002200210000000000121019f0000164a0001042e0000061302000041000000000020043f000000040000043f000000240010043f000005c1010000410000164b000104300000000b01000039000000000201041a000000ff0020019000000e490000c13d000006270220019700000001022001bf000000000021041b000000400100043d00000000020004110000000000210435000005930010009c000005930100804100000040011002100000000002000414000005930020009c0000059302008041000000c002200210000000000112019f00000607011001c70000800d0200003900000001030000390000061104000041000008c40000013d000006210020009c0000075b0000613d000006220020009c0000075b0000613d000006230020009c0000075b0000613d000000800000043f00000603010000410000164a0001042e0000061c01000041000000000010043f00000618010000410000164b000104300000001405000039000000000205041a000000010620019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000332013f0000000100300190000000870000c13d000000400300043d0000000004130436000000000006004b000009170000613d000000000050043f000000000001004b00000000020000190000091c0000613d0000059d0500004100000000020000190000000006240019000000000705041a000000000076043500000001055000390000002002200039000000000012004b000008190000413d0000091c0000013d000000000010043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000401041a000005b20040009c00000c780000213d00000005014002100000003f021000390000061402200197000000400300043d0000000002230019000800000003001d000000000032004b00000000030000390000000103004039000005b20020009c00000c780000213d000000010030019000000c780000c13d000000400020043f000700000004001d000000080200002900000000064204360000001f0210018f000000000001004b0000084d0000613d0000000001160019000000000300003100000001033003670000000004060019000000003503043c0000000004540436000000000014004b000008490000c13d000600000006001d000000000002004b000000070000006b00000a020000c13d000000400100043d000000200200003900000000022104360000000803000029000000000303043300000000003204350000004002100039000000000003004b000008610000613d00000000040000190000000606000029000000006506043400000000025204360000000104400039000000000034004b0000085c0000413d0000000002120049000005930020009c00000593020080410000006002200210000005930010009c00000593010080410000004001100210000000000112019f0000164a0001042e0000000001000411000000000010043f0000000501000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a00000627022001970000000903000029000000000232019f000000000021041b000000400100043d0000000000310435000005930010009c000005930100804100000040011002100000000002000414000005930020009c0000059302008041000000c002200210000000000112019f00000607011001c70000800d020000390000000303000039000006080400004100000000050004110000000a06000029000008c40000013d0000000901000029000000000010043f0000001301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff001001900000097d0000c13d000000400100043d0000004402100039000006100300004100000000003204350000002402100039000000100300003900000e530000013d0000062702200197000000000021041b000000400100043d00000000020004110000000000210435000005930010009c000005930100804100000040011002100000000002000414000005930020009c0000059302008041000000c002200210000000000112019f00000607011001c70000800d0200003900000001030000390000061a040000411649163f0000040f0000000100200190000004320000c13d00000000010000190000164b000104300000000001000411000000000001004b000008fe0000613d000000000015004b000008fe0000613d000800000005001d000000000050043f0000000501000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000002000411000005a102200197000000000020043f000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff0010019000000008050000290000000002000411000008fe0000c13d0000061e01000041000000000010043f000000040020043f000005bd010000410000164b000104300000059e030000410000000004000019000000000503041a000000a002400039000000000052043500000001033000390000002004400039000000000014004b000008f60000413d000007c70000013d0000000001000414000005930010009c0000059301008041000000c001100210000005a4011001c70000800d0200003900000004030000390000061f040000410000000a0600002900000009070000291649163f0000040f0000000100200190000008c70000613d0000000901000029000000000010043f0000000401000039000000200010043f00000040010000391649162e0000040f000000000201041a000005af022001970000000a022001af000000000021041b00000000010000190000164a0001042e00000627022001970000000000240435000000000001004b000000200200003900000000020060390000003f0120003900000628051001970000000001350019000000000051004b00000000050000390000000105004039000005b20010009c00000c780000213d000000010050019000000c780000c13d000000400010043f0000000003030433000000000003004b0000098c0000c13d000005b00010009c00000c780000213d0000002002100039000000400020043f0000000000010435000000400300043d00000afa0000013d0000000a01000029000000000010043f0000000c01000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff00100190000004320000c13d0000000a01000029000000000010043f0000000c01000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a000006270220019700000001022001bf000000000021041b0000000001000414000005930010009c0000059301008041000000c001100210000005a4011001c70000800d020000390000000403000039000005a5040000410000000a05000029000000090600002900000000070004111649163f0000040f0000000100200190000004320000c13d000008c70000013d0000001101000039000000000101041a000000ff00100190000009c30000c13d0000000d01000039000000000201041a000800000002001d000000010220003a00000a720000c13d0000061901000041000000000010043f0000001101000039000000040010043f000005bd010000410000164b0001043000000628073001970000001f0630018f0000002005100039000000000054004b00000a3d0000813d000000000007004b0000099d0000613d00000000096400190000000008650019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000009970000c13d000000000006004b00000a490000c13d00000a530000013d0000000a01000029000000000010043f0000000401000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a000005af02200197000000000021041b0000000901000029000000000010043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a000000010220008a000000000021041b0000062a0000013d0000000a01000029000000000010043f0000001001000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000000001004b000009810000613d000000400100043d00000044021000390000060a0300004100000000003204350000002402100039000000180300003900000e530000013d000000800200043d000005b20020009c00000c780000213d0000001501000039000000000401041a000000010040019000000001034002700000007f0330618f0000001f0030008c00000000050000390000000105002039000000000454013f0000000100400190000000870000c13d000000200030008c000009fa0000413d000000000010043f0000001f0420003900000005044002700000059f0440009a000000200020008c0000059e040040410000001f0330003900000005033002700000059f0330009a000000000034004b000009fa0000813d000000000004041b0000000104400039000000000034004b000009f60000413d0000001f0020008c00000afd0000a13d000000000010043f000006280420019800000b860000c13d000000a0050000390000059e0300004100000b940000013d000a00000000001d0000000901000029000000000010043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a0000000a0010006c00000b580000a13d0000000901000029000000000010043f0000000601000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000080200002900000000020204330000000a04000029000000000024004b00000e5e0000813d00000005024002100000000602200029000000000101043b000000000101041a00000000001204350000000104400039000a00000004001d000000070040006c00000a030000413d000008510000013d0000000008750019000000000007004b00000a450000613d0000000009040019000000009a0904340000000005a50436000000000085004b00000a410000c13d000000000006004b00000a530000613d000000000474001900000000050800190000000306600210000000000705043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f000000000045043500000000051300190000002004500039000006060600004100000000006404350000001507000039000000000607041a000000010860019000000001046002700000007f0440618f0000001f0040008c00000000090000390000000109002039000000000996013f0000000100900190000000870000c13d000000000008004b00000ae80000613d000000000070043f000000000004004b00000aeb0000613d0000059e06000041000000220550003900000000070000190000000008750019000000000906041a000000000098043500000001066000390000002007700039000000000047004b00000a6a0000413d00000aeb0000013d000000000021041b000000400100043d000700000001001d0000060d0010009c00000c780000213d0000000702000029000000c001200039000000400010043f000000000100041100000000021204360000000a01000029000600000002001d0000000000120435000005ad0100004100000000001004430000000001000414000005930010009c0000059301008041000000c001100210000005ae011001c70000800b02000039164916440000040f000000010020019000000e640000613d000000000101043b0000000703000029000000a0043000390000000102000039000500000004001d00000000002404350000008004300039000400000004001d000000000024043500000060043000390000000902000029000300000004001d00000000002404350000004002300039000900000002001d00000000001204350000000801000029000000000010043f0000001201000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d00000007020000290000000002020433000005a102200197000000000101043b000000000301041a000005af03300197000000000223019f000000000021041b00000006020000290000000002020433000005a1022001970000000103100039000000000403041a000005af04400197000000000224019f000000000023041b000000090200002900000000020204330000000203100039000000000023041b000000030200002900000000020204330000000303100039000000000023041b000000040200002900000000020204330000000403100039000000000023041b000000050110003900000005020000290000000002020433000000000021041b000000080000006b00000adb0000613d0000000a01000029000000000010043f0000001001000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a000000010220003a000009860000613d000000000021041b000000400100043d000900000001001d000005b00010009c00000c780000213d00000009020000290000002001200039000700000001001d000000400010043f00000000000204350000000a0000006b00000bd30000c13d000005bc010000410000050a0000013d000006270660019700000022055000390000000000650435000000000343001900000002043000390000000000410435000000410330003900000628023001970000000004120019000000000024004b00000000020000390000000102004039000005b20040009c00000c780000213d000000010020019000000c780000c13d0000000003040019000000400040043f000a00000003001d0000002002000039000003e80000013d000000000002004b000000000300001900000b010000613d000000a00300043d0000000304200210000006290440027f0000062904400167000000000443016f000000010320021000000b9f0000013d0000000901000029000000000010043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000800000001001d0000000a01000029000000000010043f0000000701000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000700000001001d0000000901000029000000000010043f0000000601000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000900000001001d0000000702000029000000080020006c00000ba30000c13d0000000a01000029000000000010043f0000000701000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000001041b0000000801000029000000000010043f0000000901000029000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000002000019000006660000013d0000061301000041000000000010043f000000090100002900000b610000013d000000000001004b000006ca0000613d000005c001000041000000000010043f0000000801000029000000040010043f0000000a01000029000000240010043f000005c1010000410000164b000104300000000001000411000000000010043f0000001001000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000000001004b000002ca0000613d000009d40000013d0000059d030000410000002006000039000000010540008a0000000505500270000006120550009a000000000706001900000080066000390000000006060433000000000063041b00000020067000390000000103300039000000000053004b00000b7d0000c13d00000b930000013d0000059e030000410000002006000039000000010540008a0000000505500270000006050550009a000000000706001900000080066000390000000006060433000000000063041b00000020067000390000000103300039000000000053004b00000b8b0000c13d000000a005700039000000000024004b00000b9d0000813d0000000304200210000000f80440018f000006290440027f00000629044001670000000005050433000000000445016f000000000043041b00000001030000390000000104200210000000000234019f000000000021041b00000000010000190000164a0001042e0000000801000029000000000010043f0000000901000029000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000600000001001d0000000701000029000000000010043f0000000901000029000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000602000029000000000021041b000000000020043f0000000701000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000702000029000000000021041b00000b390000013d0000000001000411000000000010043f0000000f01000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff0010019000000bf90000c13d0000000801000029000000000010043f0000000201000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000005a10010019800000bf90000613d0000000e01000039000000000101041a000000ff0010019000000e4d0000c13d0000000b01000039000000000101041a000000ff0010019000000e490000c13d0000000801000029000000000010043f0000000201000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000605a10010019c00000c300000613d0000000801000029000000000010043f0000000401000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a000005af02200197000000000021041b0000000601000029000000000010043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000a01000029000000000010043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000801000029000000000010043f0000000201000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a000005af022001970000000a06000029000000000262019f000000000021041b0000000001000414000005930010009c0000059301008041000000c001100210000005a4011001c70000800d020000390000000403000039000005b104000041000000060500002900000008070000291649163f0000040f0000000100200190000008c70000613d000000060000006b00000cbc0000c13d0000000801000039000000000101041a000500000001001d0000000801000029000000000010043f0000000901000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000502000029000000000021041b000005b20020009c00000d100000a13d0000061901000041000000000010043f0000004101000039000000040010043f000005bd010000410000164b000104300000000001000411000000000010043f0000001001000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a000000010220003a000009860000613d000000000021041b000003250000013d0000000803000039000000000030043f000005c50210009a000000000002041b000000010110008a000000000013041b00000000010000190000164a0001042e0000000801000029000000000010043f0000000401000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a000005af02200197000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a000000010220008a000000000021041b0000036b0000013d00000006020000290000000a0020006c00000d180000613d0000000601000029000000000010043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000500000001001d0000000801000029000000000010043f0000000701000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000400000001001d0000000601000029000000000010043f0000000601000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000300000001001d0000000402000029000000050020006c00000f240000c13d0000000801000029000000000010043f0000000701000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000001041b0000000501000029000000000010043f0000000301000029000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000200001900000d170000013d000000050200002900000001012000390000000803000039000000000013041b000000000030043f000005b30120009a0000000802000029000000000021041b00000006020000290000000a0020006c00000d370000c13d000000060000006b00000f220000c13d000005b40100004100000000001004430000000a0100002900000004001004430000000001000414000005930010009c0000059301008041000000c001100210000005b5011001c70000800202000039164916440000040f000000010020019000000e640000613d000000400200043d000600000002001d000000000101043b000000000001004b00000e650000c13d000000060100002900000008020000290000000000210435000005930010009c000005930100804100000040011002100000060f011001c70000164a0001042e0000000a01000029000000000010043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000500000001001d000000000001004b000009860000613d0000000a01000029000000000010043f0000000601000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d0000000502000029000000010220008a000000000101043b000500000002001d000000000020043f000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000802000029000000000021041b000000000020043f0000000701000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000502000029000000000021041b000000060000006b00000d1d0000613d00000f220000013d0000000001000411000000050010006b00000e8d0000c13d0000000001000411000000050010006b00000ede0000c13d000000050000006b00000f220000c13d000005b4010000410000000000100443000000000100041100000004001004430000000001000414000005930010009c0000059301008041000000c001100210000005b5011001c70000800202000039164916440000040f000000010020019000000e640000613d000000000101043b000000000001004b00000feb0000c13d0000000001000411000000000010043f0000000f01000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff0010019000000dae0000c13d000000000000043f0000000201000039000000200010043f000005be01000041000000000101041a000005a10010019800000dae0000613d0000000e01000039000000000101041a000000ff0010019000000e4d0000c13d0000000b01000039000000000101041a000000ff0010019000000e490000c13d000005be01000041000000000101041a000905a10010019b0000000a0000006b00000ddf0000613d00000009020000290000000a0020006c00000ddf0000613d0000000901000029000000000010043f0000000501000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000000ff0010019000000ddf0000c13d0000000401000039000000200010043f000005bf01000041000000000101041a000005a1011001970000000a0010006c0000110d0000c13d000000090000006b00000df60000613d000005bf01000041000000000201041a000005af02200197000000000021041b0000000901000029000000000010043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000201041a000000010220008a000000000021041b000000000000043f0000000201000039000000200010043f000005be01000041000000000201041a000005af02200197000000000021041b0000000001000414000005930010009c0000059301008041000000c001100210000005a4011001c70000800d020000390000000403000039000005b1040000410000000905000029000000000600001900000000070000191649163f0000040f0000000100200190000008c70000613d000000090000006b000010d70000c13d0000000802000039000000000102041a0000000903000039000000200030043f000005c403000041000000000013041b000005b20010009c00000c780000213d0000000103100039000000000032041b000005b30110009a000000000001041b0000000801000039000000000101041a000000000001004b000009860000613d0000000902000039000000200020043f000005c402000041000000000202041a000a00000002001d000000000021004b00000e5e0000a13d0000000a02000029000005b30220009a000005c50110009a000000000101041a000000000012041b000000000010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000a02000029000000000021041b0000000901000039000000200010043f000005c401000041000000000001041b0000000801000039000000000101041a000000000001004b000006ac0000613d0000000803000039000000000030043f000005c50210009a000000000002041b000000010110008a000000000013041b000000200100003900000100001004430000012000000443000005c6010000410000164a0001042e0000061701000041000000000010043f00000618010000410000164b00010430000000400100043d0000004402100039000006160300004100000000003204350000002402100039000000060300003900000000003204350000060b020000410000000000210435000000040210003900000020030000390000000000320435000005930010009c000005930100804100000040011002100000060c011001c70000164b000104300000061901000041000000000010043f0000003201000039000000040010043f000005bd010000410000164b00010430000000000001042f000000060300002900000064013000390000008002000039000500000002001d0000000000210435000000440130003900000008020000290000000000210435000005b601000041000000000013043500000004013000390000000002000411000000000021043500000024013000390000000000010435000000090100002900000000010104330000008402300039000000000012043500000628051001970000001f0410018f000000a403300039000000070030006b00000f540000813d000000000005004b00000e890000613d00000007074000290000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c00000e830000c13d000000000004004b00000f6b0000613d000000000603001900000f600000013d0000000501000029000000000010043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000400000001001d0000000801000029000000000010043f0000000701000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000300000001001d0000000501000029000000000010043f0000000601000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000200000001001d0000000302000029000000040020006c000010130000c13d0000000801000029000000000010043f0000000701000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000001041b0000000401000029000000000010043f0000000201000029000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000002000019000003ba0000013d0000000a0000006b000001860000613d0000000a01000029000000000010043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000400000001001d000000000001004b000009860000613d0000000001000411000000000010043f0000000601000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d0000000402000029000000010220008a000000000101043b000400000002001d000000000020043f000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000802000029000000000021041b000000000020043f0000000701000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000402000029000000000021041b000000050000006b00000d820000613d0000060e010000410000050a0000013d0000000501000029000000000010043f0000000301000029000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000200000001001d0000000401000029000000000010043f0000000301000029000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000202000029000000000021041b000000000020043f0000000701000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000402000029000000000021041b00000cf10000013d0000000006530019000000000005004b00000f5d0000613d0000000707000029000000000803001900000000790704340000000008980436000000000068004b00000f590000c13d000000000004004b00000f6b0000613d000700070050002d0000000304400210000000000506043300000000054501cf000000000545022f000000070700002900000000070704330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000001f04100039000006280240019700000000013100190000000000010435000000a401200039000005930010009c000005930100804100000060011002100000000602000029000005930020009c00000593020080410000004002200210000000000121019f0000000002000414000005930020009c0000059302008041000000c002200210000000000121019f0000000a020000291649163f0000040f00000060031002700000059303300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060570002900000f8e0000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b00000f8a0000c13d000000000006004b00000f9b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000fb20000613d0000001f01400039000000600210018f0000000601200029000000000021004b00000000020000390000000102004039000005b20010009c00000c780000213d000000010020019000000c780000c13d000000400010043f000000200030008c000008c70000413d00000006020000290000000002020433000005ba00200198000008c70000c13d000005bb02200197000005b60020009c00000d300000613d00000fb80000013d000000000003004b00000fba0000c13d00000060020000390000000001020433000000000001004b00000fe20000c13d000005bc01000041000006cb0000013d0000001f02300039000005b7022001970000003f02200039000005b804200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000005b20040009c00000c780000213d000000010050019000000c780000c13d000000400040043f0000001f0430018f0000000006320436000005b905300198000500000006001d000000000356001900000fd40000613d000000000601034f0000000507000029000000006806043c0000000007870436000000000037004b00000fd00000c13d000000000004004b00000fb50000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000fb50000013d0000000502000029000005930020009c00000593020080410000004002200210000005930010009c00000593010080410000006001100210000000000121019f0000164b00010430000000400300043d000000640130003900000080020000390000000000210435000000440130003900000008020000290000000000210435000005b601000041000000000013043500000004013000390000000002000411000000000021043500000024013000390000000000010435000000070100002900000000010104330000008402300039000000000012043500000628051001970000001f0410018f000500000003001d000000a403300039000000060030006b000010430000813d000000000005004b0000100f0000613d00000006074000290000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c000010090000c13d000000000004004b0000105a0000613d00000000060300190000104f0000013d0000000401000029000000000010043f0000000201000029000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000100000001001d0000000301000029000000000010043f0000000201000029000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000102000029000000000021041b000000000020043f0000000701000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000302000029000000000021041b00000ebf0000013d0000000006530019000000000005004b0000104c0000613d0000000607000029000000000803001900000000790704340000000008980436000000000068004b000010480000c13d000000000004004b0000105a0000613d000600060050002d0000000304400210000000000506043300000000054501cf000000000545022f000000060700002900000000070704330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000001f04100039000006280240019700000000013100190000000000010435000000a401200039000005930010009c000005930100804100000060011002100000000502000029000005930020009c00000593020080410000004002200210000000000121019f0000000002000414000005930020009c0000059302008041000000c002200210000000000112019f00000000020004111649163f0000040f00000060031002700000059303300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000005057000290000107d0000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b000010790000c13d000000000006004b0000108a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000010a10000613d0000001f01400039000000600210018f0000000501200029000000000021004b00000000020000390000000102004039000005b20010009c00000c780000213d000000010020019000000c780000c13d000000400010043f000000200030008c000008c70000413d00000005010000290000000001010433000005ba00100198000008c70000c13d000005bb01100197000005b60010009c00000d920000613d000010cf0000013d000000000003004b000010a50000c13d0000006002000039000010cc0000013d0000001f02300039000005b7022001970000003f02200039000005b804200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000005b20040009c00000c780000213d000000010050019000000c780000c13d000000400040043f0000001f0430018f0000000006320436000005b905300198000900000006001d0000000003560019000010bf0000613d000000000601034f0000000907000029000000006806043c0000000007870436000000000037004b000010bb0000c13d000000000004004b000010cc0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000010d50000c13d000005bc01000041000000000010043f0000000001000411000000040010043f000005bd010000410000164b00010430000000090200002900000fe30000013d0000000901000029000000000010043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000005c302000041000000000202041a000800000002001d000000000101043b000000000101041a000a00000001001d0000000901000029000000000010043f0000000601000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000900000001001d00000008020000290000000a0020006c000011150000c13d000005c301000041000000000001041b0000000a01000029000000000010043f0000000901000029000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b00000e180000013d000000090000006b000011110000c13d000005c2010000410000050a0000013d000005c001000041000000000010043f0000000a01000029000004ad0000013d0000000a01000029000000000010043f0000000901000029000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b000000000101041a000700000001001d0000000801000029000000000010043f0000000901000029000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000702000029000000000021041b000000000020043f0000000701000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000008c70000613d000000000101043b0000000802000029000000000021041b000010fc0000013d0000000043010434000000000132043600000628063001970000001f0530018f000000000014004b0000115b0000813d000000000006004b000011570000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000011510000c13d000000000005004b000011710000613d0000000007010019000011670000013d0000000007610019000000000006004b000011640000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b000011600000c13d000000000005004b000011710000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000431001900000000000404350000001f0330003900000628023001970000000001210019000000000001042d0000062a0010009c000011870000213d000000630010008c000011870000a13d00000001030003670000000401300370000000000101043b000005a10010009c000011870000213d0000002402300370000000000202043b000005a10020009c000011870000213d0000004403300370000000000303043b000000000001042d00000000010000190000164b0001043000000024010000390000000101100367000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b000011920000c13d000000000001042d00000000010000190000164b0001043000000004010000390000000101100367000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b0000119d0000c13d000000000001042d00000000010000190000164b000104300000001f0220003900000628022001970000000001120019000000000021004b00000000020000390000000102004039000005b20010009c000011ab0000213d0000000100200190000011ab0000c13d000000400010043f000000000001042d0000061901000041000000000010043f0000004101000039000000040010043f000005bd010000410000164b000104300000062b0020009c000011e10000813d00000000040100190000001f0120003900000628011001970000003f011000390000062805100197000000400100043d0000000005510019000000000015004b00000000070000390000000107004039000005b20050009c000011e10000213d0000000100700190000011e10000c13d000000400050043f00000000052104360000000007420019000000000037004b000011e70000213d00000628062001980000001f0720018f00000001044003670000000003650019000011d10000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b000011cd0000c13d000000000007004b000011de0000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d0000061901000041000000000010043f0000004101000039000000040010043f000005bd010000410000164b0001043000000000010000190000164b000104300000001405000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000016004b000012170000c13d000000400100043d0000000003210436000000000006004b000012040000613d000000000050043f000000000002004b0000120a0000613d0000059d0500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000024004b000011fc0000413d0000120b0000013d00000627044001970000000000430435000000000002004b000000200400003900000000040060390000120b0000013d00000000040000190000003f0240003900000628032001970000000002130019000000000032004b00000000030000390000000103004039000005b20020009c0000121d0000213d00000001003001900000121d0000c13d000000400020043f000000000001042d0000061901000041000000000010043f0000002201000039000000040010043f000005bd010000410000164b000104300000061901000041000000000010043f0000004101000039000000040010043f000005bd010000410000164b000104300008000000000002000800000003001d000500000001001d000605a10020019c000013dc0000613d0000000001000411000000000010043f0000000f01000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b000000000101041a000000ff0010019000000002020000390000124f0000c13d0000000801000029000000000010043f000000200020043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b000000000101041a000005a10010019800000002020000390000124f0000613d0000000e01000039000000000101041a000000ff00100190000013f90000c13d0000000b01000039000000000101041a000000ff00100190000013e10000c13d0000000801000029000000000010043f000000200020043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b000000000101041a000005a1011001970000000002000411000000000002004b000700000001001d0000129b0000613d000000000021004b0000129b0000613d000000000010043f0000000501000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b0000000002000411000005a102200197000000000020043f000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b000000000101041a000000ff0010019000000007010000290000129b0000c13d0000000801000029000000000010043f0000000401000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b000000000101041a000005a1011001970000000002000411000000000021004b00000007010000290000140a0000c13d000000000001004b000012bf0000613d0000000801000029000000000010043f0000000401000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b000000000201041a000005af02200197000000000021041b0000000701000029000000000010043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000601000029000000000010043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000801000029000000000010043f0000000201000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b000000000201041a000005af022001970000000606000029000000000262019f000000000021041b0000000001000414000005930010009c0000059301008041000000c001100210000005a4011001c70000800d020000390000000403000039000005b104000041000000070500002900000008070000291649163f0000040f0000000100200190000013da0000613d0000000704000029000000000004004b000013750000613d0000000603000029000000000034004b000013930000613d000000000040043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b000000000101041a000400000001001d0000000801000029000000000010043f0000000701000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b000000000101041a000300000001001d0000000701000029000000000010043f0000000601000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b000200000001001d0000000302000029000000040020006c000013560000613d0000000401000029000000000010043f0000000201000029000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b000000000101041a000100000001001d0000000301000029000000000010043f0000000201000029000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b0000000102000029000000000021041b000000000020043f0000000701000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b0000000302000029000000000021041b0000000801000029000000000010043f0000000701000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b000000000001041b0000000401000029000000000010043f0000000201000029000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b0000000002000019000013900000013d0000000801000039000000000101041a000400000001001d0000000801000029000000000010043f0000000901000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b0000000402000029000000000021041b0000062b0020009c000013f30000813d00000001012000390000000803000039000000000013041b000000000030043f000005b30120009a00000008020000290000000603000029000000000021041b0000000704000029000000000034004b000013d50000613d000000000030043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b000000000101041a000400000001001d000000000001004b000013ed0000613d0000000601000029000000000010043f0000000601000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d0000000402000029000000010220008a000000000101043b000600000002001d000000000020043f000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b0000000802000029000000000021041b000000000020043f0000000701000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000013da0000613d000000000101043b0000000602000029000000000021041b00000007040000290000000501000029000005a101100197000000000014004b000013e50000c13d000000000001042d00000000010000190000164b00010430000005bc01000041000000000010043f000000040000043f000005bd010000410000164b000104300000061701000041000000000010043f00000618010000410000164b000104300000062c02000041000000000020043f000000040010043f0000000801000029000000240010043f000000440040043f0000060c010000410000164b000104300000061901000041000000000010043f0000001101000039000000040010043f000005bd010000410000164b000104300000061901000041000000000010043f0000004101000039000000040010043f000005bd010000410000164b00010430000000400100043d0000004402100039000006160300004100000000003204350000002402100039000000060300003900000000003204350000060b020000410000000000210435000000040210003900000020030000390000000000320435000005930010009c000005930100804100000040011002100000060c011001c70000164b00010430000000000001004b000014120000c13d000005c201000041000000000010043f0000000801000029000000040010043f000005bd010000410000164b00010430000005c001000041000000000010043f0000000001000411000000040010043f0000000801000029000000240010043f000005c1010000410000164b00010430000000000010043f0000000c01000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f00000001002001900000142a0000613d000000000101043b0000000101100039000000000101041a000000000001042d00000000010000190000164b000104300002000000000002000200000002001d000005a101100198000014600000613d000100000001001d000000000010043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f00000001002001900000145e0000613d000000000101043b000000000101041a000000020010006c000014650000a13d0000000101000029000000000010043f0000000601000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f00000001002001900000145e0000613d000000000101043b0000000202000029000000000020043f000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f00000001002001900000145e0000613d000000000101043b000000000101041a000000000001042d00000000010000190000164b000104300000061501000041000000000010043f000000040000043f000005bd010000410000164b000104300000061301000041000000000010043f0000000101000029000000040010043f0000000201000029000000240010043f000005c1010000410000164b000104300000000802000039000000000302041a000000000013004b000014750000a13d000000000020043f000005b30110009a0000000002000019000000000001042d0000061901000041000000000010043f0000003201000039000000040010043f000005bd010000410000164b00010430000005a1011001980000148c0000613d000000000010043f0000000301000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000014910000613d000000000101043b000000000101041a000000000001042d0000061501000041000000000010043f000000040000043f000005bd010000410000164b0001043000000000010000190000164b000104300001000000000002000100000001001d000000000010043f0000000201000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000014a60000613d000000000101043b000000000101041a000005a101100198000014a80000613d000000000001042d00000000010000190000164b00010430000005c201000041000000000010043f0000000101000029000000040010043f000005bd010000410000164b000104300000000001000411000005a101100197000000000010043f000005a201000041000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000014c10000613d000000000101043b000000000101041a000000ff00100190000014c30000613d000000000001042d00000000010000190000164b00010430000005c701000041000000000010043f0000000001000411000000040010043f000000240000043f000005c1010000410000164b000104300001000000000002000100000001001d000000000010043f0000000c01000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000014eb0000613d000000000101043b0000000002000411000005a102200197000000000020043f000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000014eb0000613d000000000101043b000000000101041a000000ff00100190000014ed0000613d000000000001042d00000000010000190000164b00010430000005c701000041000000000010043f0000000001000411000000040010043f0000000101000029000000240010043f000005c1010000410000164b000104300002000000000002000100000002001d000200000001001d000000000010043f0000000c01000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000015440000613d000000000101043b0000000102000029000005a102200197000100000002001d000000000020043f000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000015440000613d000000000101043b000000000101041a000000ff00100190000015430000613d0000000201000029000000000010043f0000000c01000039000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000015440000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000005930010009c0000059301008041000000c001100210000005a3011001c70000801002000039164916440000040f0000000100200190000015440000613d000000000101043b000000000201041a0000062702200197000000000021041b0000000001000414000005930010009c0000059301008041000000c001100210000005a4011001c70000800d02000039000000040300003900000000070004110000062d04000041000000020500002900000001060000291649163f0000040f0000000100200190000015440000613d000000000001042d00000000010000190000164b000104300006000000000002000500000005001d000300000004001d000200000002001d000400000001001d000005b4010000410000000000100443000600000003001d00000004003004430000000001000414000005930010009c0000059301008041000000c001100210000005b5011001c70000800202000039164916440000040f0000000100200190000015e90000613d000000000101043b000000000001004b000015e60000613d000000400c00043d0000006401c000390000008002000039000100000002001d00000000002104350000004401c00039000000030200002900000000002104350000000201000029000005a1011001970000002402c000390000000000120435000005b60100004100000000001c04350000000401000029000005a1011001970000000402c0003900000000001204350000008402c000390000000501000029000000004101043400000000001204350000000602000029000005a102200197000000200b00008a0000000006b1016f0000001f0510018f000000a403c00039000000000034004b000015890000813d000000000006004b000015850000613d00000000085400190000000007530019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c0000157f0000c13d000000000005004b0000159f0000613d0000000007030019000015950000013d0000000007630019000000000006004b000015920000613d00000000080400190000000009030019000000008a0804340000000009a90436000000000079004b0000158e0000c13d000000000005004b0000159f0000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f00000000004704350000001f041000390000000004b4016f00000000013100190000000000010435000000a401400039000005930010009c000005930100804100000060011002100000059300c0009c000005930300004100000000030c40190000004003300210000000000131019f0000000003000414000005930030009c0000059303008041000000c003300210000000000131019f000500000002001d00060000000c001d1649163f0000040f000000060b00002900000060031002700000059303300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000015c40000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000015c00000c13d000000000006004b000015d10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000015ea0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000005b20010009c0000161e0000213d00000001002001900000161e0000c13d000000400010043f0000001f0030008c000015e70000a13d00000000010b0433000005ba00100198000015e70000c13d000005bb01100197000005b60010009c000016180000c13d000000000001042d00000000010000190000164b00010430000000000001042f000000000003004b000015ee0000c13d0000006002000039000016150000013d0000001f02300039000005b7022001970000003f02200039000005b804200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000005b20040009c0000161e0000213d00000001005001900000161e0000c13d000000400040043f0000001f0430018f0000000006320436000005b905300198000100000006001d0000000003560019000016080000613d000000000601034f0000000107000029000000006806043c0000000007870436000000000037004b000016040000c13d000000000004004b000016150000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000016240000c13d000005bc01000041000000000010043f0000000501000029000000040010043f000005bd010000410000164b000104300000061901000041000000000010043f0000004101000039000000040010043f000005bd010000410000164b000104300000000102000029000005930020009c00000593020080410000004002200210000005930010009c00000593010080410000006001100210000000000121019f0000164b00010430000000000001042f000005930010009c000005930100804100000060011002100000000002000414000005930020009c0000059302008041000000c002200210000000000112019f000005a4011001c70000801002000039164916440000040f00000001002001900000163d0000613d000000000101043b000000000001042d00000000010000190000164b0001043000001642002104210000000102000039000000000001042d0000000002000019000000000001042d00001647002104230000000102000039000000000001042d0000000002000019000000000001042d00001649000004320000164a0001042e0000164b0001043000000000000000000000000000000000000000000000000000000000ffffffff5342540000000000000000000000000000000000000000000000000000000000290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563d6f21326ab749d5729fcba5677c79037b459436ab7bff709c9d06ce9f10c1a9d5342540000000000000000000000000000000000000000000000000000000006b10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf64ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f30a319284ad7d4265c99e51f9e0112e2425b1ad54f8c4e06d7a4191eaa263c72b14ce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ed68747470733a2f2f79662e79756c6976657273652e636f6d2f6366672f6d722fce6d7b5282bd9a3661ae061feed1dbda4e52ab073b1f9285be6e155d9c38d4ec55f448fdea98c4d29eb340757ef0a66cd03dbb9538908a6a81d96026b71ec475aa0bb70215673b2d614cbf8a810f59932fc2446ac76f75957e269fd948e13b8b2e6a736f6e00000000000000000000000000000000000000000000000000000a000000000000000000000000ffffffffffffffffffffffffffffffffffffffff13649b2456f1b42fef0f0040b3aaeabcd21a76a0f3f5defd4f583839455116e8020000000000000000000000000000000000004000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0ddcc67b18bee54042de2f3c322d7907db427901c7dd6b8aabe39773d1548374f565d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a28716b1ac0502292c83929abc9e37796cf2f7a586c58ec02e6ceeac1b694cbc39f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a64155c2f711f2cdd34f8262ab8fb9b7020a700fe7b6948222152f7670d1fdf34d086b488f4367b09cc223c454c354558006946f38ad1ad40f65064a1b24f7ad9d000000000000000000000000000000000000000000000000ffffffffffffff40796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320200000200000000000000000000000000000004000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdfddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000000000000000000000000000ffffffffffffffff0c085601c9b05546c4de925af5cdebeab0dd5f5d4bea4dc57b37e961749c911d1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000003ffffffe000000000000000000000000000000000000000000000000000000000ffffffe000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000064a0ae92000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000ac33ff75c19e70fe83507db0d683fd3465c996598dc972688b7ace676c89077b17ef568e3e12ab5b9c7254a8d58478811de00f9e6eb34345acd53bf8fd09d3ec177e802f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000440000000000000000000000007e273289000000000000000000000000000000000000000000000000000000006d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6dfec8156718a8372b1db44bb411437d0870f3e3790d4a08526d024ce1b0b668f6b0c085601c9b05546c4de925af5cdebeab0dd5f5d4bea4dc57b37e961749c911e0000000200000000000000000000000000000040000001000000000000000000e2517d3f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000063b266b900000000000000000000000000000000000000000000000000000000b883ff9600000000000000000000000000000000000000000000000000000000d547741e00000000000000000000000000000000000000000000000000000000e7808a7c00000000000000000000000000000000000000000000000000000000e7808a7d00000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000fb88057600000000000000000000000000000000000000000000000000000000d547741f00000000000000000000000000000000000000000000000000000000da3ef23f00000000000000000000000000000000000000000000000000000000e63ab1e900000000000000000000000000000000000000000000000000000000c668286100000000000000000000000000000000000000000000000000000000c668286200000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000d539139300000000000000000000000000000000000000000000000000000000b883ff9700000000000000000000000000000000000000000000000000000000b88d4fde0000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000a217fdde00000000000000000000000000000000000000000000000000000000a217fddf00000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000ac899c320000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009b19251a00000000000000000000000000000000000000000000000000000000a14481940000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000008456cb590000000000000000000000000000000000000000000000000000000091d148540000000000000000000000000000000000000000000000000000000063b266ba000000000000000000000000000000000000000000000000000000006c0360eb0000000000000000000000000000000000000000000000000000000036568abd000000000000000000000000000000000000000000000000000000004f6ccce6000000000000000000000000000000000000000000000000000000005c975aba000000000000000000000000000000000000000000000000000000005c975abb00000000000000000000000000000000000000000000000000000000619d5194000000000000000000000000000000000000000000000000000000006352211e000000000000000000000000000000000000000000000000000000004f6ccce70000000000000000000000000000000000000000000000000000000053d6fd590000000000000000000000000000000000000000000000000000000055f804b30000000000000000000000000000000000000000000000000000000042842e0d0000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000042966c6800000000000000000000000000000000000000000000000000000000438b63000000000000000000000000000000000000000000000000000000000036568abe000000000000000000000000000000000000000000000000000000003f4ba83a0000000000000000000000000000000000000000000000000000000018160ddc000000000000000000000000000000000000000000000000000000002507c479000000000000000000000000000000000000000000000000000000002507c47a000000000000000000000000000000000000000000000000000000002f2ff15d000000000000000000000000000000000000000000000000000000002f745c590000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000248a9ca300000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000009d8da2e0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde030000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7faa0bb70215673b2d614cbf8a810f59932fc2446ac76f75957e269fd948e13b8a3132000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000002000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c315b08ba180000000000000000000000000000000000000000000000000000000045786365656420746865206d6178696d756d206c696d6974000000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff3f73c6ac6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000706c6174666f726d20696e76616c69640000000000000000000000000000000062e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258319284ad7d4265c99e51f9e0112e2425b1ad54f8c4e06d7a4191eaa263c72b13a57d13dc000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe089c62b64000000000000000000000000000000000000000000000000000000004c6f636b65640000000000000000000000000000000000000000000000000000d93c06650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000005db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa8dfc202b000000000000000000000000000000000000000000000000000000006697b2320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000002000000000000000000a9fbf51f000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925780e9d62ffffffffffffffffffffffffffffffffffffffffffffffffffffffff780e9d630000000000000000000000000000000000000000000000000000000080ac58cd000000000000000000000000000000000000000000000000000000007965db0b0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000049064906000000000000000000000000000000000000000000000000000000005b5e139f00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000001000000000000000064283d7b00000000000000000000000000000000000000000000000000000000f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b2fa660adc8324c5fe3ee881b5d8e249dcf49433535dde6af172da84556cdd70d

[ 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.